Check-in Number:
|
624 | |
Date: |
2001-Aug-08 13:49:07 (local)
2001-Aug-08 11:49:07 (UTC) |
User: | simons |
Branch: | |
Comment: |
Don't compile with -ansi or gcc won't find the 64-bit data types on
some platforms. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/xds/configure.ac 1.14 -> 1.15
--- configure.ac 2001/08/07 11:16:19 1.14
+++ configure.ac 2001/08/08 11:49:07 1.15
@@ -2,7 +2,7 @@
AC_INIT(libxds)
AC_PREREQ(2.52)
-AC_REVISION($Revision: 1.14 $)
+AC_REVISION($Revision: 1.15 $)
dnl Get rid of the lousy -g and -O defaults in CFLAGS.
dnl
@@ -18,7 +18,7 @@
dnl Set special flags for gcc.
dnl
if test "$GCC" = yes; then
- CFLAGS="$CFLAGS -Wall -ansi -pedantic -Wshadow -Wpointer-arith -Wcast-align -Winline -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wno-long-long"
+ CFLAGS="$CFLAGS -Wall -pedantic -Wshadow -Wpointer-arith -Wcast-align -Winline -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Wno-long-long"
fi
dnl Check for exact data types.
|
|