*** empty log message ***
This commit is contained in:
parent
38653c0166
commit
3ea12c622d
2 changed files with 5 additions and 1 deletions
|
|
@ -71,6 +71,10 @@ ledger_LDADD = $(LIBOBJS) libledger.a -lboost_python -lpython$(PYTHON_VERSION)
|
||||||
else
|
else
|
||||||
ledger_LDADD = $(LIBOBJS) libledger.a
|
ledger_LDADD = $(LIBOBJS) libledger.a
|
||||||
endif
|
endif
|
||||||
|
if HAVE_XMLPARSE
|
||||||
|
ledger_CXXFLAGS += -DHAVE_XMLPARSE=1
|
||||||
|
ledger_LDADD += -lxmlparse -lxmltok
|
||||||
|
endif
|
||||||
if DEBUG
|
if DEBUG
|
||||||
ledger_CXXFLAGS += -DDEBUG_LEVEL=4
|
ledger_CXXFLAGS += -DDEBUG_LEVEL=4
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,7 @@ if [test x$xml = xtrue ]; then
|
||||||
AC_TRY_LINK(
|
AC_TRY_LINK(
|
||||||
[#include <stdio.h>
|
[#include <stdio.h>
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#include <xmlparse.h> // expat XML parser
|
#include <xmlparse.h> // expat XML parser
|
||||||
}],
|
}],
|
||||||
[XML_Parser parser = XML_ParserCreate(NULL);
|
[XML_Parser parser = XML_ParserCreate(NULL);
|
||||||
return parser != NULL;],
|
return parser != NULL;],
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue