Update of /cvsroot/fink/experimental/rangerrick/finkinfo/database
In directory sc8-pr-cvs1:/tmp/cvs-serv22720

Modified Files:
        postgresql-7.3.1-1.patch 
Log Message:
minor patch update

Index: postgresql-7.3.1-1.patch
===================================================================
RCS file: 
/cvsroot/fink/experimental/rangerrick/finkinfo/database/postgresql-7.3.1-1.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- postgresql-7.3.1-1.patch    3 Jan 2003 22:09:41 -0000       1.2
+++ postgresql-7.3.1-1.patch    7 Jan 2003 15:44:39 -0000       1.3
@@ -1,173 +1,6 @@
-diff -uNbr postgresql-7.3.1/configure.in postgresql-7.3.1-patched/configure.in
---- postgresql-7.3.1/configure.in      Tue Dec 17 21:07:20 2002
-+++ postgresql-7.3.1-patched/configure.in      Thu Jan  2 16:08:23 2003
-@@ -724,7 +724,12 @@
- fi
- 
- if test "$with_pam" = yes ; then
--  AC_CHECK_HEADER([security/pam_appl.h], [], [AC_MSG_ERROR([header file 
<security/pam_appl.h> is required for PAM])])
-+  AC_CHECK_HEADERS([security/pam_appl.h], [], [
-+    AC_CHECK_HEADERS([pam/pam_appl.h], [
-+      AC_DEFINE([HAVE_PAM_PAM_APPL_H], 1, [Define if pam_appl.h is in pam/ instead 
of security/])
-+      ], [AC_MSG_ERROR([header file <security/pam_appl.h> or <pam/pam_appl.h> is 
required for PAM])]
-+    )
-+  ])
- fi
- 
- 
-diff -uNbr postgresql-7.3.1/src/backend/libpq/auth.c 
postgresql-7.3.1-patched/src/backend/libpq/auth.c
---- postgresql-7.3.1/src/backend/libpq/auth.c  Wed Sep  4 19:31:34 2002
-+++ postgresql-7.3.1-patched/src/backend/libpq/auth.c  Thu Jan  2 16:08:35 2003
-@@ -42,7 +42,12 @@
- char     *pg_krb_server_keyfile;
- 
- #ifdef USE_PAM
-+
-+#ifdef HAVE_PAM_PAM_APPL_H
-+#include <pam/pam_appl.h>
-+#else
- #include <security/pam_appl.h>
-+#endif
- 
- #define PGSQL_PAM_SERVICE "postgresql"        /* Service name passed to PAM */
- 
-diff -uNbr postgresql-7.3.1/src/backend/utils/mb/conversion_procs/proc.mk 
postgresql-7.3.1-patched/src/backend/utils/mb/conversion_procs/proc.mk
---- postgresql-7.3.1/src/backend/utils/mb/conversion_procs/proc.mk     Thu Sep  5 
14:28:46 2002
-+++ postgresql-7.3.1-patched/src/backend/utils/mb/conversion_procs/proc.mk     Thu 
Jan  2 14:20:33 2003
-@@ -1,6 +1,7 @@
- SRCS          += $(NAME).c
- OBJS          += $(NAME).o
- 
-+DLTYPE                = bundle
- SHLIB_LINK    := $(BE_DLLLIBS)
- 
- SO_MAJOR_VERSION := 0
-diff -uNbr postgresql-7.3.1/src/include/pg_config.h.in 
postgresql-7.3.1-patched/src/include/pg_config.h.in
---- postgresql-7.3.1/src/include/pg_config.h.in        Fri Nov  8 00:23:09 2002
-+++ postgresql-7.3.1-patched/src/include/pg_config.h.in        Thu Jan  2 16:11:37 
2003
-@@ -57,6 +57,9 @@
- /* Define to build with PAM Support */
- #undef USE_PAM
- 
-+/* Define if pam_appl.h is in pam/ instead of security/ */
-+#undef HAVE_PAM_PAM_APPL_H
-+
- /* 
-  * DEF_PGPORT is the TCP port number on which the Postmaster listens and
-  * which clients will try to connect to.  This is just a default value;
-diff -uNbr postgresql-7.3.1/src/interfaces/libpgtcl/Makefile 
postgresql-7.3.1-patched/src/interfaces/libpgtcl/Makefile
---- postgresql-7.3.1/src/interfaces/libpgtcl/Makefile  Tue Dec 10 23:08:05 2002
-+++ postgresql-7.3.1-patched/src/interfaces/libpgtcl/Makefile  Thu Jan  2 17:23:24 
2003
-@@ -20,7 +20,7 @@
- 
- OBJS= pgtcl.o pgtclCmds.o pgtclId.o
- 
--SHLIB_LINK = $(libpq)
-+SHLIB_LINK = $(libpq) $(TCL_LIB_SPEC)
- 
- # If crypt is a separate library, rather than part of libc, it may need
- # to be referenced separately to keep (broken) linkers happy.  (This is
-diff -uNbr postgresql-7.3.1/src/interfaces/python/GNUmakefile 
postgresql-7.3.1-patched/src/interfaces/python/GNUmakefile
---- postgresql-7.3.1/src/interfaces/python/GNUmakefile Thu Dec 13 13:39:04 2001
-+++ postgresql-7.3.1-patched/src/interfaces/python/GNUmakefile Thu Jan  2 17:18:17 
2003
-@@ -13,10 +13,13 @@
- override CPPFLAGS += -DUSE_DL_IMPORT
- SHLIB_LINK += $(python_libspec)
- endif
--
-+ifeq ($(PORTNAME), darwin)
-+SHLIB_LINK += $(python_libspec)
-+endif
- 
- include $(top_srcdir)/src/Makefile.shlib
- 
-+DLTYPE = bundle
- override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) $(python_includespec)
- 
- all: all-lib
-diff -uNbr postgresql-7.3.1/src/makefiles/Makefile.darwin 
postgresql-7.3.1-patched/src/makefiles/Makefile.darwin
---- postgresql-7.3.1/src/makefiles/Makefile.darwin     Fri Oct  5 17:15:38 2001
-+++ postgresql-7.3.1-patched/src/makefiles/Makefile.darwin     Thu Jan  2 14:27:38 
2003
-@@ -1,13 +1,18 @@
- AROPT = cr
- AWK= awk
-  
--DLSUFFIX = .so
-+DLSUFFIX = .dylib
- CFLAGS_SL =
-+CFLAGS += -fno-common
- ifeq (,$(filter $(host_os), darwin1.0 darwin1.1 darwin1.2))
--DARWIN_NAMESPACE_SPEC = -flat_namespace
-+  MULTIPLY_DEFINED=
-+else
-+  MULTIPLY_DEFINED=-multiply_defined suppress
- endif
-  
- %.so: %.o
--      $(CC) $(DARWIN_NAMESPACE_SPEC) -bundle -undefined suppress -o $@ $<
-+      $(CC) -bundle $(MULTIPLY_DEFINED) -o $@ $<
-+%.dylib: %.o
-+      $(CC) -dynamiclib $(MULTIPLY_DEFINED) -o $@ $<
- 
- sqlmansect = 7
-diff -uNbr postgresql-7.3.1/src/pl/plperl/GNUmakefile 
postgresql-7.3.1-patched/src/pl/plperl/GNUmakefile
---- postgresql-7.3.1/src/pl/plperl/GNUmakefile Tue May 28 12:57:53 2002
-+++ postgresql-7.3.1-patched/src/pl/plperl/GNUmakefile Thu Jan  2 17:24:22 2003
-@@ -20,10 +20,10 @@
- 
- override CPPFLAGS := -I$(srcdir) -I$(perl_archlibexp)/CORE $(CPPFLAGS)
- 
--
- NAME = plperl
- SO_MAJOR_VERSION = 0
- SO_MINOR_VERSION = 0
-+DLTYPE = bundle
- 
- OBJS = plperl.o eloglvl.o SPI.o
- SHLIB_LINK = $(perl_embed_ldflags) $(BE_DLLLIBS)
-diff -uNbr postgresql-7.3.1/src/pl/plpgsql/src/Makefile 
postgresql-7.3.1-patched/src/pl/plpgsql/src/Makefile
---- postgresql-7.3.1/src/pl/plpgsql/src/Makefile       Fri Nov  1 17:52:34 2002
-+++ postgresql-7.3.1-patched/src/pl/plpgsql/src/Makefile       Thu Jan  2 14:31:13 
2003
-@@ -18,6 +18,7 @@
- NAME= plpgsql
- SO_MAJOR_VERSION= 1
- SO_MINOR_VERSION= 0
-+DLTYPE = bundle
- 
- override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
- SHLIB_LINK = $(BE_DLLLIBS)
-diff -uNbr postgresql-7.3.1/src/pl/plpython/Makefile 
postgresql-7.3.1-patched/src/pl/plpython/Makefile
---- postgresql-7.3.1/src/pl/plpython/Makefile  Thu Sep  5 14:28:46 2002
-+++ postgresql-7.3.1-patched/src/pl/plpython/Makefile  Thu Jan  2 14:33:37 2003
-@@ -22,6 +22,7 @@
- NAME = plpython
- SO_MAJOR_VERSION = 0
- SO_MINOR_VERSION = 0
-+DLTYPE = bundle
- OBJS = plpython.o
- 
- SHLIB_LINK = $(BE_DLLLIBS) $(python_libspec)
-diff -uNbr postgresql-7.3.1/src/pl/tcl/Makefile 
postgresql-7.3.1-patched/src/pl/tcl/Makefile
---- postgresql-7.3.1/src/pl/tcl/Makefile       Fri May 24 14:10:17 2002
-+++ postgresql-7.3.1-patched/src/pl/tcl/Makefile       Thu Jan  2 17:24:41 2003
-@@ -25,7 +25,6 @@
- endif
- endif
- 
--
- # The following attempts to figure out what libraries need to be
- # linked with pltcl.  The information comes from the tclConfig.sh
- # file, but it's mostly bogus.  This just might work.
-@@ -48,6 +47,7 @@
- NAME = pltcl
- SO_MAJOR_VERSION = 2
- SO_MINOR_VERSION = 0
-+DLTYPE = bundle
- OBJS = pltcl.o
- 
- include $(top_srcdir)/src/Makefile.shlib
+diff -uNbr postgresql-7.3.1/configure postgresql-7.3.1-patched/configure
 --- postgresql-7.3.1/configure Tue Dec 17 21:07:17 2002
-+++ postgresql-7.3.1-new/configure     Thu Jan  2 14:09:20 2003
++++ postgresql-7.3.1-patched/configure Tue Jan  7 10:39:58 2003
 @@ -8330,8 +8330,8 @@
  
  if test "$with_pam" = yes ; then
@@ -256,8 +89,26 @@
     { (exit 1); exit 1; }; }
  fi
  
+diff -uNbr postgresql-7.3.1/configure.in postgresql-7.3.1-patched/configure.in
+--- postgresql-7.3.1/configure.in      Tue Dec 17 21:07:20 2002
++++ postgresql-7.3.1-patched/configure.in      Tue Jan  7 10:39:58 2003
+@@ -724,7 +724,12 @@
+ fi
+ 
+ if test "$with_pam" = yes ; then
+-  AC_CHECK_HEADER([security/pam_appl.h], [], [AC_MSG_ERROR([header file 
+<security/pam_appl.h> is required for PAM])])
++  AC_CHECK_HEADERS([security/pam_appl.h], [], [
++    AC_CHECK_HEADERS([pam/pam_appl.h], [
++      AC_DEFINE([HAVE_PAM_PAM_APPL_H], 1, [Define if pam_appl.h is in pam/ instead 
+of security/])
++      ], [AC_MSG_ERROR([header file <security/pam_appl.h> or <pam/pam_appl.h> is 
+required for PAM])]
++    )
++  ])
+ fi
+ 
+ 
+diff -uNbr postgresql-7.3.1/src/Makefile.shlib 
+postgresql-7.3.1-patched/src/Makefile.shlib
 --- postgresql-7.3.1/src/Makefile.shlib        Wed Oct  9 12:21:54 2002
-+++ postgresql-7.3.1-patched/src/Makefile.shlib        Thu Jan  2 22:23:10 2003
++++ postgresql-7.3.1-patched/src/Makefile.shlib        Tue Jan  7 10:39:58 2003
 @@ -81,8 +81,23 @@
  endif
  
@@ -374,55 +225,80 @@
  ifdef EXPSUFF
        rm -f lib$(NAME)$(EXPSUFF)
  endif
-diff -uNbr postgresql-7.3.1/src/backend/utils/misc/guc.c 
postgresql-7.3.1-new/src/backend/utils/misc/guc.c
---- postgresql-7.3.1/src/backend/utils/misc/guc.c       Mon Dec  2 00:21:02 2002
-+++ postgresql-7.3.1-new/src/backend/utils/misc/guc.c   Mon Dec 30 23:27:58 2002
+diff -uNbr postgresql-7.3.1/src/backend/libpq/auth.c 
+postgresql-7.3.1-patched/src/backend/libpq/auth.c
+--- postgresql-7.3.1/src/backend/libpq/auth.c  Wed Sep  4 19:31:34 2002
++++ postgresql-7.3.1-patched/src/backend/libpq/auth.c  Tue Jan  7 10:39:58 2003
+@@ -42,7 +42,12 @@
+ char     *pg_krb_server_keyfile;
+ 
+ #ifdef USE_PAM
++
++#ifdef HAVE_PAM_PAM_APPL_H
++#include <pam/pam_appl.h>
++#else
+ #include <security/pam_appl.h>
++#endif
+ 
+ #define PGSQL_PAM_SERVICE "postgresql"        /* Service name passed to PAM */
+ 
+diff -uNbr postgresql-7.3.1/src/backend/utils/mb/conversion_procs/proc.mk 
+postgresql-7.3.1-patched/src/backend/utils/mb/conversion_procs/proc.mk
+--- postgresql-7.3.1/src/backend/utils/mb/conversion_procs/proc.mk     Thu Sep  5 
+14:28:46 2002
++++ postgresql-7.3.1-patched/src/backend/utils/mb/conversion_procs/proc.mk     Tue 
+Jan  7 10:39:58 2003
+@@ -1,6 +1,7 @@
+ SRCS          += $(NAME).c
+ OBJS          += $(NAME).o
+ 
++DLTYPE                = bundle
+ SHLIB_LINK    := $(BE_DLLLIBS)
+ 
+ SO_MAJOR_VERSION := 0
+diff -uNbr postgresql-7.3.1/src/backend/utils/misc/guc.c 
+postgresql-7.3.1-patched/src/backend/utils/misc/guc.c
+--- postgresql-7.3.1/src/backend/utils/misc/guc.c      Mon Dec  2 00:21:02 2002
++++ postgresql-7.3.1-patched/src/backend/utils/misc/guc.c      Tue Jan  7 10:41:07 
+2003
 @@ -834,12 +834,12 @@
