summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2005-11-25 20:40:16 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2005-11-25 20:40:16 +0000
commit9e8a88e66cb9e7739542d61e09c803cecc7e6248 (patch)
tree77e793b1f28568c3fc8b8b2cd146f34c66cd89d8 /configure.in
parentfe286dfe7b0ae6827942d40586906431c1d97287 (diff)
Fix mousewheel handler bug (using wrong variable in initial check)
Add sudoku game app (fun for the holidays! :) Use "-Os -g" as the default optimization settings. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4652 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 40d8cea65..8551512e6 100644
--- a/configure.in
+++ b/configure.in
@@ -760,7 +760,7 @@ if test -n "$GCC"; then
# They all seem to make either no difference or enlarge
# the code by a few hundred bytes.
#
- # "-O2" seems to be the best compromise between speed and
+ # "-Os" seems to be the best compromise between speed and
# code size. "-O3" and higher seem to make no effective
# difference in the speed of the code, but does bloat the
# library 10+%.
@@ -769,7 +769,7 @@ if test -n "$GCC"; then
if test "x$with_optim" != x; then
OPTIM="$with_optim $OPTIM"
else
- OPTIM="-O2 $OPTIM"
+ OPTIM="-Os -g $OPTIM"
fi
fi