diff options
author | Nikita Popov <nikic@php.net> | 2014-09-19 00:01:05 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2014-09-19 19:54:37 +0200 |
commit | c343ca4efba7e600f7d20c73fde34dbda8192e48 (patch) | |
tree | 55d4aa3f431db584f6d8ae2c34f6ff2406994a65 /configure.in | |
parent | 2be8fdcfd6b719cf21e4344c75b46fd5704727e4 (diff) | |
download | php-git-c343ca4efba7e600f7d20c73fde34dbda8192e48.tar.gz |
Split inheritance into separate file
This moves handling of inheritance and interface implementation
from zend_compile.c into a separate zend_inheritance.c file, as
this is not really related to compilation.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 428c574bf8..616fc502a4 100644 --- a/configure.in +++ b/configure.in @@ -1490,11 +1490,8 @@ PHP_ADD_SOURCES(Zend, \ zend_ini.c zend_qsort.c zend_multibyte.c zend_ts_hash.c zend_stream.c \ zend_iterators.c zend_interfaces.c zend_exceptions.c zend_strtod.c zend_gc.c \ zend_closures.c zend_float.c zend_string.c zend_signal.c zend_generators.c \ - zend_virtual_cwd.c zend_ast.c) - -if test -r "$abs_srcdir/Zend/zend_objects.c"; then - PHP_ADD_SOURCES(Zend, zend_objects.c zend_object_handlers.c zend_objects_API.c zend_default_classes.c) -fi + zend_virtual_cwd.c zend_ast.c zend_objects.c zend_object_handlers.c zend_objects_API.c \ + zend_default_classes.c zend_inheritance.c) dnl Selectively disable optimization due to high RAM usage during dnl compiling the executor. |