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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
AC_PREREQ([2.59])
# Making releases:
# set the new version number:
# odd minor -> development series
# even minor -> stable series
# increment micro for each release within a series
# set wockynano_version to 0.
m4_define([wocky_major_version], [0])
m4_define([wocky_minor_version], [0])
m4_define([wocky_micro_version], [0])
m4_define([wocky_nano_version], [0])
# Some magic
m4_define([wocky_base_version],
[wocky_major_version.wocky_minor_version.wocky_micro_version])
m4_define([wocky_version],
[m4_if(wocky_nano_version, 0, [wocky_base_version], [wocky_base_version].[wocky_nano_version])])dnl
AC_INIT([Wocky], [wocky_version])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([1.9 -Wno-portability tar-ustar])
AM_PROG_LIBTOOL
AM_CONFIG_HEADER(config.h)
dnl check for tools
AC_PROG_CC
AC_PROG_CC_STDC
AM_PROG_AS
AM_PROG_MKDIR_P
dnl decide error flags
ifelse(wocky_nano_version, 0,
[ official_release=yes ],
[ official_release=no ])
TP_COMPILER_WARNINGS([ERROR_CFLAGS], [test "x$official_release" = xno],
[all \
extra \
declaration-after-statement \
shadow \
strict-prototypes \
missing-prototypes \
sign-compare \
nested-externs \
pointer-arith \
format-security \
init-self],
[missing-field-initializers \
unused-parameter])
AC_SUBST([ERROR_CFLAGS])
ifelse(wocky_nano_version, 0,
[ # Wocky is version x.y.z - disable coding style checks by default
AC_ARG_ENABLE(coding-style-checks,
AC_HELP_STRING([--enable-coding-style-checks],
[check coding style using grep]),
[ENABLE_CODING_STYLE_CHECKS=$enableval], [ENABLE_CODING_STYLE_CHECKS=no] )
],
[ # Wocky is version x.y.z.1 - enable coding style checks by default
AC_ARG_ENABLE(coding-style-checks,
AC_HELP_STRING([--disable-coding-style-checks],
[don't check coding style using grep]),
[ENABLE_CODING_STYLE_CHECKS=$enableval], [ENABLE_CODING_STYLE_CHECKS=yes])
])
if test x$enable_debug = xyes; then
AC_DEFINE(ENABLE_DEBUG, [], [Enable debug code])
fi
AC_SUBST([ENABLE_CODING_STYLE_CHECKS])
dnl debugging stuff
AC_ARG_ENABLE(debug,
AC_HELP_STRING([--disable-debug],[compile without debug code]),
[
case "${enableval}" in
yes|no) enable="${enableval}" ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
esac
],
[enable=yes])
if test "$enable" = yes; then
AC_DEFINE(ENABLE_DEBUG, [], [Enable debug code])
fi
dnl Check for code generation tools
AC_HEADER_STDC([])
AC_C_INLINE
dnl Check endianness (Needed for the sha1 implementation)
AC_C_BIGENDIAN
dnl GTK docs
GTK_DOC_CHECK
dnl Check for Glib
PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.16, gobject-2.0 >= 2.16, gthread-2.0 >=
2.4, gio-2.0, gnutls])
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
AC_SUBST(GLIB_GENMARSHAL)
dnl Check for libxml2
PKG_CHECK_MODULES(LIBXML2, [libxml-2.0])
dnl check for libsasl2 (for sasl test)
AC_CHECK_LIB(sasl2, sasl_server_new,
[LIBSASL2_LIBS="-lsasl2"
LIBSASL2_CFLAGS=""
HAVE_LIBSASL2=yes
AC_DEFINE(HAVE_LIBSASL2, 1,
[Define if libsasl2 support is available])
],
[ AC_MSG_WARN(libsasl2 not found: not building sasl tests) ] )
AC_SUBST(LIBSASL2_LIBS)
AC_SUBST(LIBSASL2_CFLAGS)
AM_CONDITIONAL(HAVE_LIBSASL2, test "x$HAVE_LIBSASL2" = "xyes")
AC_SUBST(LIBXML2_CFLAGS)
AC_SUBST(LIBXML2_LIBS)
AC_ARG_ENABLE(coverage, AC_HELP_STRING([--enable-coverage],
[compile with coverage profiling instrumentation (gcc only)]),
[
case "${enableval}" in
"yes"|"no") coverage="${enableval}" ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-coverage) ;;
esac
]
)
WOCKY_GCOV(${coverage})
WOCKY_LCOV(${coverage})
AC_SUBST(PACKAGE_STRING)
GTK_DOC_CHECK([1.10])
SHAVE_INIT(.)
AC_OUTPUT( Makefile \
wocky/Makefile \
wocky/wocky-uninstalled.pc \
m4/Makefile \
tools/Makefile \
examples/Makefile \
tests/Makefile \
docs/Makefile \
docs/reference/Makefile \
shave \
shave-libtool \
)
|