pinentry/pinentry.patch

Wed, 30 Mar 2011 19:35:16 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 30 Mar 2011 19:35:16 +0200
changeset 335
6eb79a12ee37
permissions
-rw-r--r--

Finally correct packaging logic enough to allow for successful building:
Force Java dependency to C++ and POSIX threads to satisfy buildtime
requirements of GCJ, add conditional java dependency to infozip as
required by libjava/configure, remove outdated fortran conditions,
correct buildconf causing jcf-dump target to fail, add and improve
warnings regarding profile feedback, build duration, and parallel
make, correct make environment when building C++ dependent languages,
and introduce new helpful comments.

michael@282 1 Index: gtk+-2/gtksecentry.c
michael@282 2 --- gtk+-2/gtksecentry.c.orig 2004-09-02 03:47:13 +0200
michael@282 3 +++ gtk+-2/gtksecentry.c 2006-11-15 21:27:51 +0100
michael@282 4 @@ -39,6 +39,16 @@
michael@282 5 #include <gdk/gdkkeysyms.h>
michael@282 6 #include <gtk/gtk.h>
michael@282 7
michael@282 8 +#define g_malloc my_g_malloc
michael@282 9 +#define g_malloc0 my_g_malloc0
michael@282 10 +#define g_realloc my_g_realloc
michael@282 11 +#define g_free my_g_free
michael@282 12 +
michael@282 13 +gpointer g_malloc(gulong size);
michael@282 14 +gpointer g_malloc0(gulong size);
michael@282 15 +gpointer g_realloc(gpointer mem, gulong size);
michael@282 16 +void g_free(gpointer mem);
michael@282 17 +
michael@282 18 #include "gtksecentry.h"
michael@282 19 #include "memory.h"
michael@282 20

mercurial