diff options
author | jstebbins <[email protected]> | 2011-01-29 22:13:18 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-01-29 22:13:18 +0000 |
commit | c9c50d62e5ea118f68b9079b514b58bd5016e2c5 (patch) | |
tree | 2fab334bf5069cf5f86e44904fda94e375104b92 /gtk/module.defs | |
parent | e9b451617fe690327d361caf7e9d0976fda45910 (diff) |
LinGui: refactor --enable-gst option
change to --disable-gst and make it work for both mingw and linux
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3774 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/module.defs')
-rw-r--r-- | gtk/module.defs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gtk/module.defs b/gtk/module.defs index cc20a18ef..c37af412e 100644 --- a/gtk/module.defs +++ b/gtk/module.defs @@ -15,7 +15,7 @@ BUILD.out += $(GTK.out) ############################################################################### ifeq (1-mingw,$(BUILD.cross)-$(BUILD.system)) -GTK.CONFIGURE.extra += --host=$(BUILD.spec) +GTK.CONFIGURE.extra += --host=$(BUILD.spec) --disable-gst ifeq ($(HAS.dlfcn),1) GTK.CONFIGURE.extra += --enable-dl endif @@ -25,3 +25,7 @@ ifeq (0,$(FEATURE.gtk.update.checks)) GTK.CONFIGURE.extra += --disable-update-checks endif +ifeq (0,$(FEATURE.gst)) + GTK.CONFIGURE.extra += --disable-gst +endif + |