Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 520f402e

Von aquamaniac vor fast 20 Jahren hinzugefügt

  • ID 520f402eb462483514a9c077e5027a1d1c5c75de
  • Vorgänger 17368bef
  • Nachfolger ce65547e

- backends: don't bear "32_SO_VERSION" in the dll name (makes it impossible
to find a backend under windows)

git-svn-id: https://devel.aqbanking.de/svn/aqbanking/trunk@514 5c42a225-8b10-0410-9873-89b7810ad06e

Unterschiede anzeigen:

ChangeLog
-------------------------------------------------
- fixed a bug in AH_Provider_AddJob(): Was using the userId instead of the
customer id
- fixed a bug in openhbci1 importer: Was not using the correct date when
importing
- backends: don't bear "32_SO_VERSION" in the dll name (makes it impossible
to find a backend under windows)
2005/08/14: Martin Preuss<martin@libchipcard.de>
configure.ac
AQBANKING_VERSION_MAJOR=1
AQBANKING_VERSION_MINOR=3
AQBANKING_VERSION_PATCHLEVEL=1
AQBANKING_VERSION_BUILD=2
AQBANKING_VERSION_BUILD=3
dnl "stable", "rcX", "betaX", "cvs"
AQBANKING_VERSION_TAG="cvs"
AQBANKING_VERSION_FULL_STRING="$AQBANKING_VERSION_MAJOR.$AQBANKING_VERSION_MINOR.$AQBANKING_VERSION_PATCHLEVEL.$AQBANKING_VERSION_BUILD${AQBANKING_VERSION_TAG}"
src/plugins/backends/aqdtaus/plugin/Makefile.am
if IS_WINDOWS
# you only need to setup these variables here, the rest is done automatically
LIBRARY_NAME = aqdtaus32_$(AQDTAUS_SO_EFFECTIVE)
LIBRARY_NAME = aqdtaus
DLLLDLIBS = \
-L../$(top_builddir)/src/libs/aqbanking $(aqbanking_internal_libs) \
-L/mingw/lib $(gwenhywfar_libs)
src/plugins/backends/aqgeldkarte/plugin/Makefile.am
if IS_WINDOWS
# you only need to setup these variables here, the rest is done automatically
LIBRARY_NAME = aqgeldkarte32_$(AQGELDKARTE_SO_EFFECTIVE)
LIBRARY_NAME = aqgeldkarte
DLLLDLIBS = -L/mingw/lib $(gwenhywfar_libs) -L$(top_builddir)/src/libs/aqbanking $(aqbanking_internal_libs)
DLLLDFLAGS = $(STRIPALL) $(LDFLAGS)
src/plugins/backends/aqhbci/plugin/Makefile.am
if IS_WINDOWS
# you only need to setup these variables here, the rest is done automatically
LIBRARY_NAME = aqhbci32_$(AQHBCI_SO_EFFECTIVE)
LIBRARY_NAME = aqhbci
DLLLDLIBS = -L../$(top_builddir)/src/libs/aqbanking $(aqbanking_internal_libs) -L/mingw/lib $(gwenhywfar_libs)
DLLLDFLAGS = $(STRIPALL) $(LDFLAGS)
src/plugins/imexporters/openhbci1/openhbci1.c
p=GWEN_DB_GetCharValue(dbT, "date", 0, 0);
if (p) {
GWEN_TIME *ti;
if (inUtc)
ti=GWEN_Time_fromUtcString(p, dateFormat);
else
ti=GWEN_Time_fromString(p, dateFormat);
if (ti)
ti=AB_ImExporter_DateFromString(p, dateFormat, inUtc);
if (ti)
AB_Transaction_SetDate(t, ti);
GWEN_Time_free(ti);
}
......
if (p) {
GWEN_TIME *ti;
if (inUtc)
ti=GWEN_Time_fromUtcString(p, dateFormat);
else
ti=GWEN_Time_fromString(p, dateFormat);
if (ti)
ti=AB_ImExporter_DateFromString(p, dateFormat, inUtc);
if (ti)
AB_Transaction_SetValutaDate(t, ti);
GWEN_Time_free(ti);
}

Auch abrufbar als: Unified diff