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