forked from phalcon/cphalcon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5193890
commit 1d739ef
Showing
9 changed files
with
4,343 additions
and
5,381 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
clang: warning: argument unused during compilation: '-fno-delete-null-pointer-checks' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
# Phalcon Framework | ||
# | ||
# Copyright (c) 2011-2013 Phalcon Team (http://www.phalconphp.com) | ||
# | ||
# This source file is subject to the New BSD License that is bundled | ||
# with this package in the file docs/LICENSE.txt. | ||
# | ||
# If you did not receive a copy of the license and are unable to | ||
# obtain it through the world-wide-web, please send an email | ||
# to license@phalconphp.com so we can send you a copy immediately. | ||
# | ||
# Authors: Andres Gutierrez <andres@phalconphp.com> | ||
# Eduar Carvajal <eduar@phalconphp.com> | ||
|
||
if [ -f Makefile ]; then | ||
make distclean | ||
phpize55 --clean | ||
fi | ||
|
||
phpize55 | ||
CFLAGS="-g -O0 -fno-delete-null-pointer-checks -Wall" ./configure --enable-phalcon --with-php-config=/opt/local/bin/php-config55 && make && make install && echo "Notice: Phalcon was compiled in debug mode.\nThanks for compiling Phalcon!\nBuild succeed: Please restart your web server to complete the installation" | ||
|