Synced make target with aa399f2.

This commit is contained in:
Jeff Welch 2013-04-26 22:20:20 -04:00
parent 49f1f7d469
commit 24876c89de
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ php:
- 5.4
before_script:
- cd libuv && make libuv.a CFLAGS=-fPIC -s && cd ..
- cd libuv && make uv.a CFLAGS=-fPIC -s && cd ..
- phpize && ./configure && make && sudo make install
- echo "extension=uv.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`

View File

@ -15,7 +15,7 @@ or move to extension all together so do not rely to much on them you have been w
git clone https://github.com/chobie/php-uv.git --recursive
cd php-uv
(cd libuv && make)
# Note: please use `make libuv.a CFLAGS=-fPIC` instead of `make` on 64bit box.
# Note: please use `make uv.a CFLAGS=-fPIC` instead of `make` on 64bit box.
phpize
./configure
make