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