summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbsiegert <bsiegert@pkgsrc.org>2017-06-05 09:02:20 +0000
committerbsiegert <bsiegert@pkgsrc.org>2017-06-05 09:02:20 +0000
commitee3acefbc88ea61e329f771249ba309dc5fa94a1 (patch)
treeed04a603be374ee0a88a726b0505089921b687e1
parentcbaf21d67b234029a88001c6a33e28ab8e35da58 (diff)
downloadpkgsrc-ee3acefbc88ea61e329f771249ba309dc5fa94a1.tar.gz
Pullup ticket #5444 - requested by sevan
multimedia/vlc: build fix Revisions pulled up: - multimedia/vlc/options.mk 1.32 --- Module Name: pkgsrc Committed By: jperkin Date: Mon May 15 11:07:20 UTC 2017 Modified Files: pkgsrc/multimedia/vlc: options.mk Log Message: Don't enable the "live" option on SunOS by default, it requires libraries that aren't available.
-rw-r--r--multimedia/vlc/options.mk10
1 files changed, 8 insertions, 2 deletions
diff --git a/multimedia/vlc/options.mk b/multimedia/vlc/options.mk
index b1a4c137a77..1093ee68b58 100644
--- a/multimedia/vlc/options.mk
+++ b/multimedia/vlc/options.mk
@@ -1,9 +1,15 @@
-# $NetBSD: options.mk,v 1.31 2017/03/04 08:26:54 wiz Exp $
+# $NetBSD: options.mk,v 1.31.2.1 2017/06/05 09:02:20 bsiegert Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.vlc
PKG_SUPPORTED_OPTIONS= dbus debug dts faad gnome jack live pulseaudio
PKG_SUPPORTED_OPTIONS+= sdl vlc-skins x11
-PKG_SUGGESTED_OPTIONS= dbus live x11
+PKG_SUGGESTED_OPTIONS= dbus x11
+
+.include "../../mk/bsd.prefs.mk"
+
+.if ${OPSYS} != "SunOS"
+PKG_SUGGESTED_OPTIONS+= live
+.endif
### Add VAAPI if it is available
.include "../../multimedia/libva/available.mk"