]> git.sesse.net Git - vlc/blob - configure.ac
Rename upnp_intel to upnp
[vlc] / configure.ac
1 dnl Autoconf settings for vlc
2
3 AC_COPYRIGHT([Copyright 2002-2011 the VideoLAN team])
4
5 AC_INIT(vlc, 1.2.0-git)
6 VERSION_MAJOR="1"
7 VERSION_MINOR="2"
8 VERSION_REVISION="0"
9 VERSION_EXTRA="-git"
10 PKGDIR="vlc"
11 AC_SUBST(PKGDIR)
12
13 CONFIGURE_LINE="`echo "$0 $ac_configure_args" | sed -e 's/\\\/\\\\\\\/g'`"
14 CODENAME="Twoflower"
15 COPYRIGHT_YEARS="1996-2011"
16
17 AC_CONFIG_SRCDIR(src/libvlc.c)
18 AC_CONFIG_AUX_DIR(autotools)
19 AC_CONFIG_MACRO_DIR(m4)
20 AC_CONFIG_LIBOBJ_DIR(compat)
21 AC_CANONICAL_BUILD
22 AC_CANONICAL_HOST
23 AC_PRESERVE_HELP_ORDER
24
25 AM_INIT_AUTOMAKE(tar-ustar color-tests)
26 AM_CONFIG_HEADER(config.h)
27
28 # Disable with "./configure --disable-silent-rules" or "make V=1"
29 AM_SILENT_RULES([yes])
30
31 dnl Too many people are not aware of maintainer mode:
32 dnl If you want to use it, you definitely know what you are doing, so
33 dnl you can specify "--disable-maintainer-mode". But if you want the default
34 dnl automake behavior, you've likely never heard of maintainer mode, so we
35 dnl can't expect you to enable it manually.
36 AS_IF([test "x${enable_maintainer_mode}" != "xno"],
37     [enable_maintainer_mode="yes"])
38 AM_MAINTAINER_MODE
39
40 dnl
41 dnl Directories
42 dnl
43 dnl vlcincludedir="\${includedir}/\${PKGDIR}"
44 dnl AC_SUBST(vlcincludedir)
45 vlcdatadir="\${datadir}/\${PKGDIR}"
46 AC_SUBST(vlcdatadir)
47 vlclibdir="\${libdir}/\${PKGDIR}"
48 AC_SUBST(vlclibdir)
49
50 dnl
51 dnl  Save *FLAGS
52 dnl
53 VLC_SAVE_FLAGS
54
55 dnl
56 dnl Check for tools
57 dnl
58 AC_PROG_CC_C99
59 AC_USE_SYSTEM_EXTENSIONS
60 AC_DEFINE([_FORTIFY_SOURCE], 2, [Define to '2' to get glibc warnings.])
61
62 AM_PROG_CC_C_O
63 AC_PROG_CXX
64 AC_PROG_CPP
65 AC_PROG_OBJC
66 _AM_DEPENDENCIES([OBJC])
67 AC_PROG_EGREP
68 AC_PROG_MAKE_SET
69 AC_PROG_INSTALL
70 AM_PROG_AS
71
72 dnl Find the right ranlib, even when cross-compiling
73 AC_CHECK_TOOL(RANLIB, ranlib, :)
74 AC_CHECK_TOOL(STRIP, strip, :)
75 AC_CHECK_TOOL(AR, ar, :)
76 AC_CHECK_TOOL(LD, ld, :)
77 AC_CHECK_TOOL(DLLTOOL, dlltool, :)
78
79 dnl Check for compiler properties
80 AC_C_CONST
81 AC_C_INLINE
82 AC_C_RESTRICT
83
84 dnl Extend the --help string at the current spot.
85 AC_DEFUN([EXTEND_HELP_STRING], [m4_divert_once([HELP_ENABLE], [$1])])
86
87 dnl Allow binary package maintainer to pass a custom string to avoid
88 dnl cache problem
89 AC_ARG_WITH(binary-version,
90     AS_HELP_STRING([--with-binary-version=STRING],
91          [To avoid plugins cache problem between binary version]),[],[])
92 AS_IF([test -n "${with_binary_version}"],[
93     AC_DEFINE_UNQUOTED([DISTRO_VERSION],["${with_binary_version}"],
94          [Binary specific version])
95 ])
96
97 dnl Check how we are asked to build
98 AS_IF([test "${enable_shared}" = "no" -a "${enable_vlc}" != "no"], [
99   AC_MSG_ERROR([VLC is based on plugins. Shared libraries cannot be disabled.])
100 ])
101
102 AC_ARG_ENABLE(static-modules,
103    [  --enable-static-modules  Allow module to be linked statically. This produces a non working vlc.])  
104 AS_IF([test "${enable_static_modules}" = yes], [
105    enable_shared="no"
106    enable_static="yes"
107    VLC_DEFAULT_PLUGIN_TYPE="builtin"
108    AS_IF([test "${enable_vlc}" != "no"],
109      [AC_MSG_WARN([Building modules as static. VLC will not work.])])
110 ], [
111    VLC_DEFAULT_PLUGIN_TYPE="plugin"
112 ])
113
114 AC_SUBST(VLC_DEFAULT_PLUGIN_TYPE)
115
116 dnl
117 dnl  Check for the contrib directory
118 dnl
119 AC_ARG_WITH(contrib,
120     [  --without-contrib       do not use the libraries in CONTRIB_DIR],[],[])
121 AC_ARG_VAR([CONTRIB_DIR], [directory containing pre-built contrib, overriding extras/contrib])
122 AS_IF([test "${with_contrib}" != "no"],[
123   AS_IF([test -z "$CONTRIB_DIR"], [
124       topdir="`dirname $0`"
125       if test "`echo \"$topdir\" | cut -c 1`" != "/"; then
126          topdir="`pwd`/$topdir"
127       fi
128       CONTRIB_DIR="${topdir}/extras/contrib/hosts/${host}"
129       if ! test -d "$CONTRIB_DIR"
130       then
131         gccmachine=`$CC -dumpmachine`
132         CONTRIB_DIR="${topdir}/extras/contrib/hosts/${gccmachine}"
133       fi
134   ])
135   AC_MSG_CHECKING([for libs in ${CONTRIB_DIR}])
136   AS_IF([test -d "${CONTRIB_DIR}/lib"],[
137     AC_MSG_RESULT([yes])
138     AC_SUBST(CONTRIB_DIR)
139     export PATH=${CONTRIB_DIR}/bin:$PATH
140     CPPFLAGS="${CPPFLAGS} -I${CONTRIB_DIR}/include"
141     CPPFLAGS_save="${CPPFLAGS_save} -I${CONTRIB_DIR}/include"
142     CFLAGS="${CFLAGS} -I${CONTRIB_DIR}/include"
143     CFLAGS_save="${CFLAGS_save} -I${CONTRIB_DIR}/include"
144     CXXFLAGS="${CXXFLAGS} -I${CONTRIB_DIR}/include"
145     CXXFLAGS_save="${CXXFLAGS_save} -I${CONTRIB_DIR}/include"
146     OBJCFLAGS="${OBJCFLAGS} -I${CONTRIB_DIR}/include"
147     OBJCFLAGS_save="${OBJCFLAGS_save} -I${CONTRIB_DIR}/include"
148     if test "$build" = "$host" -o "$PKG_CONFIG_LIBDIR"; then
149         export PKG_CONFIG_PATH="${CONTRIB_DIR}/lib/pkgconfig:$PKG_CONFIG_PATH"
150     else
151         export PKG_CONFIG_LIBDIR="${CONTRIB_DIR}/lib/pkgconfig"
152     fi
153     LDFLAGS="${LDFLAGS} -L${CONTRIB_DIR}/lib"
154     LDFLAGS_save="${LDFLAGS_save} -L${CONTRIB_DIR}/lib"
155
156     if test "${SYS}" = "darwin"; then
157       export LD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$LD_LIBRARY_PATH"
158       export DYLD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$DYLD_LIBRARY_PATH"
159     fi
160   ],[
161     AC_MSG_RESULT([no])
162     CONTRIB_DIR=""
163   ])
164 ])
165
166 dnl
167 dnl  Set default values
168 dnl
169 LDFLAGS_vlc="${LDFLAGS}"
170
171 dnl
172 dnl  Check the operating system
173 dnl
174 HAVE_WIN64="0"
175 case "${host_os}" in
176   "")
177     SYS=unknown
178     ;;
179   linux*)
180     SYS=linux
181     ;;
182   bsdi*)
183     SYS=bsdi
184     CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
185     VLC_ADD_LIBS([vcd cdda vcdx],[-ldvd])
186     ;;
187   *bsd*)
188     SYS="${host_os}"
189     CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
190     case "${host_os}" in
191       freebsd*)
192         CPPFLAGS_save="${CPPFLAGS_save} -I/usr/local/include"
193         CPPFLAGS="${CPPFLAGS_save}"
194         LDFLAGS_save="${LDFLAGS_save} -L/usr/local/lib"
195         LDFLAGS="${LDFLAGS_save}"
196         ;;
197       openbsd*)
198         CPPFLAGS_save="${CPPFLAGS_save} -I/usr/local/include -I/usr/X11R6/include"
199         CPPFLAGS="${CPPFLAGS_save}"
200         LDFLAGS_save="${LDFLAGS_save} -L/usr/local/lib -L/usr/X11R6/lib/"
201         LDFLAGS="${LDFLAGS_save}"
202         ;;
203     esac
204     ;;
205   darwin*)
206
207     dnl Force gcc "-arch" flag
208     ARCH_flag=""
209     case "${host}" in
210       i386*)
211         ARCH_flag="-arch i386"
212       ;;
213       ppc64*)
214         ARCH_flag="-arch ppc64"
215       ;;
216       ppc*)
217         ARCH_flag="-arch ppc"
218       ;;
219       x86_64*)
220         ARCH_flag="-arch x86_64"
221       ;;
222     esac
223
224     SYS=darwin
225     CFLAGS_save="${CFLAGS_save} -D_INTL_REDIRECT_MACROS ${ARCH_flag}"; CFLAGS="${CFLAGS_save}"
226     CXXFLAGS_save="${CXXFLAGS_save} -D_INTL_REDIRECT_MACROS ${ARCH_flag}"; CXXFLAGS="${CXXFLAGS_save}"
227     CPPFLAGS_save="${CPPFLAGS_save} ${ARCH_flag}"; CPPFLAGS="${CPPFLAGS_save}"
228     OBJCFLAGS_save="${OBJCFLAGS_save} -D_INTL_REDIRECT_MACROS -std=gnu99 ${ARCH_flag}"; OBJCFLAGS="${OBJCFLAGS_save}"
229     LDFLAGS_save="${LDFLAGS_save} -Wl,-headerpad_max_install_names ${ARCH_flag}"; LDFLAGS="${LDFLAGS_save}"
230     VLC_ADD_LDFLAGS([mkv mp4 motion], [-Wl,-framework,IOKit,-framework,CoreFoundation])
231     VLC_ADD_LDFLAGS([libvlc vlc],[-Wl,-undefined,dynamic_lookup])
232     VLC_ADD_LDFLAGS([avcodec avformat access_avio swscale postproc i420_rgb_mmx x264],[-Wl,-read_only_relocs,suppress])
233     VLC_ADD_CFLAGS([motion],[-fconstant-cfstrings])
234     VLC_ADD_LDFLAGS([libvlccore],[-Wl,-framework,CoreFoundation])
235     AC_ARG_ENABLE(macosx-defaults,
236       AS_HELP_STRING([--enable-macosx-defaults],[Build the default configuration on Mac OS X (default enabled)]))
237     if test "x${enable_macosx_defaults}" != "xno"
238     then
239         echo ""
240         echo "Building with Mac OS X defaults:"
241         with_macosx_version_min="10.5"
242         echo "  Assuming --with-macosx-version-min=10.5"
243         with_macosx_sdk="/Developer/SDKs/MacOSX${with_macosx_version_min}.sdk"
244         echo "  Assuming --with-macosx-sdk=/Developer/SDKs/MacOSX${with_macosx_version_min}.sdk"
245         build_dir=`pwd`
246         echo "  Assuming --prefix=${build_dir}/vlc_install_dir"
247         ac_default_prefix="${build_dir}/vlc_install_dir"
248         enable_faad="yes"
249         echo "  Assuming --enable-faad"
250         enable_flac="yes"
251         echo "  Assuming --enable-flac"
252         enable_theora="yes"
253         echo "  Assuming --enable-theora"
254         enable_shout="yes"
255         echo "  Assuming --enable-shout"
256         enable_vcdx="yes"
257         echo "  Assuming --enable-vcdx"
258         enable_caca="yes"
259         echo "  Assuming --enable-caca"
260         enable_ncurses="yes"
261         echo "  Assuming --enable-ncurses"
262         enable_twolame="yes"
263         echo "  Assuming --enable-twolame"
264         enable_realrtsp="yes"
265         echo "  Assuming --enable-realrtsp"
266         enable_libass="yes"
267         echo "  Assuming --enable-libass"
268
269         enable_skins2="no"
270         echo "  Assuming --disable-skins2"
271         enable_xcb="no"
272         echo "  Assuming --disable-xcb"
273     fi
274     dnl
275     dnl  Check for Mac OS X SDK settings
276     dnl
277     AC_ARG_WITH(macosx-sdk,
278        [  --with-macosx-sdk=DIR   compile using the SDK in DIR])
279     if test "${with_macosx_sdk}" != "" ; then
280         CPP="${CPP} -isysroot ${with_macosx_sdk}"
281         CC="${CC} -isysroot ${with_macosx_sdk}"
282         CXX="${CXX} -isysroot ${with_macosx_sdk}"
283         OBJC="${OBJC} -isysroot ${with_macosx_sdk}"
284         LD="${LD} -syslibroot ${with_macosx_sdk}"
285     fi
286     AC_ARG_WITH(macosx-version-min,
287        [  --with-macosx-version-min=VERSION compile for MacOSX VERSION and above])
288     if test "${with_macosx_version_min}" != "" ; then
289         CPP="${CPP} -mmacosx-version-min=${with_macosx_version_min}"
290         CC="${CC} -mmacosx-version-min=${with_macosx_version_min}"
291         CXX="${CXX} -mmacosx-version-min=${with_macosx_version_min}"
292         OBJC="${OBJC} -mmacosx-version-min=${with_macosx_version_min}"
293         LD="${LD} -macosx_version_min=${with_macosx_version_min}"
294         CFLAGS_save="${CFLAGS_save} -DMACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}"; CFLAGS="${CFLAGS_save}"
295         CXXFLAGS_save="${CXXFLAGS_save} -DMACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}"; CXXFLAGS="${CXXFLAGS_save}"
296         OBJCFLAGS_save="${OBJCFLAGS_save} -DMACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}"; OBJCFLAGS="${OBJCFLAGS_save}"
297         MACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}
298         export MACOSX_DEPLOYMENT_TARGET
299     fi
300     ;;
301   *mingw32* | *cygwin* | *wince* | *mingwce*)
302     AC_CHECK_TOOL(WINDRES, windres, :)
303     AC_CHECK_TOOL(OBJCOPY, objcopy, :)
304
305     case "${host_os}" in
306       *wince* | *mingwce* | *mingw32ce*)
307         SYS=mingwce
308         dnl Sadly CeGCC still needs non-wince macros
309         AC_DEFINE([_WIN32_WINNT], 0x0501, [Define to '0x0500' for Windows 2000 APIs.])
310         ;;
311       *mingw32*)
312         SYS=mingw32
313         AC_DEFINE([_WIN32_WINNT], 0x0501, [Define to '0x0500' for Windows XP APIs.])
314         ;;
315       *cygwin*)
316         dnl Check if we are using the mno-cygwin mode in which case we are
317         dnl actually dealing with a mingw32 compiler.
318         AC_DEFINE([_WIN32_WINNT], 0x0501, [Define to '0x0501' for Windows XP APIs.])
319         AC_EGREP_CPP(yes,
320             [#ifdef WIN32
321              yes
322              #endif],
323             SYS=mingw32, AC_MSG_ERROR([VLC requires -mno-cygwin]))
324         ;;
325     esac
326
327     if test "${SYS}" = "mingw32"; then
328         # add ws2_32 for closesocket, select, recv
329         VLC_ADD_LIBS([libvlccore],[-lws2_32 -lnetapi32 -lwinmm])
330         VLC_ADD_LDFLAGS([vlc],[-mwindows])
331         VLC_ADD_LIBS([win32text],[-lgdi32])
332         VLC_ADD_LIBS([cdda vcdx sdl_image aout_sdl vout_sdl],[-lwinmm])
333         VLC_ADD_LIBS([access_http access_mms access_udp access_tcp access_ftp access_rtmp access_output_udp access_output_shout access_output_rtmp sap oldhttp stream_out_standard stream_out_rtp stream_out_raop vod_rtsp access_realrtsp rtp oldrc netsync gnutls growl_udp flac ts audioscrobbler lua remoteosd zvbi audiobargraph_a netsync],[-lws2_32])
334         VLC_ADD_LIBS([filesystem], [-lshlwapi])
335         dnl
336         dnl DEP and ASLR options
337         dnl
338         AC_ARG_ENABLE(peflags,
339           [  --enable-peflags        peflags use (default enabled on Windows)])
340         if test "${enable_peflags}" != "no" ; then
341           AC_PATH_TOOL(PEFLAGS, peflags, :)
342         fi
343         AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos)
344         ac_default_prefix="`pwd`/_win32"
345         DESTDIR="`pwd`/_win32/"
346
347         dnl
348         dnl NSIS Installer prefix and WIN64
349         dnl
350         case "${host}" in
351             amd64*|i686-w64*|x86_64*)
352                 HAVE_WIN64="1"
353                 PROGRAMFILES="PROGRAMFILES64"
354             ;;
355             *)
356                 PROGRAMFILES="PROGRAMFILES"
357             ;;
358         esac
359         AC_SUBST(PROGRAMFILES)
360
361     fi
362     if test "${SYS}" = "mingwce"; then
363         # add ws2 for closesocket, select, recv
364         VLC_ADD_LIBS([libvlccore access_http access_mms access_udp access_tcp access_ftp access_rtmp access_output_udp access_output_rtmp sap oldhttp netsync audioscrobbler growl rtp stream_out_standard stream_out_rtp remoteosd ts audiobargraph_a netsync],[-lws2])
365         VLC_ADD_LIBS([libvlccore],[-lmmtimer])
366         AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos)
367         ac_default_prefix="`pwd`/_wince"
368         DESTDIR="`pwd`/_wince/"
369     fi
370     ;;
371   *nto*)
372     SYS=nto
373     ;;
374   solaris*)
375     SYS=solaris
376     ;;
377   hpux*)
378     SYS=hpux
379     ;;
380   symbian*)
381     SYS=symbian
382     ;;
383   *)
384     SYS="${host_os}"
385     ;;
386 esac
387 AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin")
388 AM_CONDITIONAL(HAVE_LINUX, [test "${SYS}" = "linux"])
389 AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32")
390 AM_CONDITIONAL(HAVE_WIN64, test "${HAVE_WIN64}" = "1")
391 AM_CONDITIONAL(HAVE_WINCE, test "${SYS}" = "mingwce")
392 AM_CONDITIONAL(HAVE_SYMBIAN, test "${SYS}" = "symbian")
393 AM_CONDITIONAL(USE_PEFLAGS, [test "${enable_peflags}" = "yes"])
394
395 dnl
396 dnl Sadly autoconf doesn't think about testing foo.exe when ask to test
397 dnl for program foo on win32
398
399 case "${build_os}" in
400     cygwin|msys)
401         ac_executable_extensions=".exe"
402     ;;
403     *)
404     ;;
405 esac
406
407 dnl
408 dnl  Libtool
409 dnl  It's very bad, but our former custom system was worst
410 dnl  -- Courmisch
411 dnl
412
413 dnl override platform specific check for dependent libraries
414 dnl otherwise libtool linking of shared libraries will
415 dnl fail on anything other than pass_all.
416 AC_CACHE_VAL(lt_cv_deplibs_check_method,
417     [lt_cv_deplibs_check_method=pass_all])
418
419 AC_DISABLE_STATIC
420 dnl AC_DISABLE_FAST_INSTALL
421 AC_LIBTOOL_DLOPEN
422 AC_LIBTOOL_WIN32_DLL
423 m4_undefine([AC_PROG_F77])
424 m4_defun([AC_PROG_F77],[])
425 AC_PROG_LIBTOOL
426
427 m4_undefine([AC_DEPLIBS_CHECK_METHOD])
428 m4_defun([AC_DEPLIBS_CHECK_METHOD],[])
429
430 lt_cv_deplibs_check_method=pass_all
431
432 dnl
433 dnl Gettext stuff
434 dnl
435 AM_GNU_GETTEXT_VERSION([0.18.1])
436 AM_GNU_GETTEXT([external])
437 VLC_ADD_LIBS([libvlccore vlc], [${LTLIBINTL}])
438
439 dnl
440 dnl Iconv stuff
441 dnl
442 AM_ICONV
443 VLC_ADD_CFLAGS([libvlccore],[${INCICONV}])
444 VLC_ADD_LIBS([libvlccore],[${LTLIBICONV}])
445
446 dnl Check for broken versions of mingw-runtime compatability library
447 AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
448     AC_MSG_CHECKING(for broken mingw-runtime)
449     AC_PREPROC_IFELSE([
450 #include <_mingw.h>
451 #if (__MINGW32_MAJOR_VERSION == 3) && (__MINGW32_MINOR_VERSION < 15)
452 #ifndef __MINGW64_VERSION_MAJOR
453 # error Attempting to use mingw-runtime with broken vsnprintf support
454 #endif
455 #endif
456     ], [
457         AC_MSG_RESULT([ok])
458     ], [
459         AC_MSG_RESULT([present])
460         AC_MSG_ERROR([LibVLC requires mingw-runtime version 3.15 or higher!])
461     ])
462     dnl force use of mingw provided c99 *printf over msvcrt
463     CPPFLAGS="${CPPFLAGS} -D__USE_MINGW_ANSI_STDIO=1"
464     CPPFLAGS_save="${CPPFLAGS_save} -D__USE_MINGW_ANSI_STDIO=1"
465 ])
466
467 dnl Check for the need to include the mingwex lib for mingw32
468 if test "${SYS}" = "mingw32" ; then
469     AC_CHECK_LIB(mingwex,opendir,
470         AC_CHECK_LIB(mingw32,opendir,,
471             [VLC_ADD_LIBS([libvlccore],[-lmingwex])])
472     )
473 fi
474
475 dnl Check for fnative-struct or mms-bitfields support for mingw32
476 if test "${SYS}" = "mingw32" ; then
477     AC_CACHE_CHECK([if \$CC accepts -mms-bitfields],
478         [ac_cv_c_mms_bitfields],
479         [CFLAGS="${CFLAGS_save} -mms-bitfields"
480          AC_TRY_COMPILE([],,ac_cv_c_mms_bitfields=yes, ac_cv_c_mms_bitfields=no)])
481     if test "${ac_cv_c_mms_bitfields}" != "no"; then
482         CFLAGS_save="${CFLAGS_save} -mms-bitfields";
483         CXXFLAGS_save="${CXXFLAGS_save} -mms-bitfields";
484     else
485         AC_CACHE_CHECK([if \$CC accepts -fnative-struct],
486             [ac_cv_c_fnative_struct],
487             [CFLAGS="${CFLAGS_save} -fnative-struct"
488              AC_TRY_COMPILE([],,ac_cv_c_fnative_struct=yes, ac_cv_c_fnative_struct=no)])
489         if test "${ac_cv_c_fnative_struct}" != "no"; then
490             CFLAGS_save="${CFLAGS_save} -fnative-struct";
491             CXXFLAGS_save="${CXXFLAGS_save} -fnative-struct";
492         fi
493     fi
494
495     CFLAGS="${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
496 fi
497
498 dnl Check for fvtable-thunks support for mingw32
499 if test "${SYS}" = "mingw32" -a "${CXX}" != "" ; then
500     AC_LANG_PUSH(C++)
501     AC_CACHE_CHECK([if \$CXX accepts -fvtable-thunks],
502         [ac_cv_cxx_fvtable_thunks],
503         [CXXFLAGS="${CXXFLAGS_save} -Wall -Werror -fvtable-thunks"
504          AC_TRY_COMPILE([],,ac_cv_cxx_fvtable_thunks=yes,
505                         ac_cv_cxx_fvtable_thunks=no)])
506     if test "${ac_cv_cxx_fvtable_thunks}" = "yes"; then
507         CXXFLAGS_mingw32_special="-fvtable-thunks"
508     fi
509
510     CXXFLAGS_save="${CXXFLAGS_save} ${CXXFLAGS_mingw32_special}"; CXXFLAGS="${CXXFLAGS_save}"
511     AC_LANG_POP(C++)
512 fi
513
514 dnl
515 dnl Buggy glibc prevention. Purposedly not cached.
516 dnl See sourceware.org bugs 5058 and 5443.
517 dnl Ubuntu alone has 20 bug numbers for this...
518 dnl
519 AC_MSG_CHECKING(for buggy GNU/libc versions)
520 AC_PREPROC_IFELSE([
521 #include <limits.h>
522 #if defined (__GLIBC__) && (__GLIBC__ == 2) \
523   && (__GLIBC_MINOR__ >= 5) && (__GLIBC_MINOR__ <= 7)
524 # error GNU/libc with dcgettext killer bug!
525 #endif
526 ], [
527   AC_MSG_RESULT([not present])
528 ], [
529   AC_MSG_RESULT([found])
530   AS_IF([test "x${enable_nls}" != "xno"], [
531     AC_MSG_ERROR([Buggy GNU/libc (version 2.5 - 2.7) present. VLC would crash; there is no viable
532 work-around for this. Check with your distribution vendor on how to update the
533 glibc run-time. Alternatively, build with --disable-nls.])
534   ], [
535     AC_DEFINE(DISABLE_BUGGY_GLIBC_CHECK, 1, [Disables runtime check for buggy glibc.])
536   ])
537 ])
538
539 dnl Plugin compilation stuff
540
541 VLC_LIBRARY_SUFFIX
542
543 dnl The -DSYS_FOO flag
544 CPPFLAGS_save="${CPPFLAGS_save} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcdefghijklmnopqrstuvwxyz.' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`"; CPPFLAGS="${CPPFLAGS_save}"
545
546 dnl Check for system libs needed
547 need_libc=false
548
549 dnl Check for usual libc functions
550 AC_CHECK_FUNCS([daemon fcntl fdopendir fstatvfs fork getenv getpwuid_r gettimeofday isatty lstat memalign mmap openat pread posix_fadvise posix_madvise posix_memalign setlocale stricmp strnicmp uselocale])
551 AC_REPLACE_FUNCS([asprintf atof atoll getcwd getdelim getpid gmtime_r lldiv localtime_r nrand48 rewind setenv strcasecmp strcasestr strdup strlcpy strncasecmp strndup strnlen strsep strtof strtok_r strtoll swab tdestroy vasprintf])
552 AC_CHECK_FUNCS(fdatasync,,
553   [AC_DEFINE(fdatasync, fsync, [Alias fdatasync() to fsync() if missing.])
554 ])
555
556 # Windows CE doesn't have strcoll()
557 AC_FUNC_STRCOLL
558
559 dnl Check for non-standard system calls
560 AC_CHECK_FUNCS([accept4 dup3 pipe2 eventfd vmsplice sched_getaffinity])
561
562 AH_BOTTOM([#include <vlc_fixups.h>])
563
564 SOCKET_LIBS=""
565 AC_CHECK_FUNCS(connect,,[
566   AC_CHECK_LIB(socket,connect,[
567     VLC_ADD_LIBS([libvlccore cdda],-lsocket)
568     SOCKET_LIBS="-lsocket"
569   ])
570 ])
571 AC_SUBST(SOCKET_LIBS)
572
573 AC_CHECK_FUNCS(send,,[
574   AC_CHECK_LIB(socket,send,[
575     VLC_ADD_LIBS([access_http access_mms access_udp access_tcp access_ftp access_rtmp sap access_output_udp access_output_rtmp stream_out_standard growl_udp remoteosd netsync],[-lsocket])
576   ])
577 ])
578
579
580 dnl Check for socklen_t
581 AH_TEMPLATE(socklen_t, [Define to `int' if <sys/socket.h> does not define.])
582 AC_CACHE_CHECK([for socklen_t in sys/socket.h],
583 ac_cv_type_socklen_t,
584 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
585 [#include <sys/types.h>
586 #ifdef WIN32
587 # include <winsock2.h>
588 # include <ws2tcpip.h>
589 #else
590 # include <sys/socket.h>
591 #endif]], [[socklen_t len; len = 0;]])],
592 ac_cv_type_socklen_t=yes,
593 ac_cv_type_socklen_t=no)])
594 AS_IF([test "$ac_cv_type_socklen_t" = no],
595  [AC_DEFINE(socklen_t, int)])
596
597 dnl Check for struct sockaddr_storage
598 AH_TEMPLATE(sockaddr_storage, [Define to `sockaddr' if <sys/socket.h> does not define.])
599 AH_TEMPLATE(ss_family, [Define to `sa_family' if <sys/socket.h> does not define.])
600 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_struct_sockaddr_storage,
601   [AC_TRY_COMPILE(
602     [#include <sys/types.h>
603      #if defined( UNDER_CE )
604      # include <winsock2.h>
605      #elif defined( WIN32 )
606      # include <winsock2.h>
607      #else
608      # include <sys/socket.h>
609      #endif], [struct sockaddr_storage addr;],
610      ac_cv_struct_sockaddr_storage=yes,
611      ac_cv_struct_sockaddr_storage=no)])
612 AS_IF([test "${ac_cv_struct_sockaddr_storage}" = no], [
613   AC_DEFINE(sockaddr_storage, sockaddr)
614   AC_DEFINE(ss_family, sa_family)
615 ])
616
617 dnl getaddrinfo, getnameinfo and gai_strerror check
618 dnl  -lnsl and -lsocket are needed on Solaris;
619 dnl  we purposedly make the test fail on Windows
620 LIBS_save="${LIBS}"
621 AC_SEARCH_LIBS([getaddrinfo], [nsl],,, [${SOCKET_LIBS}])
622 LIBS="${LIBS_save}"
623
624 dnl Check for va_copy
625 AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
626   AC_TRY_LINK(
627     [#include <stdarg.h>],
628     [va_list ap1, ap2; va_copy(ap1,ap2);],
629     [ac_cv_c_va_copy="yes"],
630     [ac_cv_c_va_copy="no"]))
631 if test "${ac_cv_c_va_copy}" = "yes"; then
632   AC_DEFINE(HAVE_VA_COPY, 1, [Define if <stdarg.h> defines va_copy.])
633 fi
634 AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy,
635   AC_TRY_LINK(
636     [#include <stdarg.h>],
637     [va_list ap1, ap2; __va_copy(ap1,ap2);],
638     [ac_cv_c___va_copy="yes"],
639     [ac_cv_c___va_copy="no"]))
640 if test "${ac_cv_c___va_copy}" = "yes"; then
641   AC_DEFINE(HAVE___VA_COPY, 1, [Define if <stdarg.h> defines __va_copy.])
642 fi
643
644 AC_CHECK_FUNCS(inet_aton,,[
645   AC_CHECK_LIB(resolv,inet_aton,[
646     VLC_ADD_LIBS([libvlccore],[-lresolv])
647   ])
648 ])
649
650 dnl FreeBSD has a gnugetopt library for this:
651 GNUGETOPT_LIBS=""
652 AC_CHECK_FUNC(getopt_long,, [
653   AC_CHECK_LIB([gnugetopt],[getopt_long], [
654     GNUGETOPT_LIBS="-lgnugetopt"
655   ])
656 ])
657 AC_SUBST(GNUGETOPT_LIBS)
658
659 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
660 AC_CHECK_LIB(m,cos,[
661   VLC_ADD_LIBS([adjust wave ripple psychedelic gradient a52tofloat32 dtstofloat32 x264 goom visual panoramix rotate noise grain scene kate flac lua chorus_flanger],[-lm])
662 ])
663 AC_CHECK_LIB(m,pow,[
664   VLC_ADD_LIBS([avcodec avformat access_avio swscale postproc ffmpegaltivec i420_rgb faad twolame equalizer spatializer param_eq libvlccore freetype mod mpc dmo quicktime realvideo qt4],[-lm])
665 ])
666 AC_CHECK_LIB(m,sqrt,[
667   VLC_ADD_LIBS([compressor headphone_channel_mixer normvol audiobargraph_a speex mono colorthres extract ball],[-lm])
668 ])
669 AC_CHECK_LIB(m,ceil,[
670   VLC_ADD_LIBS([access_imem hotkeys mosaic swscale_omap],[-lm])
671 ])
672 AC_CHECK_LIB(m,exp,[
673   VLC_ADD_LIBS([gaussianblur],[-lm])
674 ])
675 AC_CHECK_LIB(m,round,[
676   VLC_ADD_LIBS([dbus],[-lm])
677 ])
678 AC_CHECK_LIB(m,sqrtf,[
679   VLC_ADD_LIBS([x264],[-lm])
680 ])
681 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
682
683 AC_CHECK_LIB(m,lrintf, [
684   AC_DEFINE(HAVE_LRINTF, 1, [Define to 1 if you have the lrintf function])
685   VLC_ADD_LIBS([skins2],[-lm])
686 ])
687
688 dnl Check for dynamic plugins
689 ac_cv_have_plugins=no
690
691 # HP-UX style
692 if test "${ac_cv_have_plugins}" = "no"; then
693   AC_CHECK_HEADERS(dl.h)
694   ac_cv_my_have_shl_load=no
695   AC_CHECK_FUNC(shl_load,
696    [ac_cv_my_have_shl_load=yes,
697     AC_CHECK_LIB(dld, shl_load,
698      [ac_cv_my_have_shl_load=yes
699       VLC_ADD_LIBS([libvlccore],[-ldld])])])
700   if test "${ac_cv_my_have_shl_load}" = "yes"; then
701     AC_DEFINE(HAVE_DL_SHL_LOAD, 1, [Define if you have the shl_load API])
702     ac_cv_have_plugins=yes
703   fi
704 fi
705
706 # Win32 style
707 if test "${ac_cv_have_plugins}" = "no"; then
708   if test "${SYS}" = "mingw32" ; then
709     AC_CHECK_LIB(kernel32, main,
710      [VLC_ADD_LIBS([libvlccore],[-lkernel32])
711       AC_DEFINE(HAVE_DL_WINDOWS, 1, [Define if you have Windows' LoadLibrary])
712       ac_cv_have_plugins=yes])
713   fi
714 fi
715
716 # WinCE style
717 if test "${ac_cv_have_plugins}" = "no"; then
718   if test "${SYS}" = "mingwce"; then
719     AC_DEFINE(HAVE_DL_WINDOWS, 1, [Define if you have Windows' LoadLibrary])
720     ac_cv_have_plugins=yes
721   fi
722 fi
723
724 # Only test for dlopen() if the others didn't work
725 LIBDL=""
726 if test "${ac_cv_have_plugins}" = "no" -o "${SYS}" = "darwin"; then
727   AC_CHECK_HEADERS(dlfcn.h sys/dl.h)
728   ac_cv_my_have_dlopen=no
729   AC_CHECK_FUNC(dlopen, [
730     ac_cv_my_have_dlopen=yes
731   ], [
732     AC_CHECK_LIB(dl, dlopen, [
733       ac_cv_my_have_dlopen=yes
734       LIBDL="-ldl"
735     ], [
736       AC_CHECK_LIB(svld, dlopen, [
737         ac_cv_my_have_dlopen=yes
738         LIBDL="-lsvld"
739       ])
740     ])
741   ])
742   if test "${ac_cv_my_have_dlopen}" = "yes"; then
743     AC_DEFINE(HAVE_DL_DLOPEN, 1, [Define if you have the dlopen API])
744     ac_cv_have_plugins=yes
745     VLC_ADD_LIBS([libvlccore realvideo lua],[$LIBDL])
746   fi
747 fi
748 AC_SUBST(LIBDL)
749
750 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
751   dnl Check for pthreads - borrowed from XMMS
752   THREAD_LIB=error
753   if test "${THREAD_LIB}" = "error"; then
754     AC_CHECK_LIB(pthread,main,THREAD_LIB="-lpthread")
755   fi
756   if test "${THREAD_LIB}" = "error"; then
757     AC_CHECK_LIB(pthreads,main,THREAD_LIB="-lpthreads")
758   fi
759   if test "${THREAD_LIB}" = "error"; then
760     AC_CHECK_LIB(c_r,main,THREAD_LIB="-lc_r")
761   fi
762   if test "${THREAD_LIB}" = "error"; then
763     AC_CHECK_FUNCS(pthread_mutex_lock)
764     THREAD_LIB=""
765   fi
766
767   VLC_ADD_LIBS([libvlccore libvlc vlc plugin],[${THREAD_LIB}])
768
769   AC_CHECK_LIB(rt, clock_nanosleep, [
770     VLC_ADD_LIBS([libvlccore],[-lrt])
771     AC_DEFINE(HAVE_CLOCK_NANOSLEEP, 1, [Define to 1 if you have clock_nanosleep.])
772   ], [
773     dnl HP/UX port
774     AC_CHECK_LIB(rt,sem_init, [VLC_ADD_LIBS([libvlccore],[-lrt])])
775   ])
776
777   have_nanosleep=false
778   AC_CHECK_FUNCS(nanosleep,have_nanosleep=:,[
779     AC_CHECK_LIB(rt,nanosleep,
780       [VLC_ADD_LIBS([libvlccore],[-lrt]) have_nanosleep=:],
781       [AC_CHECK_LIB(posix4,nanosleep,
782           [VLC_ADD_LIBS([libvlccore],[-lposix4]) have_nanosleep=:])]
783     )
784   ])
785   if ${have_nanosleep}; then
786     AC_DEFINE(HAVE_NANOSLEEP, 1, [Define if nanosleep is available.])
787   fi
788 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
789
790 dnl Check for misc headers
791 AC_MSG_CHECKING(for strncasecmp in strings.h)
792 AC_EGREP_HEADER(strncasecmp,strings.h,[
793   AC_MSG_RESULT(yes)
794   AC_DEFINE(STRNCASECMP_IN_STRINGS_H, 1,
795             Define if <strings.h> defines strncasecmp.)],[
796   AC_MSG_RESULT(no)])
797
798 dnl Check for headers
799 AC_CHECK_HEADERS([search.h])
800 AC_CHECK_HEADERS(getopt.h strings.h locale.h xlocale.h)
801 AC_CHECK_HEADERS(fcntl.h sys/time.h sys/ioctl.h sys/stat.h)
802 AC_CHECK_HEADERS([arpa/inet.h netinet/in.h netinet/udplite.h sys/eventfd.h])
803 AC_CHECK_HEADERS([net/if.h], [], [],
804   [
805     #include <sys/types.h>
806     #include <sys/socket.h>
807   ])
808 AC_CHECK_HEADERS([sys/mount.h], [], [],
809   [
810     #include <sys/param.h>
811   ])
812
813 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
814   AC_CHECK_HEADERS(machine/param.h sys/shm.h)
815   AC_CHECK_HEADERS([linux/version.h linux/dccp.h scsi/scsi.h linux/magic.h])
816   AC_CHECK_HEADERS(syslog.h)
817 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
818
819 dnl LP64 and LLP64 architectures had better define ssize_t by themselves...
820 AH_TEMPLATE(ssize_t, [Define to `int' if <stddef.h> does not define.])
821 AC_CHECK_TYPE(ssize_t,, [
822   AC_DEFINE(ssize_t, int)
823 ])
824
825 dnl Check for poll
826 AC_SEARCH_LIBS(poll, [poll], [AC_DEFINE(HAVE_POLL, 1, [Define to 1 if the OS is usabl... err, has poll().])], [
827 if test ${SYS} != "mingw32" -a ${SYS} != "mingwce"
828 then
829     AC_MSG_WARN([Your platform does not support poll(). VLC has it's own poll() implementation, but it is only intended to be used on Windows. VLC might crash or be insecure when you see this message. Either switch to an OS with a proper poll() implementation, or implement one for your OS in VLC])
830 fi
831 ])
832
833 dnl Mac OS X and other OSes don't have declaration for nanosleep
834 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
835   AC_MSG_CHECKING(for nanosleep in time.h)
836   AC_EGREP_HEADER(nanosleep,time.h,[
837     AC_MSG_RESULT(yes)
838     AC_DEFINE(HAVE_DECL_NANOSLEEP, 1,
839               Define if <time.h> defines nanosleep.)
840   ],[
841     AC_MSG_RESULT(no)
842   ])
843 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
844
845 dnl Make sure we have timespecs
846 AC_MSG_CHECKING(for timespec in sys/time.h)
847 AC_EGREP_HEADER(timespec,sys/time.h,[
848   AC_MSG_RESULT(yes)
849   AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1,
850             Define if <sys/time.h> defines struct timespec.)
851 ],[
852   AC_MSG_RESULT(no)
853 ])
854
855 dnl Check for threads library
856 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
857   AC_CHECK_HEADERS(pthread.h)
858 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
859
860 dnl It seems that autoconf detects pkg-config only during the first
861 dnl PKG_CHECK_MODULES from configure.ac - which makes sense. But in our case,
862 dnl it is nested within a conditional block, so it was not working right.
863 dnl Make PKG_CONFIG_PATH precious so that it appears in the help and get saved
864 AC_ARG_VAR(PKG_CONFIG_PATH,
865        [Paths where to find .pc not at the default location])
866 PKG_PROG_PKG_CONFIG()
867
868 dnl On some OS we need static linking 
869 AS_IF([test -n "${PKG_CONFIG}" ],[
870     AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "darwin" ],[
871         PKG_CONFIG="${PKG_CONFIG} --static"
872     ])
873 ])
874
875
876 dnl
877 dnl Check for zlib.h and -lz along with system -lminizip if available
878 dnl
879 AC_CHECK_HEADERS(zlib.h, [ have_zlib=yes ], [ have_zlib=no ])
880 AM_CONDITIONAL(HAVE_ZLIB, [ test "${have_zlib}" = "yes" ])
881 if test "${have_zlib}" = "yes"
882 then
883   VLC_ADD_LIBS([access_http mp4 skins2 sap mkv unzip zip],[-lz])
884   PKG_CHECK_MODULES([MINIZIP], [minizip] , [ have_minizip=yes ], [
885     AC_CHECK_HEADERS([unzip.h], [ 
886       have_minizip=yes
887       MINIZIP_LIBS="-lminizip -lz"
888     ], [
889       have_minizip=no
890       MINIZIP_CFLAGS="-I\\\${top_srcdir}/libs/unzip"
891       MINIZIP_LIBS="\\\${top_builddir}/libs/unzip/libunzip.la"
892     ])
893   ])
894   VLC_ADD_CPPFLAGS([skins2],[$MINIZIP_CFLAGS])
895   VLC_ADD_CFLAGS([zip],[$MINIZIP_CFLAGS])
896   VLC_ADD_LIBS([skins2 zip],[$MINIZIP_LIBS])
897   VLC_ADD_PLUGIN([unzip zip])
898 fi
899 AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
900
901
902 dnl Manual switch for UTF-8
903 AC_ARG_ENABLE(non-utf8,
904   [  --enable-non-utf8       Legacy non-UTF-8 systems support (default disabled)],, [
905   AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
906     enable_non_utf8="no"
907   ])
908 ])
909 AS_IF([test "${enable_non_utf8}" != "no"], [
910   AC_DEFINE([ASSUME_UTF8], [1],
911             [Define to 1 if the operating system uses UTF-8 internally])
912 ])
913
914
915 dnl Check for dbus
916 AC_ARG_ENABLE(dbus,
917   [  --enable-dbus           Linux D-BUS message bus system (default enabled)])
918 case "${SYS}" in
919     linux*|*bsd*)
920 if test "${enable_dbus}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
921 then
922   dnl api stable dbus
923   PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0.0,
924     [ AC_DEFINE( HAVE_DBUS, 1, [Define if you have the D-BUS library] )
925       VLC_ADD_LIBS([libvlccore],[$DBUS_LIBS])
926       VLC_ADD_CFLAGS([libvlccore],[$DBUS_CFLAGS])
927       dnl Check for dbus control interface
928         AC_ARG_ENABLE(dbus-control, [  --disable-dbus-control  D-BUS control interface (default enabled)])
929         if test "${enable_dbus_control}" != "no"
930         then
931           VLC_ADD_PLUGIN([dbus])
932           VLC_ADD_LIBS([dbus],[$DBUS_LIBS])
933           VLC_ADD_CFLAGS([dbus],[$DBUS_CFLAGS])
934         fi
935       dnl Check for Telepathy
936         AC_ARG_ENABLE(telepathy,
937           AS_HELP_STRING([--enable-telepathy],[Telepathy Presence plugin through DBus(default enabled)]))
938         if test "${enable_telepathy}" != "no"; then
939           VLC_ADD_PLUGIN([telepathy])
940           VLC_ADD_LIBS([telepathy],[$DBUS_LIBS])
941           VLC_ADD_CFLAGS([telepathy],[$DBUS_CFLAGS])
942         fi
943         dnl Power Management Inhibiter
944         VLC_ADD_PLUGIN([inhibit])
945         VLC_ADD_LIBS([inhibit],[$DBUS_LIBS])
946         VLC_ADD_CFLAGS([inhibit],[$DBUS_CFLAGS])
947     ],
948     [AC_MSG_ERROR([Couldn't find DBus >= 1.0.0, install libdbus-dev ?])]
949   )
950 fi
951 ;;
952 esac
953
954 dnl Check for ntohl, etc.
955 AC_CACHE_CHECK([for ntohl in sys/param.h],
956     [ac_cv_c_ntohl_sys_param_h],
957     [CFLAGS="${CFLAGS_save} -Wall -Werror"
958      AC_TRY_COMPILE([#include <sys/param.h>],
959         [int meuh; ntohl(meuh);],
960         ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
961 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
962     AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
963 fi
964 CFLAGS="${CFLAGS_save}"
965
966 RDC_PROG_CC_WFLAGS([all extra sign-compare undef pointer-arith bad-function-cast write-strings missing-prototypes volatile-register-var error-implicit-function-declaration])
967 RDC_PROG_CC_FLAGS([-pipe])
968
969 dnl Check for various optimization flags
970 AC_CACHE_CHECK([if \$CC accepts -Os],
971     [ac_cv_c_os],
972     [CFLAGS="${CFLAGS_save} -Os"
973      AC_TRY_COMPILE([],,ac_cv_c_os=yes, ac_cv_c_os=no)])
974 if test "${ac_cv_c_os}" != "no"; then
975     CFLAGS_OPTIM_SIZE="${CFLAGS_OPTIM_SIZE} -Os"
976 else
977     AC_CACHE_CHECK([if \$CC accepts -O],
978         [ac_cv_c_o],
979         [CFLAGS="${CFLAGS_save} -O"
980          AC_TRY_COMPILE([],,ac_cv_c_o=yes, ac_cv_c_o=no)])
981     if test "${ac_cv_c_o}" != "no"; then
982         if test "${ac_cv_c_o3}" = "no"; then
983             CFLAGS_OPTIM_SIZE="${CFLAGS_OPTIM_SIZE} -O"
984         fi
985     fi
986 fi
987
988 AC_CACHE_CHECK([if \$CC accepts -O4],
989     [ac_cv_c_o4],
990     [CFLAGS="${CFLAGS_save} -O4"
991      AC_TRY_COMPILE([],,ac_cv_c_o4=yes, ac_cv_c_o4=no)])
992 if test "${ac_cv_c_o4}" != "no" -a "x${enable_debug}" = "xno"; then
993     CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -O4"
994 else
995     AC_CACHE_CHECK([if \$CC accepts -O3],
996         [ac_cv_c_o3],
997         [CFLAGS="${CFLAGS_save} -O3"
998          AC_TRY_COMPILE([],,ac_cv_c_o3=yes, ac_cv_c_o3=no)])
999     if test "${ac_cv_c_o3}" != "no" -a "x${enable_debug}" = "xno"; then
1000         CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -O3"
1001     else
1002         AC_CACHE_CHECK([if \$CC accepts -O2],
1003             [ac_cv_c_o2],
1004             [CFLAGS="${CFLAGS_save} -O2"
1005              AC_TRY_COMPILE([],,ac_cv_c_o2=yes, ac_cv_c_o2=no)])
1006         if test "${ac_cv_c_o2}" != "no"; then
1007             CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -O2"
1008         else
1009             AC_CACHE_CHECK([if \$CC accepts -O],
1010                 [ac_cv_c_o],
1011                 [CFLAGS="${CFLAGS_save} -O"
1012                  AC_TRY_COMPILE([],,ac_cv_c_o=yes, ac_cv_c_o=no)])
1013             if test "${ac_cv_c_o}" != "no"; then
1014                 CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -O"
1015             fi
1016         fi
1017     fi
1018 fi
1019
1020 AC_CACHE_CHECK([if \$CC accepts -O0],
1021     [ac_cv_c_o0],
1022     [CFLAGS="${CFLAGS_save} -O0"
1023      AC_TRY_COMPILE([],,ac_cv_c_o0=yes, ac_cv_c_o0=no)])
1024 if test "${ac_cv_c_o0}" != "no"; then
1025     CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O0"
1026 fi
1027
1028 dnl Check for -ffast-math
1029 AC_CACHE_CHECK([if \$CC accepts -ffast-math],
1030     [ac_cv_c_fast_math],
1031     [CFLAGS="${CFLAGS_save} -ffast-math"
1032      AC_TRY_COMPILE([],,ac_cv_c_fast_math=yes, ac_cv_c_fast_math=no)])
1033 if test "${ac_cv_c_fast_math}" != "no"; then
1034     CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -ffast-math"
1035 fi
1036
1037 dnl Check for -funroll-loops
1038 AC_CACHE_CHECK([if \$CC accepts -funroll-loops],
1039     [ac_cv_c_unroll_loops],
1040     [CFLAGS="${CFLAGS_save} -funroll-loops"
1041      AC_TRY_COMPILE([],,ac_cv_c_unroll_loops=yes, ac_cv_c_unroll_loops=no)])
1042 if test "${ac_cv_c_unroll_loops}" != "no"; then
1043     CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -funroll-loops"
1044 fi
1045
1046 dnl Check for -fomit-frame-pointer
1047 AC_CACHE_CHECK([if \$CC accepts -fomit-frame-pointer],
1048     [ac_cv_c_omit_frame_pointer],
1049     [CFLAGS="${CFLAGS_save} -fomit-frame-pointer"
1050      AC_TRY_COMPILE([],,ac_cv_c_omit_frame_pointer=yes, ac_cv_c_omit_frame_pointer=no)])
1051 if test "${ac_cv_c_omit_frame_pointer}" != "no"; then
1052  if test "${SYS}" != "darwin"; then
1053     CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fomit-frame-pointer"
1054  else
1055     dnl On darwin we explicitely disable it.
1056     CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fno-omit-frame-pointer"
1057  fi
1058 fi
1059
1060 dnl Check for Darwin plugin linking flags
1061 AC_CACHE_CHECK([if \$CC accepts -bundle -undefined error],
1062     [ac_cv_ld_darwin],
1063     [CFLAGS="${CFLAGS_save} -bundle -undefined error"
1064      AC_TRY_COMPILE([],,ac_cv_ld_darwin=yes, ac_cv_ld_darwin=no)])
1065 if test "${ac_cv_ld_darwin}" != "no"; then
1066     VLC_ADD_LDFLAGS([plugin],[-bundle -undefined error])
1067 fi
1068
1069 dnl Checks for __attribute__(aligned()) directive
1070 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
1071     [ac_cv_c_attribute_aligned],
1072     [ac_cv_c_attribute_aligned=0
1073         CFLAGS="${CFLAGS_save} -Werror"
1074     for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
1075         AC_TRY_COMPILE([],
1076         [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
1077         [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
1078     done
1079         CFLAGS="${CFLAGS_save}"])
1080 if test "${ac_cv_c_attribute_aligned}" != "0"; then
1081     AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
1082         [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
1083 fi
1084
1085 dnl Check for __attribute__((packed))
1086 AC_CACHE_CHECK([for __attribute__((packed))],
1087   [ac_cv_c_attribute_packed],
1088   [ac_cv_c_attribute_packed=no
1089    AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b; (void)b;],
1090                     [ac_cv_c_attribute_packed=yes])])
1091 if test "${ac_cv_c_attribute_packed}" != "no"; then
1092   AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
1093 fi
1094
1095 dnl
1096 dnl  Check the CPU
1097 dnl
1098 case "${host_cpu}" in
1099   "")
1100     ARCH=unknown
1101     ;;
1102   *)
1103     ARCH="${host_cpu}"
1104     ;;
1105 esac
1106
1107 dnl Check for backtrace() support
1108 AC_CHECK_HEADERS(execinfo.h)
1109 AC_CHECK_FUNCS(backtrace)
1110
1111 dnl
1112 dnl  Enable profiling
1113 dnl
1114 AC_ARG_ENABLE(gprof,
1115 [  --enable-gprof          gprof profiling (default disabled)])
1116 AC_ARG_ENABLE(cprof,
1117 [  --enable-cprof          cprof profiling (default disabled)])
1118 test "${enable_gprof}" != "yes" && enable_gprof="no"
1119 test "${enable_cprof}" != "yes" && enable_cprof="no"
1120
1121 dnl
1122 dnl  default modules
1123 dnl
1124 ALIASES="${ALIASES} cvlc rvlc"
1125
1126 dnl
1127 dnl Some plugins aren't useful on some platforms
1128 dnl
1129 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
1130     VLC_ADD_PLUGIN([dynamicoverlay access_shm])
1131 elif test "${SYS}" != "mingwce"; then
1132     VLC_ADD_PLUGIN([access_smb dmo globalhotkeys])
1133     VLC_ADD_LIBS([dmo],[-lole32 -luuid])
1134 fi
1135 if test "${SYS}" = "darwin"; then
1136     VLC_ADD_LDFLAGS([quartztext],[-Wl,-framework,ApplicationServices])
1137 fi
1138
1139 dnl
1140 dnl  Accelerated modules
1141 dnl
1142 EXTEND_HELP_STRING([Optimization options:])
1143
1144 dnl  Check for fully working MMX intrinsics
1145 dnl  We need support for -mmmx, we need <mmintrin.h>, and we also need a
1146 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1147 AC_ARG_ENABLE(mmx,
1148 [  --disable-mmx           disable MMX optimizations (default auto)],,[
1149   case "${host_cpu}" in
1150     i?86|x86_64)
1151       enable_mmx="yes"
1152       ;;
1153     *)
1154       enable_mmx="no"
1155       ;;
1156   esac
1157 ])
1158 have_mmx="no"
1159 have_mmxext="no"
1160 AS_IF([test "${enable_mmx}" != "no"], [
1161   ARCH="${ARCH} mmx"
1162
1163   AC_CACHE_CHECK([if $CC groks MMX intrinsics],
1164     [ac_cv_c_mmx_intrinsics],
1165     [CFLAGS="${CFLAGS_save} -O -mmmx"
1166      AC_TRY_COMPILE([#include <mmintrin.h>
1167                      #include <stdint.h>
1168                      uint64_t frobzor;],
1169                     [__m64 a, b, c;
1170                      a = b = c = (__m64)frobzor;
1171                      a = _mm_slli_pi16(a, 3);
1172                      a = _mm_adds_pi16(a, b);
1173                      c = _mm_srli_pi16(c, 8);
1174                      c = _mm_slli_pi16(c, 3);
1175                      b = _mm_adds_pi16(b, c);
1176                      a = _mm_unpacklo_pi8(a, b);
1177                      frobzor = (uint64_t)a;],
1178                     [ac_cv_c_mmx_intrinsics=yes],
1179                     [ac_cv_c_mmx_intrinsics=no])])
1180   AS_IF([test "${ac_cv_c_mmx_intrinsics}" != "no"], [
1181     AC_DEFINE(HAVE_MMX_INTRINSICS, 1,
1182               [Define to 1 if MMX intrinsics are available.])
1183     MMX_CFLAGS="-mmmx"
1184   ])
1185
1186   AC_CACHE_CHECK([if $CC groks MMX inline assembly],
1187     [ac_cv_mmx_inline],
1188     [CFLAGS="${CFLAGS_save}"
1189      AC_TRY_COMPILE(,[void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p));],
1190                     ac_cv_mmx_inline=yes, ac_cv_mmx_inline=no)])
1191   AS_IF([test "${ac_cv_mmx_inline}" != "no"], [
1192     AC_DEFINE(CAN_COMPILE_MMX, 1,
1193               [Define to 1 inline MMX assembly is available.])
1194     have_mmx="yes"
1195   ])
1196
1197   AC_CACHE_CHECK([if $CC groks MMX EXT inline assembly],
1198     [ac_cv_mmxext_inline],
1199     [CFLAGS="${CFLAGS_save}"
1200      AC_TRY_COMPILE(,[void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p));],
1201                     ac_cv_mmxext_inline=yes, ac_cv_mmxext_inline=no)])
1202   AS_IF([test "${ac_cv_mmxext_inline}" != "no"], [
1203     AC_DEFINE(CAN_COMPILE_MMXEXT, 1,
1204               [Define to 1 if MMX EXT inline assembly is available.])
1205     have_mmxext="yes"
1206   ])
1207 ])
1208 AC_SUBST(MMX_CFLAGS)
1209 AM_CONDITIONAL([HAVE_MMX], [test "${have_mmx}" = "yes"])
1210 AM_CONDITIONAL([HAVE_MMXEXT], [test "${have_mmxext}" = "yes"])
1211
1212 dnl  Check for fully workin SSE2 intrinsics
1213 dnl  We need support for -mmmx, we need <emmintrin.h>, and we also need a
1214 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1215 AC_ARG_ENABLE(sse,
1216 [  --disable-sse           disable SSE (1, 2, 3 and 4) optimizations (default auto)],
1217 , [
1218   case "${host_cpu}" in
1219     i686|x86_64)
1220       enable_sse=yes
1221       ;;
1222     *)
1223       enable_sse=no
1224       ;;
1225   esac
1226 ])
1227 have_sse2="no"
1228 AS_IF([test "${enable_sse}" != "no"], [
1229   ARCH="${ARCH} sse sse2"
1230
1231   AC_CACHE_CHECK([if $CC groks SSE2 intrinsics],
1232     [ac_cv_c_sse2_intrinsics],
1233     [CFLAGS="${CFLAGS_save} -O -msse2"
1234      AC_TRY_COMPILE([#include <emmintrin.h>
1235                      #include <stdint.h>
1236                      uint64_t frobzor;],
1237                     [__m128i a, b, c;
1238                      a = b = c = _mm_set1_epi64((__m64)frobzor);
1239                      a = _mm_slli_epi16(a, 3);
1240                      a = _mm_adds_epi16(a, b);
1241                      c = _mm_srli_epi16(c, 8);
1242                      c = _mm_slli_epi16(c, 3);
1243                      b = _mm_adds_epi16(b, c);
1244                      a = _mm_unpacklo_epi8(a, b);
1245                      frobzor = (uint64_t)_mm_movepi64_pi64(a);],
1246                     [ac_cv_c_sse2_intrinsics=yes],
1247                     [ac_cv_c_sse2_intrinsics=no])])
1248   AS_IF([test "${ac_cv_c_sse2_intrinsics}" != "no"], [
1249     AC_DEFINE(HAVE_SSE2_INTRINSICS, 1,
1250               [Define to 1 if SSE2 intrinsics are available.])
1251     SSE2_CFLAGS="-msse2"
1252   ])
1253
1254   AC_CACHE_CHECK([if $CC groks SSE inline assembly],
1255     [ac_cv_sse_inline],
1256     [CFLAGS="${CFLAGS_save}"
1257      AC_TRY_COMPILE(,[void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p));],
1258                     ac_cv_sse_inline=yes, ac_cv_sse_inline=no)])
1259   AS_IF([test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"], [
1260     AC_DEFINE(CAN_COMPILE_SSE, 1,
1261               [Define to 1 if SSE inline assembly is available.])
1262   ])
1263
1264   AC_CACHE_CHECK([if $CC groks SSE2 inline assembly],
1265     [ac_cv_sse2_inline],
1266     [CFLAGS="${CFLAGS_save}"
1267      AC_TRY_COMPILE(,[void *p;asm volatile("punpckhqdq %%xmm1,%%xmm2"::"r"(p));],
1268                     ac_cv_sse2_inline=yes, ac_cv_sse2_inline=no)])
1269   AS_IF([test "${ac_cv_sse2_inline}" != "no" -a "${SYS}" != "solaris"], [
1270     AC_DEFINE(CAN_COMPILE_SSE2, 1,
1271               [Define to 1 if SSE2 inline assembly is available.])
1272     have_sse2="yes"
1273   ])
1274
1275   # SSE3
1276   AC_CACHE_CHECK([if $CC groks SSE3 inline assembly],
1277     [ac_cv_sse3_inline],
1278     [CFLAGS="${CFLAGS_save}"
1279      AC_TRY_COMPILE(,[void *p;asm volatile("movsldup %%xmm1,%%xmm0"::"r"(p));],
1280                     ac_cv_sse3_inline=yes, ac_cv_sse3_inline=no)])
1281   AS_IF([test "${ac_cv_sse3_inline}" != "no"], [
1282     AC_DEFINE(CAN_COMPILE_SSE3, 1,
1283               [Define to 1 if SSE3 inline assembly is available.]) ])
1284   # SSSE3
1285   AC_CACHE_CHECK([if $CC groks SSSE3 inline assembly],
1286     [ac_cv_ssse3_inline],
1287     [CFLAGS="${CFLAGS_save}"
1288      AC_TRY_COMPILE(,[void *p;asm volatile("pabsw %%xmm0,%%xmm0"::"r"(p));],
1289                     ac_cv_ssse3_inline=yes, ac_cv_ssse3_inline=no)])
1290   AS_IF([test "${ac_cv_ssse3_inline}" != "no"], [
1291     AC_DEFINE(CAN_COMPILE_SSSE3, 1,
1292               [Define to 1 if SSSE3 inline assembly is available.]) ])
1293
1294   # SSE4.1
1295   AC_CACHE_CHECK([if $CC groks SSE4.1 inline assembly],
1296     [ac_cv_sse4_1_inline],
1297     [CFLAGS="${CFLAGS_save}"
1298      AC_TRY_COMPILE(,[void *p;asm volatile("pmaxsb %%xmm1,%%xmm0"::"r"(p));],
1299                     ac_cv_sse4_1_inline=yes, ac_cv_sse4_1_inline=no)])
1300   AS_IF([test "${ac_cv_sse4_1_inline}" != "no"], [
1301     AC_DEFINE(CAN_COMPILE_SSE4_1, 1,
1302               [Define to 1 if SSE4_1 inline assembly is available.]) ])
1303
1304   # SSE4.2
1305   AC_CACHE_CHECK([if $CC groks SSE4.2 inline assembly],
1306     [ac_cv_sse4_2_inline],
1307     [CFLAGS="${CFLAGS_save}"
1308      AC_TRY_COMPILE(,[void *p;asm volatile("pcmpgtq %%xmm1,%%xmm0"::"r"(p));],
1309                     ac_cv_sse4_2_inline=yes, ac_cv_sse4_2_inline=no)])
1310   AS_IF([test "${ac_cv_sse4_2_inline}" != "no"], [
1311     AC_DEFINE(CAN_COMPILE_SSE4_2, 1,
1312               [Define to 1 if SSE4_2 inline assembly is available.]) ])
1313
1314   # SSE4A
1315   AC_CACHE_CHECK([if $CC groks SSE4A inline assembly],
1316     [ac_cv_sse4a_inline],
1317     [CFLAGS="${CFLAGS_save}"
1318      AC_TRY_COMPILE(,[void *p;asm volatile("insertq %%xmm1,%%xmm0"::"r"(p));],
1319                     ac_cv_sse4a_inline=yes, ac_cv_sse4a_inline=no)])
1320   AS_IF([test "${ac_cv_sse4a_inline}" != "no"], [
1321     AC_DEFINE(CAN_COMPILE_SSE4A, 1,
1322               [Define to 1 if SSE4A inline assembly is available.]) ])
1323 ])
1324 AC_SUBST(SSE2_CFLAGS)
1325 AM_CONDITIONAL([HAVE_SSE2], [test "$have_sse2" = "yes"])
1326
1327 have_3dnow="no"
1328 AC_CACHE_CHECK([if $CC groks 3D Now! inline assembly],
1329     [ac_cv_3dnow_inline],
1330     [CFLAGS="${CFLAGS_save}"
1331      AC_TRY_COMPILE(,[void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p));],
1332                     ac_cv_3dnow_inline=yes, ac_cv_3dnow_inline=no)])
1333 AS_IF([test "${ac_cv_3dnow_inline}" != "no"], [
1334   AC_DEFINE(CAN_COMPILE_3DNOW, 1,
1335             [Define to 1 if 3D Now! inline assembly is available.])
1336   have_3dnow="yes"
1337 ])
1338 AM_CONDITIONAL([HAVE_3DNOW], [test "$have_3dnow" = "yes"])
1339
1340
1341 AC_ARG_ENABLE(neon,
1342 [  --disable-neon          disable NEON optimizations (default auto)],, [
1343   AS_IF([test "${host_cpu}" = "arm"], [enable_neon="yes"] ,[enable_neon="no"])
1344 ])
1345 AS_IF([test "${enable_neon}" != "no"], [
1346   AC_CACHE_CHECK([if $CC groks NEON inline assembly], [ac_cv_neon_inline], [
1347     CFLAGS="${CFLAGS_save} -mfpu=neon"
1348     AC_COMPILE_IFELSE([
1349       AC_LANG_PROGRAM(,[[
1350 asm volatile("vqmovun.s64 d0, q1":::"d0");
1351 asm volatile("ssat r0, #1, r0":::"r0"); /* assume ARMv6 */
1352 ]])
1353     ], [
1354       ac_cv_neon_inline="-mfpu=neon"
1355     ], [
1356       ac_cv_neon_inline="no"
1357     ])
1358     CFLAGS="${CFLAGS_save}"
1359   ])
1360   ARM_NEON_CFLAGS="$ac_cv_neon_inline"
1361 ], [
1362   ac_cv_neon_inline="no"
1363 ])
1364 AC_SUBST(ARM_NEON_CFLAGS)
1365 AM_CONDITIONAL(HAVE_ARM_NEON, [test "${ac_cv_neon_inline}" != "no"])
1366
1367
1368 AC_ARG_ENABLE(altivec,
1369 [  --disable-altivec       disable AltiVec optimizations (default auto)],, [
1370   AS_IF([test "${host_cpu}" = "powerpc"],
1371         [enable_altivec=yes], [enable_altivec=no])
1372 ])
1373 have_altivec="no"
1374 AS_IF([test "${enable_altivec}" = "yes"], [
1375   ARCH="${ARCH} altivec";
1376   AC_CACHE_CHECK([if $CC groks AltiVec inline assembly],
1377     [ac_cv_altivec_inline],
1378     [CFLAGS="${CFLAGS_save}"
1379      AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1380          ac_cv_altivec_inline="yes",
1381          [CFLAGS="${CFLAGS_save} -Wa,-m7400"
1382           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1383             [ac_cv_altivec_inline="-Wa,-m7400"],
1384             ac_cv_altivec_inline=no)
1385          ])])
1386   AS_IF([test "${ac_cv_altivec_inline}" != "no"], [
1387     AC_DEFINE(CAN_COMPILE_ALTIVEC, 1,
1388               [Define to 1 if AltiVec inline assembly is available.])
1389     AS_IF([test "${ac_cv_altivec_inline}" != "yes"], [
1390       VLC_ADD_CFLAGS([idctaltivec],[${ac_cv_altivec_inline}])
1391       VLC_ADD_CFLAGS([motionaltivec],[${ac_cv_altivec_inline}])
1392       VLC_ADD_CFLAGS([memcpyaltivec],[${ac_cv_altivec_inline}])
1393       VLC_ADD_CFLAGS([i420_yuy2_altivec],[${ac_cv_altivec_inline}])
1394       VLC_ADD_CFLAGS([libvlccore],[${ac_cv_altivec_inline}])
1395     ])
1396     have_altivec="yes"
1397   ])
1398
1399 dnl The AltiVec C extensions
1400 dnl
1401 dnl There are several possible cases:
1402 dnl - OS X PPC, gcc 4.x: use -mpim-altivec -force_cpusubtype_ALL, don't
1403 dnl                      need <altivec.h>
1404 dnl - OS X PPC, gcc 3.x: need -faltivec, don't need <altivec.h>
1405 dnl - Linux PPC, gcc 3.4, 4.x: need <altivec.h> which requires -maltivec
1406 dnl - Linux PPC, gcc 3.3: need <altivec.h> and -maltivec -mabi=altivec
1407 dnl - Linux PPC, gcc 3.x: need <altivec.h> and -fvec
1408 dnl - Others: test should fail
1409   AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1410   [ac_cv_c_altivec],
1411   [# OS X/PPC test (gcc 4.x)
1412    CFLAGS="${CFLAGS_save} -mpim-altivec -force_cpusubtype_ALL"
1413    AC_TRY_COMPILE([vector unsigned char foo;],
1414      [vec_ld(0, (unsigned char *)0);],
1415      [ac_cv_c_altivec="-mpim-altivec -force_cpusubtype_ALL"],
1416      [# OS X/PPC test (gcc 3.x)
1417       CFLAGS="${CFLAGS_save} -faltivec"
1418       AC_TRY_COMPILE([vector unsigned char foo;],
1419         [vec_ld(1 * sizeof(vector float), (unsigned char *)0);],
1420         [ac_cv_c_altivec="-faltivec"],
1421         dnl Below this are the Linux tests
1422         [# Linux/PPC test (gcc 4.x)
1423          CFLAGS="${CFLAGS_save} -maltivec"
1424          AC_TRY_COMPILE([#include <altivec.h>],
1425            [vec_ld(0, (unsigned char *)0);],
1426            [ac_cv_c_altivec="-maltivec"],
1427            [# Linux/PPC test (gcc 3.3)
1428             CFLAGS="${CFLAGS_save} -maltivec -mabi=altivec"
1429             AC_TRY_COMPILE([#include <altivec.h>],
1430               [vec_ld(0, (unsigned char *)0);],
1431               [ac_cv_c_altivec=""
1432                ac_cv_c_altivec_abi="-maltivec -mabi=altivec"],
1433               [# Linux/PPC test (gcc 3.3)
1434                CFLAGS="${CFLAGS_save} -fvec"
1435                AC_TRY_COMPILE([#include <altivec.h>],
1436                  [vec_ld(0, (unsigned char *)0);],
1437                  [ac_cv_c_altivec="-fvec"],
1438                  [ac_cv_c_altivec=no])
1439               ])
1440            ])
1441         ])
1442      ])
1443    CFLAGS="${CFLAGS_save}"
1444   ])
1445   AS_IF([test "${ac_cv_c_altivec}" != "no"], [
1446     CPPFLAGS="${CPPFLAGS_save} ${ac_cv_c_altivec}"
1447   ])
1448
1449   AC_CHECK_HEADERS(altivec.h)
1450   CPPFLAGS="${CPPFLAGS_save}"
1451
1452   AS_IF([test "${ac_cv_c_altivec}" != "no"], [
1453     AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1,
1454               [Define to 1 if C AltiVec extensions are available.])
1455     VLC_ADD_CFLAGS([libvlccore],[${ac_cv_c_altivec}])
1456     VLC_ADD_CFLAGS([idctaltivec motionaltivec],[${ac_cv_c_altivec}])
1457     VLC_ADD_CFLAGS([i420_yuy2_altivec memcpyaltivec deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1458     have_altivec="yes"
1459   ])
1460
1461   AC_CACHE_CHECK([if linker needs -framework vecLib],
1462     [ac_cv_ld_altivec],
1463     [LDFLAGS="${LDFLAGS_vlc} -Wl,-framework,vecLib"
1464      AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)
1465      LDFLAGS="${LDFLAGS_save}"
1466     ])
1467   AS_IF([test "${ac_cv_ld_altivec}" != "no"], [
1468     VLC_ADD_LDFLAGS([libvlccore idctaltivec motionaltivec memcpyaltivec],[-Wl,-framework,vecLib])
1469   ])
1470 ])
1471 AM_CONDITIONAL([HAVE_ALTIVEC], [test "$have_altivec" = "yes"])
1472
1473 dnl
1474 dnl  Special arch tuning
1475 dnl
1476 AC_ARG_WITH(tuning,
1477 [  --with-tuning=ARCH      enable special tuning for an architecture
1478                           (default Pentium 2 on IA-32 and G4 on PPC)])
1479 if test -n "${with_tuning}"; then
1480     if test "${with_tuning}" != "no"; then
1481         CFLAGS_TUNING="-mtune=${with_tuning}"
1482     fi
1483 else
1484     if test "${SYS}" = "darwin" -a "${host_cpu}" = "i686"; then
1485         CFLAGS_TUNING="-march=prescott -mtune=generic"
1486     elif test "${SYS}" = "darwin" -a "${host_cpu}" = "x86_64"; then
1487         CFLAGS_TUNING="-march=core2 -mtune=core2"
1488     elif test "${host_cpu}" = "i686" -o "${host_cpu}" = "i586" -o "${host_cpu}" = "i486" -o "${host_cpu}" = "i386"; then
1489         CFLAGS_TUNING="-mtune=pentium2"
1490     elif test "${host_cpu}" = "x86_64"; then
1491         CFLAGS_TUNING="-mtune=athlon64"
1492     elif test "${host_cpu}" = "powerpc"; then
1493         CFLAGS_TUNING="-mtune=G4";
1494     fi
1495 fi
1496
1497 dnl NOTE: this can't be cached cleanly
1498 AS_IF([test "${CFLAGS_TUNING}"],
1499    [CFLAGS_save="${CFLAGS}"
1500     CFLAGS="${CFLAGS} ${CFLAGS_TUNING}"
1501
1502     AC_MSG_CHECKING([whether $CC accepts ${CFLAGS_TUNING}])
1503     AC_COMPILE_IFELSE([ ],
1504                       [tuning="yes"],
1505                       [CFLAGS_TUNING=""; tuning="no"
1506                        AS_IF([test "${with_tuning}"],
1507                              [AC_MSG_ERROR([requested tuning not supported])])])
1508
1509     AC_MSG_RESULT([$tuning])
1510     CFLAGS="${CFLAGS_save}"
1511 ])
1512
1513 dnl
1514 dnl  Memory usage
1515 dnl
1516 AC_ARG_ENABLE(optimize-memory,
1517 [  --enable-optimize-memory optimize memory usage over performance])
1518 if test "${enable_optimize_memory}" = "yes"; then
1519   AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1520 fi
1521
1522 dnl
1523 dnl  Enable/disable optimizations
1524 dnl
1525 AC_ARG_ENABLE(optimizations,
1526 [  --disable-optimizations disable compiler optimizations (default enabled)])
1527 if test "${enable_optimizations}" != "no"; then
1528    if test "${enable_optimize_memory}" = "yes"; then
1529       enable_optimizations="size"
1530    else
1531       enable_optimizations="speed"
1532    fi
1533 fi
1534
1535 dnl
1536 dnl  Debugging mode
1537 dnl
1538 AC_ARG_ENABLE(debug,
1539 [  --enable-debug          debug mode (default disabled)])
1540 test "${enable_debug}" != "yes" && enable_debug="no"
1541 AH_TEMPLATE(NDEBUG,
1542             [Define to 1 if debug code should NOT be compiled])
1543 AS_IF([test "x${enable_debug}" = "xno"], [
1544   AC_DEFINE(NDEBUG)
1545 ], [
1546   AC_CHECK_HEADERS([valgrind/valgrind.h])
1547 ])
1548
1549 dnl
1550 dnl Allow running as root (useful for people running on embedded platforms)
1551 dnl
1552 AC_ARG_ENABLE(run-as-root,
1553 [  --enable-run-as-root    allow running VLC as root (default disabled)])
1554 AS_IF([test "${enable_run_as_root}" = "yes"],[
1555     AC_DEFINE(ALLOW_RUN_AS_ROOT, 1,
1556               [Define to 1 to allow running VLC as root (uid 0).])
1557 ])
1558
1559 dnl
1560 dnl  Test coverage
1561 dnl
1562 AC_ARG_ENABLE(coverage,
1563         [  --enable-coverage       build for test coverage (default disabled)],,
1564         [enable_coverage="no"])
1565 AS_IF([test "${enable_coverage}" != "no"], [
1566         CFLAGS="-fprofile-arcs -ftest-coverage ${CFLAGS}"
1567         CXXFLAGS="-fprofile-arcs -ftest-coverage ${CXXFLAGS}"
1568         LDFLAGS="-lgcov ${LDFLAGS}"
1569         dnl ugly...
1570         CFLAGS_save="${CFLAGS}"
1571         CXXFLAGS_save="${CXXFLAGS}"
1572         LDFLAGS_save="${LDFLAGS}"
1573 ])
1574
1575 dnl
1576 dnl Stream output
1577 dnl
1578 AC_ARG_ENABLE(sout,
1579   [  --enable-sout           Stream output modules (default enabled)])
1580 AS_IF([test "${enable_sout}" != "no"], [
1581   AC_DEFINE(ENABLE_SOUT, 1, [Define to 1 for stream output support.])
1582 ])
1583 AM_CONDITIONAL(ENABLE_SOUT, [test "${enable_sout}" != "no"])
1584
1585 dnl Lua modules
1586 AC_ARG_ENABLE(lua,
1587   AS_HELP_STRING([--enable-lua],[lua playlist, metafetcher and interface
1588                   plugins (default enabled)]))
1589 if test "${enable_lua}" != "no"
1590 then
1591   PKG_CHECK_MODULES(LUA, lua5.1,
1592     [ have_lua=yes ],
1593     [
1594     AC_MSG_WARN([lua5.1 not found, trying lua >= 5.1 instead])
1595     PKG_CHECK_MODULES(LUA, lua >= 5.1,
1596       [ have_lua=yes ],
1597       [
1598         have_lua=yes
1599         AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
1600           [],
1601           [ have_lua=no ] )
1602         AC_CHECK_LIB(  lua5.1 , luaL_newstate,
1603           [LUA_LIBS="-llua5.1"],
1604           AC_CHECK_LIB( lua51 , luaL_newstate,
1605             [LUA_LIBS="-llua51"],
1606             AC_CHECK_LIB( lua , luaL_newstate,
1607               [LUA_LIBS="-llua"],
1608               [ have_lua=no
1609               ], [-lm])
1610           )
1611         )
1612       ])
1613     ])
1614   if test "x${have_lua}" = "xyes" ;  then
1615      VLC_ADD_LIBS([lua],[$LUA_LIBS])
1616      VLC_ADD_CFLAGS([lua],[$LUA_CFLAGS])
1617   else
1618       AC_MSG_ERROR([Could not find lua. Lua is needed for some interfaces (rc, telnet, http) as well as many other custom scripts. Use --disable-lua to ignore this error.])
1619   fi
1620   AC_ARG_VAR([LUAC], [LUA byte compiler])
1621   AC_PATH_PROGS(LUAC,[${LUAC} luac], [false])
1622   AS_IF([test "${LUAC}" = "false"], [
1623     AC_MSG_ERROR([Could not find the LUA byte compiler.])
1624   ])
1625 fi
1626 AM_CONDITIONAL(BUILD_LUA, [test "${have_lua}" = "yes"])
1627
1628 dnl
1629 dnl HTTP daemon
1630 dnl
1631 AC_ARG_ENABLE(httpd,
1632   [  --enable-httpd          HTTP daemon (default enabled)])
1633 if test "${enable_httpd}" != "no"
1634 then
1635   VLC_ADD_PLUGIN([oldhttp])
1636   AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP dameon support)
1637 fi
1638 AM_CONDITIONAL(BUILD_HTTPD, [test "${enable_httpd}" != "no"])
1639
1640 dnl
1641 dnl libproxy support
1642 dnl
1643 AC_ARG_ENABLE(libproxy,
1644   [  --enable-libproxy       libproxy support (default auto)])
1645 AS_IF([test "${enable_libproxy}" != "no"], [
1646   PKG_CHECK_MODULES(LIBPROXY, libproxy-1.0, [
1647     AC_DEFINE(HAVE_LIBPROXY, 1, [Define if libproxy is available])
1648     VLC_ADD_CFLAGS([access_http],[$LIBPROXY_CFLAGS])
1649     VLC_ADD_LIBS([access_http],[$LIBPROXY_LIBS])
1650   ], [
1651     AS_IF([test "x${enable_libproxy}" != "x"], [
1652       AC_MSG_ERROR([libproxy could not be found on your system])
1653     ])
1654   ])
1655 ])
1656
1657
1658 dnl
1659 dnl VideoLAN manager
1660 dnl
1661 AC_ARG_ENABLE(vlm,
1662   [  --enable-vlm            VideoLAN manager (default enabled)],,
1663   [enable_vlm="${enable_sout}"])
1664 AS_IF([test "${enable_vlm}" != "no"], [
1665   AS_IF([test "${enable_sout}" = "no"], [
1666     AC_MSG_ERROR([VLM requires the stream output. Do not use --disable-sout.])
1667   ])
1668   AC_DEFINE(ENABLE_VLM, 1, [Define if you want the VideoLAN manager support])
1669 ])
1670 AM_CONDITIONAL([ENABLE_VLM], [test "${enable_vlm}" != "no"])
1671
1672 dnl
1673 dnl Growl notification plugin
1674 dnl
1675 AC_ARG_ENABLE(growl,
1676   [  --enable-growl          growl notification plugin (default disabled)],,
1677   [enable_growl=no])
1678 AS_IF([test "${enable_growl}" != "no"], [
1679     VLC_ADD_PLUGIN([growl_udp])
1680     AC_CHECK_HEADERS(Growl/GrowlDefines.h, [
1681       VLC_ADD_PLUGIN([growl])
1682       VLC_ADD_LDFLAGS([growl], [-Wl,-framework,Growl,-framework,AppKit])
1683       VLC_ADD_OBJCFLAGS([growl], [-fobjc-exceptions] )
1684     ])
1685   ]
1686 )
1687
1688 dnl
1689 dnl Libnotify notification plugin
1690 dnl
1691 PKG_ENABLE_MODULES_VLC([NOTIFY], [], [libnotify gtk+-2.0], [libnotify notification], [auto])
1692
1693 dnl
1694 dnl Taglibplugin
1695 dnl
1696 AC_ARG_ENABLE(taglib,
1697   [  --disable-taglib        Taglib support (default enabled) ])
1698   AS_IF([test "${enable_taglib}" != "no"],[
1699     PKG_CHECK_MODULES(TAGLIB, taglib >= 1.5,
1700       [ VLC_ADD_PLUGIN([taglib])
1701         VLC_ADD_LIBS([taglib],[$TAGLIB_LIBS -lz])
1702         VLC_ADD_CXXFLAGS([taglib],[$TAGLIB_CFLAGS])
1703         AC_LANG_PUSH(C++)
1704         AC_CHECK_HEADERS(taglib/mp4coverart.h)
1705         AC_LANG_POP(C++)
1706       ],
1707       [AC_MSG_WARN(TagLib library not found)])
1708   ])
1709
1710 dnl
1711 dnl  Input plugins
1712 dnl
1713
1714 EXTEND_HELP_STRING([Input plugins:])
1715
1716 dnl  live555 input
1717 dnl
1718 AC_ARG_ENABLE(live555,
1719 [  --enable-live555        live555 RTSP input plugin (default enabled)])
1720 if test "${enable_live555}" != "no"; then
1721   AC_ARG_WITH(live555-tree,
1722     [  --with-live555-tree=PATH live.com tree for static linking])
1723
1724   dnl
1725   dnl test for --with-live555-tree
1726   dnl
1727   if test -z "${with_live555_tree}" -a "${CXX}" != ""; then
1728     AC_LANG_PUSH(C++)
1729     CPPFLAGS_save="${CPPFLAGS}"
1730     if test -z "${CONTRIB_DIR}"; then
1731         CPPFLAGS_live555="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
1732     else
1733         CPPFLAGS_live555="-I${CONTRIB_DIR}/include/liveMedia -I${CONTRIB_DIR}/include/groupsock -I${CONTRIB_DIR}/include/BasicUsageEnvironment -I${CONTRIB_DIR}/include/UsageEnvironment"
1734     fi
1735     if test "${SYS}" = "solaris"; then
1736       CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS"
1737     fi
1738     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}"
1739
1740     AC_CHECK_HEADERS(liveMedia_version.hh, [
1741       AC_MSG_CHECKING(for liveMedia version >= 1275091200 )
1742       AC_EGREP_CPP(yes,
1743         [#include <liveMedia_version.hh>
1744          #ifdef LIVEMEDIA_LIBRARY_VERSION_INT
1745          #if LIVEMEDIA_LIBRARY_VERSION_INT < 1275091200
1746          yes
1747          #endif
1748          #endif],
1749         [AC_MSG_RESULT([no])
1750           AC_MSG_WARN([The installed liveMedia version is too old:
1751 Version 2010.05.29 or later is required to proceed.
1752 You can get an updated one from http://www.live555.com/liveMedia .])
1753           AS_IF([test "${enable_live555}" == "yes"], [
1754             AC_MSG_ERROR([Update live555 or pass --disable-live555 to disable the plugin.])
1755           ])
1756         ],[
1757           AC_MSG_RESULT([yes])
1758           other_libs="-lgroupsock -lBasicUsageEnvironment -lUsageEnvironment"
1759           other_libs_pic="-lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic"
1760           if test "${SYS}" = "mingw32"; then
1761             # add ws2_32 for closesocket, select, recv
1762             other_libs="$other_libs -lws2_32"
1763           elif test "${SYS}" = "mingwce"; then
1764             # add ws2 for closesocket, select, recv
1765             other_libs="$other_libs -lws2"
1766           fi
1767
1768           dnl We need to check for pic because live555 don't provide shared libs
1769           dnl and we want to build a plugins so we need -fPIC on some arch.
1770           VLC_ADD_CXXFLAGS([live555], [${CPPFLAGS_live555}])
1771           AC_CHECK_LIB(liveMedia_pic, main, [
1772             VLC_ADD_PLUGIN([live555])
1773             VLC_ADD_LIBS([live555], [-lliveMedia_pic ${other_libs_pic}])
1774           ],[
1775             AC_CHECK_LIB(liveMedia, main, [
1776             VLC_ADD_PLUGIN([live555])
1777             VLC_ADD_LIBS([live555], [-lliveMedia ${other_libs}])
1778           ],[],[${other_libs}]) ],[${other_libs_pic}])
1779
1780           CPPFLAGS="${CPPFLAGS_save}"
1781           AC_LANG_POP(C++)
1782         ])
1783       ])
1784   else
1785     AC_MSG_CHECKING(for liveMedia/libliveMedia.a in ${with_live555_tree})
1786     real_live555_tree="`cd ${with_live555_tree} 2>/dev/null && pwd`"
1787     if test -z "${real_live555_tree}"; then
1788       dnl  The given directory can't be found
1789       AC_MSG_RESULT(no)
1790       AC_MSG_ERROR([cannot cd to ${with_live555_tree}])
1791     fi
1792     if test -f "${real_live555_tree}/liveMedia/libliveMedia.a"; then
1793       AC_MSG_RESULT(${real_live555_tree}/liveMedia/libliveMedia.a)
1794
1795       AC_CHECK_HEADERS(${real_live555_tree}/liveMedia/include/liveMedia_version.hh,[
1796         AC_MSG_CHECKING(for liveMedia version >= 1275091200 )
1797         AC_EGREP_CPP(yes,
1798           [#include "${real_live555_tree}/liveMedia/include/liveMedia_version.hh"
1799            #ifdef LIVEMEDIA_LIBRARY_VERSION_INT
1800            #if LIVEMEDIA_LIBRARY_VERSION_INT < 1275091200
1801            yes
1802            #endif
1803            #endif],
1804           [AC_MSG_RESULT([no])
1805            AC_MSG_ERROR([Your version of liveMedia is too old: you may get a more recent one from http://www.live555.com/liveMedia.
1806 lternatively you can use --disable-live555 to disable the liveMedia plugin.])
1807         ],[
1808            AC_MSG_RESULT([yes])
1809            ])
1810       ])
1811
1812       VLC_ADD_PLUGIN([live555])
1813
1814       if test "${SYS}" = "mingw32"; then
1815         # add ws2_32 for closesocket, select, recv
1816         VLC_ADD_LIBS([live555],[-lws2_32])
1817       fi
1818
1819       VLC_ADD_LIBS([live555],[-L${real_live555_tree}/UsageEnvironment -lUsageEnvironment])
1820       VLC_ADD_LIBS([live555],[-L${real_live555_tree}/BasicUsageEnvironment -lBasicUsageEnvironment])
1821       VLC_ADD_LIBS([live555],[-L${real_live555_tree}/groupsock -lgroupsock])
1822       VLC_ADD_LIBS([live555],[-L${real_live555_tree}/liveMedia -lliveMedia])
1823
1824       VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/BasicUsageEnvironment/include])
1825       VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/groupsock/include])
1826       VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/liveMedia/include])
1827       VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/UsageEnvironment/include ])
1828       if test "${SYS}" = "solaris"; then
1829         VLC_ADD_CXXFLAGS([live555],[-DSOLARIS])
1830       fi
1831     else
1832       dnl  The given live555 wasn't built
1833         AC_MSG_RESULT(no)
1834       if test "${enable_live555}" = "yes"; then
1835         AC_MSG_ERROR([cannot find ${real_live555_tree}/liveMedia/libliveMedia.a, make sure you compiled live555 in ${with_live555_tree}])
1836       fi        
1837     fi
1838   fi
1839 fi
1840
1841 dnl
1842 dnl - special access module for dc1394 input
1843 dnl - dv module: digital video module check for libraw1394
1844 dnl - linsys modules: access module check for libzvbi
1845 dnl
1846 PKG_ENABLE_MODULES_VLC([DC1394], [], [libraw1394 >= 2.0.1 libdc1394-2 >= 2.1.0], [dc1394 access module], [auto])
1847 PKG_ENABLE_MODULES_VLC([DV], [access_dv], [libraw1394 >= 2.0.1 libavc1394 >= 0.5.3], [DV input module], [auto])
1848
1849 AC_ARG_ENABLE(linsys,
1850   [  --enable-linsys         Linux Linear Systems Ltd. SDI and HD-SDI input cards (default enabled)])
1851 case "${SYS}" in
1852     linux*)
1853 if test "${enable_linsys}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
1854   VLC_ADD_PLUGIN([linsys_hdsdi])
1855   PKG_CHECK_MODULES(LINSYS_SDI, zvbi-0.2 >= 0.2.28,
1856     [ VLC_ADD_LIBS([linsys_sdi],[$LINSYS_SDI_LIBS])
1857       VLC_ADD_CFLAGS([linsys_sdi],[$LINSYS_SDI_CFLAGS])
1858       VLC_ADD_PLUGIN([linsys_sdi]) ],
1859     [AC_MSG_WARN([Couldn't find zvbi >= 0.2.28, install libzvbi-dev ?])]
1860   )
1861 fi
1862 ;;
1863 esac
1864
1865 dnl
1866 dnl dvdread module: check for libdvdread
1867 dnl
1868 dnl prepend -ldvdcss on OS that need it
1869 AS_CASE(["${SYS}"], [mingw32|darwin], [VLC_ADD_LIBS([dvdread], [-ldvdcss])])
1870 PKG_ENABLE_MODULES_VLC([DVDREAD], [], [dvdread], [dvdread input module], [auto])
1871
1872 dnl
1873 dnl libdvdnav plugin
1874 dnl
1875 AC_ARG_ENABLE(dvdnav,
1876   [  --enable-dvdnav         dvdnav input module (default enabled)])
1877 if test "${enable_dvdnav}" != "no"
1878 then
1879   dnl prepend -ldvdcss on OS that need it
1880   AS_CASE(["${SYS}"], [mingw32|darwin], [VLC_ADD_LIBS([dvdnav], [-ldvdcss])])
1881
1882   PKG_CHECK_MODULES(DVDNAV, dvdnav, [
1883     VLC_ADD_PLUGIN([dvdnav])
1884     VLC_ADD_CFLAGS([dvdnav],[${DVDNAV_CFLAGS}])
1885     VLC_ADD_LIBS([dvdnav],[${DVDNAV_LIBS}])
1886     AC_CHECK_LIB(dvdnav, dvdnav_get_video_resolution,
1887       AC_DEFINE(HAVE_DVDNAV_GET_VIDEO_RESOLUTION, 1, [Define if you have dvdnav_get_video_resolution.]),
1888         [], [${LIBS_dvdnav}])
1889     AC_CHECK_LIB(dvdnav, dvdnav_describe_title_chapters,
1890       AC_DEFINE(HAVE_DVDNAV_DESCRIBE_TITLE_CHAPTERS, 1, [Define if you have dvdnav_describe_title_chapters.]),
1891         [], [${LIBS_dvdnav}])],
1892       [AC_MSG_WARN(dvdnav library not found)])
1893 fi
1894
1895 dnl
1896 dnl  Windows DirectShow access module
1897 dnl
1898 AC_ARG_ENABLE(dshow,
1899   [  --enable-dshow          Win32 DirectShow support (default enabled on Win32)])
1900 if test "${enable_dshow}" != "no"
1901 then
1902   if test "${SYS}" = "mingw32"
1903   then
1904     AC_LANG_PUSH(C++)
1905       AC_CHECK_HEADERS(dshow.h,
1906       [ VLC_ADD_PLUGIN([dshow])
1907         VLC_ADD_CXXFLAGS([dshow],[])
1908         VLC_ADD_LIBS([dshow],[-lole32 -loleaut32 -luuid]) ])
1909     AC_LANG_POP(C++)
1910   fi
1911 fi
1912
1913 dnl
1914 dnl  Windows DirectShow BDA access module
1915 dnl
1916 AC_ARG_ENABLE(bda,
1917   AS_HELP_STRING([--enable-bda],[Win32 DirectShow BDA support (default
1918                   enabled on Win32)]))
1919 if test "${enable_bda}" != "no"
1920 then
1921   if test "${SYS}" = "mingw32"
1922   then
1923       AC_CHECK_HEADERS(dshow.h,
1924       [ VLC_ADD_PLUGIN([bda])
1925         VLC_ADD_CXXFLAGS([bda],[])
1926         VLC_ADD_LIBS([bda],[-lstrmiids -lole32 -loleaut32 -luuid]) ])
1927   fi
1928 fi
1929
1930
1931 dnl
1932 dnl  Blu-ray Disc Support with libbluray
1933 dnl
1934 PKG_ENABLE_MODULES_VLC([BLURAY], [libbluray], [libbluray >= 0.2 ], (libbluray for Blu-ray disc support ) )
1935
1936 dnl
1937 dnl  OpenCV wrapper and example filters
1938 dnl
1939 PKG_ENABLE_MODULES_VLC([OPENCV], [opencv_example], [opencv], (OpenCV (computer vision) filter), [off])
1940
1941
1942 dnl
1943 dnl  libsmbclient plugin
1944 dnl
1945 AC_ARG_ENABLE(smb,
1946   [  --enable-smb            smb input module (default enabled)])
1947 if test "${enable_smb}" != "no"; then
1948   AC_CHECK_HEADERS(libsmbclient.h,
1949     [ VLC_ADD_PLUGIN([access_smb])
1950       VLC_ADD_LIBS([access_smb],[-lsmbclient]) ],
1951     [ if test -n "${enable_smb}"; then
1952         AC_MSG_ERROR([cannot find libsmbclient headers])
1953      fi ])
1954 fi
1955
1956
1957 dnl
1958 dnl sftp access support
1959 dnl
1960 AC_ARG_ENABLE(sftp,
1961   [  --enable-sftp           sftp input access module (default disable)])
1962 if test "${enable_sftp}" = "yes"; then
1963   AC_CHECK_HEADERS(libssh2.h, [
1964     VLC_ADD_PLUGIN([access_sftp])
1965     VLC_ADD_LIBS([access_sftp], [-lssh2])
1966   ])
1967 fi
1968
1969 dnl
1970 dnl  libdvbpsi ts demux/mux
1971 dnl
1972 AC_ARG_ENABLE(dvbpsi,
1973   [  --enable-dvbpsi         dvbpsi ts mux and demux module (default enabled)])
1974 have_dvbpsi=no
1975 if test "${enable_dvbpsi}" != "no"
1976 then
1977   AC_ARG_WITH(dvbpsi,
1978   [  --with-dvbpsi=PATH      libdvbpsi headers and libraries])
1979   AC_ARG_WITH(dvbpsi,
1980   [  --with-dvbpsi-tree=PATH libdvbpsi tree for static linking])
1981   case "${with_dvbpsi}" in
1982   ""|yes)
1983     if test -z "${with_dvbpsi_tree}"
1984     then
1985       AC_CHECK_HEADERS(dvbpsi/dr.h,
1986         [ VLC_ADD_PLUGIN([ts])
1987           if test "${enable_sout}" != "no"; then
1988             VLC_ADD_PLUGIN([mux_ts])
1989           fi
1990           VLC_ADD_LIBS([mux_ts ts dvb],[-ldvbpsi])
1991           have_dvbpsi=yes],
1992         [  AC_MSG_WARN([cannot find libdvbpsi headers]) ],
1993         [#if defined( HAVE_STDINT_H )
1994 #   include <stdint.h>
1995 #elif defined( HAVE_INTTYPES_H )
1996 #   include <inttypes.h>
1997 #endif
1998 #include <dvbpsi/dvbpsi.h>
1999 #include <dvbpsi/descriptor.h>
2000 #include <dvbpsi/pat.h>
2001 #include <dvbpsi/pmt.h>])
2002     else
2003       AC_MSG_CHECKING(for libdvbpsi.a in ${with_dvbpsi_tree})
2004       real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
2005       if test -z "${real_dvbpsi_tree}"
2006       then
2007         dnl  The given directory can't be found
2008         AC_MSG_RESULT(no)
2009         AC_MSG_ERROR([cannot cd to ${with_dvbpsi_tree}])
2010       fi
2011       if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
2012       then
2013         dnl  Use a custom libdvbpsi
2014         AC_MSG_RESULT(${real_dvbpsi_tree}/src/.libs/libdvbpsi.a)
2015         VLC_ADD_PLUGIN([ts])
2016         if test "${enable_sout}" != "no"; then
2017           VLC_ADD_PLUGIN([mux_ts])
2018         fi
2019         VLC_ADD_CPPFLAGS([mux_ts ts dvb],[-I${real_dvbpsi_tree}/src])
2020         VLC_ADD_LIBS([mux_ts ts dvb],[${real_dvbpsi_tree}/src/.libs/libdvbpsi.a])
2021         have_dvbpsi=yes
2022       else
2023         dnl  The given libdvbpsi wasn't built
2024         AC_MSG_RESULT(no)
2025         AC_MSG_ERROR([cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}])
2026       fi
2027     fi
2028   ;;
2029   no)
2030     dnl  Compile without dvbpsi
2031   ;;
2032   *)
2033     AC_MSG_CHECKING(for dvbpsi headers in ${with_dvbpsi})
2034     if test -z "${with_dvbpsi}"
2035     then
2036       LDFLAGS_test=""
2037       CPPFLAGS_test=""
2038     else
2039       LDFLAGS_test="-L${with_dvbpsi}/lib"
2040       CPPFLAGS_test="-I${with_dvbpsi}/include"
2041     fi
2042     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}"
2043     AC_CHECK_HEADERS([dvbpsi/dr.h],[
2044       VLC_ADD_PLUGIN([ts])
2045       if test "${enable_sout}" != "no"; then
2046         AC_CHECK_LIB(dvbpsi, dvbpsi_SDTServiceAddDescriptor,
2047            [VLC_ADD_PLUGIN([mux_ts])], [], [${LDFLAGS_test} -ldvbpsi])
2048       fi
2049       VLC_ADD_CPPFLAGS([mux_ts ts dvb],[${CPPFLAGS_test}])
2050       VLC_ADD_LIBS([mux_ts ts dvb],[${LDFLAGS_test} -ldvbpsi])
2051       have_dvbpsi=yes
2052     ],[
2053       if test -n "${enable_dvbpsi}"
2054       then
2055         AC_MSG_ERROR([Could not find libdvbpsi on your system: you may get it from www.videolan.org, you'll need at least version 0.1.6])
2056       fi
2057     ],
2058     [#if defined( HAVE_STDINT_H )
2059 #   include <stdint.h>
2060 #elif defined( HAVE_INTTYPES_H )
2061 #   include <inttypes.h>
2062 #endif
2063 #include <dvbpsi/dvbpsi.h>
2064 #include <dvbpsi/descriptor.h>
2065 #include <dvbpsi/pat.h>
2066 #include <dvbpsi/pmt.h>])
2067     CPPFLAGS="${CPPFLAGS_save}"
2068   ;;
2069   esac
2070   AC_CHECK_LIB(dvbpsi, dvbpsi_GenSDTSections, [
2071     AC_DEFINE(HAVE_DVBPSI_SDT, 1, [Define if you have dvbpsi_GenSDTSections.])
2072   ], [], [${LIBS_ts}])
2073
2074 fi
2075
2076 dnl
2077 dnl  Video4Linux2 plugin
2078 dnl
2079 AC_ARG_ENABLE(v4l2,
2080   [  --enable-v4l2           Video4Linux2 input support (default enabled)])
2081 if test "${enable_v4l2}" != "no"
2082 then
2083   AC_ARG_WITH(v4l2,
2084     [  --with-v4l2=PATH        path to a v4l2-enabled kernel tree],[],[])
2085   if test "${with_v4l2}" != "no" -a -n "${with_v4l2}"
2086   then
2087     VLC_ADD_CPPFLAGS([v4l2],[-I${with_v4l2}/include])
2088   fi
2089
2090   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l2}"
2091   AC_CHECK_HEADERS(linux/videodev2.h sys/videoio.h, [
2092     VLC_ADD_PLUGIN([v4l2])
2093   ],[])
2094   CPPFLAGS="${CPPFLAGS_save}"
2095 fi
2096
2097 dnl
2098 dnl libv4l2 support for video4linux.
2099 dnl
2100 AC_ARG_ENABLE( libv4l2,
2101   [  --enable-libv4l2        Libv4l2 Video4Linux2 support (default enabled)])
2102 if test "${enable_libv4l2}" != "no" -a "${enable_v4l2}" != "no"
2103 then
2104     PKG_CHECK_MODULES( LIBV4L2, libv4l2, [
2105       VLC_ADD_LDFLAGS([v4l2],[${LIBV4L2_LIBS}])
2106       VLC_ADD_CFLAGS([v4l2],[${LIBV4L2_CFLAGS}])
2107       AC_DEFINE(HAVE_LIBV4L2, 1, Define if libv4l2 is available)],
2108       AC_MSG_WARN([LibV4L2 support disabled because libv4l2 development headers were not found])
2109     )
2110 fi
2111
2112 dnl
2113 dnl  special access module for Hauppauge PVR cards
2114 dnl
2115 AC_ARG_ENABLE(pvr,
2116   [  --enable-pvr            PVR cards access module (default disabled)])
2117 if test "${enable_pvr}" = "yes"
2118 then
2119   VLC_ADD_PLUGIN([pvr])
2120 fi
2121
2122 dnl
2123 dnl special access module for Blackmagic SDI cards
2124 dnl
2125 AC_ARG_ENABLE(decklink,
2126   [  --enable-decklink       Blackmagic DeckLink SDI access module (default enabled)])
2127 if test "${enable_decklink}" != "no"
2128 then
2129   AC_ARG_WITH(decklink_sdk,
2130     [  --with-decklink-sdk=DIR      Location of Blackmagic DeckLink SDI SDK],[],[])
2131   if test "${with_decklink_sdk}" != "no" -a -n "${with_decklink_sdk}"
2132   then
2133     VLC_ADD_CPPFLAGS([decklink],[-I${with_decklink_sdk}/include])
2134   fi
2135   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_decklink}"
2136   AC_LANG_PUSH(C++)
2137   AC_CHECK_HEADERS(DeckLinkAPIDispatch.cpp, [
2138     VLC_ADD_PLUGIN([decklink])
2139   ],[AC_MSG_WARN(Blackmagic DeckLink SDI include files not found, decklink disabled)])
2140   AC_LANG_POP(C++)
2141   CPPFLAGS="${CPPFLAGS_save}"
2142 fi
2143
2144
2145 dnl
2146 dnl  gnomeVFS access module
2147 dnl
2148 PKG_ENABLE_MODULES_VLC([GNOMEVFS], [access_gnomevfs], [gnome-vfs-2.0], [GnomeVFS access module], [auto])
2149
2150 dnl
2151 dnl  VCDX modules
2152 dnl
2153 AC_ARG_ENABLE(vcdx,
2154   [  --enable-vcdx           VCD with navigation via libvcdinfo (default disabled)])
2155
2156 if test "${enable_vcdx}" = "yes"
2157 then
2158         PKG_CHECK_MODULES(LIBCDIO, [libcdio >= 0.78.2 libiso9660 >= 0.72],
2159           [VLC_ADD_LIBS([vcdx],[$LIBCDIO_LIBS])
2160                  VLC_ADD_CFLAGS([vcdx],[$LIBCDIO_CFLAGS])],
2161                 [AC_MSG_ERROR([vcdx plugin requires libcdio >= 0.78.2 and libiso9660 >= 0.72])])
2162         PKG_CHECK_MODULES(LIBVCDINFO, libvcdinfo >= 0.7.22,
2163                 [VLC_ADD_LIBS([vcdx],[$LIBVCDINFO_LIBS])
2164                  VLC_ADD_CFLAGS([vcdx],[$LIBVCDINFO_CFLAGS])],
2165           [AC_MSG_ERROR([vcdx plugin requires libvcdinfo library >= 0.7.22])])
2166         VLC_ADD_PLUGIN([vcdx])
2167 fi
2168
2169 dnl
2170 dnl  Built-in CD-DA and VCD module
2171 dnl
2172 AC_ARG_ENABLE(vcd,
2173   [  --enable-vcd            built-in VCD and CD-DA (default enabled)])
2174
2175 AC_ARG_ENABLE(libcddb,
2176   [  --enable-libcddb        CDDB support for libcdio audio CD (default enabled)])
2177
2178 if test "${enable_vcd}" != "no"
2179 then
2180   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
2181   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
2182     AC_MSG_RESULT(yes)
2183     VLC_ADD_PLUGIN([vcd cdda])
2184   ],[
2185     AC_MSG_RESULT(no)
2186   ])
2187
2188   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
2189   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
2190     AC_MSG_RESULT(yes)
2191     VLC_ADD_PLUGIN([vcd cdda])
2192     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
2193   ],[
2194     AC_MSG_RESULT(no)
2195   ])
2196
2197   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
2198   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
2199     AC_MSG_RESULT(yes)
2200     VLC_ADD_PLUGIN([vcd cdda])
2201     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
2202   ],[
2203     AC_MSG_RESULT(no)
2204   ])
2205
2206   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32"
2207   then
2208     VLC_ADD_PLUGIN([vcd cdda])
2209   fi
2210
2211   if test "${SYS}" = "darwin"
2212   then
2213     VLC_ADD_PLUGIN([vcd cdda])
2214     VLC_ADD_LDFLAGS([vcd vcdx cdda],[-Wl,-framework,IOKit,-framework,CoreFoundation])
2215     VLC_ADD_LIBS([vcdx cdda],[-liconv])
2216   fi
2217
2218   if test "$enable_libcddb" != "no"; then
2219     PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.5, [
2220       HAVE_LIBCDDB=yes
2221       AC_DEFINE(HAVE_LIBCDDB, 1, [Define this if you have libcddb installed])
2222       VLC_ADD_LIBS([cdda],[$LIBCDDB_LIBS])
2223       VLC_ADD_CFLAGS([cdda],[$LIBCDDB_CFLAGS])
2224       ],:
2225       [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled)
2226       HAVE_LIBCDDB=no])
2227   fi
2228 fi
2229
2230 dnl
2231 dnl  DVB-S/DVB-T/DVB-C satellite/teresterial/cable input using v4l2
2232 dnl
2233 AC_ARG_ENABLE(dvb,
2234   [  --enable-dvb            DVB-S/T/C card support (default enabled)])
2235
2236 if test "${enable_dvb}" != "no"
2237 then
2238     AS_IF([test "${have_dvbpsi}" = "yes" ],[
2239     AC_ARG_WITH(dvb,
2240      [  --with-dvb=PATH         path to a dvb- and v4l2-enabled kernel tree],[],[])
2241      if test "${with_dvb}" != "no" -a -n "${with_dvb}"
2242      then
2243        VLC_ADD_CFLAGS([dvb],[-I${with_dvb}/include])
2244      fi
2245      CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include"
2246      AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [
2247      VLC_ADD_PLUGIN([dvb])
2248      ],[AC_MSG_WARN(linux-dvb headers not found, dvb disabled)])
2249      CPPFLAGS="${CPPFLAGS_save}"
2250    ],[
2251      AC_MSG_WARN([the dvb access module requires libdvbpsi])
2252     ])
2253 fi
2254
2255 dnl
2256 dnl  Screen capture module
2257 dnl
2258 AC_ARG_ENABLE(screen,
2259   [  --enable-screen         Screen capture support (default enabled)])
2260 if test "${enable_screen}" != "no"; then
2261   if test "${SYS}" = "darwin"; then
2262     AC_CHECK_HEADERS(OpenGL/gl.h, [
2263       AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
2264         VLC_ADD_PLUGIN([screen])
2265         VLC_ADD_LDFLAGS([screen],[-Wl,-framework,OpenGL,-framework,ApplicationServices])
2266       ])
2267     ])
2268   elif test "${SYS}" = "mingw32"; then
2269     VLC_ADD_PLUGIN([screen])
2270     VLC_ADD_LIBS([screen],[-lgdi32])
2271   elif test "${SYS}" = "mingwce"; then
2272     CPPFLAGS="${CPPFLAGS_save}"
2273   fi
2274 fi
2275
2276 dnl
2277 dnl  ipv6 plugin
2278 dnl
2279 have_ipv6=no
2280 AC_CHECK_FUNCS(inet_pton,[have_ipv6=yes],[
2281   AC_CHECK_LIB(nsl,inet_pton, [have_ipv6=yes])
2282 ])
2283
2284 AS_IF([test "${have_ipv6}" = "yes"], [
2285   AC_DEFINE(HAVE_INET_PTON, 1, [Define to 1 if you have inet_pton().])])
2286
2287
2288 AC_CHECK_FUNCS(inet_ntop,[
2289   AC_DEFINE(HAVE_INET_NTOP, 1, [Define to 1 if you have inet_ntop().])])
2290
2291
2292 dnl
2293 dnl  GME demux plugin
2294 dnl
2295 AC_ARG_ENABLE(gme,
2296   [  --enable-gme            Game Music Emu support (default auto)])
2297 AS_IF([test "${enable_gme}" != "no"], [
2298   AC_CHECK_HEADER([gme/gme.h], [
2299     VLC_ADD_LIBS([gme], [-lgme])
2300     VLC_ADD_PLUGIN([gme])
2301   ], [
2302     AS_IF([test "x${enable_gme}" != "x"], [
2303       AC_MSG_ERROR([GME cannot be found. Please install the development files.])
2304     ])
2305   ])
2306 ])
2307
2308
2309 dnl
2310 dnl  SIDPlay plugin
2311 dnl
2312 PKG_ENABLE_MODULES_VLC([SID], [], [libsidplay2], [C64 sid demux support], [auto], [], [-lresid-builder])
2313
2314
2315 dnl
2316 dnl  ogg demux plugin
2317 dnl
2318 PKG_ENABLE_MODULES_VLC([OGG], [], [ogg >= 1.0], [Ogg demux support], [auto])
2319 if test "${enable_sout}" != "no"; then
2320     PKG_ENABLE_MODULES_VLC([MUX_OGG], [], [ogg >= 1.0], [Ogg mux support], [auto])
2321 fi
2322
2323 if test "${enable_sout}" != "no"; then
2324 dnl Check for libshout
2325 PKG_ENABLE_MODULES_VLC([SHOUT], [access_output_shout], [shout >= 2.1], [libshout output plugin], [auto])
2326 fi
2327
2328 dnl
2329 dnl  matroska demux plugin
2330 dnl
2331 AC_ARG_ENABLE(mkv,
2332   [  --enable-mkv            Matroska demux support (default enabled)])
2333 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
2334   AC_LANG_PUSH(C++)
2335   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
2336     AC_MSG_CHECKING(for libebml version >= 1.0.0)
2337     AC_EGREP_CPP(yes,
2338       [#include <ebml/EbmlVersion.h>
2339        #ifdef LIBEBML_VERSION
2340        #if LIBEBML_VERSION >= 0x010000
2341        yes
2342        #endif
2343        #endif],
2344       [AC_MSG_RESULT([yes])
2345         AC_CHECK_HEADERS(matroska/KaxVersion.h, [
2346           AC_MSG_CHECKING(for libmatroska version >= 1.0.0)
2347           AC_EGREP_CPP(yes,
2348             [#include <matroska/KaxVersion.h>
2349              #ifdef LIBMATROSKA_VERSION
2350              #if LIBMATROSKA_VERSION >= 0x010000
2351              yes
2352              #endif
2353              #endif],
2354             [AC_MSG_RESULT([yes])
2355               AC_CHECK_HEADERS(matroska/KaxAttachments.h)
2356               VLC_ADD_CXXFLAGS([mkv],[])
2357               if test "${SYS}" = "darwin"; then
2358                 VLC_ADD_CXXFLAGS([mkv],[-O1])
2359               fi
2360               AC_CHECK_LIB(ebml_pic, main, [
2361                 VLC_ADD_PLUGIN([mkv])
2362                 VLC_ADD_LIBS([mkv],[-lmatroska -lebml_pic])
2363               ],[
2364                 AC_CHECK_LIB(ebml, main, [
2365                   VLC_ADD_PLUGIN([mkv])
2366                   VLC_ADD_LIBS([mkv],[-lmatroska -lebml])
2367                 ])
2368               ])
2369             ], [
2370               AC_MSG_RESULT([no])
2371               AC_MSG_ERROR([Your libmatroska is too old: you may get a more recent one from http://dl.matroska.org/downloads/libmatroska/. Alternatively you can use --disable-mkv to disable the matroska plugin.])
2372           ])
2373         ])
2374       ],
2375       [AC_MSG_RESULT([no])
2376         AC_MSG_ERROR([Your libebml is too old: you may get a more recent one from http://dl.matroska.org/downloads/libebml/. Alternatively you can use --disable-mkv to disable the matroska plugin.])
2377     ])
2378   ])
2379   AC_LANG_POP(C++)
2380 fi
2381
2382 dnl
2383 dnl  modplug demux plugin
2384 dnl
2385 AC_ARG_ENABLE(mod,
2386   [  --enable-mod            Mod demux support (default auto)])
2387 if test "${enable_mod}" != "no" ; then
2388     PKG_CHECK_MODULES(LIBMODPLUG, [libmodplug >= 0.8.4 libmodplug != 0.8.8], [
2389           VLC_ADD_PLUGIN([mod])
2390           VLC_ADD_CXXFLAGS([mod],[$LIBMODPLUG_CFLAGS])
2391           VLC_ADD_LIBS([mod],[$LIBMODPLUG_LIBS])
2392     ],[
2393        AS_IF([test x"${enable_mod}" = "xyes"],
2394          [AC_MSG_ERROR(libmodplug not found or a broken version (0.8.8.0) was found!)],
2395          [AC_MSG_WARN(libmodplug not found or a broken version (0.8.8.0) was found!)])
2396     ])
2397 fi
2398
2399 dnl
2400 dnl  mpc demux plugin
2401 dnl
2402 AC_ARG_ENABLE(mpc,
2403   [  --enable-mpc            Mpc demux support (default enabled)])
2404 if test "${enable_mpc}" != "no"
2405 then
2406   AC_CHECK_HEADERS([mpc/mpcdec.h], [
2407     VLC_ADD_PLUGIN([mpc])
2408     VLC_ADD_LIBS([mpc],[-lmpcdec])],
2409     [AC_CHECK_HEADERS([mpcdec/mpcdec.h], [
2410     VLC_ADD_PLUGIN([mpc])
2411     VLC_ADD_LIBS([mpc],[-lmpcdec])])])
2412 fi
2413
2414 dnl
2415 dnl  Codec plugins
2416 dnl
2417
2418 EXTEND_HELP_STRING([Codec plugins:])
2419
2420 dnl
2421 dnl wmafixed plugin
2422 dnl
2423 AC_ARG_ENABLE(wma-fixed,
2424   [  --enable-wma-fixed      libwma-fixed module (default disabled)])
2425 if test "${enable_wma_fixed}" = "yes"
2426 then
2427   VLC_ADD_PLUGIN([wma_fixed])
2428 fi
2429
2430 dnl
2431 dnl shine fixed point mp3 encoder
2432 dnl
2433 AC_ARG_ENABLE(shine,
2434   [  --enable-shine          shine mp3 encoding module (default disabled)])
2435 if test "${enable_shine}" = "yes"
2436 then
2437   VLC_ADD_PLUGIN([shine])
2438 fi
2439
2440 dnl
2441 dnl openmax il codec plugin
2442 dnl
2443 AC_ARG_ENABLE(omxil,
2444   [  --enable-omxil          openmax il codec module (default disabled)])
2445 if test "${enable_omxil}" = "yes"
2446 then
2447   VLC_ADD_PLUGIN([omxil])
2448   VLC_ADD_LIBS([omxil], [$LIBDL])
2449 fi
2450
2451 dnl
2452 dnl CrystalHD codec plugin
2453 dnl
2454 AC_ARG_ENABLE(crystalhd,
2455   [  --enable-crystalhd       crystalhd codec plugin (default disabled)])
2456 if test "${enable_crystalhd}" == "yes"; then
2457     AC_CHECK_HEADERS(libcrystalhd/libcrystalhd_if.h, [
2458       VLC_ADD_PLUGIN([crystalhd])
2459       VLC_ADD_LIBS([crystalhd], [-lcrystalhd])
2460     ],[
2461       if test "${SYS}" = "mingw32" ; then
2462         AC_CHECK_HEADERS(libcrystalhd/bc_dts_defs.h, [
2463           VLC_ADD_PLUGIN([crystalhd])
2464           AC_CHECK_HEADERS(libcrystalhd/bc_drv_if.h, [
2465             VLC_ADD_LIBS([crystalhd], [-lbcmDIL])
2466             ])
2467         ],[
2468           AC_MSG_ERROR("Could not find CrystalHD development headers")
2469         ])
2470       fi
2471     ])
2472 fi
2473
2474 dnl
2475 dnl  mad plugin
2476 dnl
2477 AC_ARG_ENABLE(mad,
2478   [  --enable-mad            libmad module (default enabled)])
2479 if test "${enable_mad}" != "no"
2480 then
2481   AC_ARG_WITH(mad,
2482     [  --with-mad=PATH         path to libmad],[],[])
2483   if test "${with_mad}" != "no" -a -n "${with_mad}"
2484   then
2485     VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
2486     VLC_ADD_LIBS([mpgatofixed32],[-L${with_mad}/lib])
2487   fi
2488
2489   AC_ARG_WITH(mad-tree,
2490     [  --with-mad-tree=PATH    mad tree for static linking],[],[])
2491   if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
2492   then
2493     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
2494     if test -z "${real_mad_tree}"
2495     then
2496       dnl  The given directory can't be found
2497       AC_MSG_RESULT(no)
2498       AC_MSG_ERROR([${with_mad_tree} directory doesn't exist])
2499     fi
2500     dnl  Use a custom libmad
2501     AC_MSG_CHECKING(for mad.h in ${real_mad_tree})
2502     if test -f ${real_mad_tree}/mad.h
2503     then
2504       AC_MSG_RESULT(yes)
2505       VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}])
2506       VLC_ADD_LIBS([mpgatofixed32],[-L${real_mad_tree}/.libs])
2507       LDFLAGS="${LDFLAGS_save} ${LIBS_mpgatofixed32}"
2508       AC_CHECK_LIB(mad, mad_bit_init, [
2509         VLC_ADD_PLUGIN([mpgatofixed32])
2510         VLC_ADD_LIBS([mpgatofixed32],[-lmad])
2511         ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ])
2512       ],[])
2513       LDFLAGS="${LDFLAGS_save}"
2514     else
2515       AC_MSG_RESULT(no)
2516       AC_MSG_ERROR([the specified tree doesn't have mad.h])
2517     fi
2518   else
2519     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}"
2520     LDFLAGS="${LDFLAGS_save} ${LIBS_mpgatofixed32}"
2521     AC_CHECK_HEADERS(mad.h, ,
2522       [ AC_MSG_ERROR([Could not find libmad on your system: you may get it from http://www.underbit.com/products/mad/. Alternatively you can use --disable-mad to disable the mad plugin.]) ])
2523     AC_CHECK_LIB(mad, mad_bit_init, [
2524       VLC_ADD_PLUGIN([mpgatofixed32])
2525       VLC_ADD_LIBS([mpgatofixed32],[-lmad])],
2526       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
2527     CPPFLAGS="${CPPFLAGS_save}"
2528     LDFLAGS="${LDFLAGS_save}"
2529   fi
2530 fi
2531
2532
2533 AC_ARG_ENABLE(merge-ffmpeg,
2534 [  --enable-merge-ffmpeg   merge FFmpeg-based plugins (default disabled)],, [
2535   enable_merge_ffmpeg="no"
2536 ])
2537 AM_CONDITIONAL([MERGE_FFMPEG], [test "$enable_merge_ffmpeg" != "no"])
2538
2539 AC_CACHE_CHECK([if linker supports -Bsymbolic],
2540   [ac_cv_ld_bsymbolic],
2541   [LDFLAGS="${LDFLAGS_vlc} -Wl,-Bsymbolic"
2542     AC_TRY_LINK([],,ac_cv_ld_bsymbolic=yes,ac_cv_ld_bsymbolic=no)
2543     LDFLAGS="${LDFLAGS_save}"
2544   ])
2545
2546 dnl
2547 dnl  avcodec decoder/encoder plugin
2548 dnl
2549 AC_ARG_ENABLE(avcodec,
2550 [  --enable-avcodec        libavcodec codec (default enabled)])
2551 AS_IF([test "${enable_avcodec}" != "no"], [
2552   PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 52.25.0 libavutil],
2553     [
2554       VLC_SAVE_FLAGS
2555       CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2556       CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2557       AC_CHECK_HEADERS(libavcodec/avcodec.h ffmpeg/avcodec.h)
2558       AC_CHECK_HEADERS(libavutil/avutil.h ffmpeg/avutil.h)
2559       VLC_ADD_PLUGIN([avcodec])
2560       VLC_ADD_LIBS([avcodec],[$AVCODEC_LIBS])
2561       AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2562         VLC_ADD_LDFLAGS([avcodec],[-Wl,-Bsymbolic])
2563       ])
2564       VLC_ADD_CFLAGS([avcodec],[$AVCODEC_CFLAGS])
2565       VLC_RESTORE_FLAGS
2566       have_avcodec="yes"
2567     ],[
2568       AC_MSG_ERROR([Could not find libavcodec or libavutil. Use --disable-avcodec to ignore this error.])
2569   ])
2570 ], [
2571   have_avcodec="no"
2572 ])
2573
2574 dnl
2575 dnl libva needs avcodec
2576 dnl
2577 AC_ARG_ENABLE(libva,
2578   [  --enable-libva          libva VAAPI support (default auto)])
2579
2580 AS_IF([test "${enable_libva}" != "no"], [
2581   AS_IF([test "x${have_avcodec}" = "xyes"], [
2582     PKG_CHECK_MODULES(LIBVA, [libva libva-x11],
2583       [
2584         VLC_SAVE_FLAGS
2585         CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2586         CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2587         AC_CHECK_HEADERS(libavcodec/vaapi.h, [
2588            VLC_ADD_LIBS([avcodec],[$LIBVA_LIBS ${X_LIBS} ${X_PRE_LIBS} -lX11])
2589            VLC_ADD_CFLAGS([avcodec],[$LIBVA_CFLAGS ${X_CFLAGS}])
2590            AC_DEFINE(HAVE_AVCODEC_VAAPI, 1, [Define if avcodec has to be built with VAAPI support.])
2591            echo "VAAPI acceleration activated"
2592         ],[
2593         AS_IF([test "${enable_libva}" == "yes"],
2594               [AC_MSG_ERROR([libva is present but libavcodec/vaapi.h is missing])],
2595               [AC_MSG_WARN([libva is present but libavcodec/vaapi.h is missing ])])
2596         ])
2597         VLC_RESTORE_FLAGS
2598       ],[
2599         AS_IF([test "${enable_libva}" == "yes"],
2600               [AC_MSG_ERROR([Could not find required libva.])],
2601               [AC_MSG_WARN([libva not found  ])])
2602       ])
2603   ],[
2604     AS_IF([test "x${enable_libva}" != "x"], [
2605       AC_MSG_ERROR([--enable-libva and --disable-avcodec options are mutually exclusive.])
2606     ])
2607   ])
2608 ])
2609
2610 dnl
2611 dnl dxva2 needs avcodec
2612 dnl
2613 AC_ARG_ENABLE(dxva2,
2614   [  --enable-dxva2          DxVA2  support (default auto)])
2615
2616 AS_IF([test "${enable_dxva2}" != "no"], [
2617   if test "${SYS}" = "mingw32"; then
2618   AS_IF([test "x${have_avcodec}" = "xyes"], [
2619     AC_CHECK_HEADERS(dxva2api.h, 
2620       [
2621         AC_CHECK_HEADERS(libavcodec/dxva2.h, [
2622            VLC_ADD_LIBS([avcodec],[-lole32 -lshlwapi -luuid])
2623            AC_DEFINE(HAVE_AVCODEC_DXVA2, 1, [Define if avcodec has to be built with DxVA2 support.])
2624            echo "DxVA2 acceleration activated"
2625         ],[
2626         AS_IF([test "${enable_dxva2}" == "yes"],
2627               [AC_MSG_ERROR([dxva2 is present but libavcodec/dxva2.h is missing])],
2628               [AC_MSG_WARN([dxva2 is present but libavcodec/dxva2.h is missing ])])
2629         ])
2630       ],[
2631         AS_IF([test "${enable_dxva2}" == "yes"],
2632               [AC_MSG_ERROR([Could not find required dxva2api.h])],
2633               [AC_MSG_WARN([dxva2api.h not found])])
2634       ])
2635   ],[
2636     AS_IF([test "x${enable_dxva2}" != "x"], [
2637       AC_MSG_ERROR([--enable-dxva2 and --disable-avcodec options are mutually exclusive.])
2638     ])
2639   ])
2640   fi
2641 ])
2642
2643
2644 dnl
2645 dnl stream_out switcher needs libavcodec
2646 dnl
2647 AC_ARG_ENABLE(switcher,
2648   [  --enable-switcher       Stream-out switcher plugin (default disabled)])
2649 AS_IF([test "${enable_switcher}" = "yes"], [
2650   AS_IF([test "x${have_avcodec}" = "xyes"], [
2651     VLC_ADD_PLUGIN([stream_out_switcher])
2652     VLC_ADD_LIBS([stream_out_switcher],[$AVCODEC_LIBS $AVUTIL_LIBS])
2653     VLC_ADD_CFLAGS([stream_out_switcher],[$AVCODEC_CFLAGS $AVUTIL_CFLAGS])
2654   ],[AC_MSG_ERROR([Stream_out switcher depends on avcodec])
2655   ])
2656 ])
2657
2658
2659 dnl
2660 dnl  avformat demuxer/muxer plugin
2661 dnl
2662
2663 AC_ARG_ENABLE(avformat,
2664 [  --enable-avformat       libavformat containers (default enabled)],, [
2665   enable_avformat="${have_avcodec}"
2666 ])
2667 if test "${enable_avformat}" != "no"
2668 then
2669   PKG_CHECK_MODULES(AVFORMAT,[libavformat > 52.30.0 libavcodec libavutil],
2670     [
2671       VLC_SAVE_FLAGS
2672       CPPFLAGS="${CPPFLAGS} ${AVFORMAT_CFLAGS}"
2673       CFLAGS="${CFLAGS} ${AVFORMAT_CFLAGS}"
2674       AC_CHECK_HEADERS(libavformat/avformat.h ffmpeg/avformat.h libavformat/avio.h)
2675       AC_CHECK_HEADERS(libavutil/avutil.h ffmpeg/avutil.h)
2676       AS_IF([test "$enable_merge_ffmpeg" = "no"], [
2677         VLC_ADD_PLUGIN([avformat access_avio])
2678         VLC_ADD_LIBS([avformat access_avio],[$AVFORMAT_LIBS $AVUTIL_LIBS])
2679         VLC_ADD_CFLAGS([avformat access_avio],[$AVFORMAT_CFLAGS $AVUTIL_CFLAGS])
2680         AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2681           VLC_ADD_LDFLAGS([avformat access_avio],[-Wl,-Bsymbolic])
2682         ])
2683       ], [
2684         VLC_ADD_LIBS([avcodec],[$AVFORMAT_LIBS $AVUTIL_LIBS])
2685         VLC_ADD_CFLAGS([avcodec],[$AVFORMAT_CFLAGS $AVUTIL_CFLAGS])
2686       ])
2687       VLC_RESTORE_FLAGS
2688     ],[
2689       AC_MSG_ERROR([Could not find libavformat or libavutil. Use --disable-avformat to ignore this error.])
2690   ])
2691 fi
2692
2693 dnl
2694 dnl  swscale image scaling and conversion plugin
2695 dnl
2696
2697 AC_ARG_ENABLE(swscale,
2698   AS_HELP_STRING([--enable-swscale],[libswscale image scaling and conversion
2699                   (default enabled)]))
2700 if test "${enable_swscale}" != "no"
2701 then
2702   PKG_CHECK_MODULES(SWSCALE,[libswscale],
2703     [
2704       VLC_SAVE_FLAGS
2705       CPPFLAGS="${CPPFLAGS} ${SWSCALE_CFLAGS}"
2706       CFLAGS="${CFLAGS} ${SWSCALE_CFLAGS}"
2707       AC_CHECK_HEADERS(libswscale/swscale.h ffmpeg/swscale.h)
2708       VLC_ADD_PLUGIN([swscale])
2709       VLC_ADD_LIBS([swscale],[$SWSCALE_LIBS])
2710       VLC_ADD_CFLAGS([swscale],[$SWSCALE_CFLAGS])
2711       AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2712         VLC_ADD_LDFLAGS([swscale],[-Wl,-Bsymbolic])
2713       ])
2714       VLC_RESTORE_FLAGS
2715     ],[
2716       AC_MSG_ERROR([Could not find libswscale. Use --disable-swscale to ignore this error. Proper software scaling and some video chroma conversion will be missing.])
2717   ])
2718 fi
2719
2720 dnl
2721 dnl  postproc plugin
2722 dnl
2723
2724 AC_ARG_ENABLE(postproc,
2725 [  --enable-postproc       libpostproc image post-processing (default enabled)])
2726 if test "${enable_postproc}" != "no"
2727 then
2728   PKG_CHECK_MODULES(POSTPROC,[libpostproc libavutil],
2729     [
2730       VLC_SAVE_FLAGS
2731       CPPFLAGS="${CPPFLAGS} ${POSTPROC_CFLAGS}"
2732       CFLAGS="${CFLAGS} ${POSTPROC_CFLAGS}"
2733       AC_CHECK_HEADERS(postproc/postprocess.h)
2734       VLC_ADD_PLUGIN([postproc])
2735       VLC_ADD_LIBS([postproc],[$POSTPROC_LIBS $AVUTIL_LIBS])
2736       VLC_ADD_CFLAGS([postproc],[$POSTPROC_CFLAGS $AVUTIL_CFLAGS])
2737       VLC_RESTORE_FLAGS
2738     ],[
2739       AC_MSG_ERROR([Could not find libpostproc. Use --disable-postproc to ignore this error.])
2740   ])
2741 fi
2742
2743 dnl
2744 dnl  faad decoder plugin
2745 dnl
2746 AC_ARG_ENABLE(faad,
2747 [  --enable-faad           faad codec (default disabled)])
2748 if test "${enable_faad}" = "yes"
2749 then
2750   AC_ARG_WITH(faad-tree,
2751   [  --with-faad-tree=PATH   faad tree for static linking])
2752   if test -n "${with_faad_tree}"
2753   then
2754     AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
2755     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
2756     if test -z "${real_faad_tree}"
2757     then
2758       dnl  The given directory can't be found
2759       AC_MSG_RESULT(no)
2760       AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
2761     fi
2762     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
2763     then
2764       dnl  Use a custom faad
2765       AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
2766       VLC_ADD_PLUGIN([faad])
2767       VLC_ADD_LIBS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
2768       VLC_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
2769     else
2770       dnl  The given libfaad wasn't built
2771       AC_MSG_RESULT(no)
2772       AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
2773     fi
2774   else
2775     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
2776     LDFLAGS="${LDFLAGS_save} ${LIBS_faad}"
2777     AC_CHECK_HEADERS(faad.h, ,
2778       [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ])
2779     AC_CHECK_LIB(faad, faacDecOpen, [
2780       VLC_ADD_PLUGIN([faad])
2781       VLC_ADD_LIBS([faad],[-lfaad]) ],
2782       AC_CHECK_LIB(faad, NeAACDecOpen, [
2783         VLC_ADD_PLUGIN([faad])
2784         VLC_ADD_LIBS([faad],[-lfaad]) ],
2785         [ AC_MSG_ERROR([Cannot find libfaad library...]) ]))
2786     LDFLAGS="${LDFLAGS_save}"
2787     CPPFLAGS="${CPPFLAGS_save}"
2788   fi
2789 fi
2790
2791 dnl
2792 dnl twolame encoder plugin
2793 dnl
2794 PKG_ENABLE_MODULES_VLC([TWOLAME], [], [twolame], [MPEG Audio Layer 2 encoder], [auto], [], [], [ -DLIBTWOLAME_STATIC])
2795
2796 dnl
2797 dnl  QuickTime plugin
2798 dnl
2799 AC_ARG_ENABLE(quicktime,
2800   [  --enable-quicktime      QuickTime module (deprecated)])
2801 if test "${enable_quicktime}" = "yes"; then
2802   if test "${SYS}" = "mingw32"; then
2803     VLC_ADD_PLUGIN([quicktime])
2804   else
2805   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2806     [ VLC_ADD_PLUGIN([quicktime])
2807       VLC_ADD_LDFLAGS([quicktime],[-Wl,-framework,QuickTime,-framework,Carbon])
2808     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2809   fi
2810 fi
2811
2812 dnl
2813 dnl  Real plugin
2814 dnl
2815 AC_ARG_ENABLE(real,
2816   [  --enable-real           Real media module (default disabled)])
2817 if test "${enable_real}" = "yes"; then
2818   VLC_ADD_PLUGIN([realvideo])
2819 fi
2820
2821 dnl
2822 dnl  Real RTSP plugin
2823 dnl
2824 AC_ARG_ENABLE(realrtsp,
2825   [  --enable-realrtsp       Real RTSP module (default disabled)])
2826 if test "${enable_realrtsp}" = "yes"; then
2827   VLC_ADD_PLUGIN([access_realrtsp])
2828 fi
2829
2830 dnl
2831 dnl skins2 module
2832 dnl
2833 AC_ARG_ENABLE(libtar,
2834   [  --enable-libtar         libtar support for skins2 (default enabled)])
2835
2836 AS_IF([test "${enable_libtar}" != "no"],[
2837   AC_CHECK_HEADERS(libtar.h, [
2838     VLC_ADD_LIBS([skins2],[-ltar])
2839   ] )
2840 ])
2841
2842 dnl
2843 dnl A52/AC3 decoder plugin
2844 dnl
2845 AC_ARG_ENABLE(a52,
2846   [  --enable-a52            A/52 support with liba52 (default enabled)])
2847 if test "${enable_a52}" != "no"
2848 then
2849   AC_ARG_WITH(a52,
2850     [  --with-a52=PATH         a52 headers and libraries])
2851   AC_ARG_WITH(a52-tree,
2852     [  --with-a52-tree=PATH    a52dec tree for static linking ],[],[])
2853   if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
2854   then
2855     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
2856     if test -z "${real_a52_tree}"
2857     then
2858       dnl  The given directory can't be found
2859       AC_MSG_RESULT(no)
2860       AC_MSG_ERROR([${with_a52_tree} directory doesn't exist])
2861     fi
2862     dnl  Use a custom a52dec
2863     AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
2864     if test -f ${real_a52_tree}/include/a52.h
2865     then
2866       AC_MSG_RESULT(yes)
2867       VLC_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
2868       VLC_ADD_LIBS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
2869       LDFLAGS="${LDFLAGS_save} ${LIBS_a52tofloat32}"
2870       AC_CHECK_LIB(a52, a52_free, [
2871         VLC_ADD_PLUGIN([a52tofloat32])
2872         VLC_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
2873         VLC_ADD_LIBS([a52tofloat32],[-la52])
2874         ],[
2875         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
2876         then
2877           AC_MSG_ERROR([make sure you have at least a52dec-0.7.3 ($real_a52_tree)])
2878         else
2879           AC_MSG_ERROR([the specified tree hasn't been compiled])
2880         fi
2881       ])
2882       LDFLAGS="${LDFLAGS_save}"
2883     else
2884       AC_MSG_RESULT(no)
2885       AC_MSG_ERROR([the specified tree doesn't have a52.h])
2886     fi
2887   else
2888     if test -z "${with_a52}"
2889     then
2890       LDFLAGS_test=""
2891       CPPFLAGS_test=""
2892     else
2893       LDFLAGS_test="-L${with_a52}/lib"
2894       CPPFLAGS_test="-I${with_a52}/include"
2895     fi
2896     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2897     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LIBS_a52tofloat32}"
2898     AC_CHECK_HEADERS(a52dec/a52.h, [
2899       AC_CHECK_LIB(a52, a52_free, [
2900         VLC_ADD_PLUGIN([a52tofloat32])
2901         VLC_ADD_LIBS([a52tofloat32],[${LDFLAGS_test} -la52])
2902         VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2903       ],[
2904         AC_MSG_ERROR([Could not find liba52 on your system: you may get it from http://liba52.sf.net/. Alternatively you can use --disable-a52 to disable the a52 plugin.])
2905         ])
2906     ],[
2907       AC_MSG_ERROR([Could not find liba52 on your system: you may get it from http://liba52.sf.net/. Alternatively you can use --disable-a52 to disable the a52 plugin.])
2908     ])
2909     CPPFLAGS="${CPPFLAGS_save}"
2910     LDFLAGS="${LDFLAGS_save}"
2911   fi
2912 fi
2913
2914 AC_ARG_WITH(a52-fixed,
2915       [  --with-a52-fixed        specify if liba52 has been compiled with fixed point support],
2916       [
2917         VLC_ADD_CPPFLAGS([a52tofloat32],[-DLIBA52_FIXED]) ])
2918
2919 dnl
2920 dnl DTS Coherent Acoustics decoder plugin
2921 dnl
2922 PKG_ENABLE_MODULES_VLC([DCA], [dtstofloat32], [libdca >= 0.0.5], [DTS Coherent Acoustics support with libdca], [auto])
2923
2924 dnl
2925 dnl  Flac plugin
2926 dnl
2927 PKG_ENABLE_MODULES_VLC([FLAC], [], [flac], [libflac decoder/encoder support], [auto])
2928
2929 dnl
2930 dnl  Libmpeg2 plugin
2931 dnl
2932 PKG_ENABLE_MODULES_VLC([LIBMPEG2], [], [libmpeg2 > 0.3.2], [libmpeg2 decoder support], [auto])
2933
2934 dnl
2935 dnl  Vorbis plugin
2936 dnl
2937 PKG_ENABLE_MODULES_VLC([VORBIS], [], [ogg vorbis >= 1.1 vorbisenc >= 1.1], [Vorbis decoder and encoder], [auto])
2938
2939 dnl
2940 dnl  Tremor plugin
2941 dnl
2942 AC_ARG_ENABLE(tremor,
2943   [  --enable-tremor         Tremor decoder support (default disabled)])
2944 if test "${enable_tremor}" = "yes"
2945 then
2946   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2947     VLC_ADD_PLUGIN([tremor])
2948     VLC_ADD_LIBS([tremor],[-lvorbisidec -logg])
2949    ],[])
2950 fi
2951
2952 dnl
2953 dnl  Speex plugin
2954 dnl
2955 PKG_ENABLE_MODULES_VLC([SPEEX], [], [ogg speex >= 1.0.5], [Speex decoder support], [auto])
2956
2957 dnl
2958 dnl  theora decoder plugin
2959 dnl
2960 PKG_ENABLE_MODULES_VLC([THEORA], [], [ogg theora >= 1.0], [experimental theora codec], [auto])
2961
2962 dnl
2963 dnl  dirac encoder plugin
2964 dnl
2965 PKG_ENABLE_MODULES_VLC([DIRAC], [], [dirac >= 0.10.0], [dirac encoder], [auto])
2966
2967 dnl
2968 dnl  schroedinger decoder plugin (for dirac format video)
2969 dnl
2970 PKG_ENABLE_MODULES_VLC([SCHROEDINGER], [], [schroedinger-1.0 >= 1.0.10], [dirac decoder and encoder using schroedinger], [auto])
2971
2972 dnl
2973 dnl  PNG decoder module
2974 dnl
2975 AC_ARG_ENABLE(png,
2976   [  --enable-png            PNG support (default enabled)])
2977 if test "${enable_png}" != "no"; then
2978 AC_CHECK_HEADERS(png.h, [
2979   LDFLAGS="${LDFLAGS_save} -lz"
2980   AC_CHECK_LIB(png, png_set_rows, [
2981     VLC_ADD_LIBS([png],[-lpng -lz])
2982     VLC_ADD_PLUGIN([png osdmenu osd_parser])],
2983     [],[-lz])
2984     LDFLAGS="${LDFLAGS_save}"
2985   ])
2986 fi
2987 AM_CONDITIONAL(BUILD_OSDMENU, [test "${enable_png}" != "no"])
2988
2989 dnl
2990 dnl H264 encoder plugin (using libx264)
2991 dnl
2992 AC_ARG_ENABLE(x264,
2993   [  --enable-x264           H264 encoding support with libx264 (default enabled)])
2994 if test "${enable_x264}" != "no"; then
2995   AC_ARG_WITH(x264-tree,
2996     [  --with-x264-tree=PATH   x264 tree for static linking ],[],[])
2997   if test "${with_x264_tree}" != "no" -a -n "${with_x264_tree}"
2998   then
2999     real_x264_tree="`cd ${with_x264_tree} 2>/dev/null && pwd`"
3000     if test -z "${real_x264_tree}"
3001     then
3002       dnl  The given directory can't be found
3003       AC_MSG_RESULT(no)
3004       AC_MSG_ERROR([${with_x264_tree} directory doesn't exist])
3005     fi
3006     dnl  Use a custom libx264
3007     AC_MSG_CHECKING(for x264.h in ${real_x264_tree})
3008     if test -f ${real_x264_tree}/x264.h
3009     then
3010       AC_MSG_RESULT(yes)
3011       VLC_ADD_CPPFLAGS([x264],[-I${real_x264_tree}])
3012       VLC_ADD_LIBS([x264],[-L${real_x264_tree}])
3013       PKG_CHECK_MODULES(X264,x264, [
3014         VLC_ADD_PLUGIN([x264])
3015         VLC_ADD_LDFLAGS([x264],[${X264_LIBS}])
3016         VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
3017         if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
3018           VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
3019         fi
3020       ],[
3021         AC_MSG_ERROR([the specified tree hasn't been compiled])
3022       ])
3023       LDFLAGS="${LDFLAGS_save}"
3024     else
3025       AC_MSG_RESULT(no)
3026       AC_MSG_ERROR([the specified tree doesn't have x264.h])
3027     fi
3028   else
3029       PKG_CHECK_MODULES(X264,x264 >= 0.86, [
3030         VLC_ADD_PLUGIN([x264])
3031         VLC_ADD_LDFLAGS([x264],[${X264_LIBS}])
3032
3033         AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
3034           VLC_ADD_LDFLAGS([x264],[-Wl,-Bsymbolic])
3035         ])
3036
3037         VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
3038         if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
3039           VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
3040         fi
3041       ],[
3042         if test "${enable_x264}" = "yes"; then
3043             AC_MSG_ERROR([Could not find libx264 >= 0.86 on your system: you may get it from http://www.videolan.org/x264.html])
3044           fi
3045       ])
3046     LDFLAGS="${LDFLAGS_save}"
3047   fi
3048 fi
3049
3050 dnl
3051 dnl libfluidsynth (MIDI synthetizer) plugin
3052 dnl
3053 PKG_ENABLE_MODULES_VLC([FLUIDSYNTH], [], [fluidsynth], [MIDI synthetiser with libfluidsynth], [auto])
3054
3055 dnl
3056 dnl Teletext Modules
3057 dnl vbi decoder plugin (using libzbvi)
3058 dnl telx module
3059 dnl uncompatible
3060 dnl
3061 AC_ARG_ENABLE(zvbi,
3062   AS_HELP_STRING([--enable-zvbi],[VBI (inc. Teletext) decoding support with
3063                   libzvbi (default enabled)]))
3064 AC_ARG_ENABLE(telx,
3065   AS_HELP_STRING([--enable-telx],[Teletext decoding module (conflicting with
3066                   zvbi) (default enabled if zvbi is absent)]))
3067
3068 AS_IF( [test "${enable_zvbi}" != "no"],[
3069     PKG_CHECK_MODULES(ZVBI,
3070         zvbi-0.2 >= 0.2.28,
3071         [
3072           VLC_ADD_LIBS([zvbi],[$ZVBI_LIBS])
3073           if test "${SYS}" = "mingw32"; then
3074               VLC_ADD_LIBS([zvbi],[ -lpthreadGC2])
3075           fi
3076           VLC_ADD_CFLAGS([zvbi],[$ZVBI_CFLAGS])
3077           VLC_ADD_PLUGIN([zvbi])
3078           AC_DEFINE(ZVBI_COMPILED, 1, [Define if the zvbi module is built])
3079           AS_IF( [test "${enable_telx}" = "yes"],[
3080                   AC_MSG_WARN([The zvbi and telx modules are uncompatibles.
3081                                Using zvbi.])
3082                   ])
3083         ],[
3084           AC_MSG_WARN(ZVBI library not found. Enabling the telx module instead)
3085         ])
3086     ])
3087 AS_IF( [test "${enable_telx}" != "no" ],[
3088   VLC_ADD_PLUGIN([telx])
3089   ])
3090
3091 dnl
3092 dnl libass subtitle rendering module
3093 dnl
3094 AC_ARG_ENABLE(libass,
3095   [  --enable-libass         Subtitle support using libass (default enabled)])
3096 AS_IF( [test "${enable_libass}" != "no"], [
3097   PKG_CHECK_MODULES(LIBASS, libass >= 0.9.6,
3098       [
3099         VLC_ADD_LIBS([libass],[$LIBASS_LIBS])
3100         VLC_ADD_CFLAGS([libass],[$LIBASS_CFLAGS])
3101         VLC_ADD_PLUGIN([libass])
3102
3103         AC_CHECK_HEADERS(fontconfig/fontconfig.h,
3104           [VLC_ADD_CPPFLAGS([libass],[-DHAVE_FONTCONFIG])
3105            VLC_ADD_LIBS([libass],[-lfontconfig])
3106        ])
3107       ],[
3108         AC_MSG_WARN([LIBASS library not found])
3109       ])
3110   ])
3111
3112 dnl
3113 dnl  kate decoder plugin
3114 dnl
3115 AC_ARG_ENABLE(kate,
3116 [  --enable-kate           kate codec (default enabled)])
3117 AS_IF([test "${enable_kate}" != "no"], [
3118   PKG_CHECK_MODULES(KATE,[kate >= 0.1.5], [
3119       VLC_ADD_PLUGIN([kate])
3120       VLC_ADD_CFLAGS([kate],[$KATE_CFLAGS])
3121       VLC_ADD_LIBS([kate],[$KATE_LIBS]) ],[
3122         AC_CHECK_HEADERS(kate/kate.h, [
3123           AC_CHECK_LIB(kate, kate_decode_init, [
3124             VLC_ADD_PLUGIN([kate])
3125             kate_libs="-lkate -logg"
3126             VLC_ADD_LDFLAGS([kate],[${kate_libs}]) ],[
3127             AS_IF([test "x${enable_kate}" != "x"], [
3128               AC_MSG_ERROR([libkate doesn't appear to be installed on your system.
3129               You also need to check that you have a libogg posterior to the 1.0 release.])
3130             ])
3131           ], [-lkate -logg])
3132         ],[
3133           AS_IF([test "x${enable_kate}" != "x"], [
3134             AC_MSG_ERROR([libkate headers do not appear to be installed on your system.
3135             You also need to check that you have a libogg posterior to the 1.0 release.])
3136           ])
3137         ])
3138   ])
3139 ])
3140
3141
3142 dnl
3143 dnl  tiger rendering for kate decoder plugin
3144 dnl
3145 AC_ARG_ENABLE(tiger,
3146 [  --enable-tiger          Tiger rendering library for Kate streams (default enabled)])
3147 AS_IF([test "${enable_tiger}" != "no"], [
3148   PKG_CHECK_MODULES(TIGER,[tiger >= 0.3.1], [
3149       AC_DEFINE(HAVE_TIGER, 1, [Define if libtiger is available.])
3150       VLC_ADD_CFLAGS([kate],[$TIGER_CFLAGS])
3151       VLC_ADD_LIBS([kate],[$TIGER_LIBS]) ],[
3152         AS_IF([test "x${enable_tiger}" != "x"], [
3153           AC_MSG_ERROR([libtiger does not appear to be installed on your system.])
3154         ])
3155   ])
3156 ])
3157
3158
3159
3160 dnl
3161 dnl  Video plugins
3162 dnl
3163
3164 EXTEND_HELP_STRING([Video plugins:])
3165
3166 dnl
3167 dnl  Xlib
3168 dnl
3169
3170 AC_PATH_XTRA()
3171 AC_CHECK_HEADERS(X11/Xlib.h)
3172
3173 dnl
3174 dnl  X C Bindings modules
3175 dnl
3176 AC_ARG_ENABLE(xcb,
3177   [  --enable-xcb            X11 support with XCB (default enabled)],, [
3178   AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" -a "${SYS}" != "darwin" -a "${SYS}" != "symbian"], [
3179     enable_xcb="yes"
3180   ], [
3181     enable_xcb="no"
3182   ])
3183 ])
3184 AC_ARG_ENABLE(xvideo,
3185   [  --enable-xvideo         XVideo support (default enabled)],, [
3186     enable_xvideo="$enable_xcb"
3187 ])
3188
3189 need_xid_provider="no"
3190 have_xcb="no"
3191 AS_IF([test "${enable_xcb}" != "no"], [
3192   dnl libxcb
3193   PKG_CHECK_MODULES(XCB, [xcb])
3194   have_xcb="yes"
3195   PKG_CHECK_MODULES(XCB_SHM, [xcb-shm])
3196
3197   AS_IF([test "${enable_xvideo}" != "no"], [
3198     PKG_CHECK_MODULES(XCB_XV, [xcb-xv >= 1.1.90.1], [
3199       VLC_ADD_PLUGIN([xcb_xv])
3200     ], [
3201       PKG_CHECK_MODULES(XCB_XV, [xcb-xv], [
3202         VLC_ADD_PLUGIN([xcb_xv])
3203         VLC_ADD_CFLAGS([xcb_xv], [-DXCB_XV_OLD])
3204       ])
3205     ])
3206   ])
3207
3208   PKG_CHECK_MODULES(XCB_RANDR, [xcb-randr >= 1.3], [
3209     VLC_ADD_PLUGIN([panoramix])
3210     VLC_ADD_LIBS([panoramix],[${XCB_RANDR_LIBS} ${XCB_LIBS}])
3211     VLC_ADD_CFLAGS([panoramix],[${XCB_RANDR_CFLAGS} ${XCB_CFLAGS}])
3212   ], [
3213     AC_MSG_WARN([libxcb-randr not found. Panoramix filter will not be supported.])
3214   ])
3215
3216   dnl xcb-utils
3217   PKG_CHECK_MODULES(XCB_KEYSYMS, [xcb-keysyms >= 0.3.4], [
3218     have_xcb_keysyms="yes"
3219   ], [
3220     PKG_CHECK_MODULES(XCB_KEYSYMS, [xcb-keysyms], [
3221       have_xcb_keysyms="yes"
3222       VLC_ADD_CFLAGS([globalhotkeys], [-DXCB_KEYSYM_OLD_API])
3223     ], [
3224       have_xcb_keysyms="no"
3225       need_xid_provider="yes"
3226       AC_MSG_WARN([libxcb-keysyms not found. Hotkeys will not be supported.])
3227     ])
3228   ])
3229
3230   AS_IF([test "${have_xcb_keysyms}" = "yes"], [
3231     PKG_CHECK_MODULES(XPROTO, [xproto])
3232     VLC_ADD_PLUGIN([globalhotkeys])
3233     VLC_ADD_CFLAGS([globalhotkeys], [${XCB_KEYSYMS_CFLAGS} ${XCB_CFLAGS}])
3234     VLC_ADD_LIBS([globalhotkeys], [${XCB_KEYSYMS_LIBS} ${XCB_LIBS}])
3235     VLC_ADD_CFLAGS([xcb_window], [-DHAVE_XCB_KEYSYMS])
3236   ])
3237 ])
3238 AM_CONDITIONAL([HAVE_XCB], [test "${have_xcb}" = "yes"])
3239
3240 AC_ARG_ENABLE(glx,
3241   [  --enable-glx            X11 OpenGL (GLX) support (default enabled)],, [
3242   enable_glx="$enable_xcb"
3243 ])
3244 AS_IF([test "${enable_glx}" != "no"], [
3245   PKG_CHECK_MODULES(XLIB_XCB, [x11-xcb])
3246   PKG_CHECK_MODULES(GL, [gl],, [
3247     AC_CHECK_HEADER([GL/gl.h], [
3248       GL_CFLAGS=""
3249       GL_LIBS="-lGL"
3250     ], [
3251       AC_MSG_ERROR([GLX (libGL) cannot be found. If you do not need OpenGL with X11, use --disable-glx.])
3252     ])
3253   ])
3254   VLC_ADD_PLUGIN([xcb_glx])
3255 ])
3256 AC_SUBST([GL_CFLAGS])
3257 AC_SUBST([GL_LIBS])
3258
3259 dnl
3260 dnl  EGL
3261 dnl
3262 AC_ARG_ENABLE(egl,
3263   [  --enable-egl            EGL support (default disabled)],, [
3264   enable_egl="no"
3265 ])
3266 AS_IF([test "${enable_egl}" != "no"], [
3267   PKG_CHECK_MODULES(EGL, [egl])
3268   VLC_ADD_PLUGIN([egl])
3269 ])
3270
3271 dnl
3272 dnl  SDL module
3273 dnl
3274 AC_ARG_ENABLE(sdl,
3275   [  --enable-sdl            SDL support (default enabled)])
3276 AC_ARG_ENABLE(sdl-image,
3277   [  --enable-sdl-image      SDL image support (default enabled)])
3278 if test "${enable_sdl}" != "no"
3279 then
3280    PKG_CHECK_MODULES(SDL, [sdl >= 1.2.10], [
3281       # SDL on Darwin is heavily patched and can only run SDL_image
3282       if test "${SYS}" != "darwin"; then
3283         VLC_ADD_PLUGIN([vout_sdl aout_sdl])
3284       fi
3285       if test "${SYS}" != "mingw32"; then
3286         VLC_ADD_LIBS([vout_sdl],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3287       fi
3288       VLC_ADD_CFLAGS([vout_sdl aout_sdl],[${SDL_CFLAGS}])
3289       VLC_ADD_LIBS([vout_sdl aout_sdl],[${SDL_LIBS}])
3290
3291       # SDL_image
3292       AS_IF([ test "${enable_sdl_image}" != "no"],[
3293         PKG_CHECK_MODULES(SDL_IMAGE, [SDL_image >= 1.2.10], [
3294           VLC_ADD_PLUGIN([sdl_image])
3295           VLC_ADD_LIBS([sdl_image],[${SDL_IMAGE_LIBS}])
3296           VLC_ADD_CFLAGS([sdl_image], [${SDL_IMAGE_CFLAGS}])],
3297           [ AC_MSG_WARN([The development package for SDL_image is not installed.
3298     You should install it alongside your SDL package.])
3299           ])
3300       ])
3301    ],[
3302      AC_MSG_WARN([The development package for SDL is not present or too old.
3303                   You need 1.2.10. Alternatively you can also configure with
3304                   --disable-sdl.])
3305    ])
3306 fi
3307
3308 dnl
3309 dnl  freetype module
3310 dnl
3311 AC_ARG_ENABLE(freetype,
3312   [  --enable-freetype       freetype support (default enabled)])
3313 AC_ARG_ENABLE(fribidi,
3314   [  --enable-fribidi        fribidi support (default enabled)])
3315 AC_ARG_ENABLE(fontconfig,
3316   [  --enable-fontconfig     fontconfig support (default enabled)])
3317 if test "${enable_freetype}" != "no"
3318 then
3319    PKG_CHECK_MODULES(FREETYPE, freetype2,[
3320       VLC_ADD_PLUGIN([freetype])
3321       have_freetype=yes
3322       VLC_ADD_CPPFLAGS([freetype skins2],[${FREETYPE_CFLAGS}])
3323       if test "${SYS}" = "mingw32"; then
3324         VLC_ADD_LIBS([freetype],[-liconv -lz])
3325       fi
3326       VLC_ADD_LIBS([freetype skins2],[${FREETYPE_LIBS}])
3327       if test "${enable_fontconfig}" != "no"
3328       then
3329         AC_CHECK_HEADERS(fontconfig/fontconfig.h,
3330           [VLC_ADD_CPPFLAGS([freetype],[-DHAVE_FONTCONFIG])
3331            VLC_ADD_LIBS([freetype],[-lfontconfig])])
3332         AC_CHECK_HEADERS(Carbon/Carbon.h,
3333           [VLC_ADD_LDFLAGS([freetype],[-Wl,-framework,Carbon])])
3334       fi
3335
3336      dnl fribidi support
3337       if test "${enable_fribidi}" != "no"
3338       then
3339         PKG_CHECK_MODULES(FRIBIDI, fribidi, [
3340           VLC_ADD_CPPFLAGS([freetype skins2], [${FRIBIDI_CFLAGS} -DHAVE_FRIBIDI])
3341           VLC_ADD_LIBS([freetype skins2], [${FRIBIDI_LIBS}])
3342         ])
3343       fi
3344
3345   ],[
3346   have_freetype=no
3347   AS_IF([ test "${enable_freetype}" =  "yes"],[
3348     AC_MSG_ERROR([I couldn't find the freetype package. You can download libfreetype2
3349 from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
3350       ])
3351     ])
3352   ])
3353
3354 fi
3355
3356 dnl
3357 dnl  libxml2 module
3358 dnl
3359 PKG_ENABLE_MODULES_VLC([LIBXML2], [xml], [libxml-2.0 >= 2.5], [libxml2 support],[auto])
3360
3361 dnl
3362 dnl  SVG module
3363 dnl
3364 PKG_ENABLE_MODULES_VLC([SVG], [], [librsvg-2.0 >= 2.9.0], [SVG rendering library],[auto])
3365
3366 dnl
3367 dnl Snapshot vout module (with cache)
3368 dnl
3369 AC_ARG_ENABLE(snapshot,
3370   [  --enable-snapshot       snapshot module (default disabled)])
3371 if test "${enable_snapshot}" = "yes"
3372 then
3373   VLC_ADD_PLUGIN([snapshot])
3374 fi
3375
3376 dnl
3377 dnl  iOS vout module
3378 dnl
3379 AC_ARG_ENABLE(ios-vout,
3380   [  --enable-ios-vout    iOS video output module (default disabled)])
3381 if test "${enable_ios_vout}" = "yes"
3382 then
3383   VLC_ADD_PLUGIN([vout_ios])
3384   VLC_ADD_CFLAGS([vout_ios], [-DUSE_OPENGL_ES=1])
3385   VLC_ADD_LDFLAGS([vout_ios], [-Wl,-framework,OpenGLES,-framework,QuartzCore,-framework,UIKit,-framework,Foundation])
3386 fi
3387
3388 dnl
3389 dnl  QuartzText vout module (iOS/Mac OS)
3390 dnl
3391 AC_ARG_ENABLE(macosx-quartztext,
3392   [  --enable-macosx-quartztext   Mac OS X quartz text module (default enabled on Mac OS X)])
3393 if test "x${enable_macosx_quartztext}" != "xno" &&
3394   (test "${SYS}" = "darwin" || test "${enable_macosx_quartztext}" = "yes")
3395 then
3396   VLC_ADD_PLUGIN([quartztext])
3397   VLC_ADD_LDFLAGS([quartztext],[-Wl,-framework,ApplicationServices])
3398 fi
3399
3400 dnl
3401 dnl  Windows DirectX module
3402 dnl
3403
3404 if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"
3405 then
3406   VLC_ADD_PLUGIN([panoramix])
3407 fi
3408
3409 AC_ARG_ENABLE(directx,
3410   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
3411 if test "${enable_directx}" != "no"
3412 then
3413   if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"
3414   then
3415       VLC_ADD_LIBS([directx],[-luser32])
3416       AC_CHECK_HEADERS(ddraw.h,
3417       [ VLC_ADD_PLUGIN([directx aout_directx])
3418         VLC_ADD_LIBS([directx],[-lgdi32])
3419       ],[AC_MSG_ERROR([Cannot find DirectX headers!])]
3420       )
3421       AC_CHECK_HEADERS(GL/gl.h,
3422       [ VLC_ADD_PLUGIN([glwin32])
3423         VLC_ADD_LIBS([glwin32],[-lopengl32 -lgdi32])
3424       ])
3425       AC_CHECK_HEADERS(d3d9.h,
3426       [ VLC_ADD_PLUGIN([direct3d])
3427         VLC_ADD_LIBS([direct3d],[-lgdi32])
3428       ])
3429       VLC_ADD_LIBS([direct3d directx glwin32],[-lole32])
3430   fi
3431 fi
3432
3433 dnl
3434 dnl  Windows Direct2D plugin
3435 dnl
3436 AC_ARG_ENABLE(direct2d,
3437   [  --enable-direct2d         Win7/VistaPU Direct2D support (default auto on Win32)])
3438 if test "${enable_direct2d}" != "no"; then
3439   if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"
3440   then
3441     AC_CHECK_HEADERS(d2d1.h,
3442       [
3443         VLC_ADD_PLUGIN([direct2d])
3444         VLC_ADD_LIBS([direct2d],[-lgdi32 -lole32])
3445       ], [AC_MSG_WARN([Cannot find Direct2D headers!])]
3446     )
3447   fi
3448 fi
3449
3450 dnl
3451 dnl  win32 GDI plugin
3452 dnl
3453 AC_ARG_ENABLE(wingdi,
3454   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
3455 if test "${enable_wingdi}" != "no"; then
3456   if test "${SYS}" = "mingw32"; then
3457     VLC_ADD_PLUGIN([wingdi])
3458     VLC_ADD_LIBS([wingdi],[-lgdi32 -lole32])
3459   fi
3460   if test "${SYS}" = "mingwce"; then
3461     VLC_ADD_PLUGIN([wingdi wingapi])
3462     VLC_ADD_LIBS([wingdi],[-laygshell])
3463     VLC_ADD_LIBS([wingapi],[-laygshell])
3464   fi
3465 fi
3466
3467
3468 dnl
3469 dnl  Linux framebuffer module
3470 dnl
3471 AC_ARG_ENABLE(fb,
3472   [  --enable-fb             Linux framebuffer support (default enabled on Linux)])
3473     if test "${enable_fb}" != "no"
3474     then
3475       AC_CHECK_HEADERS(linux/fb.h, [
3476         VLC_ADD_PLUGIN([fb])
3477       ])
3478     fi
3479
3480 dnl
3481 dnl  DirectFB module
3482 dnl  try to find using: 1 - given location; 2 - directfb-config; 3 - pkg-config
3483 dnl  TODO: support for static linking
3484 dnl
3485 AC_ARG_ENABLE(directfb,
3486   [  --enable-directfb       DirectFB support (default disabled)])
3487 AC_ARG_WITH(directfb,
3488   [  --with-directfb=PATH    path to DirectFB headers and libraries])
3489
3490 if test "${enable_directfb}" = "yes"; then
3491     have_directfb="false"
3492     CPPFLAGS_mydirectfb=
3493     LIBS_mydirectfb=
3494     if test "${with_directfb}" != "no" -a -n "${with_directfb}"; then
3495         dnl Trying the given location
3496         CPPFLAGS_save="${CPPFLAGS}"
3497         LIBS_save="${LIBS}"
3498
3499         CPPFLAGS_new="-I${with_directfb}/include -D_REENTRANT -D_GNU_SOURCE"
3500         LIBS_new="-L${with_directfb}/lib/fusion/.libs/ -L${with_directfb}/lib/direct/.libs/"
3501         LIBS_new="${LIBS_new} -L${with_directfb}/src/.libs/"
3502
3503         CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_new}"
3504         LIBS="${LIBS} ${LIBS_new}"
3505
3506         dnl FIXME: too obscure
3507         AC_CHECK_HEADER([directfb.h], [
3508             AC_CHECK_LIB([direct],[direct_initialize], [
3509                 AC_CHECK_LIB([fusion], [fusion_enter], [
3510                     AC_CHECK_LIB([directfb], [DirectFBInit], have_directfb="true", have_directfb="false")
3511                 ], have_directfb="false")
3512             ], have_directfb="false")
3513         ], have_directfb="false")
3514
3515         dnl Restore flags
3516         CPPFLAGS="${CPPFLAGS_save}"
3517         LIBS="${LIBS_save}"
3518
3519         if test "${have_directfb}" = "true"; then
3520             LIBS_mydirectfb="${LIBS_new} -lz $LIBDL -ldirectfb -lfusion -ldirect -lpthread"
3521             CPPFLAGS_mydirectfb="${CPPFLAGS_new}"
3522         fi
3523     else
3524         dnl Look for directfb-config
3525         AC_PATH_PROG(DIRECTFB_CONFIG, directfb-config, no, ${PATH})
3526         if test "${DIRECTFB_CONFIG}" != "no"; then
3527             CPPFLAGS_mydirectfb="`${DIRECTFB_CONFIG} --cflags`"
3528             LIBS_mydirectfb="`${DIRECTFB_CONFIG} --libs`"
3529             have_directfb="true"
3530         else
3531             dnl Trying with pkg-config
3532             PKG_CHECK_MODULES(DIRECTFB, directfb, [
3533                 CPPFLAGS_mydirectfb="${DIRECTFB_CFLAGS}"
3534                 LIBS_mydirectfb="${DIRECTFB_LIBS}"
3535                 have_directfb="true"
3536                 ], [have_directfb="false"])
3537         fi
3538     fi
3539     if test "${have_directfb}" = "true"; then
3540         VLC_ADD_PLUGIN([directfb])
3541         VLC_ADD_CPPFLAGS([directfb],[${CPPFLAGS_mydirectfb}])
3542         VLC_ADD_LIBS([directfb],[${LIBS_mydirectfb}])
3543     else
3544         AC_MSG_ERROR([cannot find directfb headers and/or libraries ])
3545     fi
3546 fi
3547
3548 dnl
3549 dnl  AA plugin
3550 dnl
3551 AC_ARG_ENABLE(aa,
3552   [  --enable-aa             aalib output (default disabled)])
3553 if test "${enable_aa}" = "yes"
3554 then
3555   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3556   if test "${have_aa}" = "true"
3557   then
3558     VLC_ADD_PLUGIN([aa])
3559     VLC_ADD_LIBS([aa],[-laa])
3560     if test "${SYS}" != "mingw32"; then
3561       VLC_ADD_LIBS([aa],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3562     fi
3563   fi
3564 fi
3565
3566 dnl
3567 dnl  libcaca plugin
3568 dnl
3569 PKG_ENABLE_MODULES_VLC([CACA], [], [caca >= 0.99.beta14], [libcaca output],[auto])
3570
3571 dnl
3572 dnl  Audio plugins
3573 dnl
3574
3575 EXTEND_HELP_STRING([Audio plugins:])
3576
3577 dnl
3578 dnl  OSS /dev/dsp module (enabled by default except on win32)
3579 dnl
3580 AC_ARG_ENABLE(oss,
3581   [  --enable-oss            Open Sound System OSS support (default enabled)])
3582
3583 if test "${enable_oss}" != "no" &&
3584   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3585    test "${enable_oss}" = "yes")
3586 then
3587   AC_CHECK_HEADERS([soundcard.h sys/soundcard.h], [
3588     VLC_ADD_PLUGIN([oss access_oss])
3589     AC_CHECK_LIB(ossaudio,main,[VLC_ADD_LIBS([oss access_oss],[-lossaudio])])
3590   ])
3591 fi
3592
3593 dnl
3594 dnl  Pulseaudio module
3595 dnl
3596 PKG_ENABLE_MODULES_VLC([PULSE], [], [libpulse >= 0.9.22], [PulseAudio support], [auto])
3597
3598 dnl
3599 dnl  Portaudio module
3600 dnl
3601 PKG_ENABLE_MODULES_VLC([PORTAUDIO], [], [portaudio-2.0], [Portaudio library support], [auto])
3602
3603 dnl
3604 dnl  ALSA module
3605 dnl
3606 AC_ARG_ENABLE(alsa,
3607   [  --enable-alsa           Advanced Linux Sound Architecture (default auto)])
3608 have_alsa="no"
3609 AS_IF([test "${enable_alsa}" != "no"], [
3610   PKG_CHECK_MODULES([ALSA], [alsa >= 1.0.0], [
3611     have_alsa="yes"
3612   ], [
3613     AS_IF([test "x${enable_alsa}" != "x"], [
3614       AC_MSG_ERROR([alsa-lib not found])
3615     ])
3616   ])
3617 ])
3618 AM_CONDITIONAL([HAVE_ALSA], [test "${have_alsa}" = "yes"])
3619
3620 dnl
3621 dnl  win32 waveOut plugin
3622 dnl
3623 AC_ARG_ENABLE(waveout,
3624   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
3625 if test "${enable_waveout}" != "no"; then
3626   if test "${SYS}" = "mingw32"; then
3627     VLC_ADD_PLUGIN([waveout])
3628     VLC_ADD_LIBS([waveout],[-lwinmm])
3629   fi
3630   if test "${SYS}" = "mingwce"; then
3631     VLC_ADD_PLUGIN([waveout])
3632   fi
3633 fi
3634
3635 dnl
3636 dnl  CoreAudio plugin
3637 dnl
3638 AC_ARG_ENABLE(macosx-audio,
3639   [  --enable-macosx-audio   Mac OS X audio module (default enabled on MacOS X)])
3640 if test "x${enable_macosx_audio}" != "xno" &&
3641   (test "${SYS}" = "darwin" || test "${enable_macosx_audio}" = "yes")
3642 then
3643   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h,
3644     [ VLC_ADD_PLUGIN([auhal])
3645       VLC_ADD_LDFLAGS([auhal],[-Wl,-framework,CoreAudio,-framework,AudioUnit,-framework,AudioToolbox,-framework,Carbon])
3646     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
3647 fi
3648
3649 dnl
3650 dnl  AudioQueue plugin
3651 dnl
3652 AC_ARG_ENABLE(audioqueue,
3653   [  --enable-audioqueue       AudioQueue audio module (default disabled)])
3654 if test "${enable_audioqueue}" = "yes"
3655 then
3656   VLC_ADD_PLUGIN([audioqueue])
3657   VLC_ADD_LDFLAGS([audioqueue], [-Wl,-framework,AudioToolbox,-framework,CoreFoundation])
3658 fi
3659
3660 dnl
3661 dnl  Roku HD1000 audio
3662 dnl
3663 AC_ARG_ENABLE(hd1000a,
3664   [  --enable-hd1000a        HD1000 audio module (default enabled on HD1000)])
3665 if test "${enable_hd1000a}" != "no" -a "${CXX}" != "" &&
3666   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3667    test "${enable_hd1000a}" = "yes")
3668 then
3669   AC_LANG_PUSH([C++])
3670   AC_CHECK_HEADERS(deschutes/libraries/hdmachinex225/PCMAudioPlayer.h, [
3671     VLC_ADD_PLUGIN([hd1000a])
3672     AC_CHECK_LIB(HDMachineX225,main,VLC_ADD_LIBS([hd1000a],[-lHDMachineX225]))  ])
3673   AC_LANG_POP([C++])
3674 fi
3675
3676 dnl
3677 dnl  JACK modules
3678 dnl
3679 PKG_ENABLE_MODULES_VLC([JACK], [jack access_jack], [jack], [JACK audio I/O modules],[auto])
3680
3681 dnl
3682 dnl UPnP Plugin (Intel SDK)
3683 dnl
3684 PKG_ENABLE_MODULES_VLC([UPNP], [upnp], [libupnp], [Intel UPnp SDK],[auto])
3685 VLC_ADD_CXXFLAGS([upnp],[${UPNP_CFLAGS}])
3686
3687 dnl
3688 dnl  Interface plugins
3689 dnl
3690
3691 EXTEND_HELP_STRING([Interface plugins:])
3692
3693 dnl
3694 dnl Skins2 module
3695 dnl
3696 AC_ARG_ENABLE(skins2,
3697   [AS_HELP_STRING([--enable-skins2],[Skins2 interface module (default
3698    enabled except on MacOSX and WinCE)])])
3699 if test "${enable_skins2}" != "no" ||
3700   (test "${SYS}" != "darwin" &&
3701    test "${SYS}" != "mingwce" && test "${enable_skins2}" == "yes"); then
3702
3703   dnl test for the required libraries
3704   skins2_missing_lib="no"
3705
3706   dnl freetype
3707   if test "${have_freetype}" != "yes"; then
3708     skins2_missing_lib="yes"
3709     if test "${enable_skins2}" = "yes"; then
3710       AC_MSG_ERROR([Could not find freetype (required for skins2)])
3711     fi
3712   fi
3713
3714   if test "${skins2_missing_lib}" = "no" && (test "${SYS}" = "mingw32"); then
3715     VLC_ADD_PLUGIN([skins2])
3716     ALIASES="${ALIASES} svlc"
3717     VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -Imodules/gui/skins2 -DWIN32_SKINS])
3718     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3719     VLC_ADD_LIBS([skins2],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32  -lmsimg32 -luser32])
3720
3721   else if test "${skins2_missing_lib}" = "no" && (test "${SYS}" = "darwin"); then
3722     VLC_ADD_PLUGIN([skins2])
3723     ALIASES="${ALIASES} svlc"
3724     VLC_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 -DMACOSX_SKINS])
3725     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3726     VLC_ADD_LDFLAGS([skins2],[-Wl,-framework,Carbon])
3727
3728   else if test "${skins2_missing_lib}" = "no"; then
3729     VLC_ADD_PLUGIN([skins2])
3730     ALIASES="${ALIASES} svlc"
3731     VLC_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 ${X_CFLAGS} -DX11_SKINS])
3732     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3733     VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} -lXext -lXpm -lX11])
3734     need_xid_provider="no"
3735   fi fi fi
3736 fi
3737 AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes" ||
3738          (test "${SYS}" != "darwin" &&
3739           test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no")])
3740
3741 dnl
3742 dnl Hildon UI
3743 dnl
3744 AC_ARG_ENABLE(hildon,
3745   [  --enable-hildon         Hildon touchscreen UI (default disabled)])
3746 AS_IF([test "${enable_hildon}" = "yes"], [
3747   PKG_CHECK_MODULES(HILDON, [hildon-1], [
3748     PKG_CHECK_MODULES(HILDON_FM, hildon-fm-2, [
3749       VLC_ADD_CFLAGS([hildon],[${HILDON_FM_CFLAGS} -DHAVE_HILDON_FM])
3750       VLC_ADD_LIBS([hildon],[${HILDON_FM_LIBS}])
3751     ], [
3752       AC_MSG_WARN(hildon-fm-2 not found)
3753     ])
3754     VLC_ADD_CFLAGS([hildon],[${HILDON_CFLAGS} ${X_CFLAGS}])
3755     VLC_ADD_LIBS([hildon],[${HILDON_LIBS} ${X_LIBS} ${X_PRE_LIBS} -lX11])
3756     VLC_ADD_PLUGIN([hildon])
3757     ALIASES="${ALIASES} mvlc"
3758     need_xid_provider="no"
3759   ], [
3760     AS_IF([test "${enable_hildon}" = "yes"],[
3761       AC_MSG_ERROR([Hildon libraries not found])
3762     ])
3763     enable_hildon="no"
3764   ])
3765 ])
3766 AM_CONDITIONAL(BUILD_HILDON, [test "${enable_hildon}" = "yes"])
3767
3768 dnl
3769 dnl QT 4
3770 dnl
3771 AC_ARG_ENABLE(qt4,
3772   [  --enable-qt4            Qt 4 support (default enabled) ],, [
3773   AS_IF([test "${SYS}" = "darwin"], [enable_qt4=no])
3774 ])
3775 AS_IF([test "${enable_qt4}" != "no"], [
3776   PKG_CHECK_MODULES(QT4, [QtCore QtGui >= 4.4.0], [
3777     VLC_ADD_PLUGIN([qt4])
3778     VLC_ADD_LIBS([qt4],[${QT4_LIBS}])
3779     VLC_ADD_CXXFLAGS([qt4],[${QT4_CFLAGS}])
3780     ALIASES="${ALIASES} qvlc"
3781
3782     AC_LANG_PUSH([C++])
3783     CPPFLAGS_save="${CPPFLAGS}"
3784
3785     AC_MSG_CHECKING([whether Qt uses X11])
3786     CPPFLAGS="${CPPFLAGS} ${QT4_CFLAGS}"
3787     AC_PREPROC_IFELSE([
3788 #include <QWidget>
3789 #if !defined (Q_WS_X11)
3790 # error Fail
3791 #endif
3792     ], [
3793       AC_MSG_RESULT([yes])
3794       VLC_ADD_LIBS([qt4],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3795       need_xid_provider="no"
3796       VLC_ADD_CXXFLAGS([qt4],[${X_CFLAGS}])
3797     ], [
3798       AC_MSG_RESULT([no])
3799     ])
3800
3801     CPPFLAGS="${CPPFLAGS_save}"
3802     AC_LANG_POP([C++])
3803
3804     AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
3805         VLC_ADD_LIBS([qt4],[-lole32])
3806     ])
3807     AS_IF([test "${SYS}" = "darwin" ],[
3808          VLC_ADD_LDFLAGS([qt4], [-Wl,-framework,Cocoa])
3809     ])
3810     AC_PATH_PROGS(MOC, [moc-qt4 moc], moc,`eval $PKG_CONFIG --variable=exec_prefix QtCore`/bin)
3811     AC_PATH_PROG(RCC, rcc, rcc,`eval $PKG_CONFIG --variable=exec_prefix QtCore`/bin)
3812     AC_PATH_PROGS(UIC, [uic-qt4 uic], uic,`eval $PKG_CONFIG --variable=exec_prefix QtCore`/bin)
3813   ], [
3814     AS_IF([test "${enable_qt4}" = "yes"],[
3815       AC_MSG_ERROR([Qt 4 library not found])
3816     ],[
3817       AC_MSG_WARN([Qt 4 library not found])
3818     ])
3819     enable_qt4="no"
3820   ])
3821 ])
3822 AM_CONDITIONAL(ENABLE_QT4, [test "x$enable_qt4" != "xno"])
3823
3824 dnl
3825 dnl Simple test for skins2 dependency
3826 dnl
3827 AS_IF([test "${enable_skins2}" != "no" && test "x$enable_qt4" = "xno"], [
3828   AC_MSG_ERROR([The skins2 module depends on a the Qt4 development package. Without it you won't be able to open any dialog box from the interface, which makes the skins2 interface rather useless. Install the Qt4 development package or alternatively you can also configure with: --disable-qt4 --disable-skins2.])
3829 ])
3830
3831 dnl
3832 dnl  MacOS X video output/gui modules
3833 dnl
3834 AC_ARG_ENABLE(macosx,
3835   [  --enable-macosx         Mac OS X gui support (default enabled on Mac OS X)])
3836 if test "x${enable_macosx}" = "xyes"
3837 then
3838   VLC_ADD_LDFLAGS([macosx minimal_macosx],[-Wl,-framework,Cocoa])
3839   VLC_ADD_LDFLAGS([macosx minimal_macosx],[-Wl,-framework,OpenGL])
3840   VLC_ADD_LDFLAGS([macosx minimal_macosx],            [-Wl,-framework,Carbon])
3841   VLC_ADD_LDFLAGS([macosx minimal_macosx],            [-Wl,-framework,CoreServices])
3842   VLC_ADD_LDFLAGS([macosx minimal_macosx],            [-Wl,-framework,AGL])
3843   VLC_ADD_LDFLAGS([macosx],                           [-Wl,-framework,IOKit])
3844   VLC_ADD_LDFLAGS([macosx],                           [-F${CONTRIB_DIR}/Sparkle -Wl,-framework,Sparkle])
3845   VLC_ADD_OBJCFLAGS([macosx],                         [-F${CONTRIB_DIR}/Sparkle])
3846   VLC_ADD_LDFLAGS([macosx],                           [-F${CONTRIB_DIR}/BWToolKit -Wl,-framework,BWToolKitFramework])
3847   VLC_ADD_OBJCFLAGS([macosx],                         [-F${CONTRIB_DIR}/BWToolKit])
3848   dnl For bug report
3849   VLC_ADD_LDFLAGS([macosx],                           [-Wl,-framework,AddressBook])
3850   VLC_ADD_LDFLAGS([macosx],                           [-Wl,-framework,WebKit])
3851   VLC_ADD_OBJCFLAGS([macosx minimal_macosx], [-fobjc-exceptions] )
3852
3853   VLC_ADD_PLUGIN([macosx minimal_macosx])
3854 fi
3855
3856 dnl
3857 dnl  MacOS X related modules
3858 dnl
3859
3860 AC_ARG_ENABLE(macosx-vout,
3861   [  --enable-macosx-vout    Mac OS X video output module (default enabled on Mac OS X)])
3862 if test "x${enable_macosx_vout}" != "xno" &&
3863   (test "${SYS}" = "darwin" || test "${enable_macosx_vout}" = "yes")
3864 then
3865   VLC_ADD_LDFLAGS([vout_macosx],[-Wl,-framework,Cocoa])
3866   VLC_ADD_LDFLAGS([vout_macosx],[-Wl,-framework,OpenGL])
3867   VLC_ADD_PLUGIN([vout_macosx])
3868 fi
3869
3870 AC_ARG_ENABLE(macosx-dialog-provider,
3871   [  --enable-macosx-dialog-provider Mac OS X dialog module (default enabled on Mac OS X)])
3872 if test "x${enable_macosx_dialog_provider}" != "xno" &&
3873   (test "${SYS}" = "darwin" || test "${enable_macosx_dialog_provider}" = "yes")
3874 then
3875   VLC_ADD_LDFLAGS([macosx_dialog_provider],[-Wl,-framework,Cocoa])
3876   VLC_ADD_PLUGIN([macosx_dialog_provider])
3877 fi
3878
3879 AC_ARG_ENABLE(macosx-qtcapture,
3880   [  --enable-macosx-qtcapture Mac OS X qtcapture (iSight) module (default enabled on Mac OS X)])
3881 if test "x${enable_macosx_qtcapture}" != "xno" &&
3882   (test "${SYS}" = "darwin" || test "${enable_macosx_qtcapture}" = "yes")
3883 then
3884   VLC_ADD_LDFLAGS([qtcapture], [-Wl,-framework,Cocoa])
3885   VLC_ADD_LDFLAGS([qtcapture], [-Wl,-framework,QTKit])
3886   VLC_ADD_LDFLAGS([qtcapture], [-Wl,-framework,CoreAudio])
3887   VLC_ADD_LDFLAGS([qtcapture], [-Wl,-framework,QuartzCore])
3888   VLC_ADD_LDFLAGS([qtcapture], [-Wl,-framework,CoreVideo])
3889   VLC_ADD_PLUGIN([qtcapture])
3890 fi
3891
3892 AC_ARG_ENABLE(macosx-eyetv,
3893   [  --enable-macosx-eyetv   Mac OS X EyeTV (TNT Tuner) module (default enabled on Mac OS X)])
3894 if test "x${enable_macosx_eyetv}" != "xno" &&
3895   (test "${SYS}" = "darwin" || test "${enable_macosx_eyetv}" = "yes")
3896 then
3897   VLC_ADD_LDFLAGS([access_eyetv], [-Wl,-framework,Foundation])
3898   VLC_ADD_PLUGIN([access_eyetv])
3899 fi
3900
3901 AC_ARG_ENABLE(macosx-vlc-app,
3902   [  --enable-macosx-vlc-app build the VLC media player (default enabled on Mac OS X)])
3903 AM_CONDITIONAL(BUILD_MACOSX_VLC_APP, [test "${enable_macosx_vlc_app}" != "no" &&
3904     (test "${SYS}" = "darwin" || test "${enable_macosx_vlc_app}" = "yes") ])
3905
3906
3907 dnl
3908 dnl  ncurses module
3909 dnl
3910 AC_ARG_ENABLE(ncurses,
3911   [  --disable-ncurses       ncurses interface support (default disabled)],
3912   [if test "${enable_ncurses}" != "no"; then
3913     AC_CHECK_HEADER(ncurses.h,
3914       [AC_CHECK_LIB(ncursesw, mvprintw,
3915         [VLC_ADD_PLUGIN([ncurses])
3916         VLC_ADD_LIBS([ncurses],[-lncursesw])
3917         ALIASES="${ALIASES} nvlc"
3918         AC_CHECK_LIB(ncursesw, tgetent, [],
3919           AC_CHECK_LIB(tinfow, tgetent, [VLC_ADD_LIBS([ncurses],[-ltinfow])],
3920             [AC_CHECK_LIB(tinfo, tgetent, [VLC_ADD_LIBS([ncurses],[-ltinfo])],
3921               [AS_IF([test "${enable_ncurses}" = "yes"],
3922                 [AC_MSG_ERROR([tgetent not found in ncursesw tinfow tinfo]
3923                )])])
3924             ]
3925           )
3926         )
3927         ],
3928           [AS_IF([test "${enable_ncurses}" = "yes"], [
3929             AC_MSG_ERROR([libncursesw not found])])]
3930         )],
3931         [AS_IF([test "${enable_ncurses}" = "yes"], [
3932           AC_MSG_ERROR([ncurses.h not found])])]
3933         )
3934   fi]
3935 )
3936
3937 dnl
3938 dnl  XOSD plugin
3939 dnl
3940 AC_ARG_ENABLE(xosd,
3941   [  --enable-xosd           xosd interface support (default disabled)])
3942 if test "${enable_xosd}" = "yes"
3943 then
3944   AC_CHECK_HEADERS(xosd.h,
3945     AC_CHECK_LIB(xosd, xosd_set_horizontal_offset, [
3946       VLC_ADD_PLUGIN([xosd])
3947       VLC_ADD_LIBS([xosd],[-lxosd])
3948     ])
3949   )
3950 fi
3951
3952 dnl
3953 dnl Framebuffer (overlay) plugin
3954 dnl
3955 AC_ARG_ENABLE(fbosd,
3956   [  --enable-fbosd          fbosd interface support (default disabled)])
3957 if test "${enable_fbosd}" = "yes"
3958 then
3959   AC_CHECK_HEADERS(linux/fb.h, [
3960     VLC_ADD_PLUGIN([fbosd])
3961  ])
3962 fi
3963
3964 dnl
3965 dnl Post-interface configuration checks
3966 dnl
3967 AS_IF([test "$need_xid_provider" = "yes"], [
3968   AC_MSG_ERROR([X11 video outputs need a window provider (Qt4, Skins2, Hildon or xcb-utils), but none were found. Please install xcb-keysyms.])
3969 ])
3970
3971 dnl
3972 dnl Visualisation plugin
3973 dnl
3974 AC_ARG_ENABLE(visual,
3975   [  --enable-visual         visualisation plugin (default enabled)])
3976 if test "${enable_visual}" != "no"
3977 then
3978     VLC_ADD_PLUGIN([visual])
3979 fi
3980
3981 dnl
3982 dnl  goom visualization plugin
3983 dnl
3984 PKG_ENABLE_MODULES_VLC([GOOM], [], [libgoom2], [goom visualization plugin], [auto])
3985
3986 dnl
3987 dnl libprojectM visualization plugin
3988 dnl
3989 AC_ARG_ENABLE(projectm,
3990   [  --enable-projectm          projectM visualization plugin (default enabled)])
3991 AS_IF([test "${enable_projectm}" != "no"],
3992   [
3993     PKG_CHECK_MODULES(PROJECTM, libprojectM,
3994     [
3995       VLC_ADD_PLUGIN([projectm])
3996       VLC_ADD_CXXFLAGS([projectm],[$PROJECTM_CFLAGS])
3997       VLC_ADD_LIBS([projectm],[$PROJECTM_LIBS])
3998       PKG_CHECK_MODULES(PROJECTM2, [libprojectM >= 2.0.0],
3999         [ AC_DEFINE([HAVE_PROJECTM2], 1, [Define to 1 if using libprojectM 2.x]) ],
4000         [ AC_MSG_WARN( [Using libprojectM version 1] )
4001       ])
4002     ],[
4003       AC_MSG_WARN([libprojectM library not found])
4004     ])
4005   ])
4006
4007 dnl
4008 dnl  AtmoLight (homemade Philips Ambilight clone)
4009 dnl
4010 AC_ARG_ENABLE(atmo,
4011 AS_HELP_STRING([--disable-atmo],[AtmoLight (homemade Philips Ambilight clone)
4012                 (default enabled)]),, [enable_atmo="yes"])
4013 AS_IF([test "${enable_atmo}" != no], [
4014   AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "linux"], [
4015     AC_LANG_PUSH(C++)
4016     VLC_ADD_PLUGIN([atmo])
4017     AC_LANG_POP(C++)
4018   ])
4019 ])
4020
4021 dnl
4022 dnl  Bonjour services discovery
4023 PKG_ENABLE_MODULES_VLC([BONJOUR], [], [avahi-client >= 0.6], [Bonjour services discovery], [auto])
4024
4025 dnl
4026 dnl  libudev services discovery
4027 PKG_ENABLE_MODULES_VLC([UDEV], [], [libudev >= 142], [Linux udev services discovery], [auto])
4028
4029 dnl
4030 dnl MTP devices services discovery
4031 PKG_ENABLE_MODULES_VLC([MTP], [mtp access_mtp], [libmtp >= 1.0.0], [MTP devices support], [auto])
4032
4033 dnl
4034 dnl  Lirc plugin
4035 dnl
4036 AC_ARG_ENABLE(lirc,
4037   [  --enable-lirc           lirc support (default disabled)])
4038 if test "${enable_lirc}" = "yes"
4039 then
4040   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
4041   if test "${have_lirc}" = "true"
4042   then
4043     VLC_ADD_PLUGIN([lirc])
4044     VLC_ADD_LIBS([lirc],[-llirc_client])
4045   fi
4046 fi
4047
4048 EXTEND_HELP_STRING([Misc options:])
4049
4050 dnl
4051 dnl libgcrypt
4052 dnl
4053 AC_ARG_ENABLE(libgcrypt,
4054   [  --disable-libgcrypt     gcrypt support (default enabled)])
4055 AS_IF([test "${enable_libgcrypt}" != "no"], [
4056   AC_CHECK_DECL([GCRYCTL_SET_THREAD_CBS], [
4057     libgcrypt-config --version >/dev/null || \
4058         AC_MSG_ERROR([gcrypt.h present but libgcrypt-config could not be found])
4059     AC_CHECK_LIB(gcrypt, gcry_control, [
4060       have_libgcrypt="yes"
4061       GCRYPT_CFLAGS="`libgcrypt-config --cflags`"
4062       GCRYPT_LIBS="`libgcrypt-config --libs`"
4063     ], [
4064       AC_MSG_ERROR([libgcrypt not found. Install libgcrypt or use --disable-libgcrypt. Have a nice day.])
4065     ], [`libgcrypt-config --libs`])
4066   ], [
4067     AC_MSG_ERROR([libgcrypt version 1.1.94 or higher not found. Install libgcrypt or use --disable-libgcrypt. Have a nice day.])
4068   ], [#include <gcrypt.h>]
4069   )
4070 ])
4071
4072 if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"; then
4073   AS_IF([test "${have_libgcrypt}" = "yes"],[
4074     VLC_ADD_LIBS([rtp stream_out_rtp], [${GCRYPT_LIBS}])
4075   ])
4076 fi
4077 AC_SUBST(GCRYPT_CFLAGS)
4078 AC_SUBST(GCRYPT_LIBS)
4079 AM_CONDITIONAL([HAVE_GCRYPT], [test "${have_libgcrypt}" = "yes"])
4080
4081 dnl
4082 dnl TLS/SSL
4083 dnl
4084 AC_ARG_ENABLE(gnutls,
4085   [  --enable-gnutls         gnutls TLS/SSL support (default enabled)])
4086
4087 AS_IF([test "${have_libgcrypt}" != "yes"], [
4088   AS_IF([test "${enable_gnutls}" = "yes"], [
4089     AC_MSG_ERROR([--enable-gnutls and --disable-libgcrypt are mutually exclusive.])
4090   ])
4091   enable_gnutls="no"
4092 ])
4093 AS_IF([test "${enable_gnutls}" != "no"], [
4094   PKG_CHECK_MODULES(GNUTLS, [gnutls >= 1.7.4], [
4095     VLC_ADD_PLUGIN([gnutls])
4096     VLC_ADD_CFLAGS([gnutls], [$GNUTLS_CFLAGS])
4097     AS_IF([test "${SYS}" = "mingw32"], [
4098       dnl pkg-config --libs gnutls omits these
4099       VLC_ADD_LIBS([gnutls], [-lz ${LTLIBINTL}])
4100     ])
4101     dnl The GnuTLS plugin invokes gcry_control directly.
4102     AS_IF([test "${have_libgcrypt}" = "yes"],[
4103       VLC_ADD_LIBS([gnutls], [${GCRYPT_LIBS}])
4104       VLC_ADD_CFLAGS([gnutls], [${GCRYPT_CFLAGS}])
4105     ])
4106     VLC_ADD_LIBS([gnutls], [$GNUTLS_LIBS])
4107   ], [
4108     AS_IF([test "${enable_gnutls}" = "yes"], [
4109       AC_MSG_ERROR([gnutls not present or too old (version 1.7.4 required)])
4110     ])
4111   ])
4112 ])
4113
4114
4115 dnl
4116 dnl RemoteOSD plugin (VNC client as video filter)
4117 dnl
4118 AC_ARG_ENABLE(remoteosd,
4119   [  --disable-remoteosd     RemoteOSD plugin (default enabled)])
4120
4121 AS_IF([test "${enable_remoteosd}" != "no"], [
4122   AS_IF([test "${have_libgcrypt}" = "yes"],[
4123     VLC_ADD_PLUGIN([remoteosd])
4124     VLC_ADD_LIBS([remoteosd], ${GCRYPT_LIBS})
4125     VLC_ADD_CFLAGS([remoteosd], ${GCRYPT_CFLAGS})
4126   ], [
4127     AC_MSG_ERROR([libgcrypt support required for RemoteOSD plugin])
4128   ])
4129 ])
4130
4131
4132 dnl
4133 dnl RAOP plugin
4134 dnl
4135 AC_MSG_CHECKING([whether to enable RAOP plugin])
4136 AS_IF([test "${have_libgcrypt}" = "yes"], [
4137   AC_MSG_RESULT(yes)
4138   VLC_ADD_PLUGIN([stream_out_raop])
4139   VLC_ADD_LIBS([stream_out_raop], [${GCRYPT_LIBS} -lgpg-error])
4140   VLC_ADD_CFLAGS([stream_out_raop], [${GCRYPT_CFLAGS}])
4141 ], [
4142   AC_MSG_RESULT(no)
4143   AC_MSG_WARN([libgcrypt support required for RAOP plugin])
4144 ])
4145
4146
4147 dnl
4148 dnl OSSO (Maemo screen blanking) plugin
4149 dnl
4150 PKG_ENABLE_MODULES_VLC([OSSO_SCREENSAVER], [], [libosso], [Maemo support], [auto])
4151
4152 AS_IF([test -f "/etc/maemo_version"], [
4153   AC_DEFINE([HAVE_MAEMO], 1, [Define to 1 if building for the Maemo platform.])
4154 ])
4155
4156
4157 dnl
4158 dnl update checking system
4159 dnl
4160 AC_ARG_ENABLE(update-check,
4161   [  --enable-update-check   update checking system (default disabled)])
4162 if test "${enable_update_check}" = "yes"
4163 then
4164   if test "${have_libgcrypt}" != "yes"
4165   then
4166     AC_MSG_ERROR([libgcrypt is required for update checking system])
4167   fi
4168   VLC_ADD_LIBS([libvlccore], [${GCRYPT_LIBS}])
4169   VLC_ADD_CFLAGS([libvlccore], [${GCRYPT_CFLAGS}])
4170   AC_DEFINE([UPDATE_CHECK], 1, [Define if you want to use the VLC update mechanism])
4171 fi
4172
4173 dnl
4174 dnl SQLite
4175 dnl
4176 AC_ARG_WITH(sqlite,
4177   [  --with-sqlite=PATH      sqlite path linking])
4178 if test "${SYS}" != "darwin"; then
4179   PKG_ENABLE_MODULES_VLC([SQLITE], [], [sqlite3 >= 3.6.0], [sqlite3], [auto])
4180 else
4181   if test "${enable_sqlite}" != "no"
4182   then
4183     AC_CHECK_HEADERS(sqlite3.h, [
4184         VLC_ADD_PLUGIN([sqlite])
4185         if test "${with_sqlite}" != "no" -a -n "${with_sqlite}"; then
4186           AC_MSG_CHECKING(existence of sqlite directory in ${with_sqlite})
4187           real_sqlite="`cd ${with_sqlite} 2>/dev/null && pwd`"
4188           if test -z "${real_sqlite}"
4189           then
4190             dnl  The given directory can't be found
4191             AC_MSG_RESULT(no)
4192             AC_MSG_ERROR([cannot cd to ${with_sqlite}])
4193           fi
4194           VLC_ADD_CFLAGS([sqlite],[-I${with_sqlite}/include])
4195           VLC_ADD_LIBS([sqlite], [-L${with_sqlite}/lib -lsqlite3])
4196           AC_MSG_RESULT(yes)
4197         else
4198           VLC_ADD_LIBS([sqlite], [-lsqlite3])
4199         fi
4200         AC_DEFINE([SQLITE_MODULE], 1, [Define if you want to use SQLite module]) ],
4201         AC_MSG_ERROR([sqlite3 is required for sqlite module]) )
4202   fi
4203 fi
4204 AM_CONDITIONAL([HAVE_SQLITE], [test "${enable_sqlite}" != "no"])
4205
4206 dnl
4207 dnl media library
4208 dnl
4209 AC_ARG_ENABLE(media-library, [--enable-media-library media library (default disabled)])
4210 if test "${enable_media_library}" == "yes"; then
4211     if test "${enable_sqlite}" != "yes"; then
4212         if test "${enable_media_library}" == "yes"; then
4213             AC_MSG_ERROR([SQLite module is required for the media library])
4214         else
4215             AC_MSG_WARN([SQLite module is required for the media library])
4216         fi
4217     else
4218        AC_DEFINE([MEDIA_LIBRARY], 1, [Define if you want to use the VLC media library])
4219        VLC_ADD_CPPFLAGS([qt4],"-DMEDIA_LIBRARY")
4220        VLC_ADD_PLUGIN([media_library])
4221     fi
4222 fi
4223 AM_CONDITIONAL([ENABLE_MEDIA_LIBRARY], [test "${enable_media_library}" = "yes"])
4224
4225 dnl
4226 dnl  Endianness check
4227 dnl
4228 AC_C_BIGENDIAN
4229 AS_IF([test "${ac_cv_c_bigendian}" = "yes"], [
4230   DEFS_BIGENDIAN="-DWORDS_BIGENDIAN=1"
4231 ], [
4232   DEFS_BIGENDIAN=""
4233 ])
4234 AC_SUBST(DEFS_BIGENDIAN)
4235
4236 dnl
4237 dnl Where to install KDE solid .desktop
4238 dnl
4239 AC_ARG_VAR([KDE4_CONFIG], [kde4-config utility])
4240 AS_IF([test "x$KDE4_CONFIG" = "x"], [
4241   KDE4_CONFIG="kde4-config"
4242 ])
4243
4244 AC_ARG_WITH(kde-solid,
4245   AS_HELP_STRING([--with-kde-solid=PATH],
4246                  [KDE Solid actions directory (auto)]),, [
4247
4248 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ; then
4249   with_kde_solid="yes"
4250 fi
4251 ])
4252 soliddatadir=""
4253 AS_IF([test "${with_kde_solid}" != "no"], [
4254   AS_IF([test "${with_kde_solid}" = "yes"], [
4255     kde4datadir="`${KDE4_CONFIG} --install data`"
4256     AS_IF([test "x$kde4datadir" = "x"], [kde4datadir='${datadir}/kde4/apps'])
4257     soliddatadir="${kde4datadir}/solid/actions"
4258   ], [
4259     soliddatadir="${with_kde_solid}"
4260   ])
4261 ])
4262 AC_SUBST(soliddatadir)
4263 AM_CONDITIONAL(KDE_SOLID, [test "x${soliddatadir}" != "x"])
4264
4265 dnl
4266 dnl  DLL loader copied from MPlayer copied from somewhere else (WINE ?)
4267 dnl
4268 loader=false
4269 AC_ARG_ENABLE(loader,
4270   AS_HELP_STRING([--enable-loader],[build DLL loader for ELF i386 platforms
4271                   (default disabled)]))
4272 AM_CONDITIONAL(LOADER, [test "${enable_loader}" = "yes"])
4273 AS_IF([test "${enable_loader}" = "yes"],
4274   [ VLC_ADD_PLUGIN([dmo])
4275     VLC_ADD_CPPFLAGS([dmo quicktime realvideo],[-I\\\${top_srcdir}/libs/loader])
4276     VLC_ADD_LIBS([dmo quicktime realvideo],[\\\${top_builddir}/libs/loader/libloader.la])
4277     VLC_ADD_CPPFLAGS([realvideo], [-DLOADER])
4278     VLC_ADD_LIBS([dmo quicktime], [-lpthread])
4279   ])
4280
4281 EXTEND_HELP_STRING([Components:])
4282
4283 dnl
4284 dnl  the VLC binary
4285 dnl
4286 AC_ARG_ENABLE(vlc,
4287   [  --enable-vlc            build the VLC media player (default enabled)])
4288 AM_CONDITIONAL(BUILD_VLC, [test "${enable_vlc}" != "no"])
4289
4290
4291 dnl
4292 dnl  Plugin and builtin checks
4293 dnl
4294 plugin_support=yes
4295
4296 dnl Automagically disable plugins if there is no system support for
4297 dnl dynamically loadable files (.so, .dll, .dylib).
4298 dnl don't forget vlc-win32 still can load .dll as plugins
4299 AS_IF([test "${ac_cv_have_plugins}" = "no"], [
4300   AC_MSG_WARN([*** No plugin support! Building statically! ***])
4301   plugin_support=no
4302 ])
4303
4304 AS_IF([test "${plugin_support}" != "no"], [
4305   AC_DEFINE(HAVE_DYNAMIC_PLUGINS, 1, [Define if dynamic plugins are supported])
4306 ])
4307
4308 dnl
4309 dnl Pic and shared libvlc stuff
4310 dnl
4311 AS_IF([test "${SYS}" = "mingw32"], [
4312   FILE_LIBVLCCORE_DLL="!define LIBVLCCORE_DLL libvlccore.dll"
4313   FILE_LIBVLC_DLL="!define LIBVLC_DLL libvlc.dll"
4314 ])
4315
4316 dnl
4317 dnl  Stuff used by the program
4318 dnl
4319 VERSION_MESSAGE="${VERSION} ${CODENAME}"
4320 COPYRIGHT_MESSAGE="Copyright © ${COPYRIGHT_YEARS} the VideoLAN team"
4321 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION_MESSAGE}", [Simple version string])
4322 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "${COPYRIGHT_MESSAGE}", [Copyright string])
4323 AC_DEFINE_UNQUOTED(COPYRIGHT_YEARS, "${COPYRIGHT_YEARS}", [The copyright years])
4324 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4325 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,"${VERSION_MAJOR}", [version major number])
4326 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,"${VERSION_MINOR}", [version minor number])
4327 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,"${VERSION_REVISION}", [version minor number])
4328 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,"${VERSION_EXTRA}", [version minor number])
4329 AC_SUBST(COPYRIGHT_MESSAGE)
4330 AC_SUBST(VERSION_MESSAGE)
4331 AC_SUBST(VERSION_MAJOR)
4332 AC_SUBST(VERSION_MINOR)
4333 AC_SUBST(VERSION_REVISION)
4334 AC_SUBST(VERSION_EXTRA)
4335 AC_SUBST(COPYRIGHT_YEARS)
4336 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami`", [user who ran configure])
4337 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname -f 2>/dev/null || hostname`", [host which ran configure])
4338 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1`", [compiler])
4339 dnl Win32 need s a numerical version_extra.
4340 case $( echo ${VERSION_EXTRA}|wc -m ) in
4341        "1") VERSION_EXTRA_RC="0";;
4342        "2") VERSION_EXTRA_RC=$( echo ${VERSION_EXTRA}|tr "abcdefghi" "123456789") ;;
4343        *) VERSION_EXTRA_RC="99"
4344 esac
4345 AC_SUBST(VERSION_EXTRA_RC)
4346 dnl
4347 dnl  Handle substvars that use $(top_srcdir)
4348 dnl
4349 VLC_CONFIG="top_srcdir=\"\$(top_srcdir)\" top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config"
4350 AC_SUBST(VLC_CONFIG)
4351 CPPFLAGS_save="-I\$(top_srcdir)/include -I\$(top_builddir)/include ${CPPFLAGS_save}"
4352
4353 dnl
4354 dnl  Restore *FLAGS
4355 dnl
4356 VLC_RESTORE_FLAGS
4357
4358 dnl
4359 dnl Sort the modules list
4360 dnl
4361 PLUGINS=$( (for i in `echo $PLUGINS`; do echo $i; done)|sort|xargs )
4362
4363 dnl
4364 dnl  Create the vlc-config script
4365 dnl
4366 LDFLAGS_libvlc="${LDFLAGS_libvlc} ${LDFLAGS_builtin}"
4367
4368 dnl
4369 dnl  Configuration is finished
4370 dnl
4371 AC_SUBST(SYS)
4372 AC_SUBST(ARCH)
4373 AC_SUBST(ALIASES)
4374 AC_SUBST(ASM)
4375 AC_SUBST(MOC)
4376 AC_SUBST(RCC)
4377 AC_SUBST(UIC)
4378 AC_SUBST(WINDRES)
4379 AC_SUBST(WINE_SDK_PATH)
4380 AC_SUBST(LIBEXT)
4381 AC_SUBST(AM_CPPFLAGS)
4382 AC_SUBST(MACOSX_DEPLOYMENT_TARGET)
4383 AC_SUBST(FILE_LIBVLCCORE_DLL)
4384 AC_SUBST(FILE_LIBVLC_DLL)
4385
4386 dnl Create vlc-config.in
4387 VLC_OUTPUT_VLC_CONFIG_IN
4388
4389 AC_CONFIG_FILES([
4390   Makefile
4391   doc/Makefile
4392   libs/loader/Makefile
4393   libs/srtp/Makefile
4394   libs/unzip/Makefile
4395   modules/Makefile
4396   m4/Makefile
4397   po/Makefile.in
4398   share/Makefile
4399   compat/Makefile
4400   src/Makefile
4401   src/test/Makefile
4402   bin/Makefile
4403   test/Makefile
4404   modules/access/Makefile
4405   modules/access/bd/Makefile
4406   modules/access/bda/Makefile
4407   modules/access/dshow/Makefile
4408   modules/access/dvb/Makefile
4409   modules/access/mms/Makefile
4410   modules/access/rtp/Makefile
4411   modules/access/rtsp/Makefile
4412   modules/access/vcd/Makefile
4413   modules/access/vcdx/Makefile
4414   modules/access/screen/Makefile
4415   modules/access/zip/Makefile
4416   modules/access_output/Makefile
4417   modules/audio_filter/Makefile
4418   modules/audio_filter/channel_mixer/Makefile
4419   modules/audio_filter/converter/Makefile
4420   modules/audio_filter/resampler/Makefile
4421   modules/audio_filter/spatializer/Makefile
4422   modules/audio_mixer/Makefile
4423   modules/audio_output/Makefile
4424   modules/codec/Makefile
4425   modules/codec/avcodec/Makefile
4426   modules/codec/dmo/Makefile
4427   modules/codec/omxil/Makefile
4428   modules/codec/shine/Makefile
4429   modules/codec/spudec/Makefile
4430   modules/codec/wmafixed/Makefile
4431   modules/control/Makefile
4432   modules/control/http/Makefile
4433   modules/control/dbus/Makefile
4434   modules/control/globalhotkeys/Makefile
4435   modules/demux/Makefile
4436   modules/demux/asf/Makefile
4437   modules/demux/avformat/Makefile
4438   modules/demux/avi/Makefile
4439   modules/demux/mkv/Makefile
4440   modules/demux/mp4/Makefile
4441   modules/demux/mpeg/Makefile
4442   modules/demux/playlist/Makefile
4443   modules/gui/Makefile
4444   modules/gui/macosx/Makefile
4445   modules/gui/hildon/Makefile
4446   modules/gui/minimal_macosx/Makefile
4447   modules/gui/macosx_dialog_provider/Makefile
4448   modules/gui/qt4/Makefile
4449   modules/gui/skins2/Makefile
4450   modules/meta_engine/Makefile
4451   modules/misc/Makefile
4452   modules/misc/dummy/Makefile
4453   modules/misc/lua/Makefile
4454   modules/misc/notify/Makefile
4455   modules/misc/playlist/Makefile
4456   modules/misc/osd/Makefile
4457   modules/misc/stats/Makefile
4458   modules/media_library/Makefile
4459   modules/mux/Makefile
4460   modules/mux/mpeg/Makefile
4461   modules/packetizer/Makefile
4462   modules/services_discovery/Makefile
4463   modules/stream_filter/Makefile
4464   modules/stream_out/Makefile
4465   modules/stream_out/transcode/Makefile
4466   modules/video_chroma/Makefile
4467   modules/video_filter/Makefile
4468   modules/video_filter/dynamicoverlay/Makefile
4469   modules/video_output/Makefile
4470   modules/video_output/msw/Makefile
4471   modules/visualization/Makefile
4472   modules/visualization/visual/Makefile
4473   modules/mmx/Makefile
4474   modules/mmxext/Makefile
4475   modules/3dnow/Makefile
4476   modules/sse2/Makefile
4477   modules/altivec/Makefile
4478   modules/arm_neon/Makefile
4479 ])
4480
4481 AM_COND_IF([HAVE_WIN32], [
4482   AC_CONFIG_FILES([
4483     extras/package/win32/spad.nsi
4484     extras/package/win32/vlc.win32.nsi
4485   ])
4486 ])
4487
4488 AM_COND_IF([HAVE_DARWIN], [
4489   AC_CONFIG_FILES([
4490     extras/package/macosx/Info.plist
4491     extras/package/macosx/Resources/English.lproj/InfoPlist.strings
4492   ])
4493 ])
4494
4495 dnl Generate makefiles
4496 AC_OUTPUT
4497
4498 # Cannot use AC_CONFIG_FILES([vlc-config]) as is automatically built,
4499 # not provided with the source
4500 ${SHELL} ./config.status --file=vlc-config
4501 chmod 0755 vlc-config
4502
4503 /bin/echo -n "Enabled modules: "
4504 ./vlc-config --list plugin
4505
4506 dnl Do we have to use make or gmake ?
4507 USE_MAKE_OR_GMAKE=`case "${SYS}" in openbsd*) echo "gmake";; *) echo "make";; esac`
4508 dnl Shortcut to nice compile message
4509 rm -f compile
4510 if test -n $SHELL; then
4511   SHELL=${CONFIG_SHELL-/bin/sh}
4512 fi
4513 echo '#! '$SHELL >compile
4514 echo rm -f .error\$\$ >>compile
4515 echo ERROR=0 >>compile
4516 echo export PATH=$PATH LANG=C >>compile
4517 echo "($USE_MAKE_OR_GMAKE V=1 \$@ 2>&1 || touch .error\$\$)| \\" >>compile
4518 echo '`sed -ne "s/^top_srcdir *= *//p" < Makefile`/extras/buildsystem/make.pl' >>compile
4519 echo test -f .error\$\$ \&\& ERROR=1 >>compile
4520 echo rm -f .error\$\$ >>compile
4521 echo exit \$ERROR >>compile
4522 chmod a+x compile
4523
4524 printf "
4525 libvlc configuration
4526 --------------------
4527 version               : ${VERSION}
4528 system                : ${SYS}
4529 architecture          : ${ARCH}
4530 build flavour         : "
4531 test "${enable_debug}" = "yes" && printf "debug "
4532 test "${enable_cprof}" = "yes" && printf "cprof "
4533 test "${enable_gprof}" = "yes" && printf "gprof "
4534 test "${enable_optimizations}" = "yes" && printf "optim "
4535 echo ""
4536 if test "${enable_vlc}" != "no"; then
4537 echo "vlc aliases           :${ALIASES}"
4538 else
4539 echo "build vlc executable  : no"
4540 fi
4541 echo "plugins/bindings      :${PLUGINS_BINDINGS}
4542
4543 You can tune the compiler flags in vlc-config.
4544 To build vlc and its plugins, type \`./compile' or \`$USE_MAKE_OR_GMAKE'.
4545 "
4546 if test "x$ac_ld_does_not_support_text_reloc" = "xyes"; then
4547    echo ""
4548    echo "Warning: Due to a bug in ld, mmx/sse support has been"
4549    echo "         turned off."
4550    echo "         FFmpeg will be REALLY slow."
4551    echo "         VLC WILL NOT PERFORM AS EXPECTED."
4552    echo ""
4553 fi