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
|
AC_INIT(btpd, 0.1, rnyberg@gmail.com)
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_FILES([Makefile btpd/Makefile misc/Makefile cli/Makefile])
AC_PROG_CC
AC_PROG_RANLIB
CFLAGS="$CFLAGS -std=c99 -Wall -Werror"
case $target_os in
linux*)
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE=1 -D_FILE_OFFSET_BITS=64"
;;
esac
AC_ARG_WITH(event,
[ --with-event=dir use libevent installed in dir],
[
AC_SUBST(event_LDFLAGS,["-L${withval}/lib -Wl,-rpath=${withval}/lib"])
AC_SUBST(event_CPPFLAGS,"-I${withval}/include")
],
[])
AC_ARG_WITH(ssl,
[ --with-ssl=dir use openssl installed in dir],
[
AC_SUBST(openssl_LDFLAGS,["-L${withval}/lib -Wl,-rpath=${withval}/lib"])
AC_SUBST(openssl_CPPFLAGS,"-I${withval}/include")
],
[])
AC_ARG_WITH(curlconf,
[ --with-curlconf=prog use this curl-config],
[
CURLCONF=$withval
],
[])
old_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS $event_LDFLAGS"
AC_CHECK_LIB(event, event_init, :, echo Must have libevent; exit 1)
LDFLAGS=$old_LDFLAGS
old_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS $openssl_LDFLAGS"
AC_CHECK_LIB(crypto, SHA1_Final, :, echo Must have openssl; exit 1)
LDFLAGS=$old_LDFLAGS
if test x$CURLCONF == x; then
AC_PATH_PROG(CURLCONF, curl-config)
fi
if test x$CURLCONF == x ; then
echo Must have curl-config
exit 1
else
AC_SUBST(CURL_CFLAGS, `$CURLCONF --cflags`)
AC_SUBST(CURL_LDFLAGS, `$CURLCONF --libs`)
fi
AC_OUTPUT
|