diff options
author | Thomas Zander <riggs@FreeBSD.org> | 2018-08-16 11:18:00 +0000 |
---|---|---|
committer | Thomas Zander <riggs@FreeBSD.org> | 2018-08-16 11:18:00 +0000 |
commit | e4f2cdd313c878c1e8161e3018c4f08bdc7aa202 (patch) | |
tree | d74cf1541fbc0c6e5a9b065a6d204072b2f19635 | |
parent | Add patch to replace c_rehash. The base system OpenSSL does not have this (diff) |
Fix OPENAL option when using lld as the default linker
While on it: Replace LIB_DEPENDS by USES for OPENAL
PR: 230593
Submitted by: tobik
Notes
Notes:
svn path=/head/; revision=477320
-rw-r--r-- | audio/musicpd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile index ba0c92ffaf92..40da11298b4d 100644 --- a/audio/musicpd/Makefile +++ b/audio/musicpd/Makefile @@ -110,7 +110,8 @@ MPG123_LIB_DEPENDS=libmpg123.so:audio/mpg123 MUSEPACK_CONFIGURE_ENABLE=mpc MUSEPACK_LIB_DEPENDS=libmpcdec.so:audio/musepack OPENAL_CONFIGURE_ENABLE=openal -OPENAL_LIB_DEPENDS=libopenal.so:audio/openal +OPENAL_USES= openal +OPENAL_VARS= LLD_UNSAFE=yes # cf. PR 226980 OPUS_CONFIGURE_ENABLE=opus OPUS_LIB_DEPENDS= libopus.so:audio/opus \ libogg.so:audio/libogg |