summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-01-24 04:49:58 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-01-24 04:49:58 -0400
commita69649fb7f5ca7e20713ec260c5f989ae82d446f (patch)
tree41929e6fc4d4d20ffcf0bbbfa681dbe3e3624e21 /src/main.cc
parentdff450ab3dbcb0819029c0bd5aee8dd78703a864 (diff)
downloadfork-ledger-a69649fb7f5ca7e20713ec260c5f989ae82d446f.tar.gz
fork-ledger-a69649fb7f5ca7e20713ec260c5f989ae82d446f.tar.bz2
fork-ledger-a69649fb7f5ca7e20713ec260c5f989ae82d446f.zip
Switched over to using irrxml for parsing XML, rather than expat.
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main.cc b/src/main.cc
index d49cfbeb..2f51a5bf 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -39,10 +39,8 @@
#include "textual.h"
#include "qif.h"
-#if defined(HAVE_EXPAT) || defined(HAVE_XMLPARSE)
#include "xml.h"
#include "gnucash.h"
-#endif
#ifdef HAVE_LIBOFX
#include "ofx.h"
#endif
@@ -469,10 +467,8 @@ int main(int argc, char * argv[], char * envp[])
#if 0
session->register_parser(new ledger::journal_t::binary_parser_t);
#endif
-#if defined(HAVE_EXPAT) || defined(HAVE_XMLPARSE)
session->register_parser(new ledger::xml_parser_t);
session->register_parser(new ledger::gnucash_parser_t);
-#endif
#ifdef HAVE_LIBOFX
session->register_parser(new ledger::ofx_parser_t);
#endif