4f02052dcb3456e7876861d09ffe8ac698bb9431
[lcr.git] / configure.ac
1 ##   -*- autoconf -*-
2
3 dnl    This file is part of linux-call-router
4 dnl    Copyright (C) 2007 Joerg Habenicht (j.habenicht@gmx.de)
5 dnl    Copyright (C) 2008 Peter Schlaile (peter -at- schlaile.de)
6 dnl    Copyright (C) 2010 Andreas Eversberg (jolly@eversberg.eu)
7
8 dnl    This program is free software; you can redistribute it and/or
9 dnl    modify it under the terms of the GNU General Public License as
10 dnl    published by the Free Software Foundation; either
11 dnl    version 2 of the License, or (at your option) any later version.
12
13 dnl    This program is distributed in the hope that it will be useful,
14 dnl    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 dnl    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 dnl    GNU General Public License for more details.
17
18 dnl    You should have received a copy of the GNU General Public License
19 dnl    along with this library; see the file COPYING.  If not, write to
20 dnl    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 dnl    Boston, MA 02110-1301, USA.
22
23
24
25 dnl This keeps being the first instruction.
26 dnl Change the 2nd argument if the version increases
27 dnl 1st + 2nd argument is used for distribution package name
28 AC_INIT(lcr, 1.12, andreas@eversberg.eu)
29 AC_PREREQ(2.59)
30 AC_CONFIG_SRCDIR([main.c])
31 AM_CONFIG_HEADER(config.h)
32
33 # fix warnings from autoconf + automake
34 AC_GNU_SOURCE
35 # AC_USE_SYSTEM_EXTENSIONS
36 AM_INIT_AUTOMAKE(lcr,1.12)
37
38
39
40 # Checks for programs.
41 AC_PROG_CPP
42 AC_PROG_CXX
43 AC_PROG_CC
44 AC_PROG_INSTALL
45 AC_PROG_MAKE_SET
46 dnl required, if per binary CFLAGS are used
47 dnl AM_PROG_CC_C_O
48
49
50 # site specific configs
51 dnl enable this to have all special options on one place
52 dnl AC_PRESERVE_HELP_ORDER
53
54 # check for mISDN
55 AC_ARG_WITH([misdn],
56         [AS_HELP_STRING([--with-misdn],
57                         [compile with mISDN driver @<:@default=check@:>@])
58         ],
59         [],
60         [with_misdn="check"])
61
62 AS_IF([test "x$with_misdn" != xno],
63       [AC_CHECK_HEADERS([mISDN/mbuffer.h],
64                         [with_misdn="yes"],
65                         [if test "x$with_misdn" != xcheck ; then
66                       AC_MSG_FAILURE(
67                         [--with-misdn was given, but test for header-file mISDN/mbuffer.h failed])
68                      fi
69                      ])
70       ])
71
72 AM_CONDITIONAL(ENABLE_MISDN, test "x$with_misdn" == "xyes" )
73
74 # check for asterisk
75 AC_ARG_WITH([asterisk],
76         [AS_HELP_STRING([--with-asterisk],
77                         [compile with built-in Asterisk channel driver @<:@default=check@:>@])
78         ],
79         [],
80         [with_asterisk="check"])
81
82 AS_IF([test "x$with_asterisk" != xno],
83       [AC_CHECK_HEADERS([asterisk/compiler.h],
84                         [with_asterisk="yes"],
85                         [if test "x$with_asterisk" != xcheck ; then
86                       AC_MSG_FAILURE(
87                         [--with-asterisk was given, but test for header-file asterisk/compiler.h failed])
88                      fi
89                      ])
90       ])
91
92 if test "x$with_asterisk" = "xyes"; then
93         dnl detect whether asterisk/indications.h defines ast_tone_zone_sound (1.6.2
94         dnl and later), ind_tone_zone_sound (1.6.0) or tone_zone_sound (1.4)
95         ast_tone_zone_sound=
96         apc_test_result=
97         ast_1_8_or_higher=
98
99         AC_CHECK_TYPE([struct ast_tone_zone_sound],
100                 [ast_tone_zone_sound=ast_tone_zone_sound], [], [
101 #include <asterisk.h>
102 #include <asterisk/linkedlists.h>
103 #include <asterisk/indications.h>])
104
105         AS_IF([test "x$ast_tone_zone_sound" = "x"],
106                 [AC_CHECK_TYPE([struct ind_tone_zone_sound],
107                         [ast_tone_zone_sound=ind_tone_zone_sound], [], [
108 #include <asterisk.h>
109 #include <asterisk/linkedlists.h>
110 #include <asterisk/indications.h>])])
111         AS_IF([test "x$ast_tone_zone_sound" = "x"],
112                 [AC_CHECK_TYPE([struct tone_zone_sound],
113                         [ast_tone_zone_sound=tone_zone_sound], [], [
114 #include <asterisk.h>
115 #include <asterisk/indications.h>])])
116
117         if test "x$ast_tone_zone_sound" = "x"; then
118                 AC_MSG_FAILURE([No ast_tone_zone_sound, confused...])
119         fi
120
121
122         AC_CHECK_TYPE([struct ast_party_caller],
123                 [apc_test_result=yes], [], [
124 #include <asterisk.h>
125 #include <asterisk/channel.h>])
126
127         if test "x$apc_test_result" = "xyes"; then
128                 ast_1_8_or_higher="-DAST_1_8_OR_HIGHER"
129         fi
130
131         AST_CFLAGS="-Dast_tone_zone_sound=$ast_tone_zone_sound $ast_1_8_or_higher"
132
133         AC_SUBST([AST_CFLAGS])
134 fi
135
136 AM_CONDITIONAL(ENABLE_ASTERISK_CHANNEL_DRIVER, test "x$with_asterisk" == "xyes" )
137
138 # check for crypto
139 AC_ARG_WITH([ssl],
140         [AS_HELP_STRING([--with-ssl],
141                         [compile with ssl support (libcrypto) @<:@default=check@:>@])
142         ],
143         [],
144         [with_ssl=check])
145 LIBCRYPTO=
146 AS_IF([test "x$with_ssl" != xno],
147       [AC_CHECK_HEADERS([openssl/rsa.h])
148        AC_CHECK_LIB([crypto], [main],
149                     [AC_SUBST([LIBCRYPTO], ["-lcrypto"])
150                      AC_DEFINE([HAVE_LIBCRYPTO], [1],
151                                [Define if you have libcrypto])
152                     ],
153                     [if test "x$with_ssl" != xcheck ; then
154                       AC_MSG_FAILURE(
155                         [--with-ssl was given, but test for libcrypto failed])
156                      fi
157                     ],
158                     -lcrypto
159                    )
160       ]
161      )
162
163 # check for gsm-bs
164 AC_ARG_WITH([gsm-bs],
165         [AS_HELP_STRING([--with-gsm-bs],
166                         [compile with OpenBSC support @<:@default=no@:>@])
167         ],
168         [],
169         [with_gsm_bs="check"])
170
171 AM_CONDITIONAL(ENABLE_GSM_BS, test "x$with_gsm_bs" == "xyes" )
172
173 # check for gsm-ms
174 AC_ARG_WITH([gsm-ms],
175         [AS_HELP_STRING([--with-gsm-ms],
176                         [compile with Osmocom-bb support @<:@default=no@:>@])
177         ],
178         [],
179         [with_gsm_ms="check"])
180
181 AM_CONDITIONAL(ENABLE_GSM_MS, test "x$with_gsm_ms" == "xyes" )
182
183 AM_CONDITIONAL(ENABLE_GSM, test "x$with_gsm_bs" == "xyes" -o "x$with_gsm_ms" == "xyes")
184
185 AS_IF([test "x$with_gsm_bs" == xyes -o "x$with_gsm_ms" == xyes],
186         [AC_MSG_CHECKING(/usr/include/gsm/gsm.h)
187         if test -e /usr/include/gsm/gsm.h; then
188                 AC_MSG_RESULT(yes)
189         else
190         AC_MSG_FAILURE([You have enabled GSM, but /usr/include/gsm/gsm.h not found! Please install the lossy GSM codec. Be sure to install it in /usr/ and not in /usr/local/. You will also find a copy on http://www.linux-call-router.de.])
191         fi
192         ])
193
194 # check for ss5
195 AC_ARG_WITH([ss5],
196         [AS_HELP_STRING([--with-ss5],
197                         [compile with CCITT No. 5 support @<:@default=no@:>@])
198         ],
199         [],
200         [with_ss5="check"])
201
202 AM_CONDITIONAL(ENABLE_SS5, test "x$with_ss5" == "xyes" )
203
204 # check for SIP
205 AC_ARG_WITH([sip],
206         [AS_HELP_STRING([--with-sip],
207                         [compile with SIP support (sofia-sip is required) @<:@default=no@:>@])
208         ],
209         [],
210         [with_sip="check"])
211
212 AM_CONDITIONAL(ENABLE_SIP, test "x$with_sip" == "xyes" )
213
214 AS_IF([test "x$with_sip" == xyes -o "x$with_sip" == xyes], [
215                 PKG_CHECK_MODULES(SOFIA, sofia-sip-ua >= 1.12)
216         ])
217
218 # Checks for libraries.
219 AC_CHECK_LIB([m], [main])
220 AC_CHECK_LIB([ncurses], [main])
221 AC_CHECK_LIB([pthread], [main])
222
223 # Checks for header files.
224 AC_HEADER_DIRENT
225 AC_HEADER_STDC
226 AC_HEADER_SYS_WAIT
227 AC_CHECK_HEADERS([fcntl.h netinet/in.h stdlib.h string.h sys/file.h sys/ioctl.h sys/socket.h sys/time.h unistd.h ctype.h assert.h assert.h])
228
229 # Checks for typedefs, structures, and compiler characteristics.
230 AC_HEADER_STDBOOL
231 AC_C_CONST
232 AC_C_INLINE
233 AC_TYPE_PID_T
234 AC_HEADER_TIME
235 AC_STRUCT_TM
236
237 # Checks for library functions.
238 AC_FUNC_FORK
239 AC_PROG_GCC_TRADITIONAL
240 AC_FUNC_LSTAT
241 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
242 AC_FUNC_MALLOC
243 AC_FUNC_MEMCMP
244 AC_TYPE_SIGNAL
245 AC_FUNC_STRNLEN
246 AC_FUNC_STRTOD
247 AC_FUNC_VPRINTF
248 AC_CHECK_FUNCS([gettimeofday memmove memset mkdir socket strcasecmp strchr strerror strncasecmp strstr strtol strtoul])
249
250
251 AC_CONFIG_FILES([Makefile])
252 AC_OUTPUT
253
254
255 AS_IF([test "x$with_misdn" == xyes],[AC_MSG_NOTICE( Compiled with mISDN support )],[AC_MSG_NOTICE( Not compiled with mISDN support)])
256 AS_IF([test "x$with_gsm_bs" == xyes],[AC_MSG_NOTICE( Compiled with GSM network side support )],[AC_MSG_NOTICE( Not compiled with GSM network side support)])
257 AS_IF([test "x$with_gsm_ms" == xyes],[AC_MSG_NOTICE( Compiled with GSM mobile side support )],[AC_MSG_NOTICE( Not compiled with GSM mobile side support)])
258 AS_IF([test "x$with_asterisk" == xyes],[AC_MSG_NOTICE( Compiled with Asterisk channel driver support )],[AC_MSG_NOTICE( Not compiled with Asterisk channel driver support)])
259 AS_IF([test "x$with_ss5" == xyes],[AC_MSG_NOTICE( Compiled with CCITT No.5 support )],[AC_MSG_NOTICE( Not compiled with CCITT No.5 support)])
260 AS_IF([test "x$with_sip" == xyes],[AC_MSG_NOTICE( Compiled with SIP support )],[AC_MSG_NOTICE( Not compiled with SIP support)])
261