X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=Makefile;h=7c570d51b9380a779e3284950018dc12a546aa86;hb=5fa813b43612f3467f029f6681ebe5591ac6d275;hp=edaf87b2c8eee0840d23c5b0ffaee93c94bedf77;hpb=eced8a2fe1fc21ff6ab7b2020d2f061639ccef62;p=m6w6%2Ftravis-pecl diff --git a/Makefile b/Makefile index edaf87b..7c570d5 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,13 @@ reconf: check $(srcdir)/php-$(PHP_VERSION)/configure cd $(srcdir)/php-$(PHP_VERSION) && ./configure -C --prefix=$(prefix) .PHONY: php -php: check $(bindir)/php +php: check $(bindir)/php | $(PECL_INI) + -for EXT_SONAME in $(extdir)/*.so; do \ + EXT_SONAME=$$(basename $$EXT_SONAME); \ + if ! grep -q extension=$$EXT_SONAME $(PECL_INI); then \ + echo extension=$$EXT_SONAME >> $(PECL_INI); \ + fi \ + done $(PHP_VERSIONS_JSON): $(srcdir)/php-version.php curl -Sso $@ "http://php.net/releases/index.php?json&version=$(PHP_VERSION_MAJOR)&max=-1"