diff options
author | Magnus Hagander <magnus@hagander.net> | 2007-07-25 10:17:46 +0000 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2007-07-25 10:17:46 +0000 |
commit | 430d0829ae5f014442e48b1ae7eb6d6d6dfd19c7 (patch) | |
tree | c81142a11786a065e120f4dc1fadb0a4409f05f3 | |
parent | b2b9b4d59c6bccea65f33c17345bcd3296eca1be (diff) | |
download | postgresql-430d0829ae5f014442e48b1ae7eb6d6d6dfd19c7.tar.gz postgresql-430d0829ae5f014442e48b1ae7eb6d6d6dfd19c7.zip |
Silence compiler warnings on mingw
-rw-r--r-- | src/pl/plperl/GNUmakefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pl/plperl/GNUmakefile b/src/pl/plperl/GNUmakefile index 46113fdf045..3e1e0487bb2 100644 --- a/src/pl/plperl/GNUmakefile +++ b/src/pl/plperl/GNUmakefile @@ -1,5 +1,5 @@ # Makefile for PL/Perl -# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.30 2007/02/10 04:26:24 tgl Exp $ +# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.31 2007/07/25 10:17:46 mha Exp $ subdir = src/pl/plperl top_builddir = ../../.. @@ -21,6 +21,9 @@ perl_archlibexp := $(subst \,/,$(perl_archlibexp)) perl_privlibexp := $(subst \,/,$(perl_privlibexp)) perl_embed_ldflags = -L$(perl_archlibexp)/CORE -lperl58 override CPPFLAGS += -DPLPERL_HAVE_UID_GID +# Perl on win32 contains /* within comment all over the header file, +# so disable this warning. +override CFLAGS += -Wno-comment endif override CPPFLAGS := -I$(srcdir) $(CPPFLAGS) -I$(perl_archlibexp)/CORE |