OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../pinentry/glib-2.16.1.patch
  5. # Copyright (C) 2009 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. Conflict with glibc-2.16.1's gmem.h prototypes
  17. --- ./gtk+-2/gtksecentry.c.orig 2009-04-11 13:18:31.000000000 +0300
  18. +++ ./gtk+-2/gtksecentry.c 2009-04-11 13:20:47.000000000 +0300
  19. @@ -270,7 +270,7 @@
  20. gpointer
  21. -g_malloc(gulong size)
  22. +g_malloc(gsize size)
  23. {
  24. gpointer p;
  25. @@ -288,7 +288,7 @@
  26. }
  27. gpointer
  28. -g_malloc0(gulong size)
  29. +g_malloc0(gsize size)
  30. {
  31. gpointer p;
  32. @@ -308,7 +308,7 @@
  33. }
  34. gpointer
  35. -g_realloc(gpointer mem, gulong size)
  36. +g_realloc(gpointer mem, gsize size)
  37. {
  38. gpointer p;