GNOME Bugzilla – Bug 564033
aqbanking plugin: g_module_open failed: WEXITSTATUS undefined
Last modified: 2018-06-29 22:13:36 UTC
Missing #include on FreeBSD makes aqbanking module load fail. The following code (copied from hbci module) fixes the problem: --- druid-ab-initial.c.orig 2008-12-10 12:28:52.000000000 -0800 +++ druid-ab-initial.c 2008-12-10 12:17:01.000000000 -0800 @@ -35,6 +35,9 @@ #include <glib/gi18n.h> #include <glib/gstdio.h> #include <gdk/gdkkeysyms.h> +#ifdef HAVE_SYS_WAIT_H +# include <sys/wait.h> +#endif #include <fcntl.h> #include <unistd.h>
trunk, r17765, 2.2-branch, r17766. Thanks a lot!
GnuCash bug tracking has moved to a new Bugzilla host. This bug has been copied to https://bugs.gnucash.org/show_bug.cgi?id=564033. Please update any external references or bookmarks.