summaryrefslogtreecommitdiff
path: root/bindings/xml/Makefile
blob: 16d42f3a5acc8c9f5b44a0d58c3d4f5548d28bca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ifeq ($(WITH_LIBXML_BINDING),yes)
  DIR_SOURCES := xmlbinding.c xmlparser.c

  DIR_INSTALL_ITEMS := /include/dom/bindings/libxml:xmlbinding.h;xmlerror.h;xmlparser.h

  # LibXML2
  ifneq ($(PKGCONFIG),)
    CFLAGS := $(CFLAGS) $(shell $(PKGCONFIG) libxml-2.0 --cflags)
    LDFLAGS := $(LDFLAGS) $(shell $(PKGCONFIG) libxml-2.0 --libs)
  else
    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
endif

include build/makefiles/Makefile.subdir