blob: a8c74445656eef48a20f6e42869bf3de5542dc0a [file] [log] [blame]
Benny Prijono8a9b3b22010-01-14 14:46:54 +00001AC_INIT(pjproject,1.x)
Benny Prijono5b818b22006-09-17 22:58:51 +00002
3host_orig="$host"
4
Benny Prijonoc4c61d02006-08-20 20:47:34 +00005AC_CANONICAL_BUILD
6AC_CANONICAL_HOST
Benny Prijonoa9b372a2006-07-24 02:07:11 +00007AC_CANONICAL_TARGET
Benny Prijonoc4c61d02006-08-20 20:47:34 +00008AC_CONFIG_HEADER([pjlib/include/pj/compat/os_auto.h
9 pjlib/include/pj/compat/m_auto.h
Benny Prijonofe9bffd2007-01-27 17:44:13 +000010 pjmedia/include/pjmedia/config_auto.h
11 pjmedia/include/pjmedia-codec/config_auto.h
Benny Prijono7e0d75f2006-12-25 20:34:14 +000012 pjsip/include/pjsip/sip_autoconf.h
Benny Prijonoc4c61d02006-08-20 20:47:34 +000013 ])
14AC_CONFIG_FILES([build.mak
15 build/os-auto.mak
Benny Prijono8ec5eae2010-05-12 10:59:20 +000016 build/cc-auto.mak
Benny Prijono8a9b3b22010-01-14 14:46:54 +000017 pjlib/build/os-auto.mak
18 pjlib-util/build/os-auto.mak
Benny Prijonoc4c61d02006-08-20 20:47:34 +000019 pjmedia/build/os-auto.mak
20 pjsip/build/os-auto.mak
Benny Prijonod9627842007-04-18 09:24:31 +000021 third_party/build/os-auto.mak
Benny Prijono8a9b3b22010-01-14 14:46:54 +000022 third_party/build/portaudio/os-auto.mak
23 ])
Benny Prijonoc1fe23d2006-09-13 09:38:06 +000024
Benny Prijono12483112007-03-12 10:44:38 +000025
Benny Prijonoc1fe23d2006-09-13 09:38:06 +000026dnl
27dnl Setup default CFLAGS
28dnl
29if test "$CFLAGS" = ""; then
Benny Prijonod1459822006-10-04 20:56:39 +000030 CFLAGS="-O2"
Benny Prijonoc1fe23d2006-09-13 09:38:06 +000031else
32 CFLAGS="$CFLAGS"
33fi
34
35CXXFLAGS="$CFLAGS $CXXFLAGS"
36
Benny Prijono8ec5eae2010-05-12 10:59:20 +000037dnl #
38dnl # Configure tools
39dnl #
Benny Prijonoa9b372a2006-07-24 02:07:11 +000040AC_PROG_CC
Benny Prijonoc4c61d02006-08-20 20:47:34 +000041AC_PROG_CXX
Benny Prijonoa9b372a2006-07-24 02:07:11 +000042AC_LANG_C
43
Benny Prijonofe3bf0e2010-08-05 06:27:20 +000044dnl #
45dnl # Setup CROSS_COMPILE variable
46dnl #
47if test -z "$CROSS_COMPILE"; then
48 CROSS_COMPILE=`echo ${CC} | sed 's/gcc//'`
49fi
50
Benny Prijono2d1f1b62010-05-17 16:09:12 +000051if test "$AR" = ""; then AR="${CROSS_COMPILE}ar rv"; fi
Benny Prijono8ec5eae2010-05-12 10:59:20 +000052AC_SUBST(AR)
53if test "$LD" = ""; then LD="$CC"; fi
54AC_SUBST(LD)
55if test "$LDOUT" = ""; then LDOUT="-o"; fi
56AC_SUBST(LDOUT)
Benny Prijono2d1f1b62010-05-17 16:09:12 +000057if test "$RANLIB" = ""; then RANLIB="${CROSS_COMPILE}ranlib"; fi
Benny Prijono8ec5eae2010-05-12 10:59:20 +000058AC_SUBST(RANLIB)
59if test "$OBJEXT" = ""; then OBJEXT='o'; fi
60AC_SUBST(OBJEXT)
61if test "$LIBEXT" = ""; then LIBEXT='a'; fi
62AC_SUBST(LIBEXT)
63if test "$LIBEXT2" = ""; then LIBEXT2=""; fi
64AC_SUBST(LIBEXT2)
65if test "$CC_OUT" = ""; then CC_OUT="-o"; fi
66AC_SUBST(CC_OUT)
67if test "$CC_INC" = ""; then CC_INC="-I"; fi
68AC_SUBST(CC_INC)
69if test "$CC_DEF" = ""; then CC_DEF="-D"; fi
70AC_SUBST(CC_DEF)
71if test "$CC_OPTIMIZE" = ""; then CC_OPTIMIZE="-O2"; fi
72AC_SUBST(CC_OPTIMIZE)
73if test "$CC_CFLAGS" = ""; then CC_CFLAGS="-Wall"; fi
74AC_SUBST(CC_CFLAGS)
75
76
77
Benny Prijono12483112007-03-12 10:44:38 +000078AC_SUBST(ac_pjdir)
Benny Prijono0822c192008-08-21 20:59:58 +000079AC_SUBST(ac_build_mak_vars)
Benny Prijonofe3bf0e2010-08-05 06:27:20 +000080
81case $host in
Benny Prijono53847a32007-09-24 16:10:13 +000082 *mingw* | *cygw* | *win32* | *w32* )
Benny Prijonofe3bf0e2010-08-05 06:27:20 +000083 if pwd -W 2&> /dev/null; then
84 ac_pjdir=`pwd -W`
85 else
86 # We're probably cross-compiling mingw on Linux
87 ac_pjdir=`pwd`
88 fi
Benny Prijono53847a32007-09-24 16:10:13 +000089 ;;
90 *)
91 ac_pjdir=`pwd`
92 ;;
93esac
Benny Prijono12483112007-03-12 10:44:38 +000094
Benny Prijonoc4c61d02006-08-20 20:47:34 +000095AC_CHECK_LIB(pthread,pthread_create)
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +000096AC_CHECK_LIB(wsock32,puts)
97AC_CHECK_LIB(ws2_32,puts)
98AC_CHECK_LIB(ole32,puts)
99AC_CHECK_LIB(winmm,puts)
100AC_CHECK_LIB(socket,puts)
101AC_CHECK_LIB(rt,puts)
102AC_CHECK_LIB(nsl,puts)
Benny Prijono4e48b512007-05-16 13:41:00 +0000103AC_CHECK_LIB(uuid,uuid_generate)
104AC_CHECK_LIB(uuid,uuid_generate,[ac_has_uuid_lib=1])
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000105
106AC_MSG_RESULT([Setting PJ_M_NAME to $target_cpu])
107AC_DEFINE_UNQUOTED(PJ_M_NAME,["$target_cpu"])
108
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +0000109dnl
Benny Prijono1d971622006-09-10 22:27:40 +0000110dnl Memory alignment detection
111dnl
112AC_MSG_CHECKING([memory alignment])
113case $target in
Benny Prijonob18e9502010-05-19 05:51:38 +0000114 sparc64-* | ia64-* | x86_64-* )
Benny Prijono1d971622006-09-10 22:27:40 +0000115 AC_DEFINE(PJ_POOL_ALIGNMENT, 8)
116 AC_MSG_RESULT([8 bytes])
117 ;;
118 * )
119 AC_DEFINE(PJ_POOL_ALIGNMENT, 4)
120 AC_MSG_RESULT([4 bytes (default)])
121 ;;
122esac
123
124
125dnl
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +0000126dnl Endianness detection
127dnl
Benny Prijonob466e232006-09-10 08:53:59 +0000128AC_C_BIGENDIAN
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000129
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +0000130dnl
131dnl Legacy macros
132dnl
133case $target in
134 *mingw* | *cygw* | *win32* | *w32* )
135 AC_DEFINE(PJ_WIN32,1)
136 AC_DEFINE(PJ_WIN32_WINNT,0x0400)
137 AC_DEFINE(WIN32_LEAN_AND_MEAN)
138 ;;
139 *darwin*)
140 AC_DEFINE(PJ_DARWINOS,1)
141 ;;
142 *linux*)
143 AC_DEFINE(PJ_LINUX,1)
144 ;;
145 *rtems*)
146 AC_DEFINE(PJ_RTEMS,1)
147 ;;
148 *sunos* | *solaris* )
149 AC_DEFINE(PJ_SUNOS,1)
150 ;;
151 *)
152 ;;
153esac
154
155
156
157
Benny Prijonob466e232006-09-10 08:53:59 +0000158dnl # --disable-floating-point option
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000159AC_ARG_ENABLE(floating-point,
160 AC_HELP_STRING([--disable-floating-point],
161 [Disable floating point where possible]),
162 [if test "$enable_floating_point" = "no"; then
163 AC_DEFINE(PJ_HAS_FLOATING_POINT,0)
164 AC_MSG_RESULT([Checking if floating point is disabled... yes])
165 fi],
166 [
167 AC_DEFINE(PJ_HAS_FLOATING_POINT,1)
168 AC_MSG_RESULT([Checking if floating point is disabled... no])
169 AC_CHECK_LIB(m,fmod)
170 ])
171
172
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000173AC_CHECK_HEADER(arpa/inet.h,[AC_DEFINE(PJ_HAS_ARPA_INET_H,1)])
174AC_CHECK_HEADER(assert.h,[AC_DEFINE(PJ_HAS_ASSERT_H,1)])
175AC_CHECK_HEADER(ctype.h,[AC_DEFINE(PJ_HAS_CTYPE_H,1)])
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +0000176
177case $target in
178 *mingw* | *cygw* | *win32* | *w32* )
179 AC_DEFINE(PJ_HAS_ERRNO_H,0)
180 ;;
181 *)
182 AC_CHECK_HEADER(errno.h,[AC_DEFINE(PJ_HAS_ERRNO_H,1)])
183 ;;
184esac
185
Benny Prijono1d481ab2008-01-24 15:27:30 +0000186AC_CHECK_HEADER(fcntl.h,[AC_DEFINE(PJ_HAS_FCNTL_H,1)])
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000187AC_CHECK_HEADER(linux/socket.h,[AC_DEFINE(PJ_HAS_LINUX_SOCKET_H,1)])
Benny Prijonoe3e65802011-02-28 07:44:19 +0000188AC_CHECK_HEADER(limits.h,[AC_DEFINE(PJ_HAS_LIMITS_H,1)])
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000189AC_CHECK_HEADER(malloc.h,[AC_DEFINE(PJ_HAS_MALLOC_H,1)])
190AC_CHECK_HEADER(netdb.h,[AC_DEFINE(PJ_HAS_NETDB_H,1)])
Benny Prijono37fc9de2008-08-04 14:45:02 +0000191AC_CHECK_HEADER(netinet/in_systm.h,[AC_DEFINE(PJ_HAS_NETINET_IN_SYSTM_H,1)])
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000192AC_CHECK_HEADER(netinet/in.h,[AC_DEFINE(PJ_HAS_NETINET_IN_H,1)])
Benny Prijono37fc9de2008-08-04 14:45:02 +0000193AC_CHECK_HEADER(netinet/ip.h,[AC_DEFINE(PJ_HAS_NETINET_IP_H,1)],[],
Benny Prijonod5233702010-01-13 13:09:45 +0000194 [#if PJ_HAS_SYS_TYPES_H
195 # include <sys/types.h>
196 #endif
197 #if PJ_HAS_NETINET_IN_SYSTM_H
Benny Prijono37fc9de2008-08-04 14:45:02 +0000198 # include <netinet/in_systm.h>
199 #endif
Benny Prijonod5233702010-01-13 13:09:45 +0000200 #if PJ_HAS_NETINET_IN_H
201 # include <netinet/in.h>
202 #endif
Benny Prijono37fc9de2008-08-04 14:45:02 +0000203 ])
Benny Prijono1d61ba52009-10-24 00:00:40 +0000204AC_CHECK_HEADER(netinet/tcp.h,[AC_DEFINE(PJ_HAS_NETINET_TCP_H,1)])
Benny Prijono5bbebc02010-06-15 05:21:43 +0000205AC_CHECK_HEADER(ifaddrs.h,
206 [AC_CHECK_FUNC(getifaddrs,[AC_DEFINE(PJ_HAS_IFADDRS_H,1)])])
Benny Prijono1c5f4e42008-02-07 13:11:39 +0000207AC_CHECK_HEADER(semaphore.h,[AC_DEFINE(PJ_HAS_SEMAPHORE_H,1)])
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000208AC_CHECK_HEADER(setjmp.h,[AC_DEFINE(PJ_HAS_SETJMP_H,1)])
209AC_CHECK_HEADER(stdarg.h,[AC_DEFINE(PJ_HAS_STDARG_H,1)])
210AC_CHECK_HEADER(stddef.h,[AC_DEFINE(PJ_HAS_STDDEF_H,1)])
211AC_CHECK_HEADER(stdio.h,[AC_DEFINE(PJ_HAS_STDIO_H,1)])
Benny Prijonofdafd402008-01-23 14:34:46 +0000212AC_CHECK_HEADER(stdint.h,[AC_DEFINE(PJ_HAS_STDINT_H,1)])
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000213AC_CHECK_HEADER(stdlib.h,[AC_DEFINE(PJ_HAS_STDLIB_H,1)])
214AC_CHECK_HEADER(string.h,[AC_DEFINE(PJ_HAS_STRING_H,1)])
215AC_CHECK_HEADER(sys/ioctl.h,[AC_DEFINE(PJ_HAS_SYS_IOCTL_H,1)])
216AC_CHECK_HEADER(sys/select.h,[AC_DEFINE(PJ_HAS_SYS_SELECT_H,1)])
217AC_CHECK_HEADER(sys/socket.h,[AC_DEFINE(PJ_HAS_SYS_SOCKET_H,1)])
218AC_CHECK_HEADER(sys/time.h,[AC_DEFINE(PJ_HAS_SYS_TIME_H,1)])
219AC_CHECK_HEADER(sys/timeb.h,[AC_DEFINE(PJ_HAS_SYS_TIMEB_H,1)])
220AC_CHECK_HEADER(sys/types.h,[AC_DEFINE(PJ_HAS_SYS_TYPES_H,1)])
Benny Prijonoa1aec0e2010-01-13 21:28:06 +0000221AC_CHECK_HEADER(sys/filio.h,[AC_DEFINE(PJ_HAS_SYS_FILIO_H,1)])
222AC_CHECK_HEADER(sys/sockio.h,[AC_DEFINE(PJ_HAS_SYS_SOCKIO_H,1)])
Benny Prijonoe3e65802011-02-28 07:44:19 +0000223AC_CHECK_HEADER(sys/utsname.h,[AC_DEFINE(PJ_HAS_SYS_UTSNAME_H,1)])
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000224AC_CHECK_HEADER(time.h,[AC_DEFINE(PJ_HAS_TIME_H,1)])
225AC_CHECK_HEADER(unistd.h,[AC_DEFINE(PJ_HAS_UNISTD_H,1)])
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000226AC_CHECK_HEADER(winsock.h,[AC_DEFINE(PJ_HAS_WINSOCK_H,1)])
227AC_CHECK_HEADER(winsock2.h,[AC_DEFINE(PJ_HAS_WINSOCK2_H,1)])
Benny Prijonoa9948e62008-03-25 14:03:01 +0000228AC_CHECK_HEADER(mswsock.h,[AC_DEFINE(PJ_HAS_MSWSOCK_H,1)],[],
229 [#if PJ_HAS_WINSOCK2_H
230 # include <winsock2.h>
231 #elif PJ_HAS_WINSOCK_H
232 # include <winsock.h>
233 #endif
234 ])
Benny Prijonoe2746132008-09-27 13:16:35 +0000235AC_CHECK_HEADER(ws2tcpip.h,[AC_DEFINE(PJ_HAS_WS2TCPIP_H,1)])
Benny Prijono4e48b512007-05-16 13:41:00 +0000236AC_CHECK_HEADER(uuid/uuid.h,[ac_has_uuid_h=1])
Benny Prijonoa9948e62008-03-25 14:03:01 +0000237AC_CHECK_HEADER(net/if.h,[AC_DEFINE(PJ_HAS_NET_IF_H,1)],[],
Benny Prijonod5233702010-01-13 13:09:45 +0000238 [#if PJ_HAS_SYS_TYPES_H
239 # include <sys/types.h>
240 #endif
241 #if PJ_HAS_SYS_SOCKET_H
242
Benny Prijono188ba7e2008-03-25 13:53:16 +0000243 # include <sys/socket.h>
244 #endif
245 ])
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000246AC_MSG_RESULT([Setting PJ_OS_NAME to $target])
247AC_DEFINE_UNQUOTED(PJ_OS_NAME,["$target"])
248
249AC_MSG_RESULT([Setting PJ_HAS_ERRNO_VAR to 1])
250AC_DEFINE(PJ_HAS_ERRNO_VAR,1)
251
252AC_MSG_RESULT([Setting PJ_HAS_HIGH_RES_TIMER to 1])
253AC_DEFINE(PJ_HAS_HIGH_RES_TIMER,1)
254
255AC_MSG_RESULT([Setting PJ_HAS_MALLOC to 1])
256AC_DEFINE(PJ_HAS_MALLOC,1)
257
258AC_MSG_RESULT([Setting PJ_NATIVE_STRING_IS_UNICODE to 0])
259AC_DEFINE(PJ_NATIVE_STRING_IS_UNICODE,0)
260
261AC_MSG_RESULT([Setting PJ_ATOMIC_VALUE_TYPE to long])
262AC_DEFINE(PJ_ATOMIC_VALUE_TYPE,long)
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000263
Benny Prijonob466e232006-09-10 08:53:59 +0000264dnl # Determine if inet_aton() is available
Benny Prijonoc16c6e32007-11-18 14:53:47 +0000265AC_MSG_CHECKING([if inet_aton() is available])
266AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
267 #include <sys/socket.h>
268 #include <arpa/inet.h>]],
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000269 [inet_aton(0, 0);])],
270 [AC_DEFINE(PJ_SOCK_HAS_INET_ATON,1)
271 AC_MSG_RESULT(yes)],
272 [AC_MSG_RESULT(no)])
273
Benny Prijonoc16c6e32007-11-18 14:53:47 +0000274dnl # Determine if inet_pton() is available
275AC_MSG_CHECKING([if inet_pton() is available])
276AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
277 #include <sys/socket.h>
278 #include <arpa/inet.h>]],
279 [inet_pton(0, 0, 0);])],
280 [AC_DEFINE(PJ_SOCK_HAS_INET_PTON,1)
281 AC_MSG_RESULT(yes)],
282 [AC_MSG_RESULT(no)])
283
284dnl # Determine if inet_ntop() is available
285AC_MSG_CHECKING([if inet_ntop() is available])
286AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
287 #include <sys/socket.h>
288 #include <arpa/inet.h>]],
289 [inet_ntop(0, 0, 0, 0);])],
290 [AC_DEFINE(PJ_SOCK_HAS_INET_NTOP,1)
291 AC_MSG_RESULT(yes)],
292 [AC_MSG_RESULT(no)])
293
294dnl # Determine if getaddrinfo() is available
295AC_MSG_CHECKING([if getaddrinfo() is available])
296AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
297 #include <sys/socket.h>
298 #include <netdb.h>]],
299 [getaddrinfo(0, 0, 0, 0);])],
300 [AC_DEFINE(PJ_SOCK_HAS_GETADDRINFO,1)
301 AC_MSG_RESULT(yes)],
302 [AC_MSG_RESULT(no)])
303
Benny Prijonob466e232006-09-10 08:53:59 +0000304dnl # Determine if sockaddr_in has sin_len member
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000305AC_MSG_CHECKING([if sockaddr_in has sin_len member])
Benny Prijonob466e232006-09-10 08:53:59 +0000306AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
307 #include <sys/socket.h>
308 #include <netinet/in.h>
309 #include <arpa/inet.h>]],
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000310 [struct sockaddr_in a; a.sin_len=0;])],
311 [AC_DEFINE(PJ_SOCKADDR_HAS_LEN,1)
312 AC_MSG_RESULT(yes)],
313 AC_MSG_RESULT(no))
314
Benny Prijonob466e232006-09-10 08:53:59 +0000315dnl # Determine if socklen_t is available
Benny Prijono30f85c62006-09-09 20:05:33 +0000316AC_MSG_CHECKING([if socklen_t is available])
Benny Prijonod5233702010-01-13 13:09:45 +0000317AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
318 #include <sys/socket.h>]],
Benny Prijono30f85c62006-09-09 20:05:33 +0000319 [socklen_t xxx = 0;])],
320 [AC_DEFINE(PJ_HAS_SOCKLEN_T,1)
321 AC_MSG_RESULT(yes)],
322 AC_MSG_RESULT(no))
323
Benny Prijonob466e232006-09-10 08:53:59 +0000324dnl # Determine if SO_ERROR is available
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000325AC_MSG_CHECKING([if SO_ERROR is available])
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +0000326case $target in
327 *mingw* | *cygw* | *win32* | *w32* )
328 AC_DEFINE(PJ_HAS_SO_ERROR,1)
329 AC_MSG_RESULT(yes)
330 ;;
331 *)
332 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
333 #include <sys/socket.h>
334 #include <netinet/in.h>
335 #include <arpa/inet.h>]],
336 [int i=SO_ERROR;])],
337 [AC_DEFINE(PJ_HAS_SO_ERROR,1)
338 AC_MSG_RESULT(yes)],
339 AC_MSG_RESULT(no))
340 ;;
341esac
342
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000343
Benny Prijonob466e232006-09-10 08:53:59 +0000344dnl # Determine if RW-mutex is available
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000345AC_MSG_CHECKING([if pthread_rwlock_t is available])
346AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>],
347 [pthread_rwlock_t *x;])],
348 [AC_DEFINE(PJ_EMULATE_RWMUTEX,0)
Benny Prijono1c5f4e42008-02-07 13:11:39 +0000349 ac_rwmutex="yes"
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000350 AC_MSG_RESULT(yes)],
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000351 [AC_DEFINE(PJ_EMULATE_RWMUTEX,1)
Benny Prijono1c5f4e42008-02-07 13:11:39 +0000352 ac_rwmutex="no"
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000353 AC_MSG_RESULT(no)])
354
Benny Prijono1c5f4e42008-02-07 13:11:39 +0000355dnl # If rwmutex is not detected, check again but this time
356dnl # with _POSIX_READER_WRITER_LOCKS defined (newlib needs this)
357if test "$ac_rwmutex" = "no"; then
358 AC_MSG_CHECKING([if pthread_rwlock_t is available with _POSIX_READER_WRITER_LOCKS])
359 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#define _POSIX_READER_WRITER_LOCKS
360 #include <pthread.h>]],
361 [pthread_rwlock_t *x;])],
362 [AC_DEFINE(PJ_EMULATE_RWMUTEX,0)
363 CFLAGS="$CFLAGS -D_POSIX_THREADS -D_POSIX_READER_WRITER_LOCKS"
364 AC_MSG_RESULT(yes)],
365 [AC_DEFINE(PJ_EMULATE_RWMUTEX,1)
366 AC_MSG_RESULT(no)])
367fi
368
369dnl # Do we have pthread_mutexattr_settype()?
370AC_MSG_CHECKING([if pthread_mutexattr_settype() is available])
371AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>],
372 [pthread_mutexattr_settype(0,PTHREAD_MUTEX_FAST_NP);])],
373 [AC_DEFINE(PJ_HAS_PTHREAD_MUTEXATTR_SETTYPE,1)
374 AC_MSG_RESULT(yes)],
375 [AC_MSG_RESULT(no)])
376
377dnl # Does pthread_mutexattr_t has "recursive" member?
378AC_MSG_CHECKING([if pthread_mutexattr_t has recursive member])
379AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>],
380 [[pthread_mutexattr_t attr;
381 attr.recursive=1;]])],
382 [AC_DEFINE(PJ_PTHREAD_MUTEXATTR_T_HAS_RECURSIVE,1)
383 AC_MSG_RESULT(yes)],
384 [AC_MSG_RESULT(no)])
385
Benny Prijono99eec382008-09-18 21:22:16 +0000386dnl ######################
387dnl # ioqueue selection
388dnl #
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +0000389AC_SUBST(ac_os_objs)
Benny Prijono99eec382008-09-18 21:22:16 +0000390AC_MSG_CHECKING([ioqueue backend])
391AC_ARG_ENABLE(epoll,
392 AC_HELP_STRING([--enable-epoll],
Benny Prijono9489e7a2008-09-19 22:18:50 +0000393 [Use /dev/epoll ioqueue on Linux (experimental)]),
Benny Prijono99eec382008-09-18 21:22:16 +0000394 [
395 ac_os_objs=ioqueue_epoll.o
396 AC_MSG_RESULT([/dev/epoll])
397 ],
398 [
399 ac_os_objs=ioqueue_select.o
400 AC_MSG_RESULT([select()])
401 ])
402
403
404dnl ######################
405dnl # OS specific files
406dnl #
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +0000407case $target in
408 *mingw* | *cygw* | *win32* | *w32* )
Benny Prijono99eec382008-09-18 21:22:16 +0000409 ac_os_objs="$ac_os_objs file_access_win32.o file_io_win32.o os_core_win32.o os_error_win32.o os_time_win32.o os_timestamp_win32.o guid_win32.o"
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +0000410 ;;
411 *)
Benny Prijono99eec382008-09-18 21:22:16 +0000412 ac_os_objs="$ac_os_objs file_access_unistd.o file_io_ansi.o os_core_unix.o os_error_unix.o os_time_unix.o os_timestamp_posix.o"
Benny Prijono4e48b512007-05-16 13:41:00 +0000413 # UUID
414 if test "$ac_has_uuid_lib" = "1" -a "$ac_has_uuid_h" = "1"; then
415 ac_os_objs="$ac_os_objs guid_uuid.o"
416 else
417 ac_os_objs="$ac_os_objs guid_simple.o"
418 fi
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +0000419 ;;
420esac
421
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000422
Benny Prijono4e48b512007-05-16 13:41:00 +0000423
Benny Prijonob466e232006-09-10 08:53:59 +0000424dnl ##########################################
425dnl #
426dnl # PJMEDIA
427dnl #
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000428
Benny Prijono8a9b3b22010-01-14 14:46:54 +0000429dnl # Use external Speex installation
430AC_SUBST(ac_external_speex,0)
431AC_ARG_WITH(external-speex,
432 AC_HELP_STRING([--with-external-speex],
433 [Use external Speex development files, not the one in "third_party" directory. When this option is set, make sure that Speex is accessible to use (hint: use CFLAGS and LDFLAGS env var to set the include/lib paths)]),
434 [
435 if test "x$with_external_speex" != "xno"; then
436 # Test Speex installation
437 AC_MSG_CHECKING([if external Speex devkit is installed])
438 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <speex/speex.h>
439 #include <speex/speex_echo.h>
440 ]],
441 [speex_echo_state_init(0, 0); speex_encoder_init(0); ])],
442 [AC_MSG_RESULT(yes!!)
443 AC_DEFINE(PJMEDIA_EXTERNAL_SPEEX_CODEC, 1)
444 ac_external_speex="1"
445 ],
446 [AC_MSG_ERROR([Unable to use external Speex library. If Speex development files are not available in the default locations, use CFLAGS and LDFLAGS env var to set the include/lib paths])])
447 fi
448 ]
449 )
450
451dnl # Use external GSM codec library installation
452AC_SUBST(ac_external_gsm,0)
453AC_ARG_WITH(external-gsm,
454 AC_HELP_STRING([--with-external-gsm],
455 [Use external GSM codec library, not the one in "third_party" directory. When this option is set, make sure that the GSM include/lib files are accessible to use (hint: use CFLAGS and LDFLAGS env var to set the include/lib paths)]),
456 [
457 if test "x$with_external_gsm" != "xno"; then
Benny Prijonod4306432010-05-01 22:05:41 +0000458 # Test GSM library installation
459 AC_MSG_CHECKING([if external GSM devkit is installed as gsm/gsm.h])
460 AC_COMPILE_IFELSE(
461 [AC_LANG_PROGRAM([[#include <gsm/gsm.h> ]], [gsm_create(); ]) ],
462 [AC_MSG_RESULT(yes!!)
463 AC_DEFINE(PJMEDIA_EXTERNAL_GSM_CODEC, 1)
464 AC_DEFINE(PJMEDIA_EXTERNAL_GSM_GSM_H, 1)
465 ac_external_gsm="1"
466 ],
467 [
468 AC_MSG_RESULT(no)
469 AC_MSG_CHECKING([if external GSM devkit is installed as gsm.h])
470 AC_COMPILE_IFELSE(
471 [AC_LANG_PROGRAM([[#include <gsm.h> ]], [gsm_create(); ]) ],
472 [AC_MSG_RESULT(yes!!)
473 AC_DEFINE(PJMEDIA_EXTERNAL_GSM_CODEC, 1)
474 AC_DEFINE(PJMEDIA_EXTERNAL_GSM_H, 1)
475 ac_external_gsm="1"
476 ],
477 [AC_MSG_ERROR([Unable to use external GSM library. If GSM development files are not available in the default locations, use CFLAGS and LDFLAGS env var to set the include/lib paths])
478 ]
479 )
480 ]
481 )
Benny Prijono8a9b3b22010-01-14 14:46:54 +0000482 fi
483 ]
484 )
485
486
487
Benny Prijonob466e232006-09-10 08:53:59 +0000488dnl # Sound device backend selection
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000489AC_SUBST(ac_pjmedia_snd)
Benny Prijono1d971622006-09-10 22:27:40 +0000490AC_ARG_ENABLE(sound,
491 AC_HELP_STRING([--disable-sound],
492 [Exclude sound (i.e. use null sound)]),
493 [if test "$enable_sound" = "no"; then
494 [ac_pjmedia_snd=null]
495 AC_MSG_RESULT([Checking if sound is disabled... yes])
496 fi]
497 )
498
Benny Prijono8a9b3b22010-01-14 14:46:54 +0000499dnl # Use external PortAudio installation
500AC_SUBST(ac_external_pa,0)
501AC_ARG_WITH(external-pa,
502 AC_HELP_STRING([--with-external-pa],
503 [Use external PortAudio development files, not the one in "third_party" directory. When this option is set, make sure that PortAudio is accessible to use (hint: use CFLAGS and LDFLAGS env var to set the include/lib paths)]),
Benny Prijonofe0c1272010-01-13 16:28:15 +0000504 [
Benny Prijono8a9b3b22010-01-14 14:46:54 +0000505 if test "x$with_external_pa" != "xno"; then
506 # Test PortAudio installation
507 AC_MSG_CHECKING([if external PortAudio devkit is installed])
508 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <portaudio.h>
509 ]],
510 [Pa_Initialize();])],
511 [AC_MSG_RESULT(yes!!)
512 ac_external_pa="1"
513 ],
514 [AC_MSG_ERROR([Unable to use PortAudio. If PortAudio development files are not available in the default locations, use CFLAGS and LDFLAGS env var to set the include/lib paths])])
Benny Prijonofe0c1272010-01-13 16:28:15 +0000515 fi
516 ]
517 )
518
Benny Prijono39ae2da2006-10-13 17:57:42 +0000519AC_SUBST(ac_pa_cflags)
Benny Prijono27c98722007-04-09 21:28:15 +0000520AC_CHECK_HEADER(sys/soundcard.h,
521 [ac_pa_cflags="$ac_pa_cflags -DHAVE_SYS_SOUNDCARD_H"])
522AC_CHECK_HEADER(linux/soundcard.h,
523 [ac_pa_cflags="$ac_pa_cflags -DHAVE_LINUX_SOUNDCARD_H"])
524AC_CHECK_HEADER(machine/soundcard.h,
525 [ac_pa_cflags="$ac_pa_cflags -DHAVE_MACHINE_SOUNDCARD_H"])
526
Benny Prijono3e091672008-01-09 15:43:02 +0000527if test "x$ac_cv_c_bigendian" = "xyes"; then
528 ac_pa_cflags="$ac_pa_cflags -DPA_BIG_ENDIAN"
529else
530 ac_pa_cflags="$ac_pa_cflags -DPA_LITTLE_ENDIAN"
531fi
532
Benny Prijono1d971622006-09-10 22:27:40 +0000533if test "$enable_sound" = "no"; then
534 true;
535else
536 case $target in
Benny Prijono8ec5eae2010-05-12 10:59:20 +0000537 arm-apple-darwin*)
Sauw Mingbe3771a2010-08-27 06:46:29 +0000538 LIBS="$LIBS -framework CoreAudio -framework CoreFoundation -framework AudioToolbox -framework CFNetwork"
Benny Prijono8ec5eae2010-05-12 10:59:20 +0000539 AC_MSG_RESULT([Checking sound device backend... AudioUnit])
540 ;;
Benny Prijonob466e232006-09-10 08:53:59 +0000541 *darwin*)
Benny Prijono39ae2da2006-10-13 17:57:42 +0000542 LIBS="$LIBS -framework CoreAudio -framework CoreServices -framework AudioUnit -framework AudioToolbox"
543 if test "`uname -r`" = "6.8"; then
Benny Prijono27c98722007-04-09 21:28:15 +0000544 #ac_pa_cflags="$ac_pa_cflags -DPA_OLD_CORE_AUDIO -DMOSX_USE_NON_ATOMIC_FLAG_BITS"
Benny Prijono39ae2da2006-10-13 17:57:42 +0000545 #AC_MSG_RESULT([Setting additional PortAudio CFLAGS.. -DPA_OLD_CORE_AUDIO -DMOSX_USE_NON_ATOMIC_FLAG_BITS])
546 ac_pjmedia_snd=pa_old_darwinos
547 AC_MSG_RESULT([Checking sound device backend... old coreaudio])
548 else
549 ac_pjmedia_snd=pa_darwinos
550 AC_MSG_RESULT([Checking sound device backend... coreaudio])
551 fi
Benny Prijonob466e232006-09-10 08:53:59 +0000552 ;;
553 *cygwin* | *mingw*)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000554 ac_pjmedia_snd=pa_win32
555 AC_MSG_RESULT([Checking sound device backend... win32 sound])
556 ;;
557 *rtems*)
558 ac_pjmedia_snd=null
559 AC_MSG_RESULT([Checking sound device backend... null sound])
560 ;;
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000561 *)
Benny Prijono0b462322008-03-12 22:44:24 +0000562 dnl # Check if ALSA is available
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000563 ac_pjmedia_snd=pa_unix
564 AC_CHECK_HEADER(alsa/version.h,
565 [AC_SUBST(ac_pa_use_alsa,1)
566 LIBS="$LIBS -lasound"
567 ],
568 [AC_SUBST(ac_pa_use_alsa,0)])
569 AC_MSG_RESULT([Checking sound device backend... unix])
Benny Prijono0b462322008-03-12 22:44:24 +0000570
571 dnl # Check if OSS is disabled
572 AC_SUBST(ac_pa_use_oss,1)
573 AC_ARG_ENABLE(oss,
574 AC_HELP_STRING([--disable-oss],
575 [Disable OSS audio (default: not disabled)])
576 ,
577 [
578 if test "$enable_oss" = "no"; then
579 [ac_pa_use_oss=0]
580 AC_MSG_RESULT([Checking if OSS audio is disabled... yes])
581 fi
582 ])
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000583 ;;
Benny Prijono1d971622006-09-10 22:27:40 +0000584 esac
585fi
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000586
Benny Prijonoebb2c332008-07-28 23:40:58 +0000587AC_ARG_ENABLE(ext_sound,
588 AC_HELP_STRING([--enable-ext-sound],
589 [PJMEDIA will not provide any sound device backend]),
590 [if test "$enable_ext_sound" = "yes"; then
591 [ac_pjmedia_snd=external]
592 AC_MSG_RESULT([Checking if external sound is set... yes])
593 fi]
594 )
595
Benny Prijonob466e232006-09-10 08:53:59 +0000596dnl # Include resampling small filter
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000597AC_SUBST(ac_no_small_filter)
598AC_ARG_ENABLE(small-filter,
599 AC_HELP_STRING([--disable-small-filter],
600 [Exclude small filter in resampling]),
601 [if test "$enable_small_filter" = "no"; then
602 [ac_no_small_filter='-DPJMEDIA_HAS_SMALL_FILTER=0']
603 AC_MSG_RESULT([Checking if small filter is disabled... yes])
604 fi],
605 AC_MSG_RESULT([Checking if small filter is disabled... no]))
606
Benny Prijonob466e232006-09-10 08:53:59 +0000607dnl # Include resampling large filter
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000608AC_SUBST(ac_no_large_filter)
609AC_ARG_ENABLE(large-filter,
610 AC_HELP_STRING([--disable-large-filter],
611 [Exclude large filter in resampling]),
612 [if test "$enable_large_filter" = "no"; then
613 [ac_no_large_filter='-DPJMEDIA_HAS_LARGE_FILTER=0']
614 AC_MSG_RESULT([Checking if large filter is disabled... yes])
615 fi],
616 AC_MSG_RESULT([Checking if large filter is disabled... no]))
617
Benny Prijonob466e232006-09-10 08:53:59 +0000618dnl # Include Speex AEC
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000619AC_SUBST(ac_no_speex_aec)
620AC_ARG_ENABLE(speex-aec,
621 AC_HELP_STRING([--disable-speex-aec],
622 [Exclude Speex Acoustic Echo Canceller/AEC]),
623 [if test "$enable_speex_aec" = "no"; then
624 [ac_no_speex_aec='-DPJMEDIA_HAS_SPEEX_AEC=0']
625 AC_MSG_RESULT([Checking if Speex AEC is disabled...yes])
626 fi],
627 AC_MSG_RESULT([Checking if Speex AEC is disabled...no]))
628
Benny Prijonob466e232006-09-10 08:53:59 +0000629dnl # Include G711 codec
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000630AC_SUBST(ac_no_g711_codec)
631AC_ARG_ENABLE(g711-codec,
632 AC_HELP_STRING([--disable-g711-codec],
633 [Exclude G.711 codecs from the build]),
634 [if test "$enable_g711_codec" = "no"; then
635 [ac_no_g711_codec=1]
Benny Prijonofe9bffd2007-01-27 17:44:13 +0000636 AC_DEFINE(PJMEDIA_HAS_G711_CODEC,0)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000637 AC_MSG_RESULT([Checking if G.711 codec is disabled...yes])
638 fi],
639 AC_MSG_RESULT([Checking if G.711 codec is disabled...no]))
640
641
Benny Prijonob466e232006-09-10 08:53:59 +0000642dnl # Include L16 codec
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000643AC_SUBST(ac_no_l16_codec)
644AC_ARG_ENABLE(l16-codec,
645 AC_HELP_STRING([--disable-l16-codec],
646 [Exclude Linear/L16 codec family from the build]),
647 [if test "$enable_l16_codec" = "no"; then
648 [ac_no_l16_codec=1]
Benny Prijonofe9bffd2007-01-27 17:44:13 +0000649 AC_DEFINE(PJMEDIA_HAS_L16_CODEC,0)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000650 AC_MSG_RESULT([Checking if L16 codecs are disabled...yes])
651 fi],
Benny Prijonoc1fe23d2006-09-13 09:38:06 +0000652 AC_MSG_RESULT([Checking if L16 codec is disabled...no]))
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000653
654
Benny Prijonob466e232006-09-10 08:53:59 +0000655dnl # Include GSM codec
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000656AC_SUBST(ac_no_gsm_codec)
657AC_ARG_ENABLE(gsm-codec,
658 AC_HELP_STRING([--disable-gsm-codec],
659 [Exclude GSM codec in the build]),
660 [if test "$enable_gsm_codec" = "no"; then
661 [ac_no_gsm_codec=1]
Benny Prijonofe9bffd2007-01-27 17:44:13 +0000662 AC_DEFINE(PJMEDIA_HAS_GSM_CODEC,0)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000663 AC_MSG_RESULT([Checking if GSM codec is disabled...yes])
664 fi],
665 AC_MSG_RESULT([Checking if GSM codec is disabled...no]))
666
Benny Prijono71f657d2008-03-17 14:24:21 +0000667dnl # Include G.722 codec
668AC_SUBST(ac_no_g722_codec)
669AC_ARG_ENABLE(g722-codec,
670 AC_HELP_STRING([--disable-g722-codec],
671 [Exclude G.722 codec in the build]),
672 [if test "$enable_g722_codec" = "no"; then
673 [ac_no_g722_codec=1]
674 AC_DEFINE(PJMEDIA_HAS_G722_CODEC,0)
675 AC_MSG_RESULT([Checking if G.722 codec is disabled...yes])
676 fi],
677 AC_MSG_RESULT([Checking if G.722 codec is disabled...no]))
678
Nanang Izzuddin56e380a2009-04-15 14:45:41 +0000679dnl # Include G722.1 codec
680AC_SUBST(ac_no_g7221_codec)
681AC_ARG_ENABLE(g7221-codec,
682 AC_HELP_STRING([--disable-g7221-codec],
683 [Exclude G.7221 codec in the build]),
684 [if test "$enable_g7221_codec" = "no"; then
685 [ac_no_g7221_codec=1]
686 AC_DEFINE(PJMEDIA_HAS_G7221_CODEC,0)
687 AC_MSG_RESULT([Checking if G.722.1 codec is disabled...yes])
688 fi],
689 AC_MSG_RESULT([Checking if G.722.1 codec is disabled...no]))
690
Benny Prijonob466e232006-09-10 08:53:59 +0000691dnl # Include Speex codec
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000692AC_SUBST(ac_no_speex_codec)
693AC_ARG_ENABLE(speex-codec,
694 AC_HELP_STRING([--disable-speex-codec],
695 [Exclude Speex codecs in the build]),
696 [if test "$enable_speex_codec" = "no"; then
697 [ac_no_speex_codec=1]
Benny Prijonofe9bffd2007-01-27 17:44:13 +0000698 AC_DEFINE(PJMEDIA_HAS_SPEEX_CODEC,0)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000699 AC_MSG_RESULT([Checking if Speex codec is disabled...yes])
700 fi],
701 AC_MSG_RESULT([Checking if Speex codec is disabled...no]))
702
Benny Prijonob466e232006-09-10 08:53:59 +0000703dnl # Include iLBC codec
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000704AC_SUBST(ac_no_ilbc_codec)
705AC_ARG_ENABLE(ilbc-codec,
706 AC_HELP_STRING([--disable-ilbc-codec],
707 [Exclude iLBC codec in the build]),
708 [if test "$enable_ilbc_codec" = "no"; then
709 [ac_no_ilbc_codec=1]
Benny Prijonofe9bffd2007-01-27 17:44:13 +0000710 AC_DEFINE(PJMEDIA_HAS_ILBC_CODEC,0)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000711 AC_MSG_RESULT([Checking if iLBC codec is disabled...yes])
712 fi],
713 AC_MSG_RESULT([Checking if iLBC codec is disabled...no]))
714
Benny Prijono550a1a62007-10-16 08:54:00 +0000715dnl # Include libsamplerate
716AC_ARG_ENABLE(libsamplerate,
717 AC_HELP_STRING([--enable-libsamplerate],
718 [Link with libsamplerate when available. Note that PJMEDIA_RESAMPLE_IMP must also be configured]),
719 [ AC_CHECK_LIB(samplerate,src_new) ],
720 AC_MSG_RESULT([Skipping libsamplerate detection])
721 )
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000722
723
Benny Prijono0822c192008-08-21 20:59:58 +0000724dnl ########################################################
725dnl # Intel IPP support
726dnl #
727AC_ARG_ENABLE(ipp,
728 AC_HELP_STRING([--enable-ipp],
729 [Enable Intel IPP support. Specify the Intel IPP package and samples location using IPPROOT and IPPSAMPLES env var or with --with-ipp and --with-ipp-samples options]),
730 [],
731 [enable_ipp=no]
732 )
733
Benny Prijono3965f192010-02-10 18:46:05 +0000734AC_ARG_WITH(ipp,
Benny Prijono0822c192008-08-21 20:59:58 +0000735 AC_HELP_STRING([--with-ipp=DIR],
736 [Specify the Intel IPP location]),
737 [],
738 [with_ipp=no]
739 )
740
Benny Prijono3965f192010-02-10 18:46:05 +0000741AC_ARG_WITH(ipp-samples,
Benny Prijono0822c192008-08-21 20:59:58 +0000742 AC_HELP_STRING([--with-ipp-samples=DIR],
743 [Specify the Intel IPP samples location]),
744 [],
745 [with_ipp_samples=no]
746 )
747
Benny Prijono3965f192010-02-10 18:46:05 +0000748AC_ARG_WITH(ipp-arch,
749 AC_HELP_STRING([--with-ipp-arch=ARCH],
750 [Specify the Intel IPP ARCH suffix, e.g. "64" or "em64t. Default is blank for IA32"]),
751 [],
752 [with_ipp_arch=no]
753 )
754
Benny Prijono0822c192008-08-21 20:59:58 +0000755if test "x$enable_ipp" != "xno"; then
756 dnl #
757 dnl # Verifying Intel IPP path
758 dnl #
759 AC_MSG_CHECKING([Intel IPP location])
760
761 if test "x$with_ipp" != "xno" -a "x$with_ipp" != "x"; then
762 AC_MSG_RESULT([$with_ipp])
763 IPPROOT=$with_ipp
764 elif test "x$IPPROOT" = "x"; then
765 if test -d /opt/intel/ipp; then
766 IPPROOT=`ls -d /opt/intel/ipp/*/* | head -1`
767 AC_MSG_RESULT([autodetected in $IPPROOT])
768 fi
769 else
770 AC_MSG_RESULT([$IPPROOT])
771 fi
772
Benny Prijono3965f192010-02-10 18:46:05 +0000773 if test "x$with_ipp_arch" != "xno"; then
Benny Prijono896be292010-08-17 12:16:46 +0000774 IPP_SUFFIX=$with_ipp_arch
Benny Prijono3965f192010-02-10 18:46:05 +0000775 AC_MSG_RESULT([IPP arch suffix is set to $IPP_SUFFIX])
776 else
777 IPP_SUFFIX=""
778 AC_MSG_RESULT([IPP arch suffix is set to empty])
779 fi
780
Benny Prijono0822c192008-08-21 20:59:58 +0000781 if test x$IPPROOT = x; then
782 AC_MSG_ERROR([the location is neither specified nor can be guessed. Please specify with IPPROOT env var or with --with-ipp option])
783 elif test ! -d $IPPROOT; then
784 AC_MSG_ERROR([not found])
785 elif test ! -d $IPPROOT/include; then
786 AC_MSG_ERROR([directory doesn't seem to be valid])
787 else
788 # IPP directory looks okay.
789 # Remove trailing backslash
Benny Prijono3965f192010-02-10 18:46:05 +0000790 IPPROOT=`echo $IPPROOT | sed 's/\/$//'`
Benny Prijono0822c192008-08-21 20:59:58 +0000791
792 SAVED_CFLAGS="$CFLAGS"
793 SAVED_LDFLAGS="$LDFLAGS"
794 SAVED_LIBS="$LIBS"
795
796 IPP_CFLAGS="-I$IPPROOT/include"
Benny Prijono46bd0842010-02-12 14:12:41 +0000797 IPP_LIBS="-lippsc${IPP_SUFFIX} -lipps${IPP_SUFFIX} -lippsr${IPP_SUFFIX} -lippcore${IPP_SUFFIX}"
798
799 # Some differences between Mac OS X and Linux
800 case $target in
801 *darwin* )
802 IPP_LDFLAGS="-L$IPPROOT/Libraries -L$IPPROOT/lib"
803 ;;
804 *)
805 IPP_LDFLAGS="-L$IPPROOT/sharedlib"
806 IPP_LIBS="$IPP_LIBS -lguide"
807 ;;
808 esac
809
Benny Prijono0822c192008-08-21 20:59:58 +0000810 #IPP_LDFLAGS="-L$IPPROOT/sharedlib"
Benny Prijono46bd0842010-02-12 14:12:41 +0000811 #Static:
Benny Prijono0822c192008-08-21 20:59:58 +0000812 #IPP_LIBS="-lippscmerged -lippsrmerged -lippsmerged -lippcore"
813
814 CFLAGS="$CFLAGS $IPP_CFLAGS"
815 LDFLAGS="$LDFLAGS $IPP_LDFLAGS"
816 LIBS="$IPP_LIBS $LIBS"
817
818
819 AC_MSG_CHECKING([Intel IPP usability])
820 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <ippcore.h>
821 ]],
822 [ippStaticInit();])],
823 [AC_MSG_RESULT(ok)],
Benny Prijono3965f192010-02-10 18:46:05 +0000824 [AC_MSG_FAILURE(Error: unable to recognize your IPP installation. Make sure the paths and ARCH suffix are set correctly, run with --help for more info)])
Benny Prijono0822c192008-08-21 20:59:58 +0000825
826 CFLAGS="$SAVED_CFLAGS"
827 LDFLAGS="$SAVED_LDFLAGS"
828 LIBS="$SAVED_LIBS"
829 fi
830
831 dnl #
832 dnl # Verifying Intel IPP samples path
833 dnl #
834 AC_MSG_CHECKING([Intel IPP samples location])
835
836 if test "x$with_ipp_samples" != "xno" -a "x$with_ipp_samples" != "x"; then
837 AC_MSG_RESULT([$with_ipp_samples])
838 IPPSAMPLES=$with_ipp_samples
839 elif test "x$IPPSAMPLES" = "x"; then
840 if test -d /opt/intel/ipp-samples; then
841 IPPSAMPLES=/opt/intel/ipp-samples
842 AC_MSG_RESULT([autodetected in $IPPSAMPLES])
843 fi
844 else
845 AC_MSG_RESULT([$IPPSAMPLES])
846 fi
847
848 if test x$IPPSAMPLES = x; then
849 AC_MSG_ERROR([the location is neither specified nor can be guessed. Please specify with IPPSAMPLES env var or with --with-ipp-samples option])
850 elif test ! -d $IPPSAMPLES; then
851 AC_MSG_ERROR([not found])
852 elif test ! -d $IPPSAMPLES/speech-codecs; then
853 AC_MSG_ERROR([directory doesn't seem to be valid])
854 else
855 # Remove trailing backslash
856 IPPSAMPLES=`echo $IPPSAMPLES | sed 's/\/$//'`
Benny Prijono3965f192010-02-10 18:46:05 +0000857
858 # Guess the libusc.a/libspeech.a build location
Benny Prijono0822c192008-08-21 20:59:58 +0000859 AC_MSG_CHECKING([Intel IPP USC build location])
Benny Prijono3965f192010-02-10 18:46:05 +0000860 if test -d $IPPSAMPLES/speech-codecs/bin; then
861 IPPVER=5
862 IPPSAMP_DIR=`ls -d $IPPSAMPLES/speech-codecs/bin/*gcc*/lib | head -1`
863 elif test -d $IPPSAMPLES/speech-codecs/_bin; then
864 IPPVER=6
Benny Prijono46bd0842010-02-12 14:12:41 +0000865 if test -d $IPPSAMPLES/speech-codecs/_bin/*gcc*; then
866 # gcc compiler
867 IPPSAMP_DIR=`ls -d $IPPSAMPLES/speech-codecs/_bin/*gcc*/lib | head -1`
868 elif test -d $IPPSAMPLES/speech-codecs/_bin/*icc*; then
869 # icc compiler
870 IPPSAMP_DIR=`ls -d $IPPSAMPLES/speech-codecs/_bin/*icc*/lib | head -1`
871 else
872 AC_MSG_FAILURE([Unable to find to find built binaries under $IPPSAMPLES/speech-codecs/{bin,_bin}. Have you built the IPP samples?])
873 fi
Benny Prijono3965f192010-02-10 18:46:05 +0000874 else
875 AC_MSG_FAILURE([unable to find $IPPSAMPLES/speech-codecs/bin/*gcc*/lib or $IPPSAMPLES/speech-codecs/_bin/*gcc*/lib directory. Have you built the samples?])
Benny Prijono0822c192008-08-21 20:59:58 +0000876 fi
Benny Prijono3965f192010-02-10 18:46:05 +0000877
878 # Test the directory
879 if test ! -d $IPPSAMP_DIR; then
880 AC_MSG_FAILURE([There's something wrong with this script, directory $IPPSAMP_DIR does not exist])
881 exit 1;
Benny Prijono0822c192008-08-21 20:59:58 +0000882 fi
Benny Prijono3965f192010-02-10 18:46:05 +0000883
884 if test "x$IPPVER" = "x5"; then
885 IPPSAMP_LIBS="libusc.a"
886 IPPSAMP_LDLIBS="-lusc"
887 elif test "x$IPPVER" = "x6"; then
888 IPPSAMP_LIBS="libspeech.a"
889 IPPSAMP_LDLIBS="-lspeech"
890 else
891 AC_MSG_FAILURE([bug in this script: unsupported IPP version])
892 fi
893
894 if test ! -f $IPPSAMP_DIR/$IPPSAMP_LIBS; then
895 AC_MSG_FAILURE([$IPPSAMP_LIBS doesn't exist in $IPPSAMP_DIR])
896 fi
897
898 AC_MSG_RESULT([$IPPSAMP_DIR])
Benny Prijono0822c192008-08-21 20:59:58 +0000899
900 SAVED_CFLAGS="$CFLAGS"
901 SAVED_LDFLAGS="$LDFLAGS"
902 SAVED_LIBS="$LIBS"
903
Benny Prijono3965f192010-02-10 18:46:05 +0000904 IPPSAMP_INC="-I$IPPSAMPLES/speech-codecs/core/usc/include"
905 CFLAGS="$CFLAGS $IPPSAMP_INC"
906 LDFLAGS="$LDFLAGS -L$IPPSAMP_DIR"
907 LIBS="$IPPSAMP_LDLIBS $LIBS"
Benny Prijono0822c192008-08-21 20:59:58 +0000908
909 AC_MSG_CHECKING([Intel IPP USC usability])
910 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <usc.h>
911 ]],
912 [extern USC_Fxns USC_G729AFP_Fxns;])],
913 [AC_MSG_RESULT(ok)],
914 [AC_MSG_FAILURE(failed)])
915
916 CFLAGS="$SAVED_CFLAGS"
Benny Prijono3965f192010-02-10 18:46:05 +0000917 LDFLAGS="$IPP_LDFLAGS $SAVED_LDFLAGS"
918 LIBS="$IPP_LIBS $SAVED_LIBS"
Benny Prijono0822c192008-08-21 20:59:58 +0000919
Benny Prijono3965f192010-02-10 18:46:05 +0000920 IPP_CFLAGS="$IPP_CFLAGS $IPPSAMP_INC"
921 IPP_LDFLAGS="$IPP_LDFLAGS -L$IPPSAMP_DIR"
922 IPP_LIBS="$IPPSAMP_LDLIBS $IPP_LIBS"
Benny Prijono0822c192008-08-21 20:59:58 +0000923 fi
924
Benny Prijono3965f192010-02-10 18:46:05 +0000925 CFLAGS="$CFLAGS $IPP_CFLAGS"
926 LDFLAGS="$LDFLAGS $IPP_LDFLAGS"
927 LIBS="$LIBS $IPP_LIBS"
928
Benny Prijono0822c192008-08-21 20:59:58 +0000929 ac_build_mak_vars="$ac_build_mak_vars\n\
930export IPP_CFLAGS=$IPP_CFLAGS\n\
931export IPP_LDFLAGS=$IPP_LDFLAGS\n\
932export IPP_LIBS=$IPP_LIBS"
933else
934 AC_MSG_RESULT([Skipping Intel IPP settings (not wanted)])
935fi
936
937
Benny Prijonob466e232006-09-10 08:53:59 +0000938dnl ##########################################
939dnl #
Benny Prijono7e0d75f2006-12-25 20:34:14 +0000940dnl # PJSIP CONFIG
941dnl #
942
943dnl # Include SSL support
944AC_SUBST(ac_no_ssl)
945AC_ARG_ENABLE(ssl,
Benny Prijonoce1db762007-02-14 02:21:08 +0000946 AC_HELP_STRING([--disable-ssl],
947 [Exclude SSL support the build (default: autodetect)])
948 ,
Benny Prijono7e0d75f2006-12-25 20:34:14 +0000949 [
950 if test "$enable_ssl" = "no"; then
951 [ac_no_ssl=1]
952 AC_MSG_RESULT([Checking if SSL support is disabled... yes])
953 fi
954 ],
955 [
956 AC_MSG_RESULT([checking for OpenSSL installations..])
957 AC_SUBST(openssl_h_present)
958 AC_SUBST(libssl_present)
959 AC_SUBST(libcrypto_present)
960 AC_CHECK_HEADER(openssl/ssl.h,[openssl_h_present=1])
Benny Prijono7e0d75f2006-12-25 20:34:14 +0000961 AC_CHECK_LIB(crypto,ERR_load_BIO_strings,[libcrypto_present=1 && LIBS="$LIBS -lcrypto"])
Benny Prijonod5233702010-01-13 13:09:45 +0000962 AC_CHECK_LIB(ssl,SSL_library_init,[libssl_present=1 && LIBS="$LIBS -lssl"])
Benny Prijono7e0d75f2006-12-25 20:34:14 +0000963 if test "x$openssl_h_present" = "x1" -a "x$libssl_present" = "x1" -a "x$libcrypto_present" = "x1"; then
964 AC_MSG_RESULT([OpenSSL library found, SSL support enabled])
Nanang Izzuddin9c7616f2009-10-28 06:09:15 +0000965 # PJSIP_HAS_TLS_TRANSPORT setting follows PJ_HAS_SSL_SOCK
966 #AC_DEFINE(PJSIP_HAS_TLS_TRANSPORT, 1)
Nanang Izzuddinea6d3c42009-10-26 15:47:52 +0000967 AC_DEFINE(PJ_HAS_SSL_SOCK, 1)
Benny Prijono7e0d75f2006-12-25 20:34:14 +0000968 else
969 AC_MSG_RESULT([** OpenSSL libraries not found, disabling SSL support **])
970 fi
971 ])
972
973
974dnl ##########################################
975dnl #
Benny Prijonob466e232006-09-10 08:53:59 +0000976dnl # MANUAL CONFIG
977dnl #
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000978
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000979
Benny Prijonob466e232006-09-10 08:53:59 +0000980dnl # Determine if select() requires nfds to be filled up with
981dnl # correct value (max_fd+1). If zero, nfds will be filled up with
982dnl # PJ_FD_SETSIZE
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000983AC_MSG_CHECKING([if select() needs correct nfds])
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000984case $target in
985 *rtems*) AC_DEFINE(PJ_SELECT_NEEDS_NFDS,1)
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000986 AC_MSG_RESULT(yes)
987 ;;
988 *) AC_DEFINE(PJ_SELECT_NEEDS_NFDS,0)
989 AC_MSG_RESULT([no (default)])
990 AC_MSG_RESULT([** Decided that select() doesn't need correct nfds (please check)])
991 ;;
992esac
993
Benny Prijonob466e232006-09-10 08:53:59 +0000994dnl # Determine if pj_thread_create() should enforce thread stack size when
995dnl # creating thread. Default is zero, to allow OS to allocate appropriate
996dnl # thread's stack size.
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000997AC_MSG_CHECKING([if pj_thread_create() should enforce stack size])
998case $target in
999 *rtems*) AC_DEFINE(PJ_THREAD_SET_STACK_SIZE,1)
1000 AC_MSG_RESULT(yes)
1001 ;;
1002 *) AC_DEFINE(PJ_THREAD_SET_STACK_SIZE,0)
1003 AC_MSG_RESULT([no (default)])
1004 ;;
1005esac
1006
Benny Prijonob466e232006-09-10 08:53:59 +00001007dnl # Determine if pj_thread_create() should allocate thread's stack from
1008dnl # the pool. Default is zero, to let OS allocate thread's stack.
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001009AC_MSG_CHECKING([if pj_thread_create() should allocate stack])
1010case $target in
1011 *rtems*) AC_DEFINE(PJ_THREAD_ALLOCATE_STACK,1)
1012 AC_MSG_RESULT(yes)
1013 ;;
1014 *) AC_DEFINE(PJ_THREAD_ALLOCATE_STACK,0)
1015 AC_MSG_RESULT([no (default)])
1016 ;;
1017esac
1018
Benny Prijonob466e232006-09-10 08:53:59 +00001019dnl # This value specifies the value set in errno by the OS when a non-blocking
1020dnl # socket recv() can not return immediate data.
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001021case $target in
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +00001022 *mingw* | *cygw* | *win32* | *w32* )
1023 AC_DEFINE(PJ_BLOCKING_ERROR_VAL,WSAEWOULDBLOCK)
1024 ;;
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001025 *) AC_DEFINE(PJ_BLOCKING_ERROR_VAL,EAGAIN)
1026 AC_MSG_RESULT([** Setting non-blocking recv() retval to EAGAIN (please check)])
1027 ;;
1028esac
1029
Benny Prijonob466e232006-09-10 08:53:59 +00001030dnl # This value specifies the value set in errno by the OS when a non-blocking
1031dnl # socket connect() can not get connected immediately.
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001032case $target in
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +00001033 *mingw* | *cygw* | *win32* | *w32* )
1034 AC_DEFINE(PJ_BLOCKING_CONNECT_ERROR_VAL,WSAEWOULDBLOCK)
1035 ;;
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001036 *) AC_DEFINE(PJ_BLOCKING_CONNECT_ERROR_VAL,EINPROGRESS)
1037 AC_MSG_RESULT([** Setting non-blocking connect() retval to EINPROGRESS (please check)])
1038 ;;
1039esac
1040
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001041
Benny Prijonoc4c61d02006-08-20 20:47:34 +00001042AC_SUBST(target)
1043AC_SUBST(ac_cross_compile)
1044if test "$build" = "$host"; then
1045 ac_cross_compile=
1046else
Benny Prijono5b818b22006-09-17 22:58:51 +00001047 ac_cross_compile=${host_orig}-
Benny Prijonoc4c61d02006-08-20 20:47:34 +00001048fi
1049AC_SUBST(ac_linux_poll,select)
1050AC_SUBST(ac_host,unix)
1051AC_SUBST(ac_main_obj)
1052case $target in
1053 *rtems*)
1054 ac_main_obj=main_rtems.o
1055 ;;
1056 *)
1057 ac_main_obj=main.o
1058 ;;
1059esac
1060AC_SUBST(CC)
Benny Prijono0822c192008-08-21 20:59:58 +00001061
1062ac_build_mak_vars=`echo $ac_build_mak_vars | sed 's/\\\\n/\n/g'`
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001063AC_OUTPUT()
1064
Benny Prijonod9627842007-04-18 09:24:31 +00001065
1066AC_MSG_RESULT([
1067
Benny Prijonoc16c6e32007-11-18 14:53:47 +00001068Configurations for current target have been written to 'build.mak', and 'os-auto.mak' in various build directories, and pjlib/include/pj/compat/os_auto.h.
Benny Prijonod9627842007-04-18 09:24:31 +00001069
Benny Prijonoc16c6e32007-11-18 14:53:47 +00001070Further customizations can be put in:
Benny Prijonod9627842007-04-18 09:24:31 +00001071 - 'user.mak'
1072 - 'pjlib/include/pj/config_site.h'
1073
1074The next step now is to run 'make dep' and 'make'.
1075])
1076