Add GSM HR reference codec that is automatically downloaded from 3gpp.org
[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.14, 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.14)
37
38
39
40 # Checks for programs.
41 AC_PROG_GREP
42 AC_PROG_CPP
43 AC_PROG_CXX
44 AC_PROG_CC
45 AC_PROG_INSTALL
46 AC_PROG_MAKE_SET
47 AC_PROG_LIBTOOL
48 dnl required, if per binary CFLAGS are used
49 dnl AM_PROG_CC_C_O
50
51
52 # site specific configs
53 dnl enable this to have all special options on one place
54 dnl AC_PRESERVE_HELP_ORDER
55
56 # check for mISDN
57 AC_ARG_WITH([misdn],
58         [AS_HELP_STRING([--with-misdn],
59                         [compile with mISDN driver @<:@default=check@:>@])
60         ],
61         [],
62         [with_misdn="check"])
63
64 AS_IF([test "x$with_misdn" != xno],
65       [AC_CHECK_HEADERS([mISDN/mbuffer.h],
66                         [with_misdn="yes"],
67                         [if test "x$with_misdn" != xcheck ; then
68                       AC_MSG_FAILURE(
69                         [--with-misdn was given, but test for header-file mISDN/mbuffer.h failed])
70                      fi
71                      ])
72       ])
73
74 AM_CONDITIONAL(ENABLE_MISDN, test "x$with_misdn" == "xyes" )
75
76 # check for asterisk
77 AC_ARG_WITH([asterisk],
78         [AS_HELP_STRING([--with-asterisk],
79                         [compile with built-in Asterisk channel driver @<:@default=check@:>@])
80         ],
81         [],
82         [with_asterisk="check"])
83
84 AS_IF([test "x$with_asterisk" != xno],
85       [AC_CHECK_HEADERS([asterisk/compiler.h],
86                         [with_asterisk="yes"],
87                         [if test "x$with_asterisk" != xcheck ; then
88                       AC_MSG_FAILURE(
89                         [--with-asterisk was given, but test for header-file asterisk/compiler.h failed])
90                      fi
91                      ])
92       ])
93
94 if test "x$with_asterisk" = "xyes"; then
95         dnl detect whether asterisk/indications.h defines ast_tone_zone_sound (1.6.2
96         dnl and later), ind_tone_zone_sound (1.6.0) or tone_zone_sound (1.4)
97         ast_tone_zone_sound=
98         apc_test_result=
99         ast_1_8_or_higher=
100
101         AC_CHECK_TYPE([struct ast_tone_zone_sound],
102                 [ast_tone_zone_sound=ast_tone_zone_sound], [], [
103 #include <asterisk.h>
104 #include <asterisk/linkedlists.h>
105 #include <asterisk/indications.h>])
106
107         AS_IF([test "x$ast_tone_zone_sound" = "x"],
108                 [AC_CHECK_TYPE([struct ind_tone_zone_sound],
109                         [ast_tone_zone_sound=ind_tone_zone_sound], [], [
110 #include <asterisk.h>
111 #include <asterisk/linkedlists.h>
112 #include <asterisk/indications.h>])])
113         AS_IF([test "x$ast_tone_zone_sound" = "x"],
114                 [AC_CHECK_TYPE([struct tone_zone_sound],
115                         [ast_tone_zone_sound=tone_zone_sound], [], [
116 #include <asterisk.h>
117 #include <asterisk/indications.h>])])
118
119         if test "x$ast_tone_zone_sound" = "x"; then
120                 AC_MSG_FAILURE([No ast_tone_zone_sound, confused...])
121         fi
122
123
124         AC_CHECK_TYPE([struct ast_party_caller],
125                 [apc_test_result=yes], [], [
126 #include <asterisk.h>
127 #include <asterisk/channel.h>])
128
129         if test "x$apc_test_result" = "xyes"; then
130                 ast_1_8_or_higher="-DAST_1_8_OR_HIGHER"
131         fi
132
133         AST_CFLAGS="-Dast_tone_zone_sound=$ast_tone_zone_sound $ast_1_8_or_higher"
134
135         AC_SUBST([AST_CFLAGS])
136 fi
137
138 AM_CONDITIONAL(ENABLE_ASTERISK_CHANNEL_DRIVER, test "x$with_asterisk" == "xyes" )
139
140 # check for crypto
141 AC_ARG_WITH([ssl],
142         [AS_HELP_STRING([--with-ssl],
143                         [compile with ssl support (libcrypto) @<:@default=check@:>@])
144         ],
145         [],
146         [with_ssl=check])
147 LIBCRYPTO=
148 AS_IF([test "x$with_ssl" != xno],
149       [AC_CHECK_HEADERS([openssl/rsa.h])
150        AC_CHECK_LIB([crypto], [main],
151                     [AC_SUBST([LIBCRYPTO], ["-lcrypto"])
152                      AC_DEFINE([HAVE_LIBCRYPTO], [1],
153                                [Define if you have libcrypto])
154                     ],
155                     [if test "x$with_ssl" != xcheck ; then
156                       AC_MSG_FAILURE(
157                         [--with-ssl was given, but test for libcrypto failed])
158                      fi
159                     ],
160                     -lcrypto
161                    )
162       ]
163      )
164
165 # check for gsm-bs
166 AC_ARG_WITH([gsm-bs],
167         [AS_HELP_STRING([--with-gsm-bs],
168                         [compile with OpenBSC support @<:@default=no@:>@])
169         ],
170         [],
171         [with_gsm_bs="check"])
172
173 AM_CONDITIONAL(ENABLE_GSM_BS, test "x$with_gsm_bs" == "xyes" )
174
175 # check for gsm-ms
176 AC_ARG_WITH([gsm-ms],
177         [AS_HELP_STRING([--with-gsm-ms],
178                         [compile with Osmocom-bb support @<:@default=no@:>@])
179         ],
180         [],
181         [with_gsm_ms="check"])
182
183 AM_CONDITIONAL(ENABLE_GSM_MS, test "x$with_gsm_ms" == "xyes" )
184
185 AM_CONDITIONAL(ENABLE_GSM, test "x$with_gsm_bs" == "xyes" -o "x$with_gsm_ms" == "xyes")
186
187 # check for opencore-amrnb for AMR and EFR decoding
188 found_opencore_amrnb=yes
189 PKG_CHECK_MODULES(OPENCORE_AMRNB, opencore-amrnb >= 0.1.0, , found_opencore_amrnb=no)
190 AM_CONDITIONAL(ENABLE_GSMAMR, test "$found_opencore_amrnb" = "yes")
191 if test "$found_opencore_amrnb" = yes; then
192         AC_DEFINE(HAVE_OPENCORE_AMRNB, 1, [Define to 1 if OpenCore AMR-NB library is available])
193 fi
194
195 # check for HR codec
196 AC_ARG_ENABLE(gsmhr,
197         [AS_HELP_STRING(
198                 [--enable-gsmhr],
199                 [Enable support for GSM HR codec using reference code]
200         )],
201         [enable_gsmhr=1], [enable_gsmhr=0])
202 AM_CONDITIONAL(ENABLE_GSMHR, test "x$enable_gsmhr" = "x1")
203 if test "x$enable_gsmhr" = "x1"; then
204         AM_PATH_PYTHON([2.4])
205         AC_DEFINE(HAVE_LIBGSMHR, 1, [Define to 1 if libgsmhr is available])
206 fi
207
208 # check for ss5
209 AC_ARG_WITH([ss5],
210         [AS_HELP_STRING([--with-ss5],
211                         [compile with CCITT No. 5 support @<:@default=no@:>@])
212         ],
213         [],
214         [with_ss5="check"])
215
216 AM_CONDITIONAL(ENABLE_SS5, test "x$with_ss5" == "xyes" )
217
218 # check for SIP
219 AC_ARG_WITH([sip],
220         [AS_HELP_STRING([--with-sip],
221                         [compile with SIP support (sofia-sip is required) @<:@default=no@:>@])
222         ],
223         [],
224         [with_sip="check"])
225
226 AM_CONDITIONAL(ENABLE_SIP, test "x$with_sip" == "xyes" )
227
228 AS_IF([test "x$with_sip" == xyes -o "x$with_sip" == xyes], [
229                 PKG_CHECK_MODULES(SOFIA, sofia-sip-ua >= 1.12)
230         ])
231
232 # Checks for libraries.
233 AC_CHECK_LIB([m], [main])
234 AC_CHECK_LIB([ncurses], [main])
235 AC_CHECK_LIB([pthread], [main])
236
237 # Checks for header files.
238 AC_HEADER_DIRENT
239 AC_HEADER_STDC
240 AC_HEADER_SYS_WAIT
241 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])
242
243 # Checks for typedefs, structures, and compiler characteristics.
244 AC_HEADER_STDBOOL
245 AC_C_CONST
246 AC_C_INLINE
247 AC_TYPE_PID_T
248 AC_HEADER_TIME
249 AC_STRUCT_TM
250
251 # Checks for library functions.
252 AC_FUNC_FORK
253 AC_PROG_GCC_TRADITIONAL
254 AC_FUNC_LSTAT
255 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
256 AC_FUNC_MALLOC
257 AC_FUNC_MEMCMP
258 AC_TYPE_SIGNAL
259 AC_FUNC_STRNLEN
260 AC_FUNC_STRTOD
261 AC_FUNC_VPRINTF
262 AC_CHECK_FUNCS([gettimeofday memmove memset mkdir socket strcasecmp strchr strerror strncasecmp strstr strtol strtoul])
263
264
265 AC_CONFIG_FILES([Makefile include/Makefile include/gsmhr/Makefile libgsmhr/Makefile])
266 AC_OUTPUT
267
268
269 AS_IF([test "x$with_misdn" == xyes],[AC_MSG_NOTICE( Compiled with mISDN support )],[AC_MSG_NOTICE( Not compiled with mISDN support)])
270 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)])
271 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)])
272 AS_IF([test "x$enable_gsmhr" == x1],[AC_MSG_NOTICE( Compiled with GSM half rate codec support )],[AC_MSG_NOTICE( Not compiled with GSM half rate codec support)])
273 AS_IF([test "x$found_opencore_amrnb" == xyes],[AC_MSG_NOTICE( Compiled with GSM AMR codec support )],[AC_MSG_NOTICE( Not compiled with GSM AMR codec support)])
274 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)])
275 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)])
276 AS_IF([test "x$with_sip" == xyes],[AC_MSG_NOTICE( Compiled with SIP support )],[AC_MSG_NOTICE( Not compiled with SIP support)])
277