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 | 68f9d936171d74fef0ee175fd0328b1987dac5b4 (patch) | |
tree | b2982c44516466e94d5c90012603a23b599a226d /mk/defs.UnixWare.mk | |
parent | 3d28feac589aaf2cb515ee97945892aabdb51c0d (diff) | |
download | pkgsrc-68f9d936171d74fef0ee175fd0328b1987dac5b4.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.UnixWare.mk')
-rw-r--r-- | mk/defs.UnixWare.mk | 10 |
1 files changed, 9 insertions, 1 deletions
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 |