summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-08-09 22:57:00 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-08-09 22:57:00 +0000
commitb2e9308751ec0bc90dfbae69bc7309df62672e9f (patch)
tree19a56f1e83990f98f36a9b970ecac46d22570bc0 /configure.in
parent050919103f76dbe4aebaa8ac8a1e2633713ee571 (diff)
More shadowed variables in FLUID, plus use snprintf, strlcpy, and strlcat.
Don't use extra warning flags for normal compiles. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2568 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in11
1 files changed, 7 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index f435237af..1f61bbb83 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.83 2002/08/09 01:09:47 easysw Exp $"
+dnl "$Id: configure.in,v 1.33.2.31.2.84 2002/08/09 22:56:59 easysw Exp $"
dnl
dnl Configuration script for the Fast Light Tool Kit (FLTK).
dnl
@@ -614,8 +614,11 @@ if test -n "$GCC"; then
CXX="$CC"
- # Show all warnings when compiling...
- OPTIM="-Wall -Wshadow -Wconversion -Winline $OPTIM"
+ # Show all standard warnings + unused variables when compiling...
+ OPTIM="-Wall -Wunused $OPTIM"
+
+ # The following additional warnings are useful for tracking down problems...
+ #OPTIM="-Wshadow -Wconversion -Winline $OPTIM"
# Set the default compiler optimizations...
if test -z "$DEBUGFLAG"; then
@@ -782,5 +785,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.83 2002/08/09 01:09:47 easysw Exp $".
+dnl End of "$Id: configure.in,v 1.33.2.31.2.84 2002/08/09 22:56:59 easysw Exp $".
dnl