You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.m4 351 B

123456789101112
  1. PHP_ARG_ENABLE(pipi, whether to enable Libpipi support,
  2. [ --enable-pipi Enable Libpipi support])
  3. if test "$PHP_PIPI" = "yes"; then
  4. AC_CHECK_LIB(pipi, pipi_get_version, [
  5. PHP_ADD_LIBRARY(pipi,, PIPI_SHARED_LIBADD)
  6. ], [
  7. AC_MSG_ERROR(libpipi required !)
  8. ])
  9. PHP_NEW_EXTENSION(pipi, php_pipi.c, $ext_shared,,)
  10. PHP_SUBST(PIPI_SHARED_LIBADD)
  11. fi