diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-10-21 21:43:54 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-10-21 21:43:54 +0000 |
| commit | 000af67fea15ccc11c3aa02bd43c29cb7a563ac4 (patch) | |
| tree | 812eae971f2bef2e0736c8655155779e706c6bd7 | |
| parent | 701dfbc5bbb99a5d3f9b2e83fd4e8e09f77b787f (diff) | |
CFLAGS and CXXFLAGS don't default to blank... Put mandatory DEBUGFLAGS
back in...
git-svn-id: file:///fltk/svn/fltk/trunk@49 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | configure.in | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/configure.in b/configure.in index b26d303e6..0c31ab9e5 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.9 1998/10/21 21:42:13 mike Exp $" +dnl# "$Id: configure.in,v 1.10 1998/10/21 21:43:54 mike Exp $" dnl# dnl# for the Fast Light Tool Kit (FLTK). dnl# @@ -66,13 +66,8 @@ if eval "test x$enable_shared = xyes"; then esac fi]) -if test -n "$CFLAGS"; then - CFLAGS="$DEBUGFLAG $CFLAGS" -fi - -if test -n "$CXXFLAGS"; then - CXXFLAGS="$DEBUGFLAG $CXXFLAGS" -fi +CFLAGS="$DEBUGFLAG $CFLAGS" +CXXFLAGS="$DEBUGFLAG $CXXFLAGS" AC_PROG_CC AC_PROG_CXX @@ -141,5 +136,5 @@ AC_CONFIG_HEADER(config.h:configh.in) AC_OUTPUT(makeinclude) dnl# -dnl# End of "$Id: configure.in,v 1.9 1998/10/21 21:42:13 mike Exp $". +dnl# End of "$Id: configure.in,v 1.10 1998/10/21 21:43:54 mike Exp $". dnl# |
