summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2003-05-29 08:55:48 +0000
committerabs <abs@pkgsrc.org>2003-05-29 08:55:48 +0000
commit38583051e28270d126b15907f02aff31812344ae (patch)
tree65eae1fba1ec7298ea19106e4332ddaaea1ad373 /databases
parentcbb4b4fce5c79a325fe0f4573c07ef6f78ec02cb (diff)
downloadpkgsrc-38583051e28270d126b15907f02aff31812344ae.tar.gz
Since postgresql explicitly checks for and fails if -ffast-math is set in
CFLAGS, strip it out. No package bump as no change in generated package.
Diffstat (limited to 'databases')
-rw-r--r--databases/postgresql/Makefile.common5
1 files changed, 4 insertions, 1 deletions
diff --git a/databases/postgresql/Makefile.common b/databases/postgresql/Makefile.common
index d26f857ade4..eb68bcd8c99 100644
--- a/databases/postgresql/Makefile.common
+++ b/databases/postgresql/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.34 2003/05/22 07:17:06 wiz Exp $
+# $NetBSD: Makefile.common,v 1.35 2003/05/29 08:55:48 abs Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -64,6 +64,9 @@ CONFIGURE_ARGS+= --without-python
CONFIGURE_ARGS+= --without-tcl
CONFIGURE_ARGS+= --without-tk
+# Postgresql explicitly forbids any use of -ffast-math
+CFLAGS:= ${CFLAGS:S/-ffast-math//}
+
post-extract:
if [ -d ${WRKSRC}/src ]; then \
${RM} -f ${WRKSRC}/src/Makefile.custom; \