diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-04-28 21:21:38 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-04-28 21:21:38 +0000 |
commit | 3689132193b3b786ada9f80b3671dfd846a59a35 (patch) | |
tree | a43b5e91b50c0460abc231f6d96cbe0d884a3255 /package/postgresql/Makefile | |
parent | 30d9f95085dc143a6b259d5cde9e7f6709d5a573 (diff) | |
download | upstream-3689132193b3b786ada9f80b3671dfd846a59a35.tar.gz upstream-3689132193b3b786ada9f80b3671dfd846a59a35.tar.bz2 upstream-3689132193b3b786ada9f80b3671dfd846a59a35.zip |
update postgresql and fix gcc 3.4 build
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@748 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/postgresql/Makefile')
-rw-r--r-- | package/postgresql/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/package/postgresql/Makefile b/package/postgresql/Makefile index 12fbde5001..592d4cc346 100644 --- a/package/postgresql/Makefile +++ b/package/postgresql/Makefile @@ -3,9 +3,9 @@ include $(TOPDIR)/rules.mk PKG_NAME:=postgresql -PKG_VERSION:=7.4.6 +PKG_VERSION:=7.4.7 PKG_RELEASE:=3 -PKG_MD5SUM:=f0ea2b372a7bdaf2613e92176ebf5e0f +PKG_MD5SUM:=32dac2916d16287d95e0c958a75161fa PKG_SOURCE_URL:=\ ftp://ftp3.us.postgresql.org/pub/postgresql/source/v$(PKG_VERSION)/ \ @@ -22,6 +22,11 @@ IPKG_LIBPQ:=$(PACKAGE_DIR)/libpq_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk IDIR_LIBPQ:=$(PKG_BUILD_DIR)/ipkg INFO_LIBPQ:=$(IPKG_STATE_DIR)/info/libpq.list +EXTRA_CFLAGS:= +ifeq ($(BR2_GCC_3_4),y) + EXTRA_CFLAGS += -fno-unit-at-a-time +endif + $(DL_DIR)/$(PKG_SOURCE): $(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE) $(PKG_MD5SUM) $(PKG_SOURCE_URL) @@ -34,7 +39,7 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared # ./configure advertise "--infodir", but does not support it, replaced with "--docdir" (cd $(PKG_BUILD_DIR); rm -rf config.cache config.status; \ $(TARGET_CONFIGURE_OPTS) \ - CFLAGS="$(TARGET_CFLAGS)" \ + CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS)" \ CPPFLAGS="$$CPPFLAGS -I$(STAGING_DIR)/usr/include" \ LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ ./configure \ |