diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2003-09-20 18:40:36 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2003-09-20 18:40:36 +0000 |
| commit | 182acd8618f636c0352b5cc8a7eaf1c80adc201a (patch) | |
| tree | b0b0c1f0ab4b9815f073a7b6f086a42f18ec16cc | |
| parent | f6f97dfe0e84463cf6873096398f4bb725045566 (diff) | |
Fix configure script (STR #174)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3108 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | configure.in | 8 |
2 files changed, 6 insertions, 4 deletions
@@ -1,5 +1,7 @@ CHANGES IN FLTK 1.1.5rc1 + - The configure script didn't leave space between the + CFLAGS/CXXFLAGS and X_CFLAGS variables (STR #174) - The Fl_JPEG_Image and Fl_PNG_Image classes did not trap errors from the corresponding image libraries (STR #168) diff --git a/configure.in b/configure.in index 7e51d4862..da60e9f27 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl -*- sh -*- dnl the "configure" script is made from this by running GNU "autoconf" dnl -dnl "$Id: configure.in,v 1.33.2.31.2.106 2003/09/14 14:28:22 easysw Exp $" +dnl "$Id: configure.in,v 1.33.2.31.2.107 2003/09/20 18:40:36 easysw Exp $" dnl dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl @@ -501,8 +501,8 @@ case $uname in fi LIBS="$LIBS -lXext -lX11 $X_EXTRA_LIBS" - CFLAGS="$CFLAGS$X_CFLAGS" - CXXFLAGS="$CXXFLAGS$X_CFLAGS" + CFLAGS="$CFLAGS $X_CFLAGS" + CXXFLAGS="$CXXFLAGS $X_CFLAGS" LDFLAGS="$X_LIBS $LDFLAGS" if test "x$x_includes" != x; then @@ -863,5 +863,5 @@ dnl Make sure the fltk-config script is executable... chmod +x fltk-config dnl -dnl End of "$Id: configure.in,v 1.33.2.31.2.106 2003/09/14 14:28:22 easysw Exp $". +dnl End of "$Id: configure.in,v 1.33.2.31.2.107 2003/09/20 18:40:36 easysw Exp $". dnl |
