summaryrefslogtreecommitdiffstats
path: root/make/include/main.defs
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2012-06-07 23:18:40 +0000
committerjstebbins <[email protected]>2012-06-07 23:18:40 +0000
commit42f3324742a8aa77e65202e8549f5239e3d12d3a (patch)
tree2235e63d65e6b65eac413b7e1f1bb93ee8792efa /make/include/main.defs
parent156f480430db82fb3dd20bbdab26abc2665a9fb1 (diff)
Portability patches
gudev is only available on linux, so ifdef it out on all other systems. also add some definitions to the make system for generic gnu and freebsd systems. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4717 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'make/include/main.defs')
-rw-r--r--make/include/main.defs5
1 files changed, 5 insertions, 0 deletions
diff --git a/make/include/main.defs b/make/include/main.defs
index e68f679f7..a210ececf 100644
--- a/make/include/main.defs
+++ b/make/include/main.defs
@@ -83,6 +83,11 @@ ifeq (1-linux,$(FEATURE.gtk)-$(BUILD.system))
MODULES += gtk
endif
+ifeq (1-gnu,$(FEATURE.gtk)-$(BUILD.system))
+ ## build gtk when gtk+gnu
+ MODULES += gtk
+endif
+
ifeq (1,$(FEATURE.local_yasm))
MODULES += contrib/yasm
endif