summaryrefslogtreecommitdiff
path: root/bindings/xml/Makefile
blob: 12b4ca063b15a847f5a95f73fd566dfb2bdd84fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
ifeq ($(WITH_LIBXML_BINDING),yes)
  DIR_SOURCES := libxml_xmlparser.c

  # LibXML2
  ifneq ($(PKGCONFIG),)
    CFLAGS := $(CFLAGS) $(shell $(PKGCONFIG) libxml-2.0 --cflags)
    LDFLAGS := $(LDFLAGS) $(shell $(PKGCONFIG) libxml-2.0 --libs)
  else
    CFLAGS := $(CFLAGS) -I$(PREFIX)/include/libxml2
    LDFLAGS := $(LDFLAGS) -lxml2
  endif

  # LibXML 2.6.26 has a bug in its headers that expects _POSIX_C_SOURCE to be 
  # defined. Define it here, even though we don't need it.
  CFLAGS := $(CFLAGS) -D_POSIX_C_SOURCE

  DO_XML_INSTALL := yes
endif

ifeq ($(WITH_EXPAT_BINDING),yes)
  DIR_SOURCES := expat_xmlparser.c

  LDFLAGS := $(LDFLAGS) -lexpat

  DO_XML_INSTALL := yes
endif

ifeq ($(DO_XML_INSTALL),yes)
  DIR_INSTALL_ITEMS := /include/dom/bindings/libxml:xmlerror.h;xmlparser.h
endif

include build/makefiles/Makefile.subdir