helly           Wed Dec  7 12:44:45 2005 EDT

  Added files:                 (Branch: PHP_5_1)
    /php-src/ext/pcre   config0.m4 
  Log:
  - Readd the file in this branch
  

http://cvs.php.net/co.php/php-src/ext/pcre/config0.m4?r=1.1&p=1
Index: php-src/ext/pcre/config0.m4
+++ php-src/ext/pcre/config0.m4
dnl $Id: config0.m4,v 1.1 1999/05/21 13:17:23 andrey Exp $
dnl config.m4 for extension pcre

AC_MSG_CHECKING(for PCRE support)
AC_ARG_WITH(pcre,
[  --with-pcre             Include Perl Compatible Regular Expressions 
support],[
  if test "$withval" = "yes"; then
    PCRE_LIBS="-lpcre"
    AC_DEFINE(HAVE_LIBPCRE, 1)
    AC_MSG_RESULT(yes)
    PHP_EXTENSION(pcre)
    EXTRA_LIBS="$EXTRA_LIBS $PCRE_LIBS"
  else
    AC_MSG_RESULT(no)
  fi
],[
  AC_MSG_RESULT(no)
]) 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to