diff options
author | lofi <lofi@FreeBSD.org> | 2007-10-30 07:53:02 +0800 |
---|---|---|
committer | lofi <lofi@FreeBSD.org> | 2007-10-30 07:53:02 +0800 |
commit | fccd08615b2042c534e54c604743d9648040cbe5 (patch) | |
tree | 5f9013bb78c12682f976865ec56ca40b6f54ce1a /multimedia | |
parent | ce19e5f290718d5274adbae84912fb7c1c34067b (diff) | |
download | freebsd-ports-gnome-fccd08615b2042c534e54c604743d9648040cbe5.tar.gz freebsd-ports-gnome-fccd08615b2042c534e54c604743d9648040cbe5.tar.zst freebsd-ports-gnome-fccd08615b2042c534e54c604743d9648040cbe5.zip |
Really turn off gtk support if the option is unchecked.
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/libquicktime/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/multimedia/libquicktime/Makefile b/multimedia/libquicktime/Makefile index 7b4d73e8a5ed..af78c74da4b5 100644 --- a/multimedia/libquicktime/Makefile +++ b/multimedia/libquicktime/Makefile @@ -52,10 +52,11 @@ PORTDOCS= api_usage.html codecs.html qt4l_building.html \ CONFIGURE_ARGS+=--without-cpuflags .endif -.if ${HAVE_GNOME:Mgtk20}!="" || defined(WITH_GTK2) +.if ${HAVE_GNOME:Mgtk20}!="" && defined(WITH_GTK2) USE_GNOME+= gtk20 PLIST_SUB+= GTK="" .else +CONFIGURE_ARGS+=--without-gtk PLIST_SUB+= GTK="@comment " .endif |