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.
 
 
 
 
 
 

14 line
441 B

  1. PHP_ARG_ENABLE(pipi, whether to enable Libpipi support,
  2. [ --enable-pipi Enable Libpipi support])
  3. if test "$PHP_PIPI" = "yes"; then
  4. PHP_NEW_EXTENSION(pipi, php_pipi.c, $ext_shared)
  5. PHP_SUBST(PIPI_SHARED_LIBADD)
  6. AC_DEFINE(HAVE_PIPI, 1, [Whether you have Libpipi Ext])
  7. PIPI_INCDIR=$PHP_PIPI/include
  8. PIPI_LIBDIR=$PHP_PIPI/lib
  9. PHP_ADD_LIBRARY_WITH_PATH(pipi, $PIPI_LIBDIR, PIPI_SHARED_LIBADD)
  10. PHP_ADD_INCLUDE($PIPI_INCDIR)
  11. fi