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