sthen 53ebe31b2b update to mtr 0.85 and add a patch from upstream for long long time_t,
from dhill. drop jakob@ as maintainer and take it myself.
2013-11-19 16:39:26 +00:00

24 lines
492 B
Plaintext

$OpenBSD: patch-gtk_c,v 1.4 2013/11/19 16:39:26 sthen Exp $
Fix 64-bit issue.
Fix with newer glib.
--- gtk.c.orig Mon Apr 29 14:22:05 2013
+++ gtk.c Sun Nov 17 16:44:55 2013
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <unistd.h>
#include <sys/time.h>
#include <sys/types.h>
@@ -69,6 +70,7 @@ void gtk_do_init(int *argc, char ***argv)
static int done = 0;
if(!done) {
+ g_type_init();
gtk_init(argc, argv);
done = 1;