diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-09-10 15:59:33 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-09-10 15:59:33 +0000 |
commit | 3693fd1f6c40bebeff7dee56be20948044447b48 (patch) | |
tree | 01a41176caab5114bb50272a714a00db670bdcf7 /audio | |
parent | 68f62f618656f2ba26203b7fdd7e1369df04913e (diff) | |
download | pkgsrc-3693fd1f6c40bebeff7dee56be20948044447b48.tar.gz |
Expand --version-script removals for SunOS back out into package Makefiles
rather than trying to consolidate into a single fnmatch. There aren't that
many of them, and it will aid the integration of cwrappers which doesn't
support globs.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/alsa-lib/Makefile | 3 | ||||
-rw-r--r-- | audio/libfishsound/Makefile | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/audio/alsa-lib/Makefile b/audio/alsa-lib/Makefile index 1ee7343819f..e8d8c1f6e96 100644 --- a/audio/alsa-lib/Makefile +++ b/audio/alsa-lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2014/08/28 10:58:18 jperkin Exp $ +# $NetBSD: Makefile,v 1.15 2014/09/10 15:59:34 jperkin Exp $ # DISTNAME= alsa-lib-1.0.27.2 @@ -33,6 +33,7 @@ CPPFLAGS.FreeBSD+= -D__u32=uint32_t -D__u64=uint64_t .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "SunOS" CONFIGURE_ARGS+= --without-versioned +BUILDLINK_TRANSFORM+= rm:-Wl,--version-script=Versions .endif .include "../../mk/dlopen.buildlink3.mk" diff --git a/audio/libfishsound/Makefile b/audio/libfishsound/Makefile index 4b0ca229fa3..e77a6aa0d63 100644 --- a/audio/libfishsound/Makefile +++ b/audio/libfishsound/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2014/08/28 10:58:18 jperkin Exp $ +# $NetBSD: Makefile,v 1.4 2014/09/10 15:59:34 jperkin Exp $ # DISTNAME= libfishsound-1.0.0 @@ -18,6 +18,10 @@ PKGCONFIG_OVERRIDE+= fishsound.pc.in .include "options.mk" +.if ${OPSYS} == "SunOS" +BUILDLINK_TRANSFORM+= rm:-Wl,--version-script=Version_script +.endif + .include "../../multimedia/liboggz/buildlink3.mk" .include "../../multimedia/libogg/buildlink3.mk" .include "../../audio/libsndfile/buildlink3.mk" |