aboutsummaryrefslogtreecommitdiff
path: root/japanese/postgresql-tcltk/files
diff options
context:
space:
mode:
Diffstat (limited to 'japanese/postgresql-tcltk/files')
-rw-r--r--japanese/postgresql-tcltk/files/patch-ab66
-rw-r--r--japanese/postgresql-tcltk/files/patch-ac11
-rw-r--r--japanese/postgresql-tcltk/files/patch-ad11
-rw-r--r--japanese/postgresql-tcltk/files/patch-ae11
-rw-r--r--japanese/postgresql-tcltk/files/patch-af25
-rw-r--r--japanese/postgresql-tcltk/files/patch-ag11
-rw-r--r--japanese/postgresql-tcltk/files/patch-bc5
-rw-r--r--japanese/postgresql-tcltk/files/pgsql.sh.tmpl34
-rw-r--r--japanese/postgresql-tcltk/files/post-install-notes14
9 files changed, 0 insertions, 188 deletions
diff --git a/japanese/postgresql-tcltk/files/patch-ab b/japanese/postgresql-tcltk/files/patch-ab
deleted file mode 100644
index 3be237663dd4..000000000000
--- a/japanese/postgresql-tcltk/files/patch-ab
+++ /dev/null
@@ -1,66 +0,0 @@
---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 12:45:18 2000
-+++ bin/pg_passwd/pg_passwd.c Wed May 10 03:39:18 2000
-@@ -18,11 +18,14 @@
-
- #endif
-
-+#ifndef _POSIX_SOURCE
-+# define _PASSWORD_LEN 128 /* max length, not containing NULL */
-+#endif
- char *comname;
- static void usage(FILE *stream);
- static void read_pwd_file(char *filename);
- static void write_pwd_file(char *filename, char *bkname);
--static void encrypt_pwd(char key[9], char salt[3], char passwd[14]);
-+static void encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1]);
- static void prompt_for_username(char *username);
- static void prompt_for_password(char *prompt, char *password);
-
-@@ -150,7 +153,7 @@
-
- if (q != NULL)
- *(q++) = '\0';
-- if (strlen(p) != 13)
-+ if (strlen(p) > _PASSWORD_LEN)
- {
- fprintf(stderr, "WARNING: %s: line %d: illegal password length.\n",
- filename, npwds + 1);
-@@ -214,7 +217,7 @@
- }
-
- static void
--encrypt_pwd(char key[9], char salt[3], char passwd[14])
-+encrypt_pwd(char key[9], char salt[3], char passwd[_PASSWORD_LEN+1])
- {
- int n;
-
-@@ -246,9 +249,9 @@
-
- #ifdef NOT_USED
- static int
--check_pwd(char key[9], char passwd[14])
-+check_pwd(char key[9], char passwd[_PASSWORD_LEN+1])
- {
-- char shouldbe[14];
-+ char shouldbe[_PASSWORD_LEN+1];
- char salt[3];
-
- salt[0] = passwd[0];
-@@ -256,7 +259,7 @@
- salt[2] = '\0';
- encrypt_pwd(key, salt, shouldbe);
-
-- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0;
-+ return strncmp(shouldbe, passwd, _PASSWORD_LEN+1) == 0 ? 1 : 0;
- }
-
- #endif
-@@ -332,7 +335,7 @@
- char salt[3];
- char key[9],
- key2[9];
-- char e_passwd[14];
-+ char e_passwd[_PASSWORD_LEN+1];
- int i;
-
- comname = argv[0];
diff --git a/japanese/postgresql-tcltk/files/patch-ac b/japanese/postgresql-tcltk/files/patch-ac
deleted file mode 100644
index f0f0ac586e74..000000000000
--- a/japanese/postgresql-tcltk/files/patch-ac
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.orig Thu May 4 04:10:55 2000
-+++ configure Wed May 10 03:46:37 2000
-@@ -1472,7 +1472,7 @@
- ELF_SYS=true
- else
- rm -rf conftest*
-- if test "X$elf" = "Xyes"
-+ if test "X$PORTOBJFORMAT" = "Xelf"
- then
- ELF_SYS=true
- else
diff --git a/japanese/postgresql-tcltk/files/patch-ad b/japanese/postgresql-tcltk/files/patch-ad
deleted file mode 100644
index ea1b852b3f87..000000000000
--- a/japanese/postgresql-tcltk/files/patch-ad
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.global.in.orig Wed May 10 03:47:24 2000
-+++ Makefile.global.in Wed May 10 03:48:37 2000
-@@ -87,7 +87,7 @@
- POSTMANDIR= $(POSTGRESDIR)/man
-
- # Where the formatted documents (e.g., the reference manual) get installed.
--POSTDOCDIR= $(POSTGRESDIR)/doc
-+POSTDOCDIR= !!PREFIX!!/share/doc/pgsql
-
- # Where the header files necessary to build frontend programs get installed.
- HEADERDIR= $(POSTGRESDIR)/include
diff --git a/japanese/postgresql-tcltk/files/patch-ae b/japanese/postgresql-tcltk/files/patch-ae
deleted file mode 100644
index 82a8e0012494..000000000000
--- a/japanese/postgresql-tcltk/files/patch-ae
+++ /dev/null
@@ -1,11 +0,0 @@
---- ../doc/Makefile.orig Mon Dec 6 06:23:00 1999
-+++ ../doc/Makefile Wed May 10 03:50:13 2000
-@@ -12,7 +12,7 @@
- #
- #----------------------------------------------------------------------------
-
--PGDOCS= $(POSTGRESDIR)/doc
-+PGDOCS= $(POSTDOCDIR)
- SRCDIR= ../src
-
- TAR= tar
diff --git a/japanese/postgresql-tcltk/files/patch-af b/japanese/postgresql-tcltk/files/patch-af
deleted file mode 100644
index 58d833335108..000000000000
--- a/japanese/postgresql-tcltk/files/patch-af
+++ /dev/null
@@ -1,25 +0,0 @@
---- interfaces/jdbc/Makefile.orig Tue May 9 12:47:50 2000
-+++ interfaces/jdbc/Makefile Wed May 10 03:53:41 2000
-@@ -10,10 +10,10 @@
-
- FIND = find
- IDL2JAVA = idltojava -fno-cpp -fno-tie
--JAR = jar
--JAVA = java
--JAVAC = javac -g
--JAVADOC = javadoc
-+JAR = !!JAVA_HOME!!/bin/jar
-+JAVA = !!JAVA_HOME!!/bin/java
-+JAVAC = !!JAVA_HOME!!/bin/javac
-+JAVADOC = !!JAVA_HOME!!/bin/javadoc
- RM = rm -f
- TOUCH = touch
-
-@@ -49,6 +49,7 @@
- @echo JVM.
- @echo
- @echo ------------------------------------------------------------
-+ $(MAKE) jdbc1
-
- msg:
- @echo ------------------------------------------------------------
diff --git a/japanese/postgresql-tcltk/files/patch-ag b/japanese/postgresql-tcltk/files/patch-ag
deleted file mode 100644
index e15a1521b855..000000000000
--- a/japanese/postgresql-tcltk/files/patch-ag
+++ /dev/null
@@ -1,11 +0,0 @@
---- pl/tcl/Makefile.orig Sun Apr 30 02:45:42 2000
-+++ pl/tcl/Makefile Fri May 12 21:31:07 2000
-@@ -66,7 +66,7 @@
- # Instead use TCL's CFLAGS plus necessary -I directives.
-
- # Can choose either TCL_CFLAGS_OPTIMIZE or TCL_CFLAGS_DEBUG here, as needed
--CFLAGS= $(TCL_CFLAGS_OPTIMIZE)
-+CFLAGS+= $(TCL_CFLAGS_OPTIMIZE)
-
- CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS)
-
diff --git a/japanese/postgresql-tcltk/files/patch-bc b/japanese/postgresql-tcltk/files/patch-bc
deleted file mode 100644
index e4e98dd945b0..000000000000
--- a/japanese/postgresql-tcltk/files/patch-bc
+++ /dev/null
@@ -1,5 +0,0 @@
---- bin/pg_ctl/postmaster.opts.default.sample.org Tue Jun 6 15:23:50 2000
-+++ bin/pg_ctl/postmaster.opts.default.sample Tue Jun 6 15:24:08 2000
-@@ -1 +1 @@
--
-+-i -o "-F"
diff --git a/japanese/postgresql-tcltk/files/pgsql.sh.tmpl b/japanese/postgresql-tcltk/files/pgsql.sh.tmpl
deleted file mode 100644
index e1673b4850c2..000000000000
--- a/japanese/postgresql-tcltk/files/pgsql.sh.tmpl
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-# $FreeBSD$
-#
-# For postmaster startup options, edit $PGDATA/postmaster.opts.default
-# Preinstalled options are -i -o "-F"
-
-case $1 in
-start)
- [ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib
- [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && {
- su -l pgsql -c \
- 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w start > !!PREFIX!!/pgsql/errlog 2>&1'
- echo -n ' pgsql'
- }
- ;;
-
-stop)
- [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && {
- su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl -w -m fast stop'
- }
- ;;
-
-status)
- [ -x !!PREFIX!!/pgsql/bin/pg_ctl ] && {
- su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/pg_ctl status'
- }
- ;;
-
-*)
- echo "usage: `basename $0` {start|stop|status}" >&2
- exit 64
- ;;
-esac
diff --git a/japanese/postgresql-tcltk/files/post-install-notes b/japanese/postgresql-tcltk/files/post-install-notes
deleted file mode 100644
index d99f47615730..000000000000
--- a/japanese/postgresql-tcltk/files/post-install-notes
+++ /dev/null
@@ -1,14 +0,0 @@
-
-Now that PostgreSQL is installed, you should read the documentation and
-implementation guides. These can be found at:
-
- http://www.PostgreSQL.org/docs
-
-You may wish to subscribe to the PostgreSQL user-support mailing list.
-Send an e-mail to pgsql-questions-request@postgresql.org with the
-text "subscribe" in the message body.
-
-If you built PostgreSQL with TCL support, you can install the port
-"pgaccess" to get a TCL/TK based database frontend for database
-operations.
-