diff options
author | jbj <devnull@localhost> | 2003-01-20 16:12:12 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-01-20 16:12:12 +0000 |
commit | fc1b33b66f0502ad1d9ccf0e3a2112e7aeb8b478 (patch) | |
tree | 51b28d2405ffe1a48326abe9aae7f74412c2f164 /configure.ac | |
parent | f49f99df008b7909d5f7bf01702d70d7b7475a59 (diff) | |
download | rpm-fc1b33b66f0502ad1d9ccf0e3a2112e7aeb8b478.tar.gz rpm-fc1b33b66f0502ad1d9ccf0e3a2112e7aeb8b478.tar.bz2 rpm-fc1b33b66f0502ad1d9ccf0e3a2112e7aeb8b478.zip |
Restore compiler warnings now tthat elfutil's -Werror is not there.
CVS patchset: 6017
CVS date: 2003/01/20 16:12:12
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/configure.ac b/configure.ac index fb6e7ba11..1fc12b231 100644 --- a/configure.ac +++ b/configure.ac @@ -16,31 +16,31 @@ dnl XXX AM_MAINTAINER_MODE dnl Set of available languages. ALL_LINGUAS="cs da de fi fr gl is ja ko no pl pt pt_BR ro ru sk sl sr sv tr" -echo " -**************************************************************************** -* * -* *** WARNING WARNING WARNING *** * -* * -* This is source code from the development branch of rpm-4.2. * -* * -* If you want the "production" rpm-4.0.4 or rpm-4.1 code, then you should * -* either use an rpm-4.0.4 or rpm-4.1 src.rpm. Alternatively, if using a * -* CVS checkout, do the following: * -* * -* cvs -d :pserver:anonymous@cvs.rpm.org:/cvs/devel login * -* (no password, just carriage return) * -* cvs -d :pserver:anonymous@cvs.rpm.org:/cvs/devel get rpm * -* cd rpm * -* * -* Here's the rpm-4_1 branch: * -* cvs up -r rpm-4_1 * -* * -* Here's the rpm-4_0 branch: * -* cvs up -r rpm-4_0 * -* * -**************************************************************************** -" -sleep 10 +dnl echo " +dnl **************************************************************************** +dnl * * +dnl * *** WARNING WARNING WARNING *** * +dnl * * +dnl * This is source code from the development branch of rpm-4.2. * +dnl * * +dnl * If you want the "production" rpm-4.0.4 or rpm-4.1 code, then you should * +dnl * either use an rpm-4.0.4 or rpm-4.1 src.rpm. Alternatively, if using a * +dnl * CVS checkout, do the following: * +dnl * * +dnl * cvs -d :pserver:anonymous@cvs.rpm.org:/cvs/devel login * +dnl * (no password, just carriage return) * +dnl * cvs -d :pserver:anonymous@cvs.rpm.org:/cvs/devel get rpm * +dnl * cd rpm * +dnl * * +dnl * Here's the rpm-4_1 branch: * +dnl * cvs up -r rpm-4_1 * +dnl * * +dnl * Here's the rpm-4_0 branch: * +dnl * cvs up -r rpm-4_0 * +dnl * * +dnl **************************************************************************** +dnl " +dnl sleep 10 dnl Checks for programs. AC_PROG_CC @@ -50,7 +50,7 @@ AC_PROG_CXX AS=${AS-as} AC_SUBST(AS) if test "$ac_cv_prog_gcc" = yes; then - CFLAGS="$CFLAGS -D_GNU_SOURCE -D_REENTRANT -Wall" + CFLAGS="$CFLAGS -D_GNU_SOURCE -D_REENTRANT -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wno-char-subscripts" fi export CFLAGS |