diff options
author | adam <adam@pkgsrc.org> | 2017-05-24 19:51:12 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2017-05-24 19:51:12 +0000 |
commit | b2d60f07f0ec702d57d91bf6c62c4452471e05d5 (patch) | |
tree | 921ad08cd89d428aab488b7843ec64f8e846d805 /databases/postgresql91 | |
parent | d54324f151a20d71164aac065ea07e3efc9127b5 (diff) | |
download | pkgsrc-b2d60f07f0ec702d57d91bf6c62c4452471e05d5.tar.gz |
Removed databases/postgresql91
Diffstat (limited to 'databases/postgresql91')
19 files changed, 0 insertions, 470 deletions
diff --git a/databases/postgresql91/DESCR b/databases/postgresql91/DESCR deleted file mode 100644 index 9f6b5b5b0f9..00000000000 --- a/databases/postgresql91/DESCR +++ /dev/null @@ -1,9 +0,0 @@ -PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), -derived from the Berkeley Postgres database management system. While -PostgreSQL retains the powerful object-relational data model, rich data types -and easy extensibility of Postgres, it replaces the PostQuel query language -with an extended subset of SQL. - -PostgreSQL is free and the complete source is available. - -This is the meta-package for the PostgreSQL database system. diff --git a/databases/postgresql91/Makefile b/databases/postgresql91/Makefile deleted file mode 100644 index 05ddc6d0d01..00000000000 --- a/databases/postgresql91/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -# $NetBSD: Makefile,v 1.15 2016/08/23 06:28:15 adam Exp $ - -PKGNAME= ${DISTNAME:C/-/91-/} -COMMENT= Robust, next generation, object-relational DBMS - -DEPENDS+= postgresql91-client>=${PKGVERSION_NOREV}:../../databases/postgresql91-client -DEPENDS+= postgresql91-docs>=${PKGVERSION_NOREV}:../../databases/postgresql91-docs -DEPENDS+= postgresql91-server>=${PKGVERSION_NOREV}:../../databases/postgresql91-server - -META_PACKAGE= yes - -.include "Makefile.common" - -.include "../../mk/bsd.pkg.mk" diff --git a/databases/postgresql91/Makefile.common b/databases/postgresql91/Makefile.common deleted file mode 100644 index e116edc248d..00000000000 --- a/databases/postgresql91/Makefile.common +++ /dev/null @@ -1,124 +0,0 @@ -# $NetBSD: Makefile.common,v 1.35 2016/10/29 19:41:53 adam Exp $ -# -# This Makefile fragment is included by all PostgreSQL packages built from -# the main sources of the PostgreSQL distribution except jdbc-postgresql. -# -# The PostgreSQL package naming scheme, aside from the obvious piecewise -# packages, is as follows: -# <lang>-postgresql client-side interface to PostgreSQL -# postgresql-<lang> server-side module for PostgreSQL backend -# -# used by databases/postgresql91-client/Makefile -# used by databases/postgresql91-contrib/Makefile -# used by databases/postgresql91-docs/Makefile -# used by databases/postgresql91-plperl/Makefile -# used by databases/postgresql91-plpython/Makefile -# used by databases/postgresql91-pltcl/Makefile -# used by databases/postgresql91-server/Makefile - -DISTNAME= postgresql-9.1.24 -CATEGORIES= databases -MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/} -EXTRACT_SUFX= .tar.bz2 - -MAINTAINER?= adam@NetBSD.org -HOMEPAGE= http://www.postgresql.org/ -LICENSE= postgresql-license - -CONFLICTS+= postgresql-[0-9]* -CONFLICTS+= postgresql[0-8][0-9]-[0-9]* -CONFLICTS+= postgresql9[02-9]-[0-9]* - -.if !empty(PKGNAME:M*-*-*) -module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//} -CONFLICTS+= postgresql[0-8][0-9]-${module}-[0-9]* -CONFLICTS+= postgresql9[02-9]-${module}-[0-9]* -.endif - -DISTINFO_FILE?= ${.CURDIR}/../../databases/postgresql91/distinfo -COMMON_FILESDIR?= ${.CURDIR}/../../databases/postgresql91/files -PATCHDIR?= ${.CURDIR}/../../databases/postgresql91/patches - -USE_GCC_RUNTIME= yes -USE_PKGLOCALEDIR= yes -USE_TOOLS+= bison gmake lex msgfmt -PKG_SYSCONFSUBDIR= postgresql - -.include "../../mk/bsd.prefs.mk" - -PG_TEMPLATE.SunOS= solaris -PG_TEMPLATE.IRIX= irix5 -PG_TEMPLATE.MirBSD= openbsd -.if !defined(PG_TEMPLATE.${OPSYS}) -PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} -.endif - -PG_DATA_DIR= ${PREFIX}/share/postgresql -PG_DOC_DIR= ${PREFIX}/share/doc/postgresql -PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale -PG_ETC_DIR= ${PKG_SYSCONFDIR} - -GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR} -CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR} -CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR} -CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR} -CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}} - -CONFIGURE_ARGS+= --enable-nls -CONFIGURE_ARGS+= --without-perl -CONFIGURE_ARGS+= --without-python -CONFIGURE_ARGS+= --without-readline -CONFIGURE_ARGS+= --without-tcl -CONFIGURE_ARGS+= --without-zlib - -# sys/ucred.h shouldn't be included on Solaris, causes conflicts between -# procfs and largefile. -CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no - -# configure fails on OpenBSD and MirBSD if thread safety is enabled. -CONFIGURE_ARGS.MirBSD+= --disable-thread-safety -CONFIGURE_ARGS.OpenBSD+= --disable-thread-safety - -# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block. -# This also limits the size of a tuple. The valid values are powers -# of 2 up to 32768, and the default size is 8196. Please don't change -# this value unless you know what you are doing. -BUILD_DEFS+= PGSQL_BLCKSZ -.if defined(PGSQL_BLCKSZ) -CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ} -.endif - -# PostgreSQL explicitly forbids any use of -ffast-math -BUILDLINK_TRANSFORM+= rm:-ffast-math - -# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl -# to provide "dlopen" functionality for the PostgreSQL backend. -.if ${OPSYS} == "Interix" -USE_LIBLTDL?= yes -.endif -USE_LIBLTDL?= no - -.include "../../devel/gettext-lib/buildlink3.mk" -LIBS.SunOS+= -lintl - -.if !defined(META_PACKAGE) -post-extract: -. if !empty(USE_LIBLTDL:M[yY][eE][sS]) - cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \ - ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h - ${ECHO} "static int dummy = 0;" \ - > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c -. endif - touch ${WRKSRC}/src/template/dragonfly - cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \ - ${WRKSRC}/src/backend/port/dynloader/dragonfly.c - cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \ - ${WRKSRC}/src/backend/port/dynloader/dragonfly.h - cp ${WRKSRC}/src/include/port/freebsd.h \ - ${WRKSRC}/src/include/port/dragonfly.h - cp ${WRKSRC}/src/makefiles/Makefile.freebsd \ - ${WRKSRC}/src/makefiles/Makefile.dragonfly -.endif - -.include "../../databases/postgresql91/options.mk" diff --git a/databases/postgresql91/PLIST b/databases/postgresql91/PLIST deleted file mode 100644 index 6e3b260bf00..00000000000 --- a/databases/postgresql91/PLIST +++ /dev/null @@ -1,2 +0,0 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2011/09/15 08:27:39 adam Exp $ -@comment this plist intentionally left empty diff --git a/databases/postgresql91/distinfo b/databases/postgresql91/distinfo deleted file mode 100644 index 2eacbf92996..00000000000 --- a/databases/postgresql91/distinfo +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: distinfo,v 1.31 2016/10/29 19:41:53 adam Exp $ - -SHA1 (postgresql-9.1.24.tar.bz2) = 213c4ea5552e516f03c74d163085c233b0d5d9fa -RMD160 (postgresql-9.1.24.tar.bz2) = 9531c8d01bc8012bac09d9e698d062b2374b164b -SHA512 (postgresql-9.1.24.tar.bz2) = a9ad0d62846598afee317eeda83406b5f85a658bfe7eb78aff6c59c904223dd165adbd5870598b74aa0e012878489f0c285e6ac7b07ebddf3cf8d81ba70bea7e -Size (postgresql-9.1.24.tar.bz2) = 15863767 bytes -SHA1 (patch-config_perl.m4) = c7e5aaff1c47d2e33df7692a412ef984c77ffcc0 -SHA1 (patch-configure) = dab79533dac06a79a5aa8439d6b15830d8d2fba7 -SHA1 (patch-contrib_dblink_Makefile) = 4960ad57d42465fae203870548e4c53f8a32ce04 -SHA1 (patch-contrib_dblink_dblink.c) = 4d7c40d107d4c13c63ef2908d9a02be319863657 -SHA1 (patch-src_Makefile.shlib) = 2370e3c4260ba7f947b0c15b9bdc43e4820e01a4 -SHA1 (patch-src_backend_Makefile) = 76ddd3015d93b19cdd6000eaffc4f53cbd4965b5 -SHA1 (patch-src_backend_utils_adt_datetime.c) = 9d3c6c23b5af92c17ea643ed986b5648f3381cb4 -SHA1 (patch-src_interfaces_ecpg_pgtypeslib_interval.c) = 1d3760f2d170837a395cfacffaa08373ea54ba53 -SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0 -SHA1 (patch-src_pl_plperl_GNUmakefile) = 2b7448d6dd8550e2ea61f40728a2780068b93d07 -SHA1 (patch-src_pl_plperl_plperl.h) = bd663fa80a47f7b82ce689060750fa6e631fbc61 diff --git a/databases/postgresql91/files/GNUmakefile.libpq b/databases/postgresql91/files/GNUmakefile.libpq deleted file mode 100644 index be6504adaf4..00000000000 --- a/databases/postgresql91/files/GNUmakefile.libpq +++ /dev/null @@ -1,20 +0,0 @@ -# $NetBSD: GNUmakefile.libpq,v 1.1.1.1 2011/09/15 08:27:39 adam Exp $ -# -# This GNUmakefile overrides the `all' target of $(libpq_srcdir)/Makefile -# to be empty if INSTALLED_LIBPQ is defined. This handles the submake -# targets sprinkled throughout the PostgreSQL Makefiles that execute -# -# @$(MAKE) -C $(libpq_builddir) all -# -# to ensure that the libpq libraries are built first. If INSTALLED_LIBPQ -# is defined, then have the `all' target simple return success. - -ifdef INSTALLED_LIBPQ -all: - @test -f libpq.a || touch libpq.a -endif - -%: force - @$(MAKE) -f Makefile $@ - -force: ; diff --git a/databases/postgresql91/files/dynloader-ltdl.h b/databases/postgresql91/files/dynloader-ltdl.h deleted file mode 100644 index 8a0ea5002df..00000000000 --- a/databases/postgresql91/files/dynloader-ltdl.h +++ /dev/null @@ -1,17 +0,0 @@ -/* $NetBSD: dynloader-ltdl.h,v 1.1.1.1 2011/09/15 08:27:39 adam Exp $ */ - -/* - * dynamic loader based on libltdl - */ -#ifndef PORT_PROTOS_H -#define PORT_PROTOS_H - -#include <ltdl.h> -#include "utils/dynamic_loader.h" - -#define pg_dlopen(a) ((void *)lt_dlopen(a)) -#define pg_dlsym(a,b) lt_dlsym((lt_dlhandle)(a), (b)) -#define pg_dlclose(a) lt_dlclose((lt_dlhandle)(a)) -#define pg_dlerror lt_dlerror - -#endif /* PORT_PROTOS_H */ diff --git a/databases/postgresql91/options.mk b/databases/postgresql91/options.mk deleted file mode 100644 index bcf03b80fa7..00000000000 --- a/databases/postgresql91/options.mk +++ /dev/null @@ -1,63 +0,0 @@ -# $NetBSD: options.mk,v 1.2 2012/03/14 13:23:50 fhajny Exp $ - -PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql91 -PKG_SUPPORTED_OPTIONS= bonjour gssapi kerberos ldap pam xml dtrace - -.include "../../mk/bsd.options.mk" - -### -### Bonjour support. -### -.if !empty(PKG_OPTIONS:Mbonjour) -CONFIGURE_ARGS+= --with-bonjour -. if ${OPSYS} != "Darwin" -LIBS+= -ldns_sd -. endif -. include "../../net/mDNSResponder/buildlink3.mk" -.endif - -### -### GSSAPI authentication for the PostgreSQL backend. -### -.if !empty(PKG_OPTIONS:Mgssapi) -CONFIGURE_ARGS+= --with-gssapi -.endif - -### -### Kerberos5 authentication for the PostgreSQL backend. -### -.if !empty(PKG_OPTIONS:Mkerberos) -. include "../../mk/krb5.buildlink3.mk" -CONFIGURE_ARGS+= --with-krb5 -.endif - -### -### LDAP authentication for the PostgreSQL backend. -### -.if !empty(PKG_OPTIONS:Mldap) -. include "../../databases/openldap-client/buildlink3.mk" -CONFIGURE_ARGS+= --with-ldap -.endif - -### -### PAM authentication for the PostgreSQL backend. -### -.if !empty(PKG_OPTIONS:Mpam) -. include "../../mk/pam.buildlink3.mk" -CONFIGURE_ARGS+= --with-pam -.endif - -### -### XML support for the PostgreSQL backend. -### -.if !empty(PKG_OPTIONS:Mxml) -. include "../../textproc/libxml2/buildlink3.mk" -CONFIGURE_ARGS+= --with-libxml -.endif - -### -### Dtrace support -### -.if !empty(PKG_OPTIONS:Mdtrace) -CONFIGURE_ARGS+= --enable-dtrace -.endif diff --git a/databases/postgresql91/patches/patch-config_perl.m4 b/databases/postgresql91/patches/patch-config_perl.m4 deleted file mode 100644 index 08b82f94132..00000000000 --- a/databases/postgresql91/patches/patch-config_perl.m4 +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-config_perl.m4,v 1.1.1.1 2011/09/15 08:27:39 adam Exp $ - ---- config/perl.m4.orig 2010-02-23 18:35:06.000000000 +0000 -+++ config/perl.m4 -@@ -57,9 +57,7 @@ AC_DEFUN([PGAC_CHECK_PERL_CONFIGS], - AC_DEFUN([PGAC_CHECK_PERL_EMBED_LDFLAGS], - [AC_REQUIRE([PGAC_PATH_PERL]) - AC_MSG_CHECKING(for flags to link embedded Perl) --pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts` --pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'` --perl_embed_ldflags=`echo X"$pgac_tmp1" | sed -e "s/^X//" -e "s%$pgac_tmp2%%" -e ["s/ -arch [-a-zA-Z0-9_]*//g"]` -+perl_embed_ldflags=`$PERL -MExtUtils::Embed -e ldopts` - AC_SUBST(perl_embed_ldflags)dnl - if test -z "$perl_embed_ldflags" ; then - AC_MSG_RESULT(no) diff --git a/databases/postgresql91/patches/patch-configure b/databases/postgresql91/patches/patch-configure deleted file mode 100644 index 6041d94d29a..00000000000 --- a/databases/postgresql91/patches/patch-configure +++ /dev/null @@ -1,23 +0,0 @@ -$NetBSD: patch-configure,v 1.1.1.1 2011/09/15 08:27:39 adam Exp $ - ---- configure.orig 2011-06-09 23:40:42.000000000 +0000 -+++ configure -@@ -2196,6 +2196,7 @@ case $host_os in - dragonfly*) template=netbsd ;; - dgux*) template=dgux ;; - freebsd*) template=freebsd ;; -+ dragonfly*) template=dragonfly ;; - hpux*) template=hpux ;; - irix*) template=irix ;; - linux*|gnu*|k*bsd*-gnu) -@@ -7157,9 +7158,7 @@ $as_echo "$perl_useshrplib" >&6; } - - { $as_echo "$as_me:$LINENO: checking for flags to link embedded Perl" >&5 - $as_echo_n "checking for flags to link embedded Perl... " >&6; } --pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts` --pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'` --perl_embed_ldflags=`echo X"$pgac_tmp1" | sed -e "s/^X//" -e "s%$pgac_tmp2%%" -e "s/ -arch [-a-zA-Z0-9_]*//g"` -+perl_embed_ldflags=`$PERL -MExtUtils::Embed -e ldopts` - if test -z "$perl_embed_ldflags" ; then - { $as_echo "$as_me:$LINENO: result: no" >&5 - $as_echo "no" >&6; } diff --git a/databases/postgresql91/patches/patch-contrib_dblink_Makefile b/databases/postgresql91/patches/patch-contrib_dblink_Makefile deleted file mode 100644 index b20d4c0dc9b..00000000000 --- a/databases/postgresql91/patches/patch-contrib_dblink_Makefile +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-contrib_dblink_Makefile,v 1.1.1.1 2011/09/15 08:27:39 adam Exp $ - ---- contrib/dblink/Makefile.orig 2011-09-15 06:35:28.000000000 +0000 -+++ contrib/dblink/Makefile -@@ -4,7 +4,6 @@ MODULE_big = dblink - OBJS = dblink.o - PG_CPPFLAGS = -I$(libpq_srcdir) - SHLIB_LINK = $(libpq) --SHLIB_PREREQS = submake-libpq - - EXTENSION = dblink - DATA = dblink--1.0.sql dblink--unpackaged--1.0.sql diff --git a/databases/postgresql91/patches/patch-contrib_dblink_dblink.c b/databases/postgresql91/patches/patch-contrib_dblink_dblink.c deleted file mode 100644 index 778be34520c..00000000000 --- a/databases/postgresql91/patches/patch-contrib_dblink_dblink.c +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-contrib_dblink_dblink.c,v 1.1.1.1 2011/09/15 08:27:39 adam Exp $ - ---- contrib/dblink/dblink.c.orig 2010-07-06 19:18:54.000000000 +0000 -+++ contrib/dblink/dblink.c -@@ -59,7 +59,7 @@ - #include "utils/array.h" - #include "utils/builtins.h" - #include "utils/dynahash.h" --#include "utils/fmgroids.h" -+#include "postgresql/server/utils/fmgroids.h" - #include "utils/hsearch.h" - #include "utils/lsyscache.h" - #include "utils/memutils.h" diff --git a/databases/postgresql91/patches/patch-src_Makefile.shlib b/databases/postgresql91/patches/patch-src_Makefile.shlib deleted file mode 100644 index e0e3532fab2..00000000000 --- a/databases/postgresql91/patches/patch-src_Makefile.shlib +++ /dev/null @@ -1,40 +0,0 @@ -$NetBSD: patch-src_Makefile.shlib,v 1.2 2012/07/16 21:17:12 asau Exp $ - ---- src/Makefile.shlib.orig 2012-05-31 23:07:09.000000000 +0000 -+++ src/Makefile.shlib -@@ -172,17 +172,11 @@ endif - - ifeq ($(PORTNAME), freebsd) - ifdef ELF_SYSTEM -- ifdef SO_MAJOR_VERSION -- shlib = lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION) -- endif - LINK.shared = $(COMPILER) -shared - ifdef soname - LINK.shared += -Wl,-x,-soname,$(soname) - endif - else -- ifdef SO_MAJOR_VERSION -- shlib = lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION) -- endif - LINK.shared = $(LD) -x -Bshareable -Bforcearchive - endif - endif -@@ -198,6 +192,17 @@ ifeq ($(PORTNAME), netbsd) - endif - endif - -+ifeq ($(PORTNAME), dragonfly) -+ ifdef ELF_SYSTEM -+ LINK.shared = $(COMPILER) -shared -+ ifdef soname -+ LINK.shared += -Wl,-x,-soname,$(soname) -+ endif -+ else -+ LINK.shared = $(LD) -x -Bshareable -Bforcearchive -+ endif -+endif -+ - ifeq ($(PORTNAME), hpux) - ifdef SO_MAJOR_VERSION - shlib = lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION) diff --git a/databases/postgresql91/patches/patch-src_backend_Makefile b/databases/postgresql91/patches/patch-src_backend_Makefile deleted file mode 100644 index 6aa393d9baa..00000000000 --- a/databases/postgresql91/patches/patch-src_backend_Makefile +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-src_backend_Makefile,v 1.1.1.1 2011/09/15 08:27:39 adam Exp $ - ---- src/backend/Makefile.orig 2010-07-05 18:54:37.000000000 +0000 -+++ src/backend/Makefile -@@ -17,6 +17,10 @@ subdir = src/backend - top_builddir = ../.. - include $(top_builddir)/src/Makefile.global - -+CFLAGS+= $(DL_CFLAGS) -+LDFLAGS+= $(DL_LDFLAGS) -+LIBS+= $(DL_LIBS) -+ - SUBDIRS = access bootstrap catalog parser commands executor foreign lib libpq \ - main nodes optimizer port postmaster regex replication rewrite \ - storage tcop tsearch utils $(top_builddir)/src/timezone diff --git a/databases/postgresql91/patches/patch-src_backend_utils_adt_datetime.c b/databases/postgresql91/patches/patch-src_backend_utils_adt_datetime.c deleted file mode 100644 index 29654b886d4..00000000000 --- a/databases/postgresql91/patches/patch-src_backend_utils_adt_datetime.c +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-src_backend_utils_adt_datetime.c,v 1.1 2015/01/23 15:06:01 joerg Exp $ - ---- src/backend/utils/adt/datetime.c.orig 2014-07-21 19:14:13.000000000 +0000 -+++ src/backend/utils/adt/datetime.c -@@ -29,6 +29,9 @@ - #include "utils/memutils.h" - #include "utils/tzparser.h" - -+#if defined(__NetBSD__) -+#define strtoi pg_strtoi -+#endif - - static int DecodeNumber(int flen, char *field, bool haveTextMonth, - int fmask, int *tmask, diff --git a/databases/postgresql91/patches/patch-src_interfaces_ecpg_pgtypeslib_interval.c b/databases/postgresql91/patches/patch-src_interfaces_ecpg_pgtypeslib_interval.c deleted file mode 100644 index fe8fc1ea6e3..00000000000 --- a/databases/postgresql91/patches/patch-src_interfaces_ecpg_pgtypeslib_interval.c +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-src_interfaces_ecpg_pgtypeslib_interval.c,v 1.2 2016/05/23 14:27:34 adam Exp $ - ---- src/interfaces/ecpg/pgtypeslib/interval.c.orig 2016-05-23 13:15:10.000000000 +0000 -+++ src/interfaces/ecpg/pgtypeslib/interval.c -@@ -14,6 +14,10 @@ - #include "pgtypes_error.h" - #include "pgtypes_interval.h" - -+#if defined(__NetBSD__) -+#define strtoi pg_strtoi -+#endif -+ - /* copy&pasted from .../src/backend/utils/adt/datetime.c */ - static int - strtoint(const char *nptr, char **endptr, int base) diff --git a/databases/postgresql91/patches/patch-src_makefiles_Makefile.solaris b/databases/postgresql91/patches/patch-src_makefiles_Makefile.solaris deleted file mode 100644 index 4766ac86151..00000000000 --- a/databases/postgresql91/patches/patch-src_makefiles_Makefile.solaris +++ /dev/null @@ -1,10 +0,0 @@ -$NetBSD: patch-src_makefiles_Makefile.solaris,v 1.1 2011/10/12 19:45:57 hans Exp $ - ---- src/makefiles/Makefile.solaris.orig 2011-09-23 00:00:48.000000000 +0200 -+++ src/makefiles/Makefile.solaris 2011-10-11 11:53:51.948565783 +0200 -@@ -23,5 +23,3 @@ ifeq ($(GCC), yes) - else - $(CC) $(CFLAGS) $(LDFLAGS) $(LDFLAGS_SL) -G -o $@ $< - endif -- --sqlmansect = 5sql diff --git a/databases/postgresql91/patches/patch-src_pl_plperl_GNUmakefile b/databases/postgresql91/patches/patch-src_pl_plperl_GNUmakefile deleted file mode 100644 index 5e6cfe0b2aa..00000000000 --- a/databases/postgresql91/patches/patch-src_pl_plperl_GNUmakefile +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-src_pl_plperl_GNUmakefile,v 1.3 2012/03/03 14:01:12 adam Exp $ - ---- src/pl/plperl/GNUmakefile.orig 2012-02-23 22:53:36.000000000 +0000 -+++ src/pl/plperl/GNUmakefile -@@ -60,7 +60,6 @@ XSUBPPDIR = $(shell $(PERL) -e 'use List - - include $(top_srcdir)/src/Makefile.shlib - --plperl.o: perlchunks.h plperl_opmask.h plperl_helpers.h - - plperl_opmask.h: plperl_opmask.pl - @if [ x"$(perl_privlibexp)" = x"" ]; then echo "configure switch --with-perl was not specified."; exit 1; fi -@@ -70,7 +69,7 @@ perlchunks.h: $(PERLCHUNKS) - @if [ x"$(perl_privlibexp)" = x"" ]; then echo "configure switch --with-perl was not specified."; exit 1; fi - $(PERL) $(srcdir)/text2macro.pl --strip='^(\#.*|\s*)$$' $^ > $@ - --all: all-lib -+all: perlchunks.h plperl_opmask.h plperl_helpers.h all-lib - - SPI.c: SPI.xs plperl_helpers.h - @if [ x"$(perl_privlibexp)" = x"" ]; then echo "configure switch --with-perl was not specified."; exit 1; fi diff --git a/databases/postgresql91/patches/patch-src_pl_plperl_plperl.h b/databases/postgresql91/patches/patch-src_pl_plperl_plperl.h deleted file mode 100644 index 5bd88471937..00000000000 --- a/databases/postgresql91/patches/patch-src_pl_plperl_plperl.h +++ /dev/null @@ -1,26 +0,0 @@ -$NetBSD: patch-src_pl_plperl_plperl.h,v 1.1 2011/10/12 19:45:57 hans Exp $ - ---- src/pl/plperl/plperl.h.orig 2011-09-22 23:57:57.000000000 +0200 -+++ src/pl/plperl/plperl.h 2011-10-12 20:36:11.783264869 +0200 -@@ -44,12 +44,21 @@ - #undef vsnprintf - #endif - -+#ifdef __sun -+#define list_head sun_list_head -+#define list_tail sun_list_tail -+#endif - - /* required for perl API */ - #include "EXTERN.h" - #include "perl.h" - #include "XSUB.h" - -+#ifdef __sun -+#undef list_head -+#undef list_tail -+#endif -+ - /* put back our snprintf and vsnprintf */ - #ifdef USE_REPL_SNPRINTF - #ifdef snprintf |