diff options
author | adam <adam@pkgsrc.org> | 2011-02-15 09:06:31 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2011-02-15 09:06:31 +0000 |
commit | 57236b9520df2be99f31591b81196ca00b65c810 (patch) | |
tree | ab9b83b9ea5dd260a82b92867a595d5da1e7cbdd /databases/postgresql83/patches | |
parent | fa8fefd3a7cfd5af2173fe8a71ed6c37a0342b58 (diff) | |
download | pkgsrc-57236b9520df2be99f31591b81196ca00b65c810.tar.gz |
Changes 8.3.14:
* Avoid failures when "EXPLAIN" tries to display a simple-form CASE
expression.
* Fix assignment to an array slice that is before the existing range
of subscripts.
* Avoid unexpected conversion overflow in planner for very distant
date values.
* Fix pg_restore's text output for large objects (BLOBs) when
standard_conforming_strings is on.
* Fix erroneous parsing of tsquery values containing ... &
!(subexpression) | ...
* Fix buffer overrun in "contrib/intarray"'s input function for the
query_int type.
* Fix bug in "contrib/seg"'s GiST picksplit algorithm.
Diffstat (limited to 'databases/postgresql83/patches')
-rw-r--r-- | databases/postgresql83/patches/patch-aj | 66 | ||||
-rw-r--r-- | databases/postgresql83/patches/patch-an | 13 |
2 files changed, 0 insertions, 79 deletions
diff --git a/databases/postgresql83/patches/patch-aj b/databases/postgresql83/patches/patch-aj deleted file mode 100644 index e4f50e1cac8..00000000000 --- a/databases/postgresql83/patches/patch-aj +++ /dev/null @@ -1,66 +0,0 @@ -$NetBSD: patch-aj,v 1.2 2010/01/21 12:45:28 adam Exp $ - ---- src/makefiles/pgxs.mk 2010-01-21 12:58:01.000000000 +0100 -+++ src/makefiles/pgxs.mk.orig 2010-01-18 10:08:33.000000000 +0100 -@@ -121,9 +117,6 @@ - ifdef PROGRAM - $(INSTALL_PROGRAM) $(PROGRAM)$(X) '$(DESTDIR)$(bindir)' - endif # PROGRAM --ifdef MODULE_big -- $(INSTALL_SHLIB) $(shlib) '$(DESTDIR)$(pkglibdir)/$(MODULE_big)$(DLSUFFIX)' --endif # MODULE_big - ifdef SCRIPTS - @for file in $(addprefix $(srcdir)/, $(SCRIPTS)); do \ - echo "$(INSTALL_SCRIPT) $$file '$(DESTDIR)$(bindir)'"; \ -@@ -137,6 +130,10 @@ - done - endif # SCRIPTS_built - -+ifdef MODULE_big -+install: install-lib -+endif # MODULE_big -+ - - installdirs: - ifneq (,$(DATA)$(DATA_built)) -@@ -145,7 +142,7 @@ - ifneq (,$(DATA_TSEARCH)) - $(mkinstalldirs) '$(DESTDIR)$(datadir)/tsearch_data' - endif --ifneq (,$(MODULES)$(MODULE_big)) -+ifneq (,$(MODULES)) - $(mkinstalldirs) '$(DESTDIR)$(pkglibdir)' - endif - ifdef DOCS -@@ -157,6 +154,10 @@ - $(mkinstalldirs) '$(DESTDIR)$(bindir)' - endif - -+ifdef MODULE_big -+installdirs: installdirs-lib -+endif # MODULE_big -+ - - uninstall: - ifneq (,$(DATA)$(DATA_built)) -@@ -174,9 +175,6 @@ - ifdef PROGRAM - rm -f '$(DESTDIR)$(bindir)/$(PROGRAM)$(X)' - endif --ifdef MODULE_big -- rm -f '$(DESTDIR)$(pkglibdir)/$(MODULE_big)$(DLSUFFIX)' --endif - ifdef SCRIPTS - rm -f $(addprefix '$(DESTDIR)$(bindir)'/, $(SCRIPTS)) - endif -@@ -184,6 +182,10 @@ - rm -f $(addprefix '$(DESTDIR)$(bindir)'/, $(SCRIPTS_built)) - endif - -+ifdef MODULE_big -+uninstall: uninstall-lib -+endif # MODULE_big -+ - - clean: - ifdef MODULES diff --git a/databases/postgresql83/patches/patch-an b/databases/postgresql83/patches/patch-an deleted file mode 100644 index cdf24fcad1b..00000000000 --- a/databases/postgresql83/patches/patch-an +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-an,v 1.2 2010/12/19 09:53:53 adam Exp $ - ---- src/interfaces/ecpg/test/Makefile.regress.orig 2010-12-14 03:51:20.000000000 +0000 -+++ src/interfaces/ecpg/test/Makefile.regress -@@ -9,7 +9,7 @@ ECPG = ../../preproc/ecpg --regression - - - %: %.c - $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.o -- $(CC) $(CPPFLAGS) $(CFLAGS) $*.o $(LDFLAGS) $(LIBS) -o $@ -+ ${LIBTOOL} --mode=link $(CC) $(CPPFLAGS) $(CFLAGS) $*.o $(LDFLAGS) $(LIBS) -o $@ - - %.c: %.pgc ../regression.h - $(ECPG) -o $@ -I$(srcdir) $< |