summaryrefslogtreecommitdiff
path: root/mk/defs.Darwin.mk
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2004-04-19 20:19:46 +0000
committerjmmv <jmmv@pkgsrc.org>2004-04-19 20:19:46 +0000
commit316296c980af03bda2aa09dbb3c605ea2eda0bfd (patch)
treeb2982c44516466e94d5c90012603a23b599a226d /mk/defs.Darwin.mk
parent3f1cab8be87e8ccdd235b92c90a1d8476e951442 (diff)
downloadpkgsrc-316296c980af03bda2aa09dbb3c605ea2eda0bfd.tar.gz
Add the 'maximum command line check' to all defs.*.mk files for consistency
across all of them, but let it commented out until each responsible person for each system modifies it to work correctly. Requested by agc@.
Diffstat (limited to 'mk/defs.Darwin.mk')
-rw-r--r--mk/defs.Darwin.mk10
1 files changed, 9 insertions, 1 deletions
diff --git a/mk/defs.Darwin.mk b/mk/defs.Darwin.mk
index 32ec7345ca1..33ff12e0a4d 100644
--- a/mk/defs.Darwin.mk
+++ b/mk/defs.Darwin.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.Darwin.mk,v 1.70 2004/04/13 22:04:15 heinz Exp $
+# $NetBSD: defs.Darwin.mk,v 1.71 2004/04/19 20:19:46 jmmv Exp $
#
# Variable definitions for the Darwin operating system.
@@ -145,3 +145,11 @@ _STRIPFLAG_INSTALL?= -s # install(1) option to strip
.endif
LOCALBASE?= ${DESTDIR}/usr/pkg
+
+# check for maximum command line length and set it in configure's environment,
+# to avoid a test required by the libtool script that takes forever.
+# FIXME: Adjust to work on this system and enable the lines below.
+#.if defined(GNU_CONFIGURE) && defined(USE_LIBTOOL)
+#_OPSYS_MAX_CMDLEN!= /sbin/sysctl -n kern.argmax
+#CONFIGURE_ENV+= lt_cv_sys_max_cmd_len=${_OPSYS_MAX_CMDLEN}
+#.endif