aboutsummaryrefslogtreecommitdiff
path: root/japanese/sj3-server
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-02-13 17:05:46 +0000
committerSteve Price <steve@FreeBSD.org>2000-02-13 17:05:46 +0000
commitbaeca5baa28423e8e8908065cd99ad2d1dbe5303 (patch)
tree7b0640c1675eb885f3eb6d161d49a4308187af32 /japanese/sj3-server
parentba7142f26a20707c3865dab47810b45774381d34 (diff)
downloadports-baeca5baa28423e8e8908065cd99ad2d1dbe5303.tar.gz
ports-baeca5baa28423e8e8908065cd99ad2d1dbe5303.zip
Allow this to build with the more strict compiler in -current.
Notes
Notes: svn path=/head/; revision=25762
Diffstat (limited to 'japanese/sj3-server')
-rw-r--r--japanese/sj3-server/files/patch-aa139
-rw-r--r--japanese/sj3-server/files/patch-ag12
-rw-r--r--japanese/sj3-server/files/patch-ah12
3 files changed, 98 insertions, 65 deletions
diff --git a/japanese/sj3-server/files/patch-aa b/japanese/sj3-server/files/patch-aa
index 2ff33a40a0c8..8f9a43107e17 100644
--- a/japanese/sj3-server/files/patch-aa
+++ b/japanese/sj3-server/files/patch-aa
@@ -359,92 +359,101 @@ diff -arcN ../sj3-2.0.1.13.org/doc/man/sj3serv.1 ./doc/man/sj3serv.1
かな漢字変換サーバ デフォルト辞書ディレクトリ
.TP
sj3main.dic
-diff -arcN ../sj3-2.0.1.13.org/server/setup.c ./server/setup.c
-*** ../sj3-2.0.1.13.org/server/setup.c Fri Dec 9 20:27:07 1994
---- ./server/setup.c Mon Aug 12 23:58:25 1996
+*** server/setup.c.orig Mon Mar 23 04:48:02 1998
+--- server/setup.c Sun Feb 6 18:48:31 2000
***************
-*** 221,250 ****
+*** 217,251 ****
+
+
+ struct optlist {
+! char *optname;
u_char *(*optfunc)();
- int optarg;
+! int optarg;
} option[] = {
- "DebugOut", get_str, (int)&debug_file,
- "DebugLevel", get_int, (int)&debug_level,
- "ForkFlag", get_flag, (int)&fork_flag,
+! "DebugOut", get_str, (int)&debug_file,
+! "DebugLevel", get_int, (int)&debug_level,
+! "ForkFlag", get_flag, (int)&fork_flag,
- "PortName", get_str, (int)&port_name,
+! "PortName", get_str, (int)&port_name,
#ifdef TLI
- "PortNumber", get_str, (int)&port_number,
+! "PortNumber", get_str, (int)&port_number,
! "ProtoName", get_str, (int)&proto_name,
#else
- "PortNumber", get_int, (int)&port_number,
+! "PortNumber", get_int, (int)&port_number,
#endif
- "SocketName", get_str, (int)&socket_name,
+! "SocketName", get_str, (int)&socket_name,
#ifdef LOCK_FILE
- "LockFile", get_str, (int)&lock_file;
+! "LockFile", get_str, (int)&lock_file;
#endif
- "maxclient", get_int, (int)&max_client,
- "dictdir", get_str, (int)&dict_dir,
- "readdict", get_list, (int)&read_dict,
- "opendict", get_list, (int)&open_dict,
- "errorout", get_str, (int)&error_file,
- "logout", get_str, (int)&log_file,
- "dirmode", get_int, (int)&dir_mode,
- "filemode", get_int, (int)&file_mode,
- "allowuser", get_list, (int)&allow_user,
+! "maxclient", get_int, (int)&max_client,
+! "dictdir", get_str, (int)&dict_dir,
+! "readdict", get_list, (int)&read_dict,
+! "opendict", get_list, (int)&open_dict,
+! "errorout", get_str, (int)&error_file,
+! "logout", get_str, (int)&log_file,
+! "dirmode", get_int, (int)&dir_mode,
+! "filemode", get_int, (int)&file_mode,
+! "allowuser", get_list, (int)&allow_user,
0, 0, 0
};
---- 221,273 ----
+
+--- 217,274 ----
+
+
+ struct optlist {
+! const char *optname;
u_char *(*optfunc)();
- int optarg;
+! void *optarg;
} option[] = {
-+ /*
-+ * Add option flag.
-+ * Because They are lacked in here. See document.
-+ * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10
-+ */
- "DebugOut", get_str, (int)&debug_file,
-+ "debugout", get_str, (int)&debug_file,
- "DebugLevel", get_int, (int)&debug_level,
-+ "debuglevel", get_int, (int)&debug_level,
- "ForkFlag", get_flag, (int)&fork_flag,
-+ "forkflag", get_flag, (int)&fork_flag,
+! /*
+! * Add option flag.
+! * Because They are lacked in here. See document.
+! * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10
+! */
+! "DebugOut", get_str, &debug_file,
+! "debugout", get_str, &debug_file,
+! "DebugLevel", get_int, &debug_level,
+! "debuglevel", get_int, &debug_level,
+! "ForkFlag", get_flag, &fork_flag,
+! "forkflag", get_flag, &fork_flag,
- "PortName", get_str, (int)&port_name,
-+ "portname", get_str, (int)&port_name,
+! "PortName", get_str, &port_name,
+! "portname", get_str, &port_name,
#ifdef TLI
- "PortNumber", get_str, (int)&port_number,
-! "portnumber", get_str, (int)&port_number,
-! "ProtoName", get_str, (int)&proto_name,
-! "protoname", get_str, (int)&proto_name,
+! "PortNumber", get_str, &port_number,
+! "portnumber", get_str, &port_number,
+! "ProtoName", get_str, &proto_name,
+! "protoname", get_str, &proto_name,
#else
- "PortNumber", get_int, (int)&port_number,
-+ "portnumber", get_int, (int)&port_number,
+! "PortNumber", get_int, &port_number,
+! "portnumber", get_int, &port_number,
#endif
- "SocketName", get_str, (int)&socket_name,
-+ "socketname", get_str, (int)&socket_name,
+! "SocketName", get_str, &socket_name,
+! "socketname", get_str, &socket_name,
#ifdef LOCK_FILE
- "LockFile", get_str, (int)&lock_file;
-+ "lockfile", get_str, (int)&lock_file;
+! "LockFile", get_str, &lock_file;
+! "lockfile", get_str, &lock_file;
#endif
-+ "MaxClient", get_int, (int)&max_client,
- "maxclient", get_int, (int)&max_client,
-+ "DictDir", get_str, (int)&dict_dir,
- "dictdir", get_str, (int)&dict_dir,
-+ "ReadDict", get_list, (int)&read_dict,
- "readdict", get_list, (int)&read_dict,
-+ "OpenDict", get_list, (int)&open_dict,
- "opendict", get_list, (int)&open_dict,
-+ "ErrorOut", get_str, (int)&error_file,
- "errorout", get_str, (int)&error_file,
-+ "LogOut", get_str, (int)&log_file,
- "logout", get_str, (int)&log_file,
-+ "DirMode", get_int, (int)&dir_mode,
- "dirmode", get_int, (int)&dir_mode,
-+ "FileMode", get_int, (int)&file_mode,
- "filemode", get_int, (int)&file_mode,
-+ "AllowUser", get_list, (int)&allow_user,
- "allowuser", get_list, (int)&allow_user,
+! "MaxClient", get_int, &max_client,
+! "maxclient", get_int, &max_client,
+! "DictDir", get_str, &dict_dir,
+! "dictdir", get_str, &dict_dir,
+! "ReadDict", get_list, &read_dict,
+! "readdict", get_list, &read_dict,
+! "OpenDict", get_list, &open_dict,
+! "opendict", get_list, &open_dict,
+! "ErrorOut", get_str, &error_file,
+! "errorout", get_str, &error_file,
+! "LogOut", get_str, &log_file,
+! "logout", get_str, &log_file,
+! "DirMode", get_int, &dir_mode,
+! "dirmode", get_int, &dir_mode,
+! "FileMode", get_int, &file_mode,
+! "filemode", get_int, &file_mode,
+! "AllowUser", get_list, &allow_user,
+! "allowuser", get_list, &allow_user,
0, 0, 0
};
+
diff --git a/japanese/sj3-server/files/patch-ag b/japanese/sj3-server/files/patch-ag
new file mode 100644
index 000000000000..36759dbda3f1
--- /dev/null
+++ b/japanese/sj3-server/files/patch-ag
@@ -0,0 +1,12 @@
+--- sj3/sj3.c.orig Sun Feb 6 18:55:38 2000
++++ sj3/sj3.c Sun Feb 6 18:58:44 2000
+@@ -46,6 +46,9 @@
+ #define LACKOF_SETLOCALE
+ #endif
+ #endif
++#if defined(__FreeBSD__)
++#include <sys/ioctl_compat.h>
++#endif
+ #include <curses.h>
+ #endif
+
diff --git a/japanese/sj3-server/files/patch-ah b/japanese/sj3-server/files/patch-ah
new file mode 100644
index 000000000000..3919516c0498
--- /dev/null
+++ b/japanese/sj3-server/files/patch-ah
@@ -0,0 +1,12 @@
+--- sj3/sjgetchar.c.orig Sun Feb 6 18:59:26 2000
++++ sj3/sjgetchar.c Sun Feb 6 19:00:02 2000
+@@ -52,6 +52,9 @@
+ #if defined(__NetBSD__) || defined(__bsdi__)
+ #define USE_OLD_TTY
+ #endif
++#if defined(__FreeBSD__)
++#include <sys/ioctl_compat.h>
++#endif
+ #include <curses.h>
+ #endif
+