From 8ace0cd4de706245d32f297aed60d9c40cb001e1 Mon Sep 17 00:00:00 2001 From: "cls%seawood.org" Date: Thu, 28 Sep 2000 06:48:02 +0000 Subject: [PATCH] Only build nullplugin when MOZ_ENABLE_GTK is set because nullplugin requires gtk and is breaking our non-gtk ports. git-svn-id: svn://10.0.0.236/trunk@80058 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/modules/plugin/Makefile.in | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/mozilla/modules/plugin/Makefile.in b/mozilla/modules/plugin/Makefile.in index 003d99a31b0..e3c294f8e01 100644 --- a/mozilla/modules/plugin/Makefile.in +++ b/mozilla/modules/plugin/Makefile.in @@ -26,13 +26,15 @@ VPATH = @srcdir@ include $(DEPTH)/config/autoconf.mk -DIRS = public nglsrc default/unix +DIRS = public nglsrc + +# These subdirs rely on GTK libraries and header files, it is not +# buildable on other non-GTK unix builds + +ifdef MOZ_ENABLE_GTK +DIRS += default/unix ifdef ENABLE_TESTS - -# This test relies on GTK libraries and header files, it is not -# buildable on other non-GTK uinix builds -ifdef MOZ_ENABLE_GTK DIRS += test endif