summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mk/defs.AIX.mk9
-rw-r--r--mk/defs.BSDOS.mk10
-rw-r--r--mk/defs.Darwin.mk10
-rw-r--r--mk/defs.IRIX.mk10
-rw-r--r--mk/defs.Interix.mk10
-rw-r--r--mk/defs.Linux.mk10
-rw-r--r--mk/defs.OpenBSD.mk10
-rw-r--r--mk/defs.SunOS.mk10
-rw-r--r--mk/defs.UnixWare.mk10
9 files changed, 80 insertions, 9 deletions
diff --git a/mk/defs.AIX.mk b/mk/defs.AIX.mk
index 9c7216622a0..de0ebe61d87 100644
--- a/mk/defs.AIX.mk
+++ b/mk/defs.AIX.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.AIX.mk,v 1.6 2004/04/07 14:26:51 tv Exp $
+# $NetBSD: defs.AIX.mk,v 1.7 2004/04/19 20:19:46 jmmv Exp $
#
# Variable definitions for the AIX operating system.
@@ -181,3 +181,10 @@ DEFAULT_SERIAL_DEVICE?= /dev/tty0
SERIAL_DEVICES?= /dev/tty0 \
/dev/tty
+# 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
diff --git a/mk/defs.BSDOS.mk b/mk/defs.BSDOS.mk
index 2bae4bd9364..7ebbc42e72b 100644
--- a/mk/defs.BSDOS.mk
+++ b/mk/defs.BSDOS.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.BSDOS.mk,v 1.7 2004/04/07 14:26:51 tv Exp $
+# $NetBSD: defs.BSDOS.mk,v 1.8 2004/04/19 20:19:46 jmmv Exp $
#
# Variable definitions for the BSD/OS operating system.
@@ -161,3 +161,11 @@ DEFAULT_SERIAL_DEVICE?= /dev/null
SERIAL_DEVICES?= /dev/null
PKG_CREATE_USERGROUP= NO # until it works
+
+# 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
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
diff --git a/mk/defs.IRIX.mk b/mk/defs.IRIX.mk
index b49874605b5..992558b0dec 100644
--- a/mk/defs.IRIX.mk
+++ b/mk/defs.IRIX.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.IRIX.mk,v 1.46 2004/04/13 22:04:15 heinz Exp $
+# $NetBSD: defs.IRIX.mk,v 1.47 2004/04/19 20:19:46 jmmv Exp $
#
# Variable definitions for the IRIX operating system.
@@ -165,3 +165,11 @@ PKG_TOOLS_BIN?= ${LOCALBASE}/sbin
CONFIGURE_ENV+= ABI=${ABI}
MAKE_ENV+= ABI=${ABI}
+
+# 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
diff --git a/mk/defs.Interix.mk b/mk/defs.Interix.mk
index 18099cdd992..6f49ed5186f 100644
--- a/mk/defs.Interix.mk
+++ b/mk/defs.Interix.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.Interix.mk,v 1.9 2004/04/07 14:26:51 tv Exp $
+# $NetBSD: defs.Interix.mk,v 1.10 2004/04/19 20:19:46 jmmv Exp $
#
# Variable definitions for the Interix operating system.
@@ -148,3 +148,11 @@ SERIAL_DEVICES?= /dev/null
.if ${CPPFLAGS:M-D_ALL_SOURCE} == ""
CPPFLAGS+= -D_ALL_SOURCE
.endif
+
+# 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
diff --git a/mk/defs.Linux.mk b/mk/defs.Linux.mk
index d1a3da1bd21..fb41e6be51f 100644
--- a/mk/defs.Linux.mk
+++ b/mk/defs.Linux.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.Linux.mk,v 1.68 2004/04/13 22:04:15 heinz Exp $
+# $NetBSD: defs.Linux.mk,v 1.69 2004/04/19 20:19:46 jmmv Exp $
#
# Variable definitions for the Linux operating system.
@@ -194,3 +194,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
diff --git a/mk/defs.OpenBSD.mk b/mk/defs.OpenBSD.mk
index 766dc1ba624..0e127c92035 100644
--- a/mk/defs.OpenBSD.mk
+++ b/mk/defs.OpenBSD.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.OpenBSD.mk,v 1.30 2004/04/07 14:26:51 tv Exp $
+# $NetBSD: defs.OpenBSD.mk,v 1.31 2004/04/19 20:19:46 jmmv Exp $
#
# Variable definitions for the OpenBSD operating system.
@@ -169,3 +169,11 @@ SERIAL_DEVICES?= /dev/ttya \
DEFAULT_SERIAL_DEVICE?= /dev/null
SERIAL_DEVICES?= /dev/null
.endif
+
+# 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
diff --git a/mk/defs.SunOS.mk b/mk/defs.SunOS.mk
index 7c1945a2ad3..bad0b3e3d2e 100644
--- a/mk/defs.SunOS.mk
+++ b/mk/defs.SunOS.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.SunOS.mk,v 1.83 2004/04/07 14:26:51 tv Exp $
+# $NetBSD: defs.SunOS.mk,v 1.84 2004/04/19 20:19:46 jmmv Exp $
#
# Variable definitions for the SunOS/Solaris operating system.
@@ -186,3 +186,11 @@ PKG_TOOLS_BIN?= ${LOCALBASE}/sbin
.else
PKG_TOOLS_BIN?= ${LOCALBASE}/bin
.endif
+
+# 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
diff --git a/mk/defs.UnixWare.mk b/mk/defs.UnixWare.mk
index 9d91187b81e..356b40bedd8 100644
--- a/mk/defs.UnixWare.mk
+++ b/mk/defs.UnixWare.mk
@@ -1,4 +1,4 @@
-# $NetBSD: defs.UnixWare.mk,v 1.1 2004/04/12 15:15:33 heinz Exp $
+# $NetBSD: defs.UnixWare.mk,v 1.2 2004/04/19 20:19:46 jmmv Exp $
#
# Variable definitions for the UnixWare 7 operating system.
@@ -151,3 +151,11 @@ _STRIPFLAG_INSTALL?= # install(1) option to strip
LOCALBASE?= ${DESTDIR}/usr/pkg
PKG_TOOLS_BIN?= ${LOCALBASE}/sbin
+
+# 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