diff options
author | grant <grant@pkgsrc.org> | 2002-11-17 11:58:49 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2002-11-17 11:58:49 +0000 |
commit | 53c5ebc61ff2f62b9b318e9cf75af3bc5838986f (patch) | |
tree | 5489abef23278c3042198f2da1cf8d20e521d277 /mk | |
parent | 6220163acebb050aa0d242c94dc783b3e5e2fc57 (diff) | |
download | pkgsrc-53c5ebc61ff2f62b9b318e9cf75af3bc5838986f.tar.gz |
bump LIBTOOL_REQD for FreeBSD.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 9ebeb685363..342164fb834 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1084 2002/11/12 13:42:50 dmcmahill Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1085 2002/11/17 11:58:49 grant Exp $ # # This file is in the public domain. # @@ -310,7 +310,12 @@ CONFIG_SHELL?= ${SH} CONFIGURE_ENV+= CONFIG_SHELL=${CONFIG_SHELL} .endif +# FreeBSD shared library naming was fixed in libtool nb10. +.if ${OPSYS} == "FreeBSD" +LIBTOOL_REQD= 1.4.20010614nb10 +.else LIBTOOL_REQD= 1.4.20010614nb9 +.endif LIBTOOL= ${LOCALBASE}/bin/libtool .if defined(USE_LIBTOOL) PKGLIBTOOL= ${LIBTOOL} |