eaa0af50c4798ce6cf824d85b8783ee53ba3ca1e
[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
7 dnl    This program is free software; you can redistribute it and/or
8 dnl    modify it under the terms of the GNU General Public License as
9 dnl    published by the Free Software Foundation; either
10 dnl    version 2 of the License, or (at your option) any later version.
11
12 dnl    This program is distributed in the hope that it will be useful,
13 dnl    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 dnl    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 dnl    GNU General Public License for more details.
16
17 dnl    You should have received a copy of the GNU General Public License
18 dnl    along with this library; see the file COPYING.  If not, write to
19 dnl    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 dnl    Boston, MA 02110-1301, USA.
21
22
23
24 dnl This keeps being the first instruction.
25 dnl Change the 2nd argument if the version increases
26 dnl 1st + 2nd argument is used for distribution package name
27 AC_INIT(lcr, 1.6, andreas@eversberg.eu)
28 AC_PREREQ(2.59)
29 AC_CONFIG_SRCDIR([main.c])
30 AM_CONFIG_HEADER(config.h)
31
32 # fix warnings from autoconf + automake
33 AC_GNU_SOURCE
34 # AC_USE_SYSTEM_EXTENSIONS
35 AM_INIT_AUTOMAKE(lcr,1.6)
36
37
38
39 # Checks for programs.
40 AC_PROG_CPP
41 AC_PROG_CXX
42 AC_PROG_CC
43 AC_PROG_INSTALL
44 AC_PROG_MAKE_SET
45 dnl required, if per binary CFLAGS are used
46 dnl AM_PROG_CC_C_O
47
48
49 # site specific configs
50 dnl enable this to have all special options on one place
51 dnl AC_PRESERVE_HELP_ORDER
52
53 # check for asterisk
54 AC_ARG_WITH([asterisk],
55         [AS_HELP_STRING([--with-asterisk],
56                         [compile with built-in Asterisk channel driver @<:@default=check@:>@])
57         ],
58         [],
59         [with_asterisk="check"])
60
61 AS_IF([test "x$with_asterisk" != xno],
62       [AC_CHECK_HEADERS([asterisk/compiler.h],
63                         [with_asterisk="yes"],
64                         [if test "x$with_asterisk" != xcheck ; then
65                       AC_MSG_FAILURE(
66                         [--with-asterisk was given, but test for header-file asterisk/compiler.h failed])
67                      fi
68                      ])
69       ])
70
71 AM_CONDITIONAL(ENABLE_ASTERISK_CHANNEL_DRIVER, test "x$with_asterisk" == "xyes" )
72
73 # check for crypto
74 AC_ARG_WITH([ssl],
75         [AS_HELP_STRING([--with-ssl],
76                         [compile with ssl support (libcrypto) @<:@default=check@:>@])
77         ],
78         [],
79         [with_ssl=check])
80 LIBCRYPTO=
81 AS_IF([test "x$with_ssl" != xno],
82       [AC_CHECK_HEADERS([openssl/rsa.h])
83        AC_CHECK_LIB([crypto], [main],
84                     [AC_SUBST([LIBCRYPTO], ["-lcrypto"])
85                      AC_DEFINE([HAVE_LIBCRYPTO], [1],
86                                [Define if you have libcrypto])
87                     ],
88                     [if test "x$with_ssl" != xcheck ; then
89                       AC_MSG_FAILURE(
90                         [--with-ssl was given, but test for libcrypto failed])
91                      fi
92                     ],
93                     -lcrypto
94                    )
95       ]
96      )
97
98 # check for gsm
99 AC_ARG_WITH([gsm],
100         [AS_HELP_STRING([--with-gsm],
101                         [compile with OpenBSC support @<:@default=no@:>@])
102         ],
103         [],
104         [with_gsm="check"])
105
106 AS_IF([test "x$with_gsm" != xno],
107       [AC_CHECK_FILE([openbsc/include/openbsc/gsm_data.h],
108                         [with_gsm="yes"],
109                         [if test "x$with_gsm" != xcheck ; then
110                           AC_MSG_FAILURE(
111                             [--with-gsm was given, but openbsc/include/openbsc/gsm_data.h was not found! Pleas link OpenBSC source directory to LCR source directory: ln -s path_to_openbsc/openbsc/ .])
112                      fi
113                      ])
114       ])
115
116 AM_CONDITIONAL(ENABLE_GSM, test "x$with_gsm" == "xyes" )
117
118 # Checks for libraries.
119 AC_CHECK_LIB([m], [main])
120 AC_CHECK_LIB([ncurses], [main])
121 AC_CHECK_LIB([pthread], [main])
122
123 # Checks for header files.
124 AC_HEADER_DIRENT
125 AC_HEADER_STDC
126 AC_HEADER_SYS_WAIT
127 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 mISDNuser/mbuffer.h assert.h])
128
129 # Checks for typedefs, structures, and compiler characteristics.
130 AC_HEADER_STDBOOL
131 AC_C_CONST
132 AC_C_INLINE
133 AC_TYPE_PID_T
134 AC_HEADER_TIME
135 AC_STRUCT_TM
136
137 # Checks for library functions.
138 AC_FUNC_FORK
139 AC_PROG_GCC_TRADITIONAL
140 AC_FUNC_LSTAT
141 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK
142 AC_FUNC_MALLOC
143 AC_FUNC_MEMCMP
144 AC_TYPE_SIGNAL
145 AC_FUNC_STRNLEN
146 AC_FUNC_STRTOD
147 AC_FUNC_VPRINTF
148 AC_CHECK_FUNCS([gettimeofday memmove memset mkdir socket strcasecmp strchr strerror strncasecmp strstr strtol strtoul])
149
150
151 AC_CONFIG_FILES([Makefile])
152 AC_OUTPUT