summaryrefslogtreecommitdiffstats
path: root/src/postgresql-2-autoconf-min-version.patch
Commit message (Collapse)AuthorAgeFilesLines
* Revert "upgrade to postgresql 9.6.2"Mark Brand2017-02-161-0/+29
| | | | | | | The upgrade was merged automatically but unintentionally. It is not ready. This reverts commit e4fef6b0ef0fa08a02a02e42e6feef039c32afe2.
* upgrade to postgresql 9.6.2Mark Brand2017-02-121-29/+0
|
* Copyright headers: point to LICENSE.md and shortenBoris Nagaev2016-08-271-2/+1
| | | | | | | | | | | | | | | | | | | The following script was applied: sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE') sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \ $(git grep -l 'part of MXE.*See index.html') before='This file is part of MXE. See index.html for further information.' after='This file is part of MXE. See LICENSE.md for licensing information.' sed "s/$before/$after/" -i $(git grep -l 'part of MXE') Then git grep 'index.html for further information' revealed two other files. One of them was patched manually (patch.mk). Makefile has text "See index.html for further information" unrelated to licensing. See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
* postgresql: require/hint minimum autoconf version 2.63Avi Halachmi (:avih)2015-04-291-0/+30
the original configure.in warns if autoconf version is less than 2.63, but patch 1 removes this warning. this patch adds that requirement using AC_PREREQ on debian systems where both old/new versions of autoconf are installed, a script is used to determine which version to use. adding AC_PREREQ to configure.in helps the script choose the correct version. the system should already have such version since MXE itself requires 2.67