Add LICENSE (GPLv3) Provide option to use webkit for html engine instead of gtkhtml3. Provide option to install python bindings. Provide option to enable database support. Done via libdbi. Info about how to use this feature is in the pkg-message. PR: ports/154841 (merged features from) Submitted by: Jason E. Hale <bsdkaffee@gmail.com>
11 lines
339 B
C
11 lines
339 B
C
--- src/app-utils/guile-util.c.orig 2010-12-29 16:06:05.000000000 +0100
|
|
+++ src/app-utils/guile-util.c 2010-12-29 16:06:38.000000000 +0100
|
|
@@ -1317,6 +1317,8 @@ gnc_parse_time_to_timet(const gchar *s,
|
|
|
|
g_return_val_if_fail(s && format, -1);
|
|
|
|
+ bzero(&tm, sizeof(tm));
|
|
+
|
|
if (!strptime(s, format, &tm))
|
|
return -1;
|
|
|