summaryrefslogtreecommitdiff
path: root/japanese/ebview-gtk2/files
diff options
context:
space:
mode:
Diffstat (limited to 'japanese/ebview-gtk2/files')
-rw-r--r--japanese/ebview-gtk2/files/patch-config.h.in12
-rw-r--r--japanese/ebview-gtk2/files/patch-configure.in11
-rw-r--r--japanese/ebview-gtk2/files/patch-src::ebview-client.c11
-rw-r--r--japanese/ebview-gtk2/files/patch-src::ebview.c38
4 files changed, 0 insertions, 72 deletions
diff --git a/japanese/ebview-gtk2/files/patch-config.h.in b/japanese/ebview-gtk2/files/patch-config.h.in
deleted file mode 100644
index 398ea43bc152..000000000000
--- a/japanese/ebview-gtk2/files/patch-config.h.in
+++ /dev/null
@@ -1,12 +0,0 @@
---- config.h.in.orig Sun Apr 13 13:02:31 2003
-+++ config.h.in Fri May 2 19:58:33 2003
-@@ -77,6 +77,9 @@
- /* Define to 1 if you have the `getgid' function. */
- #undef HAVE_GETGID
-
-+/* Define to 1 if you have the `getopt_long' function. */
-+#undef HAVE_GETOPT_LONG
-+
- /* Define to 1 if you have the `getpagesize' function. */
- #undef HAVE_GETPAGESIZE
-
diff --git a/japanese/ebview-gtk2/files/patch-configure.in b/japanese/ebview-gtk2/files/patch-configure.in
deleted file mode 100644
index 371da331e1fd..000000000000
--- a/japanese/ebview-gtk2/files/patch-configure.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.in.orig Sun Apr 13 12:29:30 2003
-+++ configure.in Fri May 2 20:01:19 2003
-@@ -39,7 +39,7 @@
- AC_PROG_GCC_TRADITIONAL
- dnl AC_FUNC_SETVBUF_REVERSED
- AC_TYPE_SIGNAL
--AC_CHECK_FUNCS(mkdir select strdup strtol)
-+AC_CHECK_FUNCS(mkdir select strdup strtol getopt_long)
-
- _mozilla_include_place=/usr/include/mozilla
- AC_ARG_WITH(mozilla-includes,
diff --git a/japanese/ebview-gtk2/files/patch-src::ebview-client.c b/japanese/ebview-gtk2/files/patch-src::ebview-client.c
deleted file mode 100644
index 1e7efe467716..000000000000
--- a/japanese/ebview-gtk2/files/patch-src::ebview-client.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/ebview-client.c.orig Sat Apr 26 21:59:23 2003
-+++ src/ebview-client.c Fri May 2 20:14:43 2003
-@@ -30,7 +30,7 @@
- /* The total length of the address includes the sun_family
- element */
-
--#ifdef __FreeBSD__
-+#ifndef HAVE_GETOPT_LONG
- addrLength = sizeof(address.sun_len) + sizeof(address.sun_family) + strlen(address.sun_path) + 1;
- address.sun_len = addrLength;
- #else
diff --git a/japanese/ebview-gtk2/files/patch-src::ebview.c b/japanese/ebview-gtk2/files/patch-src::ebview.c
deleted file mode 100644
index 7cd42ceafd68..000000000000
--- a/japanese/ebview-gtk2/files/patch-src::ebview.c
+++ /dev/null
@@ -1,38 +0,0 @@
---- src/ebview.c.orig Sun Apr 13 18:43:30 2003
-+++ src/ebview.c Fri May 2 20:31:01 2003
-@@ -20,9 +20,16 @@
- #include <sys/wait.h>
- #include <sys/socket.h>
- #include <sys/un.h>
--#include <getopt.h>
- #include <pthread.h>
-
-+#ifdef HAVE_CONFIG_H
-+#include "../config.h"
-+#endif
-+
-+#ifdef HAVE_GETOPT_LONG
-+#include <getopt.h>
-+#endif
-+
- #include "defs.h"
- #include "global.h"
-
-@@ -200,7 +207,7 @@
- optind = 0;
-
- while(1){
--#ifdef __FreeBSD__
-+#ifndef HAVE_GETOPT_LONG
- c = getopt(g_argc, g_argv, "sprig:");
- #else
- c = getopt_long(g_argc, g_argv, "sprig:",
-@@ -364,7 +371,7 @@
- /* The total length of the address includes the sun_family
- element */
-
--#ifdef __FreeBSD__
-+#ifndef HAVE_GETOPT_LONG
- addrLength = sizeof(address.sun_len) + sizeof(address.sun_family) + strlen(address.sun_path) + 1;
- address.sun_len = addrLength;
- #else