Skip to content

Commit

Permalink
php7, c838a40: regenerate ice sources [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Ice Framework committed Sep 26, 2020
1 parent c838a40 commit f961b40
Show file tree
Hide file tree
Showing 38 changed files with 1,552 additions and 955 deletions.
5 changes: 3 additions & 2 deletions build/php7/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ if test "$PHP_ICE" = "yes"; then
fi

AC_DEFINE(HAVE_ICE, 1, [Whether you have Ice])
ice_sources="ice.c kernel/main.c kernel/memory.c kernel/exception.c kernel/debug.c kernel/backtrace.c kernel/object.c kernel/array.c kernel/string.c kernel/fcall.c kernel/require.c kernel/file.c kernel/operators.c kernel/math.c kernel/concat.c kernel/variables.c kernel/filter.c kernel/iterator.c kernel/time.c kernel/exit.c ice/arr.zep.c
ice/validation/validator.zep.c
ice_sources="ice.c kernel/main.c kernel/memory.c kernel/exception.c kernel/debug.c kernel/backtrace.c kernel/object.c kernel/array.c kernel/string.c kernel/fcall.c kernel/require.c kernel/file.c kernel/operators.c kernel/math.c kernel/concat.c kernel/variables.c kernel/filter.c kernel/iterator.c kernel/time.c kernel/exit.c ice/validation/validator.zep.c
ice/arr.zep.c
ice/i18n/plural/pluralinterface.zep.c
ice/di/access.zep.c
ice/mvc/model.zep.c
Expand Down Expand Up @@ -117,6 +117,7 @@ if test "$PHP_ICE" = "yes"; then
ice/validation/validator/between.zep.c
ice/validation/validator/digit.zep.c
ice/validation/validator/email.zep.c
ice/validation/validator/exists.zep.c
ice/validation/validator/file.zep.c
ice/validation/validator/in.zep.c
ice/validation/validator/length.zep.c
Expand Down
6 changes: 3 additions & 3 deletions build/php7/config.w32
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ if (PHP_ICE != "no") {
AC_DEFINE("ZEPHIR_USE_PHP_JSON", 1, "Whether PHP json extension is present at compile time");
}

ADD_SOURCES(configure_module_dirname + "/ice", "arr.zep.c config.zep.c dispatcher.zep.c image.zep.c assets.zep.c auth.zep.c cookies.zep.c crypt.zep.c db.zep.c di.zep.c dump.zep.c exception.zep.c filter.zep.c flash.zep.c i18n.zep.c loader.zep.c log.zep.c pagination.zep.c session.zep.c tag.zep.c text.zep.c validation.zep.c version.zep.c", "ice");
ADD_SOURCES(configure_module_dirname + "/ice/validation", "validator.zep.c", "ice");
ADD_SOURCES(configure_module_dirname + "/ice/validation", "validator.zep.c", "ice");
ADD_SOURCES(configure_module_dirname + "/ice", "arr.zep.c config.zep.c dispatcher.zep.c image.zep.c assets.zep.c auth.zep.c cookies.zep.c crypt.zep.c db.zep.c di.zep.c dump.zep.c exception.zep.c filter.zep.c flash.zep.c i18n.zep.c loader.zep.c log.zep.c pagination.zep.c session.zep.c tag.zep.c text.zep.c validation.zep.c version.zep.c", "ice");
ADD_SOURCES(configure_module_dirname + "/ice/i18n/plural", "pluralinterface.zep.c arabic.zep.c balkan.zep.c czech.zep.c french.zep.c none.zep.c one.zep.c polish.zep.c romanian.zep.c two.zep.c zero.zep.c", "ice");
ADD_SOURCES(configure_module_dirname + "/ice/di", "access.zep.c", "ice");
ADD_SOURCES(configure_module_dirname + "/ice/mvc", "model.zep.c app.zep.c controller.zep.c dispatcher.zep.c fastroute.zep.c fastrouter.zep.c moduleinterface.zep.c route.zep.c router.zep.c service.zep.c url.zep.c view.zep.c", "ice");
Expand Down Expand Up @@ -40,7 +40,7 @@ if (PHP_ICE != "no") {
ADD_SOURCES(configure_module_dirname + "/ice/log/driver", "file.zep.c", "ice");
ADD_SOURCES(configure_module_dirname + "/ice/mvc/route", "collector.zep.c", "ice");
ADD_SOURCES(configure_module_dirname + "/ice/mvc/view/engine/sleet", "compiler.zep.c parser.zep.c", "ice");
ADD_SOURCES(configure_module_dirname + "/ice/validation/validator", "alnum.zep.c alpha.zep.c between.zep.c digit.zep.c email.zep.c file.zep.c in.zep.c length.zep.c notin.zep.c regex.zep.c required.zep.c same.zep.c unique.zep.c url.zep.c with.zep.c without.zep.c", "ice");
ADD_SOURCES(configure_module_dirname + "/ice/validation/validator", "alnum.zep.c alpha.zep.c between.zep.c digit.zep.c email.zep.c exists.zep.c file.zep.c in.zep.c length.zep.c notin.zep.c regex.zep.c required.zep.c same.zep.c unique.zep.c url.zep.c with.zep.c without.zep.c", "ice");
ADD_FLAG("CFLAGS_ICE", "/D ZEPHIR_RELEASE /Oi /Ot /Oy /Ob2 /Gs /GF /Gy /GL");
ADD_FLAG("CFLAGS", "/D ZEPHIR_RELEASE /Oi /Ot /Oy /Ob2 /Gs /GF /Gy /GL");
ADD_FLAG("LDFLAGS", "/LTCG");
Expand Down
6 changes: 4 additions & 2 deletions build/php7/ice.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ zend_class_entry *ice_http_response_responseinterface_ce;
zend_class_entry *ice_mvc_route_parser_parserinterface_ce;
zend_class_entry *ice_mvc_view_viewinterface_ce;
zend_class_entry *ice_mvc_moduleinterface_ce;
zend_class_entry *ice_arr_ce;
zend_class_entry *ice_validation_validator_ce;
zend_class_entry *ice_arr_ce;
zend_class_entry *ice_di_access_ce;
zend_class_entry *ice_mvc_model_ce;
zend_class_entry *ice_auth_social_adapter_ce;
Expand Down Expand Up @@ -131,6 +131,7 @@ zend_class_entry *ice_validation_validator_alpha_ce;
zend_class_entry *ice_validation_validator_between_ce;
zend_class_entry *ice_validation_validator_digit_ce;
zend_class_entry *ice_validation_validator_email_ce;
zend_class_entry *ice_validation_validator_exists_ce;
zend_class_entry *ice_validation_validator_file_ce;
zend_class_entry *ice_validation_validator_in_ce;
zend_class_entry *ice_validation_validator_length_ce;
Expand Down Expand Up @@ -168,8 +169,8 @@ static PHP_MINIT_FUNCTION(ice)
ZEPHIR_INIT(Ice_Mvc_Route_Parser_ParserInterface);
ZEPHIR_INIT(Ice_Mvc_View_ViewInterface);
ZEPHIR_INIT(Ice_Mvc_ModuleInterface);
ZEPHIR_INIT(Ice_Arr);
ZEPHIR_INIT(Ice_Validation_Validator);
ZEPHIR_INIT(Ice_Arr);
ZEPHIR_INIT(Ice_Di_Access);
ZEPHIR_INIT(Ice_Mvc_Model);
ZEPHIR_INIT(Ice_Auth_Social_Adapter);
Expand Down Expand Up @@ -262,6 +263,7 @@ static PHP_MINIT_FUNCTION(ice)
ZEPHIR_INIT(Ice_Validation_Validator_Between);
ZEPHIR_INIT(Ice_Validation_Validator_Digit);
ZEPHIR_INIT(Ice_Validation_Validator_Email);
ZEPHIR_INIT(Ice_Validation_Validator_Exists);
ZEPHIR_INIT(Ice_Validation_Validator_File);
ZEPHIR_INIT(Ice_Validation_Validator_In);
ZEPHIR_INIT(Ice_Validation_Validator_Length);
Expand Down
3 changes: 2 additions & 1 deletion build/php7/ice.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#ifndef ZEPHIR_CLASS_ENTRIES_H
#define ZEPHIR_CLASS_ENTRIES_H

#include "ice/arr.zep.h"
#include "ice/validation/validator.zep.h"
#include "ice/arr.zep.h"
#include "ice/i18n/plural/pluralinterface.zep.h"
#include "ice/di/access.zep.h"
#include "ice/mvc/model.zep.h"
Expand Down Expand Up @@ -112,6 +112,7 @@
#include "ice/validation/validator/between.zep.h"
#include "ice/validation/validator/digit.zep.h"
#include "ice/validation/validator/email.zep.h"
#include "ice/validation/validator/exists.zep.h"
#include "ice/validation/validator/file.zep.h"
#include "ice/validation/validator/in.zep.h"
#include "ice/validation/validator/length.zep.h"
Expand Down
48 changes: 38 additions & 10 deletions build/php7/ice/arr.zep.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions build/php7/ice/arr.zep.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 55 additions & 7 deletions build/php7/ice/auth/driver/file.zep.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions build/php7/ice/auth/driver/file.zep.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/php7/ice/auth/social/adapter.zep.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f961b40

Please sign in to comment.