Fixed multiple line output of fltk-config --libs (STR #2408)

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@7849 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2010-11-15 20:34:31 +00:00
parent 4bf4c6d8ed
commit dd87dcf2b0
2 changed files with 8 additions and 5 deletions

View File

@ -4,6 +4,7 @@ CHANGES IN FLTK 1.1.11
- Fixed mouse wheel related crash in GLUT emulation (STR #2381) - Fixed mouse wheel related crash in GLUT emulation (STR #2381)
- Fixed missing architecture flags in OS X build (STR #2303) - Fixed missing architecture flags in OS X build (STR #2303)
- Fixed menu and shortcut handling (STR #2243) - Fixed menu and shortcut handling (STR #2243)
- Fixed multiple line output of fltk-config --libs (STR #2408)
CHANGES IN FLTK 1.1.10 CHANGES IN FLTK 1.1.10

View File

@ -318,25 +318,27 @@ if test "$echo_ldstaticflags" = "yes"; then
fi fi
if test "$echo_libs" = "yes"; then if test "$echo_libs" = "yes"; then
echo $libdir/libfltk.a USELIBS="$libdir/libfltk.a"
if test x$use_forms = xyes; then if test x$use_forms = xyes; then
echo $libdir/libfltk_forms.a USELIBS="$libdir/libfltk_forms.a $USELIBS"
fi fi
if test x$use_gl = xyes; then if test x$use_gl = xyes; then
echo $libdir/libfltk_gl.a USELIBS="$libdir/libfltk_gl.a $USELIBS"
fi fi
if test x$use_images = xyes; then if test x$use_images = xyes; then
echo $libdir/libfltk_images.a USELIBS="$libdir/libfltk_images.a $USELIBS"
for lib in fltk_jpeg fltk_png fltk_z; do for lib in fltk_jpeg fltk_png fltk_z; do
if test -f $libdir/lib$lib.a; then if test -f $libdir/lib$lib.a; then
echo $libdir/lib$lib.a USELIBS="$libdir/lib$lib.a $USELIBS"
fi fi
done done
fi fi
echo $USELIBS
fi fi
# #