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