diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-04-19 20:19:46 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-04-19 20:19:46 +0000 |
commit | 316296c980af03bda2aa09dbb3c605ea2eda0bfd (patch) | |
tree | b2982c44516466e94d5c90012603a23b599a226d /mk/defs.AIX.mk | |
parent | 3f1cab8be87e8ccdd235b92c90a1d8476e951442 (diff) | |
download | pkgsrc-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.AIX.mk')
-rw-r--r-- | mk/defs.AIX.mk | 9 |
1 files changed, 8 insertions, 1 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 |