mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
0bcd76e773
- Fixed libltdl to no longer attempt to dlopen() the old_library listed in the .la file. Now will use only the preopen loader to attempt to load it. This may be a security issue, all users are advised to upgrade. - Similarly, don't open module.la from the current directory, this changes the behavior of libltdl to match the documentation.
28 lines
634 B
Makefile
28 lines
634 B
Makefile
# New ports collection makefile for: libtool
|
|
# Date created: 6 May 1998
|
|
# Whom: Motoyuki Kasahara <m-kasahr@sra.co.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME?= libtool
|
|
PORTVERSION= 2.2.6b
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= libtool
|
|
DISTNAME= libtool-${PORTVERSION}
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT?= Generic shared library support script
|
|
|
|
WRKSRC= ${WRKDIR}/libtool-${PORTVERSION:S|a||}
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS?= --disable-ltdl-install
|
|
CONFIGURE_ENV= MAKEINFO="makeinfo --no-split"
|
|
INFO?= libtool
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|sed gsed|sed|g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|