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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
AH_TEMPLATE([HAVE_POSIX_THREAD], [])
AH_TEMPLATE([_REENTRANT], [])
AH_TEMPLATE([ssize_t], [Define to "int" if <sys/types.h> does not define.])
dnl ===================================================================
dnl DAST_REPLACE_TYPE( type, sizeof )
dnl Check for the type as AC_CHECK_TYPE does. Define HAVE_<type>
dnl if type exists; don't define <type> to anything if it doesn't exist.
dnl Useful if there is no well-defined default type, such as int32_t
AC_DEFUN(DAST_REPLACE_TYPE, [
AC_CACHE_CHECK(for $1, ac_cv_type_$1,
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[$ac_includes_default]],
[[$1 foo]])],
ac_cv_type_$1=yes,
ac_cv_type_$1=no)
if test $ac_cv_type_$1 != yes ; then
if test "$ac_cv_sizeof_char" = $2; then
ac_cv_type_$1="char"
elif test "$ac_cv_sizeof_short" = $2; then
ac_cv_type_$1="short"
elif test "$ac_cv_sizeof_int" = $2; then
ac_cv_type_$1="int"
elif test "$ac_cv_sizeof_long" = $2; then
ac_cv_type_$1="long"
elif test "$ac_cv_sizeof_long_long" = $2; then
ac_cv_type_$1="long long"
fi
fi)
if test "$ac_cv_type_$1" != no; then
if test "$ac_cv_type_$1" != yes; then
AC_DEFINE_UNQUOTED($1, $ac_cv_type_$1)
fi
AC_DEFINE_UNQUOTED(HAVE_`echo $1 | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`)
fi
])
AC_DEFUN(DAST_REPLACE_TYPE_UNSIGNED, [
AC_CACHE_CHECK(for $1, ac_cv_type_$1,
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[$ac_includes_default]],
[[$1 foo]])],
ac_cv_type_$1=yes,
ac_cv_type_$1=no)
if test $ac_cv_type_$1 != yes ; then
if test "$ac_cv_sizeof_unsigned_char" = $2; then
ac_cv_type_$1="unsigned char"
elif test "$ac_cv_sizeof_unsigned_short" = $2; then
ac_cv_type_$1="unsigned short"
elif test "$ac_cv_sizeof_unsigned_int" = $2; then
ac_cv_type_$1="unsigned int"
elif test "$ac_cv_sizeof_unsigned_long" = $2; then
ac_cv_type_$1="unsigned long"
elif test "$ac_cv_sizeof_unsigned_long_long" = $2; then
ac_cv_type_$1="unsigned long long"
fi
fi)
if test "$ac_cv_type_$1" != no; then
if test "$ac_cv_type_$1" != yes; then
AC_DEFINE_UNQUOTED($1, $ac_cv_type_$1)
fi
AC_DEFINE_UNQUOTED(HAVE_`echo $1 | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`)
fi
])
dnl DAST_CHECK_ARG
dnl Check for the 3rd arguement to accept
AC_DEFUN(DAST_ACCEPT_ARG, [
if test -z "$ac_cv_accept_arg" ; then
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[$ac_includes_default
#include <sys/socket.h>]],
[[$1 length;
accept( 0, 0, &length );]])],
ac_cv_accept_arg=$1)
AC_LANG_RESTORE
fi
])
dnl Configure paths for Web100. Based off of Owen Taylor's gtk.m4 from gtk+-1.2.10
dnl AM_PATH_WEB100([EXACT-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl Test for Web100, and define WEB100_CFLAGS and WEB100_LIBS
dnl
AC_DEFUN(AM_PATH_WEB100,
[
web100_success=""
AC_PATH_PROG([WEB100_CONFIG], [web100-config], [no])
AC_MSG_CHECKING(for Web100)
if test "$WEB100_CONFIG" != "no"; then
WEB100_CFLAGS=`$WEB100_CONFIG --cflags`
WEB100_LIBS=`$WEB100_CONFIG --libs`
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
echo "*** The web100-config script installed by Web100 could not be found"
echo "*** If Web100 was installed in PREFIX, make sure PREFIX/bin is in"
echo "*** your path, or set the WEB100_CONFIG environment variable to the"
echo "*** full path to web100-config"
web100_success="no"
fi
if test x$web100_success = x; then
if test "x$1" != "x"; then
AC_MSG_CHECKING(for Web100 - version $1)
WEB100_VERSION=`$WEB100_CONFIG --version`
if test "$WEB100_VERSION" = "$1"; then
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
echo "*** The requested ($1) and installed ($WEB100_VERSION) versions"
echo "*** of Web100 do not match."
web100_success="no"
fi
fi
fi
if test x$web100_success = x; then
web100_success="yes"
fi
if test x$web100_success = xyes; then
m4_if([$2], [], [:], [$2])
else
WEB100_CFLAGS=""
WEB100_LIBS=""
m4_if([$3], [], [:], [$3])
fi
AC_SUBST(WEB100_CFLAGS)
AC_SUBST(WEB100_LIBS)
])
|