Skip to content

Commit

Permalink
Merge branch '1.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Phalcon committed Sep 22, 2014
2 parents bf9da26 + 65744c0 commit 9ce2bb0
Show file tree
Hide file tree
Showing 74 changed files with 4,792 additions and 1,657 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ before_script:

script:
- ZEND_DONT_UNLOAD_MODULES=1 $(phpenv which php) ./unit-tests/ci/phpunit.php --debug -c unit-tests/phpunit.xml
- ZEND_DONT_UNLOAD_MODULES=1 PHALCON_NO_RVO=1 $(phpenv which php) ./unit-tests/ci/phpunit.php --debug -c unit-tests/phpunit.xml

after_failure:
- sudo apt-get -qq install gdb
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.3.3
- Fix segmentation fault in zim_Phalcon_Http_Request_getBasicAuth (#2819)
- Fix memory corruption on unclean shutdown (#2829)

1.3.2
- fix inverted test in Model/setSnapshotData() (issue #2466)
- Updated Phalcon\Queue\Beanstalk\Job::touch comment
Expand Down Expand Up @@ -66,6 +70,7 @@
- #2018 add method \Phalcon\Db\Result\Pdo::nextRowset
- Use phalcon_camelize for namesapce
- #1932 Phalcon\Http\Request\File extend SplFileInfo
>>>>>>> master

1.3.1
- Fixed segfault in Phalcon\Di\Service::resolve when string class does not exist (#2205)
Expand Down
29 changes: 16 additions & 13 deletions build/32bits/config.m4
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
PHP_ARG_ENABLE(phalcon, whether to enable phalcon framework, [ --enable-phalcon Enable phalcon framework])
PHP_ARG_WITH(non-free, wheter to enable non-free css and js minifier, [ --without-non-free Disable non-free minifiers], yes, no)

AC_MSG_CHECKING([Include non-free minifiers])
if test "$PHP_NON_FREE" = "yes"; then
AC_DEFINE([PHALCON_NON_FREE], [1], [Whether non-free minifiers are available])
AC_MSG_RESULT([yes, css and js])
else
AC_MSG_RESULT([no])
fi

if test "$PHP_PHALCON" = "yes"; then
AC_DEFINE(HAVE_PHALCON, 1, [Whether you have Phalcon Framework])
Expand Down Expand Up @@ -37,23 +46,17 @@ if test "$PHP_PHALCON" = "yes"; then
[[#include "php_config.h"]]
)

AC_CHECK_DECL(
[HAVE_JSON],
AC_CHECK_HEADERS(
[ext/json/php_json.h],
[
AC_CHECK_HEADERS(
[ext/json/php_json.h],
[
PHP_ADD_EXTENSION_DEP([phalcon], [json])
AC_DEFINE([PHALCON_USE_PHP_JSON], [1], [Whether PHP json extension is present at compile time])
],
,
[[#include "main/php.h"]]
)
PHP_ADD_EXTENSION_DEP([phalcon], [json])
AC_DEFINE([PHALCON_USE_PHP_JSON], [1], [Whether PHP json extension is present at compile time])
],
,
[[#include "php_config.h"]]
[[#include "main/php.h"]]
)


AC_CHECK_DECL(
[HAVE_PHP_SESSION],
[
Expand Down Expand Up @@ -158,4 +161,4 @@ fi

if test "$GCC" = "yes"; then
PHP_ADD_MAKEFILE_FRAGMENT([Makefile.frag.deps])
fi
fi
Loading

0 comments on commit 9ce2bb0

Please sign in to comment.