aqbanking/aqbanking.patch

Sun, 29 May 2011 16:29:06 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sun, 29 May 2011 16:29:06 +0200
changeset 344
e33c1efbd60f
permissions
-rw-r--r--

Update, correct, improve build configuration and packaging logic.
Update to new version of vendor software, bump copyright date, remove implicit
gcc dependency, add comments for Trolltech bug tracking, correct enforced
dynamic library linkage, and install mysterious process stub binary.

michael@22 1 Index: aqbanking-2.3.3/src/libs/aqbanking/Makefile.in
michael@22 2 --- aqbanking-2.3.3/src/libs/aqbanking/Makefile.in.orig 2006-01-28 00:56:18 +0100
michael@22 3 +++ aqbanking-2.3.3/src/libs/aqbanking/Makefile.in 2006-01-28 09:50:06 +0100
michael@22 4 @@ -525,7 +525,7 @@
michael@22 5 wcb.c\
michael@22 6 msgengine.c
michael@22 7
michael@22 8 -libaqbanking_la_LIBADD = $(gwenhywfar_libs) \
michael@22 9 +libaqbanking_la_LIBADD = \
michael@22 10 jobs/libjobs.la \
michael@22 11 types/libtypes.la
michael@22 12
michael@22 13 @@ -537,7 +537,7 @@
michael@22 14 libaqbanking_la_DEPENDENCIES = jobs/libjobs.la types/libtypes.la \
michael@22 15 $(am__append_1)
michael@22 16 testlib_SOURCES = testlib.c
michael@22 17 -testlib_LDADD = libaqbanking.la
michael@22 18 +testlib_LDADD = libaqbanking.la $(gwenhywfar_libs)
michael@22 19 TESTS = testlib
michael@22 20 all: all-recursive
michael@22 21
michael@22 22 Index: aqbanking-2.3.3/src/plugins/bankinfo/generic/Makefile.in
michael@22 23 --- aqbanking-2.3.3/src/plugins/bankinfo/generic/Makefile.in.orig 2006-01-28 00:56:42 +0100
michael@22 24 +++ aqbanking-2.3.3/src/plugins/bankinfo/generic/Makefile.in 2006-01-28 09:49:40 +0100
michael@22 25 @@ -476,7 +476,7 @@
michael@22 26 libbankinfo_la_SOURCES = \
michael@22 27 generic.c
michael@22 28
michael@22 29 -libbankinfo_la_LIBADD = -L$(top_builddir)/src/libs/aqbanking $(aqbanking_internal_libs) $(gwenhywfar_libs)
michael@22 30 +libbankinfo_la_LIBADD =
michael@22 31 libbankinfo_la_LDFLAGS = $(STRIPALL)
michael@22 32 at_files = at/blz.idx at/bic.idx at/namloc.idx at/banks.data
michael@22 33 ch_files = ch/blz.idx ch/bic.idx ch/namloc.idx ch/banks.data
michael@22 34 Index: openhbci-0.9.18/src/openhbci/openhbci-config.in.in
michael@22 35 --- openhbci-0.9.18/src/openhbci/openhbci-config.in.in.orig 2003-05-18 23:46:36 +0200
michael@22 36 +++ openhbci-0.9.18/src/openhbci/openhbci-config.in.in 2006-01-28 09:49:40 +0100
michael@22 37 @@ -9,7 +9,7 @@
michael@22 38 result="$result @PROGRAM_INCLUDES@ -I$dir/include"
michael@22 39 ;;
michael@22 40 --libraries)
michael@22 41 - result="$result -L$dir/lib @OPENHBCI_LIB@"
michael@22 42 + result="$result -L$dir/lib @OPENHBCI_LIB@ -lgwenhywfar"
michael@22 43 ;;
michael@22 44 --plugins)
michael@22 45 result="$result @PLUGIN_PATH@/@OPENHBCI_SO_VERSION@"
michael@22 46 Index: openhbci2-1.9.4/src/openhbci-tng/openhbci2-config.in.in
michael@22 47 --- openhbci2-1.9.4/src/openhbci-tng/openhbci2-config.in.in.orig 2004-05-20 03:33:53 +0200
michael@22 48 +++ openhbci2-1.9.4/src/openhbci-tng/openhbci2-config.in.in 2006-01-28 09:49:40 +0100
michael@22 49 @@ -9,7 +9,7 @@
michael@22 50 result="$result @PROGRAM_INCLUDES@ -I$dir/include"
michael@22 51 ;;
michael@22 52 --libraries)
michael@22 53 - result="$result -L$dir/lib @OPENHBCI_LIB@"
michael@22 54 + result="$result -L$dir/lib @OPENHBCI_LIB@ -lgwenhywfar"
michael@22 55 ;;
michael@22 56 --plugins)
michael@22 57 result="$result @PLUGIN_PATH@/@OPENHBCI_SO_EFFECTIVE_VERSION@"
michael@22 58 Index: openhbci2-1.9.4/src/tools/hbcixml/Makefile.in
michael@22 59 --- openhbci2-1.9.4/src/tools/hbcixml/Makefile.in.orig 2006-01-20 12:09:55 +0100
michael@22 60 +++ openhbci2-1.9.4/src/tools/hbcixml/Makefile.in 2006-01-28 09:49:40 +0100
michael@22 61 @@ -218,7 +218,7 @@
michael@22 62 INCLUDES = -I../../../ -I../../../openhbci2 @PROGRAM_INCLUDES@ -I../../plugins/msg-xml
michael@22 63 noinst_HEADERS = loganalyzer.h
michael@22 64 hbcixml_SOURCES = hbcixml.cpp loganalyzer.cpp
michael@22 65 -hbcixml_LDADD = -L../../openhbci-tng -L../../openhbci-tng/openhbci-core @PROGRAM_LIBS@ ../../plugins/msg-xml/libmsgxml.la
michael@22 66 +hbcixml_LDADD = -L../../openhbci-tng -L../../openhbci-tng/openhbci-core @PROGRAM_LIBS@ ../../plugins/msg-xml/libmsgxml.la $(gwenhywfar_libs)
michael@22 67 all: all-am
michael@22 68
michael@22 69 .SUFFIXES:

mercurial