From ff60e09c09b27051baadc61f1361ec0e2e7150e9 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 13 Apr 2005 19:40:56 +0000 Subject: Add -Wno-format-y2k option to eliminate Y2k warnings - ignored by some versions of GCC, but at least the newer versions won't give us that warning about our use of strftime()... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4280 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 5fb0dc6a9..9ae675ddd 100644 --- a/configure.in +++ b/configure.in @@ -756,7 +756,7 @@ if test -n "$GCC"; then # Show all standard warnings + unused variables, conversion errors, # and inlining problems when compiling... - OPTIM="-Wall -Wunused -Wconversion $OPTIM" + OPTIM="-Wall -Wunused -Wconversion -Wno-format-y2k $OPTIM" # The following additional warnings are useful for tracking down problems... #OPTIM="-Wshadow $OPTIM" -- cgit v1.2.3