mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
A few critical patches got merged upstream, a few new were required to maintain LibreSSL support and fix other new issues. Note that slice2py moved from devel/py-ice to devel/ice. Approved by: mentors (implicit)
28 lines
795 B
PHP
28 lines
795 B
PHP
--- php/config/Make.rules.php.orig 2015-06-23 15:30:20.000000000 +0000
|
|
+++ php/config/Make.rules.php 2015-06-27 19:48:31.900063596 +0000
|
|
@@ -108,13 +108,8 @@
|
|
|
|
libdir = $(top_srcdir)/lib
|
|
|
|
-ifndef usr_dir_install
|
|
- install_phpdir = $(prefix)/php
|
|
- install_libdir = $(prefix)/php
|
|
-else
|
|
- install_phpdir = $(prefix)/share/php
|
|
- install_libdir = $(shell $(PHP_CONFIG) --extension-dir)
|
|
-endif
|
|
+install_phpdir = $(prefix)/share/pear
|
|
+install_libdir = $(prefix)/lib/php/$(PHP_EXT_DIR)
|
|
|
|
ifdef ice_src_dist
|
|
RPATH_DIR = $(LOADER_PATH)/../../cpp/$(libsubdir)
|
|
@@ -172,7 +167,8 @@
|
|
endif
|
|
|
|
ifeq ($(installphplib),)
|
|
- installphplib = $(INSTALL) $(1) $(2); \
|
|
+ installphplib = mkdir -p $(2) ; \
|
|
+ $(INSTALL) $(1) $(2); \
|
|
chmod a+rx $(2)/$(notdir $(1))
|
|
endif
|
|
|