blob: 6cf9614b732577cdd9f73cf3073d9b28a0b36301 [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"
Sauw Ming6a970a32011-03-01 05:25:27 +0000413 case $target in
414 arm-apple-darwin*)
415 ac_os_objs="$ac_os_objs os_info_iphone.o"
416 ;;
417 esac
Benny Prijono4e48b512007-05-16 13:41:00 +0000418 # UUID
419 if test "$ac_has_uuid_lib" = "1" -a "$ac_has_uuid_h" = "1"; then
420 ac_os_objs="$ac_os_objs guid_uuid.o"
421 else
422 ac_os_objs="$ac_os_objs guid_simple.o"
423 fi
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +0000424 ;;
425esac
426
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000427
Benny Prijono4e48b512007-05-16 13:41:00 +0000428
Benny Prijonob466e232006-09-10 08:53:59 +0000429dnl ##########################################
430dnl #
431dnl # PJMEDIA
432dnl #
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000433
Benny Prijono8a9b3b22010-01-14 14:46:54 +0000434dnl # Use external Speex installation
435AC_SUBST(ac_external_speex,0)
436AC_ARG_WITH(external-speex,
437 AC_HELP_STRING([--with-external-speex],
438 [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)]),
439 [
440 if test "x$with_external_speex" != "xno"; then
441 # Test Speex installation
442 AC_MSG_CHECKING([if external Speex devkit is installed])
443 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <speex/speex.h>
444 #include <speex/speex_echo.h>
445 ]],
446 [speex_echo_state_init(0, 0); speex_encoder_init(0); ])],
447 [AC_MSG_RESULT(yes!!)
448 AC_DEFINE(PJMEDIA_EXTERNAL_SPEEX_CODEC, 1)
449 ac_external_speex="1"
450 ],
451 [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])])
452 fi
453 ]
454 )
455
456dnl # Use external GSM codec library installation
457AC_SUBST(ac_external_gsm,0)
458AC_ARG_WITH(external-gsm,
459 AC_HELP_STRING([--with-external-gsm],
460 [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)]),
461 [
462 if test "x$with_external_gsm" != "xno"; then
Benny Prijonod4306432010-05-01 22:05:41 +0000463 # Test GSM library installation
464 AC_MSG_CHECKING([if external GSM devkit is installed as gsm/gsm.h])
465 AC_COMPILE_IFELSE(
466 [AC_LANG_PROGRAM([[#include <gsm/gsm.h> ]], [gsm_create(); ]) ],
467 [AC_MSG_RESULT(yes!!)
468 AC_DEFINE(PJMEDIA_EXTERNAL_GSM_CODEC, 1)
469 AC_DEFINE(PJMEDIA_EXTERNAL_GSM_GSM_H, 1)
470 ac_external_gsm="1"
471 ],
472 [
473 AC_MSG_RESULT(no)
474 AC_MSG_CHECKING([if external GSM devkit is installed as gsm.h])
475 AC_COMPILE_IFELSE(
476 [AC_LANG_PROGRAM([[#include <gsm.h> ]], [gsm_create(); ]) ],
477 [AC_MSG_RESULT(yes!!)
478 AC_DEFINE(PJMEDIA_EXTERNAL_GSM_CODEC, 1)
479 AC_DEFINE(PJMEDIA_EXTERNAL_GSM_H, 1)
480 ac_external_gsm="1"
481 ],
482 [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])
483 ]
484 )
485 ]
486 )
Benny Prijono8a9b3b22010-01-14 14:46:54 +0000487 fi
488 ]
489 )
490
491
492
Benny Prijonob466e232006-09-10 08:53:59 +0000493dnl # Sound device backend selection
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000494AC_SUBST(ac_pjmedia_snd)
Benny Prijono1d971622006-09-10 22:27:40 +0000495AC_ARG_ENABLE(sound,
496 AC_HELP_STRING([--disable-sound],
497 [Exclude sound (i.e. use null sound)]),
498 [if test "$enable_sound" = "no"; then
499 [ac_pjmedia_snd=null]
500 AC_MSG_RESULT([Checking if sound is disabled... yes])
501 fi]
502 )
503
Benny Prijono8a9b3b22010-01-14 14:46:54 +0000504dnl # Use external PortAudio installation
505AC_SUBST(ac_external_pa,0)
506AC_ARG_WITH(external-pa,
507 AC_HELP_STRING([--with-external-pa],
508 [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 +0000509 [
Benny Prijono8a9b3b22010-01-14 14:46:54 +0000510 if test "x$with_external_pa" != "xno"; then
511 # Test PortAudio installation
512 AC_MSG_CHECKING([if external PortAudio devkit is installed])
513 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <portaudio.h>
514 ]],
515 [Pa_Initialize();])],
516 [AC_MSG_RESULT(yes!!)
517 ac_external_pa="1"
518 ],
519 [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 +0000520 fi
521 ]
522 )
523
Benny Prijono39ae2da2006-10-13 17:57:42 +0000524AC_SUBST(ac_pa_cflags)
Benny Prijono27c98722007-04-09 21:28:15 +0000525AC_CHECK_HEADER(sys/soundcard.h,
526 [ac_pa_cflags="$ac_pa_cflags -DHAVE_SYS_SOUNDCARD_H"])
527AC_CHECK_HEADER(linux/soundcard.h,
528 [ac_pa_cflags="$ac_pa_cflags -DHAVE_LINUX_SOUNDCARD_H"])
529AC_CHECK_HEADER(machine/soundcard.h,
530 [ac_pa_cflags="$ac_pa_cflags -DHAVE_MACHINE_SOUNDCARD_H"])
531
Benny Prijono3e091672008-01-09 15:43:02 +0000532if test "x$ac_cv_c_bigendian" = "xyes"; then
533 ac_pa_cflags="$ac_pa_cflags -DPA_BIG_ENDIAN"
534else
535 ac_pa_cflags="$ac_pa_cflags -DPA_LITTLE_ENDIAN"
536fi
537
Benny Prijono1d971622006-09-10 22:27:40 +0000538if test "$enable_sound" = "no"; then
539 true;
540else
541 case $target in
Benny Prijono8ec5eae2010-05-12 10:59:20 +0000542 arm-apple-darwin*)
Sauw Ming6a970a32011-03-01 05:25:27 +0000543 LIBS="$LIBS -framework CoreAudio -framework CoreFoundation -framework AudioToolbox -framework CFNetwork -framework UIKit"
Benny Prijono8ec5eae2010-05-12 10:59:20 +0000544 AC_MSG_RESULT([Checking sound device backend... AudioUnit])
545 ;;
Benny Prijonob466e232006-09-10 08:53:59 +0000546 *darwin*)
Benny Prijono39ae2da2006-10-13 17:57:42 +0000547 LIBS="$LIBS -framework CoreAudio -framework CoreServices -framework AudioUnit -framework AudioToolbox"
548 if test "`uname -r`" = "6.8"; then
Benny Prijono27c98722007-04-09 21:28:15 +0000549 #ac_pa_cflags="$ac_pa_cflags -DPA_OLD_CORE_AUDIO -DMOSX_USE_NON_ATOMIC_FLAG_BITS"
Benny Prijono39ae2da2006-10-13 17:57:42 +0000550 #AC_MSG_RESULT([Setting additional PortAudio CFLAGS.. -DPA_OLD_CORE_AUDIO -DMOSX_USE_NON_ATOMIC_FLAG_BITS])
551 ac_pjmedia_snd=pa_old_darwinos
552 AC_MSG_RESULT([Checking sound device backend... old coreaudio])
553 else
554 ac_pjmedia_snd=pa_darwinos
555 AC_MSG_RESULT([Checking sound device backend... coreaudio])
556 fi
Benny Prijonob466e232006-09-10 08:53:59 +0000557 ;;
558 *cygwin* | *mingw*)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000559 ac_pjmedia_snd=pa_win32
560 AC_MSG_RESULT([Checking sound device backend... win32 sound])
561 ;;
562 *rtems*)
563 ac_pjmedia_snd=null
564 AC_MSG_RESULT([Checking sound device backend... null sound])
565 ;;
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000566 *)
Benny Prijono0b462322008-03-12 22:44:24 +0000567 dnl # Check if ALSA is available
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000568 ac_pjmedia_snd=pa_unix
569 AC_CHECK_HEADER(alsa/version.h,
570 [AC_SUBST(ac_pa_use_alsa,1)
571 LIBS="$LIBS -lasound"
572 ],
573 [AC_SUBST(ac_pa_use_alsa,0)])
574 AC_MSG_RESULT([Checking sound device backend... unix])
Benny Prijono0b462322008-03-12 22:44:24 +0000575
576 dnl # Check if OSS is disabled
577 AC_SUBST(ac_pa_use_oss,1)
578 AC_ARG_ENABLE(oss,
579 AC_HELP_STRING([--disable-oss],
580 [Disable OSS audio (default: not disabled)])
581 ,
582 [
583 if test "$enable_oss" = "no"; then
584 [ac_pa_use_oss=0]
585 AC_MSG_RESULT([Checking if OSS audio is disabled... yes])
586 fi
587 ])
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000588 ;;
Benny Prijono1d971622006-09-10 22:27:40 +0000589 esac
590fi
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000591
Benny Prijonoebb2c332008-07-28 23:40:58 +0000592AC_ARG_ENABLE(ext_sound,
593 AC_HELP_STRING([--enable-ext-sound],
594 [PJMEDIA will not provide any sound device backend]),
595 [if test "$enable_ext_sound" = "yes"; then
596 [ac_pjmedia_snd=external]
597 AC_MSG_RESULT([Checking if external sound is set... yes])
598 fi]
599 )
600
Benny Prijonob466e232006-09-10 08:53:59 +0000601dnl # Include resampling small filter
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000602AC_SUBST(ac_no_small_filter)
603AC_ARG_ENABLE(small-filter,
604 AC_HELP_STRING([--disable-small-filter],
605 [Exclude small filter in resampling]),
606 [if test "$enable_small_filter" = "no"; then
607 [ac_no_small_filter='-DPJMEDIA_HAS_SMALL_FILTER=0']
608 AC_MSG_RESULT([Checking if small filter is disabled... yes])
609 fi],
610 AC_MSG_RESULT([Checking if small filter is disabled... no]))
611
Benny Prijonob466e232006-09-10 08:53:59 +0000612dnl # Include resampling large filter
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000613AC_SUBST(ac_no_large_filter)
614AC_ARG_ENABLE(large-filter,
615 AC_HELP_STRING([--disable-large-filter],
616 [Exclude large filter in resampling]),
617 [if test "$enable_large_filter" = "no"; then
618 [ac_no_large_filter='-DPJMEDIA_HAS_LARGE_FILTER=0']
619 AC_MSG_RESULT([Checking if large filter is disabled... yes])
620 fi],
621 AC_MSG_RESULT([Checking if large filter is disabled... no]))
622
Benny Prijonob466e232006-09-10 08:53:59 +0000623dnl # Include Speex AEC
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000624AC_SUBST(ac_no_speex_aec)
625AC_ARG_ENABLE(speex-aec,
626 AC_HELP_STRING([--disable-speex-aec],
627 [Exclude Speex Acoustic Echo Canceller/AEC]),
628 [if test "$enable_speex_aec" = "no"; then
629 [ac_no_speex_aec='-DPJMEDIA_HAS_SPEEX_AEC=0']
630 AC_MSG_RESULT([Checking if Speex AEC is disabled...yes])
631 fi],
632 AC_MSG_RESULT([Checking if Speex AEC is disabled...no]))
633
Benny Prijonob466e232006-09-10 08:53:59 +0000634dnl # Include G711 codec
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000635AC_SUBST(ac_no_g711_codec)
636AC_ARG_ENABLE(g711-codec,
637 AC_HELP_STRING([--disable-g711-codec],
638 [Exclude G.711 codecs from the build]),
639 [if test "$enable_g711_codec" = "no"; then
640 [ac_no_g711_codec=1]
Benny Prijonofe9bffd2007-01-27 17:44:13 +0000641 AC_DEFINE(PJMEDIA_HAS_G711_CODEC,0)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000642 AC_MSG_RESULT([Checking if G.711 codec is disabled...yes])
643 fi],
644 AC_MSG_RESULT([Checking if G.711 codec is disabled...no]))
645
646
Benny Prijonob466e232006-09-10 08:53:59 +0000647dnl # Include L16 codec
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000648AC_SUBST(ac_no_l16_codec)
649AC_ARG_ENABLE(l16-codec,
650 AC_HELP_STRING([--disable-l16-codec],
651 [Exclude Linear/L16 codec family from the build]),
652 [if test "$enable_l16_codec" = "no"; then
653 [ac_no_l16_codec=1]
Benny Prijonofe9bffd2007-01-27 17:44:13 +0000654 AC_DEFINE(PJMEDIA_HAS_L16_CODEC,0)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000655 AC_MSG_RESULT([Checking if L16 codecs are disabled...yes])
656 fi],
Benny Prijonoc1fe23d2006-09-13 09:38:06 +0000657 AC_MSG_RESULT([Checking if L16 codec is disabled...no]))
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000658
659
Benny Prijonob466e232006-09-10 08:53:59 +0000660dnl # Include GSM codec
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000661AC_SUBST(ac_no_gsm_codec)
662AC_ARG_ENABLE(gsm-codec,
663 AC_HELP_STRING([--disable-gsm-codec],
664 [Exclude GSM codec in the build]),
665 [if test "$enable_gsm_codec" = "no"; then
666 [ac_no_gsm_codec=1]
Benny Prijonofe9bffd2007-01-27 17:44:13 +0000667 AC_DEFINE(PJMEDIA_HAS_GSM_CODEC,0)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000668 AC_MSG_RESULT([Checking if GSM codec is disabled...yes])
669 fi],
670 AC_MSG_RESULT([Checking if GSM codec is disabled...no]))
671
Benny Prijono71f657d2008-03-17 14:24:21 +0000672dnl # Include G.722 codec
673AC_SUBST(ac_no_g722_codec)
674AC_ARG_ENABLE(g722-codec,
675 AC_HELP_STRING([--disable-g722-codec],
676 [Exclude G.722 codec in the build]),
677 [if test "$enable_g722_codec" = "no"; then
678 [ac_no_g722_codec=1]
679 AC_DEFINE(PJMEDIA_HAS_G722_CODEC,0)
680 AC_MSG_RESULT([Checking if G.722 codec is disabled...yes])
681 fi],
682 AC_MSG_RESULT([Checking if G.722 codec is disabled...no]))
683
Nanang Izzuddin56e380a2009-04-15 14:45:41 +0000684dnl # Include G722.1 codec
685AC_SUBST(ac_no_g7221_codec)
686AC_ARG_ENABLE(g7221-codec,
687 AC_HELP_STRING([--disable-g7221-codec],
688 [Exclude G.7221 codec in the build]),
689 [if test "$enable_g7221_codec" = "no"; then
690 [ac_no_g7221_codec=1]
691 AC_DEFINE(PJMEDIA_HAS_G7221_CODEC,0)
692 AC_MSG_RESULT([Checking if G.722.1 codec is disabled...yes])
693 fi],
694 AC_MSG_RESULT([Checking if G.722.1 codec is disabled...no]))
695
Benny Prijonob466e232006-09-10 08:53:59 +0000696dnl # Include Speex codec
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000697AC_SUBST(ac_no_speex_codec)
698AC_ARG_ENABLE(speex-codec,
699 AC_HELP_STRING([--disable-speex-codec],
700 [Exclude Speex codecs in the build]),
701 [if test "$enable_speex_codec" = "no"; then
702 [ac_no_speex_codec=1]
Benny Prijonofe9bffd2007-01-27 17:44:13 +0000703 AC_DEFINE(PJMEDIA_HAS_SPEEX_CODEC,0)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000704 AC_MSG_RESULT([Checking if Speex codec is disabled...yes])
705 fi],
706 AC_MSG_RESULT([Checking if Speex codec is disabled...no]))
707
Benny Prijonob466e232006-09-10 08:53:59 +0000708dnl # Include iLBC codec
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000709AC_SUBST(ac_no_ilbc_codec)
710AC_ARG_ENABLE(ilbc-codec,
711 AC_HELP_STRING([--disable-ilbc-codec],
712 [Exclude iLBC codec in the build]),
713 [if test "$enable_ilbc_codec" = "no"; then
714 [ac_no_ilbc_codec=1]
Benny Prijonofe9bffd2007-01-27 17:44:13 +0000715 AC_DEFINE(PJMEDIA_HAS_ILBC_CODEC,0)
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000716 AC_MSG_RESULT([Checking if iLBC codec is disabled...yes])
717 fi],
718 AC_MSG_RESULT([Checking if iLBC codec is disabled...no]))
719
Benny Prijono550a1a62007-10-16 08:54:00 +0000720dnl # Include libsamplerate
721AC_ARG_ENABLE(libsamplerate,
722 AC_HELP_STRING([--enable-libsamplerate],
723 [Link with libsamplerate when available. Note that PJMEDIA_RESAMPLE_IMP must also be configured]),
724 [ AC_CHECK_LIB(samplerate,src_new) ],
725 AC_MSG_RESULT([Skipping libsamplerate detection])
726 )
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000727
728
Benny Prijono0822c192008-08-21 20:59:58 +0000729dnl ########################################################
730dnl # Intel IPP support
731dnl #
732AC_ARG_ENABLE(ipp,
733 AC_HELP_STRING([--enable-ipp],
734 [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]),
735 [],
736 [enable_ipp=no]
737 )
738
Benny Prijono3965f192010-02-10 18:46:05 +0000739AC_ARG_WITH(ipp,
Benny Prijono0822c192008-08-21 20:59:58 +0000740 AC_HELP_STRING([--with-ipp=DIR],
741 [Specify the Intel IPP location]),
742 [],
743 [with_ipp=no]
744 )
745
Benny Prijono3965f192010-02-10 18:46:05 +0000746AC_ARG_WITH(ipp-samples,
Benny Prijono0822c192008-08-21 20:59:58 +0000747 AC_HELP_STRING([--with-ipp-samples=DIR],
748 [Specify the Intel IPP samples location]),
749 [],
750 [with_ipp_samples=no]
751 )
752
Benny Prijono3965f192010-02-10 18:46:05 +0000753AC_ARG_WITH(ipp-arch,
754 AC_HELP_STRING([--with-ipp-arch=ARCH],
755 [Specify the Intel IPP ARCH suffix, e.g. "64" or "em64t. Default is blank for IA32"]),
756 [],
757 [with_ipp_arch=no]
758 )
759
Benny Prijono0822c192008-08-21 20:59:58 +0000760if test "x$enable_ipp" != "xno"; then
761 dnl #
762 dnl # Verifying Intel IPP path
763 dnl #
764 AC_MSG_CHECKING([Intel IPP location])
765
766 if test "x$with_ipp" != "xno" -a "x$with_ipp" != "x"; then
767 AC_MSG_RESULT([$with_ipp])
768 IPPROOT=$with_ipp
769 elif test "x$IPPROOT" = "x"; then
770 if test -d /opt/intel/ipp; then
771 IPPROOT=`ls -d /opt/intel/ipp/*/* | head -1`
772 AC_MSG_RESULT([autodetected in $IPPROOT])
773 fi
774 else
775 AC_MSG_RESULT([$IPPROOT])
776 fi
777
Benny Prijono3965f192010-02-10 18:46:05 +0000778 if test "x$with_ipp_arch" != "xno"; then
Benny Prijono896be292010-08-17 12:16:46 +0000779 IPP_SUFFIX=$with_ipp_arch
Benny Prijono3965f192010-02-10 18:46:05 +0000780 AC_MSG_RESULT([IPP arch suffix is set to $IPP_SUFFIX])
781 else
782 IPP_SUFFIX=""
783 AC_MSG_RESULT([IPP arch suffix is set to empty])
784 fi
785
Benny Prijono0822c192008-08-21 20:59:58 +0000786 if test x$IPPROOT = x; then
787 AC_MSG_ERROR([the location is neither specified nor can be guessed. Please specify with IPPROOT env var or with --with-ipp option])
788 elif test ! -d $IPPROOT; then
789 AC_MSG_ERROR([not found])
790 elif test ! -d $IPPROOT/include; then
791 AC_MSG_ERROR([directory doesn't seem to be valid])
792 else
793 # IPP directory looks okay.
794 # Remove trailing backslash
Benny Prijono3965f192010-02-10 18:46:05 +0000795 IPPROOT=`echo $IPPROOT | sed 's/\/$//'`
Benny Prijono0822c192008-08-21 20:59:58 +0000796
797 SAVED_CFLAGS="$CFLAGS"
798 SAVED_LDFLAGS="$LDFLAGS"
799 SAVED_LIBS="$LIBS"
800
801 IPP_CFLAGS="-I$IPPROOT/include"
Benny Prijono46bd0842010-02-12 14:12:41 +0000802 IPP_LIBS="-lippsc${IPP_SUFFIX} -lipps${IPP_SUFFIX} -lippsr${IPP_SUFFIX} -lippcore${IPP_SUFFIX}"
803
804 # Some differences between Mac OS X and Linux
805 case $target in
806 *darwin* )
807 IPP_LDFLAGS="-L$IPPROOT/Libraries -L$IPPROOT/lib"
808 ;;
809 *)
810 IPP_LDFLAGS="-L$IPPROOT/sharedlib"
811 IPP_LIBS="$IPP_LIBS -lguide"
812 ;;
813 esac
814
Benny Prijono0822c192008-08-21 20:59:58 +0000815 #IPP_LDFLAGS="-L$IPPROOT/sharedlib"
Benny Prijono46bd0842010-02-12 14:12:41 +0000816 #Static:
Benny Prijono0822c192008-08-21 20:59:58 +0000817 #IPP_LIBS="-lippscmerged -lippsrmerged -lippsmerged -lippcore"
818
819 CFLAGS="$CFLAGS $IPP_CFLAGS"
820 LDFLAGS="$LDFLAGS $IPP_LDFLAGS"
821 LIBS="$IPP_LIBS $LIBS"
822
823
824 AC_MSG_CHECKING([Intel IPP usability])
825 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <ippcore.h>
826 ]],
827 [ippStaticInit();])],
828 [AC_MSG_RESULT(ok)],
Benny Prijono3965f192010-02-10 18:46:05 +0000829 [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 +0000830
831 CFLAGS="$SAVED_CFLAGS"
832 LDFLAGS="$SAVED_LDFLAGS"
833 LIBS="$SAVED_LIBS"
834 fi
835
836 dnl #
837 dnl # Verifying Intel IPP samples path
838 dnl #
839 AC_MSG_CHECKING([Intel IPP samples location])
840
841 if test "x$with_ipp_samples" != "xno" -a "x$with_ipp_samples" != "x"; then
842 AC_MSG_RESULT([$with_ipp_samples])
843 IPPSAMPLES=$with_ipp_samples
844 elif test "x$IPPSAMPLES" = "x"; then
845 if test -d /opt/intel/ipp-samples; then
846 IPPSAMPLES=/opt/intel/ipp-samples
847 AC_MSG_RESULT([autodetected in $IPPSAMPLES])
848 fi
849 else
850 AC_MSG_RESULT([$IPPSAMPLES])
851 fi
852
853 if test x$IPPSAMPLES = x; then
854 AC_MSG_ERROR([the location is neither specified nor can be guessed. Please specify with IPPSAMPLES env var or with --with-ipp-samples option])
855 elif test ! -d $IPPSAMPLES; then
856 AC_MSG_ERROR([not found])
857 elif test ! -d $IPPSAMPLES/speech-codecs; then
858 AC_MSG_ERROR([directory doesn't seem to be valid])
859 else
860 # Remove trailing backslash
861 IPPSAMPLES=`echo $IPPSAMPLES | sed 's/\/$//'`
Benny Prijono3965f192010-02-10 18:46:05 +0000862
863 # Guess the libusc.a/libspeech.a build location
Benny Prijono0822c192008-08-21 20:59:58 +0000864 AC_MSG_CHECKING([Intel IPP USC build location])
Benny Prijono3965f192010-02-10 18:46:05 +0000865 if test -d $IPPSAMPLES/speech-codecs/bin; then
866 IPPVER=5
867 IPPSAMP_DIR=`ls -d $IPPSAMPLES/speech-codecs/bin/*gcc*/lib | head -1`
868 elif test -d $IPPSAMPLES/speech-codecs/_bin; then
869 IPPVER=6
Benny Prijono46bd0842010-02-12 14:12:41 +0000870 if test -d $IPPSAMPLES/speech-codecs/_bin/*gcc*; then
871 # gcc compiler
872 IPPSAMP_DIR=`ls -d $IPPSAMPLES/speech-codecs/_bin/*gcc*/lib | head -1`
873 elif test -d $IPPSAMPLES/speech-codecs/_bin/*icc*; then
874 # icc compiler
875 IPPSAMP_DIR=`ls -d $IPPSAMPLES/speech-codecs/_bin/*icc*/lib | head -1`
876 else
877 AC_MSG_FAILURE([Unable to find to find built binaries under $IPPSAMPLES/speech-codecs/{bin,_bin}. Have you built the IPP samples?])
878 fi
Benny Prijono3965f192010-02-10 18:46:05 +0000879 else
880 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 +0000881 fi
Benny Prijono3965f192010-02-10 18:46:05 +0000882
883 # Test the directory
884 if test ! -d $IPPSAMP_DIR; then
885 AC_MSG_FAILURE([There's something wrong with this script, directory $IPPSAMP_DIR does not exist])
886 exit 1;
Benny Prijono0822c192008-08-21 20:59:58 +0000887 fi
Benny Prijono3965f192010-02-10 18:46:05 +0000888
889 if test "x$IPPVER" = "x5"; then
890 IPPSAMP_LIBS="libusc.a"
891 IPPSAMP_LDLIBS="-lusc"
892 elif test "x$IPPVER" = "x6"; then
893 IPPSAMP_LIBS="libspeech.a"
894 IPPSAMP_LDLIBS="-lspeech"
895 else
896 AC_MSG_FAILURE([bug in this script: unsupported IPP version])
897 fi
898
899 if test ! -f $IPPSAMP_DIR/$IPPSAMP_LIBS; then
900 AC_MSG_FAILURE([$IPPSAMP_LIBS doesn't exist in $IPPSAMP_DIR])
901 fi
902
903 AC_MSG_RESULT([$IPPSAMP_DIR])
Benny Prijono0822c192008-08-21 20:59:58 +0000904
905 SAVED_CFLAGS="$CFLAGS"
906 SAVED_LDFLAGS="$LDFLAGS"
907 SAVED_LIBS="$LIBS"
908
Benny Prijono3965f192010-02-10 18:46:05 +0000909 IPPSAMP_INC="-I$IPPSAMPLES/speech-codecs/core/usc/include"
910 CFLAGS="$CFLAGS $IPPSAMP_INC"
911 LDFLAGS="$LDFLAGS -L$IPPSAMP_DIR"
912 LIBS="$IPPSAMP_LDLIBS $LIBS"
Benny Prijono0822c192008-08-21 20:59:58 +0000913
914 AC_MSG_CHECKING([Intel IPP USC usability])
915 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <usc.h>
916 ]],
917 [extern USC_Fxns USC_G729AFP_Fxns;])],
918 [AC_MSG_RESULT(ok)],
919 [AC_MSG_FAILURE(failed)])
920
921 CFLAGS="$SAVED_CFLAGS"
Benny Prijono3965f192010-02-10 18:46:05 +0000922 LDFLAGS="$IPP_LDFLAGS $SAVED_LDFLAGS"
923 LIBS="$IPP_LIBS $SAVED_LIBS"
Benny Prijono0822c192008-08-21 20:59:58 +0000924
Benny Prijono3965f192010-02-10 18:46:05 +0000925 IPP_CFLAGS="$IPP_CFLAGS $IPPSAMP_INC"
926 IPP_LDFLAGS="$IPP_LDFLAGS -L$IPPSAMP_DIR"
927 IPP_LIBS="$IPPSAMP_LDLIBS $IPP_LIBS"
Benny Prijono0822c192008-08-21 20:59:58 +0000928 fi
929
Benny Prijono3965f192010-02-10 18:46:05 +0000930 CFLAGS="$CFLAGS $IPP_CFLAGS"
931 LDFLAGS="$LDFLAGS $IPP_LDFLAGS"
932 LIBS="$LIBS $IPP_LIBS"
933
Benny Prijono0822c192008-08-21 20:59:58 +0000934 ac_build_mak_vars="$ac_build_mak_vars\n\
935export IPP_CFLAGS=$IPP_CFLAGS\n\
936export IPP_LDFLAGS=$IPP_LDFLAGS\n\
937export IPP_LIBS=$IPP_LIBS"
938else
939 AC_MSG_RESULT([Skipping Intel IPP settings (not wanted)])
940fi
941
942
Benny Prijonob466e232006-09-10 08:53:59 +0000943dnl ##########################################
944dnl #
Benny Prijono7e0d75f2006-12-25 20:34:14 +0000945dnl # PJSIP CONFIG
946dnl #
947
948dnl # Include SSL support
949AC_SUBST(ac_no_ssl)
950AC_ARG_ENABLE(ssl,
Benny Prijonoce1db762007-02-14 02:21:08 +0000951 AC_HELP_STRING([--disable-ssl],
952 [Exclude SSL support the build (default: autodetect)])
953 ,
Benny Prijono7e0d75f2006-12-25 20:34:14 +0000954 [
955 if test "$enable_ssl" = "no"; then
956 [ac_no_ssl=1]
957 AC_MSG_RESULT([Checking if SSL support is disabled... yes])
958 fi
959 ],
960 [
961 AC_MSG_RESULT([checking for OpenSSL installations..])
962 AC_SUBST(openssl_h_present)
963 AC_SUBST(libssl_present)
964 AC_SUBST(libcrypto_present)
965 AC_CHECK_HEADER(openssl/ssl.h,[openssl_h_present=1])
Benny Prijono7e0d75f2006-12-25 20:34:14 +0000966 AC_CHECK_LIB(crypto,ERR_load_BIO_strings,[libcrypto_present=1 && LIBS="$LIBS -lcrypto"])
Benny Prijonod5233702010-01-13 13:09:45 +0000967 AC_CHECK_LIB(ssl,SSL_library_init,[libssl_present=1 && LIBS="$LIBS -lssl"])
Benny Prijono7e0d75f2006-12-25 20:34:14 +0000968 if test "x$openssl_h_present" = "x1" -a "x$libssl_present" = "x1" -a "x$libcrypto_present" = "x1"; then
969 AC_MSG_RESULT([OpenSSL library found, SSL support enabled])
Nanang Izzuddin9c7616f2009-10-28 06:09:15 +0000970 # PJSIP_HAS_TLS_TRANSPORT setting follows PJ_HAS_SSL_SOCK
971 #AC_DEFINE(PJSIP_HAS_TLS_TRANSPORT, 1)
Nanang Izzuddinea6d3c42009-10-26 15:47:52 +0000972 AC_DEFINE(PJ_HAS_SSL_SOCK, 1)
Benny Prijono7e0d75f2006-12-25 20:34:14 +0000973 else
974 AC_MSG_RESULT([** OpenSSL libraries not found, disabling SSL support **])
975 fi
976 ])
977
978
979dnl ##########################################
980dnl #
Benny Prijonob466e232006-09-10 08:53:59 +0000981dnl # MANUAL CONFIG
982dnl #
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000983
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000984
Benny Prijonob466e232006-09-10 08:53:59 +0000985dnl # Determine if select() requires nfds to be filled up with
986dnl # correct value (max_fd+1). If zero, nfds will be filled up with
987dnl # PJ_FD_SETSIZE
Benny Prijonoc4c61d02006-08-20 20:47:34 +0000988AC_MSG_CHECKING([if select() needs correct nfds])
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000989case $target in
990 *rtems*) AC_DEFINE(PJ_SELECT_NEEDS_NFDS,1)
Benny Prijonoa9b372a2006-07-24 02:07:11 +0000991 AC_MSG_RESULT(yes)
992 ;;
993 *) AC_DEFINE(PJ_SELECT_NEEDS_NFDS,0)
994 AC_MSG_RESULT([no (default)])
995 AC_MSG_RESULT([** Decided that select() doesn't need correct nfds (please check)])
996 ;;
997esac
998
Benny Prijonob466e232006-09-10 08:53:59 +0000999dnl # Determine if pj_thread_create() should enforce thread stack size when
1000dnl # creating thread. Default is zero, to allow OS to allocate appropriate
1001dnl # thread's stack size.
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001002AC_MSG_CHECKING([if pj_thread_create() should enforce stack size])
1003case $target in
1004 *rtems*) AC_DEFINE(PJ_THREAD_SET_STACK_SIZE,1)
1005 AC_MSG_RESULT(yes)
1006 ;;
1007 *) AC_DEFINE(PJ_THREAD_SET_STACK_SIZE,0)
1008 AC_MSG_RESULT([no (default)])
1009 ;;
1010esac
1011
Benny Prijonob466e232006-09-10 08:53:59 +00001012dnl # Determine if pj_thread_create() should allocate thread's stack from
1013dnl # the pool. Default is zero, to let OS allocate thread's stack.
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001014AC_MSG_CHECKING([if pj_thread_create() should allocate stack])
1015case $target in
1016 *rtems*) AC_DEFINE(PJ_THREAD_ALLOCATE_STACK,1)
1017 AC_MSG_RESULT(yes)
1018 ;;
1019 *) AC_DEFINE(PJ_THREAD_ALLOCATE_STACK,0)
1020 AC_MSG_RESULT([no (default)])
1021 ;;
1022esac
1023
Benny Prijonob466e232006-09-10 08:53:59 +00001024dnl # This value specifies the value set in errno by the OS when a non-blocking
1025dnl # socket recv() can not return immediate data.
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001026case $target in
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +00001027 *mingw* | *cygw* | *win32* | *w32* )
1028 AC_DEFINE(PJ_BLOCKING_ERROR_VAL,WSAEWOULDBLOCK)
1029 ;;
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001030 *) AC_DEFINE(PJ_BLOCKING_ERROR_VAL,EAGAIN)
1031 AC_MSG_RESULT([** Setting non-blocking recv() retval to EAGAIN (please check)])
1032 ;;
1033esac
1034
Benny Prijonob466e232006-09-10 08:53:59 +00001035dnl # This value specifies the value set in errno by the OS when a non-blocking
1036dnl # socket connect() can not get connected immediately.
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001037case $target in
Benny Prijonoc5b6dbf2006-09-10 16:33:48 +00001038 *mingw* | *cygw* | *win32* | *w32* )
1039 AC_DEFINE(PJ_BLOCKING_CONNECT_ERROR_VAL,WSAEWOULDBLOCK)
1040 ;;
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001041 *) AC_DEFINE(PJ_BLOCKING_CONNECT_ERROR_VAL,EINPROGRESS)
1042 AC_MSG_RESULT([** Setting non-blocking connect() retval to EINPROGRESS (please check)])
1043 ;;
1044esac
1045
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001046
Benny Prijonoc4c61d02006-08-20 20:47:34 +00001047AC_SUBST(target)
1048AC_SUBST(ac_cross_compile)
1049if test "$build" = "$host"; then
1050 ac_cross_compile=
1051else
Benny Prijono5b818b22006-09-17 22:58:51 +00001052 ac_cross_compile=${host_orig}-
Benny Prijonoc4c61d02006-08-20 20:47:34 +00001053fi
1054AC_SUBST(ac_linux_poll,select)
1055AC_SUBST(ac_host,unix)
1056AC_SUBST(ac_main_obj)
1057case $target in
1058 *rtems*)
1059 ac_main_obj=main_rtems.o
1060 ;;
1061 *)
1062 ac_main_obj=main.o
1063 ;;
1064esac
1065AC_SUBST(CC)
Benny Prijono0822c192008-08-21 20:59:58 +00001066
1067ac_build_mak_vars=`echo $ac_build_mak_vars | sed 's/\\\\n/\n/g'`
Benny Prijonoa9b372a2006-07-24 02:07:11 +00001068AC_OUTPUT()
1069
Benny Prijonod9627842007-04-18 09:24:31 +00001070
1071AC_MSG_RESULT([
1072
Benny Prijonoc16c6e32007-11-18 14:53:47 +00001073Configurations 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 +00001074
Benny Prijonoc16c6e32007-11-18 14:53:47 +00001075Further customizations can be put in:
Benny Prijonod9627842007-04-18 09:24:31 +00001076 - 'user.mak'
1077 - 'pjlib/include/pj/config_site.h'
1078
1079The next step now is to run 'make dep' and 'make'.
1080])
1081