Skip to content

Commit 3752d18

Browse files
petkweltling
authored andcommitted
Remove some old sapi/apache_hooks and sapi/apache leftovers
1 parent b05ff14 commit 3752d18

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

.gitattributes

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ ext/filter/filter.c ident
1818
ext/zip/php_zip.c ident
1919
README.input_filter ident
2020
run-tests.php ident
21-
sapi/nsapi/nsapi.c ident
22-
sapi/continuity/capi.c ident
2321
Zend/RFCs/002.txt ident
2422
Zend/RFCs/003.txt ident
2523
ext/exif/exif.c ident
@@ -32,7 +30,6 @@ UPGRADING.INTERNALS merge=NEWS
3230
/ext/bz2/tests/with_strings.phpt -crlf
3331
/ext/dom/tests/bug40836.phpt -crlf
3432
/ext/dom/tests/domelement.phpt -crlf
35-
/ext/ereg/tests/eregi_basic_002.phpt -crlf
3633
/ext/iconv/tests/iconv004.phpt -crlf
3734
/ext/iconv/tests/iconv_basic.phpt -crlf
3835
/ext/iconv/tests/iconv_strpos.phpt -crlf

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,7 @@ pear/phpize
262262
pear/run-tests
263263
pear/php-config
264264
pear/scripts
265-
sapi/apache/libphp7.module
266265
sapi/apache2handler/libphp7.module
267-
sapi/apache_hooks/libphp7.module
268266
sapi/cgi/php-cgi
269267
sapi/cgi/php-cgi.1
270268
sapi/cli/php.1

Makefile.global

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ INSTALL_DATA = $(INSTALL) -m 644
55
DEFS = -DPHP_ATOM_INC -I$(top_builddir)/include -I$(top_builddir)/main -I$(top_srcdir)
66
COMMON_FLAGS = $(DEFS) $(INCLUDES) $(EXTRA_INCLUDES) $(CPPFLAGS) $(PHP_FRAMEWORKPATH)
77

8-
all: $(all_targets)
8+
all: $(all_targets)
99
@echo
1010
@echo "Build complete."
1111
@echo "Don't forget to run 'make test'."
@@ -112,13 +112,13 @@ test: all
112112
clean:
113113
find . -name \*.gcno -o -name \*.gcda | xargs rm -f
114114
find . -name \*.lo -o -name \*.o | xargs rm -f
115-
find . -name \*.la -o -name \*.a | xargs rm -f
115+
find . -name \*.la -o -name \*.a | xargs rm -f
116116
find . -name \*.so | xargs rm -f
117117
find . -name .libs -a -type d|xargs rm -rf
118118
rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(SAPI_CGI_PATH) $(SAPI_MILTER_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/* libs/*
119119

120120
distclean: clean
121-
rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h main/internal_functions_cli.c main/internal_functions.c stamp-h sapi/apache/libphp$(PHP_MAJOR_VERSION).module sapi/apache_hooks/libphp$(PHP_MAJOR_VERSION).module buildmk.stamp Zend/zend_dtrace_gen.h Zend/zend_dtrace_gen.h.bak Zend/zend_config.h TSRM/tsrm_config.h
121+
rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h main/internal_functions_cli.c main/internal_functions.c stamp-h buildmk.stamp Zend/zend_dtrace_gen.h Zend/zend_dtrace_gen.h.bak Zend/zend_config.h TSRM/tsrm_config.h
122122
rm -f php7.spec main/build-defs.h scripts/phpize
123123
rm -f ext/date/lib/timelib_config.h ext/mbstring/oniguruma/config.h ext/mbstring/libmbfl/config.h ext/oci8/oci8_dtrace_gen.h ext/oci8/oci8_dtrace_gen.h.bak
124124
rm -f scripts/man1/phpize.1 scripts/php-config scripts/man1/php-config.1 sapi/cli/php.1 sapi/cgi/php-cgi.1 ext/phar/phar.1 ext/phar/phar.phar.1
@@ -135,7 +135,7 @@ prof-gen:
135135

136136
prof-clean:
137137
find . -name \*.lo -o -name \*.o | xargs rm -f
138-
find . -name \*.la -o -name \*.a | xargs rm -f
138+
find . -name \*.la -o -name \*.a | xargs rm -f
139139
find . -name \*.so | xargs rm -f
140140
rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(SAPI_CGI_PATH) $(SAPI_MILTER_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/* libs/*
141141

0 commit comments

Comments
 (0)