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