diff options
author | jlam <jlam@pkgsrc.org> | 2004-12-17 16:24:22 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-12-17 16:24:22 +0000 |
commit | 88648515a25556d9c441203aa102f2f290775637 (patch) | |
tree | 859a37b74efed0b6ec6c5d9c156cb3f0114f4e0b /devel/libtool-base | |
parent | 3b0e947bbd32db491d9cb8ceee5364a492fbd952 (diff) | |
download | pkgsrc-88648515a25556d9c441203aa102f2f290775637.tar.gz |
Rewrite func_infer_tag in the libtool script so that it's easier to
specify (hardcoded) compilers from which we can infer the correct tag
(CC, CXX, F77). Use the following patterns to match compilers to
tags:
CC: *cc *xlc
CXX: *++ *CC
F77: *77 *fort
Bump the PKGREVISION to 1.5.10nb7 since we now infer the F77 tag from
likely Fortran compilers. Also require at least this version of
libtool when building packages that set USE_FORTRAN. This should fix
PR pkg/28661.
Diffstat (limited to 'devel/libtool-base')
-rw-r--r-- | devel/libtool-base/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/libtool-base/Makefile b/devel/libtool-base/Makefile index 6ef435ee116..f696657690f 100644 --- a/devel/libtool-base/Makefile +++ b/devel/libtool-base/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.47 2004/11/26 09:39:30 jlam Exp $ +# $NetBSD: Makefile,v 1.48 2004/12/17 16:24:23 jlam Exp $ # .include "../../devel/libtool/Makefile.common" PKGNAME= ${DISTNAME:S/-/-base-/} -PKGREVISION= 6 +PKGREVISION= 7 SVR4_PKGNAME= ltoob COMMENT= Generic shared library support script (the script itself) |