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