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