diff options
author | SVN Migration <svn@php.net> | 2004-01-26 01:59:15 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2004-01-26 01:59:15 +0000 |
commit | c99a4f4747eac00e5e7fb44eb9e6467e258b30c6 (patch) | |
tree | 99ab150cf56eb6b75e0c0327d0b608e74445df58 /ext/hwapi/config.m4 | |
parent | 3507f040622d2267950f26c69b6ac30c1beb94f4 (diff) | |
download | php-git-RELEASE_1_3b6.tar.gz |
This commit was manufactured by cvs2svn to create tag 'RELEASE_1_3b6'.RELEASE_1_3b6
Diffstat (limited to 'ext/hwapi/config.m4')
-rw-r--r-- | ext/hwapi/config.m4 | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/ext/hwapi/config.m4 b/ext/hwapi/config.m4 deleted file mode 100644 index af8069fd21..0000000000 --- a/ext/hwapi/config.m4 +++ /dev/null @@ -1,35 +0,0 @@ -dnl $Id$ - -PHP_ARG_WITH(hwapi, for hwapi support, -[ --with-hwapi[=DIR] Include official Hyperwave API support]) - -if test "$PHP_HWAPI" != "no"; then - if test -r $PHP_HWAPI/include/sdk/api/object.h; then - HWAPI_DIR=$PHP_HWAPI - else - AC_MSG_CHECKING(for HWAPI in default path) - for i in /usr/local /usr; do - if test -r $i/include/hwapi/sdk/api/object.h; then - HWAPI_DIR=$i - AC_MSG_RESULT(found in $i) - fi - done - fi - - if test -z "$HWAPI_DIR"; then - AC_MSG_RESULT(not found) - AC_MSG_ERROR(Please install the hwapi >= 1.0.0 distribution) - fi - - PHP_ADD_INCLUDE($HWAPI_DIR/include/hwapi) - PHP_SUBST(HWAPI_SHARED_LIBADD) - PHP_ADD_LIBRARY_WITH_PATH(hwapi, $HWAPI_DIR/lib, HWAPI_SHARED_LIBADD) - AC_DEFINE(HAVE_HWAPI,1,[ ]) - - PHP_REQUIRE_CXX - PHP_NEW_EXTENSION(hwapi, hwapi.cpp, $ext_shared) - PHP_ADD_LIBRARY(hwapi) - PHP_ADD_LIBRARY(pthread) - PHP_ADD_LIBRARY(stdc++) - PHP_ADD_INCLUDE($HWAPI_DIR/include) -fi |