diff options
Diffstat (limited to 'databases/postgresql92-server/files')
-rw-r--r-- | databases/postgresql92-server/files/patch-aj | 67 | ||||
-rw-r--r-- | databases/postgresql92-server/files/patch-ar | 11 | ||||
-rw-r--r-- | databases/postgresql92-server/files/patch-as | 11 | ||||
-rw-r--r-- | databases/postgresql92-server/files/patch-at | 11 | ||||
-rw-r--r-- | databases/postgresql92-server/files/patch-ba | 25 | ||||
-rw-r--r-- | databases/postgresql92-server/files/patch-bb | 13 | ||||
-rw-r--r-- | databases/postgresql92-server/files/patch-bc | 5 | ||||
-rw-r--r-- | databases/postgresql92-server/files/patch-bd | 42 | ||||
-rw-r--r-- | databases/postgresql92-server/files/pgsql.sh.tmpl | 34 | ||||
-rw-r--r-- | databases/postgresql92-server/files/post-install-notes | 16 |
10 files changed, 0 insertions, 235 deletions
diff --git a/databases/postgresql92-server/files/patch-aj b/databases/postgresql92-server/files/patch-aj deleted file mode 100644 index 4231fc94ede9..000000000000 --- a/databases/postgresql92-server/files/patch-aj +++ /dev/null @@ -1,67 +0,0 @@ ---- bin/pg_passwd/pg_passwd.c.orig Mon Apr 17 05:45:18 2000 -+++ bin/pg_passwd/pg_passwd.c Sat May 20 17:54:59 2000 -@@ -18,11 +18,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); - -@@ -150,7 +154,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 +218,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 +250,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 +260,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 -@@ -332,7 +336,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/postgresql92-server/files/patch-ar b/databases/postgresql92-server/files/patch-ar deleted file mode 100644 index c5c8096fc141..000000000000 --- a/databases/postgresql92-server/files/patch-ar +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Sun Oct 10 14:37:07 1999 -+++ configure Sun Oct 10 14:37:29 1999 -@@ -1429,7 +1429,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/databases/postgresql92-server/files/patch-as b/databases/postgresql92-server/files/patch-as deleted file mode 100644 index 3282168c4aed..000000000000 --- a/databases/postgresql92-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/postgresql92-server/files/patch-at b/databases/postgresql92-server/files/patch-at deleted file mode 100644 index 93e68a708211..000000000000 --- a/databases/postgresql92-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/postgresql92-server/files/patch-ba b/databases/postgresql92-server/files/patch-ba deleted file mode 100644 index a3b679b882c5..000000000000 --- a/databases/postgresql92-server/files/patch-ba +++ /dev/null @@ -1,25 +0,0 @@ ---- interfaces/jdbc/Makefile.orig Tue Mar 14 16:55:17 2000 -+++ interfaces/jdbc/Makefile Sun Apr 16 21:16:43 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 - -@@ -40,6 +40,7 @@ - @echo To compile, type: - @echo " $(MAKE) jdbc2" - @echo ------------------------------------------------------------ -+ $(MAKE) jdbc1 - - msg: - @echo ------------------------------------------------------------ diff --git a/databases/postgresql92-server/files/patch-bb b/databases/postgresql92-server/files/patch-bb deleted file mode 100644 index ea0f1732dcb0..000000000000 --- a/databases/postgresql92-server/files/patch-bb +++ /dev/null @@ -1,13 +0,0 @@ ---- pl/tcl/Makefile~ Sat Apr 29 19:45:42 2000 -+++ pl/tcl/Makefile Sat May 20 22:42:22 2000 -@@ -71,7 +71,9 @@ - CFLAGS+= $(TCL_SHLIB_CFLAGS) $(TCL_DEFS) - - CFLAGS+= -I$(SRCDIR)/include -I$(SRCDIR)/backend $(PGSQL_INCLUDES) -- -+ -+CFLAGS+= -I$(TCL_INCDIR) -+ - # - # Uncomment the following to enable the unknown command lookup - # on the first of all calls to the call handler. See the doc diff --git a/databases/postgresql92-server/files/patch-bc b/databases/postgresql92-server/files/patch-bc deleted file mode 100644 index ff747fb84a2f..000000000000 --- a/databases/postgresql92-server/files/patch-bc +++ /dev/null @@ -1,5 +0,0 @@ ---- bin/pg_ctl/postmaster.opts.default.sample~ Mon Apr 17 05:45:17 2000 -+++ bin/pg_ctl/postmaster.opts.default.sample Tue May 23 02:46:30 2000 -@@ -1 +1 @@ -- -+-i -o "-F" diff --git a/databases/postgresql92-server/files/patch-bd b/databases/postgresql92-server/files/patch-bd deleted file mode 100644 index 341696bfb087..000000000000 --- a/databases/postgresql92-server/files/patch-bd +++ /dev/null @@ -1,42 +0,0 @@ -Here are the two extra patch files that will allow PostgreSQL to -compile and run on Alpha. The DB is 64-bit capable so really only a few -bits of configuration for FreeBSD were needed. - ---- backend/main/main.c.orig Wed Aug 30 16:05:39 2000 -+++ backend/main/main.c Wed Aug 30 16:06:10 2000 -@@ -14,7 +14,7 @@ - */ - #include <unistd.h> - --#if defined(__alpha__) && !defined(linux) -+#if defined(__alpha__) && !defined(linux) && !defined(__FreeBSD__) - #include <sys/sysinfo.h> - #include "machine/hal_sysinfo.h" - #define ASSEMBLER - - - - - - - ---- include/port/freebsd.h.orig Tue Jul 13 16:12:49 1999 -+++ include/port/freebsd.h Wed Aug 30 21:12:51 2000 -@@ -3,6 +3,12 @@ - #if defined(__i386__) - #define NEED_I386_TAS_ASM - #define HAS_TEST_AND_SET -+typedef unsigned char slock_t; -+#endif -+ -+#if defined (__alpha__) -+#define HAS_TEST_AND_SET -+typedef long int slock_t; - #endif - - #if defined(__sparc__) -@@ -28,4 +34,3 @@ - /* # undef HAS_TEST_AND_SET */ - #endif - --typedef unsigned char slock_t; diff --git a/databases/postgresql92-server/files/pgsql.sh.tmpl b/databases/postgresql92-server/files/pgsql.sh.tmpl deleted file mode 100644 index e1673b4850c2..000000000000 --- a/databases/postgresql92-server/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/databases/postgresql92-server/files/post-install-notes b/databases/postgresql92-server/files/post-install-notes deleted file mode 100644 index 289a7651109a..000000000000 --- a/databases/postgresql92-server/files/post-install-notes +++ /dev/null @@ -1,16 +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. - -To start PostgreSQL, run the startup script: -$PREFIX/etc/rc.d/pgsql.sh start |