summaryrefslogtreecommitdiff
path: root/net/gq/files
diff options
context:
space:
mode:
authorRong-En Fan <rafan@FreeBSD.org>2007-08-15 14:49:02 +0000
committerRong-En Fan <rafan@FreeBSD.org>2007-08-15 14:49:02 +0000
commit8181a79f6eaf30e9ddc1b7057031b4a02e8a2bc0 (patch)
tree407942b149d45d23547adc54c98674ecc08a8b25 /net/gq/files
parent- Fix build (diff)
- Update to 1.2.2
- Use macro from bsd.sites.mk - Remove USE_GCC as we have 3.4 in all supported version - Update WWW entry PR: ports/115393 Submitted by: KATO Tsuguru <tkato432 at yahoo.com>
Diffstat (limited to 'net/gq/files')
-rw-r--r--net/gq/files/patch-icons-Makefile.in11
-rw-r--r--net/gq/files/patch-src-xmlparse.c24
2 files changed, 0 insertions, 35 deletions
diff --git a/net/gq/files/patch-icons-Makefile.in b/net/gq/files/patch-icons-Makefile.in
deleted file mode 100644
index a30acfb9f899..000000000000
--- a/net/gq/files/patch-icons-Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- icons/Makefile.in.orig Mon Apr 10 19:22:45 2006
-+++ icons/Makefile.in Wed Apr 19 10:26:21 2006
-@@ -193,7 +193,7 @@
- warning.xpm
-
- EXTRA_DIST = $(PIXMAPS)
--pixmapdir = $(datadir)/pixmaps/gq
-+pixmapdir = $(datadir)/gq
- pixmap_DATA = $(PIXMAPS)
- all: all-am
-
diff --git a/net/gq/files/patch-src-xmlparse.c b/net/gq/files/patch-src-xmlparse.c
deleted file mode 100644
index 260ababa77bb..000000000000
--- a/net/gq/files/patch-src-xmlparse.c
+++ /dev/null
@@ -1,24 +0,0 @@
---- src/xmlparse.c.orig Wed Apr 5 08:53:55 2006
-+++ src/xmlparse.c Wed Apr 19 10:35:15 2006
-@@ -51,7 +51,7 @@
- #include "xmlparse.h"
-
- #define malloc g_malloc
--#define calloc(n,s) g_malloc0(n * s)
-+#define calloc(n,s) g_malloc0((n) * (s))
-
- #define TAGSTACK_INCR 20
-
-@@ -162,10 +162,11 @@
- e->attrs = NULL;
- if (attrs) {
- for (i = 0 ; attrs[i] ; i++) ;
-- e->attrs = calloc(i, sizeof(xmlChar *));
-+ e->attrs = calloc(i+1, sizeof(xmlChar *));
- for (i = 0 ; attrs[i] ; i++) {
- e->attrs[i] = (guchar*)strdup((gchar*)attrs[i]);
- }
-+ e->attrs[i] = NULL;
- }
-
- /* lookup handler */