Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 430d082

Browse files
committed
Silence compiler warnings on mingw
1 parent b2b9b4d commit 430d082

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/pl/plperl/GNUmakefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Makefile for PL/Perl
2-
# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.30 2007/02/10 04:26:24 tgl Exp $
2+
# $PostgreSQL: pgsql/src/pl/plperl/GNUmakefile,v 1.31 2007/07/25 10:17:46 mha Exp $
33

44
subdir = src/pl/plperl
55
top_builddir = ../../..
@@ -21,6 +21,9 @@ perl_archlibexp := $(subst \,/,$(perl_archlibexp))
2121
perl_privlibexp := $(subst \,/,$(perl_privlibexp))
2222
perl_embed_ldflags = -L$(perl_archlibexp)/CORE -lperl58
2323
override CPPFLAGS += -DPLPERL_HAVE_UID_GID
24+
# Perl on win32 contains /* within comment all over the header file,
25+
# so disable this warning.
26+
override CFLAGS += -Wno-comment
2427
endif
2528

2629
override CPPFLAGS := -I$(srcdir) $(CPPFLAGS) -I$(perl_archlibexp)/CORE

0 commit comments

Comments
 (0)