-
Notifications
You must be signed in to change notification settings - Fork 192
/
ax_check_ip2location.m4
42 lines (38 loc) · 1.04 KB
/
ax_check_ip2location.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
#
# AC_IP2LOCATION_CHECK
#
AC_DEFUN([AC_IP2LOCATION_CHECK],[
if test "x$ip2location_dir" != "x"
then
IP2LOCATION_INCLUDES="$ip2location_dir"
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -I$ip2location_dir"
save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -I$ip2location_dir"
else
save_CFLAGS="$CFLAGS"
save_CPPFLAGS="$CPPFLAGS"
fi
AC_CHECK_HEADER(IP2Location.h,,
[
if test "x$ip2location_dir" != "x"
then
AC_MSG_ERROR([IP2Location header not found in directory specified in --with-ip2loc])
else
if test "x$need_ip2location" = "xyes"
then
AC_MSG_ERROR(Header file IP2Location.h not found.)
else
need_ip2location=no
fi
fi
])
if test "x$need_ip2location" != "xno"
then
IP2LOCATION_LIBS="-lIP2Location"
CFLAGS="$save_CFLAGS"
CPPFLAGS="$save_CPPFLAGS"
AC_SUBST(IP2LOCATION_INCLUDES)
AC_SUBST([IP2LOCATION_LIBS])
fi
])