diff options
author | miwi <miwi@FreeBSD.org> | 2008-11-16 07:38:13 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-11-16 07:38:13 +0800 |
commit | 47b33d815492bc5736e17ea45ab7ef9d4d7a69a1 (patch) | |
tree | 220f96fe5aec3c6d71690fe8a8b1202e9c792b9f /multimedia | |
parent | 748038f1a2f435bd1864d46a1c8d466bb793dfd6 (diff) | |
download | freebsd-ports-gnome-47b33d815492bc5736e17ea45ab7ef9d4d7a69a1.tar.gz freebsd-ports-gnome-47b33d815492bc5736e17ea45ab7ef9d4d7a69a1.tar.zst freebsd-ports-gnome-47b33d815492bc5736e17ea45ab7ef9d4d7a69a1.zip |
- Fix conflicting WITH_SKINS + WITHOUT_QT4
PR: 128747
Submitted by: "Joseph S. Atkinson" <jsa@wickedmachine.net> (maintainer)
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/vlc-devel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/vlc-devel/Makefile b/multimedia/vlc-devel/Makefile index 40a2b80b7f2d..8197cff11b77 100644 --- a/multimedia/vlc-devel/Makefile +++ b/multimedia/vlc-devel/Makefile @@ -51,7 +51,7 @@ OPTIONS+= SDL "SDL video output" On OPTIONS+= SVG "SVG graphics support" Off OPTIONS+= SVGALIB "SVGALIB video output" Off OPTIONS+= SHOUT "Shout2 support" Off -OPTIONS+= SKINS "Enable winamp skins interface" Off +OPTIONS+= SKINS "Enable winamp skins interface (requires QT4)" Off OPTIONS+= SPEEX "Speex voice codec support" On OPTIONS+= THEORA "OGG/Vorbis video codec support" On OPTIONS+= TWOLAME "Twolame mpeg2 audio encoder support" On @@ -165,7 +165,7 @@ CONFIGURE_ARGS+=--enable-notify CONFIGURE_ARGS+=--disable-notify .endif -.if defined(WITH_SKINS) && !defined(WITHOUT_SKINS) +.if defined(WITH_SKINS) && !defined(WITHOUT_SKINS) && !defined(WITHOUT_QT4) CONFIGURE_ARGS+=--enable-skins2 .else CONFIGURE_ARGS+=--disable-skins2 |