gnucash/gnucash-qt3-wizard.patch

29 lines
1.2 KiB
Diff

--- configure.in
+++ configure.in
@@ -542,6 +542,10 @@
AC_ARG_WITH(qof, [ --with-qof=path prefix for Query Object Framework - QOF (auto)],
[gnc_with_qof=$withval], [gnc_with_qof=yes])
+AC_ARG_WITH(qt3_wizard_package,
+ [ --with-qt3-wizard-package=name name of package containing qt3-wizard (aqbanking)],
+ [QT3_WIZARD_PACKAGE=$withval], [QT3_WIZARD_PACKAGE=aqbanking])
+AC_DEFINE_UNQUOTED([QT3_WIZARD_PACKAGE],["$QT3_WIZARD_PACKAGE"],[Name of package containing qt3-wizard.])
# GnuCash builds without deprecated QOF code so needs latest version.
QOF_REQUIRED=0.6.4
--- src/import-export/hbci/druid-hbci-initial.c
+++ src/import-export/hbci/druid-hbci-initial.c
@@ -685,10 +685,10 @@
(info->window,
_("The external program \"AqBanking Setup Wizard\" has not "
"been found. \n\n"
- "The aqbanking package should include the "
+ "The %s package should include the "
"program \"qt3-wizard\". Please check your installation to "
"ensure this program is present. On some distributions this "
- "may require installing additional packages."));
+ "may require installing additional packages."), QT3_WIZARD_PACKAGE);
druid_disable_next_button(info);
}
g_free (backend_name);