*** empty log message ***

This commit is contained in:
John Wiegley 2006-04-05 02:35:48 +00:00
parent f9b874e1cb
commit 2982e637c2
3 changed files with 6 additions and 4 deletions

View file

@ -32,14 +32,15 @@ libledger_la_SOURCES = \
startup.cc \
textual.cc \
valexpr.cc \
walk.cc
walk.cc \
xml.cc
if HAVE_EXPAT
libledger_la_CXXFLAGS += -DHAVE_EXPAT=1
libledger_la_SOURCES += gnucash.cc xml.cc
libledger_la_SOURCES += gnucash.cc
endif
if HAVE_XMLPARSE
libledger_la_CXXFLAGS += -DHAVE_XMLPARSE=1
libledger_la_SOURCES += gnucash.cc xml.cc
libledger_la_SOURCES += gnucash.cc
endif
if HAVE_LIBOFX
libledger_la_CXXFLAGS += -DHAVE_LIBOFX=1

View file

@ -976,6 +976,7 @@ option_t config_options[CONFIG_OPTIONS_SIZE] = {
{ "code-as-payee", '\0', false, opt_code_as_payee, false },
{ "collapse", 'n', false, opt_collapse, false },
{ "comm-as-payee", 'x', false, opt_comm_as_payee, false },
{ "cost", '\0', false, opt_basis, false },
{ "csv-register-format", '\0', true, opt_csv_register_format, false },
{ "current", 'c', false, opt_current, false },
{ "daily", '\0', false, opt_daily, false },

View file

@ -38,7 +38,7 @@ class report_t;
extern config_t * config;
extern report_t * report;
#define CONFIG_OPTIONS_SIZE 97
#define CONFIG_OPTIONS_SIZE 98
extern option_t config_options[CONFIG_OPTIONS_SIZE];
void option_help(std::ostream& out);