summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2004-12-20 13:16:02 +0000
committergrant <grant@pkgsrc.org>2004-12-20 13:16:02 +0000
commit9908f8996eb737c70054be720c0e20d10a62cae3 (patch)
tree7044cfd8c6f9f8b978ec34b5fd715221c3a55990
parent4083c3bcd6aeb78ea4dbff8096b807f0ded796ad (diff)
downloadpkgsrc-9908f8996eb737c70054be720c0e20d10a62cae3.tar.gz
remove workaround for Darwin missing poll.h as a more correct fix is
applied globally now.
-rw-r--r--databases/postgresql74/Makefile.common7
-rw-r--r--lang/python24/Makefile.common6
2 files changed, 3 insertions, 10 deletions
diff --git a/databases/postgresql74/Makefile.common b/databases/postgresql74/Makefile.common
index 472a3e26fec..817855e75d9 100644
--- a/databases/postgresql74/Makefile.common
+++ b/databases/postgresql74/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.15 2004/12/19 05:10:49 grant Exp $
+# $NetBSD: Makefile.common,v 1.16 2004/12/20 13:16:02 grant Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -87,11 +87,6 @@ CONFIGURE_ARGS+= --without-tk
# Postgresql explicitly forbids any use of -ffast-math
CFLAGS:= ${CFLAGS:S/-ffast-math//}
-# newer Darwin has poll() but not poll.h, so explicitly ignore poll().
-.if ${OPSYS} == "Darwin"
-CONFIGURE_ENV+= ac_cv_func_poll=no
-.endif
-
post-extract:
if [ -d ${WRKSRC}/src ]; then \
${RM} -f ${WRKSRC}/src/Makefile.custom; \
diff --git a/lang/python24/Makefile.common b/lang/python24/Makefile.common
index b3d43d9ab69..2f1eb9ecca8 100644
--- a/lang/python24/Makefile.common
+++ b/lang/python24/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.2 2004/12/19 05:30:14 grant Exp $
+# $NetBSD: Makefile.common,v 1.3 2004/12/20 13:16:02 grant Exp $
#
DISTNAME= Python-2.4
@@ -66,11 +66,9 @@ EXTRA_SO_SUBST=
PLIST_SUBST+= EXTRA_SO=${EXTRA_SO_SUBST}
PLIST_SUBST+= OSSAUDIODEV=${OSSAUDIODEV_SUBST}
-.if ${OPSYS} == "Darwin"
# Make sure python modules can link correctly
+.if ${OPSYS} == "Darwin"
INSTALL_UNSTRIPPED= yes
-# newer Darwin has poll() but not poll.h, so explicitly ignore poll().
-CONFIGURE_ENV+= ac_cv_func_poll=no
.endif
.if ${OPSYS} == "IRIX"