]> sjero.net Git - linphone/blob - configure.ac
Merge branch 'master' of git.linphone.org:linphone
[linphone] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_INIT([linphone],[3.4.99.4],[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=4 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_C_INLINE
41 AM_PROG_CC_STDC
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)
64                 CFLAGS="$CFLAGS -DTARGET_OS_IPHONE "
65                 build_tests=no
66                 ios_found=yes
67         ;;
68         x86_64-apple-darwin*|i686-apple-darwin*)
69                 MSPLUGINS_CFLAGS=""
70                 dnl use macport installation
71                 ACLOCAL_MACOS_FLAGS="-I /opt/local/share/aclocal"
72                 build_macos=yes
73         ;;
74
75 esac
76
77 AC_SUBST(ACLOCAL_MACOS_FLAGS)
78 AC_SUBST(CONSOLE_FLAGS)
79 AC_SUBST(GUI_FLAGS)
80
81 dnl localization tools
82 IT_PROG_INTLTOOL([0.40], [no-xml])
83
84 AM_CONDITIONAL(BUILD_TESTS,test x$build_tests != xno)
85 dnl Initialize libtool
86 LT_INIT([win32-dll shared disable-static])
87
88 AC_CONFIG_COMMANDS([libtool-hacking],[
89 if test "$mingw_found" = "yes" ; then
90         echo "Hacking libtool to work with mingw..."
91         sed -e 's/\*\" \$a_deplib \"\*/\*/' < ./libtool > libtool.tmp
92         cp -f ./libtool.tmp ./libtool
93         rm -f ./libtool.tmp
94 fi
95 ],[mingw_found=$mingw_found])
96
97 dnl Add the languages which your application supports here.
98 PKG_PROG_PKG_CONFIG
99 ALL_LINGUAS="fr it de ja es pl cs nl sv pt_BR hu ru zh_CN nb_NO zh_TW"
100 AC_SUBST(ALL_LINGUAS)
101 AC_DEFINE_UNQUOTED(LINPHONE_ALL_LANGS, "$ALL_LINGUAS", [All supported languages])
102
103 if test "$mingw_found" != "yes" ; then
104 dnl gettext macro does not work properly under mingw. And we want to use the one provided by GTK.
105 AM_GNU_GETTEXT([external])
106 LIBS="$LIBS $LIBINTL"
107 else
108         AC_DEFINE(ENABLE_NLS,1,[Tells whether localisation is possible])
109         AC_DEFINE(HAVE_GETTEXT,1,[Tells wheter localisation is possible])
110         LIBS="$LIBS -lintl"
111 fi
112
113 GETTEXT_PACKAGE=linphone
114 AC_SUBST(GETTEXT_PACKAGE)
115 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",[The name of the gettext package name])
116 dnl AC_CHECK_LIB(intl,libintl_gettext)
117
118 AC_CHECK_FUNCS([get_current_dir_name strndup stpcpy] )
119
120 AC_ARG_ENABLE(x11,
121                           [  --disable-x11    Disable X11 support],
122                           [case "${enableval}" in
123                           yes) enable_x11=true ;;
124                           no)  enable_x11=false ;;
125                           *) AC_MSG_ERROR(bad value ${enableval} for --disable-x11) ;;
126                           esac],[enable_x11=true])
127
128 dnl conditionnal build of console interface.
129 AC_ARG_ENABLE(console_ui,
130       [  --enable-console_ui=[yes/no]    Turn on or off compilation of console interface [default=yes]],
131       [case "${enableval}" in
132         yes) console_ui=true ;;
133         no)  console_ui=false ;;
134         *) AC_MSG_ERROR(bad value ${enableval} for --enable-console_ui) ;;
135       esac],[console_ui=true])
136
137 dnl conditionnal build of gtk interface.
138 AC_ARG_ENABLE(gtk_ui,
139       [  --enable-gtk_ui=[yes/no]    Turn on or off compilation of gtk interface [default=yes]],
140       [case "${enableval}" in
141         yes) gtk_ui=true ;;
142         no)  gtk_ui=false ;;
143         *) AC_MSG_ERROR(bad value ${enableval} for --enable-gtk_ui) ;;
144       esac],[gtk_ui=true])
145
146 if test "$gtk_ui" = "true" ; then
147         PKG_CHECK_MODULES(LIBGTK, gtk+-2.0 >= 2.4.0 gthread-2.0)
148         if test "$enable_x11" = "false" ; then
149                 PKG_CHECK_MODULES(LIBGTKMAC,[ige-mac-integration >= 0.9.7 ])
150                 AC_DEFINE([HAVE_GTK_OSX],[1],[Defined when gtk osx is used])
151         fi
152 else
153         echo "GTK interface compilation is disabled."
154 fi
155
156 AC_ARG_ENABLE(notify,
157                 [  --enable-notify=[yes/no]    Enable libnotify support [default=yes]],
158                 [case "${enableval}" in
159                   yes) notify=true ;;
160                   no)  notify=false ;;
161                   *) AC_MSG_ERROR(bad value ${enableval} for --enable-notify) ;;
162                 esac],[notify=true])
163
164 dnl conditionnal build of the notify library
165 if test "$gtk_ui" = "true" ; then
166         if test "$notify" = "true"; then
167                 PKG_CHECK_MODULES([NOTIFY4], [libnotify >= 0.7.0 ], [found_notify4=yes], foo=bar)
168                 case "$found_notify4" in
169                   yes)
170                                 AC_SUBST(NOTIFY4_CFLAGS)
171                                 AC_SUBST(NOTIFY4_LIBS)
172                                 AC_DEFINE([HAVE_NOTIFY4],[1],[NOTIFY4 support])
173                 esac
174
175                 PKG_CHECK_MODULES([NOTIFY1], [libnotify < 0.7.0], [found_notify1=yes], foo=bar)
176                 case "$found_notify1" in
177                   yes)
178                                 AC_SUBST(NOTIFY1_CFLAGS)
179                                 AC_SUBST(NOTIFY1_LIBS)
180                                 AC_DEFINE([HAVE_NOTIFY1],[1],[NOTIFY1 support])
181                 esac
182         else
183                                 NotifyNotification *n;
184                 echo "Libnotify support is disabled."
185         fi
186 fi
187
188 dnl os-specific problems not handled by existing macros.
189 case "$host_os" in
190         *freebsd*)
191                 LDFLAGS="$LDFLAGS -pthread"
192                 ;;
193 esac
194
195 case "$host_cpu" in
196         *arm*)
197                 AC_DEFINE(__ARM__,1,[Defined if we are compiling for arm processor])
198                 use_arm_toolchain=yes
199                 ;;
200 esac
201
202 AC_ARG_WITH( configdir,
203       [  --with-configdir      Set a APPDATA subdir where linphone is supposed to find its config (windows only) ],
204       [ configdir=${withval}],[ configdir="Linphone" ])
205
206 AC_DEFINE_UNQUOTED(LINPHONE_CONFIG_DIR,"$configdir",[Windows appdata subdir where linphonerc can be found])
207
208 AC_ARG_ENABLE(relativeprefix,
209       [  --enable-relativeprefix    Build a linphone that finds its resources relatively to the directory where it is installed],
210       [case "${enableval}" in
211         yes) relativeprefix=yes ;;
212         no)  relativeprefix=no ;;
213         *) AC_MSG_ERROR(bad value ${enableval} for --enable-relativeprefix) ;;
214       esac],[relativeprefix=guess])
215
216 AC_ARG_ENABLE(date,
217       [  --enable-date    Use build date in internal version number],
218       [case "${enableval}" in
219         yes) use_date=yes ;;
220         no)  use_date=no ;;
221         *) AC_MSG_ERROR(bad value ${enableval} for --enable-date) ;;
222       esac],[use_date=no])
223
224 if test x$use_date =  xyes ; then
225         AC_DEFINE(USE_BUILDDATE_VERSION,1,[Tell whether date_version.h must be used])
226 fi
227
228
229 dnl enable ipv6 support
230 AC_ARG_ENABLE(ipv6,
231       [  --enable-ipv6    Turn on ipv6 support],
232       [case "${enableval}" in
233         yes)  ipv6=true;;
234         no)   ipv6=false;;
235         *) AC_MSG_ERROR(bad value ${enableval} for --enable-ipv6) ;;
236       esac],[ipv6=true])
237 IPV6_CFLAGS=
238 if test x$ipv6 = xtrue ; then
239         IPV6_CFLAGS=-DINET6
240 fi
241 AC_SUBST(IPV6_CFLAGS)
242
243 dnl enable truespeech codec support
244 AC_ARG_ENABLE(truespeech,
245       [  --enable-truespeech    Turn on TrueSpeech support (x86 only)],
246       [case "${enableval}" in
247         yes)  truespeech=true;;
248         no)   truespeech=false;;
249         *) AC_MSG_ERROR(bad value ${enableval} for --enable-truespeech) ;;
250       esac],[truespeech=false])
251 TRUESPEECH_CFLAGS=
252 if test x$truespeech = xtrue ; then
253         TRUESPEECH_CFLAGS=-DTRUESPEECH
254 fi
255 AC_SUBST(TRUESPEECH_CFLAGS)
256 AM_CONDITIONAL([BUILD_TRUESPEECH], [test x$truespeech = xtrue])
257
258 AC_ARG_ENABLE(nonstandard-gsm,
259       [  --enable-nonstandard-gsm    Enable GSM codec at nonstandard rates (11025hz, 16000hz)],
260       [case "${enableval}" in
261         yes) exotic_gsm=yes
262         AC_DEFINE(ENABLE_NONSTANDARD_GSM,1,[Defined when using gsm at nonstandard rates])
263          ;;
264         no)  exotic_gsm=no ;;
265         *) AC_MSG_ERROR(bad value ${enableval} for --enable-nonstandard-gsm) ;;
266       esac],[exotic_gsm=no])
267
268
269 dnl support for RSVP (by Vincent Maury)
270 AC_ARG_ENABLE(rsvp,
271 [  --enable-rsvp           enable support for QoS reservations.],
272 AC_DEFINE(VINCENT_MAURY_RSVP,1,[Tell whether RSVP support
273 should be compiled.]) )
274
275 if test "x${prefix}" = "xNONE"; then
276         package_prefix=${ac_default_prefix}
277 else
278         package_prefix=${prefix}
279 fi
280
281 if test "$relativeprefix" = "guess" ; then
282         if test "$mingw_found" = "yes" ; then
283                 relativeprefix="yes"
284         fi
285 fi
286
287 if test "$relativeprefix" = "yes" ; then
288         dnl allow binaries to install everywhere
289         package_prefix="."
290 fi
291
292 dnl Set PACKAGE_LOCALE_DIR in config.h.
293 DATADIRNAME=share
294 AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "${package_prefix}/${DATADIRNAME}/locale",[Defines the place where locales can be found])
295
296 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${package_prefix}/${DATADIRNAME}",[Defines the place where data are found])
297
298 dnl Set PACKAGE_SOUND_DIR in config.h.
299 AC_DEFINE_UNQUOTED(PACKAGE_SOUND_DIR, "${package_prefix}/${DATADIRNAME}/sounds/linphone",[Defines the place where linphone sounds are found])
300
301
302 dnl check if we have the getifaddrs() sytem call
303 AC_CHECK_FUNCS(getifaddrs)
304
305 dnl check for osip2
306 LP_CHECK_OSIP2
307
308 dnl conditionnal build for ssl
309 AC_ARG_ENABLE(ssl,
310                 [  --enable-ssl    Turn on ssl support compiling. Required for sip tls. default = false],
311                 [case "${enableval}" in
312                 yes) build_ssl=true ;;
313                 no)  build_ssl=false ;;
314                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-ssl) ;;
315                 esac],[build_ssl=false])
316
317 if test "$build_ssl" = "true"; then
318         PKG_CHECK_MODULES(OPENSSL, libssl >= 0.9.8)
319 fi
320 dnl setup flags for exosip library
321 LP_SETUP_EXOSIP
322
323 if test "$console_ui" = "true" ; then
324 dnl check gnu readline
325 LP_CHECK_READLINE
326 else
327 echo "Console interface compilation is disabled."
328 fi
329
330 AC_WORDS_BIGENDIAN
331
332 dnl normaly this should only by done by mediastreamer2/configure.ac
333 dnl but to workaround bugs when cross-compiling for arm-linux,
334 dnl we need to have SPEEX_LIBS defined
335 dnl Furthermore it is good to repeat here all mediastreamer2 toggles
336 dnl since top-level configure --help will not print them.
337
338 PKG_CHECK_MODULES(SPEEX, speex >= 1.1.6, build_speex=yes)
339
340 dnl conditionnal build of video support
341 AC_ARG_ENABLE(video,
342                 [  --enable-video    Turn on video support compiling],
343                 [case "${enableval}" in
344                 yes) video=true ;;
345                 no)  video=false ;;
346                 *) AC_MSG_ERROR(bad value ${enableval} for --enable-video) ;;
347                 esac],[video=true])
348                 
349 AC_ARG_WITH( ffmpeg,
350                 [  --with-ffmpeg                Sets the installation prefix of ffmpeg, needed for video support. [default=/usr] ],
351                 [ ffmpegdir=${withval}],[ ffmpegdir=/usr ])
352
353 if test "$video" = "true"; then
354         
355         if test "$enable_x11" = "true"; then
356                 AC_CHECK_HEADERS(X11/Xlib.h)
357                 if test "$build_macos" = "yes"; then 
358                         X11_LIBS="-L/usr/X11/lib -lX11"
359                 else
360                         AC_CHECK_LIB(X11,XUnmapWindow, X11_LIBS="-lX11")
361                 fi
362                 AC_SUBST(X11_LIBS)
363         fi
364         AC_DEFINE(VIDEO_ENABLED,1,[defined if video support is available])
365 fi
366
367 AC_ARG_ENABLE(alsa,
368       [  --enable-alsa    Turn on alsa native support compiling],
369       [case "${enableval}" in
370         yes) alsa=true ;;
371         no)  alsa=false ;;
372         *) AC_MSG_ERROR(bad value ${enableval} for --enable-alsa) ;;
373       esac],[alsa=true])
374
375 AC_ARG_ENABLE(zrtp,
376       [  --enable-zrtp    Turn on zrtp support - UNFINISHED],
377       [case "${enableval}" in
378         yes) zrtp=true ;;
379         no)  zrtp=false ;;
380         *) AC_MSG_ERROR(bad value ${enableval} for --enable-zrtp) ;;
381       esac],[zrtp=false])
382
383
384 AC_ARG_ENABLE(portaudio,
385       [  --enable-portaudio    Turn on portaudio native support compiling],
386       [case "${enableval}" in
387         yes) portaudio=true ;;
388         no)  portaudio=false ;;
389         *) AC_MSG_ERROR(bad value ${enableval} for --enable-portaudio) ;;
390       esac],[portaudio=false])
391
392 dnl build console if required
393 AM_CONDITIONAL(BUILD_CONSOLE, test x$console_ui = xtrue)
394 dnl special things for arm-linux cross compilation toolchain
395 AM_CONDITIONAL(ARMBUILD, test x$use_arm_toolchain = xyes)
396 dnl compilation of gtk user interface
397 AM_CONDITIONAL(BUILD_GTK_UI, [test x$gtk_ui = xtrue ] )
398 AM_CONDITIONAL(BUILD_WIN32, test x$mingw_found = xyes )
399 AM_CONDITIONAL(BUILD_ZRTP, test x$zrtp = xtrue)
400
401 dnl check getenv
402 AH_TEMPLATE([HAVE_GETENV])
403 AC_CHECK_FUNC([getenv], AC_DEFINE([HAVE_GETENV], [1], [If present, the getenv function allows fim to read environment variables.]))
404
405 dnl
406 AC_MSG_CHECKING([for sighandler_t])
407 AC_TRY_COMPILE([#include <signal.h>],[sighandler_t *f;],
408 has_sighandler_t=yes,has_sighandler_t=no)
409 AC_MSG_RESULT($has_sighandler_t)
410 if test "$has_sighandler_t" = "yes" ; then
411     AC_DEFINE( HAVE_SIGHANDLER_T, 1, [Define if sighandler_t available] )
412 fi
413
414 ##################################################
415 # Stricter build options (after external packages)
416 ##################################################
417
418
419 AC_ARG_ENABLE(strict,
420         AC_HELP_STRING([--enable-strict],
421                        [Build with stricter options (gcc only) @<:@yes@:>@]),[
422         strictness="${enableval}"],[strictness=yes]
423 )
424
425 STRICT_OPTIONS="-Wall "
426
427 if test "$GCC$strictness" = "yesyes" ; then
428         STRICT_OPTIONS="$STRICT_OPTIONS -Werror"
429         CFLAGS="$CFLAGS -fno-strict-aliasing"
430 fi
431
432 AC_SUBST(STRICT_OPTIONS)
433
434 top_srcdir=`dirname $0`
435
436 AC_ARG_ENABLE([external-mediastreamer],
437       [AS_HELP_STRING([--enable-external-mediastreamer],[Use external mediastreamer library])],,
438       [enable_external_mediastreamer=no])
439
440 AS_CASE($enable_external_mediastreamer,
441                 [yes],[
442                         PKG_CHECK_MODULES([MEDIASTREAMER], [mediastreamer])
443                         MS2_VERSION=`$PKG_CONFIG --modversion mediastreamer`
444                         ],
445                 [no],[
446                         AC_CONFIG_SUBDIRS( mediastreamer2 )
447                         MEDIASTREAMER_DIR=${top_srcdir}/mediastreamer2
448                         MEDIASTREAMER_CFLAGS="-I\$(top_srcdir)/mediastreamer2/include"
449                         MEDIASTREAMER_LIBS="\$(top_builddir)/mediastreamer2/src/libmediastreamer.la"
450 dnl need to temporary change quotes to allow square brackets
451                         changequote(<<, >>)
452                         MS2_VERSION=`grep -e '^.C_INIT(' $MEDIASTREAMER_DIR/configure.ac | sed -e 's:\([^(]\+\)(\[mediastreamer\],\[\(.*\)\]):\2:g'`
453                         changequote([, ])
454                         MS2_DIR=mediastreamer2
455                         ],
456         [AC_MSG_ERROR([bad value '${enable_external_mediastreamer}' for --enable-external-mediastreamer])])
457
458 AC_SUBST(MEDIASTREAMER_CFLAGS)
459 AC_SUBST(MEDIASTREAMER_LIBS)
460 AC_SUBST([MS2_VERSION])
461 AC_SUBST([MS2_DIR])
462
463 dnl check for db2html (docbook) to generate html user manual
464 AC_CHECK_PROG(have_sgmltools,sgmltools, yes, no)
465 AM_CONDITIONAL(ENABLE_MANUAL, test x$have_sgmltools$build_manual = xyesyes )
466
467 dnl for external use of linphone libs
468 LINPHONE_CFLAGS="-I${includedir} -I${includedir}/linphone"
469 LINPHONE_LIBS="-L${libdir} -llinphone"
470
471 if test x$mingw_found = xyes ; then
472         LINPHONE_LIBS="$LINPHONE_LIBS $OSIP_LIBS"
473 fi
474 AC_SUBST(LINPHONE_CFLAGS)
475 AC_SUBST(LINPHONE_LIBS)
476
477 AC_DEFINE_UNQUOTED(LINPHONE_VERSION,"$PACKAGE_VERSION",[Linphone's version number])
478
479 AC_DEFINE_UNQUOTED(LINPHONE_PLUGINS_DIR, "${package_prefix}/lib/liblinphone/plugins" ,[path of liblinphone plugins, not mediastreamer2 plugins])
480 LINPHONE_PLUGINS_DIR="${package_prefix}/lib/liblinphone/plugins"
481 AC_SUBST(LINPHONE_PLUGINS_DIR)
482
483 AC_ARG_ENABLE(external-ortp,
484       [  --enable-external-ortp    Use external oRTP library],
485       [case "${enableval}" in
486         yes) external_ortp=true ;;
487         no)  external_ortp=false ;;
488         *) AC_MSG_ERROR(bad value ${enableval} for --enable-external-ortp) ;;
489       esac],[external_ortp=false])
490
491 if test "$external_ortp" = 'true'; then
492         PKG_CHECK_MODULES([ORTP], [ortp])
493         ORTP_VERSION=`$PKG_CONFIG --modversion ortp`
494 else
495         AC_CONFIG_SUBDIRS( oRTP )
496         ORTP_CFLAGS="-I\$(top_srcdir)/oRTP/include"
497         ORTP_LIBS="\$(top_builddir)/oRTP/src/libortp.la"
498         if test x$ac_cv_c_bigendian = xyes ; then
499                 ORTP_CFLAGS="$ORTP_CFLAGS -DORTP_BIGENDIAN"
500         fi
501         ORTP_DIR=oRTP
502         changequote(<<, >>)
503         ORTP_VERSION=`grep -E ^[AC]+_INIT ${top_srcdir}/oRTP/configure.ac | sed -e 's:^.*_INIT(.*,\[\(.*\)\]):\1:g'`
504         changequote([, ])
505 fi
506 AC_SUBST(ORTP_CFLAGS)
507 AC_SUBST(ORTP_LIBS)
508 AC_SUBST([ORTP_VERSION])
509 AC_SUBST([ORTP_DIR])
510
511 AC_ARG_ENABLE(tests_enabled,
512       [  --disable-tests    Disable compilation of tests],
513       [case "${enableval}" in
514         yes) tests_enabled=true ;;
515         no)  tests_enabled=false ;;
516         *) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
517       esac],[tests_enabled=false])
518 AM_CONDITIONAL(ENABLE_TESTS, test x$tests_enabled = xyes)
519
520 dnl ##################################################
521 dnl # Check for doxygen
522 dnl ##################################################
523
524 AC_PATH_PROG(DOXYGEN,doxygen,false)
525 AM_CONDITIONAL(HAVE_DOXYGEN, test $DOXYGEN != false)
526
527
528 AC_CONFIG_FILES([ 
529 Makefile
530 build/Makefile
531 build/macos/Makefile
532 build/macos/Info-linphone.plist
533 m4/Makefile
534 po/Makefile.in
535 pixmaps/Makefile
536 coreapi/Makefile
537 coreapi/help/Makefile
538 coreapi/help/Doxyfile
539 gtk/Makefile
540 console/Makefile
541 share/Makefile
542 share/C/Makefile
543 share/fr/Makefile
544 share/it/Makefile
545 share/ja/Makefile
546 share/cs/Makefile
547 share/linphone.pc
548 share/linphone.desktop
549 scripts/Makefile
550 linphone.spec
551 linphone.iss
552 ])
553
554 AC_OUTPUT
555
556 echo "Linphone build configuration ended."
557
558 if test x$gtk_ui = xtrue ; then
559         echo "* GTK interface will be compiled."
560 fi
561 if test x$console_ui = xtrue ; then
562         echo "* Console interface will be compiled."
563 fi
564
565 echo "Now type 'make' to compile, and then 'make install' as root to install it."
566