Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9cf2706

Browse files
committed
Allow augmenting CPPFLAGS from the configure command line. This generally
works, but some platform templates overwrote it without asking.
1 parent 876ef5d commit 9cf2706

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/template/hpux

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# $PostgreSQL: pgsql/src/template/hpux,v 1.15 2006/03/11 04:38:41 momjian Exp $
1+
# $PostgreSQL: pgsql/src/template/hpux,v 1.16 2006/12/12 19:43:19 petere Exp $
22

3-
CPPFLAGS="-D_XOPEN_SOURCE_EXTENDED"
3+
CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
44

55
if test "$GCC" != yes ; then
66
CC="$CC -Ae"

src/template/linux

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $PostgreSQL: pgsql/src/template/linux,v 1.28 2006/03/11 04:38:41 momjian Exp $
1+
# $PostgreSQL: pgsql/src/template/linux,v 1.29 2006/12/12 19:43:19 petere Exp $
22

33
# Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise
4-
CPPFLAGS="-D_GNU_SOURCE"
4+
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"

0 commit comments

Comments
 (0)