This test relies on GTK libraries and header files, it is not

buildable on other non-GTK unix builds, like Photon. This change to
the Makefile makes sure this test is only built if GTK is enabled.
r=cls


git-svn-id: svn://10.0.0.236/trunk@74314 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
Jerry.Kirk%Nexwarecorp.com
2000-07-17 13:06:50 +00:00
parent 641eacf787
commit 106990278f

View File

@@ -29,8 +29,14 @@ include $(DEPTH)/config/autoconf.mk
DIRS = public nglsrc
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
endif
include $(topsrcdir)/config/rules.mk