16 lines
656 B
Plaintext
16 lines
656 B
Plaintext
dnl config.m4 for the cac_path_parity extension.
|
|||
|
|
dnl Built out-of-tree against the image's own lsphp:
|
||
|
|
dnl phpize && ./configure --with-php-config=/usr/local/lsws/lsphpNN/bin/php-config
|
||
|
|
dnl No external libraries, no optional features — pure core API.
|
||
|
|
|
||
|
|
PHP_ARG_ENABLE([cac_path_parity],
|
||
|
|
[whether to enable cac_path_parity support],
|
||
|
|
[AS_HELP_STRING([--enable-cac-path-parity],
|
||
|
|
[Enable cac_path_parity ($_SERVER path parity for the shared-ols tier)])],
|
||
|
|
[no])
|
||
|
|
|
||
|
|
if test "$PHP_CAC_PATH_PARITY" != "no"; then
|
||
|
|
AC_DEFINE(HAVE_CAC_PATH_PARITY, 1, [Have cac_path_parity support])
|
||
|
|
PHP_NEW_EXTENSION(cac_path_parity, cac_path_parity.c, $ext_shared)
|
||
|
|
fi
|