summaryrefslogtreecommitdiffstats
path: root/src/postgresql.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/postgresql.mk')
-rw-r--r--src/postgresql.mk22
1 files changed, 8 insertions, 14 deletions
diff --git a/src/postgresql.mk b/src/postgresql.mk
index 248088e..364deb2 100644
--- a/src/postgresql.mk
+++ b/src/postgresql.mk
@@ -4,13 +4,12 @@
# PostgreSQL
PKG := postgresql
$(PKG)_IGNORE :=
-$(PKG)_VERSION := 9.0.4
-$(PKG)_CHECKSUM := 5c4ebc2abbbc63ce2973974a7d020e7d14a01e73
+$(PKG)_VERSION := 9.1.2
+$(PKG)_CHECKSUM := 7d57b96eb1c764ec234c72b70511a5f7e23fb2b0
$(PKG)_SUBDIR := postgresql-$($(PKG)_VERSION)
$(PKG)_FILE := postgresql-$($(PKG)_VERSION).tar.bz2
$(PKG)_WEBSITE := http://www.postgresql.org/
-$(PKG)_URL := http://ftp2.nl.postgresql.org/source/v$($(PKG)_VERSION)/$($(PKG)_FILE)
-$(PKG)_URL_2 := http://ftp10.us.postgresql.org/postgresql/source/v$($(PKG)_VERSION)/$($(PKG)_FILE)
+$(PKG)_URL := http://ftp.postgresql.org/pub/source/v$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_DEPS := gcc zlib openssl
define $(PKG)_UPDATE
@@ -18,18 +17,13 @@ define $(PKG)_UPDATE
grep 'refs/tags/REL9[0-9_]*"' | \
$(SED) 's,.*refs/tags/REL\(.*\)".*,\1,g;' | \
$(SED) 's,_,.,g' | \
+ grep -v '^9\.\0' | \
head -1
endef
define $(PKG)_BUILD
+ cd '$(1)' && autoconf
cp -Rp '$(1)' '$(1).native'
- # The static OpenSSL libraries are in unix (not win32) naming style.
- $(SED) -i 's,SSLEAY32,SSL,' '$(1)'/configure
- $(SED) -i 's,ssleay32,ssl,' '$(1)'/configure
- $(SED) -i 's,EAY32,CRYPTO,' '$(1)'/configure
- $(SED) -i 's,eay32,crypto,' '$(1)'/configure
- $(SED) -i 's,ssleay32,ssl,' '$(1)'/src/interfaces/libpq/Makefile
- $(SED) -i 's,eay32,crypto,' '$(1)'/src/interfaces/libpq/Makefile
# Since we build only client libary, use bogus tzdata to satisfy configure.
cd '$(1)' && ./configure \
--prefix='$(PREFIX)/$(TARGET)' \
@@ -51,7 +45,7 @@ define $(PKG)_BUILD
--without-libxslt \
--with-zlib \
--with-system-tzdata=/dev/null \
- LIBS='-lsecur32 -lws2_32 -lgdi32'
+ LIBS="-lsecur32 `'$(TARGET)-pkg-config' openssl --libs`"
$(MAKE) -C '$(1)'/src/interfaces/libpq -j '$(JOBS)' install haslibarule= shlib=
$(MAKE) -C '$(1)'/src/port -j '$(JOBS)' haslibarule= shlib=
$(MAKE) -C '$(1)'/src/bin/psql -j '$(JOBS)' install haslibarule= shlib=
@@ -79,6 +73,6 @@ define $(PKG)_BUILD
--without-zlib \
--with-system-tzdata=/dev/null
$(MAKE) -C '$(1).native'/src/port -j '$(JOBS)'
- $(MAKE) -C '$(1).native'/src/bin/pg_config -j '$(JOBS)'
- $(INSTALL) -m755 '$(1).native'/src/bin/pg_config/pg_config '$(PREFIX)/bin/$(TARGET)-pg_config'
+ $(MAKE) -C '$(1).native'/src/bin/pg_config -j '$(JOBS)' install
+ ln -sf '$(PREFIX)/$(TARGET)/bin/pg_config' '$(PREFIX)/bin/$(TARGET)-pg_config'
endef