diff options
| author | Carl E. Thompson <devel-fltk@carlthompson.net> | 1999-02-25 19:47:31 +0000 |
|---|---|---|
| committer | Carl E. Thompson <devel-fltk@carlthompson.net> | 1999-02-25 19:47:31 +0000 |
| commit | a53a5cb978b1109fc1c61f364e67dc60b9c21d98 (patch) | |
| tree | 745462b3c5b7c382c240cd783b7a823b450aa12d | |
| parent | 548949b16e775e539f0999b4275220448c494cc3 (diff) | |
Changes egcs/gcc optimization default to "-O2" . Makes library and apps
much smaller.
-Carl
git-svn-id: file:///fltk/svn/fltk/trunk@342 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index d7e446db1..ee8f833a1 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.25 1999/02/22 21:42:54 mike Exp $" +dnl# "$Id: configure.in,v 1.26 1999/02/25 19:47:31 carl Exp $" dnl# dnl# Configuration script for the Fast Light Tool Kit (FLTK). dnl# @@ -167,8 +167,8 @@ if test -n "$GXX"; then CFLAGS="-Wall $CFLAGS" CXXFLAGS="-Wall -Wno-return-type $CXXFLAGS" if test -z "$DEBUGFLAG"; then - CFLAGS="-O3 $CFLAGS" - CXXFLAGS="-O3 $CXXFLAGS" + CFLAGS="-O2 $CFLAGS" + CXXFLAGS="-O2 $CXXFLAGS" fi else case `(uname) 2>/dev/null` in @@ -223,5 +223,5 @@ AC_CONFIG_HEADER(config.h:configh.in) AC_OUTPUT(makeinclude) dnl# -dnl# End of "$Id: configure.in,v 1.25 1999/02/22 21:42:54 mike Exp $". +dnl# End of "$Id: configure.in,v 1.26 1999/02/25 19:47:31 carl Exp $". dnl# |
