gmp: Update to 4.2.4.

Needed this update to fix building php without an executable stack
that was caused by gmp.
This commit is contained in:
Michael Tremer
2011-05-13 16:25:21 +02:00
committed by Arne Fitzenreiter
parent c61e145e6f
commit 8b55665f73
2 changed files with 8 additions and 7 deletions

View File

@@ -24,7 +24,7 @@
include Config
VER = 4.2
VER = 4.2.4
THISAPP = gmp-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = aa4a4534e8870ab8ba3c093239057cca
$(DL_FILE)_MD5 = fc1e3b3a2a5038d4d74138d0b9cf8dbe
install : $(TARGET)
@@ -70,7 +70,8 @@ $(subst %,%_MD5,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && ./configure --prefix=/usr --enable-cxx --enable-mpbsd --build=$(BUILDTARGET) --disable-nls
cd $(DIR_APP) && ABI=32 ./configure --prefix=/usr --enable-cxx \
--enable-mpbsd --disable-nls
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)