-
-
Notifications
You must be signed in to change notification settings - Fork 209
/
configure.ac
123 lines (94 loc) · 2.82 KB
/
configure.ac
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
AC_INIT([[libtorrent]],[[0.14.0]],[[[email protected]]])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIRS([scripts])
AM_INIT_AUTOMAKE([serial-tests subdir-objects foreign])
LT_INIT([[disable-static]])
dnl Find a better way to do this
AC_DEFINE([[PEER_NAME]], [["-lt0E00-"]], [[Identifier that is part of the default peer id.]])
AC_DEFINE([[PEER_VERSION]], [["lt\x0E\x00"]], [[4 byte client and version identifier for DHT.]])
LIBTORRENT_CURRENT=22
LIBTORRENT_REVISION=0
LIBTORRENT_AGE=0
LIBTORRENT_INTERFACE_VERSION_INFO=$LIBTORRENT_CURRENT:$LIBTORRENT_REVISION:$LIBTORRENT_AGE
LIBTORRENT_INTERFACE_VERSION_NO=$LIBTORRENT_CURRENT.$LIBTORRENT_AGE.$LIBTORRENT_REVISION
AC_SUBST(LIBTORRENT_CURRENT)
AC_SUBST(LIBTORRENT_INTERFACE_VERSION_INFO)
AC_SUBST(LIBTORRENT_INTERFACE_VERSION_NO)
AC_PROG_CXX
AC_SYS_LARGEFILE
AC_C_BIGENDIAN(
AC_DEFINE(IS_BIG_ENDIAN, 1, Big endian),
AC_DEFINE(IS_LITTLE_ENDIAN, 1, Little endian),
AC_MSG_ERROR([Could not determine endianness])
)
AX_CXX_COMPILE_STDCXX(14, noext, mandatory)
RAK_CHECK_CFLAGS
RAK_CHECK_CXXFLAGS
RAK_ENABLE_DEBUG
RAK_ENABLE_EXTRA_DEBUG
RAK_ENABLE_WERROR
TORRENT_ENABLE_ALIGNED
TORRENT_ENABLE_INTERRUPT_SOCKET
TORRENT_ENABLE_ARCH
TORRENT_WITH_SYSROOT
dnl TORRENT_WITH_XFS
TORRENT_WITHOUT_KQUEUE
TORRENT_WITHOUT_EPOLL
TORRENT_CHECK_FALLOCATE
TORRENT_WITH_POSIX_FALLOCATE
TORRENT_WITH_ADDRESS_SPACE
TORRENT_WITHOUT_STATVFS
TORRENT_WITHOUT_STATFS
TORRENT_WITH_INOTIFY
AC_ARG_ENABLE(attribute-visibility,
AS_HELP_STRING([--disable-attribute-visibility],[disable symbol visibility attribute [[default=enable]]]),
[
if test "$enableval" = "yes"; then
CC_ATTRIBUTE_VISIBILITY
fi
],[
CC_ATTRIBUTE_VISIBILITY
])
AC_ARG_ENABLE(execinfo,
AS_HELP_STRING([--disable-execinfo],[disable libexecinfo [[default=enable]]]),
[
if test "$enableval" = "yes"; then
AX_EXECINFO
fi
],[
AX_EXECINFO
])
AX_CHECK_ZLIB
AX_PTHREAD
PKG_CHECK_MODULES([CPPUNIT], [cppunit],, [no_cppunit="yes"])
CFLAGS="$PTHREAD_CFLAGS $CPPUNIT_CFLAGS $CFLAGS"
CXXFLAGS="$PTHREAD_CFLAGS $CPPUNIT_CFLAGS $CXXFLAGS"
LIBS="$PTHREAD_LIBS $CPPUNIT_LIBS $LIBS"
TORRENT_ARG_OPENSSL
TORRENT_ARG_CYRUS_RC4
AC_CHECK_FUNCS(posix_memalign)
TORRENT_CHECK_MADVISE
TORRENT_CHECK_CACHELINE
TORRENT_CHECK_POPCOUNT
TORRENT_DISABLE_PTHREAD_SETNAME_NP
TORRENT_MINCORE
TORRENT_DISABLE_INSTRUMENTATION
LIBTORRENT_LIBS="-ltorrent"
AC_SUBST(LIBTORRENT_LIBS)
LIBTORRENT_CFLAGS=""
AC_SUBST(LIBTORRENT_CFLAGS)
AC_DEFINE(HAVE_CONFIG_H, 1, true if config.h was included)
CC_ATTRIBUTE_UNUSED(
AC_DEFINE([__UNUSED], [__attribute__((unused))], [Wrapper around unused attribute]),
AC_DEFINE([__UNUSED], [], [Null-wrapper if unused attribute is unsupported])
)
AC_CONFIG_FILES([
libtorrent.pc
Makefile
src/Makefile
src/torrent/Makefile
test/Makefile
])
#test/torrent/net/Makefile
#test/net/Makefile
AC_OUTPUT