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