diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-07-09 17:43:11 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-07-09 17:43:11 +0000 |
commit | 9e5632dd661f75b5801706e55659a4da501e49b5 (patch) | |
tree | 1a0770d8cc1771f94f7777b9a986bb87029c35d9 /net-p2p | |
parent | Allow to install and use 3rd party packages in X11BASE. (diff) |
Apply a big libtool patch to allow porters to use the libtool installed by
the libtoolX ports instead of the one included with each port. Ports that
set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of
the included version. To restore previous behavior, use the new macro,
USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version.
For example, to use the ports version of libtool-1.5, add the following to
your Makefile:
USE_LIBTOOL_VER= 15
To use the included version of libtool with extra hacks provided by
libtool-1.5, add the following to your Makefile:
USE_INC_LIBTOOL_VER= 15
With this change, ports that had to add additional libtool hacks to prevent
.la files from being installed or to fix certain threading issues can now
delete those hacks (after appropriate testing, of course).
PR: 63944
Based on work by:eik and marcus
Approved by: ade (autotools maintainer)
Tested by: kris on pointyhat
Bound to be hidden problems: You bet
Notes
Notes:
svn path=/head/; revision=113296
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/dclib/Makefile | 2 | ||||
-rw-r--r-- | net-p2p/fcptools/Makefile | 2 | ||||
-rw-r--r-- | net-p2p/gnunet/Makefile | 2 | ||||
-rw-r--r-- | net-p2p/libfreenet/Makefile | 2 | ||||
-rw-r--r-- | net-p2p/verlihub/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/net-p2p/dclib/Makefile b/net-p2p/dclib/Makefile index 2546d6002da4..e7a50e00f068 100644 --- a/net-p2p/dclib/Makefile +++ b/net-p2p/dclib/Makefile @@ -21,7 +21,7 @@ USE_BZIP2= yes GNU_CONFIGURE= yes USE_REINPLACE= yes INSTALLS_SHLIB= yes -USE_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=13 CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} diff --git a/net-p2p/fcptools/Makefile b/net-p2p/fcptools/Makefile index e86750f331b7..e95729dfe402 100644 --- a/net-p2p/fcptools/Makefile +++ b/net-p2p/fcptools/Makefile @@ -16,7 +16,7 @@ MAINTAINER= lioux@FreeBSD.org COMMENT= FreeNet client library and command-line tools for shell scripting USE_GMAKE= yes -USE_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=13 USE_SIZE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --includedir=${PREFIX}/include/${PORTNAME:L} diff --git a/net-p2p/gnunet/Makefile b/net-p2p/gnunet/Makefile index 97f52e64c5e4..a3857bb3f701 100644 --- a/net-p2p/gnunet/Makefile +++ b/net-p2p/gnunet/Makefile @@ -23,7 +23,7 @@ USE_GETOPT_LONG= yes USE_GETTEXT= yes USE_GMAKE= yes USE_GNOME= gnometarget gtk12 lthack -USE_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=13 USE_OPENSSL= yes USE_REINPLACE= yes diff --git a/net-p2p/libfreenet/Makefile b/net-p2p/libfreenet/Makefile index 5ff227f05cca..e651ee5afd4d 100644 --- a/net-p2p/libfreenet/Makefile +++ b/net-p2p/libfreenet/Makefile @@ -18,7 +18,7 @@ COMMENT= Freenet library written in C USE_REINPLACE= yes USE_OPENSSL= yes USE_GMAKE= yes -USE_LIBTOOL_VER=13 +USE_INC_LIBTOOL_VER=13 CONFIGURE_ARGS= --includedir=${PREFIX}/include/libfreenet INSTALLS_SHLIB= yes diff --git a/net-p2p/verlihub/Makefile b/net-p2p/verlihub/Makefile index 5534901638dd..f67b8ecf3c04 100644 --- a/net-p2p/verlihub/Makefile +++ b/net-p2p/verlihub/Makefile @@ -23,7 +23,7 @@ RUN_DEPENDS= bash:${PORTSDIR}/shells/bash2 USE_MYSQL= yes USE_PERL5= yes USE_GMAKE= yes -USE_LIBTOOL_VER= 15 +USE_INC_LIBTOOL_VER= 15 USE_REINPLACE= yes INSTALLS_SHLIB= yes CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ |