pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk Add the 'maximum command line check' to all defs.*....



details:   https://anonhg.NetBSD.org/pkgsrc/rev/cb9e47bd769c
branches:  trunk
changeset: 473439:cb9e47bd769c
user:      jmmv <jmmv%pkgsrc.org@localhost>
date:      Mon Apr 19 20:19:46 2004 +0000

description:
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:

 mk/defs.AIX.mk      |   9 ++++++++-
 mk/defs.BSDOS.mk    |  10 +++++++++-
 mk/defs.Darwin.mk   |  10 +++++++++-
 mk/defs.IRIX.mk     |  10 +++++++++-
 mk/defs.Interix.mk  |  10 +++++++++-
 mk/defs.Linux.mk    |  10 +++++++++-
 mk/defs.OpenBSD.mk  |  10 +++++++++-
 mk/defs.SunOS.mk    |  10 +++++++++-
 mk/defs.UnixWare.mk |  10 +++++++++-
 9 files changed, 80 insertions(+), 9 deletions(-)

diffs (188 lines):

diff -r b3adf6c1f3cc -r cb9e47bd769c mk/defs.AIX.mk
--- a/mk/defs.AIX.mk    Mon Apr 19 18:52:09 2004 +0000
+++ b/mk/defs.AIX.mk    Mon Apr 19 20:19:46 2004 +0000
@@ -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 @@
 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 -r b3adf6c1f3cc -r cb9e47bd769c mk/defs.BSDOS.mk
--- a/mk/defs.BSDOS.mk  Mon Apr 19 18:52:09 2004 +0000
+++ b/mk/defs.BSDOS.mk  Mon Apr 19 20:19:46 2004 +0000
@@ -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 @@
 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 -r b3adf6c1f3cc -r cb9e47bd769c mk/defs.Darwin.mk
--- a/mk/defs.Darwin.mk Mon Apr 19 18:52:09 2004 +0000
+++ b/mk/defs.Darwin.mk Mon Apr 19 20:19:46 2004 +0000
@@ -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 @@
 .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 -r b3adf6c1f3cc -r cb9e47bd769c mk/defs.IRIX.mk
--- a/mk/defs.IRIX.mk   Mon Apr 19 18:52:09 2004 +0000
+++ b/mk/defs.IRIX.mk   Mon Apr 19 20:19:46 2004 +0000
@@ -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 @@
 
 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 -r b3adf6c1f3cc -r cb9e47bd769c mk/defs.Interix.mk
--- a/mk/defs.Interix.mk        Mon Apr 19 18:52:09 2004 +0000
+++ b/mk/defs.Interix.mk        Mon Apr 19 20:19:46 2004 +0000
@@ -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 @@
 .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 -r b3adf6c1f3cc -r cb9e47bd769c mk/defs.Linux.mk
--- a/mk/defs.Linux.mk  Mon Apr 19 18:52:09 2004 +0000
+++ b/mk/defs.Linux.mk  Mon Apr 19 20:19:46 2004 +0000
@@ -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 @@
 .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 -r b3adf6c1f3cc -r cb9e47bd769c mk/defs.OpenBSD.mk
--- a/mk/defs.OpenBSD.mk        Mon Apr 19 18:52:09 2004 +0000
+++ b/mk/defs.OpenBSD.mk        Mon Apr 19 20:19:46 2004 +0000
@@ -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 @@
 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 -r b3adf6c1f3cc -r cb9e47bd769c mk/defs.SunOS.mk
--- a/mk/defs.SunOS.mk  Mon Apr 19 18:52:09 2004 +0000
+++ b/mk/defs.SunOS.mk  Mon Apr 19 20:19:46 2004 +0000
@@ -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 @@
 .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 -r b3adf6c1f3cc -r cb9e47bd769c mk/defs.UnixWare.mk
--- a/mk/defs.UnixWare.mk       Mon Apr 19 18:52:09 2004 +0000
+++ b/mk/defs.UnixWare.mk       Mon Apr 19 20:19:46 2004 +0000
@@ -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 @@
 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



Home | Main Index | Thread Index | Old Index