blob: 9e5a31cc6d8ba241e35105a6a42e0f0f8c2e266a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
dnl
dnl $Id$
dnl
AC_MSG_CHECKING(for Hyperwave support)
AC_ARG_WITH(hyperwave,
[ --with-hyperwave Include Hyperwave support],
[
if test "$withval" != "no"; then
AC_DEFINE(HYPERWAVE,1,[ ])
AC_MSG_RESULT(yes)
PHP_NEW_EXTENSION(hyperwave, hw.c hg_comm.c)
else
AC_DEFINE(HYPERWAVE,0,[ ])
AC_MSG_RESULT(no)
fi
],[
AC_DEFINE(HYPERWAVE,0,[ ])
AC_MSG_RESULT(no)
])
|