aout: use checked allocs in aout_DevicesList
[vlc.git] / configure.ac
blob81551eefdc97800e1ed0f593cc7406bfed418301
1 dnl Autoconf settings for vlc
3 AC_COPYRIGHT([Copyright 1999-2016 VLC authors and VideoLAN])
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
12 PKGDIR="vlc"
13 AC_SUBST(PKGDIR)
15 CONFIGURE_LINE="`echo "$0 $ac_configure_args" | sed -e 's/\\\/\\\\\\\/g'`"
16 CODENAME="Vetinari"
17 COPYRIGHT_YEARS="1996-2016"
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
27 AM_INIT_AUTOMAKE(tar-ustar color-tests foreign)
28 AC_CONFIG_HEADERS([config.h])
30 AM_SILENT_RULES([yes])
31 AM_MAINTAINER_MODE([enable])
33 dnl
34 dnl Directories
35 dnl
36 dnl vlcincludedir="\${includedir}/\${PKGDIR}"
37 dnl AC_SUBST(vlcincludedir)
38 vlcdatadir="\${datadir}/\${PKGDIR}"
39 AC_SUBST(vlcdatadir)
40 vlclibdir="\${libdir}/\${PKGDIR}"
41 AC_SUBST(vlclibdir)
43 dnl
44 dnl Check for tools
45 dnl
46 AC_PROG_CC_C99
47 AC_USE_SYSTEM_EXTENSIONS
48 VLC_PROG_CC_C11
49 AC_DEFINE([_FORTIFY_SOURCE], 2, [Define to 2 to get glibc warnings.])
50 AC_DEFINE([_FILE_OFFSET_BITS], 64, [Define to 64 for large files support.])
51 AH_TOP([
52 #ifndef _REENTRANT
53 # define _REENTRANT
54 #endif
56 AC_DEFINE([_THREAD_SAFE],, [Same as _REENTANT for some other OSes.])
57 AC_DEFINE([__LIBVLC__],, [Define within the LibVLC source code tree.])
58 AC_DEFINE([WIN32_LEAN_AND_MEAN],, [Define to limit the scope of <windows.h>.])
60 AM_PROG_CC_C_O
61 AC_PROG_CXX
62 AC_PROG_CPP
63 AC_PROG_OBJC
64 _AM_DEPENDENCIES([OBJC])
65 AC_PROG_EGREP
66 AC_PROG_MAKE_SET
67 AC_PROG_INSTALL
68 AM_PROG_AS
70 AC_ARG_VAR([DESKTOP_FILE_VALIDATE], [Validator for desktop entry files])
71 AC_CHECK_PROGS(DESKTOP_FILE_VALIDATE, [${DESKTOP_FILE_VALIDATE} desktop-file-validate], :)
72 AC_ARG_VAR([BUILDCC], [Build system C11 or C99 compiler command])
73 AC_CHECK_PROGS(BUILDCC, [c11-gcc c11 c99-gcc c99], [false])
74 AS_IF([test "$BUILDCC" = "false"], [
75   AC_MSG_ERROR([Cannot find native C99 compiler: please define BUILDCC.])
78 dnl Check for compiler properties
79 AC_C_CONST
80 AC_C_INLINE
81 AC_C_RESTRICT
82 AX_CXX_COMPILE_STDCXX_11(noext, optional)
84 dnl Extend the --help string at the current spot.
85 AC_DEFUN([EXTEND_HELP_STRING], [m4_divert_once([HELP_ENABLE], [$1])])
87 dnl Allow binary package maintainer to pass a custom string to avoid
88 dnl cache problem
89 AC_ARG_WITH(binary-version,
90     AS_HELP_STRING([--with-binary-version=STRING],
91          [To avoid plugins cache problem between binary version]),[],[])
92 AS_IF([test -n "${with_binary_version}"],[
93     AC_DEFINE_UNQUOTED([DISTRO_VERSION],["${with_binary_version}"],
94          [Binary specific version])
97 dnl
98 dnl  Check the operating system
99 dnl
100 HAVE_WIN64="0"
101 HAVE_IOS="0"
102 HAVE_OSX="0"
103 HAVE_TVOS="0"
105 case "${host_os}" in
106   "")
107     SYS=unknown
108     ;;
109   linux*)
110     SYS=linux
111     ;;
112   bsdi*)
113     SYS=bsdi
114     CFLAGS="${CFLAGS} -pthread"
115     ;;
116   freebsd*)
117     SYS=freebsd
118     CFLAGS="${CFLAGS} -pthread"
119     CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
120     LDFLAGS="${LDFLAGS} -L/usr/local/lib"
121     ;;
122   openbsd*)
123     SYS=openbsd
124     CPPFLAGS="${CPPFLAGS} -I/usr/local/include -I/usr/X11R6/include"
125     LDFLAGS="${LDFLAGS} -L/usr/local/lib -L/usr/X11R6/lib/"
126     ;;
127   netbsd*)
128     SYS=netbsd
129     ;;
130   dragonfly*)
131     SYS=dragonfly
132     ;;
133   darwin*)
135     dnl Force gcc "-arch" flag
136     ARCH_flag=""
137     case "${host}" in
138       i?86*)
139         ARCH_flag="-arch i386"
140       ;;
141       ppc64*)
142         ARCH_flag="-arch ppc64"
143       ;;
144       ppc*)
145         ARCH_flag="-arch ppc"
146       ;;
147       x86_64*)
148         ARCH_flag="-arch x86_64"
149       ;;
150       arm*)
151         ac_cv_c_bigendian="no"
152         ac_cv_c_attribute_packed="no"
153       ;;
154     esac
156     SYS=darwin
157     CFLAGS="${CFLAGS} -D_INTL_REDIRECT_MACROS -std=gnu11 ${ARCH_flag}"
158     CXX="${CXX} -stdlib=libc++ -std=c++11"
159     CXXFLAGS="${CXXFLAGS} -D_INTL_REDIRECT_MACROS ${ARCH_flag}"
160     CPPFLAGS="${CPPFLAGS} ${ARCH_flag}"
161     OBJCFLAGS="${OBJCFLAGS} -D_INTL_REDIRECT_MACROS -std=gnu11 ${ARCH_flag}"
162     LDFLAGS="${LDFLAGS} -Wl,-headerpad_max_install_names ${ARCH_flag}"
163     VLC_ADD_LIBS([libvlc vlc],[-Wl,-undefined,dynamic_lookup,-framework,AppKit])
164     VLC_ADD_LIBS([libvlccore],[-Wl,-framework,CoreFoundation,-framework,CoreServices])
166     AC_EGREP_CPP(yes,
167             [#import <TargetConditionals.h>
168              #if TARGET_OS_IPHONE
169              yes
170              #endif],
171              [HAVE_IOS="1"],
172              [HAVE_OSX="1"])
174     AC_EGREP_CPP(yes,
175             [#import <TargetConditionals.h>
176              #if TARGET_OS_TV
177              yes
178              #endif],
179              [HAVE_TVOS="1"
180              HAVE_IOS="0"
181              HAVE_OSX="0"
182              ],)
184     dnl Allow binaries created on Lion to run on earlier releases
185     AC_EGREP_CPP(yes,
186            [#import <Cocoa/Cocoa.h>
187             #ifdef MAC_OS_X_VERSION_10_7
188             yes
189             #endif],
190             [AC_MSG_RESULT([yes])
191             AC_LIBOBJ([getdelim])
192             AC_LIBOBJ([strndup])
193             AC_LIBOBJ([strnlen])],)
195     dnl
196     dnl  Handle Mac OS X SDK flags
197     dnl
198     AC_ARG_WITH(macosx-sdk,
199       [AS_HELP_STRING([--with-macosx-sdk=DIR],
200         [compile using the SDK in DIR])])
201     if test "${with_macosx_sdk}" != "" ; then
202         test ! -d "${with_macosx_sdk}" && AC_MSG_ERROR([SDK "${with_macosx_sdk}" not found])
203         CPP="${CPP} -isysroot ${with_macosx_sdk}"
204         CC="${CC} -isysroot ${with_macosx_sdk}"
205         CXX="${CXX} -isysroot ${with_macosx_sdk}"
206         OBJC="${OBJC} -isysroot ${with_macosx_sdk}"
207         LD="${LD} -syslibroot ${with_macosx_sdk}"
208     fi
209     AC_ARG_WITH(macosx-version-min,
210       [AS_HELP_STRING([--with-macosx-version-min=VERSION],
211         [compile for Mac OS X VERSION and above])])
212     if test "${with_macosx_version_min}" != "" ; then
213         CPP="${CPP} -mmacosx-version-min=${with_macosx_version_min}"
214         CC="${CC} -mmacosx-version-min=${with_macosx_version_min}"
215         CXX="${CXX} -mmacosx-version-min=${with_macosx_version_min}"
216         OBJC="${OBJC} -mmacosx-version-min=${with_macosx_version_min}"
217         LD="${LD} -mmacosx_version_min=${with_macosx_version_min}"
218     fi
219     ;;
220   *mingw32* | *cygwin* | *wince* | *mingwce*)
221     dnl Force libtool to not link to (shared) libgcc_s when detecting C++ dependencies
222     dnl When doing this test with -static-libgcc it will link on (static) libgcc_eh
223     CXXFLAGS="${CXXFLAGS} -static-libgcc"
224     AC_CHECK_TOOL(WINDRES, windres, :)
225     AC_CHECK_TOOL(OBJCOPY, objcopy, :)
226     AH_TOP([#if defined(_WIN32) && !defined(_WIN32_WINNT)])
227     AH_TOP([# define _WIN32_WINNT 0x0502 /* Windows XP SP2 */])
228     AH_TOP([#endif])
229     AC_DEFINE([_WIN32_IE], 0x0600, [Define to '0x0600' for IE 6.0 (and shell) APIs.])
230     AC_DEFINE([_UNICODE], [1], [Define to 1 for Unicode (Wide Chars) APIs.])
231     AC_DEFINE([UNICODE], [1], [Define to 1 for Unicode (Wide Chars) APIs.])
232     AC_DEFINE([_ISOC99_SOURCE], [1], [Extensions to ISO C89 from ISO C99.])
233     AC_DEFINE([_ISOC11_SOURCE], [1], [Extensions to ISO C99 from ISO C11.])
234     AC_DEFINE([_POSIX_SOURCE], [1], [IEEE Std 1003.1.])
235     AC_DEFINE([_POSIX_C_SOURCE], [200809L], [IEEE Std 1003.1.])
236     AC_DEFINE([_XOPEN_SOURCE], [700], [POSIX and XPG 7th edition])
237     AC_DEFINE([_XOPEN_SOURCE_EXTENDED], [1], [XPG things and X/Open Unix extensions.])
238     AC_DEFINE([_BSD_SOURCE], [1], [ISO C, POSIX, and 4.3BSD things.])
239     AC_DEFINE([_SVID_SOURCE], [1], [ISO C, POSIX, and SVID things.])
241     case "${host_os}" in
242       *mingw32*)
243         SYS=mingw32
244         ;;
245       *cygwin*)
246         dnl Check if we are using the mno-cygwin mode in which case we are
247         dnl actually dealing with a mingw32 compiler.
248         AC_EGREP_CPP(yes,
249             [#ifdef _WIN32
250              yes
251              #endif],
252             SYS=mingw32, AC_MSG_ERROR([VLC requires -mno-cygwin]))
253         ;;
254     esac
256     if test "${SYS}" = "mingw32"; then
257         # DEP, ASLR, NO SEH
258         LDFLAGS="${LDFLAGS} -Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase"
260         AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos)
261         ac_default_prefix="`pwd`/_win32"
262         DESTDIR="`pwd`/_win32/"
264         dnl
265         dnl NSIS/MSI Installer prefix and WIN64
266         dnl
267         case "${host}" in
268             amd64*|x86_64*)
269                 HAVE_WIN64="1"
270                 WINDOWS_ARCH="x64"
271                 PROGRAMFILES="PROGRAMFILES64"
272                 LDFLAGS="${LDFLAGS} -Wl,--high-entropy-va -Wl,--image-base,0x140000000"
273             ;;
274             *)
275                 WINDOWS_ARCH="x86"
276                 PROGRAMFILES="PROGRAMFILES"
277             ;;
278         esac
279         AC_SUBST(WINDOWS_ARCH)
280         AC_SUBST(PROGRAMFILES)
282     fi
283     ;;
284   *nto*)
285     SYS=nto
286     ;;
287   solaris*)
288     SYS=solaris
289     ;;
290   hpux*)
291     SYS=hpux
292     ;;
293   *os2*)
294     SYS=os2
295     LDFLAGS="${LDFLAGS} -Zomf -Zbin-files -Zargs-wild -Zhigh-mem"
296     AC_LIBOBJ([freeaddrinfo])
297     AC_LIBOBJ([gai_strerror])
298     ;;
299   *)
300     SYS="${host_os}"
301     ;;
302 esac
304 dnl WinRT
305 AC_ARG_ENABLE(winstore_app,
306      AS_HELP_STRING([--enable-winstore-app],
307                     [Build targetted for Windows Store apps (default disabled)]))
309 vlc_winstore_app=0
310 AS_IF([test "${SYS}" = "mingw32"],[
311   AS_IF([test "${enable_winstore_app}" = "yes"], [
312     vlc_winstore_app=1
313      VLC_ADD_LIBS([libvlccore], [-lole32 -lruntimeobject])
314      AC_LIBOBJ([gai_strerror])
315     ],[
316      VLC_ADD_LIBS([libvlccore],[-lwinmm])
317     ])
318   ])
319 AC_DEFINE_UNQUOTED(VLC_WINSTORE_APP, ${vlc_winstore_app}, [Define to 1 if you want to build for Windows Store apps])
321 AM_CONDITIONAL(HAVE_LINUX,   test "${SYS}" = "linux")
322 AM_CONDITIONAL(HAVE_OS2,     test "${SYS}" = "os2")
324 AM_CONDITIONAL(HAVE_DARWIN,  test "${SYS}" = "darwin")
325 AM_CONDITIONAL(HAVE_IOS,     test "${HAVE_IOS}" = "1")
326 AM_CONDITIONAL(HAVE_OSX,     test "${HAVE_OSX}" = "1")
327 AM_CONDITIONAL(HAVE_TVOS,    test "${HAVE_TVOS}" = "1")
329 AM_CONDITIONAL(HAVE_WIN32,   test "${SYS}" = "mingw32")
330 AM_CONDITIONAL(HAVE_WIN64,   test "${HAVE_WIN64}" = "1") dnl Only used for the packaging
331 AM_CONDITIONAL([HAVE_WINSTORE], [test "$vlc_winstore_app" = "1"])
332 AM_CONDITIONAL([HAVE_WIN32_DESKTOP], [test "${SYS}" = "mingw32" -a "$vlc_winstore_app" = "0"])
335 dnl Sadly autoconf does not think about testing foo.exe when ask to test
336 dnl for program foo on win32
337 case "${build_os}" in
338     cygwin|msys)
339         ac_executable_extensions=".exe"
340     ;;
341     os2*)
342         BUILDEXEEXT=".exe"
343     ;;
344     *)
345     ;;
346 esac
347 AC_SUBST(BUILDEXEEXT)
349 dnl Android is linux, but a bit different
350 AS_IF([test "$SYS" = linux],[
351     AC_MSG_CHECKING([for an Android system])
352     AC_PREPROC_IFELSE([AC_LANG_PROGRAM(
353         [[#ifndef __ANDROID__
354          # error Not Android
355          #endif
356         ]],[[;]])
357     ],[
358       HAVE_ANDROID="1"
359       AC_MSG_RESULT([yes])
360     ],[
361       AC_MSG_RESULT([no])
362     ])
364 AM_CONDITIONAL(HAVE_ANDROID, test "${HAVE_ANDROID}" = "1")
366 dnl Tizen (minimum SDK version: 2.3)
367 AS_IF([test "$SYS" = linux],[
368     AC_MSG_CHECKING([for Tizen])
369     AC_PREPROC_IFELSE([AC_LANG_PROGRAM(
370         [[#include <tizen.h>
371         ]],[[;]])
372     ],[
373       HAVE_TIZEN="1"
374       AC_DEFINE([HAVE_TIZEN_SDK], [1], [Define to 1 if vlc is built against Tizen SDK])
375       AC_MSG_RESULT([yes])
376     ],[
377       AC_MSG_RESULT([no])
378     ])
380 AM_CONDITIONAL(HAVE_TIZEN, test "${HAVE_TIZEN}" = "1")
383 dnl  Check for the contrib directory
385 AC_ARG_WITH(contrib,
386   [AS_HELP_STRING([--with-contrib[=DIR]],
387     [search for 3rd party libraries in DIR/include and DIR/lib])
389 AC_MSG_CHECKING([for 3rd party libraries path])
390 AS_IF([test -z "${with_contrib}" || test "${with_contrib}" = "yes"], [
391   CONTRIB_DIR="${srcdir}/contrib/${host}"
392   AS_IF([test ! -d "${CONTRIB_DIR}"], [
393     echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
394     CONTRIB_DIR="${srcdir}/contrib/`$CC -dumpmachine`"
395     AS_IF([test ! -d "${CONTRIB_DIR}"], [
396       echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
397       CONTRIB_DIR="${srcdir}/extras/contrib/hosts/${host}"
398       AS_IF([test ! -d "${CONTRIB_DIR}"], [
399         echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
400         CONTRIB_DIR="${srcdir}/extras/contrib/hosts/`$CC -dumpmachine`"
401         AS_IF([test ! -d "${CONTRIB_DIR}"], [
402           echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
403           CONTRIB_DIR=""
404           AC_MSG_RESULT([not found])
405         ])
406       ])
407     ])
408   ])
409 ], [
410   AS_IF([test "${with_contrib}" != "no"], [
411     CONTRIB_DIR="${with_contrib}"
412   ], [
413     CONTRIB_DIR=""
414     AC_MSG_RESULT([disabled])
415   ])
417 AS_IF([test -n "${CONTRIB_DIR}"], [
418   AS_IF([test -d "${CONTRIB_DIR}/lib"],[
419     CONTRIB_DIR=`cd "${CONTRIB_DIR}" && pwd`
420   ], [
421     echo "${CONTRIB_DIR}/lib not found" >&AS_MESSAGE_LOG_FD
422     CONTRIB_DIR=""
423     AC_MSG_RESULT([not usable])
424   ])
427 AS_IF([test -n "${CONTRIB_DIR}"], [
428   AC_MSG_RESULT([${CONTRIB_DIR}])
429   export PATH=${CONTRIB_DIR}/bin:$PATH
430   CPPFLAGS="${CPPFLAGS} -I${CONTRIB_DIR}/include"
431   CFLAGS="${CFLAGS} -I${CONTRIB_DIR}/include"
432   CXXFLAGS="${CXXFLAGS} -I${CONTRIB_DIR}/include"
433   OBJCFLAGS="${OBJCFLAGS} -I${CONTRIB_DIR}/include"
434   export PKG_CONFIG_PATH="${CONTRIB_DIR}/lib/pkgconfig:$PKG_CONFIG_PATH"
435   LDFLAGS="${LDFLAGS} -L${CONTRIB_DIR}/lib"
437   AS_IF([test "${SYS}" = "darwin"], [
438     export LD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$LD_LIBRARY_PATH"
439     export DYLD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$DYLD_LIBRARY_PATH"
440   ])
441 ], [
442   AS_IF([test -n "${with_contrib}" && test "${with_contrib}" != "no"], [
443     AC_MSG_ERROR([Third party libraries not found!])
444   ])
446 AC_SUBST(CONTRIB_DIR)
448 dnl Add extras/tools to the PATH
449 TOOLS_DIR="${srcdir}/extras/tools/build/bin"
450 AS_IF([test -d "${TOOLS_DIR}"], [
451     TOOLS_DIR=`cd "${TOOLS_DIR}" && pwd`
452     export PATH="${TOOLS_DIR}":$PATH
456 dnl  Libtool
457 dnl  It's very bad, but our former custom system was worst
458 dnl  -- Courmisch
461 dnl override platform specific check for dependent libraries
462 dnl otherwise libtool linking of shared libraries will
463 dnl fail on anything other than pass_all.
464 AC_CACHE_VAL(lt_cv_deplibs_check_method,
465     [lt_cv_deplibs_check_method=pass_all])
467 LT_INIT([dlopen win32-dll shared disable-static])
468 LT_LANG([C++])
469 LT_LANG([Windows Resource])
471 DOLT
473 lt_cv_deplibs_check_method=pass_all
475 AS_IF([test "${enable_shared}" = "no" -a "${enable_vlc}" != "no"], [
476   AC_MSG_ERROR([VLC is based on plugins. Shared libraries cannot be disabled.])
480 dnl Gettext stuff
482 AM_GNU_GETTEXT_VERSION([0.19.6])
483 AM_GNU_GETTEXT([external], [need-formatstring-macros])
486 dnl Iconv stuff
488 AM_ICONV
491 dnl checks for mingw
492 AS_IF([test "${SYS}" = "mingw32"], [
494 AC_PREPROC_IFELSE([AC_LANG_SOURCE([
495 #if !defined(__MINGW32__)
496 # error Not compiling with mingw
497 #endif
498     ])], [
500 dnl Check for broken versions of mingw-runtime compatability library
501     AC_MSG_CHECKING(for broken mingw-runtime)
502     AC_PREPROC_IFELSE([AC_LANG_SOURCE([
503 #include <_mingw.h>
504 #if defined(__MINGW64_VERSION_MAJOR)
505 # if __MINGW64_VERSION_MAJOR < 3
506 #  error Attempting to use mingw-runtime with broken vsnprintf and direct2d support
507 # endif
508 #elif __MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION < 15
509 # error Attempting to use mingw-runtime with broken vsnprintf support
510 #endif
511     ])], [
512         AC_MSG_RESULT([ok])
513     ], [
514         AC_MSG_RESULT([present])
515         AC_MSG_ERROR([LibVLC requires mingw-runtime version 3.15 or higher, or mingw-w64 version 3.0 or higher!])
516     ])
518     dnl force use of mingw provided c99 *printf over msvcrt
519     CPPFLAGS="${CPPFLAGS} -D__USE_MINGW_ANSI_STDIO=1"
521     dnl Add WinMainCRTStartup entry point to show it's a WinMain application
522     VLC_ADD_LDFLAGS([vlc],[-mwindows])
524     dnl Check for the need to include the mingwex lib for mingw32
525     VLC_SAVE_FLAGS
526     AC_CHECK_LIB(mingwex,opendir,
527         AC_CHECK_LIB(mingw32,opendir,,
528             [VLC_ADD_LIBS([libvlccore],[-lmingwex])])
529     )
530     VLC_RESTORE_FLAGS
531     ], [
532         AC_MSG_RESULT([Not compiling with mingw])
533     ])
535     dnl Check for fnative-struct or mms-bitfields support for mingw32
536     VLC_SAVE_FLAGS
537     CFLAGS="${CFLAGS} -mms-bitfields"
538     CXXFLAGS="${CXXFLAGS} -mms-bitfields"
539     AC_CACHE_CHECK([if \$CC accepts -mms-bitfields],
540         [ac_cv_c_mms_bitfields],
541         [AC_TRY_COMPILE([],,ac_cv_c_mms_bitfields=yes, ac_cv_c_mms_bitfields=no)])
542     if test "${ac_cv_c_mms_bitfields}" = "no"; then
543         VLC_RESTORE_FLAGS
544         CFLAGS="${CFLAGS} -fnative-struct"
545         CXXFLAGS="${CXXFLAGS} -fnative-struct"
546         AC_CACHE_CHECK([if \$CC accepts -fnative-struct],
547             [ac_cv_c_fnative_struct],
548             [AC_TRY_COMPILE([],,ac_cv_c_fnative_struct=yes, ac_cv_c_fnative_struct=no)])
549         "${ac_cv_c_fnative_struct}" = "no" && VLC_RESTORE_FLAGS
550     fi
555 dnl Buggy glibc prevention. Purposedly not cached.
556 dnl See sourceware.org bugs 5058 and 5443.
557 dnl Ubuntu alone has 20 bug numbers for this...
559 AC_MSG_CHECKING(for buggy GNU/libc versions)
560 AC_PREPROC_IFELSE([AC_LANG_SOURCE([
561 #include <limits.h>
562 #if defined (__GLIBC__) && (__GLIBC__ == 2) \
563   && (__GLIBC_MINOR__ >= 5) && (__GLIBC_MINOR__ <= 7)
564 # error GNU/libc with dcgettext killer bug!
565 #endif
566 ])], [
567   AC_MSG_RESULT([not present])
568 ], [
569   AC_MSG_RESULT([found])
570   AS_IF([test "x${enable_nls}" != "xno"], [
571     AC_MSG_ERROR([Buggy GNU/libc (version 2.5 - 2.7) present. VLC would crash; there is no viable
572 work-around for this. Check with your distribution vendor on how to update the
573 glibc run-time. Alternatively, build with --disable-nls.])
574   ])
577 dnl Plugin compilation stuff
579 VLC_LIBRARY_SUFFIX
581 dnl Check for system libs needed
582 need_libc=false
584 dnl Check for usual libc functions
585 AC_CHECK_DECLS([nanosleep],,,[#include <time.h>])
586 AC_CHECK_FUNCS([daemon fcntl flock fstatvfs fork getenv getpwuid_r isatty lstat memalign mkostemp mmap open_memstream openat pread posix_fadvise posix_madvise setlocale stricmp strnicmp strptime uselocale pthread_cond_timedwait_monotonic_np pthread_condattr_setclock])
587 AC_REPLACE_FUNCS([atof atoll dirfd fdopendir ffsll flockfile fsync getdelim getpid lldiv memrchr nrand48 poll posix_memalign recvmsg rewind sendmsg setenv strcasecmp strcasestr strdup strlcpy strndup strnlen strnstr strsep strtof strtok_r strtoll swab tdestroy timegm timespec_get strverscmp])
588 AC_REPLACE_FUNCS([gettimeofday])
589 AC_CHECK_FUNCS(fdatasync,,
590   [AC_DEFINE(fdatasync, fsync, [Alias fdatasync() to fsync() if missing.])
593 dnl mingw64 implements those as static inline, not functions with C linkage
594 VLC_REPLACE_DECL([asprintf], [#include <stdio.h>])
595 VLC_REPLACE_DECL([vasprintf], [#include <stdio.h>])
596 VLC_REPLACE_DECL([gmtime_r], [#include <time.h>])
597 VLC_REPLACE_DECL([localtime_r], [#include <time.h>])
599 dnl C11 static_assert()
600 AC_MSG_CHECKING([for static_assert in assert.h])
601 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <assert.h>], [
602 static_assert(1, "The impossible happened.");
603 ])], [
604   AC_MSG_RESULT([yes])
605   AC_DEFINE([HAVE_STATIC_ASSERT], [1], [Define to 1 if <assert.h> defines static_assert.])
606 ], [
607   AC_MSG_RESULT([no])
610 # Windows CE does not have strcoll()
611 AC_FUNC_STRCOLL
613 dnl Check for non-standard system calls
614 case "$SYS" in
615   "linux")
616     AC_CHECK_FUNCS([accept4 pipe2 eventfd vmsplice sched_getaffinity recvmmsg])
617     ;;
618   "mingw32")
619     AC_CHECK_FUNCS([_lock_file])
620     ;;
621 esac
623 AH_BOTTOM([#include <vlc_fixups.h>])
625 dnl Check for struct pollfd
626 AC_CHECK_TYPES([struct pollfd],,,
627 [#include <sys/types.h>
628 #if HAVE_POLL
629 # include <poll.h>
630 #elif defined (_WIN32)
631 # include <winsock2.h>
632 #endif
635 dnl Check for struct timespec
636 AC_CHECK_TYPES([struct timespec],,,
637 [#include <time.h>])
639 dnl Checks for socket stuff
640 VLC_SAVE_FLAGS
641 SOCKET_LIBS=""
642 AC_SEARCH_LIBS(connect, [socket], [
643   AS_IF([test "$ac_cv_search_connect" != "none required"], [
644     SOCKET_LIBS="$ac_cv_search_connect"
645   ])
646 ], [
647   AS_IF([test "${SYS}" = "mingw32"], [
648     SOCKET_LIBS="-lws2_32"
649   ])
652 AC_SEARCH_LIBS([inet_pton], [nsl], [
653  AS_IF([test "$ac_cv_search_inet_pton" != "none required"], [
654     SOCKET_LIBS="$ac_cv_search_inet_pton $SOCKET_LIBS"
655   ])
656 ],, [${SOCKET_LIBS}])
658 LIBS="${LIBS} ${SOCKET_LIBS}"
659 AC_LINK_IFELSE([
660     AC_LANG_PROGRAM([#ifdef _WIN32
661         # if _WIN32_WINNT < 0x600
662         #  error Needs vista+
663         # endif
664         #include <ws2tcpip.h>
665         #else
666         #include <sys/socket.h>
667         #include <arpa/inet.h>
668         #endif], [
669         char dst[[sizeof(struct in_addr)]];
670         inet_pton(AF_INET, "127.0.0.1", dst);
671     ])],[AC_DEFINE([HAVE_INET_PTON],[1],[Define to 1 if you have inet_pton function])],[AC_LIBOBJ([inet_pton])])
672 AC_CHECK_FUNCS([if_nameindex if_nametoindex])
673 VLC_RESTORE_FLAGS
674 AC_SUBST(SOCKET_LIBS)
676 dnl Check for socklen_t
677 AH_TEMPLATE(socklen_t, [Define to `int' if <sys/socket.h> does not define.])
678 AC_CACHE_CHECK([for socklen_t in sys/socket.h], dnl ` (fix VIM syntax highlight
679 ac_cv_type_socklen_t,
680 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
681 [#include <sys/types.h>
682 #ifdef _WIN32
683 # include <winsock2.h>
684 # include <ws2tcpip.h>
685 #else
686 # include <sys/socket.h>
687 #endif]], [[socklen_t len; len = 0;]])],
688 ac_cv_type_socklen_t=yes,
689 ac_cv_type_socklen_t=no)])
690 AS_IF([test "$ac_cv_type_socklen_t" = no],
691  [AC_DEFINE(socklen_t, int)])
693 dnl Check for struct sockaddr_storage
694 AH_TEMPLATE(sockaddr_storage, [Define to `sockaddr' if <sys/socket.h> does not define.]) dnl ` (fix VIM syntax highlight
695 AH_TEMPLATE(ss_family, [Define to `sa_family' if <sys/socket.h> does not define.]) dnl ` (fix VIM syntax highlight
696 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_struct_sockaddr_storage,
697   [AC_TRY_COMPILE(
698     [#include <sys/types.h>
699      #if defined( _WIN32 )
700      # include <winsock2.h>
701      #else
702      # include <sys/socket.h>
703      #endif], [struct sockaddr_storage addr;],
704      ac_cv_struct_sockaddr_storage=yes,
705      ac_cv_struct_sockaddr_storage=no)])
706 AS_IF([test "${ac_cv_struct_sockaddr_storage}" = no], [
707   AC_DEFINE(sockaddr_storage, sockaddr)
708   AC_DEFINE(ss_family, sa_family)
711 dnl FreeBSD has a gnugetopt library for this:
712 GNUGETOPT_LIBS=""
713 AC_CHECK_FUNC(getopt_long,, [
714   AC_CHECK_LIB([gnugetopt],[getopt_long], [
715     GNUGETOPT_LIBS="-lgnugetopt"
716   ])
718 AC_SUBST(GNUGETOPT_LIBS)
720 AC_CHECK_LIB(m,cos,[
721   LIBM="-lm"
722 ], [
723   LIBM=""
725 AC_SUBST(LIBM)
727 AC_CHECK_LIB(m,lrintf, [
728   AC_DEFINE(HAVE_LRINTF, 1, [Define to 1 if you have the lrintf function])
729   VLC_ADD_LIBS([skins2],[-lm])
731 AC_CHECK_LIB(m,nanf,
732   AC_DEFINE(HAVE_NANF, 1, [Define to 1 if you have the NANF function])
735 dnl Check for dynamic plugins
736 LIBDL=""
737 have_dynamic_objects="no"
738 VLC_SAVE_FLAGS
739 AC_SEARCH_LIBS(dlsym, [dl svld], [
740   AS_IF([test "$ac_cv_search_dlsym" != "none required"], [
741     LIBDL="$ac_cv_search_dlsym"
742   ])
743   have_dynamic_objects="yes"
745 VLC_RESTORE_FLAGS
747 # Windows
748 AS_IF([test "${SYS}" = "mingw32"], [
749   LIBDL=""
750   have_dynamic_objects="yes" #assume we can use shared objects
753 AS_IF([test "${enable_shared}" = "no"], [
754   have_dynamic_objects=no
756 AM_CONDITIONAL(HAVE_DYNAMIC_PLUGINS, [test "${have_dynamic_objects}" != "no"])
758 AC_SUBST(LIBDL)
760 dnl Check for thread library
761 LIBPTHREAD=""
762 AS_IF([test "${SYS}" != "mingw32"], [
763   VLC_SAVE_FLAGS
764   LIBS=""
765   AC_SEARCH_LIBS(pthread_rwlock_init, pthread pthreads c_r, [
766     AS_IF([test "$ac_cv_search_pthread_rwlock_init" != "none required"], [
767       LIBPTHREAD="$ac_cv_search_pthread_rwlock_init"
768     ])
769   ])
770   VLC_RESTORE_FLAGS
772 AC_SUBST(LIBPTHREAD)
774 AC_SEARCH_LIBS([clock_nanosleep], [rt pthread], [
775   AS_IF([test "$ac_cv_search_clock_nanosleep" != "none required"], [
776     LIBRT="$ac_cv_search_clock_nanosleep"
777   ])
778 ], [
779   AC_SEARCH_LIBS([nanosleep], [rt pthread posix4], [
780     AS_IF([test "$ac_cv_search_nanosleep" != "none required"], [
781       LIBRT="$ac_cv_search_nanosleep"
782     ])
783   ])
785 AC_SUBST(LIBRT)
788 dnl Check for headers
791 dnl  POSIX
792 AC_CHECK_HEADERS([arpa/inet.h pthread.h search.h sys/shm.h sys/socket.h sys/uio.h])
793 AC_CHECK_HEADERS([net/if.h], [], [],
795 #include <sys/types.h>
796 #include <sys/socket.h>
798 AC_CHECK_HEADER([syslog.h], [have_syslog="yes"], [have_syslog="no"])
799 AM_CONDITIONAL([HAVE_SYSLOG], [test "$have_syslog" = "yes"])
801 dnl  BSD
802 AC_CHECK_HEADERS([netinet/udplite.h sys/param.h sys/mount.h])
804 dnl  GNU/Linux
805 AC_CHECK_HEADERS([features.h getopt.h linux/dccp.h linux/magic.h mntent.h sys/eventfd.h])
807 dnl  MacOS
808 AC_CHECK_HEADERS([xlocale.h])
810 dnl LP64 and LLP64 architectures had better define ssize_t by themselves...
811 AH_TEMPLATE(ssize_t, [Define to `int' if <stddef.h> does not define.]) dnl ` (fix VIM syntax highlight
812 AC_CHECK_TYPE(ssize_t,, [
813   AC_DEFINE(ssize_t, int)
816 dnl It seems that autoconf detects pkg-config only during the first
817 dnl PKG_CHECK_MODULES from configure.ac - which makes sense. But in our case,
818 dnl it is nested within a conditional block, so it was not working right.
819 dnl Make PKG_CONFIG_PATH precious so that it appears in the help and get saved
820 AC_ARG_VAR(PKG_CONFIG_PATH,
821        [Paths where to find .pc not at the default location])
822 PKG_PROG_PKG_CONFIG()
824 dnl On some OS we need static linking
825 AS_IF([test -n "${PKG_CONFIG}" ],[
826     AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "darwin" -o "${SYS}" = "os2" ],[
827         PKG_CONFIG="${PKG_CONFIG} --static"
828     ])
833 dnl Check for zlib.h and -lz along with system -lminizip if available
835 AC_CHECK_HEADERS(zlib.h, [ have_zlib=yes ], [ have_zlib=no ])
836 AM_CONDITIONAL(HAVE_ZLIB, [ test "${have_zlib}" = "yes" ])
837 if test "${have_zlib}" = "yes"
838 then
839   VLC_ADD_LIBS([skins2 sap unzip zip],[-lz])
840   PKG_CHECK_MODULES([MINIZIP], [minizip] , [ have_minizip=yes ], [
841     AC_CHECK_HEADERS([unzip.h], [
842       have_minizip=yes
843       MINIZIP_LIBS="-lminizip -lz"
844     ], [
845       VLC_ADD_CPPFLAGS([skins2], [-I\\\$(top_srcdir)/modules/access/zip/unzip])
846       VLC_ADD_LIBS([skins2], [\\\$(top_builddir)/modules/libunzip.la])
847       have_minizip=no
848     ])
849   ])
850   VLC_ADD_CPPFLAGS([skins2],[$MINIZIP_CFLAGS])
851   VLC_ADD_LIBS([skins2],[$MINIZIP_LIBS])
853 AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
857 dnl Domain name i18n support via GNU libidn
859 PKG_CHECK_MODULES([IDN], [libidn], [
860   have_libidn="yes"
861   AC_DEFINE([HAVE_IDN], 1, [Define to 1 if you have GNU libidn.])
862 ], [
863   have_libidn="no"
867 dnl Check for dbus
868 AC_ARG_ENABLE(dbus,
869   [AS_HELP_STRING([--enable-dbus],
870     [compile D-Bus message bus support (default enabled)])])
871 have_dbus="no"
872 AS_IF([test "${enable_dbus}" != "no"], [
873   PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.6.0], [
874     have_dbus="yes"
875   ], [
876     AS_IF([test -n "${enable_dbus}"], [
877       AC_MSG_ERROR([${DBUS_PKG_ERRORS}.])
878     ], [
879       AC_MSG_WARN([${DBUS_PKG_ERRORS}.])
880     ])
881   ])
883 AM_CONDITIONAL([HAVE_DBUS], [test "${have_dbus}" = "yes"])
886 dnl Check for systemd
887 PKG_CHECK_MODULES([SYSTEMD], [libsystemd], [
888   have_systemd="yes"
889 ], [
890   AC_MSG_WARN([${SYSTEMD_PKG_ERRORS}.])
892 AM_CONDITIONAL([HAVE_SYSTEMD], [test "${have_systemd}" = "yes"])
895 dnl Check for ntohl, etc.
896 VLC_SAVE_FLAGS
897 CFLAGS="${CFLAGS} -Wall -Werror"
898 AC_CACHE_CHECK([for ntohl in sys/param.h],
899     [ac_cv_c_ntohl_sys_param_h],
900     [     AC_TRY_COMPILE([#include <sys/param.h>],
901         [int meuh; ntohl(meuh);],
902         ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
903 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
904     AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
906 VLC_RESTORE_FLAGS
908 EXTEND_HELP_STRING([Optimization options:])
910 dnl  Compiler warnings
913 RDC_PROG_CC_WFLAGS([all extra sign-compare undef pointer-arith bad-function-cast write-strings missing-prototypes volatile-register-var error-implicit-function-declaration init-self logical-op format-security])
914 RDC_PROG_CC_FLAGS([-pipe])
915 AC_LANG_PUSH([C++])
916 RDC_PROG_CXX_WFLAGS([all extra sign-compare undef pointer-arith volatile-register-var format-security])
917 AC_LANG_POP([C++])
920 dnl  Debugging mode
922 AC_ARG_ENABLE(debug,
923   [AS_HELP_STRING([--enable-debug],
924     [build with run-time assertions (default disabled)])],,
925   [enable_debug="no"])
926 AH_TEMPLATE(NDEBUG,
927             [Define to 1 if debug code should NOT be compiled])
928 AS_IF([test "${enable_debug}" != "no"], [
929   AC_CHECK_HEADERS([valgrind/valgrind.h])
930 ], [
931   AC_DEFINE(NDEBUG)
935 dnl  Profiling
937 AC_ARG_ENABLE(gprof,
938   [AS_HELP_STRING([--enable-gprof],[profile with gprof (default disabled)])],,
939   [enable_gprof="no"])
940 AS_IF([test "${enable_gprof}" != "no"], [
941   CFLAGS="${CFLAGS} -pg"
942   CXXFLAGS="${CXXFLAGS} -pg"
943   OBJCFLAGS="${OBJCFLAGS} -pg"
944   LDFLAGS="${LDFLAGS} -pg"
947 AC_ARG_ENABLE(cprof,
948   [AS_HELP_STRING([--enable-cprof],[profile with cprof (default disabled)])],,
949   [enable_cprof="no"])
950 AS_IF([test "${enable_gprof}" != "no"], [
951   CFLAGS="${CFLAGS} -finstrument-functions"
952   CXXFLAGS="${CXXFLAGS} -finstrument-functions"
953   OBJCFLAGS="${OBJCFLAGS} -finstrument-functions"
954   LDFLAGS="${LDFLAGS} -finstrument-functions"
958 dnl  Test coverage
960 AC_ARG_ENABLE(coverage,
961   [AS_HELP_STRING([--enable-coverage],
962     [build for test coverage (default disabled)])],,
963   [enable_coverage="no"])
964 AS_IF([test "${enable_coverage}" != "no"], [
965   CFLAGS="-fprofile-arcs -ftest-coverage ${CFLAGS}"
966   CXXFLAGS="-fprofile-arcs -ftest-coverage ${CXXFLAGS}"
967   LDFLAGS="-lgcov ${LDFLAGS}"
970 AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "os2"], [
971   VLC_SAVE_FLAGS
972   CFLAGS="${CFLAGS} -fvisibility=hidden"
973   CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
974   OBJCFLAGS="${OBJCFLAGS} -fvisibility=hidden"
975   AC_CACHE_CHECK([if $CC accepts -fvisibility=hidden],
976                  [ac_cv_c_visibility_hidden], [
977     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
978       ac_cv_c_visibility_hidden=yes
979     ], [
980       ac_cv_c_visibility_hidden=no
981     ])
982   ])
983   AS_IF([test "${ac_cv_c_visibility_hidden}" = "no"], [VLC_RESTORE_FLAGS])
988 dnl  Enable/disable optimizations
990 AC_ARG_ENABLE(optimizations,
991   [AS_HELP_STRING([--disable-optimizations],
992     [disable compiler optimizations (default enabled)])],,
993   [enable_optimizations="yes"])
995 dnl Check for various optimization flags
996 AS_IF([test "${enable_optimizations}" != "no"], [
998   dnl -O3 only in production builds
999   AS_IF([test "${enable_debug}" = "no"], [
1000     VLC_SAVE_FLAGS
1001     CFLAGS="${CFLAGS} -O3"
1002     CXXFLAGS="${CXXFLAGS} -O3"
1003     OBJCFLAGS="${OBJCFLAGS} -O3"
1004     AC_CACHE_CHECK([if $CC accepts -O3],  [ac_cv_c_o3], [
1005       AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
1006         ac_cv_c_o3=yes
1007       ], [
1008         ac_cv_c_o3=no
1009       ])
1010     ])
1011     AS_IF([test "${ac_cv_c_o3}" = "no"], [VLC_RESTORE_FLAGS])
1012   ])
1014   dnl Check for fast maths
1015   RDC_PROG_CC_FFLAGS([no-math-errno unsafe-math-optimizations no-rounding-math no-signaling-nans cx-limited-range])
1016   AC_LANG_PUSH(C++)
1017   RDC_PROG_CXX_FFLAGS([no-math-errno unsafe-math-optimizations no-rounding-math no-signaling-nans cx-limited-range])
1018   AC_LANG_POP
1020 AH_BOTTOM([
1021 #if defined(_MSC_VER) && !defined(__clang__)
1022 # pragma fenv_access(off)
1023 # pragma fp_contract(on)
1024 #elif defined(__GNUC__)
1025 /* Not supported so far */
1026 #else
1027 # pragma STDC FENV_ACCESS OFF
1028 # pragma STDC FP_CONTRACT ON
1029 #endif
1032   dnl Check for -funroll-loops
1033   VLC_SAVE_FLAGS
1034   CFLAGS="${CFLAGS} -funroll-loops"
1035   CXXFLAGS="${CXXFLAGS} -funroll-loops"
1036   OBJCFLAGS="${OBJCFLAGS} -funroll-loops"
1037   AC_CACHE_CHECK([if $CC accepts -funroll-loops], [ac_cv_c_unroll_loops], [
1038     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
1039       ac_cv_c_unroll_loops=yes
1040     ], [
1041       ac_cv_c_unroll_loops=no
1042     ])
1043   ])
1044   AS_IF([test "${ac_cv_c_unroll_loops}" = "no"], [VLC_RESTORE_FLAGS])
1046   AS_IF([test "$enable_debug" = "no"], [
1047     dnl Check for -fomit-frame-pointer
1048     VLC_SAVE_FLAGS
1049     CFLAGS="${CFLAGS} -fomit-frame-pointer"
1050     CXXFLAGS="${CXXFLAGS} -fomit-frame-pointer"
1051     OBJCFLAGS="${OBJCFLAGS} -fomit-frame-pointer"
1052     AC_CACHE_CHECK([if $CC accepts -fomit-frame-pointer],
1053       [ac_cv_c_omit_frame_pointer], [
1054       AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
1055         ac_cv_c_omit_frame_pointer=yes
1056       ], [
1057         ac_cv_c_omit_frame_pointer=no
1058       ])
1059     ])
1060     AS_IF([test "${ac_cv_c_omit_frame_pointer}" = "no"], [VLC_RESTORE_FLAGS])
1061   ])
1064 VLC_SAVE_FLAGS
1065 LDFLAGS="${LDFLAGS} -Wl,-Bsymbolic"
1066 AC_CACHE_CHECK([if linker supports -Bsymbolic], [ac_cv_ld_bsymbolic], [
1067   AC_TRY_LINK([],, [
1068     ac_cv_ld_bsymbolic="-Wl,-Bsymbolic"
1069   ], [
1070     ac_cv_ld_bsymbolic=""
1071   ])
1073 VLC_RESTORE_FLAGS
1074 SYMBOLIC_LDFLAGS="${ac_cv_ld_bsymbolic}"
1075 AC_SUBST(SYMBOLIC_LDFLAGS)
1077 dnl Checks for __attribute__(aligned()) directive
1078 VLC_SAVE_FLAGS
1079 CFLAGS="${CFLAGS} -Werror"
1080 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
1081     [ac_cv_c_attribute_aligned],
1082     [ac_cv_c_attribute_aligned=0
1083     for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
1084         AC_TRY_COMPILE([],
1085         [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
1086         [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
1087     done])
1088 VLC_RESTORE_FLAGS
1089 if test "${ac_cv_c_attribute_aligned}" != "0"; then
1090     AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
1091         [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
1094 dnl Check for __attribute__((packed))
1095 AC_CACHE_CHECK([for __attribute__((packed))],
1096   [ac_cv_c_attribute_packed],
1097   [ac_cv_c_attribute_packed=no
1098    AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b; (void)b;],
1099                     [ac_cv_c_attribute_packed=yes])])
1100 if test "${ac_cv_c_attribute_packed}" != "no"; then
1101   AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
1105 dnl  Check the CPU
1107 case "${host_cpu}" in
1108   "")
1109     ARCH=unknown
1110     ;;
1111   *)
1112     ARCH="${host_cpu}"
1113     ;;
1114 esac
1116 dnl Check for backtrace() support
1117 AC_CHECK_HEADERS(execinfo.h)
1118 AC_CHECK_FUNCS(backtrace)
1121 dnl  default modules
1123 ALIASES="${ALIASES} cvlc rvlc"
1126 dnl  Accelerated modules
1129 dnl  Check for fully working MMX intrinsics
1130 dnl  We need support for -mmmx, we need <mmintrin.h>, and we also need a
1131 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1132 AC_ARG_ENABLE(mmx,
1133   [AS_HELP_STRING([--disable-mmx],
1134     [disable MMX optimizations (default auto)])],,[
1135   case "${host_cpu}" in
1136     i?86|x86_64)
1137       enable_mmx="yes"
1138       ;;
1139     *)
1140       enable_mmx="no"
1141       ;;
1142   esac
1144 have_mmx="no"
1145 have_mmxext="no"
1146 AS_IF([test "${enable_mmx}" != "no"], [
1147   ARCH="${ARCH} mmx"
1148   VLC_SAVE_FLAGS
1149   CFLAGS="${CFLAGS} -mmmx"
1150   AC_CACHE_CHECK([if $CC groks MMX intrinsics], [ac_cv_c_mmx_intrinsics], [
1151     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1152 [#include <mmintrin.h>
1153 #include <stdint.h>
1154 uint64_t frobzor;]], [
1155 [__m64 a, b, c;
1156 a = b = c = (__m64)frobzor;
1157 a = _mm_slli_pi16(a, 3);
1158 a = _mm_adds_pi16(a, b);
1159 c = _mm_srli_pi16(c, 8);
1160 c = _mm_slli_pi16(c, 3);
1161 b = _mm_adds_pi16(b, c);
1162 a = _mm_unpacklo_pi8(a, b);
1163 frobzor = (uint64_t)a;]])], [
1164       ac_cv_c_mmx_intrinsics=yes
1165     ], [
1166       ac_cv_c_mmx_intrinsics=no
1167     ])
1168   ])
1169   VLC_RESTORE_FLAGS
1170   AS_IF([test "${ac_cv_c_mmx_intrinsics}" != "no"], [
1171     AC_DEFINE(HAVE_MMX_INTRINSICS, 1, [Define to 1 if MMX intrinsics are available.])
1172   ])
1174   VLC_SAVE_FLAGS
1175   CFLAGS="${CFLAGS} -mmmx"
1176   AC_CACHE_CHECK([if $CC groks MMX inline assembly], [ac_cv_mmx_inline], [
1177     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1178 void *p;
1179 asm volatile("packuswb %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1181     ], [
1182       ac_cv_mmx_inline=yes
1183     ], [
1184       ac_cv_mmx_inline=no
1185     ])
1186   ])
1187   AS_IF([test "${ac_cv_mmx_inline}" != "no"], [
1188     AC_DEFINE(CAN_COMPILE_MMX, 1, [Define to 1 inline MMX assembly is available.])
1189     have_mmx="yes"
1190   ])
1192   AC_CACHE_CHECK([if $CC groks MMX EXT inline assembly],
1193                  [ac_cv_mmxext_inline], [
1194     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1195 void *p;
1196 asm volatile("maskmovq %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1198     ], [
1199       ac_cv_mmxext_inline=yes
1200     ], [
1201       ac_cv_mmxext_inline=no
1202     ])
1203   ])
1204   VLC_RESTORE_FLAGS
1205   AS_IF([test "${ac_cv_mmxext_inline}" != "no"], [
1206     AC_DEFINE(CAN_COMPILE_MMXEXT, 1, [Define to 1 if MMX EXT inline assembly is available.])
1207     have_mmxext="yes"
1208   ])
1210 AM_CONDITIONAL([HAVE_MMX], [test "${have_mmx}" = "yes"])
1211 AM_CONDITIONAL([HAVE_MMXEXT], [test "${have_mmxext}" = "yes"])
1213 dnl  Check for fully workin SSE2 intrinsics
1214 dnl  We need support for -mmmx, we need <emmintrin.h>, and we also need a
1215 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1216 AC_ARG_ENABLE(sse,
1217   [AS_HELP_STRING([--disable-sse],
1218     [disable SSE (1-4) optimizations (default auto)])],, [
1219   case "${host_cpu}" in
1220     i?86|x86_64)
1221       enable_sse=yes
1222       ;;
1223     *)
1224       enable_sse=no
1225       ;;
1226   esac
1228 have_sse2="no"
1229 AS_IF([test "${enable_sse}" != "no"], [
1230   ARCH="${ARCH} sse sse2"
1232   VLC_SAVE_FLAGS
1233   CFLAGS="${CFLAGS} -msse2"
1234   AC_CACHE_CHECK([if $CC groks SSE2 intrinsics], [ac_cv_c_sse2_intrinsics], [
1235     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1236 [#include <emmintrin.h>
1237 #include <stdint.h>
1238 uint64_t frobzor;]], [
1239 [__m128i a, b, c;
1240 a = b = c = _mm_set1_epi64((__m64)frobzor);
1241 a = _mm_slli_epi16(a, 3);
1242 a = _mm_adds_epi16(a, b);
1243 c = _mm_srli_epi16(c, 8);
1244 c = _mm_slli_epi16(c, 3);
1245 b = _mm_adds_epi16(b, c);
1246 a = _mm_unpacklo_epi8(a, b);
1247 frobzor = (uint64_t)_mm_movepi64_pi64(a);]])], [
1248       ac_cv_c_sse2_intrinsics=yes
1249     ], [
1250       ac_cv_c_sse2_intrinsics=no
1251     ])
1252   ])
1253   VLC_RESTORE_FLAGS
1254   AS_IF([test "${ac_cv_c_sse2_intrinsics}" != "no"], [
1255     AC_DEFINE(HAVE_SSE2_INTRINSICS, 1, [Define to 1 if SSE2 intrinsics are available.])
1256   ])
1258   VLC_SAVE_FLAGS
1259   CFLAGS="${CFLAGS} -msse"
1260   AC_CACHE_CHECK([if $CC groks SSE inline assembly], [ac_cv_sse_inline], [
1261     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1262 void *p;
1263 asm volatile("xorps %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1265     ], [
1266       ac_cv_sse_inline=yes
1267     ], [
1268       ac_cv_sse_inline=no
1269     ])
1270   ])
1272   AS_IF([test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"], [
1273     AC_DEFINE(CAN_COMPILE_SSE, 1, [Define to 1 if SSE inline assembly is available.])
1274   ])
1276   AC_CACHE_CHECK([if $CC groks SSE2 inline assembly], [ac_cv_sse2_inline], [
1277     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1278 void *p;
1279 asm volatile("punpckhqdq %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1281     ], [
1282       ac_cv_sse2_inline=yes
1283     ], [
1284       ac_cv_sse2_inline=no
1285     ])
1286   ])
1287   AS_IF([test "${ac_cv_sse2_inline}" != "no" -a "${SYS}" != "solaris"], [
1288     AC_DEFINE(CAN_COMPILE_SSE2, 1, [Define to 1 if SSE2 inline assembly is available.])
1289     have_sse2="yes"
1290   ])
1292   # SSE3
1293   AC_CACHE_CHECK([if $CC groks SSE3 inline assembly], [ac_cv_sse3_inline], [
1294     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1295 void *p;
1296 asm volatile("movsldup %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1298     ], [
1299       ac_cv_sse3_inline=yes
1300     ], [
1301       ac_cv_sse3_inline=no
1302     ])
1303   ])
1305   AS_IF([test "${ac_cv_sse3_inline}" != "no"], [
1306     AC_DEFINE(CAN_COMPILE_SSE3, 1, [Define to 1 if SSE3 inline assembly is available.]) ])
1307   # SSSE3
1308   AC_CACHE_CHECK([if $CC groks SSSE3 inline assembly], [ac_cv_ssse3_inline], [
1309     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1310 void *p;
1311 asm volatile("pabsw %%xmm0,%%xmm0"::"r"(p):"xmm0");
1313     ], [
1314       ac_cv_ssse3_inline=yes
1315     ], [
1316       ac_cv_ssse3_inline=no
1317     ])
1318   ])
1320   AS_IF([test "${ac_cv_ssse3_inline}" != "no"], [
1321     AC_DEFINE(CAN_COMPILE_SSSE3, 1, [Define to 1 if SSSE3 inline assembly is available.]) ])
1323   # SSE4.1
1324   AC_CACHE_CHECK([if $CC groks SSE4.1 inline assembly],
1325                  [ac_cv_sse4_1_inline], [
1326     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1327 void *p;
1328 asm volatile("pmaxsb %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1330     ], [
1331       ac_cv_sse4_1_inline=yes
1332     ], [
1333       ac_cv_sse4_1_inline=no
1334     ])
1335   ])
1337   AS_IF([test "${ac_cv_sse4_1_inline}" != "no"], [
1338     AC_DEFINE(CAN_COMPILE_SSE4_1, 1, [Define to 1 if SSE4_1 inline assembly is available.]) ])
1340   # SSE4.2
1341   AC_CACHE_CHECK([if $CC groks SSE4.2 inline assembly],
1342                  [ac_cv_sse4_2_inline], [
1343     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1344 void *p;
1345 asm volatile("pcmpgtq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1347     ], [
1348       ac_cv_sse4_2_inline=yes
1349     ], [
1350       ac_cv_sse4_2_inline=no
1351     ])
1352   ])
1354   AS_IF([test "${ac_cv_sse4_2_inline}" != "no"], [
1355     AC_DEFINE(CAN_COMPILE_SSE4_2, 1, [Define to 1 if SSE4_2 inline assembly is available.]) ])
1357   # SSE4A
1358   AC_CACHE_CHECK([if $CC groks SSE4A inline assembly], [ac_cv_sse4a_inline], [
1359     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1360 void *p;
1361 asm volatile("insertq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1363     ], [
1364       ac_cv_sse4a_inline=yes
1365     ], [
1366       ac_cv_sse4a_inline=no
1367     ])
1368   ])
1369   VLC_RESTORE_FLAGS
1370   AS_IF([test "${ac_cv_sse4a_inline}" != "no"], [
1371     AC_DEFINE(CAN_COMPILE_SSE4A, 1, [Define to 1 if SSE4A inline assembly is available.]) ])
1373 AM_CONDITIONAL([HAVE_SSE2], [test "$have_sse2" = "yes"])
1375 VLC_SAVE_FLAGS
1376 CFLAGS="${CFLAGS} -mmmx"
1377 have_3dnow="no"
1378 AC_CACHE_CHECK([if $CC groks 3D Now! inline assembly], [ac_cv_3dnow_inline], [
1379   AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1380 void *p;
1381 asm volatile("pfadd %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1383   ], [
1384     ac_cv_3dnow_inline=yes
1385   ], [
1386     ac_cv_3dnow_inline=no
1387   ])
1389 VLC_RESTORE_FLAGS
1390 AS_IF([test "${ac_cv_3dnow_inline}" != "no"], [
1391   AC_DEFINE(CAN_COMPILE_3DNOW, 1,
1392             [Define to 1 if 3D Now! inline assembly is available.])
1393   have_3dnow="yes"
1395 AM_CONDITIONAL([HAVE_3DNOW], [test "$have_3dnow" = "yes"])
1398 AC_ARG_ENABLE(neon,
1399   [AS_HELP_STRING([--disable-neon],
1400     [disable NEON optimizations (default auto)])],, [
1401   AS_IF([test "${host_cpu}" = "arm"], [enable_neon="yes"] ,[enable_neon="no"])
1403 AS_IF([test "${enable_neon}" != "no"], [
1404   VLC_SAVE_FLAGS
1405   CFLAGS="${CFLAGS} -mfpu=neon -mhard-float"
1406   AC_CACHE_CHECK([if $CCAS groks ARM NEON assembly], [ac_cv_arm_neon], [
1407     AC_COMPILE_IFELSE([
1408       AC_LANG_PROGRAM(,[[
1409 asm volatile("vqmovun.s64 d0, q1":::"d0");
1411     ], [
1412       ac_cv_arm_neon="yes"
1413     ], [
1414       ac_cv_arm_neon="no"
1415     ])
1416   ])
1417   VLC_RESTORE_FLAGS
1419 AM_CONDITIONAL(HAVE_NEON, [test "${ac_cv_arm_neon}" = "yes"])
1422 AC_ARG_ENABLE(altivec,
1423   [AS_HELP_STRING([--disable-altivec],
1424     [disable AltiVec optimizations (default auto)])],, [
1425   AS_CASE("${host_cpu}", [powerpc*],
1426         [enable_altivec=yes], [enable_altivec=no])
1428 have_altivec="no"
1429 ALTIVEC_CFLAGS=""
1430 AS_IF([test "${enable_altivec}" = "yes"], [
1431   ARCH="${ARCH} altivec";
1432   VLC_SAVE_FLAGS
1433   AC_CACHE_CHECK([if $CC groks AltiVec inline assembly],
1434     [ac_cv_altivec_inline],
1435     [AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1436          ac_cv_altivec_inline="yes",
1437          [CFLAGS="${CFLAGS} -Wa,-maltivec"
1438           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1439             [ac_cv_altivec_inline="-Wa,-maltivec"],
1440             ac_cv_altivec_inline=no)
1441          ])])
1442   VLC_RESTORE_FLAGS
1443   AS_IF([test "${ac_cv_altivec_inline}" != "no"], [
1444     AC_DEFINE(CAN_COMPILE_ALTIVEC, 1,
1445               [Define to 1 if AltiVec inline assembly is available.])
1446     AS_IF([test "${ac_cv_altivec_inline}" != "yes"], [
1447       ALTIVEC_CFLAGS="${ac_cv_altivec_inline}"
1448       VLC_ADD_CFLAGS([libvlccore],[${ac_cv_altivec_inline}])
1449     ])
1450     have_altivec="yes"
1451   ])
1453   VLC_SAVE_FLAGS
1454   AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1455   [ac_cv_c_altivec], [
1456     CFLAGS="${CFLAGS} -maltivec"
1457     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1458 [#include <altivec.h>]], [
1459 [vec_ld(0, (unsigned char *)0);]])], [
1460       ac_cv_c_altivec="-maltivec"
1461     ], [
1462       ac_cv_c_altivec="no"
1463     ])
1464   ])
1465   VLC_RESTORE_FLAGS
1466   AS_IF([test "${ac_cv_c_altivec}" != "no"], [
1467     CPPFLAGS="${CPPFLAGS} ${ac_cv_c_altivec}"
1468     AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, [Define to 1 if C AltiVec extensions are available.])
1469     VLC_ADD_CFLAGS([libvlccore],[${ac_cv_c_altivec}])
1470     ALTIVEC_CFLAGS="$ALTIVEC_FLAGS ${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}"
1471     VLC_ADD_CFLAGS([deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1472     have_altivec="yes"
1473   ])
1474   AC_CHECK_HEADERS(altivec.h)
1476   VLC_SAVE_FLAGS
1477   LDFLAGS="${LDFLAGS} -Wl,-framework,vecLib"
1478   AC_CACHE_CHECK([if linker needs -framework vecLib],
1479     [ac_cv_ld_altivec],
1480     [AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)])
1481   VLC_RESTORE_FLAGS
1482   AS_IF([test "${ac_cv_ld_altivec}" != "no"], [
1483     VLC_ADD_LIBS([libvlccore],[-Wl,-framework,vecLib])
1484   ])
1486 AC_SUBST(ALTIVEC_CFLAGS)
1487 AM_CONDITIONAL([HAVE_ALTIVEC], [test "$have_altivec" = "yes"])
1490 dnl  Memory usage
1492 AC_ARG_ENABLE(optimize-memory,
1493   [AS_HELP_STRING([--enable-optimize-memory],
1494     [optimize memory usage over performance])])
1495 if test "${enable_optimize_memory}" = "yes"; then
1496   AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1500 dnl Allow running as root (useful for people running on embedded platforms)
1502 AC_ARG_ENABLE(run-as-root,
1503   [AS_HELP_STRING([--enable-run-as-root],
1504     [allow running VLC as root (default disabled)])])
1505 AS_IF([test "${enable_run_as_root}" = "yes"],[
1506     AC_DEFINE(ALLOW_RUN_AS_ROOT, 1,
1507               [Define to 1 to allow running VLC as root (uid 0).])
1511 dnl Stream output
1513 AC_ARG_ENABLE(sout,
1514   [AS_HELP_STRING([--disable-sout],
1515     [disable streaming output (default enabled)])])
1516 AS_IF([test "${enable_sout}" != "no"], [
1517   AC_DEFINE(ENABLE_SOUT, 1, [Define to 1 for stream output support.])
1519 AM_CONDITIONAL(ENABLE_SOUT, [test "${enable_sout}" != "no"])
1521 dnl Lua modules
1522 AC_ARG_ENABLE(lua,
1523   [AS_HELP_STRING([--disable-lua],
1524     [disable LUA scripting support (default enabled)])])
1525 if test "${enable_lua}" != "no"
1526 then
1527   PKG_CHECK_MODULES(LUA, lua5.2,
1528     [ have_lua=yes ],
1529     [
1530     AC_MSG_WARN([${LUA_PKG_ERRORS}, trying lua 5.1 instead])
1532     PKG_CHECK_MODULES(LUA, lua5.1,
1533       [ have_lua=yes ],
1534       [
1535       AC_MSG_WARN([${LUA_PKG_ERRORS}, trying lua >= 5.1 instead])
1536       PKG_CHECK_MODULES(LUA, lua >= 5.1,
1537         [ have_lua=yes ],
1538         [
1539           AC_MSG_WARN([${LUA_PKG_ERRORS}, trying manual detection instead])
1540           have_lua=yes
1541           AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
1542             [],
1543             [ have_lua=no ] )
1544           AC_CHECK_LIB(  lua5.2 , luaL_newstate,
1545             [LUA_LIBS="-llua5.2"],
1546           AC_CHECK_LIB( lua5.1 , luaL_newstate,
1547             [LUA_LIBS="-llua5.1"],
1548             AC_CHECK_LIB( lua51 , luaL_newstate,
1549               [LUA_LIBS="-llua51"],
1550               AC_CHECK_LIB( lua , luaL_newstate,
1551                 [LUA_LIBS="-llua"],
1552                 [ have_lua=no
1553                 ], [-lm])
1554             )))
1555         ])
1556       ])
1557     ])
1558   if test "x${have_lua}" != "xyes" ;  then
1559       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.])
1560   fi
1561   AC_ARG_VAR([LUAC], [LUA byte compiler])
1562   AC_CHECK_PROGS(LUAC, [${LUAC} luac], [false])
1563   AS_IF([test "${LUAC}" = "false"], [
1564     AC_MSG_ERROR([Could not find the LUA byte compiler.])
1565   ])
1566   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], [
1567     AC_MSG_ERROR([You need 32-bits luac when using lua from contrib.])
1568   ])
1570 AM_CONDITIONAL(BUILD_LUA, [test "${have_lua}" = "yes"])
1574 dnl HTTP daemon
1576 AC_ARG_ENABLE(httpd,
1577   [AS_HELP_STRING([--disable-httpd],
1578     [disable the built-in HTTP server (default enabled)])])
1579 if test "${enable_httpd}" != "no"
1580 then
1581   AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP daemon support)
1583 AM_CONDITIONAL(BUILD_HTTPD, [test "${enable_httpd}" != "no"])
1587 dnl VideoLAN manager
1589 AC_ARG_ENABLE(vlm,
1590   [AS_HELP_STRING([--disable-vlm],
1591     [disable the stream manager (default enabled)])],,
1592   [enable_vlm="${enable_sout}"])
1593 AS_IF([test "${enable_vlm}" != "no"], [
1594   AS_IF([test "${enable_sout}" = "no"], [
1595     AC_MSG_ERROR([VLM requires the stream output. Do not use --disable-sout.])
1596   ])
1597   AC_DEFINE(ENABLE_VLM, 1, [Define if you want the VideoLAN manager support])
1599 AM_CONDITIONAL([ENABLE_VLM], [test "${enable_vlm}" != "no"])
1603 dnl Addons manager storage and repositories modules
1605 AC_ARG_ENABLE(addonmanagermodules,
1606   [AS_HELP_STRING([--disable-addonmanagermodules],
1607     [disable the addons manager modules (default enabled)])])
1608 if test "${enable_addonmanagermodules}" != "no"
1609 then
1610   AC_DEFINE(ENABLE_ADDONMANAGERMODULES, 1, [Define if you want the addons manager modules])
1612 AM_CONDITIONAL([ENABLE_ADDONMANAGERMODULES], [test "${enable_addonmanagermodules}" != "no"])
1616 dnl  Input plugins
1619 EXTEND_HELP_STRING([Input plugins:])
1622 dnl  libarchive access module
1624 PKG_ENABLE_MODULES_VLC([ARCHIVE], [access_archive], [libarchive >= 3.1.0], (libarchive support), [auto])
1627 dnl  live555 input
1629 AC_ARG_ENABLE(live555,
1630   [AS_HELP_STRING([--enable-live555],
1631     [enable RTSP input through live555 (default enabled)])])
1633 AS_IF([test "${enable_live555}" != "no" -a -n "${CXX}"], [
1634   PKG_CHECK_MODULES(LIVE555, live555, [
1635     VLC_ADD_PLUGIN([live555])
1636     VLC_ADD_CXXFLAGS([live555], [$LIVE555_CFLAGS])
1637     VLC_ADD_LIBS([live555],[$LIVE555_LIBS])
1638   ], [
1639     AC_MSG_WARN([${LIVE555_PKG_ERRORS}.])
1641     AC_LANG_PUSH(C++)
1642     VLC_SAVE_FLAGS
1644     dnl detect include paths
1645     AS_IF([test -f "${CONTRIB_DIR}/include/UsageEnvironment.hh"], [
1646       CPPFLAGS_live555="-I${CONTRIB_DIR}/include/liveMedia -I${CONTRIB_DIR}/include/groupsock -I${CONTRIB_DIR}/include/BasicUsageEnvironment -I${CONTRIB_DIR}/include/UsageEnvironment"
1647     ], [
1648       AS_IF([test "${SYS}" != "os2"], [
1649         LIVE555_PREFIX=${LIVE555_PREFIX-"/usr"}
1650         CPPFLAGS_live555="-I${LIVE555_PREFIX}/include/liveMedia -I${LIVE555_PREFIX}/include/groupsock -I${LIVE555_PREFIX}/include/BasicUsageEnvironment -I${LIVE555_PREFIX}/include/UsageEnvironment"
1651       ], [
1652         LIVE555_PREFIX=${LIVE555_PREFIX-"/usr/lib/live"}
1653         CPPFLAGS_live555="-I${LIVE555_PREFIX}/liveMedia/include -I${LIVE555_PREFIX}/groupsock/include -I${LIVE555_PREFIX}/BasicUsageEnvironment/include -I${LIVE555_PREFIX}/UsageEnvironment/include"
1654         LDFLAGS_live555="-L${LIVE555_PREFIX}/liveMedia -L${LIVE555_PREFIX}/groupsock -L${LIVE555_PREFIX}/BasicUsageEnvironment -L${LIVE555_PREFIX}/UsageEnvironment"
1655       ])
1656     ])
1658     dnl CPP Flags
1659     AS_IF([test "${SYS}" = "solaris"], [
1660       CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS"
1661     ])
1662     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}"
1663     LDFLAGS="${LDFLAGS} ${LDFLAGS_live555}"
1665     dnl version check
1666     AC_CACHE_CHECK([for live555 version 1324598400 or later], [ac_cv_live555], [
1667       AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1668 [#include <liveMedia_version.hh>
1669 #if !defined (LIVEMEDIA_LIBRARY_VERSION_INT) || (LIVEMEDIA_LIBRARY_VERSION_INT < 1324598400)
1670 # error BOOM
1671 #endif]])
1672       ], [
1673         ac_cv_live555="yes"
1674       ], [
1675         ac_cv_live555="no"
1676       ])
1677     ])
1679     AS_IF([test "$ac_cv_live555" = "no"], [
1680       AC_MSG_WARN([live555 is missing or its installed version is too old:
1681 Version 2011.12.23 or later is required to proceed.
1682 You can get an updated one from http://www.live555.com/liveMedia .])
1683       AS_IF([test -n "${enable_live555}"], [
1684         AC_MSG_ERROR([Update live555 or pass --disable-live555 to disable RTSP input support.])
1685       ])
1686     ], [
1687       other_libs="-lgroupsock -lBasicUsageEnvironment -lUsageEnvironment"
1688       other_libs_pic="-lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic"
1689       AS_IF([test "${SYS}" = "mingw32"], [
1690         # add ws2_32 for closesocket, select, recv
1691         other_libs="$other_libs -lws2_32"
1692       ])
1694       dnl We need to check for pic because live555 don't provide shared libs
1695       dnl and we want to build a plugins so we need -fPIC on some arch.
1696       VLC_ADD_CXXFLAGS([live555], [${CPPFLAGS_live555}])
1697       VLC_ADD_LDFLAGS([live555], [${LDFLAGS_live555}])
1698       AC_CHECK_LIB(liveMedia_pic, main, [
1699         VLC_ADD_PLUGIN([live555])
1700         VLC_ADD_LIBS([live555], [-lliveMedia_pic ${other_libs_pic}])
1701       ],[
1702         AC_CHECK_LIB(liveMedia, main, [
1703           VLC_ADD_PLUGIN([live555])
1704           VLC_ADD_LIBS([live555], [-lliveMedia ${other_libs}])
1705         ],[],[${other_libs}])
1706       ],[${other_libs_pic}])
1707     ])
1708     VLC_RESTORE_FLAGS
1709     AC_LANG_POP(C++)
1710   ])
1714 dnl IIDC and DV FireWire input modules
1716 PKG_ENABLE_MODULES_VLC([DC1394], [], [libdc1394-2 >= 2.1.0], [IIDC FireWire input module], [auto])
1717 PKG_ENABLE_MODULES_VLC([DV1394], [], [libraw1394 >= 2.0.1 libavc1394 >= 0.5.3], [DV FireWire input module], [auto])
1720 dnl - linsys modules: access module check for libzvbi
1722 AC_ARG_ENABLE(linsys,
1723   [AS_HELP_STRING([--enable-linsys],
1724     [Linux Linear Systems Ltd. SDI and HD-SDI input cards (default enabled)])])
1725 AS_IF([test "$SYS" = "linux" -a "${enable_linsys}" != "no"], [
1726   VLC_ADD_PLUGIN([linsys_hdsdi])
1727   PKG_CHECK_MODULES(LINSYS_SDI, [zvbi-0.2 >= 0.2.28], [
1728     VLC_ADD_PLUGIN([linsys_sdi])
1729   ], [
1730     AC_MSG_WARN([${LINSYS_SDI_PKG_ERRORS}.])
1731   ])
1735 dnl dvdread module: check for libdvdread
1737 PKG_ENABLE_MODULES_VLC([DVDREAD], [], [dvdread > 4.9.0], [dvdread input module], [auto])
1740 dnl libdvdnav plugin
1742 PKG_ENABLE_MODULES_VLC([DVDNAV], [], [dvdnav > 4.9.0], [DVD with navigation input module (dvdnav)], [auto])
1743 AS_IF([test "${enable_dvdnav}" != "no"], [
1744   AC_MSG_CHECKING(for dvdnav_stream_cb in dvdnav/dvdnav.h)
1745     AC_EGREP_HEADER(dvdnav_stream_cb,dvdnav/dvdnav.h,[
1746       AC_MSG_RESULT(yes)
1747       AC_DEFINE(HAVE_STREAM_CB_IN_DVDNAV_H, 1, For dvdnav demux support)
1748       ],[
1749       AC_MSG_RESULT(no)
1750     ])
1754 dnl  Blu-ray Disc Support with libbluray
1756 PKG_ENABLE_MODULES_VLC([BLURAY], [libbluray], [libbluray >= 0.6.2], (libbluray for Blu-ray disc support ) )
1759 dnl  OpenCV wrapper and example filters
1761 PKG_ENABLE_MODULES_VLC([OPENCV], [opencv_example opencv_wrapper], [opencv > 2.0], (OpenCV (computer vision) filter), [auto])
1765 dnl  libsmbclient plugin
1767 PKG_ENABLE_MODULES_VLC([SMBCLIENT], [smb], [smbclient], (SMB/CIFS support), [auto])
1768 AS_IF([test "${SYS}" = "mingw32" -a "${enable_smbclient}" != "no"], [ VLC_ADD_PLUGIN([smb]) ])
1771 dnl  liBDSM access module
1773 PKG_ENABLE_MODULES_VLC([DSM], [dsm], [libdsm >= 0.2.0], [libdsm SMB/CIFS access/sd module], [auto])
1776 dnl sftp access support
1778 PKG_ENABLE_MODULES_VLC([SFTP], [sftp], [libssh2], (support SFTP file transfer via libssh2), [auto])
1781 dnl nfs access support
1783 PKG_ENABLE_MODULES_VLC([NFS], [nfs], [libnfs >= 1.10.0], (support nfs protocol via libnfs), [auto])
1786 dnl  Video4Linux 2
1788 AC_ARG_ENABLE(v4l2, [AS_HELP_STRING([--disable-v4l2],
1789   [disable Video4Linux version 2 (default auto)])])
1790 have_v4l2="no"
1791 AS_IF([test "$enable_v4l2" != "no"], [
1792   AC_CHECK_HEADERS([linux/videodev2.h sys/videoio.h], [
1793     have_v4l2="yes"
1794   ])
1796 AM_CONDITIONAL(HAVE_V4L2, [test "${have_v4l2}" != "no"])
1799 dnl special access module for Blackmagic SDI cards
1801 AC_ARG_ENABLE(decklink,
1802   [AS_HELP_STRING([--disable-decklink],
1803     [disable Blackmagic DeckLink SDI input (default auto)])])
1804 AC_ARG_WITH(decklink_sdk,
1805   [AS_HELP_STRING[--with-decklink-sdk=DIR],
1806     [                        location of Blackmagic DeckLink SDI SDK])])
1807 have_decklink=no
1808 if test "${enable_decklink}" != "no"
1809 then
1810   if test "${with_decklink_sdk}" != "no" -a -n "${with_decklink_sdk}"
1811   then
1812     VLC_ADD_CPPFLAGS([decklink decklinkoutput],[-I${with_decklink_sdk}/include])
1813   fi
1814   VLC_SAVE_FLAGS
1815   CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_decklink}"
1816   AC_LANG_PUSH(C++)
1817   AC_CHECK_HEADERS(DeckLinkAPIDispatch.cpp, [
1818       have_decklink=yes
1819   ], [
1820       AC_MSG_WARN(Blackmagic DeckLink SDI include files not found, decklink disabled)
1821   ])
1822   AC_LANG_POP(C++)
1823   VLC_RESTORE_FLAGS
1825 AM_CONDITIONAL(HAVE_DECKLINK, [ test "${have_decklink}" != "no" ])
1829 dnl  Built-in CD-DA and VCD module
1831 AC_ARG_ENABLE(vcd,
1832   [AS_HELP_STRING([--disable-vcd],
1833     [disable built-in VCD and CD-DA support (default enabled)])])
1835 AC_ARG_ENABLE(libcddb,
1836   [AS_HELP_STRING([--disable-libcddb],
1837     [disable CDDB for Audio CD (default enabled)])])
1839 if test "${enable_vcd}" != "no"
1840 then
1841   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1842   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1843     AC_MSG_RESULT(yes)
1844     VLC_ADD_PLUGIN([vcd cdda])
1845   ],[
1846     AC_MSG_RESULT(no)
1847   ])
1849   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1850   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1851     AC_MSG_RESULT(yes)
1852     VLC_ADD_PLUGIN([vcd cdda])
1853     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1854   ],[
1855     AC_MSG_RESULT(no)
1856   ])
1858   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1859   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1860     AC_MSG_RESULT(yes)
1861     VLC_ADD_PLUGIN([vcd cdda])
1862     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1863   ],[
1864     AC_MSG_RESULT(no)
1865   ])
1867   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32" -o "${SYS}" = "os2" -o "${SYS}" = "darwin"
1868   then
1869     VLC_ADD_PLUGIN([vcd cdda])
1870   fi
1872   if test "$enable_libcddb" != "no"; then
1873     PKG_CHECK_MODULES(LIBCDDB, [libcddb >= 0.9.5], [
1874       HAVE_LIBCDDB=yes
1875       AC_DEFINE(HAVE_LIBCDDB, 1, [Define this if you have libcddb installed])
1876       VLC_ADD_LIBS([cdda],[$LIBCDDB_LIBS])
1877       VLC_ADD_CFLAGS([cdda],[$LIBCDDB_CFLAGS])
1878       ],:
1879       [AC_MSG_WARN([${LIBCDDB_PKG_ERRORS}: CDDB access disabled.])
1880       HAVE_LIBCDDB=no])
1881   fi
1885 dnl Linux DVB
1887 AC_CACHE_CHECK([for Linux DVB version 5.1], [ac_cv_linux_dvb_5_1], [
1888   AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1889 [#include <linux/dvb/version.h>
1890 #if (DVB_API_VERSION < 5)
1891 # error Linux DVB API v3.2 and older are not supported.
1892 #endif
1893 #if (DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR < 1)
1894 # error Linux DVB API v5.0 is unsupported. Please update.
1895 #endif
1896 ]])], [
1897   ac_cv_linux_dvb_5_1=yes
1898 ], [
1899   ac_cv_linux_dvb_5_1=no
1900 ])])
1901 AM_CONDITIONAL([HAVE_LINUX_DVB], [test "$ac_cv_linux_dvb_5_1" = "yes"])
1904 dnl  Screen capture module
1906 AC_ARG_ENABLE(screen,
1907   [AS_HELP_STRING([--enable-screen],
1908     [disable screen capture (default enabled)])])
1909 if test "${enable_screen}" != "no"; then
1910   if test "${SYS}" = "darwin"; then
1911     AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
1912       VLC_ADD_PLUGIN([screen])
1913     ])
1914   fi
1916 AM_CONDITIONAL(HAVE_MAC_SCREEN, [test "${SYS}" = "darwin" -a "x${enable_screen}" != "xno"])
1919 dnl  VNC/RFB access module
1921 PKG_ENABLE_MODULES_VLC([VNC], [vnc], [libvncclient >= 0.9.9], (VNC/rfb client support), [auto])
1923 dnl  RDP/Remote Desktop access module
1925 PKG_ENABLE_MODULES_VLC([FREERDP], [rdp], [freerdp >= 1.0.1], (RDP/Remote Desktop client support) )
1928 dnl  Real RTSP plugin
1930 AC_ARG_ENABLE(realrtsp,
1931   [  --enable-realrtsp       Real RTSP module (default disabled)])
1932 if test "${enable_realrtsp}" = "yes"; then
1933   VLC_ADD_PLUGIN([access_realrtsp])
1937 dnl MacOS eyeTV
1938 AC_ARG_ENABLE(macosx-eyetv,
1939   [  --enable-macosx-eyetv   Mac OS X EyeTV (TNT Tuner) module (default enabled on Mac OS X)])
1940 if test "x${enable_macosx_eyetv}" != "xno" &&
1941   (test "${SYS}" = "darwin" || test "${enable_macosx_eyetv}" = "yes")
1942 then
1943   VLC_ADD_PLUGIN([access_eyetv])
1947 dnl QTKit
1948 AC_ARG_ENABLE(macosx-qtkit,
1949   [  --enable-macosx-qtkit Mac OS X qtsound (audio) module (default enabled on Mac OS X <= v10.11)])
1950 if test "x${enable_macosx_qtkit}" != "xno" &&
1951   (test "${SYS}" = "darwin" || test "${enable_macosx_qtkit}" = "yes")
1952 then
1953   AC_CHECK_HEADERS(QTKit/QTKit.h, [
1954       VLC_ADD_PLUGIN([qtsound])
1955     ])
1959 dnl AVFoundation
1960 AC_SUBST(have_avfoundation, ["no"])
1961 AC_ARG_ENABLE(macosx-avfoundation,
1962   [  --enable-macosx-avfoundation Mac OS X avcapture (video) module (default enabled on Mac OS X)])
1963 if test "x${enable_macosx_avfoundation}" != "xno" &&
1964   (test "${SYS}" = "darwin" || test "${enable_macosx_avfoundation}" = "yes")
1965 then
1966   SAVED_LIBS="${LIBS}"
1967   LIBS="-framework AVFoundation"
1968   AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [])],[have_avfoundation=yes],[have_avfoundation=no])
1969   LIBS="${SAVED_LIBS}"
1970   if test "${have_avfoundation}" != "no"
1971   then
1972     VLC_ADD_PLUGIN([avcapture])
1973   fi
1975 AM_CONDITIONAL(HAVE_AVFOUNDATION, [test "${have_avfoundation}" != "no"])
1978 dnl  DCP plugin (using asdcplib)
1980 PKG_WITH_MODULES([ASDCP], [asdcplib], [have_asdcp="yes"])
1981 AM_CONDITIONAL(HAVE_ASDCP, [test "${have_asdcp}" = "yes"])
1984 dnl  Demux plugins
1987 EXTEND_HELP_STRING([Mux/Demux plugins:])
1990 dnl  libdvbpsi check for ts mux/demux
1992 have_dvbpsi="no"
1993 PKG_WITH_MODULES([DVBPSI], [libdvbpsi >= 1.2.0], [have_dvbpsi="yes"])
1994 AM_CONDITIONAL(HAVE_DVBPSI, [test "${have_dvbpsi}" = "yes"])
1998 dnl  GME demux plugin
2000 AC_ARG_ENABLE(gme,
2001   [AS_HELP_STRING([--enable-gme],
2002     [use Game Music Emu (default auto)])])
2003 AS_IF([test "${enable_gme}" != "no"], [
2004   AC_CHECK_HEADER([gme/gme.h], [
2005     VLC_ADD_LIBS([gme], [-lgme])
2006     VLC_ADD_PLUGIN([gme])
2007   ], [
2008     AS_IF([test "x${enable_gme}" != "x"], [
2009       AC_MSG_ERROR([GME cannot be found. Please install the development files.])
2010     ])
2011   ])
2016 dnl  SIDPlay plugin
2018 AC_ARG_ENABLE(sid,
2019     [AS_HELP_STRING([--enable-sid],[C64 sid demux support (default auto)])])
2020 AS_IF([test "${enable_sid}" != "no"], [
2021     PKG_CHECK_MODULES(SID, [libsidplay2], [
2022         AC_LANG_PUSH(C++)
2023         oldCPPFLAGS="$CPPFLAGS"
2024         CPPFLAGS="$CPPFLAGS $SID_CFLAGS"
2025         AC_CHECK_HEADER([sidplay/builders/resid.h], [
2026             VLC_ADD_PLUGIN([sid])
2027             VLC_ADD_CFLAGS([sid], [$SID_CFLAGS])
2028             VLC_ADD_LIBS([sid], [$SID_LIBS] [-lresid-builder])
2029         ], [
2030             AS_IF([test -n "${enable_sid}"],
2031                 [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
2032                 [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2033                 )
2034         ])
2035         CPPFLAGS="$oldCPPFLAGS"
2036         AC_LANG_POP(C++)
2037     ], [
2038         AS_IF([test "x${enable_sid}" = "xyes"],
2039             [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
2040             [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2041             )
2042     ])
2047 dnl  ogg demux plugin
2049 PKG_ENABLE_MODULES_VLC([OGG], [mux_ogg], [ogg >= 1.0], [Ogg demux support], [auto])
2050 PKG_CHECK_MODULES(LIBVORBIS, [vorbis >= 1.1], [
2051     AC_DEFINE(HAVE_LIBVORBIS, 1, [Define to 1 if you have the libvorbis])
2052 ],[true])
2053 PKG_ENABLE_MODULES_VLC([OGG], [], [ogg >= 1.0], [Ogg demux support], [auto], [${LIBVORBIS_CFLAGS}], [${LIBVORBIS_LIBS}])
2054 if test "${enable_sout}" != "no"; then
2055 dnl Check for libshout
2056     PKG_ENABLE_MODULES_VLC([SHOUT], [access_output_shout], [shout >= 2.1], [libshout output plugin], [auto])
2060 dnl  matroska demux plugin
2062 AC_ARG_ENABLE(mkv,
2063   [AS_HELP_STRING([--disable-mkv],
2064     [do not use libmatroska (default auto)])])
2065 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
2066   AC_LANG_PUSH(C++)
2067   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
2068     AC_MSG_CHECKING(for libebml version >= 1.0.0)
2069     AC_EGREP_CPP(yes,
2070       [#include <ebml/EbmlVersion.h>
2071        #ifdef LIBEBML_VERSION
2072        #if LIBEBML_VERSION >= 0x010000
2073        yes
2074        #endif
2075        #endif],
2076       [AC_MSG_RESULT([yes])
2077         AC_CHECK_HEADERS(matroska/KaxVersion.h, [
2078           AC_MSG_CHECKING(for libmatroska version >= 1.0.0)
2079           AC_EGREP_CPP(yes,
2080             [#include <matroska/KaxVersion.h>
2081              #ifdef LIBMATROSKA_VERSION
2082              #if LIBMATROSKA_VERSION >= 0x010000
2083              yes
2084              #endif
2085              #endif],
2086             [AC_MSG_RESULT([yes])
2087               AC_CHECK_HEADERS(matroska/KaxAttachments.h)
2088               AC_CHECK_LIB(ebml_pic, main, [
2089                 VLC_ADD_PLUGIN([mkv])
2090                 VLC_ADD_LIBS([mkv],[-lmatroska -lebml_pic])
2091               ],[
2092                 AC_CHECK_LIB(ebml, main, [
2093                   VLC_ADD_PLUGIN([mkv])
2094                   VLC_ADD_LIBS([mkv],[-lmatroska -lebml])
2095                 ])
2096               ])
2097             ], [
2098               AC_MSG_RESULT([no])
2099               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.])
2100           ])
2101         ])
2102       ],
2103       [AC_MSG_RESULT([no])
2104         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.])
2105     ])
2106   ])
2107   AC_LANG_POP(C++)
2111 dnl  modplug demux plugin
2113 AC_ARG_ENABLE(mod,
2114   [AS_HELP_STRING([--disable-mod],
2115     [do not use libmodplug (default auto)])])
2116 if test "${enable_mod}" != "no" ; then
2117     PKG_CHECK_MODULES(LIBMODPLUG, [libmodplug >= 0.8.4 libmodplug != 0.8.8], [
2118           VLC_ADD_PLUGIN([mod])
2119           VLC_ADD_CXXFLAGS([mod],[$LIBMODPLUG_CFLAGS])
2120           VLC_ADD_CFLAGS([mod],[$LIBMODPLUG_CFLAGS]) #modules/demux/mod.c needs CFLAGS_mod, not CXXFLAGS_mod
2121           VLC_ADD_LIBS([mod],[$LIBMODPLUG_LIBS])
2122     ],[
2123        AS_IF([test -n "${enable_mod}"],
2124          [AC_MSG_ERROR([${LIBMODPLUG_PKG_ERRORS}.])],
2125          [AC_MSG_WARN([${LIBMODPLUG_PKG_ERRORS}.])])
2126     ])
2130 dnl  mpc demux plugin
2132 AC_ARG_ENABLE(mpc,
2133   [AS_HELP_STRING([--disable-mpc], [do not use libmpcdec (default auto)])])
2134 if test "${enable_mpc}" != "no"
2135 then
2136   AC_CHECK_HEADERS([mpc/mpcdec.h], [
2137     VLC_ADD_PLUGIN([mpc])
2138     VLC_ADD_LIBS([mpc],[-lmpcdec])],
2139     [AC_CHECK_HEADERS([mpcdec/mpcdec.h], [
2140     VLC_ADD_PLUGIN([mpc])
2141     VLC_ADD_LIBS([mpc],[-lmpcdec])])])
2145 dnl  Codec plugins
2148 EXTEND_HELP_STRING([Codec plugins:])
2151 dnl wmafixed plugin
2153 AC_ARG_ENABLE(wma-fixed,
2154   [  --enable-wma-fixed      libwma-fixed module (default disabled)])
2155 if test "${enable_wma_fixed}" = "yes"
2156 then
2157   VLC_ADD_PLUGIN([wma_fixed])
2161 dnl shine encoder plugin
2163 PKG_ENABLE_MODULES_VLC([SHINE], [], [shine >= 3.0.0], [MPEG Audio Layer 3 encoder], [auto], [], [], [])
2167 dnl openmax il codec plugin
2169 AC_ARG_ENABLE(omxil,
2170   [  --enable-omxil          openmax il codec module (default disabled)])
2171 if test "${enable_omxil}" = "yes"
2172 then
2173   VLC_ADD_PLUGIN([omxil])
2177 dnl openmax il vout plugin
2179 AC_ARG_ENABLE(omxil-vout,
2180   [  --enable-omxil-vout     openmax il video output module (default disabled)])
2181 if test "${enable_omxil_vout}" = "yes"
2182 then
2183   VLC_ADD_PLUGIN([omxil_vout])
2187 dnl raspberry pi openmax il configuration
2189 AC_ARG_ENABLE(rpi-omxil,
2190   [  --enable-rpi-omxil     openmax il configured for raspberry pi (default disabled)])
2191 if test "${enable_rpi_omxil}" = "yes"
2192 then
2193   VLC_ADD_PLUGIN([omxil omxil_vout])
2194   VLC_ADD_CFLAGS([omxil omxil_vout],[-DRPI_OMX])
2198 dnl CrystalHD codec plugin
2200 AC_ARG_ENABLE(crystalhd,
2201   [  --enable-crystalhd      crystalhd codec plugin (default auto)])
2202 if test "${enable_crystalhd}" != "no"; then
2203     AC_CHECK_HEADER(libcrystalhd/libcrystalhd_if.h, [
2204       VLC_ADD_PLUGIN([crystalhd])
2205       VLC_ADD_LIBS([crystalhd], [-lcrystalhd])
2206     ],[
2207       if test "${SYS}" = "mingw32" ; then
2208         AC_CHECK_HEADERS(libcrystalhd/bc_dts_defs.h, [
2209           VLC_ADD_PLUGIN([crystalhd])
2210           AC_CHECK_HEADERS(libcrystalhd/bc_drv_if.h, [
2211             VLC_ADD_LIBS([crystalhd], [-lbcmDIL])
2212             ])
2213         ],[
2214           AS_IF([test x"${enable_crystalhd}" = "xyes"],
2215                 [AC_MSG_ERROR("Could not find CrystalHD development headers")],
2216                 [AC_MSG_WARN("Could not find CrystalHD development headers")])
2217         ],[#define __LINUX_USER__
2218                #include <libcrystalhd/bc_dts_types.h>
2219         ])
2220       fi
2221     ],[
2222        #include <libcrystalhd/bc_dts_types.h>
2223       ])
2227 dnl  mad plugin
2229 have_mad="no"
2230 MAD_CFLAGS=""
2231 MAD_LIBS=""
2233 AC_ARG_WITH(mad, [  --with-mad=PATH         path to libmad], [
2234   enable_mad="yes"
2235 ], [
2236   with_mad="no"
2238 AS_IF([test "${with_mad}" != "no"], [
2239   MAD_CFLAGS="-I${with_mad}/include"
2240   MAD_LIBS="-L${with_mad}/lib"
2243 AC_ARG_ENABLE(mad,
2244   [  --enable-mad            libmad module (default enabled)])
2245 AS_IF([test "${enable_mad}" != "no"], [
2246   VLC_SAVE_FLAGS
2247   CPPFLAGS="${CPPFLAGS} ${MAD_CFLAGS}"
2248   LDFLAGS="${LDFLAGS} ${MAD_LIBS}"
2249   AC_CHECK_HEADERS(mad.h, [
2250     AC_CHECK_LIB(mad, mad_bit_init, [
2251       have_mad="yes"
2252       MAD_LIBS="${MAD_LIBS} -lmad"
2253     ])
2254   ])
2255   VLC_RESTORE_FLAGS
2256   AS_IF([test -n "$enable_mad" -a "${have_mad}" = "no"], [
2257     AC_MSG_ERROR([Could not find libmad. Install it or pass --disable-mad to disable it.])
2258   ])
2260 AC_SUBST(MAD_CFLAGS)
2261 AC_SUBST(MAD_LIBS)
2262 AM_CONDITIONAL([HAVE_MAD], [test "${have_mad}" = "yes"])
2264 dnl  mpg123 plugin
2267 PKG_ENABLE_MODULES_VLC([MPG123], [mpg123], [libmpg123], [libmpg123 decoder support], [auto])
2270 AC_ARG_ENABLE(merge-ffmpeg,
2271 [  --enable-merge-ffmpeg   merge FFmpeg-based plugins (default disabled)],, [
2272   enable_merge_ffmpeg="no"
2274 AM_CONDITIONAL([MERGE_FFMPEG], [test "$enable_merge_ffmpeg" != "no"])
2276 AC_MSG_CHECKING([for libavutil variant])
2277 PKG_CHECK_EXISTS([libavutil], [
2278   libavutil_version="$(${PKG_CONFIG} --modversion libavutil)"
2279   libavutil_micro="${libavutil_version##*.}"
2280   AS_IF([test ${libavutil_micro} -le 99], [
2281     avfork="libav"
2282   ], [
2283     avfork="ffmpeg"
2284   ])
2285 ], [
2286   avfork="none"
2288 AC_MSG_RESULT([${avfork}])
2291 dnl gstreamer stuff
2293 AC_ARG_ENABLE(gst-decode,
2294   [  --enable-gst-decode     GStreamer based decoding support (currently supports only video decoding) (default auto)])
2296 have_gst_decode="no"
2297 AS_IF([test "${enable_gst_decode}" != "no"], [
2298   PKG_CHECK_MODULES([GST_APP], [gstreamer-app-1.0], [
2299     PKG_CHECK_MODULES([GST_VIDEO], [gstreamer-video-1.0], [
2300       have_gst_decode="yes"
2301     ], [
2302       AC_MSG_WARN([${GST_VIDEO_PKG_ERRORS}. GStreamer decoder module will not be built.])
2303     ])
2304   ], [
2305     AC_MSG_WARN([${GST_APP_PKG_ERRORS}. GStreamer modules will not be built.])
2306   ])
2308 AM_CONDITIONAL([HAVE_GST_DECODE], [test "${have_gst_decode}" = "yes"])
2311 dnl  avcodec decoder/encoder plugin
2313 AC_ARG_ENABLE(avcodec,
2314 [  --enable-avcodec        libavcodec codec (default enabled)])
2315 AS_IF([test "${enable_avcodec}" != "no"], [
2316   PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 55.0.0 libavutil >= 52.0.0], [
2317     dnl PKG_CHECK_EXISTS([libavcodec < 56],, [
2318     dnl   AC_MSG_ERROR([libavcodec versions 56 and later are not supported yet.])
2319     dnl ])
2320     VLC_SAVE_FLAGS
2321     CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2322     CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2323     AC_CHECK_HEADERS(libavcodec/avcodec.h)
2324     AC_CHECK_HEADERS(libavutil/avutil.h)
2325     VLC_RESTORE_FLAGS
2326     have_avcodec="yes"
2327   ],[
2328     AC_MSG_ERROR([${AVCODEC_PKG_ERRORS}. Pass --disable-avcodec to ignore this error.])
2329   ])
2330 ], [
2331   have_avcodec="no"
2333 AM_CONDITIONAL([HAVE_AVCODEC], [test "${have_avcodec}" != "no"])
2336 dnl libva needs avcodec
2338 AC_ARG_ENABLE(libva,
2339   [  --enable-libva          VAAPI GPU decoding support (libVA) (default auto)])
2341 AS_IF([test "${enable_libva}" = "yes" -a "${have_avcodec}" != "yes" ], [
2342   AC_MSG_ERROR([--enable-libva and --disable-avcodec options are mutually exclusive. Use --enable-avcodec.])
2345 have_vaapi="no"
2346 have_vaapi_drm="no"
2347 have_vaapi_x11="no"
2348 AS_IF([test "${enable_libva}" != "no"], [
2349   PKG_CHECK_EXISTS([libva], [
2350     have_vaapi="yes"
2351   ], [
2352     AS_IF([test -n "${enable_libva}"], [
2353       AC_MSG_ERROR([${LIBVA_PKG_ERRORS}.])
2354     ], [
2355       AC_MSG_WARN([${LIBVA_PKG_ERRORS}.])
2356     ])
2357   ])
2358   PKG_CHECK_MODULES([LIBVA_DRM], [libva-drm], [
2359     have_vaapi_drm="yes"
2360   ], [
2361     AC_MSG_WARN([${LIBVA_DRM_PKG_ERRORS}.])
2362   ])
2363   PKG_CHECK_MODULES(LIBVA_X11, [libva-x11], [
2364     have_vaapi_x11="yes"
2365   ], [
2366     AC_MSG_WARN([${LIBVA_X11_PKG_ERRORS}.])
2367   ])
2369 AM_CONDITIONAL([HAVE_VAAPI_DRM], [test "${have_vaapi_drm}" = "yes"])
2370 AM_CONDITIONAL([HAVE_VAAPI_X11], [test "${have_vaapi_x11}" = "yes"])
2372 have_avcodec_vaapi="no"
2373 AS_IF([test "${have_vaapi}" = "yes" -a "${have_avcodec}" = "yes"], [
2374   case "${avfork}" in
2375     ffmpeg)
2376       PKG_CHECK_EXISTS([libavcodec >= 57.10.100], [
2377         PKG_CHECK_EXISTS([libavcodec <= 57.12.100], [
2378           AC_MSG_ERROR([VA API requires FFmpeg libavcodec < 57.10 or > 57.12 or libav.])
2379         ])
2380       ])
2381       ;;
2382   esac
2383   VLC_SAVE_FLAGS
2384   CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2385   CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2386   AC_CHECK_HEADERS([libavcodec/vaapi.h], [
2387     AC_MSG_NOTICE([VA API acceleration activated])
2388     have_avcodec_vaapi="yes"
2389   ],[
2390     AS_IF([test -n "${enable_libva}"], [
2391       AC_MSG_ERROR([libva is present but libavcodec/vaapi.h is missing])
2392     ], [
2393       AC_MSG_WARN([libva is present but libavcodec/vaapi.h is missing ])
2394     ])
2395   ])
2396   VLC_RESTORE_FLAGS
2398 AM_CONDITIONAL([HAVE_AVCODEC_VAAPI], [test "${have_avcodec_vaapi}" = "yes"])
2401 dnl dxva2 needs avcodec
2403 AC_ARG_ENABLE(dxva2,
2404   [  --enable-dxva2          DxVA2 GPU decoding support (default auto)])
2406 have_avcodec_dxva2="no"
2407 AS_IF([test "${enable_dxva2}" != "no"], [
2408   if test "${SYS}" = "mingw32"; then
2409   AS_IF([test "x${have_avcodec}" = "xyes"], [
2410     AC_CHECK_HEADERS(dxva2api.h,
2411       [
2412         AC_CHECK_HEADERS(libavcodec/dxva2.h, [
2413            AC_MSG_NOTICE([DxVA2 acceleration activated])
2414            have_avcodec_dxva2="yes"
2415         ],[
2416     AS_IF([test "${enable_dxva2}" = "yes"],
2417           [AC_MSG_ERROR([dxva2 is present but libavcodec/dxva2.h is missing])],
2418               [AC_MSG_WARN([dxva2 is present but libavcodec/dxva2.h is missing ])])
2419         ], [#undef _WIN32_WINNT
2420             /* DXVA2 is only available in Vista and above */
2421             #define _WIN32_WINNT 0x600])
2422       ],[
2423     AS_IF([test "${enable_dxva2}" = "yes"],
2424               [AC_MSG_ERROR([Could not find required dxva2api.h])],
2425               [AC_MSG_WARN([dxva2api.h not found])])
2426       ],[#include <d3d9.h>])
2427   ],[
2428     AS_IF([test "x${enable_dxva2}" != "x"], [
2429       AC_MSG_ERROR([--enable-dxva2 and --disable-avcodec options are mutually exclusive.])
2430     ])
2431   ])
2432   fi
2434 AM_CONDITIONAL([HAVE_AVCODEC_DXVA2], [test "${have_avcodec_dxva2}" = "yes"])
2437 dnl d3d11va needs avcodec
2439 AC_ARG_ENABLE(d3d11va,
2440   [  --enable-d3d11va          D3D11 GPU decoding support (default auto)])
2442 have_avcodec_d3d11va="no"
2443 AS_IF([test "${enable_d3d11va}" != "no"], [
2444   if test "${SYS}" = "mingw32"; then
2445   AS_IF([test "x${have_avcodec}" = "xyes"], [
2446         AC_CHECK_TYPES([ID3D11VideoDecoder],
2447           [
2448             AC_CHECK_HEADERS(dxva2api.h,
2449               [
2450                 AC_CHECK_HEADERS(libavcodec/d3d11va.h, [
2451                    AC_MSG_NOTICE([D3D11 acceleration activated])
2452                    AC_DEFINE(HAVE_AVCODEC_D3D11VA, 1, [Define if the d3d11va module is built])
2453                    have_avcodec_d3d11va="yes"
2454                 ],[
2455                   AS_IF([test "${enable_d3d11va}" = "yes"],
2456                     [AC_MSG_ERROR([d3d11va is present but libavcodec/d3d11va.h is missing])],
2457                         [AC_MSG_WARN([d3d11va is present but libavcodec/d3d11va.h is missing ])])
2458                   ], [#undef _WIN32_WINNT
2459                       /* D3D11 is only available in Vista and above */
2460                       #define _WIN32_WINNT 0x600])
2461                   ],[
2462                     AS_IF([test "${enable_d3d11va}" = "yes"],
2463                           [AC_MSG_ERROR([Could not find required dxva2api.h])],
2464                           [AC_MSG_WARN([dxva2api.h not found])])
2465                   ],[#include <d3d9.h>])
2466           ],[
2467             AS_IF([test "${enable_d3d11va}" = "yes"],
2468                   [AC_MSG_ERROR([Could not find required ID3D11VideoDecoder in d3d11.h])],
2469                   [AC_MSG_WARN([ID3D11VideoDecoder not found])])
2470           ], [#include <d3d11.h>])
2471   ],[
2472     AS_IF([test "x${enable_d3d11va}" != "x"], [
2473       AC_MSG_ERROR([--enable-d3d11va and --disable-avcodec options are mutually exclusive.])
2474     ])
2475   ])
2476   fi
2478 AM_CONDITIONAL([HAVE_AVCODEC_D3D11VA], [test "${have_avcodec_d3d11va}" = "yes"])
2481 dnl DXGI debug
2483 AC_CHECK_HEADERS(dxgidebug.h)
2486 dnl vda needs avcodec
2488 AC_ARG_ENABLE(vda,
2489   [  --enable-vda          VDA  support (default auto)])
2491 have_avcodec_vda="no"
2492 AS_IF([test "${enable_vda}" != "no"], [
2493   if test "${SYS}" = "darwin"; then
2494   AS_IF([test "x${have_avcodec}" = "xyes"], [
2495     AC_CHECK_HEADERS(VideoDecodeAcceleration/VDADecoder.h,
2496       [
2497         AC_CHECK_HEADERS(libavcodec/vda.h, [
2498            have_avcodec_vda="yes"
2499         ],[
2500         AS_IF([test "${enable_vda}" = "yes"],
2501               [AC_MSG_ERROR([vda is present but libavcodec/vda.h is missing])],
2502               [AC_MSG_WARN([vda is present but libavcodec/vda.h is missing ])])
2503         ])
2504   ],[
2505         AS_IF([test "${enable_vda}" = "yes"],
2506               [AC_MSG_ERROR([Could not find required VideoDecodeAcceleration/VDADecoder.h])],
2507               [AC_MSG_WARN([VideoDecodeAcceleration/VDADecoder.h not found])])
2508       ])
2509   ],[
2510     AS_IF([test "x${enable_vda}" != "x"], [
2511       AC_MSG_ERROR([--enable-vda and --disable-avcodec options are mutually exclusive.])
2512     ])
2513  ])
2514  AS_IF([test "${have_avcodec_vda}" = "yes"], [
2515      SAVE_LIBS=$LIBS
2516      LIBS="$LIBS $AVCODEC_LIBS"
2517      AC_CHECK_FUNCS([av_vda_alloc_context])
2518      LIBS=$SAVE_LIBS
2519  ])
2520  fi
2522 AM_CONDITIONAL([HAVE_AVCODEC_VDA], [test "${have_avcodec_vda}" = "yes"])
2525 dnl  avformat demuxer/muxer plugin
2528 AC_ARG_ENABLE(avformat,
2529 [  --enable-avformat       libavformat containers (default enabled)],, [
2530   enable_avformat="${have_avcodec}"
2532 have_avformat="no"
2533 AS_IF([test "${enable_avformat}" != "no"], [
2534   PKG_CHECK_MODULES(AVFORMAT,[libavformat >= 53.21.0 libavcodec libavutil], [
2535       have_avformat="yes"
2536       VLC_SAVE_FLAGS
2537       CPPFLAGS="${CPPFLAGS} ${AVFORMAT_CFLAGS}"
2538       CFLAGS="${CFLAGS} ${AVFORMAT_CFLAGS}"
2539       AC_CHECK_HEADERS(libavformat/avformat.h libavformat/avio.h)
2540       AC_CHECK_HEADERS(libavcodec/avcodec.h)
2541       AC_CHECK_HEADERS(libavutil/avutil.h)
2542       AS_IF([test "$enable_merge_ffmpeg" = "no"], [
2543         have_avformat="no"
2544       ])
2545       VLC_RESTORE_FLAGS
2546     ],[
2547       AC_MSG_ERROR([${AVFORMAT_PKG_ERRORS}. Pass --disable-avformat to ignore this error.])
2548   ])
2550 AM_CONDITIONAL([HAVE_AVFORMAT], [test "${enable_avformat}" != "no"])
2553 dnl  swscale image scaling and conversion plugin
2556 AC_ARG_ENABLE(swscale,
2557   AS_HELP_STRING([--enable-swscale],[libswscale image scaling and conversion
2558           (default enabled)]))
2559 if test "${enable_swscale}" != "no"
2560 then
2561   PKG_CHECK_MODULES(SWSCALE,[libswscale],
2562     [
2563       VLC_SAVE_FLAGS
2564       CPPFLAGS="${CPPFLAGS} ${SWSCALE_CFLAGS}"
2565       CFLAGS="${CFLAGS} ${SWSCALE_CFLAGS}"
2566       AC_CHECK_HEADERS(libswscale/swscale.h)
2567       AC_CHECK_HEADERS(libavutil/avutil.h)
2568       VLC_ADD_PLUGIN([swscale])
2569       VLC_ADD_LIBS([swscale],[$SWSCALE_LIBS])
2570       VLC_ADD_CFLAGS([swscale],[$SWSCALE_CFLAGS])
2571       AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2572         VLC_ADD_LIBS([swscale],[${ac_cv_ld_bsymbolic}])
2573       ])
2574       VLC_RESTORE_FLAGS
2575     ],[
2576       AC_MSG_ERROR([${SWSCALE_PKG_ERRORS}. Pass --disable-swscale to ignore this error. Proper software scaling and some video chroma conversion will be missing.])
2577   ])
2581 dnl  postproc plugin
2584 AC_ARG_ENABLE(postproc,
2585 [  --enable-postproc       libpostproc image post-processing (default auto)])
2586 if test "${enable_postproc}" != "no"
2587 then
2588   PKG_CHECK_MODULES(POSTPROC,[libpostproc libavutil],
2589     [
2590       VLC_SAVE_FLAGS
2591       CPPFLAGS="${CPPFLAGS} ${POSTPROC_CFLAGS}"
2592       CFLAGS="${CFLAGS} ${POSTPROC_CFLAGS}"
2593       AC_CHECK_HEADERS(postproc/postprocess.h)
2594       VLC_ADD_PLUGIN([postproc])
2595       VLC_RESTORE_FLAGS
2596     ],[
2597       AC_MSG_WARN([${POSTPROC_PKG_ERRORS}.])
2598   ])
2602 dnl  faad decoder plugin
2604 AC_ARG_ENABLE(faad,
2605 [  --enable-faad           faad codec (default auto)])
2606 have_faad="no"
2607 AS_IF([test "${enable_faad}" != "no"], [
2608   AC_CHECK_HEADERS([neaacdec.h], [
2609     AC_CHECK_LIB(faad, NeAACDecOpen, [have_faad="yes"],, [$LIBM])
2611     AS_IF([test "${have_faad}" = "yes"], [
2612       VLC_ADD_PLUGIN([faad])
2613       VLC_ADD_LIBS([faad],[-lfaad])
2614     ], [
2615       AS_IF([test "${enable_faad}" = "yes"], [
2616         AC_MSG_ERROR([cannot find FAAD library])
2617       ], [
2618         AC_MSG_WARN([cannot find FAAD library])
2619       ])
2620     ])
2621   ])
2625 dnl libvpx decoder plugin
2627 AC_ARG_ENABLE(vpx,
2628     AS_HELP_STRING([--enable-vpx],[libvpx VP8/VP9 encoder and decoder (default auto)]))
2629 AS_IF([test "${enable_vpx}" != "no"],[
2630     PKG_CHECK_MODULES([VPX], [vpx] , [
2631         VLC_ADD_PLUGIN([vpx])
2632         VLC_ADD_CPPFLAGS([vpx], [${VPX_CFLAGS}])
2633         VLC_ADD_LIBS([vpx], [${VPX_LIBS}])
2634         AC_CHECK_LIB([vpx],[vpx_codec_vp8_dx], [
2635             VLC_ADD_CPPFLAGS([vpx], [-DENABLE_VP8_DECODER])
2636         ], [], [${VPX_LIBS}])
2637         AC_CHECK_LIB([vpx],[vpx_codec_vp9_dx], [
2638             VLC_ADD_CPPFLAGS([vpx], [-DENABLE_VP9_DECODER])
2639         ], [], [${VPX_LIBS}])
2640         AC_CHECK_LIB([vpx],[vpx_codec_vp8_cx], [
2641             VLC_ADD_CPPFLAGS([vpx], [-DENABLE_VP8_ENCODER])
2642         ], [], [${VPX_LIBS}])
2643         AC_CHECK_LIB([vpx],[vpx_codec_vp9_cx], [
2644             VLC_ADD_CPPFLAGS([vpx], [-DENABLE_VP9_ENCODER])
2645         ], [], [${VPX_LIBS}])
2646     ], [
2647     AS_IF([test "${enable_vpx}" = "yes"],[
2648         AC_MSG_ERROR([libvpx was not found])
2649     ])])
2653 dnl twolame encoder plugin
2655 PKG_ENABLE_MODULES_VLC([TWOLAME], [], [twolame], [MPEG Audio Layer 2 encoder], [auto], [], [], [ -DLIBTWOLAME_STATIC])
2658 dnl fdk-aac encoder plugin
2660 PKG_ENABLE_MODULES_VLC([FDKAAC], [], [fdk-aac], [FDK-AAC encoder], [disabled])
2664 dnl A52/AC3 decoder plugin
2666 AC_ARG_ENABLE(a52,
2667   [  --enable-a52            A/52 support with liba52 (default enabled)])
2668 if test "${enable_a52}" != "no"
2669 then
2670   AC_ARG_WITH(a52,
2671     [  --with-a52=PATH         a52 headers and libraries])
2672     if test -z "${with_a52}"
2673     then
2674       LDFLAGS_test=""
2675       CPPFLAGS_test=""
2676     else
2677       LDFLAGS_test="-L${with_a52}/lib"
2678       CPPFLAGS_test="-I${with_a52}/include"
2679     fi
2680     VLC_SAVE_FLAGS
2681     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2682     LDFLAGS="${LDFLAGS} ${LDFLAGS_test} ${LIBS_a52tofloat32}"
2683     AC_CHECK_HEADERS(a52dec/a52.h, [
2684       AC_CHECK_LIB(a52, a52_free, [
2685         VLC_ADD_PLUGIN([a52tofloat32])
2686         VLC_ADD_LIBS([a52tofloat32],[${LDFLAGS_test} -la52])
2687         VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2688       ],[
2689         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.])
2690         ], [$LIBM])
2691     ],[
2692       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.])
2693     ])
2694     VLC_RESTORE_FLAGS
2698 dnl DTS Coherent Acoustics decoder plugin
2700 PKG_ENABLE_MODULES_VLC([DCA], [dtstofloat32], [libdca >= 0.0.5], [DTS Coherent Acoustics support with libdca], [auto])
2703 dnl  Flac plugin
2705 PKG_ENABLE_MODULES_VLC([FLAC], [], [flac], [libflac decoder/encoder support], [auto])
2708 dnl  Libmpeg2 plugin
2710 PKG_ENABLE_MODULES_VLC([LIBMPEG2], [], [libmpeg2 > 0.3.2], [libmpeg2 decoder support], [auto])
2713 dnl  Vorbis plugin
2715 PKG_ENABLE_MODULES_VLC([VORBIS], [], [ogg vorbis >= 1.1 vorbisenc >= 1.1], [Vorbis decoder and encoder], [auto])
2718 dnl  Tremor plugin
2720 AC_ARG_ENABLE(tremor,
2721   [  --enable-tremor         Tremor decoder support (default disabled)])
2722 if test "${enable_tremor}" = "yes"
2723 then
2724   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2725     VLC_ADD_PLUGIN([tremor])
2726    ],[])
2730 dnl  Speex plugins
2732 PKG_ENABLE_MODULES_VLC([SPEEX], [], [ogg speex >= 1.0.5], [Speex support], [auto])
2733 have_speexdsp="no"
2734 AS_IF([test "${enable_speex}" != "no"], [
2735   PKG_CHECK_MODULES([SPEEXDSP], [speexdsp], [
2736     have_speexdsp="yes"
2737   ], [
2738     AC_MSG_WARN([${SPEEXDSP_PKG_ERRORS}.])
2739   ])
2741 AM_CONDITIONAL([HAVE_SPEEXDSP], [test "$have_speexdsp" = "yes"])
2744 dnl  Opus plugin
2746 PKG_ENABLE_MODULES_VLC([OPUS], [], [ogg opus >= 1.0.3], [Opus support], [auto])
2749 dnl  theora decoder plugin
2751 PKG_ENABLE_MODULES_VLC([THEORA], [], [ogg theoradec >= 1.0 theoraenc], [experimental theora codec], [auto])
2754 dnl  OggSpots decoder plugin
2756 PKG_ENABLE_MODULES_VLC([OGGSPOTS], [], [ogg], [experimental OggSpots codec], [auto])
2759 dnl  Daala decoder plugin
2761 PKG_ENABLE_MODULES_VLC([DAALA], [], [daaladec daalaenc], [experimental daala codec], [disabled])
2764 dnl  schroedinger decoder plugin (for dirac format video)
2766 PKG_ENABLE_MODULES_VLC([SCHROEDINGER], [], [schroedinger-1.0 >= 1.0.10], [dirac decoder and encoder using schroedinger], [auto])
2769 dnl  PNG decoder module
2771 AC_ARG_ENABLE(png,
2772   [  --enable-png            PNG support (default enabled)])
2773 AS_IF([test "${enable_png}" != "no"], [
2774 AC_CHECK_HEADERS(png.h, [
2775   VLC_SAVE_FLAGS
2776   LDFLAGS="${LDFLAGS} -lz $LIBM"
2777   AC_CHECK_LIB(png, png_set_rows, [
2778     VLC_ADD_PLUGIN([png])
2779   ], [], [-lz $LIBM])
2780   VLC_RESTORE_FLAGS
2781   ])
2785 dnl  JPEG decoder module
2787 AC_ARG_ENABLE(jpeg,
2788   [  --enable-jpeg           JPEG support (default enabled)])
2789 AS_IF([test "${enable_jpeg}" != "no"], [
2790 AC_CHECK_HEADERS(jpeglib.h, [
2791   VLC_ADD_PLUGIN([jpeg])
2792   ])
2796 dnl  BPG decoder module
2798 AC_ARG_ENABLE(bpg,
2799   [  --enable-bpg           BPG support (default disabled)])
2800 AS_IF([test "${enable_bpg}" != "no"], [
2801 AC_CHECK_HEADERS(libbpg.h, [
2802   VLC_ADD_PLUGIN([bpg])
2803   ])
2807 dnl H262 encoder plugin (lib262)
2809 AC_ARG_ENABLE(x262,
2810   [  --enable-x262           H262 encoding support with static libx262 (default disabled)])
2811 if test "${enable_x262}" != "no"; then
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     ])
2829 dnl x265 encoder
2830 PKG_ENABLE_MODULES_VLC([X265],, [x265], [HEVC/H.265 encoder], [auto])
2833 dnl H264 encoder plugin (10-bit lib264)
2835 AC_ARG_ENABLE(x26410b,
2836   [  --enable-x26410b           H264 10-bit encoding support with static libx264 (default disabled)])
2837 if test "${enable_x26410b}" != "no"; then
2838     PKG_CHECK_MODULES(X26410B, x26410b, [
2839         VLC_ADD_PLUGIN([x26410b])
2840         VLC_ADD_LIBS([x26410b],[${X26410B_LIBS}])
2841         AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2842           VLC_ADD_LDFLAGS([x26410b],[${ac_cv_ld_bsymbolic}])
2843         ])
2844         VLC_ADD_CFLAGS([x26410b],[${X26410B_CFLAGS}])
2845         if echo ${X26410B_LIBS} |grep -q 'pthreadGC2'; then
2846           VLC_ADD_CFLAGS([x26410b], [-DPTW32_STATIC_LIB])
2847         fi
2848     ], [
2849        if test "${enable_x26410b}" = "yes"; then
2850         AC_MSG_ERROR([x26410b module doesn't work without staticly compiled libx264.a])
2851        fi
2852     ])
2857 dnl H264 encoder plugin (using libx264)
2859 AC_ARG_ENABLE(x264,
2860   [  --enable-x264           H264 encoding support with libx264 (default enabled)])
2861 if test "${enable_x264}" != "no"; then
2862       PKG_CHECK_MODULES(X264,x264 >= 0.86, [
2863         VLC_ADD_PLUGIN([x264])
2864         VLC_ADD_LIBS([x264],[${X264_LIBS}])
2866         AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2867           VLC_ADD_LDFLAGS([x264],[${ac_cv_ld_bsymbolic}])
2868         ])
2870         VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
2871         if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
2872           VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
2873         fi
2874       ],[
2875         if test "${enable_x264}" = "yes"; then
2876             AC_MSG_ERROR([${X264_PKG_ERRORS}: you may get it from http://www.videolan.org/x264.html])
2877           fi
2878       ])
2882 dnl Intel QuickSync (aka MediaSDK) H264/H262 encoder
2884 PKG_ENABLE_MODULES_VLC([MFX], [qsv], [libmfx], [Intel QuickSync MPEG4-Part10/MPEG2 (aka H.264/H.262) encoder], [auto])
2887 dnl libfluidsynth (MIDI synthetizer) plugin
2889 PKG_ENABLE_MODULES_VLC([FLUIDSYNTH], [], [fluidsynth >= 1.1.2], [MIDI synthetiser with libfluidsynth], [auto])
2890 PKG_ENABLE_MODULES_VLC([FLUIDLITE], [fluidsynth], [fluidlite], [MIDI synthetiser with libfluidsynth], [auto])
2891 AC_CHECK_HEADERS(fluidlite.h)
2894 dnl Teletext Modules
2895 dnl vbi decoder plugin (using libzbvi)
2896 dnl telx module
2897 dnl uncompatible
2899 AC_ARG_ENABLE(zvbi,
2900   AS_HELP_STRING([--enable-zvbi],[VBI (inc. Teletext) decoding support with
2901                   libzvbi (default enabled)]))
2902 AC_ARG_ENABLE(telx,
2903   AS_HELP_STRING([--enable-telx],[Teletext decoding module (conflicting with
2904                   zvbi) (default enabled if zvbi is absent)]))
2906 AS_IF( [test "${enable_zvbi}" != "no"],[
2907     PKG_CHECK_MODULES(ZVBI, [zvbi-0.2 >= 0.2.28],
2908         [
2909           VLC_ADD_PLUGIN([zvbi])
2910           AC_DEFINE(ZVBI_COMPILED, 1, [Define if the zvbi module is built])
2911           AS_IF( [test "${enable_telx}" = "yes"],[
2912                   AC_MSG_WARN([The zvbi and telx modules are incompatible. Using zvbi.])
2913                   ])
2914         ],[
2915           AC_MSG_WARN([${ZVBI_PKG_ERRORS}. Enabling the telx module instead.])
2916         ])
2917     ])
2918 AS_IF( [test "${enable_telx}" != "no" ],[
2919   VLC_ADD_PLUGIN([telx])
2920   ])
2923 dnl libass subtitle rendering module
2925 AC_ARG_ENABLE(libass,
2926   [  --enable-libass         Subtitle support using libass (default enabled)])
2927 AS_IF( [test "${enable_libass}" != "no"], [
2928   PKG_CHECK_MODULES(LIBASS, [libass >= 0.9.8],
2929       [
2930         VLC_ADD_PLUGIN([libass])
2932         AC_CHECK_HEADERS(fontconfig/fontconfig.h,
2933           [VLC_ADD_CPPFLAGS([libass],[-DHAVE_FONTCONFIG])
2934            VLC_ADD_LIBS([libass],[-lfontconfig])
2935        ])
2936       ],[
2937         AC_MSG_WARN([${LIBASS_PKG_ERRORS}.])
2938       ])
2939   ])
2942 dnl ARIB subtitles rendering module
2944 AC_ARG_ENABLE(aribsub,
2945   [  --enable-aribsub        ARIB Subtitles support (default enabled)])
2946 AS_IF( [test "${enable_aribsub}" != "no" ],[
2947   PKG_CHECK_MODULES(ARIBB24, [aribb24 >= 1.0.1], [
2948       have_aribb24="yes"
2949       VLC_ADD_PLUGIN([aribsub])
2950       VLC_ADD_LIBS([aribsub],[-laribb24])
2951       AC_DEFINE(HAVE_ARIBB24, 1, [Define if libaribb24 is available.])
2952     ],[
2953       AC_MSG_WARN(Library [aribb24] needed for [aribsub] was not found)
2954       have_aribb24="no"
2955   ])
2957 AM_CONDITIONAL([HAVE_ARIBB24], [test x"${have_aribb24}" = x"yes"])
2960 dnl ARIB B25
2962 PKG_ENABLE_MODULES_VLC([ARIBB25], [aribcam], [aribb25 >= 0.2.6], [ARIB STD-B25], [auto])
2965 dnl  kate decoder plugin
2967 PKG_ENABLE_MODULES_VLC([KATE], [], [kate >= 0.3.0], [kate codec], [auto])
2970 dnl  tiger rendering for kate decoder plugin
2972 AC_ARG_ENABLE(tiger,
2973 [  --enable-tiger          Tiger rendering library for Kate streams (default auto)])
2974 AS_IF([test "${enable_tiger}" != "no"], [
2975   PKG_CHECK_MODULES(TIGER,[tiger >= 0.3.1], [
2976       AC_DEFINE(HAVE_TIGER, 1, [Define if libtiger is available.])],[
2977         AS_IF([test -n "${enable_tiger}"], [
2978           AC_MSG_ERROR([${TIGER_PKG_ERRORS}.])
2979         ])
2980   ])
2985 dnl  Video plugins
2988 EXTEND_HELP_STRING([Video plugins:])
2991 dnl  OpenGL
2993 PKG_CHECK_MODULES([EGL], [egl], [
2994   have_egl="yes"
2995 ], [
2996   have_egl="no"
2998 AM_CONDITIONAL([HAVE_EGL], [test "${have_egl}" = "yes"])
3000 have_gl="no"
3001 PKG_CHECK_MODULES([GL], [gl], [
3002   have_gl="yes"
3003 ], [
3004   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
3005 #ifdef _WIN32
3006 # include <GL/glew.h>
3007 #endif
3008 #include <GL/gl.h>
3009 ]], [
3010     [int t0 = GL_TEXTURE0;]])
3011   ], [
3012     GL_CFLAGS=""
3013     have_gl="yes"
3014     AS_IF([test "${SYS}" != "mingw32"], [
3015       GL_LIBS="-lGL"
3016     ], [
3017       GL_LIBS="-lopengl32"
3018     ])
3019   ])
3021 AM_CONDITIONAL([HAVE_GL], [test "${have_gl}" = "yes"])
3023 dnl OpenGL ES 2: depends on EGL 1.1
3024 PKG_ENABLE_MODULES_VLC([GLES2], [], [glesv2], [OpenGL ES v2 support], [disabled])
3025 dnl OpenGL ES 1: depends on EGL 1.0
3026 PKG_ENABLE_MODULES_VLC([GLES1], [], [glesv1_cm], [OpenGL ES v1 support], [disabled])
3029 dnl  Xlib
3032 AC_PATH_XTRA()
3033 AC_CHECK_HEADERS(X11/Xlib.h)
3036 dnl  X C Bindings modules
3038 AC_ARG_ENABLE(xcb,
3039   [  --enable-xcb            X11 support with XCB (default enabled)],, [
3040   AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "darwin"], [
3041     enable_xcb="yes"
3042   ], [
3043     enable_xcb="no"
3044   ])
3046 AC_ARG_ENABLE(xvideo,
3047   [  --enable-xvideo         XVideo support (default enabled)],, [
3048     enable_xvideo="$enable_xcb"
3051 have_xcb="no"
3052 have_xcb_keysyms="no"
3053 have_xcb_randr="no"
3054 have_xcb_xvideo="no"
3055 AS_IF([test "${enable_xcb}" != "no"], [
3056   dnl libxcb
3057   PKG_CHECK_MODULES(XCB, [xcb >= 1.6])
3058   have_xcb="yes"
3059   PKG_CHECK_MODULES(XCB_SHM, [xcb-shm])
3060   PKG_CHECK_MODULES(XCB_COMPOSITE, [xcb-composite])
3061   PKG_CHECK_MODULES(XPROTO, [xproto])
3063   AS_IF([test "${enable_xvideo}" != "no"], [
3064     PKG_CHECK_MODULES(XCB_XV, [xcb-xv >= 1.1.90.1], [have_xcb_xvideo="yes"])
3065   ])
3067   PKG_CHECK_MODULES(XCB_RANDR, [xcb-randr >= 1.3], [have_xcb_randr="yes"])
3069   dnl xcb-utils
3070   PKG_CHECK_MODULES(XCB_KEYSYMS, [xcb-keysyms >= 0.3.4], [have_xcb_keysyms="yes"], [
3071     AC_MSG_WARN([${XCB_KEYSYMS_PKG_ERRORS}. Hotkeys will not work.])
3072   ])
3074 AM_CONDITIONAL([HAVE_XCB], [test "${have_xcb}" = "yes"])
3075 AM_CONDITIONAL([HAVE_XCB_KEYSYMS], [test "${have_xcb_keysyms}" = "yes"])
3076 AM_CONDITIONAL([HAVE_XCB_RANDR], [test "${have_xcb_randr}" = "yes"])
3077 AM_CONDITIONAL([HAVE_XCB_XVIDEO], [test "${have_xcb_xvideo}" = "yes"])
3081 dnl VDPAU needs X11
3083 AC_ARG_ENABLE(vdpau,
3084   [AS_HELP_STRING([--enable-vdpau], [VDPAU hardware support (default auto)])])
3085 have_vdpau="no"
3086 AS_IF([test "${enable_vdpau}" != "no"], [
3087   PKG_CHECK_MODULES([VDPAU], [vdpau >= 0.6], [
3088     have_vdpau="yes"
3089     AS_IF([test "${no_x}" = "yes"], [
3090       AC_MSG_ERROR([VDPAU requires Xlib (X11).])
3091     ])
3092   ], [
3093     AS_IF([test -n "${enable_vdpau}"], [
3094       AC_MSG_ERROR([${VDPAU_PKG_ERRORS}.])
3095     ])
3096   ])
3098 AM_CONDITIONAL([HAVE_VDPAU], [test "${have_vdpau}" = "yes"])
3100 have_avcodec_vdpau="no"
3101 AS_IF([test "${have_vdpau}" = "yes" -a "${have_avcodec}" = "yes"], [
3102   case "${avfork}" in
3103     libav) av_vdpau_ver="55.26.0" ;;
3104     ffmpeg) av_vdpau_ver="55.42.100" ;;
3105   esac
3106   PKG_CHECK_EXISTS([libavutil >= 52.4.0 libavcodec >= ${av_vdpau_ver}], [
3107     have_avcodec_vdpau="yes"
3108     AC_MSG_NOTICE([VDPAU decoding acceleration activated])
3109   ], [
3110     AS_IF([test -n "${enable_vdpau}"], [
3111       AC_MSG_ERROR([libav libavutil >= 52.4.0 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
3112     ], [
3113       AC_MSG_WARN([libav libavutil >= 52.4.0 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
3114     ])
3115   ])
3117 AM_CONDITIONAL([HAVE_AVCODEC_VDPAU], [test "${have_avcodec_vdpau}" = "yes"])
3121 dnl  Wayland
3123 AC_ARG_ENABLE(wayland,
3124   [AS_HELP_STRING([--enable-wayland], [Wayland support (default auto)])])
3125 have_wayland="no"
3126 AC_ARG_VAR([WAYLAND_SCANNER], [Wayland scanner utility])
3128 AS_IF([test "${enable_wayland}" != "no"], [
3129   AC_MSG_CHECKING([for the Wayland scanner])
3130   AS_IF([test -z "$WAYLAND_SCANNER"], [
3131     PKG_CHECK_EXISTS([wayland-scanner], [
3132       WAYLAND_SCANNER="$(${PKG_CONFIG} wayland-scanner --variable wayland_scanner)"
3133     ], [
3134       WAYLAND_SCANNER="wayland-scanner"
3135     ])
3136   ])
3137   AC_MSG_RESULT([$WAYLAND_SCANNER])
3139   PKG_CHECK_MODULES([WAYLAND_CLIENT], [wayland-client >= 1.5.91], [
3140     have_wayland="yes"
3141   ], [
3142     AS_IF([test -n "${enable_wayland}"], [
3143       AC_MSG_ERROR([${WAYLAND_CLIENT_PKG_ERRORS}.])
3144     ])
3145   ])
3147   AS_IF([test "${have_egl}" = "yes"], [
3148     PKG_CHECK_MODULES([WAYLAND_EGL], [wayland-egl], [
3149       have_wayland_egl="yes"
3150     ], [
3151       AS_IF([test -n "${enable_wayland}"], [
3152         AC_MSG_ERROR([${WAYLAND_EGL_PKG_ERRORS}.])
3153       ])
3154     ])
3155   ])
3157 AM_CONDITIONAL([HAVE_WAYLAND], [test "${have_wayland}" = "yes"])
3158 AM_CONDITIONAL([HAVE_WAYLAND_EGL], [test "${have_wayland_egl}" = "yes"])
3162 dnl  SDL module
3164 AC_ARG_ENABLE(sdl,
3165   [  --enable-sdl            SDL support (default enabled)])
3166 AC_ARG_ENABLE(sdl-image,
3167   [  --enable-sdl-image      SDL image support (default enabled)])
3168 if test "${enable_sdl}" != "no"
3169 then
3170    PKG_CHECK_MODULES(SDL, [sdl >= 1.2.10], [
3171       # SDL on Darwin is heavily patched and can only run SDL_image
3172       if test "${SYS}" != "darwin"; then
3173         VLC_ADD_PLUGIN([vout_sdl])
3174       fi
3176       # SDL_image
3177       AS_IF([ test "${enable_sdl_image}" != "no"],[
3178         PKG_CHECK_MODULES(SDL_IMAGE, [SDL_image >= 1.2.10], [
3179           VLC_ADD_PLUGIN([sdl_image])],
3180           [ AC_MSG_WARN([${SDL_IMAGE_PKG_ERRORS}. You should install it alongside your SDL package.])
3181           ])
3182       ])
3183    ],[
3184      AC_MSG_WARN([${SDL_PKG_ERRORS}.])
3185    ])
3189 dnl  freetype module
3191 AC_ARG_ENABLE(freetype,
3192   [  --enable-freetype       freetype support   (default auto)])
3193 AC_ARG_ENABLE(fribidi,
3194   [  --enable-fribidi        fribidi support    (default auto)])
3195 AC_ARG_ENABLE(harfbuzz,
3196   [  --enable-harfbuzz       harfbuzz support   (default auto)])
3197 AC_ARG_ENABLE(fontconfig,
3198   [  --enable-fontconfig     fontconfig support (default auto)])
3200 AC_ARG_WITH([default-font],
3201     AS_HELP_STRING([--with-default-font=PATH],
3202         [Path to the default font]),
3203         [AC_DEFINE_UNQUOTED([DEFAULT_FONT_FILE],
3204             "$withval", [Default font])])
3205 AC_ARG_WITH([default-monospace-font],
3206     AS_HELP_STRING([--with-default-monospace-font=PATH],
3207         [Path to the default font]),
3208         [AC_DEFINE_UNQUOTED([DEFAULT_MONOSPACE_FONT_FILE],
3209             "$withval", [Default monospace font])])
3211 AC_ARG_WITH([default-font-family],
3212     AS_HELP_STRING([--with-default-font-family=NAME],
3213         [Path to the default font family]),
3214         [AC_DEFINE_UNQUOTED([DEFAULT_FAMILY],
3215             "$withval", [Default font family])])
3216 AC_ARG_WITH([default-monospace-font-family],
3217     AS_HELP_STRING([--with-default-monospace-font-family=NAME],
3218         [Path to the default font family]),
3219         [AC_DEFINE_UNQUOTED([DEFAULT_MONOSPACE_FAMILY],
3220             "$withval", [Default monospace font family])])
3222 have_freetype="no"
3223 have_fontconfig="no"
3224 have_fribidi="no"
3225 have_harfbuzz="no"
3227 if test "${enable_freetype}" != "no"; then
3228    PKG_CHECK_MODULES(FREETYPE, freetype2, [
3229       have_freetype="yes"
3230       VLC_ADD_CPPFLAGS([skins2],[${FREETYPE_CFLAGS}])
3231       VLC_ADD_LIBS([skins2],[${FREETYPE_LIBS}])
3233       dnl fontconfig support
3234       if test "${SYS}" != "mingw32"; then
3235           if test "${enable_fontconfig}" != "no"; then
3236             AC_CHECK_HEADERS(fontconfig/fontconfig.h, [
3237               have_fontconfig="yes"
3238             ],[AC_MSG_WARN([library fontconfig not found. Styles will be disabled in freetype])])
3239           fi
3240       fi
3242       dnl fribidi support
3243       if test "${enable_fribidi}" != "no"; then
3244         PKG_CHECK_MODULES(FRIBIDI, fribidi, [
3245           have_fribidi="yes"
3246           VLC_ADD_CPPFLAGS([skins2], [${FRIBIDI_CFLAGS} -DHAVE_FRIBIDI])
3247           VLC_ADD_LIBS([skins2], [${FRIBIDI_LIBS}])
3248         ],[AC_MSG_WARN([${FRIBIDI_PKG_ERRORS}. Bidirectional text and complex scripts (Arabic, Farsi, Thai...) will be disabled in FreeType.])])
3249       fi
3251       dnl harfbuzz support
3252       if test "${have_fribidi}" != "no"; then
3253         if test "${enable_harfbuzz}" != "no"; then
3254           PKG_CHECK_MODULES(HARFBUZZ, harfbuzz, [
3255             have_harfbuzz="yes"
3256             VLC_ADD_CPPFLAGS([skins2], [${HARFBUZZ_CFLAGS} -DHAVE_HARFBUZZ])
3257             VLC_ADD_LIBS([skins2], [${HARFBUZZ_LIBS}])
3258           ],[AC_MSG_WARN([${HARFBUZZ_PKG_ERRORS}. Support for complex scripts (Arabic, Farsi, Thai...) will be disabled in FreeType.])])
3259         fi
3260       fi
3261   ],[
3262   AS_IF([test -n "${enable_freetype}"],[
3263     AC_MSG_ERROR([${FREETYPE_PKG_ERRORS}. Install FreeType2 development or configure with --disable-freetype.])
3264     ])
3265   ])
3268 AM_CONDITIONAL([HAVE_FREETYPE], [test "${have_freetype}" = "yes"])
3269 AM_CONDITIONAL([HAVE_FONTCONFIG], [test "${have_fontconfig}" = "yes"])
3270 AM_CONDITIONAL([HAVE_FRIBIDI], [test "${have_fribidi}" = "yes"])
3271 AM_CONDITIONAL([HAVE_HARFBUZZ], [test "${have_harfbuzz}" = "yes"])
3274 dnl SAPI (text to Speech renderer for Windows)
3276 AC_LANG_PUSH([C++])
3277 AC_CHECK_TYPES([ISpObjectToken],[
3278               have_sapi="yes"
3279             ],[AC_MSG_WARN([sapi.h not found. Text to Speech renderer for Windows disabled])],
3280               [#include <windows.h>
3281                #include <sapi.h>
3282                #include <sphelper.h>])
3283 AM_CONDITIONAL([HAVE_SAPI], [test "${have_sapi}" = "yes"])
3284 AC_LANG_POP([C++])
3287 dnl  QuartzText vout module (iOS/Mac OS)
3289 AC_ARG_ENABLE(macosx-quartztext,
3290   [  --enable-macosx-quartztext   Mac OS X quartz text module (default enabled on Mac OS X)])
3291 if test "x${enable_macosx_quartztext}" != "xno" &&
3292   (test "${SYS}" = "darwin" || test "${enable_macosx_quartztext}" = "yes")
3293 then
3294   VLC_ADD_PLUGIN([quartztext])
3298 dnl  SVG module (text rendering and image decoding)
3300 PKG_ENABLE_MODULES_VLC([SVG], [], [librsvg-2.0 >= 2.9.0], [SVG rendering library],[auto])
3301 PKG_ENABLE_MODULES_VLC([SVGDEC], [], [librsvg-2.0 >= 2.9.0 cairo >= 1.13.1], [SVG image decoder library],[auto])
3304 dnl  Windows DirectX module
3307 AC_ARG_ENABLE(directx,
3308   [AS_HELP_STRING([--enable-directx],
3309     [Microsoft DirectX support (default enabled on Windows)])],, [
3310   AS_IF([test "${SYS}" = "mingw32"], [
3311     enable_directx="yes"
3312   ], [
3313     enable_directx="no"
3314   ])
3316 AS_IF([test "${enable_directx}" != "no"], [
3317   dnl DirectDraw
3318   AC_CHECK_HEADERS(ddraw.h, [
3319     VLC_ADD_PLUGIN([directdraw])
3320   ])
3322   dnl OpenGL
3323   AC_CHECK_HEADERS(GL/wglew.h, [
3324     VLC_ADD_PLUGIN([glwin32, wgl])
3325   ],, [
3326     #include <windows.h>
3327     #include <GL/gl.h>
3328   ])
3330   dnl Direct3D11
3331   AC_CHECK_HEADERS(d3d11.h, [
3332     VLC_ADD_PLUGIN([direct3d11])
3333   ])
3335   dnl Direct3D9
3336   AC_CHECK_HEADERS(d3d9.h, [
3337     VLC_ADD_PLUGIN([direct3d9])
3338   ])
3340   dnl Direct2D
3341   AC_CHECK_HEADERS(d2d1.h, [
3342     VLC_ADD_PLUGIN([direct2d])
3343   ])
3347 dnl  Linux framebuffer module
3349 AC_CHECK_HEADER([linux/fb.h], [
3350   VLC_ADD_PLUGIN([fb])
3355 dnl  DirectFB module
3356 dnl  try to find using: 1 - given location; 2 - directfb-config; 3 - pkg-config
3357 dnl  TODO: support for static linking
3359 AC_ARG_ENABLE(directfb,
3360   [  --enable-directfb       DirectFB support (default disabled)])
3361 AC_ARG_WITH(directfb,
3362   [  --with-directfb=PATH    path to DirectFB headers and libraries])
3364 if test "${enable_directfb}" = "yes"; then
3365     have_directfb="false"
3366     CPPFLAGS_mydirectfb=
3367     LIBS_mydirectfb=
3368     if test "${with_directfb}" != "no" -a -n "${with_directfb}"; then
3369         dnl Trying the given location
3370         VLC_SAVE_FLAGS
3372         CPPFLAGS_new="-I${with_directfb}/include -D_REENTRANT -D_GNU_SOURCE"
3373         LIBS_new="-L${with_directfb}/lib/fusion/.libs/ -L${with_directfb}/lib/direct/.libs/ -L${with_directfb}/src/.libs/"
3375         CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_new}"
3376         LIBS="${LIBS} ${LIBS_new}"
3378         dnl FIXME: too obscure
3379         AC_CHECK_HEADER([directfb.h], [
3380             AC_CHECK_LIB([direct],[direct_initialize], [
3381                 AC_CHECK_LIB([fusion], [fusion_enter], [
3382                     AC_CHECK_LIB([directfb], [DirectFBInit], have_directfb="true", have_directfb="false")
3383                 ], have_directfb="false")
3384             ], have_directfb="false")
3385         ], have_directfb="false")
3387         VLC_RESTORE_FLAGS
3389         if test "${have_directfb}" = "true"; then
3390             LIBS_mydirectfb="${LIBS_new} -lz $LIBDL -ldirectfb -lfusion -ldirect -lpthread"
3391             CPPFLAGS_mydirectfb="${CPPFLAGS_new}"
3392         fi
3393     else
3394         dnl Look for directfb-config
3395         AC_PATH_PROG(DIRECTFB_CONFIG, directfb-config, no, ${PATH})
3396         if test "${DIRECTFB_CONFIG}" != "no"; then
3397             CPPFLAGS_mydirectfb="`${DIRECTFB_CONFIG} --cflags`"
3398             LIBS_mydirectfb="`${DIRECTFB_CONFIG} --libs`"
3399             have_directfb="true"
3400         else
3401             dnl Trying with pkg-config
3402             PKG_CHECK_MODULES(DIRECTFB, directfb, [
3403                 CPPFLAGS_mydirectfb="${DIRECTFB_CFLAGS}"
3404                 LIBS_mydirectfb="${DIRECTFB_LIBS}"
3405                 have_directfb="true"
3406                 ], [have_directfb="false"])
3407         fi
3408     fi
3409     if test "${have_directfb}" = "true"; then
3410         VLC_ADD_PLUGIN([directfb])
3411         VLC_ADD_CPPFLAGS([directfb],[${CPPFLAGS_mydirectfb}])
3412         VLC_ADD_LIBS([directfb],[${LIBS_mydirectfb}])
3413     else
3414         AC_MSG_ERROR([${DIRECTFB_PKG_ERRORS}.])
3415     fi
3419 dnl  AA plugin
3421 AC_ARG_ENABLE(aa,
3422   [  --enable-aa             aalib output (default disabled)])
3423 if test "${enable_aa}" = "yes"
3424 then
3425   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3426   if test "${have_aa}" = "true"
3427   then
3428     VLC_ADD_PLUGIN([aa])
3429   fi
3433 dnl  libcaca plugin
3435 PKG_ENABLE_MODULES_VLC([CACA], [], [caca >= 0.99.beta14], [libcaca output],[auto])
3438 dnl  OS/2 KVA plugin
3440 AC_ARG_ENABLE(kva,
3441   [AS_HELP_STRING([--enable-kva],
3442     [support the K Video Accelerator KVA (default enabled on OS/2)])],, [
3443   AS_IF([test "$SYS" = "os2"], [
3444     enable_kva="yes"
3445   ])
3447 have_kva="no"
3448 KVA_LIBS=""
3449 AS_IF([test "$enable_kva" != "no"], [
3450   AC_CHECK_HEADERS([kva.h], [
3451     have_kva="yes"
3452     AC_CHECK_LIB(kva, main, [
3453       KVA_LIBS="-lkva"
3454     ])
3455   ])
3457 AC_SUBST(KVA_LIBS)
3458 AM_CONDITIONAL([HAVE_KVA], [test "${have_kva}" = "yes"])
3461 dnl MMAL plugin
3463 AC_ARG_ENABLE(mmal,
3464   AS_HELP_STRING([--enable-mmal],
3465     [Multi-Media Abstraction Layer (MMAL) hardware plugin (default enable)]))
3466 if test "${enable_mmal}" != "no"; then
3467   VLC_SAVE_FLAGS
3468   LDFLAGS="${LDFLAGS} -L/opt/vc/lib -lvchostif"
3469   CPPFLAGS="${CPPFLAGS} -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
3470   AC_CHECK_HEADERS(interface/mmal/mmal.h,
3471     [ AC_CHECK_LIB(bcm_host, vc_tv_unregister_callback_full, [
3472         have_mmal="yes"
3473         VLC_ADD_PLUGIN([mmal])
3474         VLC_ADD_LDFLAGS([mmal],[ -L/opt/vc/lib ])
3475         VLC_ADD_CFLAGS([mmal],[ -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux ])
3476         VLC_ADD_LIBS([mmal],[ -lbcm_host -lmmal -lvchostif ]) ], [
3477           AS_IF([test "${enable_mmal}" = "yes"],
3478             [ AC_MSG_ERROR([Cannot find bcm library...]) ],
3479             [ AC_MSG_WARN([Cannot find bcm library...]) ])
3480           ],
3481         [])
3482     ] , [ AS_IF([test "${enable_mmal}" = "yes"],
3483       [ AC_MSG_ERROR([Cannot find development headers for mmal...]) ],
3484       [ AC_MSG_WARN([Cannot find development headers for mmal...]) ]) ])
3485   VLC_RESTORE_FLAGS
3487 AM_CONDITIONAL([HAVE_MMAL], [test "${have_mmal}" = "yes"])
3490 dnl evas plugin
3492 AC_ARG_ENABLE(evas,
3493   [AS_HELP_STRING([--enable-evas],
3494     [use evas output module (default disabled)])])
3495 have_evas="no"
3496 AS_IF([test "${enable_evas}" = "yes"], [
3497   PKG_CHECK_MODULES(EVAS, [evas >= 1.15.99 ecore >= 1.15.99], [
3498       have_evas="yes"
3499       AC_DEFINE([HAVE_EVAS], [1], [Define to 1 if evas is enabled.])
3500     ],[
3501     AS_IF([test "x${enable_evas}" != "x"], [
3502       AC_MSG_ERROR([$EVAS_PKG_ERRORS. libevas and libecore 1.15.99 or later required.])
3503     ])
3504   ])
3506 AM_CONDITIONAL([HAVE_EVAS], [test "${have_evas}" = "yes"])
3509 dnl  Audio plugins
3512 EXTEND_HELP_STRING([Audio plugins:])
3515 dnl  Pulseaudio module
3517 AC_ARG_ENABLE(pulse,
3518   [AS_HELP_STRING([--enable-pulse],
3519     [use the PulseAudio client library (default auto)])])
3520 have_pulse="no"
3521 AS_IF([test "${enable_pulse}" != "no"], [
3522   PKG_CHECK_MODULES([PULSE], [libpulse >= 1.0], [
3523     have_pulse="yes"
3524   ], [
3525     AS_IF([test "x${enable_pulse}" != "x"], [
3526       AC_MSG_ERROR([$PULSE_PKG_ERRORS. PulseAudio 1.0 or later required.])
3527     ])
3528   ])
3530 AM_CONDITIONAL([HAVE_PULSE], [test "${have_pulse}" = "yes"])
3533 dnl  ALSA module
3535 AC_ARG_ENABLE(alsa,
3536   [AS_HELP_STRING([--enable-alsa],
3537     [support the Advanced Linux Sound Architecture (default auto)])],, [
3538   AS_IF([test "$SYS" = "linux" -a "${have_pulse}" = "no"], [
3539     enable_alsa="yes"
3540   ])
3542 have_alsa="no"
3543 AS_IF([test "${enable_alsa}" != "no"], [
3544   PKG_CHECK_MODULES([ALSA], [alsa >= 1.0.24], [
3545     have_alsa="yes"
3546   ], [
3547     AS_IF([test "x${enable_alsa}" != "x"], [
3548       AC_MSG_ERROR([$ALSA_PKG_ERRORS. alsa-lib 1.0.24 or later required.])
3549     ])
3550   ])
3552 AM_CONDITIONAL([HAVE_ALSA], [test "${have_alsa}" = "yes"])
3555 dnl  Open Sound System module
3557 AC_ARG_ENABLE(oss,
3558   [AS_HELP_STRING([--enable-oss],
3559     [support the Open Sound System OSS (default enabled on FreeBSD/NetBSD/DragonFlyBSD)])],, [
3560   AS_IF([test "$SYS" = "mingw32" -o "$SYS" = "linux" -o "$SYS" = "openbsd"], [
3561     enable_oss="no"
3562   ])
3564 have_oss="no"
3565 OSS_LIBS=""
3566 AS_IF([test "$enable_oss" != "no"], [
3567   AC_CHECK_HEADERS([soundcard.h sys/soundcard.h], [
3568     have_oss="yes"
3569     AC_CHECK_LIB(ossaudio, main, [
3570       OSS_LIBS="-lossaudio"
3571     ])
3572   ])
3574 AC_SUBST(OSS_LIBS)
3575 AM_CONDITIONAL([HAVE_OSS], [test "${have_oss}" = "yes"])
3578 dnl  OpenBSD sndio module
3580 AC_ARG_ENABLE([sndio],
3581   [AS_HELP_STRING([--disable-sndio],
3582     [support the OpenBSD sndio (default auto)])],, [
3583   AS_IF([test "$SYS" = "openbsd"], [
3584     enable_sndio="yes"
3585   ])
3587 have_sndio="no"
3588 AS_IF([test "$enable_sndio" != "no"], [
3589   AC_CHECK_HEADER([sndio.h], [
3590     have_sndio="yes"
3591   ])
3593 AM_CONDITIONAL([HAVE_SNDIO], [test "${have_sndio}" = "yes"])
3596 dnl  Windows Audio Session plugin
3598 AC_ARG_ENABLE([wasapi],
3599   [AS_HELP_STRING([--enable-wasapi],
3600     [use the Windows Audio Session API (default auto)])
3602 have_wasapi="no"
3603 AS_IF([test "$enable_wasapi" != "no"], [
3604   AC_CHECK_HEADER([audioclient.h], [
3605     have_wasapi="yes"
3606   ], [
3607     AS_IF([test "x${enable_wasapi}" != "x"], [
3608       AC_MSG_ERROR([Windows Audio Session API not found.])
3609     ])
3610   ])
3612 AM_CONDITIONAL([HAVE_WASAPI], [test "${have_wasapi}" = "yes"])
3615 dnl  AudioQueue plugin
3617 AC_ARG_ENABLE(audioqueue,
3618   [  --enable-audioqueue     AudioQueue audio module (default disabled)])
3619 if test "${enable_audioqueue}" = "yes"
3620 then
3621   VLC_ADD_PLUGIN([audioqueue])
3625 dnl  JACK modules
3627 AC_ARG_ENABLE(jack,
3628   [AS_HELP_STRING([--disable-jack],
3629     [do not use jack (default auto)])])
3630 have_jack="no"
3631 AS_IF([test "${enable_jack}" != "no"], [
3632     PKG_CHECK_MODULES(JACK, jack >= 1.9.7,
3633       [ have_jack=yes ],
3634       [
3635       AC_MSG_WARN([${JACK_PKG_ERRORS}, trying jack1 instead])
3637       PKG_CHECK_MODULES(JACK, jack >= 0.120.1 jack < 1.0,
3638       [ have_jack=yes ],
3639       [
3640       AS_IF([test -n "${enable_jack}"],
3641          [AC_MSG_ERROR([${JACK_PKG_ERRORS}.])],
3642          [AC_MSG_WARN([${JACK_PKG_ERRORS}.])])
3643       ])
3644     ])
3646 AM_CONDITIONAL([HAVE_JACK], [test "${have_jack}" != "no"])
3649 dnl  OpenSLES Android
3651 AC_ARG_ENABLE(opensles,
3652   [  --enable-opensles       Android OpenSL ES audio module (default disabled)])
3653 if test "${HAVE_ANDROID}" = "1"; then
3654   if test "${enable_opensles}" = "yes"; then
3655       AC_CHECK_HEADERS(SLES/OpenSLES.h,
3656         [ VLC_ADD_PLUGIN([opensles_android]) ],
3657         [ AC_MSG_ERROR([cannot find OpenSLES headers])] )
3658   fi
3662 dnl  Tizen audio
3664 AC_ARG_ENABLE(tizen_audio,
3665   [AS_HELP_STRING([--enable-tizen-audio],
3666     [Tizen audio module (default enabled on Tizen)])],, [
3667   AS_IF([test "$HAVE_TIZEN" = "1"], [
3668     enable_tizen_audio="yes"
3669   ])
3671 if test "${enable_tizen_audio}" = "yes"; then
3672   AC_CHECK_HEADERS(audio_io.h,
3673     [ VLC_ADD_PLUGIN([tizen_audio]) ],
3674     [ AC_MSG_ERROR([cannot find Tizen audio_io headers])] )
3678 dnl libsamplerate plugin
3680 PKG_ENABLE_MODULES_VLC([SAMPLERATE], [], [samplerate], [Resampler with libsamplerate], [auto])
3683 dnl  soxr module
3685 PKG_ENABLE_MODULES_VLC([SOXR], [], [soxr >= 0.1.2], [SoX Resampler library], [auto])
3688 dnl  OS/2 KAI plugin
3690 AC_ARG_ENABLE(kai,
3691   [AS_HELP_STRING([--enable-kai],
3692     [support the K Audio Interface KAI (default enabled on OS/2)])],, [
3693   AS_IF([test "$SYS" = "os2"], [
3694     enable_kai="yes"
3695   ])
3697 have_kai="no"
3698 KAI_LIBS=""
3699 AS_IF([test "$enable_kai" != "no"], [
3700   AC_CHECK_HEADERS([kai.h], [
3701     have_kai="yes"
3702     AC_CHECK_LIB(kai, main, [
3703       KAI_LIBS="-lkai"
3704     ])
3705   ])
3707 AC_SUBST(KAI_LIBS)
3708 AM_CONDITIONAL([HAVE_KAI], [test "${have_kai}" = "yes"])
3711 dnl  chromaprint audio track fingerprinter
3713 m4_pushdef([libchromaprint_version], 0.6.0)
3714 PKG_WITH_MODULES([CHROMAPRINT],[libchromaprint >= libchromaprint_version],
3715     VLC_ADD_PLUGIN([stream_out_chromaprint]),
3716     AS_IF([test "${enable_chromaprint}" = "yes"],
3717         [AC_MSG_ERROR(Library [libchromaprint >= libchromaprint_version] needed for [chromaprint] was not found)],
3718         [AC_MSG_WARN(Library [libchromaprint >= libchromaprint_version] needed for [chromaprint] was not found)]
3719          ),
3720     [(Chromaprint based audio fingerprinter)],[auto])
3721 m4_popdef([libchromaprint_version])
3724 dnl  Chromecast streaming support
3726 m4_pushdef([protobuf_lite_version], 2.5.0)
3727 AC_ARG_VAR(PROTOC, [protobuf compiler])
3728 AC_CHECK_PROGS(PROTOC, protoc, no)
3729 PKG_WITH_MODULES([CHROMECAST],[protobuf-lite >= protobuf_lite_version], [
3730     AS_IF([test "x${PROTOC}" != "xno"], [
3731         build_chromecast="yes"
3732     ], [
3733     AC_MSG_ERROR(protoc compiler needed for [chromecast] was not found)
3734     ])
3735 ], [
3736     AS_IF([test "${enable_chromecast}" = "yes"],
3737         AC_MSG_ERROR(Library [protobuf-lite >= protobuf_lite_version] needed for [chromecast] was not found),
3738         AC_MSG_WARN(Library [protobuf-lite >= protobuf_lite_version] needed for [chromecast] was not found)
3739     )
3740     enable_chromecast="no"
3741 ], [(Chromecast streaming support)], [auto])
3742 AM_CONDITIONAL([BUILD_CHROMECAST], [test "${build_chromecast}" = "yes"])
3743 m4_popdef([protobuf_lite_version])
3746 dnl  Interface plugins
3749 EXTEND_HELP_STRING([Interface plugins:])
3752 dnl QT
3754 AC_ARG_ENABLE(qt, [
3755   AS_HELP_STRING([--disable-qt], [Qt UI support (default enabled)])],, [
3756   AS_IF([test "${SYS}" = "darwin"], [
3757     enable_qt="no"
3758   ])
3760 AS_IF([test "${enable_qt}" != "no"], [
3761   PKG_CHECK_MODULES([QT], [Qt5Core >= 5.2.0 Qt5Widgets Qt5Gui], [
3762       PKG_CHECK_MODULES([QTX11], [Qt5X11Extras], [
3763           VLC_ADD_LIBS([qt],[${QTX11_LIBS}])
3764           VLC_ADD_CXXFLAGS([qt],[${QTX11_CFLAGS} -DQT5_HAS_X11])
3765           PKG_CHECK_MODULES([XI], [xi], [
3766             VLC_ADD_LIBS([qt], [${XI_LIBS}])
3767             VLC_ADD_CXXFLAGS([qt], [${XI_CFLAGS} -DHAVE_XI])
3768           ], [
3769             PKG_CHECK_EXISTS([Qt5Gui >= 5.5], [
3770               AC_MSG_ERROR([${XI_PKG_ERRORS}.])
3771             ], [
3772               AC_MSG_WARN([${XI_PKG_ERRORS}.])
3773             ])
3774           ])
3775       ],[
3776           AC_MSG_WARN([Not building Qt Interface with X11 helpers.])
3777       ])
3778       QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix Qt5Core)"
3779       QT_HOST_PATH="$(eval $PKG_CONFIG --variable=host_bins Qt5Core)"
3780       AC_PATH_PROGS(MOC, [moc-qt5 moc], moc, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3781       AC_PATH_PROGS(RCC, [rcc-qt5 rcc], rcc, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3782       AC_PATH_PROGS(UIC, [uic-qt5 uic], uic, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3783     ], [
3784       PKG_CHECK_MODULES([QT], [QtCore QtGui >= 4.8.0],, [
3785         AS_IF([test -n "${enable_qt}"],[
3786           AC_MSG_ERROR([${QT_PKG_ERRORS}.])
3787         ],[
3788           AC_MSG_WARN([${QT_PKG_ERRORS}.])
3789         ])
3790         enable_qt="no"
3791       ])
3792       QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix QtCore)"
3793       AC_PATH_PROGS(MOC, [moc-qt4 moc], moc, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3794       AC_PATH_PROG(RCC, rcc, rcc, [${QT_PATH}/bin ${CONTRIB_DIR}/bin])
3795       AC_PATH_PROGS(UIC, [uic-qt4 uic], uic, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3796     ])
3798 AS_IF([test "${enable_qt}" != "no"], [
3799   VLC_ADD_PLUGIN([qt])
3800   ALIASES="${ALIASES} qvlc"
3802 AM_CONDITIONAL(ENABLE_QT, [test "$enable_qt" != "no"])
3805 dnl detect kde4-config patch (used for kde solids and kwallet).
3807 AC_ARG_VAR([KDE4_CONFIG], [kde4-config utility])
3808 AS_IF([test "x$KDE4_CONFIG" = "x"], [
3809   KDE4_CONFIG="kde4-config"
3813 dnl Simple test for skins2 dependency
3815 AS_IF([test "$enable_qt" = "no"], [
3816   AS_IF([test "${enable_skins2}" = "yes"], [
3817     AC_MSG_ERROR([The skins2 module depends on the Qt 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 Qt development package or alternatively you can also configure with: --disable-qt --disable-skins2.])
3818   ], [
3819     enable_skins2="no"
3820     AC_MSG_WARN([The skins2 module depends on the Qt interface, Qt is not built so skins2 is disabled.])
3821   ])
3825 dnl Skins2 module
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"
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   ])
3852   dnl for All OSes
3853   VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3855   dnl we need freetype
3856   AS_IF([test "${have_freetype}" != "yes"], [
3857     have_skins_deps="no"
3858   ])
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   ])
3873 AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes"])
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   ])
3884 dnl  MacOS X gui module
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_PLUGIN([macosx])
3892   if test ! -d ${CONTRIB_DIR}/BGHUDAppKit.framework
3893   then
3894     AC_MSG_ERROR([BGHUDAppKit framework is required and was not found in ${CONTRIB_DIR}])
3895   fi
3897 AM_CONDITIONAL(ENABLE_MACOSX_UI, [test "$enable_macosx" != "no"])
3900 dnl  MacOS X sparkle update support
3902 AC_ARG_ENABLE(sparkle,
3903   [  --enable-sparkle        Sparkle update support for OS X (default enabled on Mac OS X)])
3904 if test "x${enable_sparkle}" != "xno" -a "${HAVE_OSX}" = "1"
3905 then
3906   if test ! -d ${CONTRIB_DIR}/Sparkle.framework
3907   then
3908     AC_MSG_ERROR([Sparkle framework is required and was not found in ${CONTRIB_DIR}])
3909   fi
3911   AC_DEFINE([HAVE_SPARKLE], [1], [Define to 1 if sparkle is enabled.])
3913 AM_CONDITIONAL(HAVE_SPARKLE, [test "$enable_sparkle" != "no"])
3917 dnl  Minimal Mac OS X module
3919 AC_ARG_ENABLE(minimal-macosx,
3920   [  --enable-minimal-macosx Minimal Mac OS X support (default disabled)])
3921 if test "${enable_minimal_macosx}" = "yes" -a "${SYS}" = "darwin"
3922 then
3923   VLC_ADD_PLUGIN([minimal_macosx])
3927 dnl  VideoToolbox plugins
3928 AC_CHECK_HEADERS(VideoToolbox/VideoToolbox.h, [
3929     VLC_ADD_PLUGIN([videotoolbox])
3930     VLC_ADD_PLUGIN([cvpx_i420])
3931   ])
3934 dnl  ncurses module
3936 AC_ARG_ENABLE(ncurses,
3937 [AS_HELP_STRING([--disable-ncurses],[ncurses text-based interface (default auto)])])
3938 have_ncurses="no"
3939 AS_IF([test "${enable_ncurses}" != "no"] ,[
3940   PKG_CHECK_MODULES([NCURSES], [ncursesw], [
3941     have_ncurses="yes"
3942     ALIASES="${ALIASES} nvlc"
3943   ], [
3944     AS_IF([test -n "${enable_ncurses}"], [
3945       AC_MSG_ERROR([${NCURSES_PKG_ERRORS}.])
3946     ])
3947   ])
3949 AM_CONDITIONAL([HAVE_NCURSES], [test "${have_ncurses}" = "yes"])
3952 dnl  Lirc plugin
3954 AC_ARG_ENABLE(lirc,
3955   [  --enable-lirc           lirc support (default disabled)])
3956 have_lirc="no"
3957 AS_IF([test "${enable_lirc}" = "yes"], [
3958   AC_CHECK_HEADER(lirc/lirc_client.h, [
3959     AC_CHECK_LIB(lirc_client, lirc_init, [
3960       have_lirc="true"
3961     ])
3962   ])
3964 AM_CONDITIONAL([HAVE_LIRC], [test "${have_lirc}" = "yes"])
3966 EXTEND_HELP_STRING([Visualisations and Video filter plugins:])
3968 dnl  goom visualization plugin
3970 PKG_ENABLE_MODULES_VLC([GOOM], [], [libgoom2], [goom visualization plugin], [auto])
3973 dnl libprojectM visualization plugin
3975 AC_ARG_ENABLE(projectm,
3976   [  --enable-projectm       projectM visualization plugin (default enabled)])
3977 AS_IF([test "${enable_projectm}" != "no"],
3978   [
3979     PKG_CHECK_MODULES(PROJECTM, libprojectM,
3980     [
3981       VLC_ADD_PLUGIN([projectm])
3982       PKG_CHECK_EXISTS([libprojectM >= 2.0.0],
3983         [ AC_DEFINE([HAVE_PROJECTM2], 1, [Define to 1 if using libprojectM 2.x]) ],
3984         [ AC_MSG_WARN( [Using libprojectM version 1] )
3985       ])
3986     ],[
3987       AC_MSG_WARN([${PROJECTM_PKG_ERRORS}.])
3988     ])
3989   ])
3992 dnl Vovoid VSXu visualization plugin
3994 AC_ARG_ENABLE(vsxu,
3995   [  --enable-vsxu           Vovoid VSXu visualization plugin (default auto)])
3996 AS_IF([test "${enable_vsxu}" != "no"],
3997   [
3998     PKG_CHECK_MODULES(VSXU, libvsxu,
3999     [
4000       VLC_ADD_PLUGIN([vsxu])
4001     ],[
4002       AC_MSG_WARN([${VSXU_PKG_ERRORS}.])
4003     ])
4004   ])
4006 EXTEND_HELP_STRING([Service Discovery plugins:])
4008 dnl  Avahi-Zeroconf services discovery
4009 PKG_ENABLE_MODULES_VLC([AVAHI], [], [avahi-client >= 0.6], [Zeroconf services discovery], [auto])
4012 dnl  libudev services discovery
4013 PKG_ENABLE_MODULES_VLC([UDEV], [], [libudev >= 142], [Linux udev services discovery], [auto])
4016 dnl MTP devices services discovery
4017 PKG_ENABLE_MODULES_VLC([MTP], [mtp access_mtp], [libmtp >= 1.0.0], [MTP devices support], [auto])
4020 dnl UPnP Plugin (Intel SDK)
4022 PKG_ENABLE_MODULES_VLC([UPNP], [upnp], [libupnp], [Intel UPNP SDK],[auto])
4025 dnl mDNS using libmicrodns
4027 PKG_ENABLE_MODULES_VLC([MICRODNS], [], [microdns], [mDNS services discovery], [auto])
4030 EXTEND_HELP_STRING([Misc options:])
4033 dnl  libxml2 module
4035 PKG_ENABLE_MODULES_VLC([LIBXML2], [xml], [libxml-2.0 >= 2.5], [libxml2 support],[auto])
4039 dnl libgcrypt
4041 AC_ARG_ENABLE(libgcrypt,
4042   [  --disable-libgcrypt     gcrypt support (default enabled)])
4043 # require libgcrypt >= 1.6.0
4044 AS_IF([test "${enable_libgcrypt}" != "no"], [
4045   AC_TRY_COMPILE([
4046 #include <gcrypt.h>
4047 #if GCRYPT_VERSION_NUMBER < 0x010600
4048 #error
4049 #endif],
4050   [], [
4051     have_libgcrypt="yes"
4052     AC_DEFINE([HAVE_GCRYPT], 1, [Defined if having gcrypt])
4053     GCRYPT_CFLAGS="`libgcrypt-config --cflags`"
4054     GCRYPT_LIBS="`libgcrypt-config --libs`"
4055   ], [
4056     AS_IF([test "${enable_libgcrypt}" == "yes"], [
4057       AC_MSG_ERROR([libgcrypt version 1.6.0 or higher not found. Install libgcrypt or pass --disable-libgcrypt.])
4058     ])
4059   ])
4062 AC_SUBST(GCRYPT_CFLAGS)
4063 AC_SUBST(GCRYPT_LIBS)
4064 AM_CONDITIONAL([HAVE_GCRYPT], [test "${have_libgcrypt}" = "yes"])
4067 dnl TLS/SSL
4069 AC_ARG_ENABLE(gnutls,
4070   [  --enable-gnutls         GNU TLS TLS/SSL support (default enabled)])
4071 AS_IF([test "${enable_gnutls}" != "no"], [
4072   PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.2.0], [
4073     VLC_ADD_PLUGIN([gnutls])
4074   ], [
4075     AS_IF([test -n "${enable_gnutls}"], [
4076       AC_MSG_ERROR([${GNUTLS_PKG_ERRORS}.)])
4077     ])
4078   ])
4083 dnl Taglib plugin
4085 AC_ARG_ENABLE(taglib,
4086   [AS_HELP_STRING([--disable-taglib],
4087     [do not use TagLib (default enabled)])])
4088 AS_IF([test "${enable_taglib}" != "no"], [
4089   PKG_CHECK_MODULES(TAGLIB, taglib >= 1.9, [
4090     VLC_ADD_PLUGIN([taglib])
4091   ], [
4092     AC_MSG_WARN([${TAGLIB_PKG_ERRORS}.])])
4096 dnl  libsecret
4098 PKG_ENABLE_MODULES_VLC([SECRET], [], [libsecret-1 >= 0.18], [use libsecret for keystore], [auto])
4101 dnl  Developers helper modules (should be hidden from configure help)
4103 AC_ARG_ENABLE(devtools, [], [], [enable_devtools="no"])
4104 AS_IF([test "${enable_devtools}" != "no"], [
4105   VLC_ADD_PLUGIN([accesstweaks])
4109 dnl update checking system
4111 AC_ARG_ENABLE(update-check,
4112   [  --enable-update-check   update checking system (default disabled)])
4113 if test "${enable_update_check}" = "yes"
4114 then
4115   if test "${have_libgcrypt}" != "yes"
4116   then
4117     AC_MSG_ERROR([libgcrypt is required for update checking system])
4118   fi
4119   VLC_ADD_LIBS([libvlccore], [${GCRYPT_LIBS}])
4120   VLC_ADD_CFLAGS([libvlccore], [${GCRYPT_CFLAGS}])
4121   AC_DEFINE([UPDATE_CHECK], 1, [Define if you want to use the VLC update mechanism])
4125 dnl OS X notification plugin
4127 AC_ARG_ENABLE(osx_notifications,
4128   [  --enable-osx-notifications          osx notification plugin (default disabled)],,
4129   [enable_osx_notifications=no])
4130 AS_IF([test "${enable_osx_notifications}" != "no"], [
4131     AC_CHECK_HEADERS(${CONTRIB_DIR}/Growl.framework/Versions/A/Headers/Growl.h, [
4132       VLC_ADD_PLUGIN([osx_notifications])
4133       VLC_ADD_LIBS([osx_notifications], [-F${CONTRIB_DIR} -Wl,-framework,Growl,-framework,Foundation])
4134       VLC_ADD_OBJCFLAGS([osx_notifications], [-F${CONTRIB_DIR}])
4135       VLC_ADD_OBJCFLAGS([osx_notifications], [-fobjc-exceptions] )
4136     ])
4137   ]
4141 dnl Libnotify notification plugin
4143 PKG_ENABLE_MODULES_VLC([NOTIFY], [], [libnotify gtk+-2.0], [libnotify notification], [auto])
4146 dnl  Endianness check
4148 AC_C_BIGENDIAN
4149 AS_IF([test "${ac_cv_c_bigendian}" = "yes"], [
4150   DEFS_BIGENDIAN="-DWORDS_BIGENDIAN=1"
4151 ], [
4152   DEFS_BIGENDIAN=""
4154 AC_SUBST(DEFS_BIGENDIAN)
4157 dnl Where to install KDE solid .desktop
4159 AC_ARG_WITH(kde-solid,
4160   AS_HELP_STRING([--with-kde-solid=PATH],
4161                  [KDE Solid actions directory (auto)]),, [
4163 if test "${SYS}" != "mingw32" -a "${SYS}" != "darwin" ; then
4164   with_kde_solid="yes"
4167 soliddatadir=""
4168 AS_IF([test "${with_kde_solid}" != "no"], [
4169   AS_IF([test "${with_kde_solid}" = "yes"], [
4170     kde4datadir="`${KDE4_CONFIG} --install data`"
4171     AS_IF([test "x$kde4datadir" = "x"], [kde4datadir='${datadir}/kde4/apps'])
4172     soliddatadir="${kde4datadir}/solid/actions"
4173   ], [
4174     soliddatadir="${with_kde_solid}"
4175   ])
4177 AC_SUBST(soliddatadir)
4178 AM_CONDITIONAL(KDE_SOLID, [test "x${soliddatadir}" != "x"])
4180 EXTEND_HELP_STRING([Components:])
4183 dnl  the VLC binary
4185 AC_ARG_ENABLE(vlc,
4186   [  --enable-vlc            build the VLC media player (default enabled)])
4187 AM_CONDITIONAL(BUILD_VLC, [test "${enable_vlc}" != "no"])
4189 AC_ARG_ENABLE(macosx-vlc-app,
4190   [  --enable-macosx-vlc-app build the VLC media player (default enabled on Mac OS X)])
4191 AM_CONDITIONAL(BUILD_MACOSX_VLC_APP, [test "${enable_macosx_vlc_app}" != "no" &&
4192     (test "${SYS}" = "darwin" || test "${enable_macosx_vlc_app}" = "yes") ])
4195 dnl  Stuff used by the program
4197 VERSION_MESSAGE="${VERSION} ${CODENAME}"
4198 COPYRIGHT_MESSAGE="Copyright © ${COPYRIGHT_YEARS} the VideoLAN team"
4199 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION_MESSAGE}", [Simple version string])
4200 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "${COPYRIGHT_MESSAGE}", [Copyright string])
4201 AC_DEFINE_UNQUOTED(COPYRIGHT_YEARS, "${COPYRIGHT_YEARS}", [The copyright years])
4202 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4203 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,${VERSION_MAJOR}, [version major number])
4204 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,${VERSION_MINOR}, [version minor number])
4205 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,${VERSION_REVISION}, [version revision number])
4206 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,${VERSION_EXTRA}, [version extra number])
4207 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_DEV,"${VERSION_DEV}", [version development string])
4208 AC_SUBST(COPYRIGHT_MESSAGE)
4209 AC_SUBST(VERSION_MESSAGE)
4210 AC_SUBST(VERSION_MAJOR)
4211 AC_SUBST(VERSION_MINOR)
4212 AC_SUBST(VERSION_REVISION)
4213 AC_SUBST(VERSION_EXTRA)
4214 AC_SUBST(COPYRIGHT_YEARS)
4215 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami|sed -e 's/\\\/\\\\\\\/g'`", [user who ran configure])
4216 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname -f 2>/dev/null || hostname`", [host which ran configure])
4217 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1 | sed -e 's/ *$//'`", [compiler])
4219 dnl  Handle substvars that use $(top_srcdir)
4221 CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/include ${CPPFLAGS}"
4224 dnl  Configuration is finished
4226 AC_SUBST(SYS)
4227 AC_SUBST(ARCH)
4228 AC_SUBST(ALIASES)
4229 AC_SUBST(ASM)
4230 AC_SUBST(MOC)
4231 AC_SUBST(RCC)
4232 AC_SUBST(UIC)
4233 AC_SUBST(WINDRES)
4234 AC_SUBST(WINE_SDK_PATH)
4235 AC_SUBST(LIBEXT)
4236 AC_SUBST(AM_CPPFLAGS)
4237 AC_SUBST(MACOSX_DEPLOYMENT_TARGET)
4238 AC_SUBST(FILE_LIBVLCCORE_DLL)
4239 AC_SUBST(FILE_LIBVLC_DLL)
4241 AC_CONFIG_FILES([
4242   Makefile
4243   doc/Makefile
4244   modules/Makefile
4245   m4/Makefile
4246   po/Makefile.in
4247   share/Makefile
4248   compat/Makefile
4249   src/Makefile
4250   lib/Makefile
4251   bin/Makefile
4252   test/Makefile
4253   modules/gui/macosx/Makefile
4254   modules/gui/qt/Makefile
4255   modules/gui/skins2/Makefile
4256   modules/hw/mmal/Makefile
4259 AM_COND_IF([HAVE_WIN32], [
4260   AC_CONFIG_FILES([
4261     extras/package/win32/NSIS/spad.nsi
4262     extras/package/win32/NSIS/vlc.win32.nsi
4263     extras/package/win32/msi/config.wxi
4264   ])
4267 AM_COND_IF([HAVE_DARWIN], [
4268   AC_CONFIG_FILES([
4269     extras/package/macosx/Info.plist
4270     extras/package/macosx/Resources/English.lproj/InfoPlist.strings
4271   ])
4274 dnl Generate makefiles
4275 AC_OUTPUT
4277 dnl Do we have to use make or gmake ?
4278 if make --version 2>&1|grep -q GNU
4279 then
4280     # GNU make, all seems good
4281     MAKE=make
4282 else
4283     # Known GNU make alias (on BSD)
4284     MAKE=gmake
4286 dnl Shortcut to nice compile message
4287 if test -n $SHELL; then
4288   SHELL=${CONFIG_SHELL-/bin/sh}
4290 rm -f compile
4291 compile_top_srcdir=`sed -ne "s/^top_srcdir *= *//p" < Makefile`
4292 echo "#! $SHELL
4293 rm -f .error\$\$
4294 ERROR=0
4295 export PATH=\"$PATH\" LANG=C
4296 ($MAKE V=1 \$@ 2>&1 || touch .error\$\$)| $compile_top_srcdir/extras/buildsystem/make.pl
4297 test -f .error\$\$ && ERROR=1
4298 rm -f .error\$\$
4299 exit \$ERROR" >compile
4300 chmod a+x compile
4302 echo "
4303 libvlc configuration
4304 --------------------
4305 version               : ${VERSION}
4306 system                : ${SYS}
4307 architecture          : ${ARCH}
4308 optimizations         : ${enable_optimizations}"
4309 if test "${enable_vlc}" != "no"; then
4310 echo "vlc aliases           :${ALIASES}"
4311 else
4312 echo "build vlc executable  : no"
4314 echo "
4315 To build vlc and its plugins, type \`$MAKE', or \`./compile' if you like nice colors."