diff options
author | SVN Migration <svn@php.net> | 2002-05-19 13:54:38 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2002-05-19 13:54:38 +0000 |
commit | 62e263f01ef567ae3926739f37d13cac17fe7739 (patch) | |
tree | 353ff240a432d453632dcad134524cbb9e0ea610 /ext/ccvs/config.m4 | |
parent | e3490f1429d8f03c16d8cef7cd835c3fb2d5b43e (diff) | |
download | php-git-php-4.3.0dev-ZendEngine2.tar.gz |
This commit was manufactured by cvs2svn to create tagphp-4.3.0dev-ZendEngine2
'php_4_3_0_dev_ZendEngine2'.
Diffstat (limited to 'ext/ccvs/config.m4')
-rw-r--r-- | ext/ccvs/config.m4 | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/ext/ccvs/config.m4 b/ext/ccvs/config.m4 deleted file mode 100644 index 5447a0d963..0000000000 --- a/ext/ccvs/config.m4 +++ /dev/null @@ -1,27 +0,0 @@ -dnl -dnl $Id$ -dnl - -PHP_ARG_WITH(ccvs, for CCVS support, -[ --with-ccvs[=DIR] Include CCVS support]) - -if test "$PHP_CCVS" != "no"; then - if test -r $PHP_CCVS/include/cv_api.h; then - CCVS_DIR=$PHP_CCVS - else - for i in /usr /usr/local /usr/local/ccvs ; do - if test -r $i/include/cv_api.h; then - CCVS_DIR=$i - fi - done - fi - - if test -z "$CCVS_DIR"; then - AC_MSG_ERROR(not found. Please check your CCVS installation; cv_api.h should be in <ccvs_dir>/include/) - fi - - PHP_ADD_INCLUDE($CCVS_DIR/include) - PHP_ADD_LIBRARY_WITH_PATH(ccvs, $CCVS_DIR/lib, CCVS_SHARED_LIBADD) - PHP_NEW_EXTENSION(ccvs, ccvs.c, $ext_shared) - PHP_SUBST(CCVS_SHARED_LIBADD) -fi |