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