diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-09-21 20:17:43 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-09-21 20:17:43 +0000 |
commit | 353371874f3050bafa1a9f4d7ad7253d70165d81 (patch) | |
tree | 6163bfea2613a1978cf8678df7dbdf6f4b9d3fc8 /src | |
parent | b4c8d47ab0c3c570e31c29696f74a204a33df647 (diff) | |
download | postgresql-353371874f3050bafa1a9f4d7ad7253d70165d81.tar.gz postgresql-353371874f3050bafa1a9f4d7ad7253d70165d81.zip |
Replace brain-dead Autoconf macros AC_ARG_{ENABLE,WITH} with something
that's actually useful, robust, consistent.
Better plan to generate aclocal.m4 as well: use m4 include directives,
rather than cat.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.global.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index d0188db79f7..80069263b1e 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -1,4 +1,4 @@ -# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.93 2000/09/08 18:29:20 petere Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.94 2000/09/21 20:17:43 petere Exp $ #------------------------------------------------------------------------------ # All PostgreSQL makefiles include this file and use the variables it sets, @@ -156,6 +156,9 @@ CXX=@CXX@ CXXFLAGS=@CXXFLAGS@ @INCLUDES@ GCC = @GCC@ +ifeq ($(GCC), yes) + CFLAGS += -Wall -Wmissing-prototypes -Wmissing-declarations +endif ############################################################################## # |