From 3b3a99208b438ebdfb42d1ee417fa156b7a62f8d Mon Sep 17 00:00:00 2001 From: François Revel Date: Sun, 3 Jan 2010 23:37:39 +0000 Subject: For BeOS libxml2 is not part of the default devkit, try to find headers elsewhere. svn path=/trunk/libsvgtiny/; revision=9785 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) 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 -- cgit v1.2.3