Change libaqbanking4 version check to look for >= 3.99.x

Martin Preuss pointed out that 3.9.x might be used as a number for a stable
libaqbanking3 release sometime in the future.
BP

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@17706 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2008-11-17 21:24:41 +00:00
parent 0b5de42bc5
commit e71577ce3b

View File

@ -43,7 +43,7 @@ G_BEGIN_DECLS
#if (AQBANKING_VERSION_MAJOR > 3) || \
((AQBANKING_VERSION_MAJOR == 3) && \
(AQBANKING_VERSION_MINOR >= 9))
(AQBANKING_VERSION_MINOR >= 99))
/** Defined if libaqbanking4 as opposed to libaqbanking3 is being used */
# define AQBANKING_VERSION_4_PLUS
#endif