summaryrefslogtreecommitdiff
path: root/databases/postgresql90-server/files
diff options
context:
space:
mode:
Diffstat (limited to 'databases/postgresql90-server/files')
-rw-r--r--databases/postgresql90-server/files/patch-aj67
-rw-r--r--databases/postgresql90-server/files/patch-ar11
-rw-r--r--databases/postgresql90-server/files/patch-as11
-rw-r--r--databases/postgresql90-server/files/patch-at11
-rw-r--r--databases/postgresql90-server/files/patch-ba32
-rw-r--r--databases/postgresql90-server/files/pgsql.sh.tmpl25
-rw-r--r--databases/postgresql90-server/files/post-install-notes13
7 files changed, 0 insertions, 170 deletions
diff --git a/databases/postgresql90-server/files/patch-aj b/databases/postgresql90-server/files/patch-aj
deleted file mode 100644
index 480ecc4f5d64..000000000000
--- a/databases/postgresql90-server/files/patch-aj
+++ /dev/null
@@ -1,67 +0,0 @@
---- bin/pg_passwd/pg_passwd.c.orig Thu May 27 09:00:40 1999
-+++ bin/pg_passwd/pg_passwd.c Mon Jun 21 16:34:27 1999
-@@ -26,11 +26,15 @@
-
- #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);
-
-@@ -158,7 +162,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);
-@@ -222,7 +226,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;
-
-@@ -254,9 +258,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];
-@@ -264,7 +268,7 @@
- salt[2] = '\0';
- encrypt_pwd(key, salt, shouldbe);
-
-- return strncmp(shouldbe, passwd, 13) == 0 ? 1 : 0;
-+ return strncmp(shouldbe, passwd, _PASSWORD_LEN) == 0 ? 1 : 0;
- }
- #endif
-
-@@ -339,7 +343,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/databases/postgresql90-server/files/patch-ar b/databases/postgresql90-server/files/patch-ar
deleted file mode 100644
index bc54daf60a4a..000000000000
--- a/databases/postgresql90-server/files/patch-ar
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure~ Sun May 30 09:01:09 1999
-+++ configure Mon Jun 21 16:52:53 1999
-@@ -663,7 +663,7 @@
- exit;;
- esac
-
--if test "X$elf" = "Xyes"
-+if test "X$PORTOBJFORMAT" = "Xelf"
- then
- ELF_SYS=true
- else
diff --git a/databases/postgresql90-server/files/patch-as b/databases/postgresql90-server/files/patch-as
deleted file mode 100644
index 3282168c4aed..000000000000
--- a/databases/postgresql90-server/files/patch-as
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.global.in.orig Sun Dec 6 00:08:56 1998
-+++ Makefile.global.in Sat Feb 27 04:23:12 1999
-@@ -79,7 +79,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/databases/postgresql90-server/files/patch-at b/databases/postgresql90-server/files/patch-at
deleted file mode 100644
index 93e68a708211..000000000000
--- a/databases/postgresql90-server/files/patch-at
+++ /dev/null
@@ -1,11 +0,0 @@
---- ../doc/Makefile.orig Sun Nov 29 06:30:13 1998
-+++ ../doc/Makefile Mon Jun 21 17:00:13 1999
-@@ -12,7 +12,7 @@
- #
- #----------------------------------------------------------------------------
-
--PGDOCS= $(POSTGRESDIR)/doc
-+PGDOCS= $(POSTDOCDIR)
- SRCDIR= ../src
-
- TAR= tar
diff --git a/databases/postgresql90-server/files/patch-ba b/databases/postgresql90-server/files/patch-ba
deleted file mode 100644
index 5d64eff4e1d9..000000000000
--- a/databases/postgresql90-server/files/patch-ba
+++ /dev/null
@@ -1,32 +0,0 @@
---- interfaces/jdbc/Makefile.orig Tue May 18 09:01:41 1999
-+++ interfaces/jdbc/Makefile Mon Jun 28 19:16:12 1999
-@@ -10,10 +10,10 @@
-
- FIND = find
- IDL2JAVA = idltojava -fno-cpp -fno-tie
--JAR = jar
--JAVA = java
--JAVAC = javac
--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
-
-@@ -27,11 +27,11 @@
- # In 6.5, the all rule builds the makeVersion class which then calls make using
- # the jdbc1 or jdbc2 rules
- all: makeVersion.class
-- make $$($(JAVA) makeVersion)
-+ ${MAKE} $$($(JAVA) makeVersion)
- @echo ------------------------------------------------------------
- @echo The JDBC driver has now been built. To make it available to
-- @echo other applications, copy the postgresql.jar file to a public
-- @echo "place (under unix this could be /usr/local/lib) and add it"
-+ @echo other applications, add the path
-+ @echo !!JAVA_HOME!!/share/java/postgresql.jar
- @echo to the class path.
- @echo
- @echo Then either add -Djdbc.drivers=postgresql.Driver to the
diff --git a/databases/postgresql90-server/files/pgsql.sh.tmpl b/databases/postgresql90-server/files/pgsql.sh.tmpl
deleted file mode 100644
index f3c673b6aded..000000000000
--- a/databases/postgresql90-server/files/pgsql.sh.tmpl
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-# $FreeBSD$
-
-# pgsql.sh - postgresql startup file for FreeBSD and possibly *BSD (untested)
-
-# Changes:
-# - renamed startup script to be in sync with INSTALL file
-# - merged ldconfig start sequence from former postgrsql.sh script (andreas)
-# - modified the postmaster startup sequence as suggested in the
-# INSTALL file which was given as example for FreeBSD 2.2 (andreas)
-# - removed the commandline option
-# -D!!PREFIX!!/pgsql/data \
-# because the postmaster process, which starts up under the
-# environment of the pgsql user, sets this with the PGDATA
-# environment variable in !!PREFIX!!/pgsql/.profile
-#
-
-[ -d !!PREFIX!!/pgsql/lib ] && /sbin/ldconfig -m !!PREFIX!!/pgsql/lib
-
-[ -x !!PREFIX!!/pgsql/bin/postmaster ] && {
- su -l pgsql -c 'exec !!PREFIX!!/pgsql/bin/postmaster -i -S -o -F \
- 2>&1 > !!PREFIX!!/pgsql/errlog'
- echo -n ' pgsql'
-}
diff --git a/databases/postgresql90-server/files/post-install-notes b/databases/postgresql90-server/files/post-install-notes
deleted file mode 100644
index a57562fe871e..000000000000
--- a/databases/postgresql90-server/files/post-install-notes
+++ /dev/null
@@ -1,13 +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 build PostgreSQL with TCL support, then you can use the
-TCL/TK based database frontend "pgaccess" for database operations.
-