From: François Revel Date: Sun, 3 Jan 2010 23:37:39 +0000 (-0000) Subject: For BeOS libxml2 is not part of the default devkit, try to find headers elsewhere. X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=3b3a99208b438ebdfb42d1ee417fa156b7a62f8d;p=libsvgtiny.git For BeOS libxml2 is not part of the default devkit, try to find headers elsewhere. svn path=/trunk/libsvgtiny/; revision=9785 --- diff --git a/Makefile b/Makefile index 94153e4..ee95e20 100644 --- a/Makefile +++ b/Makefile @@ -35,6 +35,9 @@ ifneq ($(PKGCONFIG),) LDFLAGS := $(LDFLAGS) \ $(shell $(PKGCONFIG) $(PKGCONFIGFLAGS) --libs libxml-2.0) else + ifeq ($(TARGET),beos) + CFLAGS := $(CFLAGS) -I/boot/home/config/include/libxml2 + endif CFLAGS := $(CFLAGS) -I$(PREFIX)/include/libxml2 LDFLAGS := $(CFLAGS) -lxml2 endif