diff options
author | grant <grant@pkgsrc.org> | 2003-01-21 22:48:57 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-01-21 22:48:57 +0000 |
commit | da30fb13f682ce2e5d9bad3821e837fbb7a519ad (patch) | |
tree | cc2dcd2762759f8e1069b4baf70ce3ba51642dd1 /mk | |
parent | da2439d6647f861b0c42d242ece6107533da68c2 (diff) | |
download | pkgsrc-da30fb13f682ce2e5d9bad3821e837fbb7a519ad.tar.gz |
require at least libtool 1.4.20010614nb12 on Darwin.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 6 | ||||
-rw-r--r-- | mk/defs.Darwin.mk | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 732420588fc..7abb1228f48 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1131 2003/01/20 16:26:43 wiz Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1132 2003/01/21 22:48:57 grant Exp $ # # This file is in the public domain. # @@ -222,7 +222,11 @@ CONFIG_SHELL?= ${SH} CONFIGURE_ENV+= CONFIG_SHELL=${CONFIG_SHELL} .endif +.if defined(_OPSYS_LIBTOOL_REQD) +LIBTOOL_REQD= ${_OPSYS_LIBTOOL_REQD} +.else LIBTOOL_REQD?= 1.4.20010614nb11 +.endif LIBTOOL= ${LOCALBASE}/bin/libtool SHLIBTOOL= ${LOCALBASE}/bin/shlibtool .if defined(USE_LIBTOOL) diff --git a/mk/defs.Darwin.mk b/mk/defs.Darwin.mk index 0acb40038b7..cf78c91676b 100644 --- a/mk/defs.Darwin.mk +++ b/mk/defs.Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Darwin.mk,v 1.43 2003/01/15 20:55:39 jlam Exp $ +# $NetBSD: defs.Darwin.mk,v 1.44 2003/01/21 22:48:58 grant Exp $ # # Variable definitions for the Darwin operating system. @@ -94,6 +94,7 @@ _OPSYS_HAS_INET6= no # IPv6 is not standard _OPSYS_HAS_JAVA= yes # Java is standard _OPSYS_HAS_MANZ= yes # MANZ controls gzipping of man pages _OPSYS_HAS_OSSAUDIO= no # libossaudio is available +_OPSYS_LIBTOOL_REQD= 1.4.20010614nb12 # base version of libtool required _OPSYS_PERL_REQD= 5.8.0 # base version of perl required _OPSYS_RPATH_NAME= # no name of symbol in rpath directive to linker _PATCH_CAN_BACKUP= yes # native patch(1) can make backups |