diff options
author | abs <abs> | 2001-12-29 14:39:04 +0000 |
---|---|---|
committer | abs <abs> | 2001-12-29 14:39:04 +0000 |
commit | 386d7e6b42374d0c216d00b58a0e343c047233c1 (patch) | |
tree | 79897f75da91e08ef5de17e5a00c312e0a38c37f /www | |
parent | 37c27736b10dbd7cb0fd995541d0dc7add3cd6b6 (diff) | |
download | pkgsrc-386d7e6b42374d0c216d00b58a0e343c047233c1.tar.gz |
fix for a.out platforms
Diffstat (limited to 'www')
-rw-r--r-- | www/galeon/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/www/galeon/Makefile b/www/galeon/Makefile index b40a5603c18..276e8e8b46e 100644 --- a/www/galeon/Makefile +++ b/www/galeon/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2001/12/28 04:41:37 taya Exp $ +# $NetBSD: Makefile,v 1.22 2001/12/29 14:39:04 abs Exp $ DISTNAME= galeon-1.0.2 CATEGORIES= www @@ -34,7 +34,11 @@ CONFIGURE_ARGS+= --with-mozilla-includes=${PREFIX}/include/mozilla \ MOZ_LIBDIR= ${PREFIX}/lib/mozilla LDFLAGS+= -Wl,-R${MOZ_LIBDIR} +.if(${OBJECT_FMT} == ELF) LDFLAGS+= -export-dynamic +.else +LIBS+= -lstdc++ +.endif #.if (${OPSYS} == NetBSD) #post-configure: |