]> sjero.net Git - linphone/blob - configure.ac
Merge branch 'master' of git.linphone.org:linphone into upnp
[linphone] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_INIT([linphone],[3.5.99.0],[linphone-developers@nongnu.org])
4 AC_CANONICAL_SYSTEM
5 AC_CONFIG_SRCDIR([coreapi/linphonecore.c])
6
7 dnl Source packaging numbers
8
9 LINPHONE_MAJOR_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f1)
10 LINPHONE_MINOR_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f2)
11 LINPHONE_MICRO_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f3)
12 LINPHONE_EXTRA_VERSION=$(echo $PACKAGE_VERSION | cut -d. -f4)
13
14 dnl program extension
15 LINPHONE_VERSION=$LINPHONE_MAJOR_VERSION.$LINPHONE_MINOR_VERSION.${LINPHONE_MICRO_VERSION}
16 if test "$LINPHONE_EXTRA_VERSION" != "" ;then
17         LINPHONE_VERSION=$LINPHONE_VERSION.${LINPHONE_EXTRA_VERSION}
18 fi
19
20 LIBLINPHONE_SO_CURRENT=5 dnl increment this number when you add/change/remove an interface
21 LIBLINPHONE_SO_REVISION=0 dnl increment this number when you change source code, without changing interfaces; set to 0 when incrementing CURRENT
22 LIBLINPHONE_SO_AGE=0 dnl increment this number when you add an interface, set to 0 if you remove an interface
23
24 LIBLINPHONE_SO_VERSION=$LIBLINPHONE_SO_CURRENT:$LIBLINPHONE_SO_REVISION:$LIBLINPHONE_SO_AGE
25
26 AC_SUBST(LIBLINPHONE_SO_VERSION, $LIBLINPHONE_SO_VERSION)
27 AC_SUBST(LINPHONE_VERSION)
28
29 AC_MSG_NOTICE([$PACKAGE_NAME-$PACKAGE_VERSION           A full featured audio/video sip phone.])
30 AC_MSG_NOTICE([licensed under the terms of the General Public License (GPL)])
31
32 AM_INIT_AUTOMAKE
33 AC_SUBST([LIBTOOL_DEPS])
34 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],)
35 AC_SUBST([docdir], [${datadir}/doc])
36 AC_CONFIG_HEADERS(config.h)
37 AC_CONFIG_MACRO_DIR([m4])
38 AC_ISC_POSIX
39 AC_PROG_CC
40 AC_PROG_CXX
41 AC_C_INLINE
42 AC_HEADER_STDC
43 AM_PROG_CC_C_O
44 AC_CHECK_PROGS(MD5SUM,[md5sum md5])
45 AM_CONDITIONAL(HAVE_MD5SUM,test -n $MD5SUM)
46
47 case $target in
48         *mingw32ce)
49         CFLAGS="$CFLAGS -D_WIN32_WCE -DORTP_STATIC -D_WIN32_WINNT=0x0501"
50         CXXFLAGS="$CXXFLAGS -DORTP_STATIC -D_WIN32_WINNT=0x0501"
51         LIBS="$LIBS -lws2 -liphlpapi"
52                 mingw_found=yes
53                 mingwce_found=yes
54                 ;;
55         *mingw*)
56                 CFLAGS="$CFLAGS -DORTP_STATIC -D_WIN32_WINNT=0x0501 "
57                 CXXFLAGS="$CXXFLAGS -DORTP_STATIC -D_WIN32_WINNT=0x0501"
58                 LIBS="$LIBS -lws2_32"
59                 GUI_FLAGS="-mwindows"
60                 CONSOLE_FLAGS="-mconsole"
61                 mingw_found=yes
62         ;;
63        armv6-apple-darwin|armv7-apple-darwin|i386-apple-darwin|armv7s-apple-darwin)
64                 CFLAGS="$CFLAGS -DTARGET_OS_IPHONE "
65                 build_tests=no
66                 ios_found=yes
67         ;;
68         x86_64-apple-darwin*|i686-apple-darwin*)
69         MSPLUGINS_CFLAGS=""
70                 dnl use macport installation
71                 ACLOCAL_MACOS_FLAGS="-I /opt/local/share/aclocal"
72                 build_macos=yes
73         ;;
74
75 esac
76
77 AC_SUBST(ACLOCAL_MACOS_FLAGS)
78 AC_SUBST(CONSOLE_FLAGS)
79 AC_SUBST(GUI_FLAGS)
80
81 dnl localization tools
82 IT_PROG_INTLTOOL([0.40], [no-xml])
83
84 AM_CONDITIONAL(BUILD_TESTS,test x$build_tests != xno)
85 dnl Initialize libtool
86 LT_INIT([win32-dll shared disable-static])
87
88 AC_CONFIG_COMMANDS([libtool-hacking],[
89 if test "$mingw_found" = "yes" ; then
90         echo "Hacking libtool to work with mingw..."
91         sed -e 's/\*\" \$a_deplib \"\*/\*/' < ./libtool > libtool.tmp
92         cp -f ./libtool.tmp ./libtool
93         rm -f ./libtool.tmp
94 fi
95 ],[mingw_found=$mingw_found])
96
97 dnl Add the languages which your application supports here.
98 PKG_PROG_PKG_CONFIG
99 ALL_LINGUAS="fr it de ja es pl cs nl sv pt_BR hu ru zh_CN nb_NO zh_TW he"
100 AC_SUBST(ALL_LINGUAS)
101 AC_DEFINE_UNQUOTED(LINPHONE_ALL_LANGS, "$ALL_LINGUAS", [All supported languages])
102
103 if test "$mingw_found" != "yes" ; then
104         dnl gettext macro does not work properly under mingw. And we want to use the one provided by GTK.
105         
106         dnl AM_GNU_GETTEXT pollutes CPPFLAGS: workaround this.
107         CPPFLAGS_save=$CPPFLAGS
108         AM_GNU_GETTEXT([external])
109         AC_SUBST(INTLLIBS)
110         CPPFLAGS=$CPPFLAGS_save
111         LIBS="$LIBS $LIBINTL"
112 else
113         AC_DEFINE(ENABLE_NLS,1,[Tells whether localisation is possible])
114         AC_DEFINE(HAVE_GETTEXT,1,[Tells wheter localisation is possible])
115         LIBS="$LIBS -lintl"
116 fi
117
118 GETTEXT_PACKAGE=linphone
119 AC_SUBST(GETTEXT_PACKAGE)
120 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[The name of the gettext package name])
121 dnl AC_CHECK_LIB(intl,libintl_gettext)
122
123 AC_CHECK_FUNCS([get_current_dir_name strndup stpcpy] )
124
125 AC_ARG_ENABLE(x11,
126       [AS_HELP_STRING([--disable-x11], [Disable X11 support (default=no)])],
127       [case "${enableval}" in
128         yes) enable_x11=true ;;
129         no)  enable_x11=false ;;
130         *) AC_MSG_ERROR(bad value ${enableval} for --disable-x11) ;;
131       esac],[enable_x11=true])
132
133 dnl conditionnal build of console interface.
134 AC_ARG_ENABLE(console_ui,
135       [AS_HELP_STRING([--enable-console_ui=[yes/no]], [Turn on or off compilation of console interface (default=yes)])],
136       [case "${enableval}" in
137         yes) console_ui=true ;;
138         no)  console_ui=false ;;
139         *) AC_MSG_ERROR(bad value ${enableval} for --enable-console_ui) ;;
140       esac],[console_ui=true])
141
142 dnl conditionnal build of tools.
143 AC_ARG_ENABLE(tools,
144       [AS_HELP_STRING([--enable-tools=[yes/no]], [Turn on or off compilation of console interface (default=yes)])],
145       [case "${enableval}" in
146         yes) build_tools=true ;;
147         no)  build_tools=false ;;
148         *) AC_MSG_ERROR(bad value ${enableval} for --enable-tools) ;;
149       esac],[build_tools=check])
150
151 dnl check for installed version of libupnp
152 AC_ARG_ENABLE(upnp,
153       [AS_HELP_STRING([--disable-upnp], [Disable uPnP support])],
154       [case "${enableval}" in
155         yes) build_upnp=true ;;
156         no)  build_upnp=false ;;
157         *) AC_MSG_ERROR(bad value ${enableval} for --disable-upnp) ;;
158       esac],[build_upnp=auto])
159
160 if test "$build_upnp" != "false" ; then
161 PKG_CHECK_MODULES([LIBUPNP], [libupnp], [build_upnp=true],
162         [
163                 if test "$build_upnp" == "true" ; then
164                         AC_MSG_ERROR([libupnp not found.])
165                 else
166                         build_upnp=false
167                 fi
168         ])
169
170 fi
171
172 AM_CONDITIONAL(BUILD_UPNP, test x$build_upnp != xfalse)
173 if test "$build_upnp" != "false" ; then
174         AC_DEFINE(BUILD_UPNP, 1, [Define if upnp enabled])
175 fi
176
177 dnl check libxml2 (needed for tools)
178 if test "$build_tools" != "false" ; then
179         PKG_CHECK_MODULES(LIBXML2, [libxml-2.0],[],
180         [
181                 if test "$build_tools" = "true" ; then
182                         AC_MSG_ERROR([Could not found libxml2, tools cannot be compiled.])
183                 else
184                         build_tools=false
185                 fi
186         ])
187 fi
188
189 AM_CONDITIONAL(BUILD_TOOLS, test x$build_tools != xfalse)
190 if test "$build_tools" != "false" ; then
191    build_tools=true
192    AC_DEFINE(BUILD_TOOLS, 1, [Define if tools enabled] ) 
193 fi
194
195 dnl conditionnal build of gtk interface.
196 AC_ARG_ENABLE(gtk_ui,
197       [AS_HELP_STRING([--enable-gtk_ui=[yes/no]], [Turn on or off compilation of gtk interface (default=yes)])],
198       [case "${enableval}" in
199         yes) gtk_ui=true ;;
200         no)  gtk_ui=false ;;
201         *) AC_MSG_ERROR(bad value ${enableval} for --enable-gtk_ui) ;;
202       esac],[gtk_ui=true])
203
204 if test "$gtk_ui" = "true" ; then
205         PKG_CHECK_MODULES(LIBGTK, gtk+-2.0 >= 2.18.0 gthread-2.0)
206         if test "$enable_x11" = "false" ; then
207                 PKG_CHECK_MODULES(LIBGTKMAC,[ige-mac-integration >= 0.9.7 ])
208                 AC_DEFINE([HAVE_GTK_OSX],[1],[Defined when gtk osx is used])
209         fi
210 else
211         echo "GTK interface compilation is disabled."
212 fi
213
214 AC_ARG_ENABLE(notify,
215       [AS_HELP_STRING([--enable-notify=[yes/no]], [Enable libnotify support (default=yes)])],
216       [case "${enableval}" in
217         yes) notify=true ;;
218         no)  notify=false ;;
219         *) AC_MSG_ERROR(bad value ${enableval} for --enable-notify) ;;
220       esac],[notify=true])
221
222 dnl conditionnal build of the notify library
223 if test "$gtk_ui" = "true" ; then
224         if test "$notify" = "true"; then
225                 PKG_CHECK_MODULES([NOTIFY4], [libnotify >= 0.7.0 ], [found_notify4=yes], foo=bar)
226                 case "$found_notify4" in
227                   yes)
228                                 AC_SUBST(NOTIFY4_CFLAGS)
229                                 AC_SUBST(NOTIFY4_LIBS)
230                                 AC_DEFINE([HAVE_NOTIFY4],[1],[NOTIFY4 support])
231                 esac
232
233                 PKG_CHECK_MODULES([NOTIFY1], [libnotify < 0.7.0], [found_notify1=yes], foo=bar)
234                 case "$found_notify1" in
235                   yes)
236                                 AC_SUBST(NOTIFY1_CFLAGS)
237                                 AC_SUBST(NOTIFY1_LIBS)
238                                 AC_DEFINE([HAVE_NOTIFY1],[1],[NOTIFY1 support])
239                 esac
240         else
241                                 NotifyNotification *n;
242                 echo "Libnotify support is disabled."
243         fi
244 fi
245
246 dnl os-specific problems not handled by existing macros.
247 case "$host_os" in
248         *freebsd*)
249                 LDFLAGS="$LDFLAGS -pthread"
250                 ;;
251 esac
252
253 case "$host_cpu" in
254         *arm*)
255                 AC_DEFINE(__ARM__,1,[Defined if we are compiling for arm processor])
256                 use_arm_toolchain=yes
257                 ;;
258 esac
259
260 AC_ARG_WITH(configdir,
261       [AS_HELP_STRING([--with-configdir], [Set a APPDATA subdir where linphone is supposed to find its config (windows only)])],
262       [ configdir=${withval}],[ configdir="Linphone" ])
263
264 AC_DEFINE_UNQUOTED(LINPHONE_CONFIG_DIR,"$configdir",[Windows appdata subdir where linphonerc can be found])
265
266 AC_ARG_ENABLE(relativeprefix,
267       [AS_HELP_STRING([--enable-relativeprefix], [Build a linphone that finds its resources relatively to the directory where it is installed])],
268       [case "${enableval}" in
269         yes) relativeprefix=yes ;;
270         no)  relativeprefix=no ;;
271         *) AC_MSG_ERROR(bad value ${enableval} for --enable-relativeprefix) ;;
272       esac],[relativeprefix=guess])
273
274 AC_ARG_ENABLE(date,
275       [AS_HELP_STRING([--enable-date], [Use build date in internal version number])],
276       [case "${enableval}" in
277         yes) use_date=yes ;;
278         no)  use_date=no ;;
279         *) AC_MSG_ERROR(bad value ${enableval} for --enable-date) ;;
280       esac],[use_date=no])
281
282 if test x$use_date =  xyes ; then
283         AC_DEFINE(USE_BUILDDATE_VERSION,1,[Tell whether date_version.h must be used])
284 fi
285
286
287 dnl enable ipv6 support
288 AC_ARG_ENABLE(ipv6,
289       [AS_HELP_STRING([--enable-ipv6], [Turn on ipv6 support])],
290       [case "${enableval}" in
291         yes)  ipv6=true;;
292         no)   ipv6=false;;
293         *) AC_MSG_ERROR(bad value ${enableval} for --enable-ipv6) ;;
294       esac],[ipv6=true])
295 IPV6_CFLAGS=
296 if test x$ipv6 = xtrue ; then
297         IPV6_CFLAGS=-DINET6
298 fi
299 AC_SUBST(IPV6_CFLAGS)
300
301 dnl enable timestamp support
302 AC_ARG_ENABLE(ntp-timestamp,
303       [AS_HELP_STRING([--enable-ntp-timestamp], [Turn on NTP timestamping on received packet])],
304       [case "${enableval}" in
305         yes)  ntptimestamp=true;;
306         no)   ntptimestamp=false;;
307         *) AC_MSG_ERROR(bad value ${enableval} for --enable-ntp-timestamp) ;;
308       esac],[ntptimestamp=false])
309
310 AC_ARG_ENABLE(debug,
311       [AS_HELP_STRING([--enable-debug=[yes/no]], [Enables the display of traces showing the execution of the library. (default=yes)])],
312       [case "${enableval}" in
313         yes) debug_enabled=yes;;
314         no) debug_enabled=no;;
315         *) AC_MSG_ERROR("Bad value for --enable-debug");;
316       esac],[debug_enabled=no])
317
318 dnl enable truespeech codec support
319 AC_ARG_ENABLE(truespeech,
320       [AS_HELP_STRING([--enable-truespeech], [Turn on TrueSpeech support (x86 only)])],
321       [case "${enableval}" in
322         yes)  truespeech=true;;
323         no)   truespeech=false;;
324         *) AC_MSG_ERROR(bad value ${enableval} for --enable-truespeech) ;;
325       esac],[truespeech=false])
326 TRUESPEECH_CFLAGS=
327 if test x$truespeech = xtrue ; then
328         TRUESPEECH_CFLAGS=-DTRUESPEECH
329 fi
330 AC_SUBST(TRUESPEECH_CFLAGS)
331 AM_CONDITIONAL([BUILD_TRUESPEECH], [test x$truespeech = xtrue])
332
333 AC_ARG_ENABLE(nonstandard-gsm,
334       [AS_HELP_STRING([--enable-nonstandard-gsm], [Enable GSM codec at nonstandard rates (11025hz, 16000hz)])],
335       [case "${enableval}" in
336         yes) exotic_gsm=yes
337          AC_DEFINE(ENABLE_NONSTANDARD_GSM,1,[Defined when using gsm at nonstandard rates])
338          ;;
339         no)  exotic_gsm=no ;;
340         *) AC_MSG_ERROR(bad value ${enableval} for --enable-nonstandard-gsm) ;;
341       esac],[exotic_gsm=no])
342
343
344 dnl support for RSVP (by Vincent Maury)
345 AC_ARG_ENABLE(rsvp,
346 [AS_HELP_STRING([--enable-rsvp], [Enable support for QoS reservations.])],
347 AC_DEFINE(VINCENT_MAURY_RSVP,1,[Tell whether RSVP support
348 should be compiled.]) )
349
350 if test "x${prefix}" = "xNONE"; then
351         package_prefix=${ac_default_prefix}
352 else
353         package_prefix=${prefix}
354 fi
355
356 if test "$relativeprefix" = "guess" ; then
357         if test "$mingw_found" = "yes" ; then
358                 relativeprefix="yes"
359         fi
360 fi
361
362 if test "$relativeprefix" = "yes" ; then
363         dnl allow binaries to install everywhere
364         package_prefix="."
365 fi
366
367 dnl Set PACKAGE_LOCALE_DIR in config.h.
368 DATADIRNAME=share
369 AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "${package_prefix}/${DATADIRNAME}/locale",[Defines the place where locales can be found])
370
371 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${package_prefix}/${DATADIRNAME}",[Defines the place where data are found])
372
373 dnl Set PACKAGE_SOUND_DIR in config.h.
374 AC_DEFINE_UNQUOTED(PACKAGE_SOUND_DIR, "${package_prefix}/${DATADIRNAME}/sounds/linphone",[Defines the place where linphone sounds are found])
375
376
377 dnl check if we have the getifaddrs() sytem call
378 AC_CHECK_FUNCS(getifaddrs)
379
380 dnl check for osip2
381 LP_CHECK_OSIP2
382
383 dnl conditionnal build for ssl
384 AC_ARG_ENABLE(ssl,
385       [AS_HELP_STRING([--enable-ssl], [Turn on ssl support compiling. Required for sip tls. (default=false)])],
386       [case "${enableval}" in
387         yes) build_ssl=true ;;
388         no)  build_ssl=false ;;
389         *) AC_MSG_ERROR(bad value ${enableval} for --enable-ssl) ;;
390       esac],[build_ssl=false])
391
392 if test "$build_ssl" = "true"; then
393         PKG_CHECK_MODULES(OPENSSL, libssl >= 0.9.8)
394 fi
395 dnl setup flags for exosip library
396 LP_SETUP_EXOSIP
397
398 dnl check exosip support of DSCP in exosip
399 AC_MSG_CHECKING([for DSCP support in exosip])
400 AC_TRY_COMPILE([#include <eXosip2/eXosip.h>],
401 [int dscp=0;eXosip_set_option(EXOSIP_OPT_SET_DSCP,&dscp);],
402 has_exosip_dscp=yes,has_exosip_dscp=no)
403 AC_MSG_RESULT($has_exosip_dscp)
404 if test "$has_exosip_dscp" = "yes" ; then
405     AC_DEFINE( HAVE_EXOSIP_DSCP, 1, [Define if exosip dscp available] )
406 fi
407
408
409 if test "$console_ui" = "true" ; then
410 dnl check gnu readline
411 LP_CHECK_READLINE
412 else
413 echo "Console interface compilation is disabled."
414 fi
415
416 AC_WORDS_BIGENDIAN
417
418 AC_ARG_ENABLE([speex],
419               AS_HELP_STRING([--disable-speex], [Disable speex support]),
420               [], [enable_speex=yes])
421 if test "x$enable_speex" = "xyes"; then
422         dnl normaly this should only by done by mediastreamer2/configure.ac
423         dnl but to workaround bugs when cross-compiling for arm-linux,
424         dnl we need to have SPEEX_LIBS defined
425         dnl Furthermore it is good to repeat here all mediastreamer2 toggles
426         dnl since top-level configure --help will not print them.
427         PKG_CHECK_MODULES(SPEEX, speex >= 1.1.6, build_speex=yes)
428 fi
429
430 dnl conditionnal build of video support
431 AC_ARG_ENABLE(video,
432       [AS_HELP_STRING([--enable-video], [Turn on video support compiling])],
433       [case "${enableval}" in
434         yes) video=true ;;
435         no)  video=false ;;
436         *) AC_MSG_ERROR(bad value ${enableval} for --enable-video) ;;
437       esac],[video=true])
438
439 AC_ARG_WITH( ffmpeg,
440       [AS_HELP_STRING([--with-ffmpeg], [Sets the installation prefix of ffmpeg, needed for video support. (default=/usr)])],
441       [ ffmpegdir=${withval}],[ ffmpegdir=/usr ])
442
443 if test "$video" = "true"; then
444         
445         if test "$enable_x11" = "true"; then
446                 AC_CHECK_HEADERS(X11/Xlib.h)
447                 if test "$build_macos" = "yes"; then 
448                         X11_LIBS="-L/usr/X11/lib -lX11"
449                 else
450                         AC_CHECK_LIB(X11,XUnmapWindow, X11_LIBS="-lX11")
451                 fi
452                 AC_SUBST(X11_LIBS)
453         fi
454         AC_DEFINE(VIDEO_ENABLED,1,[defined if video support is available])
455 fi
456
457 AC_ARG_ENABLE(alsa,
458       [AS_HELP_STRING([--enable-alsa], [Turn on alsa native support compiling])],
459       [case "${enableval}" in
460         yes) alsa=true ;;
461         no)  alsa=false ;;
462         *) AC_MSG_ERROR(bad value ${enableval} for --enable-alsa) ;;
463       esac],[alsa=true])
464
465 AC_ARG_ENABLE(zrtp,
466       [AS_HELP_STRING([--enable-zrtp], [Turn on zrtp support])],
467       [case "${enableval}" in
468         yes) zrtp=true ;;
469         no)  zrtp=false ;;
470         *) AC_MSG_ERROR(bad value ${enableval} for --enable-zrtp) ;;
471       esac],[zrtp=false])
472
473
474 AC_ARG_ENABLE(portaudio,
475       [AS_HELP_STRING([--enable-portaudio], [Turn on portaudio native support compiling])],
476       [case "${enableval}" in
477         yes) portaudio=true ;;
478         no)  portaudio=false ;;
479         *) AC_MSG_ERROR(bad value ${enableval} for --enable-portaudio) ;;
480       esac],[portaudio=false])
481
482 dnl build console if required
483 AM_CONDITIONAL(BUILD_CONSOLE, test x$console_ui = xtrue)
484
485 dnl special things for arm-linux cross compilation toolchain
486 AM_CONDITIONAL(ARMBUILD, test x$use_arm_toolchain = xyes)
487
488 dnl compilation of gtk user interface
489 AM_CONDITIONAL(BUILD_GTK_UI, [test x$gtk_ui = xtrue ] )
490 AM_CONDITIONAL(BUILD_WIN32, test x$mingw_found = xyes )
491 AM_CONDITIONAL(BUILD_ZRTP, test x$zrtp = xtrue)
492
493 dnl check getenv
494 AH_TEMPLATE([HAVE_GETENV])
495 AC_CHECK_FUNC([getenv], AC_DEFINE([HAVE_GETENV], [1], [If present, the getenv function allows fim to read environment variables.]))
496
497 dnl
498 AC_MSG_CHECKING([for sighandler_t])
499 AC_TRY_COMPILE([#include <signal.h>],[sighandler_t *f;],
500 has_sighandler_t=yes,has_sighandler_t=no)
501 AC_MSG_RESULT($has_sighandler_t)
502 if test "$has_sighandler_t" = "yes" ; then
503     AC_DEFINE( HAVE_SIGHANDLER_T, 1, [Define if sighandler_t available] )
504 fi
505
506 AC_ARG_ENABLE(assistant,
507       [AS_HELP_STRING([--enable-assistant], [Turn on assistant compiling])],
508       [case "${enableval}" in
509         yes) build_wizard=true ;;
510         no)  build_wizard=false ;;
511         *) AC_MSG_ERROR(bad value ${enableval} for --enable-assistant) ;;
512       esac],[build_wizard=check])
513
514 dnl check libsoup (needed for wizard)
515 if test "$build_wizard" != "false" ; then
516         PKG_CHECK_MODULES(LIBSOUP, [libsoup-2.4 >= 2.26],[],
517         [
518                 if test "$build_wizard" = "true" ; then
519                         AC_MSG_ERROR([Could not found libsoup, assistant cannot be compiled.])
520                 else
521                         build_wizard=false
522                 fi
523         ])
524 fi
525 if test "$build_wizard" != "false" ; then
526         PKG_CHECK_MODULES(LIBGTKWIZARD, [gtk+-2.0 >= 2.22.0],[],
527         [
528                 if test "$build_wizard" = "true" ; then
529                         AC_MSG_ERROR([gtk+-2.0 < 2.22.0, assistant cannot be compiled.])
530                 else
531                         build_wizard=false
532                 fi
533         ])
534 fi
535 AC_SUBST(LIBSOUP_CFLAGS)
536 AC_SUBST(LIBSOUP_LIBS)
537 AM_CONDITIONAL(BUILD_WIZARD, test x$build_wizard != xfalse)
538 if test "$build_wizard" != "false" ; then
539    build_wizard=true
540    AC_DEFINE(BUILD_WIZARD, 1, [Define if wizard enabled] ) 
541 fi
542
543 AC_CHECK_HEADERS(libudev.h)
544 AC_CHECK_LIB(udev,udev_new)
545
546 ##################################################
547 # Stricter build options (after external packages)
548 ##################################################
549
550
551 AC_ARG_ENABLE(strict,
552         AC_HELP_STRING([--enable-strict],
553                        [Build with stricter options (gcc only) @<:@yes@:>@]),[
554         strictness="${enableval}"],[strictness=yes]
555 )
556
557 STRICT_OPTIONS="-Wall "
558
559 if test "$strictness" = "yes" ; then
560         STRICT_OPTIONS="$STRICT_OPTIONS -Werror"
561         CFLAGS="$CFLAGS -fno-strict-aliasing"
562 fi
563
564 AC_SUBST(STRICT_OPTIONS)
565
566 top_srcdir=`dirname $0`
567
568 AC_ARG_ENABLE([external-mediastreamer],
569       [AS_HELP_STRING([--enable-external-mediastreamer],[Use external mediastreamer library])],,
570       [enable_external_mediastreamer=no])
571
572 AS_CASE($enable_external_mediastreamer,
573                 [yes],[
574                         PKG_CHECK_MODULES([MEDIASTREAMER], [mediastreamer])
575                         MS2_VERSION=`$PKG_CONFIG --modversion mediastreamer`
576                         ],
577                 [no],[
578                         AC_CONFIG_SUBDIRS( mediastreamer2 )
579                         MEDIASTREAMER_DIR=${top_srcdir}/mediastreamer2
580                         MEDIASTREAMER_CFLAGS="-I\$(top_srcdir)/mediastreamer2/include"
581                         MEDIASTREAMER_LIBS="\$(top_builddir)/mediastreamer2/src/libmediastreamer_base.la \$(top_builddir)/mediastreamer2/src/libmediastreamer_voip.la"
582 dnl need to temporary change quotes to allow square brackets
583                         changequote(<<, >>)
584                         MS2_VERSION=`grep -e '^.C_INIT(' $MEDIASTREAMER_DIR/configure.ac | sed -e 's:\([^(]\+\)(\[mediastreamer\],\[\(.*\)\]):\2:g'`
585                         changequote([, ])
586                         MS2_DIR=mediastreamer2
587                         ],
588         [AC_MSG_ERROR([bad value '${enable_external_mediastreamer}' for --enable-external-mediastreamer])])
589
590 AC_SUBST(MEDIASTREAMER_CFLAGS)
591 AC_SUBST(MEDIASTREAMER_LIBS)
592 AC_SUBST([MS2_VERSION])
593 AC_SUBST([MS2_DIR])
594
595
596
597 AC_ARG_ENABLE(tunnel,
598       [AS_HELP_STRING([--enable-tunnel=[yes/no]], [Turn on compilation of tunnel support (default=no)])],
599       [case "${enableval}" in
600         yes) enable_tunnel=true ;;
601         no)  enable_tunnel=false ;;
602         *) AC_MSG_ERROR(bad value ${enableval} for --enable-tunnel) ;;
603       esac],[enable_tunnel=false])
604 AM_CONDITIONAL(BUILD_TUNNEL, test x$enable_tunnel = xtrue)
605 if test x$enable_tunnel = xtrue; then
606      PKG_CHECK_MODULES(TUNNEL, tunnel >= 0.3.3)
607      TUNNEL_CFLAGS+="-DTUNNEL_ENABLED"
608      AC_SUBST(TUNNEL_CFLAGS)
609      AC_SUBST(TUNNEL_LIBS)
610 fi
611
612
613
614
615
616
617
618
619
620
621 dnl check for db2html (docbook) to generate html user manual
622 AC_CHECK_PROG(have_sgmltools,sgmltools, yes, no)
623 AM_CONDITIONAL(ENABLE_MANUAL, test x$have_sgmltools$build_manual = xyesyes )
624
625 dnl for external use of linphone libs
626 LINPHONE_CFLAGS="-I${includedir} -I${includedir}/linphone"
627 LINPHONE_LIBS="-L${libdir} -llinphone"
628
629 if test x$mingw_found = xyes ; then
630         LINPHONE_LIBS="$LINPHONE_LIBS $OSIP_LIBS"
631 fi
632 AC_SUBST(LINPHONE_CFLAGS)
633 AC_SUBST(LINPHONE_LIBS)
634
635 AC_DEFINE_UNQUOTED(LINPHONE_VERSION,"$PACKAGE_VERSION",[Linphone's version number])
636
637 AC_DEFINE_UNQUOTED(LINPHONE_PLUGINS_DIR, "${package_prefix}/lib/liblinphone/plugins" ,[path of liblinphone plugins, not mediastreamer2 plugins])
638 LINPHONE_PLUGINS_DIR="${package_prefix}/lib/liblinphone/plugins"
639 AC_SUBST(LINPHONE_PLUGINS_DIR)
640
641 AC_ARG_ENABLE(external-ortp,
642       [AS_HELP_STRING([--enable-external-ortp], [Use external oRTP library])],
643       [case "${enableval}" in
644         yes) external_ortp=true ;;
645         no)  external_ortp=false ;;
646         *) AC_MSG_ERROR(bad value ${enableval} for --enable-external-ortp) ;;
647       esac],[external_ortp=false])
648
649 if test "$external_ortp" = 'true'; then
650         PKG_CHECK_MODULES([ORTP], [ortp])
651         ORTP_VERSION=`$PKG_CONFIG --modversion ortp`
652 else
653         AC_CONFIG_SUBDIRS( oRTP )
654         ORTP_CFLAGS="-I\$(top_srcdir)/oRTP/include"
655         ORTP_LIBS="\$(top_builddir)/oRTP/src/libortp.la"
656         if test x$ac_cv_c_bigendian = xyes ; then
657                 ORTP_CFLAGS="$ORTP_CFLAGS -DORTP_BIGENDIAN"
658         fi
659         if test x$ntptimestamp = xtrue ; then
660                 ORTP_CFLAGS="$ORTP_CFLAGS -DORTP_TIMESTAMP"
661         fi
662         ORTP_DIR=oRTP
663         changequote(<<, >>)
664         ORTP_VERSION=`grep -E ^[AC]+_INIT ${top_srcdir}/oRTP/configure.ac | sed -e 's:^.*_INIT(.*,\[\(.*\)\]):\1:g'`
665         changequote([, ])
666 fi
667 AC_SUBST(ORTP_CFLAGS)
668 AC_SUBST(ORTP_LIBS)
669 AC_SUBST([ORTP_VERSION])
670 AC_SUBST([ORTP_DIR])
671
672 AC_ARG_ENABLE(tests_enabled,
673       [AS_HELP_STRING([--disable-tests], [Disable compilation of tests])],
674       [case "${enableval}" in
675         yes) tests_enabled=true ;;
676         no)  tests_enabled=false ;;
677         *) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
678       esac],[tests_enabled=false])
679 AM_CONDITIONAL(ENABLE_TESTS, test x$tests_enabled = xyes)
680
681
682
683 dnl ##################################################
684 dnl # Check for doxygen
685 dnl ##################################################
686
687 AC_PATH_PROG(DOXYGEN,doxygen,false)
688 AM_CONDITIONAL(HAVE_DOXYGEN, test $DOXYGEN != false)
689
690
691 AC_CONFIG_FILES([ 
692 Makefile
693 build/Makefile
694 build/macos/Makefile
695 build/macos/Info-linphone.plist
696 m4/Makefile
697 po/Makefile.in
698 pixmaps/Makefile
699 coreapi/Makefile
700 coreapi/help/Makefile
701 coreapi/help/Doxyfile
702 gtk/Makefile
703 console/Makefile
704 share/Makefile
705 share/C/Makefile
706 share/fr/Makefile
707 share/it/Makefile
708 share/ja/Makefile
709 share/cs/Makefile
710 share/xml/Makefile
711 share/linphone.pc
712 share/linphone.desktop
713 scripts/Makefile
714 tools/Makefile
715 linphone.spec
716 linphone.iss
717 ])
718
719 AC_OUTPUT
720
721 echo "Linphone build configuration ended."
722 echo "Summary of build options:"
723 printf "* Video support\t\t\t%s\n" $video
724 printf "* GTK interface\t\t\t%s\n" $gtk_ui
725 printf "* Account assistant\t\t%s\n" $build_wizard
726 printf "* Console interface\t\t%s\n" $console_ui
727 printf "* Tools\t\t\t\t%s\n" $build_tools
728 printf "* zRTP encryption (GPLv3)\t%s\n" $zrtp
729
730 if test "$enable_tunnel" = "true" ; then
731         printf "* Tunnel support\t\ttrue\n"
732 fi
733
734 echo "Now type 'make' to compile, and then 'make install' as root to install it."