summaryrefslogtreecommitdiff
path: root/japanese
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2001-05-07 18:13:13 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2001-05-07 18:13:13 +0000
commitecb236c6feb49c615f610a1d8e3dc9bd7510ab82 (patch)
treedb75f39df589962c89d671ca78c71d216532055f /japanese
parentd5a5353bbc0f7a12200e73b2fab6a66c2aa95772 (diff)
downloadpkgsrc-ecb236c6feb49c615f610a1d8e3dc9bd7510ab82.tar.gz
add LP64 patch for alpha.
Diffstat (limited to 'japanese')
-rw-r--r--japanese/sj3-lib/distinfo3
-rw-r--r--japanese/sj3-lib/patches/patch-ag95
-rw-r--r--japanese/sj3-server/distinfo3
3 files changed, 99 insertions, 2 deletions
diff --git a/japanese/sj3-lib/distinfo b/japanese/sj3-lib/distinfo
index 78b3987ae11..be20a19c72b 100644
--- a/japanese/sj3-lib/distinfo
+++ b/japanese/sj3-lib/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.2 2001/04/21 10:13:36 wiz Exp $
+$NetBSD: distinfo,v 1.3 2001/05/07 18:13:13 dmcmahill Exp $
SHA1 (sj3-2.0.1.20.tar.gz) = b1cae59065ebc9caf5e198143ceb9558c932f259
Size (sj3-2.0.1.20.tar.gz) = 584065 bytes
@@ -8,3 +8,4 @@ SHA1 (patch-ac) = a2a9c21618e7de1e56d371cb05cf866d549d50a1
SHA1 (patch-ad) = be015448eb4ee267a2228838cc2a08e2586b0a85
SHA1 (patch-ae) = 3b07eb2ea9d72049a8f322220836a631598ea7dc
SHA1 (patch-af) = 33ac72303dfa13929d423ecaf5d9b7cb308f8ff5
+SHA1 (patch-ag) = b01fda538eb70a8f66cd42bcc719e24da848929f
diff --git a/japanese/sj3-lib/patches/patch-ag b/japanese/sj3-lib/patches/patch-ag
new file mode 100644
index 00000000000..45a134aaa98
--- /dev/null
+++ b/japanese/sj3-lib/patches/patch-ag
@@ -0,0 +1,95 @@
+$NetBSD: patch-ag,v 1.1 2001/05/07 18:13:13 dmcmahill Exp $
+
+--- server/setup.c.orig Mon May 7 12:15:08 2001
++++ server/setup.c Mon May 7 12:50:19 2001
+@@ -220,5 +220,5 @@
+ char *optname;
+ u_char *(*optfunc)();
+- int optarg;
++ long int optarg;
+ } option[] = {
+ /*
+@@ -227,47 +227,47 @@
+ * 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,
++ "DebugOut", get_str, (long int)&debug_file,
++ "debugout", get_str, (long int)&debug_file,
++ "DebugLevel", get_int, (long int)&debug_level,
++ "debuglevel", get_int, (long int)&debug_level,
++ "ForkFlag", get_flag, (long int)&fork_flag,
++ "forkflag", get_flag, (long int)&fork_flag,
+
+- "PortName", get_str, (int)&port_name,
+- "portname", get_str, (int)&port_name,
++ "PortName", get_str, (long int)&port_name,
++ "portname", get_str, (long int)&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, (long int)&port_number,
++ "portnumber", get_str, (long int)&port_number,
++ "ProtoName", get_str, (long int)&proto_name,
++ "protoname", get_str, (long int)&proto_name,
+ #else
+- "PortNumber", get_int, (int)&port_number,
+- "portnumber", get_int, (int)&port_number,
++ "PortNumber", get_int, (long int)&port_number,
++ "portnumber", get_int, (long int)&port_number,
+ #endif
+- "SocketName", get_str, (int)&socket_name,
+- "socketname", get_str, (int)&socket_name,
++ "SocketName", get_str, (long int)&socket_name,
++ "socketname", get_str, (long int)&socket_name,
+ #ifdef LOCK_FILE
+- "LockFile", get_str, (int)&lock_file;
+- "lockfile", get_str, (int)&lock_file;
++ "LockFile", get_str, (long int)&lock_file;
++ "lockfile", get_str, (long int)&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, (long int)&max_client,
++ "maxclient", get_int, (long int)&max_client,
++ "DictDir", get_str, (long int)&dict_dir,
++ "dictdir", get_str, (long int)&dict_dir,
++ "ReadDict", get_list, (long int)&read_dict,
++ "readdict", get_list, (long int)&read_dict,
++ "OpenDict", get_list, (long int)&open_dict,
++ "opendict", get_list, (long int)&open_dict,
++ "ErrorOut", get_str, (long int)&error_file,
++ "errorout", get_str, (long int)&error_file,
++ "LogOut", get_str, (long int)&log_file,
++ "logout", get_str, (long int)&log_file,
++ "DirMode", get_int, (long int)&dir_mode,
++ "dirmode", get_int, (long int)&dir_mode,
++ "FileMode", get_int, (long int)&file_mode,
++ "filemode", get_int, (long int)&file_mode,
++ "AllowUser", get_list, (long int)&allow_user,
++ "allowuser", get_list, (long int)&allow_user,
+ 0, 0, 0
+ };
diff --git a/japanese/sj3-server/distinfo b/japanese/sj3-server/distinfo
index 78b3987ae11..be20a19c72b 100644
--- a/japanese/sj3-server/distinfo
+++ b/japanese/sj3-server/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.2 2001/04/21 10:13:36 wiz Exp $
+$NetBSD: distinfo,v 1.3 2001/05/07 18:13:13 dmcmahill Exp $
SHA1 (sj3-2.0.1.20.tar.gz) = b1cae59065ebc9caf5e198143ceb9558c932f259
Size (sj3-2.0.1.20.tar.gz) = 584065 bytes
@@ -8,3 +8,4 @@ SHA1 (patch-ac) = a2a9c21618e7de1e56d371cb05cf866d549d50a1
SHA1 (patch-ad) = be015448eb4ee267a2228838cc2a08e2586b0a85
SHA1 (patch-ae) = 3b07eb2ea9d72049a8f322220836a631598ea7dc
SHA1 (patch-af) = 33ac72303dfa13929d423ecaf5d9b7cb308f8ff5
+SHA1 (patch-ag) = b01fda538eb70a8f66cd42bcc719e24da848929f