-
Notifications
You must be signed in to change notification settings - Fork 6
/
aolserver.m4
57 lines (53 loc) · 1.57 KB
/
aolserver.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
#------------------------------------------------------------------------
# NS_PATH_AOLSERVER
#
# Allows the building with support for AOLserver
#
# Arguments:
# none
#
# Results:
#
# Adds the following arguments to configure:
# --with-aolserver=...
#
# Defines the following vars:
# AOL_DIR Full path to the directory containing AOLserver distro
# AOL_INCLUDES
# AOL_LIBS
#
# Sets the following vars:
# NS_AOLSERVER
#
# Updates following vars:
#------------------------------------------------------------------------
AC_DEFUN(NS_PATH_AOLSERVER, [
AC_MSG_CHECKING([for AOLserver configuration])
AC_ARG_WITH(aol,
[ --with-aolserver directory with AOLserver distribution],\
with_aolserver=${withval})
AC_CACHE_VAL(ac_cv_c_aolserver,[
if test x"${with_aolserver}" != x ; then
if test -f "${with_aolserver}/include/ns.h" ; then
ac_cv_c_aolserver=`(cd ${with_aolserver}; pwd)`
else
AC_MSG_ERROR([${with_aolserver} directory doesn't contain ns.h])
fi
fi
])
if test x"${ac_cv_c_aolserver}" = x ; then
AC_MSG_RESULT([none found])
else
AOL_DIR=${ac_cv_c_aolserver}
AC_MSG_RESULT([found AOLserver in $AOL_DIR])
AOL_INCLUDES="-I\"${AOL_DIR}/include\""
if test "`uname -s`" = Darwin ; then
aollibs=`ls ${AOL_DIR}/lib/libns* 2>/dev/null`
if test x"$aollibs" != x ; then
AOL_LIBS="-L\"${AOL_DIR}/lib\" -lnsd -lnsthread"
fi
fi
AC_DEFINE(NS_AOLSERVER)
fi
])
# EOF