summaryrefslogtreecommitdiffstats
path: root/gtk/module.defs
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2010-05-24 18:15:40 +0000
committerjstebbins <[email protected]>2010-05-24 18:15:40 +0000
commitb1d5e7b5af2cbc601253d254389a4ef8df709639 (patch)
tree0baeb0af4fd534eabfa7f25d3456f2aa452e52a6 /gtk/module.defs
parenteef8301f8f1c858961395ea8f1a9e6a58400e36d (diff)
LinGui: add option to completely disable update checking
configure --disable-gtk-update-checks removes the code that does update checks including the webkit library used for displaying the appcast. this is useful when packaging for a repository that has it's own update mechanism. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3323 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/module.defs')
-rw-r--r--gtk/module.defs6
1 files changed, 5 insertions, 1 deletions
diff --git a/gtk/module.defs b/gtk/module.defs
index 6801d61aa..9881a9000 100644
--- a/gtk/module.defs
+++ b/gtk/module.defs
@@ -22,9 +22,13 @@ BUILD.out += $(GTK.out)
###############################################################################
ifeq (1-mingw,$(BUILD.cross)-$(BUILD.system))
- GTK.GCC.D += PTW32_STATIC_LIB
+ GTK.GCC.D += PTW32_STATIC_LIB
+ GTK.CONFIGURE.extra = --host=$(BUILD.spec)
endif
+ifeq (0,$(FEATURE.gtk.update.checks))
+ GTK.CONFIGURE.extra += --disable-update-checks
+endif
###############################################################################
###############################################################################