mirror of
https://github.com/php-win-ext/phpredis.git
synced 2026-03-24 00:52:16 +01:00
Fix config.m4 when using custom dep paths (#2453)
* We need both PHP_ADD_LIBRARY_WITH_PATH and PHP_ADD_INCLUDE Fixes #2452 * Add an initial test block for ./configure correctness.
This commit is contained in:
66
.github/workflows/ci.yml
vendored
66
.github/workflows/ci.yml
vendored
@@ -1,6 +1,72 @@
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
configured-deps:
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: false
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
php: ['8.3']
|
||||
steps:
|
||||
- name: Checkout PhpRedis
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install liblzf
|
||||
run: |
|
||||
git clone --depth=1 https://github.com/nemequ/liblzf.git
|
||||
cd liblzf
|
||||
autoreconf -vi
|
||||
CFLAGS=-fPIC ./configure --prefix="$GITHUB_WORKSPACE/liblzf"
|
||||
make install
|
||||
|
||||
- name: Install liblz4
|
||||
run: |
|
||||
git clone -b v1.9.4 --depth=1 https://github.com/lz4/lz4
|
||||
cd lz4/lib
|
||||
PREFIX="$GITHUB_WORKSPACE/liblz4" make install
|
||||
|
||||
- name: Install libzstd
|
||||
run: |
|
||||
git clone -b v1.5.5 --depth=1 https://github.com/facebook/zstd
|
||||
cd zstd
|
||||
PREFIX="$GITHUB_WORKSPACE/libzstd" make install
|
||||
|
||||
- name: Install PHP ${{ matrix.php }}
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php }}
|
||||
extensions: json, igbinary, msgpack, :redis
|
||||
coverage: none
|
||||
tools: none
|
||||
|
||||
- name: Configure and build PhpRedis with distinct dep paths
|
||||
run: |
|
||||
phpize
|
||||
./configure \
|
||||
--enable-redis-lz4 \
|
||||
--with-liblz4="$GITHUB_WORKSPACE/liblz4" \
|
||||
--enable-redis-lzf \
|
||||
--with-liblzf="$GITHUB_WORKSPACE/liblzf" \
|
||||
--enable-redis-zstd \
|
||||
--with-libzstd="$GITHUB_WORKSPACE/libzstd"
|
||||
sudo make -j"$(nproc)"
|
||||
|
||||
- name: Make sure we're linking against specific liblz4
|
||||
run: |
|
||||
grep "INCLUDES.*$GITHUB_WORKSPACE/liblz4" Makefile
|
||||
grep "REDIS_SHARED_LIBADD.*-L$GITHUB_WORKSPACE/liblz4" Makefile
|
||||
|
||||
- name: Make sure we're linking against specific liblzf
|
||||
run: |
|
||||
grep "INCLUDES.*$GITHUB_WORKSPACE/liblzf" Makefile
|
||||
grep "REDIS_SHARED_LIBADD.*-L$GITHUB_WORKSPACE/liblzf" Makefile
|
||||
|
||||
- name: Make sure we're linking against specific libzstd
|
||||
run: |
|
||||
grep "INCLUDES.*$GITHUB_WORKSPACE/libzstd" Makefile
|
||||
grep "REDIS_SHARED_LIBADD.*-L$GITHUB_WORKSPACE/libzstd" Makefile
|
||||
|
||||
ubuntu:
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: false
|
||||
|
||||
@@ -221,6 +221,7 @@ if test "$PHP_REDIS" != "no"; then
|
||||
PHP_CHECK_LIBRARY(lzf, lzf_compress,
|
||||
[
|
||||
PHP_ADD_LIBRARY_WITH_PATH(lzf, $LIBLZF_DIR/$PHP_LIBDIR, REDIS_SHARED_LIBADD)
|
||||
PHP_ADD_INCLUDE($LIBLZF_DIR/include)
|
||||
], [
|
||||
AC_MSG_ERROR([could not find usable liblzf])
|
||||
], [
|
||||
@@ -263,12 +264,12 @@ if test "$PHP_REDIS" != "no"; then
|
||||
PHP_CHECK_LIBRARY(lz4, LZ4_compress,
|
||||
[
|
||||
PHP_ADD_LIBRARY_WITH_PATH(lz4, $LIBLZ4_DIR/$PHP_LIBDIR, REDIS_SHARED_LIBADD)
|
||||
PHP_ADD_INCLUDE($LIBLZ4_DIR/include)
|
||||
], [
|
||||
AC_MSG_ERROR([could not find usable liblz4])
|
||||
], [
|
||||
-L$LIBLZ4_DIR/$PHP_LIBDIR
|
||||
])
|
||||
PHP_SUBST(REDIS_SHARED_LIBADD)
|
||||
else
|
||||
AC_MSG_ERROR([only system liblz4 is supported])
|
||||
fi
|
||||
@@ -307,6 +308,7 @@ if test "$PHP_REDIS" != "no"; then
|
||||
PHP_CHECK_LIBRARY(zstd, ZSTD_getFrameContentSize,
|
||||
[
|
||||
PHP_ADD_LIBRARY_WITH_PATH(zstd, $LIBZSTD_DIR/$PHP_LIBDIR, REDIS_SHARED_LIBADD)
|
||||
PHP_ADD_INCLUDE($LIBZSTD_DIR/include)
|
||||
], [
|
||||
AC_MSG_ERROR([could not find usable libzstd, version 1.3.0 required])
|
||||
], [
|
||||
|
||||
Reference in New Issue
Block a user