summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2015-01-13 22:52:11 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2015-01-13 22:52:11 -0500
commitfd3d894e4ea0021efa2628e4dfc5fe0ed3071859 (patch)
treec47ff5885aaf292bebc5e01c23adfcb32f1e225a
parent0139dea8f1cea49f13c22a3f645dbdd02b90d25c (diff)
downloadpostgresql-fd3d894e4ea0021efa2628e4dfc5fe0ed3071859.tar.gz
Remove duplicate specification of -Ae for HP-UX C compiler.
Autoconf has known about automatically selecting -Ae when needed for quite some time now, so remove the redundant addition in template/hpux. Noted while setting up buildfarm member pademelon.
-rw-r--r--src/template/hpux3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/template/hpux b/src/template/hpux
index ce4d93ced7..79d3475664 100644
--- a/src/template/hpux
+++ b/src/template/hpux
@@ -1,9 +1,10 @@
# src/template/hpux
+# Need this for access to many modern library features
CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
+# HP's compiler likes the spelling +O2 not -O2, so adjust default CFLAGS
if test "$GCC" != yes ; then
- CC="$CC -Ae"
CFLAGS="+O2"
fi