From c95c231cfc46fd7f4ebb3e47930af3da470fe49d Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Wed, 5 Jun 2013 14:40:09 +0200 Subject: [PATCH] Possible fix for #323 - Use phtreads release from pecl --- src/build/compile.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build/compile.sh b/src/build/compile.sh index bcb8e50c3..6a0a2dd69 100755 --- a/src/build/compile.sh +++ b/src/build/compile.sh @@ -6,7 +6,7 @@ ZEND_VM="GOTO" LIBEDIT_VERSION="0.3" ZLIB_VERSION="1.2.8" -PTHREADS_VERSION="e5d95dfb847c8963c100bd4fb601dde41e0b75d1" +PTHREADS_VERSION="0.0.44" CURL_VERSION="curl-7_30_0" echo "[PocketMine] PHP installer and compiler for Linux & Mac" @@ -185,7 +185,7 @@ fi #pthreads echo -n "[PHP pthreads] downloading $PTHREADS_VERSION..." -wget https://github.com/krakjoe/pthreads/archive/$PTHREADS_VERSION.tar.gz --no-check-certificate -q -O - | tar -zx >> "$DIR/install.log" 2>&1 +wget http://pecl.php.net/get/pthreads-$PTHREADS_VERSION.tgz --no-check-certificate -q -O - | tar -zx >> "$DIR/install.log" 2>&1 mv pthreads-$PTHREADS_VERSION "$DIR/install_data/php/ext/pthreads" echo " done!"