mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Win32: don't apply swig patch on this platform
The current version of the patch tool in our build chain
can't handle this patch.
This is not a problem (for now) because
a. our windows build is still using guile 1.8
b. we're not creating release tarballs on windows
Hopefully swig itself is updated before we move to guile 2 on Windows
This reverts commit e48381ecf9
.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@23743 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
c5a906afa2
commit
8e6463b9da
@ -109,10 +109,11 @@ if BUILDING_FROM_SCM
|
||||
swig-app-utils-guile.c: app-utils.i ${top_srcdir}/src/base-typemaps.i
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \
|
||||
-I${top_srcdir}/src -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
|
||||
endif
|
||||
swig-app-utils-python.c: app-utils.i ${top_srcdir}/src/base-typemaps.i
|
||||
$(SWIG) -python -Wall -Werror $(SWIG_ARGS) \
|
||||
-I${top_srcdir}/src -o $@ $<
|
||||
|
@ -46,10 +46,11 @@ if BUILDING_FROM_SCM
|
||||
swig-core-utils-guile.c: core-utils.i ${top_srcdir}/src/base-typemaps.i
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \
|
||||
-I${top_srcdir}/src -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
|
||||
endif
|
||||
swig-core-utils-python.c: core-utils.i ${top_srcdir}/src/base-typemaps.i
|
||||
$(SWIG) -python -Wall -Werror $(SWIG_ARGS) \
|
||||
-I${top_srcdir}/src -o $@ $<
|
||||
|
@ -205,10 +205,11 @@ swig-engine.c: engine.i $(top_srcdir)/src/base-typemaps.i \
|
||||
$(gncinclude_HEADERS) $(noinst_HEADERS)
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \
|
||||
-I${top_srcdir}/src/libqof/qof -I${top_srcdir}/src -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
|
||||
endif
|
||||
endif
|
||||
|
||||
iso-4217-currencies.c: iso-4217-currencies.scm iso-currencies-to-c
|
||||
|
@ -33,10 +33,12 @@ if BUILDING_FROM_SCM
|
||||
swig-gnc-module.c: gnc-module.i ${top_srcdir}/src/base-typemaps.i
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \
|
||||
-I${top_srcdir}/src -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
endif
|
||||
endif
|
||||
|
||||
EXTRA_DIST = \
|
||||
${gncmod_DATA} \
|
||||
|
@ -25,10 +25,12 @@ libgncmodbar_la_LIBADD=libbar.la \
|
||||
if BUILDING_FROM_SCM
|
||||
swig-bar.c: bar.i
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
endif
|
||||
endif
|
||||
|
||||
EXTRA_DIST = \
|
||||
bar.i \
|
||||
|
@ -29,10 +29,12 @@ libgncmodbaz_la_LIBADD = \
|
||||
if BUILDING_FROM_SCM
|
||||
swig-baz.c: baz.i
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
endif
|
||||
endif
|
||||
|
||||
EXTRA_DIST = \
|
||||
baz.i \
|
||||
|
@ -30,10 +30,12 @@ EXTRA_DIST = \
|
||||
if BUILDING_FROM_SCM
|
||||
swig-foo.c: foo.i
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
endif
|
||||
endif
|
||||
|
||||
BUILT_SOURCES = swig-foo.c
|
||||
MAINTAINERCLEANFILES = swig-foo.c
|
||||
|
@ -228,10 +228,12 @@ swig-gnome-utils.c: gnome-utils.i \
|
||||
${top_srcdir}/src/base-typemaps.i
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \
|
||||
-I${top_srcdir}/src -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
endif
|
||||
endif
|
||||
|
||||
gncmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash
|
||||
gncmod_DATA = gnome-utils.scm
|
||||
|
@ -115,10 +115,12 @@ if BUILDING_FROM_SCM
|
||||
swig-gnome.c: gnome.i dialog-progress.h ${top_srcdir}/src/base-typemaps.i
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \
|
||||
-I${top_srcdir}/src -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
endif
|
||||
endif
|
||||
|
||||
EXTRA_DIST = \
|
||||
gnome.i \
|
||||
|
@ -59,10 +59,12 @@ swig-gnc-html.c: gnc-html.i gnc-html.h \
|
||||
${top_srcdir}/src/base-typemaps.i
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \
|
||||
-I${top_srcdir}/src -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
endif
|
||||
endif
|
||||
|
||||
EXTRA_DIST = \
|
||||
gnc-html.i
|
||||
|
@ -53,10 +53,12 @@ if BUILDING_FROM_SCM
|
||||
swig-report-gnome.c: report-gnome.i ${top_srcdir}/src/base-typemaps.i
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \
|
||||
-I${top_srcdir}/src -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
endif
|
||||
endif
|
||||
|
||||
gncmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash/report
|
||||
gncmod_DATA = report-gnome.scm
|
||||
|
@ -25,10 +25,12 @@ if BUILDING_FROM_SCM
|
||||
swig-report-system.c: report-system.i ${top_srcdir}/src/base-typemaps.i
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \
|
||||
-I${top_srcdir}/src -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
endif
|
||||
endif
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-I${top_srcdir}/src \
|
||||
|
@ -28,9 +28,11 @@ swig-unittest-support-guile.c: unittest-support.i $(top_srcdir)/src/base-typemap
|
||||
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \
|
||||
-I${top_srcdir}/src \
|
||||
${AM_CPPFLAGS} -o $@ $<
|
||||
if ! OS_WIN32
|
||||
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \
|
||||
patch $@ $(top_srcdir)/src/swig-utf8.patch; \
|
||||
fi
|
||||
endif
|
||||
|
||||
swig-unittest-support-python.c: unittest-support.i $(top_srcdir)/src/base-typemaps.i
|
||||
$(SWIG) -python -Wall -Werror $(SWIG_ARGS) \
|
||||
|
Loading…
Reference in New Issue
Block a user