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