swh:1:snp:7d9f1bc35e120776766db9334626062f837c20ad
Raw File
Tip revision: 9ee7aebbd4099fb9a462c14f75a73eb3755b1612 authored by Duncan Temple Lang on 03 October 2007, 00:00:00 UTC
version 1.93-2
Tip revision: 9ee7aeb
Makevars.win
# See README.windows for instructions about compiling this package.

# List the directories containing the libxml include files and the iconv.h header file.
# Give the directory in which the the libxml2 .lib file is located.

XML_INC_DIR=${LIB_XML}/include
# Changed to bin rather than lib
XML_LIB_DIR=${LIB_XML}/bin

ifndef LIB_ICONV
 LIB_ICONV=.
endif


# Probably don't need the -I${LIB_ICONV} but leave here as potentially used in
# automated builds on some repositories.
PKG_CPPFLAGS= -Wall ${XML_INC_DIR:%=-I%} -I${LIB_ICONV}/include -I${LIB_ICONV} -D_R_=1 -DUSE_R=1 -DUSE_XML_VERSION_H=1 -DLIBXML -DUSE_EXTERNAL_SUBSET=1 -DROOT_HAS_DTD_NODE=1 -DUMP_WITH_ENCODING=1 -DXML_ELEMENT_ETYPE=1  -DXML_ATTRIBUTE_ATYPE=1 -DLIBXML2=1
PKG_LIBS= -L${XML_LIB_DIR} -L${XML_LIB_DIR}/../lib -lxml2 


back to top