diff options
author | garbled <garbled@pkgsrc.org> | 2005-03-03 20:33:44 +0000 |
---|---|---|
committer | garbled <garbled@pkgsrc.org> | 2005-03-03 20:33:44 +0000 |
commit | 93fa32fe683129c0b9df3a5f0f47e654a9f8e349 (patch) | |
tree | 3e0073a6ea1f19f10493f34f65f728571b522a03 /devel | |
parent | c0d0a1bbd73084a44071f47afdacc563a7b891b4 (diff) | |
download | pkgsrc-93fa32fe683129c0b9df3a5f0f47e654a9f8e349.tar.gz |
Make libtool work better on AIX. There is still one problem remaining,
and that is that it sets needs_locking for AIX, and then locks
indefinately when compiling. Unsure how to fix that.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libtool-base/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/devel/libtool-base/Makefile b/devel/libtool-base/Makefile index 4317814b22a..41c9a9ae3ef 100644 --- a/devel/libtool-base/Makefile +++ b/devel/libtool-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.55 2005/01/19 16:33:56 tv Exp $ +# $NetBSD: Makefile,v 1.56 2005/03/03 20:33:44 garbled Exp $ # .include "../../devel/libtool/Makefile.common" @@ -21,6 +21,9 @@ CONFLICTS+= libtool<=1.3.5nb11 TEST_TARGET= check +.if ${OPSYS} == "AIX" +LDFLAGS+= -Wl,-brtl +.endif .if ${OPSYS} == "NetBSD" . if !exists(/usr/libexec/ld.so) && !exists(/usr/libexec/ld.elf_so) CONFIGURE_ARGS+= --disable-shared |