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
This commit is contained in:
Dave Peticolas 2000-06-21 23:15:35 +00:00
parent cadcef87aa
commit d19485f074
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
2000-06-21 Dave Peticolas <dave@krondo.com>
* 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.

View File

@ -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

View File

@ -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,