diff options
author | Thomas Zander <riggs@FreeBSD.org> | 2023-05-27 06:30:59 +0000 |
---|---|---|
committer | Thomas Zander <riggs@FreeBSD.org> | 2023-05-27 06:41:37 +0000 |
commit | ca5fd0c991d382e3bcce32dec80dc4c5e6547931 (patch) | |
tree | 37135488be625abe0cc82bf7e23d36beb11b2c4c | |
parent | 25c4a537943446d3a9fb58919a01eeccff774fe0 (diff) |
audio/musicpd: Enable the webdav storage plugin if curl is enabled
Details:
- With curl enabled, the webdav storage plugin can be enabled as well,
allowing folks to access their collections via webdav.
- No new dependencies are required to support this feature.
PR: 271663
Reported by: bsd@abinet.ru
MFH: 2023Q2
-rw-r--r-- | audio/musicpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile index b3e38e2e7aa0..1ee77b031f5c 100644 --- a/audio/musicpd/Makefile +++ b/audio/musicpd/Makefile @@ -168,7 +168,7 @@ SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio # Input plugins CDPARANOIA_MESON_ENABLED= cdio_paranoia CDPARANOIA_LIB_DEPENDS= libcdio_paranoia.so:sysutils/libcdio-paranoia -CURL_MESON_ENABLED= curl +CURL_MESON_ENABLED= curl webdav CURL_LIB_DEPENDS= libcurl.so:ftp/curl SMB_MESON_ENABLED= smbclient SMB_USES= samba:lib |