From 17f225dc57e4176e10d5cba64ee045fc0cc3dd49 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Thu, 6 Feb 2014 21:11:43 +0000 Subject: [PATCH] postgresql: update to 9.0.15 Without TARGET_CFLAGS += -lpthread it does not find libpthread and the build fails. Signed-off-by: Hauke Mehrtens SVN-Revision: 39514 --- libs/postgresql/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/libs/postgresql/Makefile b/libs/postgresql/Makefile index 37ae8f679..f9086bb16 100644 --- a/libs/postgresql/Makefile +++ b/libs/postgresql/Makefile @@ -8,16 +8,17 @@ include $(TOPDIR)/rules.mk PKG_NAME:=postgresql -PKG_VERSION:=9.0.1 -PKG_RELEASE:=4 +PKG_VERSION:=9.0.15 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=\ http://ftp9.us.postgresql.org/pub/mirrors/postgresql/source/v$(PKG_VERSION) \ http://ftp.be.postgresql.org/postgresql/source/v$(PKG_VERSION) \ ftp://ftp-archives.postgresql.org/pub/source/v$(PKG_VERSION) -PKG_MD5SUM:=57ba57e43cfe29e16dacbf5789be98d1 +PKG_MD5SUM:=1bd7f659c4f68e5fc23511c6952b494b PKG_BUILD_PARALLEL:=1 +PKG_FIXUP:=autoreconf include $(INCLUDE_DIR)/package.mk @@ -154,7 +155,7 @@ define Build/Configure $(SED) 's@ECPG = ../../preproc/ecpg@ECPG = ../../preproc/ecpg.host@' $(PKG_BUILD_DIR)/src/interfaces/ecpg/test/Makefile.regress endef -TARGET_CFLAGS += $(FPIC) +TARGET_CFLAGS += $(FPIC) -lpthread # because PROFILE means something else in the project Makefile unexport PROFILE -- 2.30.2