summaryrefslogtreecommitdiffstats
path: root/v8js-pr266.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2017-03-06 07:21:06 +0100
committerRemi Collet <fedora@famillecollet.com>2017-03-06 07:21:06 +0100
commit5eb3454ea5287847894510a2dd6852a7756277cd (patch)
tree35c5ae57097d0f423c44237ad78be1444101eb29 /v8js-pr266.patch
parent982461a62d39023a80bd87b6cca0f2eca887721d (diff)
php-pecl-v8js: 1.3.4
Diffstat (limited to 'v8js-pr266.patch')
-rw-r--r--v8js-pr266.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/v8js-pr266.patch b/v8js-pr266.patch
deleted file mode 100644
index a1a1394..0000000
--- a/v8js-pr266.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 2b9d37672c4e2d065b996bb80f3086018d639115 Mon Sep 17 00:00:00 2001
-From: Remi Collet <fedora@famillecollet.com>
-Date: Thu, 29 Sep 2016 16:05:46 +0200
-Subject: [PATCH] honours --with-libdir option, instead of harcoding lib or
- lib64
-
----
- config.m4 | 13 ++++---------
- 1 file changed, 4 insertions(+), 9 deletions(-)
-
-diff --git a/config.m4 b/config.m4
-index 3c92535..390c829 100644
---- a/config.m4
-+++ b/config.m4
-@@ -137,14 +137,9 @@ int main ()
- AC_MSG_CHECKING([for $static_link_extra_file])
- static_link_dir=""
-
-- if test -r $V8_DIR/lib64/$static_link_extra_file; then
-- static_link_dir=$V8_DIR/lib64
-- AC_MSG_RESULT(found in $V8_DIR/lib64)
-- fi
--
-- if test -r $V8_DIR/lib/$static_link_extra_file; then
-- static_link_dir=$V8_DIR/lib
-- AC_MSG_RESULT(found in $V8_DIR/lib)
-+ if test -r $V8_DIR/$PHP_LIBDIR/$static_link_extra_file; then
-+ static_link_dir=$V8_DIR/$PHP_LIBDIR
-+ AC_MSG_RESULT(found in $V8_DIR/$PHP_LIBDIR)
- fi
-
- if test -z "$static_link_dir"; then
-@@ -196,7 +191,7 @@ public:
- AC_MSG_RESULT([yes])
- AC_DEFINE([PHP_V8_USE_EXTERNAL_STARTUP_DATA], [1], [Whether V8 requires (and can be provided with custom versions of) external startup data])
-
-- SEARCH_PATH="$V8_DIR/lib $V8_DIR/share/v8"
-+ SEARCH_PATH="$V8_DIR/$PHP_LIBDIR $V8_DIR/share/v8"
-
- AC_MSG_CHECKING([for natives_blob.bin])
- SEARCH_FOR="natives_blob.bin"