projects
/
m6w6
/
pecl-ci
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
|
inline
| side by side (parent:
547c8e8
)
handle opcache as zend_extension
master
author
Michael Wallner
<mike@php.net>
Wed, 8 Sep 2021 09:49:38 +0000
(11:49 +0200)
committer
Michael Wallner
<mike@php.net>
Wed, 8 Sep 2021 09:49:38 +0000
(11:49 +0200)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index 3b1e447fd26356ef5090529b4f032dc30823cf57..411aaeaac18116c07622ed93d5d045978aa6f28c 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-91,7
+91,11
@@
php: check $(bindir)/php | $(PECL_INI)
-for EXT_SONAME in $(extdir)/*.so; do \
EXT_SONAME=$$(basename $$EXT_SONAME); \
if test "$$EXT_SONAME" != "*.so" && ! grep -q extension=$$EXT_SONAME $(PECL_INI); then \
-for EXT_SONAME in $(extdir)/*.so; do \
EXT_SONAME=$$(basename $$EXT_SONAME); \
if test "$$EXT_SONAME" != "*.so" && ! grep -q extension=$$EXT_SONAME $(PECL_INI); then \
- echo extension=$$EXT_SONAME >> $(PECL_INI); \
+ if test "$$EXT_SONAME" = "opcache.so"; then \
+ echo zend_extension=$$EXT_SONAME >> $(PECL_INI); \
+ else \
+ echo extension=$$EXT_SONAME >> $(PECL_INI); \
+ fi; \
fi \
done
fi \
done
@@
-175,7
+179,7
@@
test: php
pecl-test: TESTS ?= $(PECL_DIR)/tests
pecl-test: php
REPORT_EXIT_STATUS=1 $(bindir)/php $(prefix)/lib/php/build/run-tests.php -q -p $(bindir)/php --set-timeout 300 --show-diff $(TESTS)
pecl-test: TESTS ?= $(PECL_DIR)/tests
pecl-test: php
REPORT_EXIT_STATUS=1 $(bindir)/php $(prefix)/lib/php/build/run-tests.php -q -p $(bindir)/php --set-timeout 300 --show-diff $(TESTS)
-
+
pharext/%: $(PECL_INI) php | $(srcdir)/../%.ext.phar
for phar in $|; do $(bindir)/php $$phar --prefix=$(prefix) --ini=$(PECL_INI); done
pharext/%: $(PECL_INI) php | $(srcdir)/../%.ext.phar
for phar in $|; do $(bindir)/php $$phar --prefix=$(prefix) --ini=$(PECL_INI); done