-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.m4
61 lines (50 loc) · 1.81 KB
/
config.m4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
dnl $Id$
dnl config.m4 for extension pcap
dnl Comments in this file start with the string 'dnl'.
dnl Remove where necessary. This file will not work
dnl without editing.
dnl If your extension references something external, use with:
PHP_ARG_WITH(phpcap, for phpcap support,
[ --with-phpcap Include phpcap support])
dnl Otherwise use enable:
dnl PHP_ARG_ENABLE(pcap, whether to enable pcap support,
dnl Make sure that the comment is aligned:
dnl [ --enable-pcap Enable pcap support])
if test "$PHP_PHPCAP" != "no"; then
dnl Write more examples of tests here...
dnl # --with-pcap -> check with-path
SEARCH_PATH="/usr/local /usr" # you might want to change this
SEARCH_FOR="/include/pcap.h" # you most likely want to change this
if test -r $PHP_PHPCAP/$SEARCH_FOR; then # path given as parameter
PCAP_DIR=$PHP_PHPCAP
else # search default path list
AC_MSG_CHECKING([for pcap files in default path])
for i in $SEARCH_PATH ; do
if test -r $i/$SEARCH_FOR; then
PCAP_DIR=$i
AC_MSG_RESULT(found in $i)
fi
done
fi
dnl
if test -z "$PCAP_DIR"; then
AC_MSG_RESULT([not found])
AC_MSG_ERROR([Please reinstall the pcap distribution])
fi
dnl # --with-pcap -> add include path
PHP_ADD_INCLUDE($PCAP_DIR/include)
dnl # --with-pcap -> check for lib and symbol presence
LIBNAME=pcap # you may want to change this
LIBSYMBOL=pcap_lookupdev # you most likely want to change this
PHP_CHECK_LIBRARY($LIBNAME,$LIBSYMBOL,
[
PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $PCAP_DIR/lib, PHPCAP_SHARED_LIBADD)
AC_DEFINE(HAVE_PCAPLIB,1,[ ])
],[
AC_MSG_ERROR([wrong pcap lib version or lib not found])
],[
-L$PCAP_DIR/lib -lm
])
PHP_SUBST(PHPCAP_SHARED_LIBADD)
PHP_NEW_EXTENSION(phpcap, phpcap.c, $ext_shared)
fi