diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2008-01-05 15:02:37 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2008-01-05 15:02:37 +0000 |
commit | 9e0e3a07efafb998b6f11f5564c02583a2bdc27d (patch) | |
tree | 58b97e1acc1cb35b1218801fc9e2d4fd9204ab17 /audio | |
parent | 51059a52a4a537065313b205dc495118d99b1c10 (diff) |
Remove -Wl,-no-undefined from the LDFLAGS to allow pulse to build on
FreeBSD < 7.X.
PR: 119286
Notes
Notes:
svn path=/head/; revision=205075
Diffstat (limited to 'audio')
-rw-r--r-- | audio/pulseaudio/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/audio/pulseaudio/Makefile b/audio/pulseaudio/Makefile index d2a26dc93793..0a53d4feac7d 100644 --- a/audio/pulseaudio/Makefile +++ b/audio/pulseaudio/Makefile @@ -84,6 +84,10 @@ PLIST_SUB+= GCONF="@comment " post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/src/daemon/default.pa.in +.if ${OSVERSION} < 700042 + @${REINPLACE_CMD} -e 's|-Wl,-no-undefined||' \ + ${WRKSRC}/Makefile.in +.endif post-install: .for ii in default.pa daemon.conf client.conf |