summaryrefslogtreecommitdiff
path: root/devel/libtool-base
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2005-03-05 07:43:05 +0000
committergrant <grant@pkgsrc.org>2005-03-05 07:43:05 +0000
commit8bb85c2cd0f93b3471582dfbcc1313243f6055f3 (patch)
tree1b28a24ddad825a7706356fdd090eb9dd7fd89fa /devel/libtool-base
parentd1452dfbbed839956eb98ac02e7d295b1efdbf79 (diff)
downloadpkgsrc-8bb85c2cd0f93b3471582dfbcc1313243f6055f3.tar.gz
add a comment describing the options used on AIX.
Diffstat (limited to 'devel/libtool-base')
-rw-r--r--devel/libtool-base/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/devel/libtool-base/Makefile b/devel/libtool-base/Makefile
index caf1e1ec7e9..0882b016bb7 100644
--- a/devel/libtool-base/Makefile
+++ b/devel/libtool-base/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.57 2005/03/03 22:30:15 garbled Exp $
+# $NetBSD: Makefile,v 1.58 2005/03/05 07:43:05 grant Exp $
#
.include "../../devel/libtool/Makefile.common"
@@ -22,8 +22,11 @@ CONFLICTS+= libtool<=1.3.5nb11
TEST_TARGET= check
.if ${OPSYS} == "AIX"
-LDFLAGS+= -Wl,-brtl
-CONFIGURE_ARGS+= --disable-libtool-lock
+# always build libraries and executables that use the runtime linker.
+# in addition, disable libtool locking, as the test is broken on AIX,
+# and results in files being locked indefinitely.
+LDFLAGS+= -Wl,-brtl
+CONFIGURE_ARGS+= --disable-libtool-lock
.endif
.if ${OPSYS} == "NetBSD"
. if !exists(/usr/libexec/ld.so) && !exists(/usr/libexec/ld.elf_so)