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