diff options
author | bapt <bapt@FreeBSD.org> | 2013-12-11 14:35:36 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-12-11 14:35:36 +0000 |
commit | 8a0791e07dbf5628b6390993b7f199317991144f (patch) | |
tree | 5c7b83e7642fc29f698d59a6bc145001dbd04783 /audio/snd | |
parent | c7831a919ccb46504e13b19e5a7b8ac912ec28df (diff) | |
download | FreeBSD-ports-8a0791e07dbf5628b6390993b7f199317991144f.zip FreeBSD-ports-8a0791e07dbf5628b6390993b7f199317991144f.tar.gz |
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in audio
With hat: portmgr
Diffstat (limited to 'audio/snd')
-rw-r--r-- | audio/snd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/snd/Makefile b/audio/snd/Makefile index ac25069..e44f6f8 100644 --- a/audio/snd/Makefile +++ b/audio/snd/Makefile @@ -38,13 +38,13 @@ BROKEN= does not compile on sparc64 .endif .if ${PORT_OPTIONS:MFFTW3} -LIB_DEPENDS+= fftw3:${PORTSDIR}/math/fftw3 +LIB_DEPENDS+= libfftw3.so:${PORTSDIR}/math/fftw3 .else CONFIGURE_ARGS+= --without-fftw .endif .if ${PORT_OPTIONS:MGSL} -LIB_DEPENDS+= gsl:${PORTSDIR}/math/gsl +LIB_DEPENDS+= libgsl.so:${PORTSDIR}/math/gsl .else CONFIGURE_ARGS+= --without-gsl .endif |