Skip to content

Commit

Permalink
Merge pull request #965 from sjinks/issue-942
Browse files Browse the repository at this point in the history
Do not use libtoolize/autoconf for compilation
  • Loading branch information
Phalcon committed Aug 1, 2013
2 parents b67bc92 + 35fbb2a commit 6fa1247
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions build/install
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,5 @@ if [ -f Makefile ]; then
phpize --clean
fi

LIBTOOLIZE_BIN="libtoolize"

#GNU 'libtoolize' on MAC OS X is called 'glibtoolize'
if [ "$(uname -s 2>/dev/null)" = "Darwin" ] && $(which glibtoolize > /dev/null 2>&1)
then
LIBTOOLIZE_BIN="glibtoolize"
fi

#Perform the compilation
phpize && aclocal && $LIBTOOLIZE_BIN --force && autoheader && autoconf && ./configure --enable-phalcon && make && make install && echo -e "\nThanks for compiling Phalcon!\nBuild succeed: Please restart your web server to complete the installation"
phpize && ./configure --enable-phalcon && make && make install && echo -e "\nThanks for compiling Phalcon!\nBuild succeed: Please restart your web server to complete the installation"

0 comments on commit 6fa1247

Please sign in to comment.