From d19485f074b2b1b47dc4f968a90f642c2396e309 Mon Sep 17 00:00:00 2001 From: Dave Peticolas Date: Wed, 21 Jun 2000 23:15:35 +0000 Subject: [PATCH] Remove -stat argument from swig invocation. It's not supported in latest releases. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2494 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 4 ++++ src/optional/swig/Makefile.am | 2 +- src/optional/swig/Makefile.in | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 69207670e4..6163b33421 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2000-06-21 Dave Peticolas + * src/optional/swig/Makefile.am (gnucash-engine-perl5_wrap.c): + remove the -stat argument, it's no longer support in later swig + versions. + * src/register/Makefile.am: don't compile table-html.c, it is not needed for linking. diff --git a/src/optional/swig/Makefile.am b/src/optional/swig/Makefile.am index 4d094797c7..abee171277 100644 --- a/src/optional/swig/Makefile.am +++ b/src/optional/swig/Makefile.am @@ -98,7 +98,7 @@ gnucash.engine.i: ${SWIG_INPUT_HDRS} perl5_swig_annotations.i CLEANFILES += gnucash.engine.i gnucash.engine_wrap.doc gnucash-engine-perl5_wrap.c: gnucash.engine.i - ${SWIG} -stat -perl5 -I.. -I${top_srcdir}/src/engine -o $@ $< + ${SWIG} -perl5 -I.. -I${top_srcdir}/src/engine -o $@ $< CLEANFILES += gnucash-engine-perl5_wrap.c CLEANFILES += gnucash.pm gnucash.so diff --git a/src/optional/swig/Makefile.in b/src/optional/swig/Makefile.in index fc1e2940a7..05814fbb69 100644 --- a/src/optional/swig/Makefile.in +++ b/src/optional/swig/Makefile.in @@ -478,7 +478,7 @@ gnucash.engine.i: ${SWIG_INPUT_HDRS} perl5_swig_annotations.i done gnucash-engine-perl5_wrap.c: gnucash.engine.i - ${SWIG} -stat -perl5 -I.. -I${top_srcdir}/src/engine -o $@ $< + ${SWIG} -perl5 -I.. -I${top_srcdir}/src/engine -o $@ $< # We have to do this because otherwise automake insists on putting # these files into the dist tarfile. If there's a a better way,