diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2018-08-12 22:29:29 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-08-16 13:36:33 +0200 |
commit | 02091bcc25385c7699ea610d45d8fb4df7b6649d (patch) | |
tree | c0b2d03987fc7acfdf1ccc02db5822d8ae585611 /package/vlc | |
parent | 7f46d614d23006abc97be8fb836584412f495315 (diff) | |
download | buildroot-02091bcc25385c7699ea610d45d8fb4df7b6649d.tar.gz buildroot-02091bcc25385c7699ea610d45d8fb4df7b6649d.zip |
package/vlc: add optional dependency to libnfs
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/vlc')
-rw-r--r-- | package/vlc/vlc.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk index d34ab2a9e0..fab08b950d 100644 --- a/package/vlc/vlc.mk +++ b/package/vlc/vlc.mk @@ -71,7 +71,6 @@ VLC_CONF_OPTS += \ --disable-mmal \ --disable-mpg123 \ --disable-mtp \ - --disable-nfs \ --disable-notify \ --disable-projectm \ --disable-schroedinger \ @@ -311,6 +310,13 @@ else VLC_CONF_OPTS += --disable-libmpeg2 endif +ifeq ($(BR2_PACKAGE_LIBNFS),y) +VLC_CONF_OPTS += --enable-nfs +VLC_DEPENDENCIES += libnfs +else +VLC_CONF_OPTS += --disable-nfs +endif + ifeq ($(BR2_PACKAGE_LIBPNG),y) VLC_CONF_OPTS += --enable-png VLC_DEPENDENCIES += libpng |