-
-        {
-                {"unix_socket_group", PGC_POSTMASTER}, &Unix_socket_group,
--               "", NULL, NULL
-+               "pgsql", NULL, NULL
-        },
-
-        {
-                {"unix_socket_directory", PGC_POSTMASTER}, &UnixSocketDir,
--               "", NULL, NULL
-+               "/tmp", NULL, NULL
-        },
-
-        {
-diff -uNbr postgresql-7.3.1/src/backend/utils/misc/postgresql.conf.sample 
postgresql-7.3.1-new/src/backend/utils/misc/postgre
-sql.conf.sample
---- postgresql-7.3.1/src/backend/utils/misc/postgresql.conf.sample      Mon Sep  2 
01:42:54 2002
-+++ postgresql-7.3.1-new/src/backend/utils/misc/postgresql.conf.sample  Mon Dec 30 
23:27:58 2002
-@@ -27,18 +27,18 @@
+ 
+       {
+               {"unix_socket_group", PGC_POSTMASTER}, &Unix_socket_group,
+-              "", NULL, NULL
++              "pgsql", NULL, NULL
+       },
+ 
+       {
+               {"unix_socket_directory", PGC_POSTMASTER}, &UnixSocketDir,
+-              "", NULL, NULL
++              "/tmp", NULL, NULL
+       },
+ 
+       {
+diff -uNbr postgresql-7.3.1/src/backend/utils/misc/postgresql.conf.sample 
+postgresql-7.3.1-patched/src/backend/utils/misc/postgresql.conf.sample
+--- postgresql-7.3.1/src/backend/utils/misc/postgresql.conf.sample     Mon Sep  2 
+01:42:54 2002
++++ postgresql-7.3.1-patched/src/backend/utils/misc/postgresql.conf.sample     Tue 
+Jan  7 10:42:15 2003
+@@ -27,10 +27,10 @@
  #
- #      Connection Parameters
+ #     Connection Parameters
  #
 -#tcpip_socket = false
 -#ssl = false
 +tcpip_socket = true
 +ssl = false
-
+ 
 -#max_connections = 32
-+max_connections = 32
++max_connections = 256
  #superuser_reserved_connections = 2
-
- #port = 5432
- #hostname_lookup = false
- #show_source_port = false
-
--#unix_socket_directory = ''
--#unix_socket_group = ''
-+unix_socket_directory = '/tmp'
-+unix_socket_group = 'pgsql'
- #unix_socket_permissions = 0777        # octal
-
- #virtual_host = ''
-diff -uNbr postgresql-7.3.1/src/bin/initdb/initdb.sh 
postgresql-7.3.1-new/src/bin/initdb/initdb.sh
---- postgresql-7.3.1/src/bin/initdb/initdb.sh   Mon Nov 25 16:42:11 2002
-+++ postgresql-7.3.1-new/src/bin/initdb/initdb.sh       Mon Dec 30 23:27:58 2002
+ 
+ #port = 5432 
+@@ -49,7 +49,7 @@
+ #
+ #     Shared Memory Size
+ #
+-#shared_buffers = 64          # 2*max_connections, min 16, typically 8KB each
++shared_buffers = 512          # 2*max_connections, min 16, typically 8KB each
+ #max_fsm_relations = 100      # min 10, fsm is free space map, ~40 bytes
+ #max_fsm_pages = 10000                # min 1000, fsm is free space map, ~6 bytes
+ #max_locks_per_transaction = 64       # min 10
+diff -uNbr postgresql-7.3.1/src/bin/initdb/initdb.sh 
+postgresql-7.3.1-patched/src/bin/initdb/initdb.sh
+--- postgresql-7.3.1/src/bin/initdb/initdb.sh  Mon Nov 25 16:42:11 2002
++++ postgresql-7.3.1-patched/src/bin/initdb/initdb.sh  Tue Jan  7 10:39:58 2003
 @@ -1091,11 +1091,8 @@
  echo
  echo "Success. You can now start the database server using:"
@@ -436,15 +312,15 @@
 +echo "    sudo -u root sudo -u pgsql $PGPATH/pg_ctl \\"
 +echo "        -D $PGDATA -l /sw/var/log/postgresql/logfile start"
 +echo ""
-
+ 
  exit 0
-diff -uNbr postgresql-7.3.1/src/bin/pg_ctl/pg_ctl.sh 
postgresql-7.3.1-new/src/bin/pg_ctl/pg_ctl.sh
---- postgresql-7.3.1/src/bin/pg_ctl/pg_ctl.sh   Fri Oct 18 18:05:35 2002
-+++ postgresql-7.3.1-new/src/bin/pg_ctl/pg_ctl.sh       Mon Dec 30 23:27:58 2002
+diff -uNbr postgresql-7.3.1/src/bin/pg_ctl/pg_ctl.sh 
+postgresql-7.3.1-patched/src/bin/pg_ctl/pg_ctl.sh
+--- postgresql-7.3.1/src/bin/pg_ctl/pg_ctl.sh  Fri Oct 18 18:05:35 2002
++++ postgresql-7.3.1-patched/src/bin/pg_ctl/pg_ctl.sh  Tue Jan  7 10:39:58 2003
 @@ -14,6 +14,10 @@
-
+ 
  CMDNAME=`basename $0`
-
+ 
 +ulimit -d 24000 >/dev/null 2>&1
 +ulimit -n 512   >/dev/null 2>&1
 +ulimit -s 4096  >/dev/null 2>&1
@@ -452,3 +328,127 @@
  help="\
  $CMDNAME is a utility to start, stop, restart, reload configuration files,
  or report the status of a PostgreSQL server.
+diff -uNbr postgresql-7.3.1/src/include/pg_config.h.in 
+postgresql-7.3.1-patched/src/include/pg_config.h.in
+--- postgresql-7.3.1/src/include/pg_config.h.in        Fri Nov  8 00:23:09 2002
++++ postgresql-7.3.1-patched/src/include/pg_config.h.in        Tue Jan  7 10:39:58 
+2003
+@@ -57,6 +57,9 @@
+ /* Define to build with PAM Support */
+ #undef USE_PAM
+ 
++/* Define if pam_appl.h is in pam/ instead of security/ */
++#undef HAVE_PAM_PAM_APPL_H
++
+ /* 
+  * DEF_PGPORT is the TCP port number on which the Postmaster listens and
+  * which clients will try to connect to.  This is just a default value;
+diff -uNbr postgresql-7.3.1/src/interfaces/libpgtcl/Makefile 
+postgresql-7.3.1-patched/src/interfaces/libpgtcl/Makefile
+--- postgresql-7.3.1/src/interfaces/libpgtcl/Makefile  Tue Dec 10 23:08:05 2002
++++ postgresql-7.3.1-patched/src/interfaces/libpgtcl/Makefile  Tue Jan  7 10:39:58 
+2003
+@@ -20,7 +20,7 @@
+ 
+ OBJS= pgtcl.o pgtclCmds.o pgtclId.o
+ 
+-SHLIB_LINK = $(libpq)
++SHLIB_LINK = $(libpq) $(TCL_LIB_SPEC)
+ 
+ # If crypt is a separate library, rather than part of libc, it may need
+ # to be referenced separately to keep (broken) linkers happy.  (This is
+diff -uNbr postgresql-7.3.1/src/interfaces/python/GNUmakefile 
+postgresql-7.3.1-patched/src/interfaces/python/GNUmakefile
+--- postgresql-7.3.1/src/interfaces/python/GNUmakefile Thu Dec 13 13:39:04 2001
++++ postgresql-7.3.1-patched/src/interfaces/python/GNUmakefile Tue Jan  7 10:39:58 
+2003
+@@ -13,10 +13,13 @@
+ override CPPFLAGS += -DUSE_DL_IMPORT
+ SHLIB_LINK += $(python_libspec)
+ endif
+-
++ifeq ($(PORTNAME), darwin)
++SHLIB_LINK += $(python_libspec)
++endif
+ 
+ include $(top_srcdir)/src/Makefile.shlib
+ 
++DLTYPE = bundle
+ override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) $(python_includespec)
+ 
+ all: all-lib
+diff -uNbr postgresql-7.3.1/src/makefiles/Makefile.darwin 
+postgresql-7.3.1-patched/src/makefiles/Makefile.darwin
+--- postgresql-7.3.1/src/makefiles/Makefile.darwin     Fri Oct  5 17:15:38 2001
++++ postgresql-7.3.1-patched/src/makefiles/Makefile.darwin     Tue Jan  7 10:39:58 
+2003
+@@ -1,13 +1,18 @@
+ AROPT = cr
+ AWK= awk
+  
+-DLSUFFIX = .so
++DLSUFFIX = .dylib
+ CFLAGS_SL =
++CFLAGS += -fno-common
+ ifeq (,$(filter $(host_os), darwin1.0 darwin1.1 darwin1.2))
+-DARWIN_NAMESPACE_SPEC = -flat_namespace
++  MULTIPLY_DEFINED=
++else
++  MULTIPLY_DEFINED=-multiply_defined suppress
+ endif
+  
+ %.so: %.o
+-      $(CC) $(DARWIN_NAMESPACE_SPEC) -bundle -undefined suppress -o $@ $<
++      $(CC) -bundle $(MULTIPLY_DEFINED) -o $@ $<
++%.dylib: %.o
++      $(CC) -dynamiclib $(MULTIPLY_DEFINED) -o $@ $<
+ 
+ sqlmansect = 7
+diff -uNbr postgresql-7.3.1/src/pl/plperl/GNUmakefile 
+postgresql-7.3.1-patched/src/pl/plperl/GNUmakefile
+--- postgresql-7.3.1/src/pl/plperl/GNUmakefile Tue May 28 12:57:53 2002
++++ postgresql-7.3.1-patched/src/pl/plperl/GNUmakefile Tue Jan  7 10:39:58 2003
+@@ -20,10 +20,10 @@
+ 
+ override CPPFLAGS := -I$(srcdir) -I$(perl_archlibexp)/CORE $(CPPFLAGS)
+ 
+-
+ NAME = plperl
+ SO_MAJOR_VERSION = 0
+ SO_MINOR_VERSION = 0
++DLTYPE = bundle
+ 
+ OBJS = plperl.o eloglvl.o SPI.o
+ SHLIB_LINK = $(perl_embed_ldflags) $(BE_DLLLIBS)
+diff -uNbr postgresql-7.3.1/src/pl/plpgsql/src/Makefile 
+postgresql-7.3.1-patched/src/pl/plpgsql/src/Makefile
+--- postgresql-7.3.1/src/pl/plpgsql/src/Makefile       Fri Nov  1 17:52:34 2002
++++ postgresql-7.3.1-patched/src/pl/plpgsql/src/Makefile       Tue Jan  7 10:39:58 
+2003
+@@ -18,6 +18,7 @@
+ NAME= plpgsql
+ SO_MAJOR_VERSION= 1
+ SO_MINOR_VERSION= 0
++DLTYPE = bundle
+ 
+ override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
+ SHLIB_LINK = $(BE_DLLLIBS)
+diff -uNbr postgresql-7.3.1/src/pl/plpython/Makefile 
+postgresql-7.3.1-patched/src/pl/plpython/Makefile
+--- postgresql-7.3.1/src/pl/plpython/Makefile  Thu Sep  5 14:28:46 2002
++++ postgresql-7.3.1-patched/src/pl/plpython/Makefile  Tue Jan  7 10:39:58 2003
+@@ -22,6 +22,7 @@
+ NAME = plpython
+ SO_MAJOR_VERSION = 0
+ SO_MINOR_VERSION = 0
++DLTYPE = bundle
+ OBJS = plpython.o
+ 
+ SHLIB_LINK = $(BE_DLLLIBS) $(python_libspec)
+diff -uNbr postgresql-7.3.1/src/pl/tcl/Makefile 
+postgresql-7.3.1-patched/src/pl/tcl/Makefile
+--- postgresql-7.3.1/src/pl/tcl/Makefile       Fri May 24 14:10:17 2002
++++ postgresql-7.3.1-patched/src/pl/tcl/Makefile       Tue Jan  7 10:39:58 2003
+@@ -25,7 +25,6 @@
+ endif
+ endif
+ 
+-
+ # The following attempts to figure out what libraries need to be
+ # linked with pltcl.  The information comes from the tclConfig.sh
+ # file, but it's mostly bogus.  This just might work.
+@@ -48,6 +47,7 @@
+ NAME = pltcl
+ SO_MAJOR_VERSION = 2
+ SO_MINOR_VERSION = 0
++DLTYPE = bundle
+ OBJS = pltcl.o
+ 
+ include $(top_srcdir)/src/Makefile.shlib



-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to