access: dvdnav: add additional version checking
[vlc.git] / configure.ac
bloba9934a3906c12095afd47ceb5178a2ec391376b3
1 dnl Autoconf settings for vlc
3 AC_COPYRIGHT([Copyright 1999-2015 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-2015"
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"
104 case "${host_os}" in
105   "")
106     SYS=unknown
107     ;;
108   linux*)
109     SYS=linux
110     ;;
111   bsdi*)
112     SYS=bsdi
113     CFLAGS="${CFLAGS} -pthread"
114     ;;
115   freebsd*)
116     SYS=freebsd
117     CFLAGS="${CFLAGS} -pthread"
118     CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
119     LDFLAGS="${LDFLAGS} -L/usr/local/lib"
120     ;;
121   openbsd*)
122     SYS=openbsd
123     CPPFLAGS="${CPPFLAGS} -I/usr/local/include -I/usr/X11R6/include"
124     LDFLAGS="${LDFLAGS} -L/usr/local/lib -L/usr/X11R6/lib/"
125     ;;
126   netbsd*)
127     SYS=netbsd
128     ;;
129   dragonfly*)
130     SYS=dragonfly
131     ;;
132   darwin*)
134     dnl Force gcc "-arch" flag
135     ARCH_flag=""
136     case "${host}" in
137       i?86*)
138         ARCH_flag="-arch i386"
139       ;;
140       ppc64*)
141         ARCH_flag="-arch ppc64"
142       ;;
143       ppc*)
144         ARCH_flag="-arch ppc"
145       ;;
146       x86_64*)
147         ARCH_flag="-arch x86_64"
148       ;;
149       arm*)
150         ac_cv_c_bigendian="no"
151         ac_cv_c_attribute_packed="no"
152       ;;
153     esac
155     SYS=darwin
156     CFLAGS="${CFLAGS} -D_INTL_REDIRECT_MACROS -std=gnu11 ${ARCH_flag}"
157     CXX="${CXX} -stdlib=libc++ -std=c++11"
158     CXXFLAGS="${CXXFLAGS} -D_INTL_REDIRECT_MACROS ${ARCH_flag}"
159     CPPFLAGS="${CPPFLAGS} ${ARCH_flag}"
160     OBJCFLAGS="${OBJCFLAGS} -D_INTL_REDIRECT_MACROS -std=gnu11 ${ARCH_flag}"
161     LDFLAGS="${LDFLAGS} -Wl,-headerpad_max_install_names ${ARCH_flag}"
162     VLC_ADD_LIBS([libvlc vlc],[-Wl,-undefined,dynamic_lookup,-framework,AppKit])
163     VLC_ADD_LIBS([libvlccore],[-Wl,-framework,CoreFoundation,-framework,CoreServices])
165     AC_EGREP_CPP(yes,
166             [#import <TargetConditionals.h>
167              #if TARGET_OS_IPHONE
168              yes
169              #endif],
170              [HAVE_IOS="1"],
171              [HAVE_OSX="1"])
173     dnl Allow binaries created on Lion to run on earlier releases
174     AC_EGREP_CPP(yes,
175            [#import <Cocoa/Cocoa.h>
176             #ifdef MAC_OS_X_VERSION_10_7
177             yes
178             #endif],
179             [AC_MSG_RESULT([yes])
180             AC_LIBOBJ([getdelim])
181             AC_LIBOBJ([strndup])
182             AC_LIBOBJ([strnlen])],)
184     dnl
185     dnl  Handle Mac OS X SDK flags
186     dnl
187     AC_ARG_WITH(macosx-sdk,
188       [AS_HELP_STRING([--with-macosx-sdk=DIR],
189         [compile using the SDK in DIR])])
190     if test "${with_macosx_sdk}" != "" ; then
191         test ! -d "${with_macosx_sdk}" && AC_MSG_ERROR([SDK "${with_macosx_sdk}" not found])
192         CPP="${CPP} -isysroot ${with_macosx_sdk}"
193         CC="${CC} -isysroot ${with_macosx_sdk}"
194         CXX="${CXX} -isysroot ${with_macosx_sdk}"
195         OBJC="${OBJC} -isysroot ${with_macosx_sdk}"
196         LD="${LD} -syslibroot ${with_macosx_sdk}"
197     fi
198     AC_ARG_WITH(macosx-version-min,
199       [AS_HELP_STRING([--with-macosx-version-min=VERSION],
200         [compile for Mac OS X VERSION and above])])
201     if test "${with_macosx_version_min}" != "" ; then
202         CPP="${CPP} -mmacosx-version-min=${with_macosx_version_min}"
203         CC="${CC} -mmacosx-version-min=${with_macosx_version_min}"
204         CXX="${CXX} -mmacosx-version-min=${with_macosx_version_min}"
205         OBJC="${OBJC} -mmacosx-version-min=${with_macosx_version_min}"
206         LD="${LD} -mmacosx_version_min=${with_macosx_version_min}"
207     fi
208     ;;
209   *mingw32* | *cygwin* | *wince* | *mingwce*)
210     AC_CHECK_TOOL(WINDRES, windres, :)
211     AC_CHECK_TOOL(OBJCOPY, objcopy, :)
212     AH_TOP([#if defined(_WIN32) && !defined(_WIN32_WINNT)])
213     AH_TOP([# define _WIN32_WINNT 0x0502 /* Windows XP SP2 */])
214     AH_TOP([#endif])
215     AC_DEFINE([_WIN32_IE], 0x0600, [Define to '0x0600' for IE 6.0 (and shell) APIs.])
216     AC_DEFINE([_UNICODE], [1], [Define to 1 for Unicode (Wide Chars) APIs.])
217     AC_DEFINE([UNICODE], [1], [Define to 1 for Unicode (Wide Chars) APIs.])
218     AC_DEFINE([_ISOC99_SOURCE], [1], [Extensions to ISO C89 from ISO C99.])
219     AC_DEFINE([_ISOC11_SOURCE], [1], [Extensions to ISO C99 from ISO C11.])
220     AC_DEFINE([_POSIX_SOURCE], [1], [IEEE Std 1003.1.])
221     AC_DEFINE([_POSIX_C_SOURCE], [200809L], [IEEE Std 1003.1.])
222     AC_DEFINE([_XOPEN_SOURCE], [700], [POSIX and XPG 7th edition])
223     AC_DEFINE([_XOPEN_SOURCE_EXTENDED], [1], [XPG things and X/Open Unix extensions.])
224     AC_DEFINE([_BSD_SOURCE], [1], [ISO C, POSIX, and 4.3BSD things.])
225     AC_DEFINE([_SVID_SOURCE], [1], [ISO C, POSIX, and SVID things.])
227     case "${host_os}" in
228       *mingw32*)
229         SYS=mingw32
230         ;;
231       *cygwin*)
232         dnl Check if we are using the mno-cygwin mode in which case we are
233         dnl actually dealing with a mingw32 compiler.
234         AC_EGREP_CPP(yes,
235             [#ifdef _WIN32
236              yes
237              #endif],
238             SYS=mingw32, AC_MSG_ERROR([VLC requires -mno-cygwin]))
239         ;;
240     esac
242     if test "${SYS}" = "mingw32"; then
243         # DEP, ASLR, NO SEH
244         LDFLAGS="${LDFLAGS} -Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase"
246         AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos)
247         ac_default_prefix="`pwd`/_win32"
248         DESTDIR="`pwd`/_win32/"
250         dnl
251         dnl NSIS/MSI Installer prefix and WIN64
252         dnl
253         case "${host}" in
254             amd64*|x86_64*)
255                 HAVE_WIN64="1"
256                 WINDOWS_ARCH="x64"
257                 PROGRAMFILES="PROGRAMFILES64"
258             ;;
259             *)
260                 WINDOWS_ARCH="x86"
261                 PROGRAMFILES="PROGRAMFILES"
262             ;;
263         esac
264         AC_SUBST(WINDOWS_ARCH)
265         AC_SUBST(PROGRAMFILES)
267     fi
268     ;;
269   *nto*)
270     SYS=nto
271     ;;
272   solaris*)
273     SYS=solaris
274     ;;
275   hpux*)
276     SYS=hpux
277     ;;
278   *os2*)
279     SYS=os2
280     LDFLAGS="${LDFLAGS} -Zomf -Zbin-files -Zargs-wild -Zhigh-mem"
281     AC_LIBOBJ([freeaddrinfo])
282     ;;
283   *)
284     SYS="${host_os}"
285     ;;
286 esac
287 AM_CONDITIONAL(HAVE_DARWIN,  test "${SYS}" = "darwin")
288 AM_CONDITIONAL(HAVE_LINUX,   test "${SYS}" = "linux")
289 AM_CONDITIONAL(HAVE_OS2,     test "${SYS}" = "os2")
290 AM_CONDITIONAL(HAVE_WIN32,   test "${SYS}" = "mingw32")
291 AM_CONDITIONAL(HAVE_WIN64,   test "${HAVE_WIN64}" = "1")
292 AM_CONDITIONAL(HAVE_IOS,   test "${HAVE_IOS}" = "1")
293 AM_CONDITIONAL(HAVE_OSX,   test "${HAVE_OSX}" = "1")
296 dnl Sadly autoconf does not think about testing foo.exe when ask to test
297 dnl for program foo on win32
298 case "${build_os}" in
299     cygwin|msys)
300         ac_executable_extensions=".exe"
301     ;;
302     os2*)
303         BUILDEXEEXT=".exe"
304     ;;
305     *)
306     ;;
307 esac
308 AC_SUBST(BUILDEXEEXT)
310 dnl Android is linux, but a bit different
311 AS_IF([test "$SYS" = linux],[
312     AC_MSG_CHECKING([for an Android system])
313     AC_PREPROC_IFELSE([AC_LANG_PROGRAM(
314         [[#ifndef __ANDROID__
315          # error Not Android
316          #endif
317         ]],[[;]])
318     ],[
319       HAVE_ANDROID="1"
320       AC_MSG_RESULT([yes])
321     ],[
322       AC_MSG_RESULT([no])
323     ])
325 AM_CONDITIONAL(HAVE_ANDROID, test "${HAVE_ANDROID}" = "1")
329 dnl  Check for the contrib directory
331 AC_ARG_WITH(contrib,
332   [AS_HELP_STRING([--with-contrib[=DIR]],
333     [search for 3rd party libraries in DIR/include and DIR/lib])
335 AC_MSG_CHECKING([for 3rd party libraries path])
336 AS_IF([test -z "${with_contrib}" || test "${with_contrib}" = "yes"], [
337   CONTRIB_DIR="${srcdir}/contrib/${host}"
338   AS_IF([test ! -d "${CONTRIB_DIR}"], [
339     echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
340     CONTRIB_DIR="${srcdir}/contrib/`$CC -dumpmachine`"
341     AS_IF([test ! -d "${CONTRIB_DIR}"], [
342       echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
343       CONTRIB_DIR="${srcdir}/extras/contrib/hosts/${host}"
344       AS_IF([test ! -d "${CONTRIB_DIR}"], [
345         echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
346         CONTRIB_DIR="${srcdir}/extras/contrib/hosts/`$CC -dumpmachine`"
347         AS_IF([test ! -d "${CONTRIB_DIR}"], [
348           echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
349           CONTRIB_DIR=""
350           AC_MSG_RESULT([not found])
351         ])
352       ])
353     ])
354   ])
355 ], [
356   AS_IF([test "${with_contrib}" != "no"], [
357     CONTRIB_DIR="${with_contrib}"
358   ], [
359     CONTRIB_DIR=""
360     AC_MSG_RESULT([disabled])
361   ])
363 AS_IF([test -n "${CONTRIB_DIR}"], [
364   AS_IF([test -d "${CONTRIB_DIR}/lib"],[
365     CONTRIB_DIR=`cd "${CONTRIB_DIR}" && pwd`
366   ], [
367     echo "${CONTRIB_DIR}/lib not found" >&AS_MESSAGE_LOG_FD
368     CONTRIB_DIR=""
369     AC_MSG_RESULT([not usable])
370   ])
373 AS_IF([test -n "${CONTRIB_DIR}"], [
374   AC_MSG_RESULT([${CONTRIB_DIR}])
375   export PATH=${CONTRIB_DIR}/bin:$PATH
376   CPPFLAGS="${CPPFLAGS} -I${CONTRIB_DIR}/include"
377   CFLAGS="${CFLAGS} -I${CONTRIB_DIR}/include"
378   CXXFLAGS="${CXXFLAGS} -I${CONTRIB_DIR}/include"
379   OBJCFLAGS="${OBJCFLAGS} -I${CONTRIB_DIR}/include"
380   export PKG_CONFIG_PATH="${CONTRIB_DIR}/lib/pkgconfig:$PKG_CONFIG_PATH"
381   LDFLAGS="${LDFLAGS} -L${CONTRIB_DIR}/lib"
383   AS_IF([test "${SYS}" = "darwin"], [
384     export LD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$LD_LIBRARY_PATH"
385     export DYLD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$DYLD_LIBRARY_PATH"
386   ])
387 ], [
388   AS_IF([test -n "${with_contrib}" && test "${with_contrib}" != "no"], [
389     AC_MSG_ERROR([Third party libraries not found!])
390   ])
392 AC_SUBST(CONTRIB_DIR)
394 dnl Add extras/tools to the PATH
395 TOOLS_DIR="${srcdir}/extras/tools/build/bin"
396 AS_IF([test -d "${TOOLS_DIR}"], [
397     TOOLS_DIR=`cd "${TOOLS_DIR}" && pwd`
398     export PATH="${TOOLS_DIR}":$PATH
402 dnl  Libtool
403 dnl  It's very bad, but our former custom system was worst
404 dnl  -- Courmisch
407 dnl override platform specific check for dependent libraries
408 dnl otherwise libtool linking of shared libraries will
409 dnl fail on anything other than pass_all.
410 AC_CACHE_VAL(lt_cv_deplibs_check_method,
411     [lt_cv_deplibs_check_method=pass_all])
413 LT_INIT([dlopen win32-dll shared disable-static])
414 LT_LANG([C++])
415 LT_LANG([Windows Resource])
417 DOLT
419 lt_cv_deplibs_check_method=pass_all
421 AS_IF([test "${enable_shared}" = "no" -a "${enable_vlc}" != "no"], [
422   AC_MSG_ERROR([VLC is based on plugins. Shared libraries cannot be disabled.])
426 dnl Gettext stuff
428 AM_GNU_GETTEXT_VERSION([0.19.4])
429 AM_GNU_GETTEXT([external], [need-ngettext])
432 dnl Iconv stuff
434 AM_ICONV
437 dnl checks for mingw
438 AS_IF([test "${SYS}" = "mingw32"], [
440 dnl Check for broken versions of mingw-runtime compatability library
441     AC_MSG_CHECKING(for broken mingw-runtime)
442     AC_PREPROC_IFELSE([AC_LANG_SOURCE([
443 #include <_mingw.h>
444 #if defined(__MINGW64_VERSION_MAJOR)
445 # if __MINGW64_VERSION_MAJOR < 3
446 #  error Attempting to use mingw-runtime with broken vsnprintf and direct2d support
447 # endif
448 #elif __MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION < 15
449 # error Attempting to use mingw-runtime with broken vsnprintf support
450 #endif
451     ])], [
452         AC_MSG_RESULT([ok])
453     ], [
454         AC_MSG_RESULT([present])
455         AC_MSG_ERROR([LibVLC requires mingw-runtime version 3.15 or higher, or mingw-w64 version 3.0 or higher!])
456     ])
458     dnl force use of mingw provided c99 *printf over msvcrt
459     CPPFLAGS="${CPPFLAGS} -D__USE_MINGW_ANSI_STDIO=1"
461     dnl Add WinMainCRTStartup entry point to show it's a WinMain application
462     VLC_ADD_LDFLAGS([vlc],[-mwindows])
464     dnl Check for the need to include the mingwex lib for mingw32
465     VLC_SAVE_FLAGS
466     AC_CHECK_LIB(mingwex,opendir,
467         AC_CHECK_LIB(mingw32,opendir,,
468             [VLC_ADD_LIBS([libvlccore],[-lmingwex])])
469     )
470     VLC_RESTORE_FLAGS
472     dnl Check for fnative-struct or mms-bitfields support for mingw32
473     VLC_SAVE_FLAGS
474     CFLAGS="${CFLAGS} -mms-bitfields"
475     CXXFLAGS="${CXXFLAGS} -mms-bitfields"
476     AC_CACHE_CHECK([if \$CC accepts -mms-bitfields],
477         [ac_cv_c_mms_bitfields],
478         [AC_TRY_COMPILE([],,ac_cv_c_mms_bitfields=yes, ac_cv_c_mms_bitfields=no)])
479     if test "${ac_cv_c_mms_bitfields}" = "no"; then
480         VLC_RESTORE_FLAGS
481         CFLAGS="${CFLAGS} -fnative-struct"
482         CXXFLAGS="${CXXFLAGS} -fnative-struct"
483         AC_CACHE_CHECK([if \$CC accepts -fnative-struct],
484             [ac_cv_c_fnative_struct],
485             [AC_TRY_COMPILE([],,ac_cv_c_fnative_struct=yes, ac_cv_c_fnative_struct=no)])
486         "${ac_cv_c_fnative_struct}" = "no" && VLC_RESTORE_FLAGS
487     fi
490 AC_ARG_ENABLE(winstore_app,
491      AS_HELP_STRING([--enable-winstore-app],
492                     [Build targetted for Windows Store apps (default disabled)]))
494 vlc_winstore_app=0
495 AS_IF([test "${SYS}" = "mingw32"],[
496   AS_IF([test "${enable_winstore_app}" = "yes"], [
497     vlc_winstore_app=1
498      VLC_ADD_LIBS([libvlccore], [-lole32 -lruntimeobject])
499     ],[
500      VLC_ADD_LIBS([libvlccore],[-lwinmm])
501     ])
502   ])
503 AC_DEFINE_UNQUOTED(VLC_WINSTORE_APP, ${vlc_winstore_app}, [Define to 1 if you want to build for Windows Store apps])
504 AM_CONDITIONAL([HAVE_WINSTORE], [test "$vlc_winstore_app" = "1"])
508 dnl Buggy glibc prevention. Purposedly not cached.
509 dnl See sourceware.org bugs 5058 and 5443.
510 dnl Ubuntu alone has 20 bug numbers for this...
512 AC_MSG_CHECKING(for buggy GNU/libc versions)
513 AC_PREPROC_IFELSE([AC_LANG_SOURCE([
514 #include <limits.h>
515 #if defined (__GLIBC__) && (__GLIBC__ == 2) \
516   && (__GLIBC_MINOR__ >= 5) && (__GLIBC_MINOR__ <= 7)
517 # error GNU/libc with dcgettext killer bug!
518 #endif
519 ])], [
520   AC_MSG_RESULT([not present])
521 ], [
522   AC_MSG_RESULT([found])
523   AS_IF([test "x${enable_nls}" != "xno"], [
524     AC_MSG_ERROR([Buggy GNU/libc (version 2.5 - 2.7) present. VLC would crash; there is no viable
525 work-around for this. Check with your distribution vendor on how to update the
526 glibc run-time. Alternatively, build with --disable-nls.])
527   ])
530 dnl Plugin compilation stuff
532 VLC_LIBRARY_SUFFIX
534 dnl Check for system libs needed
535 need_libc=false
537 dnl Check for usual libc functions
538 AC_CHECK_DECLS([nanosleep],,,[#include <time.h>])
539 AC_CHECK_FUNCS([daemon fcntl 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])
540 AC_REPLACE_FUNCS([atof atoll dirfd fdopendir ffsll flockfile fsync getdelim getpid lldiv nrand48 poll posix_memalign rewind setenv strcasecmp strcasestr strdup strlcpy strndup strnlen strsep strtof strtok_r strtoll swab tdestroy strverscmp])
541 AC_CHECK_FUNCS(fdatasync,,
542   [AC_DEFINE(fdatasync, fsync, [Alias fdatasync() to fsync() if missing.])
545 dnl mingw64 implements those as static inline, not functions with C linkage
546 VLC_REPLACE_DECL([asprintf], [#include <stdio.h>])
547 VLC_REPLACE_DECL([vasprintf], [#include <stdio.h>])
548 VLC_REPLACE_DECL([gmtime_r], [#include <time.h>])
549 VLC_REPLACE_DECL([localtime_r], [#include <time.h>])
551 dnl C11 static_assert()
552 AC_MSG_CHECKING([for static_assert in assert.h])
553 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <assert.h>], [
554 static_assert(1, "The impossible happened.");
555 ])], [
556   AC_MSG_RESULT([yes])
557   AC_DEFINE([HAVE_STATIC_ASSERT], [1], [Define to 1 if <assert.h> defines static_assert.])
558 ], [
559   AC_MSG_RESULT([no])
562 # Windows CE does not have strcoll()
563 AC_FUNC_STRCOLL
565 dnl Check for non-standard system calls
566 case "$SYS" in
567   "linux")
568     AC_CHECK_FUNCS([accept4 pipe2 eventfd vmsplice sched_getaffinity])
569     ;;
570   "mingw32")
571     AC_CHECK_FUNCS([_lock_file])
572     ;;
573 esac
575 AH_BOTTOM([#include <vlc_fixups.h>])
577 dnl Check for struct pollfd
578 AC_CHECK_TYPES([struct pollfd],,,
579 [#include <sys/types.h>
580 #if HAVE_POLL
581 # include <poll.h>
582 #elif defined (_WIN32)
583 # include <winsock2.h>
584 #endif
587 dnl Checks for socket stuff
588 VLC_SAVE_FLAGS
589 SOCKET_LIBS=""
590 AC_SEARCH_LIBS(connect, [socket], [
591   AS_IF([test "$ac_cv_search_connect" != "none required"], [
592     SOCKET_LIBS="$ac_cv_search_connect"
593   ])
594 ], [
595   AS_IF([test "${SYS}" = "mingw32"], [
596     SOCKET_LIBS="-lws2_32"
597   ])
600 AC_SEARCH_LIBS([inet_pton], [nsl], [
601  AS_IF([test "$ac_cv_search_inet_pton" != "none required"], [
602     SOCKET_LIBS="$ac_cv_search_inet_pton $SOCKET_LIBS"
603   ])
604 ],, [${SOCKET_LIBS}])
606 LIBS="${LIBS} ${SOCKET_LIBS}"
607 AC_LINK_IFELSE([
608     AC_LANG_PROGRAM([#ifdef _WIN32
609         # if _WIN32_WINNT < 0x600
610         #  error Needs vista+
611         # endif
612         #include <ws2tcpip.h>
613         #else
614         #include <sys/socket.h>
615         #include <arpa/inet.h>
616         #endif], [
617         char dst[[sizeof(struct in_addr)]];
618         inet_pton(AF_INET, "127.0.0.1", dst);
619     ])],[AC_DEFINE([HAVE_INET_PTON],[1],[Define to 1 if you have inet_pton function])],[AC_LIBOBJ([inet_pton])])
620 AC_CHECK_FUNCS([if_nameindex if_nametoindex])
621 VLC_RESTORE_FLAGS
622 AC_SUBST(SOCKET_LIBS)
624 dnl Check for socklen_t
625 AH_TEMPLATE(socklen_t, [Define to `int' if <sys/socket.h> does not define.])
626 AC_CACHE_CHECK([for socklen_t in sys/socket.h], dnl ` (fix VIM syntax highlight
627 ac_cv_type_socklen_t,
628 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
629 [#include <sys/types.h>
630 #ifdef _WIN32
631 # include <winsock2.h>
632 # include <ws2tcpip.h>
633 #else
634 # include <sys/socket.h>
635 #endif]], [[socklen_t len; len = 0;]])],
636 ac_cv_type_socklen_t=yes,
637 ac_cv_type_socklen_t=no)])
638 AS_IF([test "$ac_cv_type_socklen_t" = no],
639  [AC_DEFINE(socklen_t, int)])
641 dnl Check for struct sockaddr_storage
642 AH_TEMPLATE(sockaddr_storage, [Define to `sockaddr' if <sys/socket.h> does not define.]) dnl ` (fix VIM syntax highlight
643 AH_TEMPLATE(ss_family, [Define to `sa_family' if <sys/socket.h> does not define.]) dnl ` (fix VIM syntax highlight
644 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_struct_sockaddr_storage,
645   [AC_TRY_COMPILE(
646     [#include <sys/types.h>
647      #if defined( _WIN32 )
648      # include <winsock2.h>
649      #else
650      # include <sys/socket.h>
651      #endif], [struct sockaddr_storage addr;],
652      ac_cv_struct_sockaddr_storage=yes,
653      ac_cv_struct_sockaddr_storage=no)])
654 AS_IF([test "${ac_cv_struct_sockaddr_storage}" = no], [
655   AC_DEFINE(sockaddr_storage, sockaddr)
656   AC_DEFINE(ss_family, sa_family)
659 dnl FreeBSD has a gnugetopt library for this:
660 GNUGETOPT_LIBS=""
661 AC_CHECK_FUNC(getopt_long,, [
662   AC_CHECK_LIB([gnugetopt],[getopt_long], [
663     GNUGETOPT_LIBS="-lgnugetopt"
664   ])
666 AC_SUBST(GNUGETOPT_LIBS)
668 AC_CHECK_LIB(m,cos,[
669   LIBM="-lm"
670 ], [
671   LIBM=""
673 AC_SUBST(LIBM)
675 AC_CHECK_LIB(m,lrintf, [
676   AC_DEFINE(HAVE_LRINTF, 1, [Define to 1 if you have the lrintf function])
677   VLC_ADD_LIBS([skins2],[-lm])
679 AC_CHECK_LIB(m,nanf,
680   AC_DEFINE(HAVE_NANF, 1, [Define to 1 if you have the NANF function])
683 dnl Check for dynamic plugins
684 LIBDL=""
685 have_dynamic_objects="no"
686 VLC_SAVE_FLAGS
687 AC_SEARCH_LIBS(dlsym, [dl svld], [
688   AS_IF([test "$ac_cv_search_dlsym" != "none required"], [
689     LIBDL="$ac_cv_search_dlsym"
690   ])
691   have_dynamic_objects="yes"
693 VLC_RESTORE_FLAGS
695 # Windows
696 AS_IF([test "${SYS}" = "mingw32"], [
697   LIBDL=""
698   have_dynamic_objects="yes" #assume we can use shared objects
701 AS_IF([test "${enable_shared}" = "no"], [
702   have_dynamic_objects=no
704 AM_CONDITIONAL(HAVE_DYNAMIC_PLUGINS, [test "${have_dynamic_objects}" != "no"])
706 AC_SUBST(LIBDL)
708 dnl Check for thread library
709 LIBPTHREAD=""
710 AS_IF([test "${SYS}" != "mingw32"], [
711   VLC_SAVE_FLAGS
712   LIBS=""
713   AC_SEARCH_LIBS(pthread_rwlock_init, pthread pthreads c_r, [
714     AS_IF([test "$ac_cv_search_pthread_rwlock_init" != "none required"], [
715       LIBPTHREAD="$ac_cv_search_pthread_rwlock_init"
716     ])
717   ])
718   VLC_RESTORE_FLAGS
720   AC_CHECK_LIB(rt, clock_nanosleep, [
721     VLC_ADD_LIBS([libvlccore],[-lrt])
722   ], [
723     AC_CHECK_FUNC(nanosleep,,[
724       AC_CHECK_LIB(rt,nanosleep, [
725         VLC_ADD_LIBS([libvlccore],[-lrt])
726       ], [
727         AC_CHECK_LIB(posix4,nanosleep, [
728           VLC_ADD_LIBS([libvlccore],[-lposix4])
729         ])
730       ])
731     ])
732     dnl HP/UX port
733     AC_CHECK_LIB(rt,sem_init, [VLC_ADD_LIBS([libvlccore],[-lrt])])
734   ])
736 AC_SUBST(LIBPTHREAD)
739 dnl Check for headers
742 dnl  POSIX
743 AC_CHECK_HEADERS([arpa/inet.h pthread.h search.h sys/shm.h sys/socket.h])
744 AC_CHECK_HEADERS([net/if.h], [], [],
746 #include <sys/types.h>
747 #include <sys/socket.h>
749 AC_CHECK_HEADER([syslog.h], [have_syslog="yes"], [have_syslog="no"])
750 AM_CONDITIONAL([HAVE_SYSLOG], [test "$have_syslog" = "yes"])
752 dnl  BSD
753 AC_CHECK_HEADERS([netinet/udplite.h sys/param.h sys/mount.h])
755 dnl  GNU/Linux
756 AC_CHECK_HEADERS([getopt.h linux/dccp.h linux/magic.h mntent.h sys/eventfd.h])
758 dnl  MacOS
759 AC_CHECK_HEADERS([xlocale.h])
761 dnl LP64 and LLP64 architectures had better define ssize_t by themselves...
762 AH_TEMPLATE(ssize_t, [Define to `int' if <stddef.h> does not define.]) dnl ` (fix VIM syntax highlight
763 AC_CHECK_TYPE(ssize_t,, [
764   AC_DEFINE(ssize_t, int)
767 dnl It seems that autoconf detects pkg-config only during the first
768 dnl PKG_CHECK_MODULES from configure.ac - which makes sense. But in our case,
769 dnl it is nested within a conditional block, so it was not working right.
770 dnl Make PKG_CONFIG_PATH precious so that it appears in the help and get saved
771 AC_ARG_VAR(PKG_CONFIG_PATH,
772        [Paths where to find .pc not at the default location])
773 PKG_PROG_PKG_CONFIG()
775 dnl On some OS we need static linking
776 AS_IF([test -n "${PKG_CONFIG}" ],[
777     AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "darwin" -o "${SYS}" = "os2" ],[
778         PKG_CONFIG="${PKG_CONFIG} --static"
779     ])
784 dnl Check for zlib.h and -lz along with system -lminizip if available
786 AC_CHECK_HEADERS(zlib.h, [ have_zlib=yes ], [ have_zlib=no ])
787 AM_CONDITIONAL(HAVE_ZLIB, [ test "${have_zlib}" = "yes" ])
788 if test "${have_zlib}" = "yes"
789 then
790   VLC_ADD_LIBS([skins2 sap unzip zip],[-lz])
791   PKG_CHECK_MODULES([MINIZIP], [minizip] , [ have_minizip=yes ], [
792     AC_CHECK_HEADERS([unzip.h], [
793       have_minizip=yes
794       MINIZIP_LIBS="-lminizip -lz"
795     ], [
796       VLC_ADD_CPPFLAGS([skins2], [-I\\\$(top_srcdir)/modules/access/zip/unzip])
797       VLC_ADD_LIBS([skins2], [\\\$(top_builddir)/modules/libunzip.la])
798       have_minizip=no
799     ])
800   ])
801   VLC_ADD_CPPFLAGS([skins2],[$MINIZIP_CFLAGS])
802   VLC_ADD_LIBS([skins2],[$MINIZIP_LIBS])
804 AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
808 dnl Domain name i18n support via GNU libidn
810 PKG_CHECK_MODULES([IDN], [libidn], [
811   have_libidn="yes"
812   AC_DEFINE([HAVE_IDN], 1, [Define to 1 if you have GNU libidn.])
813 ], [
814   have_libidn="no"
818 dnl Check for dbus
819 AC_ARG_ENABLE(dbus,
820   [AS_HELP_STRING([--enable-dbus],
821     [compile D-Bus message bus support (default enabled)])])
822 have_dbus="no"
823 AS_IF([test "${enable_dbus}" != "no"], [
824   PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.6.0], [
825     have_dbus="yes"
826   ], [
827     AS_IF([test -n "${enable_dbus}"], [
828       AC_MSG_ERROR([${DBUS_PKG_ERRORS}.])
829     ], [
830       AC_MSG_WARN([${DBUS_PKG_ERRORS}.])
831     ])
832   ])
834 AM_CONDITIONAL([HAVE_DBUS], [test "${have_dbus}" = "yes"])
837 dnl Check for systemd
838 PKG_CHECK_MODULES([SYSTEMD], [libsystemd], [
839   have_systemd="yes"
840 ], [
841   AC_MSG_WARN([${SYSTEMD_PKG_ERRORS}.])
843 AM_CONDITIONAL([HAVE_SYSTEMD], [test "${have_systemd}" = "yes"])
846 dnl Check for ntohl, etc.
847 VLC_SAVE_FLAGS
848 CFLAGS="${CFLAGS} -Wall -Werror"
849 AC_CACHE_CHECK([for ntohl in sys/param.h],
850     [ac_cv_c_ntohl_sys_param_h],
851     [     AC_TRY_COMPILE([#include <sys/param.h>],
852         [int meuh; ntohl(meuh);],
853         ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
854 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
855     AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
857 VLC_RESTORE_FLAGS
859 EXTEND_HELP_STRING([Optimization options:])
861 dnl  Compiler warnings
864 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])
865 RDC_PROG_CC_FLAGS([-pipe])
866 AC_LANG_PUSH([C++])
867 RDC_PROG_CXX_WFLAGS([all extra sign-compare undef pointer-arith volatile-register-var])
868 AC_LANG_POP([C++])
871 dnl  Debugging mode
873 AC_ARG_ENABLE(debug,
874   [AS_HELP_STRING([--enable-debug],
875     [build with run-time assertions (default disabled)])],,
876   [enable_debug="no"])
877 AH_TEMPLATE(NDEBUG,
878             [Define to 1 if debug code should NOT be compiled])
879 AS_IF([test "${enable_debug}" != "no"], [
880   AC_CHECK_HEADERS([valgrind/valgrind.h])
881 ], [
882   AC_DEFINE(NDEBUG)
886 dnl  Profiling
888 AC_ARG_ENABLE(gprof,
889   [AS_HELP_STRING([--enable-gprof],[profile with gprof (default disabled)])],,
890   [enable_gprof="no"])
891 AS_IF([test "${enable_gprof}" != "no"], [
892   CFLAGS="${CFLAGS} -pg"
893   CXXFLAGS="${CXXFLAGS} -pg"
894   OBJCFLAGS="${OBJCFLAGS} -pg"
895   LDFLAGS="${LDFLAGS} -pg"
898 AC_ARG_ENABLE(cprof,
899   [AS_HELP_STRING([--enable-cprof],[profile with cprof (default disabled)])],,
900   [enable_cprof="no"])
901 AS_IF([test "${enable_gprof}" != "no"], [
902   CFLAGS="${CFLAGS} -finstrument-functions"
903   CXXFLAGS="${CXXFLAGS} -finstrument-functions"
904   OBJCFLAGS="${OBJCFLAGS} -finstrument-functions"
905   LDFLAGS="${LDFLAGS} -finstrument-functions"
909 dnl  Test coverage
911 AC_ARG_ENABLE(coverage,
912   [AS_HELP_STRING([--enable-coverage],
913     [build for test coverage (default disabled)])],,
914   [enable_coverage="no"])
915 AS_IF([test "${enable_coverage}" != "no"], [
916   CFLAGS="-fprofile-arcs -ftest-coverage ${CFLAGS}"
917   CXXFLAGS="-fprofile-arcs -ftest-coverage ${CXXFLAGS}"
918   LDFLAGS="-lgcov ${LDFLAGS}"
921 AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "os2"], [
922   VLC_SAVE_FLAGS
923   CFLAGS="${CFLAGS} -fvisibility=hidden"
924   CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
925   OBJCFLAGS="${OBJCFLAGS} -fvisibility=hidden"
926   AC_CACHE_CHECK([if $CC accepts -fvisibility=hidden],
927                  [ac_cv_c_visibility_hidden], [
928     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
929       ac_cv_c_visibility_hidden=yes
930     ], [
931       ac_cv_c_visibility_hidden=no
932     ])
933   ])
934   AS_IF([test "${ac_cv_c_visibility_hidden}" = "no"], [VLC_RESTORE_FLAGS])
939 dnl  Enable/disable optimizations
941 AC_ARG_ENABLE(optimizations,
942   [AS_HELP_STRING([--disable-optimizations],
943     [disable compiler optimizations (default enabled)])],,
944   [enable_optimizations="yes"])
946 dnl Check for various optimization flags
947 AS_IF([test "${enable_optimizations}" != "no"], [
949   dnl -O3 only in production builds
950   AS_IF([test "${enable_debug}" = "no"], [
951     VLC_SAVE_FLAGS
952     CFLAGS="${CFLAGS} -O3"
953     CXXFLAGS="${CXXFLAGS} -O3"
954     OBJCFLAGS="${OBJCFLAGS} -O3"
955     AC_CACHE_CHECK([if $CC accepts -O3],  [ac_cv_c_o3], [
956       AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
957         ac_cv_c_o3=yes
958       ], [
959         ac_cv_c_o3=no
960       ])
961     ])
962     AS_IF([test "${ac_cv_c_o3}" = "no"], [VLC_RESTORE_FLAGS])
963   ])
965   dnl Check for -ffast-math
966   VLC_SAVE_FLAGS
967   CFLAGS="${CFLAGS} -ffast-math"
968   CXXFLAGS="${CXXFLAGS} -ffast-math"
969   OBJCFLAGS="${OBJCFLAGS} -ffast-math"
970   AC_CACHE_CHECK([if $CC accepts -ffast-math], [ac_cv_c_fast_math], [
971     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
972       ac_cv_c_fast_math=yes
973     ], [
974       ac_cv_c_fast_math=no
975     ])
976   ])
977   AS_IF([test "${ac_cv_c_fast_math}" = "no"], [VLC_RESTORE_FLAGS])
978   AH_BOTTOM([
979 #ifndef __FAST_MATH__
980 # ifndef _MSC_VER
981 #  pragma STDC FENV_ACCESS OFF
982 #  pragma STDC FP_CONTRACT ON
983 # else
984 #  pragma fenv_access(off)
985 #  pragma fp_contract(on)
986 # endif
987 #endif
990   dnl Check for -funroll-loops
991   VLC_SAVE_FLAGS
992   CFLAGS="${CFLAGS} -funroll-loops"
993   CXXFLAGS="${CXXFLAGS} -funroll-loops"
994   OBJCFLAGS="${OBJCFLAGS} -funroll-loops"
995   AC_CACHE_CHECK([if $CC accepts -funroll-loops], [ac_cv_c_unroll_loops], [
996     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
997       ac_cv_c_unroll_loops=yes
998     ], [
999       ac_cv_c_unroll_loops=no
1000     ])
1001   ])
1002   AS_IF([test "${ac_cv_c_unroll_loops}" = "no"], [VLC_RESTORE_FLAGS])
1004   AS_IF([test "$enable_debug" = "no"], [
1005     dnl Check for -fomit-frame-pointer
1006     VLC_SAVE_FLAGS
1007     CFLAGS="${CFLAGS} -fomit-frame-pointer"
1008     CXXFLAGS="${CXXFLAGS} -fomit-frame-pointer"
1009     OBJCFLAGS="${OBJCFLAGS} -fomit-frame-pointer"
1010     AC_CACHE_CHECK([if $CC accepts -fomit-frame-pointer],
1011       [ac_cv_c_omit_frame_pointer], [
1012       AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
1013         ac_cv_c_omit_frame_pointer=yes
1014       ], [
1015         ac_cv_c_omit_frame_pointer=no
1016       ])
1017     ])
1018     AS_IF([test "${ac_cv_c_omit_frame_pointer}" = "no"], [VLC_RESTORE_FLAGS])
1019   ])
1022 VLC_SAVE_FLAGS
1023 LDFLAGS="${LDFLAGS} -Wl,-Bsymbolic"
1024 AC_CACHE_CHECK([if linker supports -Bsymbolic], [ac_cv_ld_bsymbolic], [
1025   AC_TRY_LINK([],, [
1026     ac_cv_ld_bsymbolic="-Wl,-Bsymbolic"
1027   ], [
1028     ac_cv_ld_bsymbolic=""
1029   ])
1031 VLC_RESTORE_FLAGS
1032 SYMBOLIC_LDFLAGS="${ac_cv_ld_bsymbolic}"
1033 AC_SUBST(SYMBOLIC_LDFLAGS)
1035 dnl Checks for __attribute__(aligned()) directive
1036 VLC_SAVE_FLAGS
1037 CFLAGS="${CFLAGS} -Werror"
1038 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
1039     [ac_cv_c_attribute_aligned],
1040     [ac_cv_c_attribute_aligned=0
1041     for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
1042         AC_TRY_COMPILE([],
1043         [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
1044         [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
1045     done])
1046 VLC_RESTORE_FLAGS
1047 if test "${ac_cv_c_attribute_aligned}" != "0"; then
1048     AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
1049         [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
1052 dnl Check for __attribute__((packed))
1053 AC_CACHE_CHECK([for __attribute__((packed))],
1054   [ac_cv_c_attribute_packed],
1055   [ac_cv_c_attribute_packed=no
1056    AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b; (void)b;],
1057                     [ac_cv_c_attribute_packed=yes])])
1058 if test "${ac_cv_c_attribute_packed}" != "no"; then
1059   AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
1063 dnl  Check the CPU
1065 case "${host_cpu}" in
1066   "")
1067     ARCH=unknown
1068     ;;
1069   *)
1070     ARCH="${host_cpu}"
1071     ;;
1072 esac
1074 dnl Check for backtrace() support
1075 AC_CHECK_HEADERS(execinfo.h)
1076 AC_CHECK_FUNCS(backtrace)
1079 dnl  default modules
1081 ALIASES="${ALIASES} cvlc rvlc"
1084 dnl  Accelerated modules
1087 dnl  Check for fully working MMX intrinsics
1088 dnl  We need support for -mmmx, we need <mmintrin.h>, and we also need a
1089 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1090 AC_ARG_ENABLE(mmx,
1091   [AS_HELP_STRING([--disable-mmx],
1092     [disable MMX optimizations (default auto)])],,[
1093   case "${host_cpu}" in
1094     i?86|x86_64)
1095       enable_mmx="yes"
1096       ;;
1097     *)
1098       enable_mmx="no"
1099       ;;
1100   esac
1102 have_mmx="no"
1103 have_mmxext="no"
1104 AS_IF([test "${enable_mmx}" != "no"], [
1105   ARCH="${ARCH} mmx"
1106   VLC_SAVE_FLAGS
1107   CFLAGS="${CFLAGS} -mmmx"
1108   AC_CACHE_CHECK([if $CC groks MMX intrinsics], [ac_cv_c_mmx_intrinsics], [
1109     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1110 [#include <mmintrin.h>
1111 #include <stdint.h>
1112 uint64_t frobzor;]], [
1113 [__m64 a, b, c;
1114 a = b = c = (__m64)frobzor;
1115 a = _mm_slli_pi16(a, 3);
1116 a = _mm_adds_pi16(a, b);
1117 c = _mm_srli_pi16(c, 8);
1118 c = _mm_slli_pi16(c, 3);
1119 b = _mm_adds_pi16(b, c);
1120 a = _mm_unpacklo_pi8(a, b);
1121 frobzor = (uint64_t)a;]])], [
1122       ac_cv_c_mmx_intrinsics=yes
1123     ], [
1124       ac_cv_c_mmx_intrinsics=no
1125     ])
1126   ])
1127   VLC_RESTORE_FLAGS
1128   AS_IF([test "${ac_cv_c_mmx_intrinsics}" != "no"], [
1129     AC_DEFINE(HAVE_MMX_INTRINSICS, 1, [Define to 1 if MMX intrinsics are available.])
1130   ])
1132   VLC_SAVE_FLAGS
1133   CFLAGS="${CFLAGS} -mmmx"
1134   AC_CACHE_CHECK([if $CC groks MMX inline assembly], [ac_cv_mmx_inline], [
1135     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1136 void *p;
1137 asm volatile("packuswb %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1139     ], [
1140       ac_cv_mmx_inline=yes
1141     ], [
1142       ac_cv_mmx_inline=no
1143     ])
1144   ])
1145   AS_IF([test "${ac_cv_mmx_inline}" != "no"], [
1146     AC_DEFINE(CAN_COMPILE_MMX, 1, [Define to 1 inline MMX assembly is available.])
1147     have_mmx="yes"
1148   ])
1150   AC_CACHE_CHECK([if $CC groks MMX EXT inline assembly],
1151                  [ac_cv_mmxext_inline], [
1152     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1153 void *p;
1154 asm volatile("maskmovq %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1156     ], [
1157       ac_cv_mmxext_inline=yes
1158     ], [
1159       ac_cv_mmxext_inline=no
1160     ])
1161   ])
1162   VLC_RESTORE_FLAGS
1163   AS_IF([test "${ac_cv_mmxext_inline}" != "no"], [
1164     AC_DEFINE(CAN_COMPILE_MMXEXT, 1, [Define to 1 if MMX EXT inline assembly is available.])
1165     have_mmxext="yes"
1166   ])
1168 AM_CONDITIONAL([HAVE_MMX], [test "${have_mmx}" = "yes"])
1169 AM_CONDITIONAL([HAVE_MMXEXT], [test "${have_mmxext}" = "yes"])
1171 dnl  Check for fully workin SSE2 intrinsics
1172 dnl  We need support for -mmmx, we need <emmintrin.h>, and we also need a
1173 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1174 AC_ARG_ENABLE(sse,
1175   [AS_HELP_STRING([--disable-sse],
1176     [disable SSE (1-4) optimizations (default auto)])],, [
1177   case "${host_cpu}" in
1178     i?86|x86_64)
1179       enable_sse=yes
1180       ;;
1181     *)
1182       enable_sse=no
1183       ;;
1184   esac
1186 have_sse2="no"
1187 AS_IF([test "${enable_sse}" != "no"], [
1188   ARCH="${ARCH} sse sse2"
1190   VLC_SAVE_FLAGS
1191   CFLAGS="${CFLAGS} -msse2"
1192   AC_CACHE_CHECK([if $CC groks SSE2 intrinsics], [ac_cv_c_sse2_intrinsics], [
1193     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1194 [#include <emmintrin.h>
1195 #include <stdint.h>
1196 uint64_t frobzor;]], [
1197 [__m128i a, b, c;
1198 a = b = c = _mm_set1_epi64((__m64)frobzor);
1199 a = _mm_slli_epi16(a, 3);
1200 a = _mm_adds_epi16(a, b);
1201 c = _mm_srli_epi16(c, 8);
1202 c = _mm_slli_epi16(c, 3);
1203 b = _mm_adds_epi16(b, c);
1204 a = _mm_unpacklo_epi8(a, b);
1205 frobzor = (uint64_t)_mm_movepi64_pi64(a);]])], [
1206       ac_cv_c_sse2_intrinsics=yes
1207     ], [
1208       ac_cv_c_sse2_intrinsics=no
1209     ])
1210   ])
1211   VLC_RESTORE_FLAGS
1212   AS_IF([test "${ac_cv_c_sse2_intrinsics}" != "no"], [
1213     AC_DEFINE(HAVE_SSE2_INTRINSICS, 1, [Define to 1 if SSE2 intrinsics are available.])
1214   ])
1216   VLC_SAVE_FLAGS
1217   CFLAGS="${CFLAGS} -msse"
1218   AC_CACHE_CHECK([if $CC groks SSE inline assembly], [ac_cv_sse_inline], [
1219     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1220 void *p;
1221 asm volatile("xorps %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1223     ], [
1224       ac_cv_sse_inline=yes
1225     ], [
1226       ac_cv_sse_inline=no
1227     ])
1228   ])
1230   AS_IF([test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"], [
1231     AC_DEFINE(CAN_COMPILE_SSE, 1, [Define to 1 if SSE inline assembly is available.])
1232   ])
1234   AC_CACHE_CHECK([if $CC groks SSE2 inline assembly], [ac_cv_sse2_inline], [
1235     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1236 void *p;
1237 asm volatile("punpckhqdq %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1239     ], [
1240       ac_cv_sse2_inline=yes
1241     ], [
1242       ac_cv_sse2_inline=no
1243     ])
1244   ])
1245   AS_IF([test "${ac_cv_sse2_inline}" != "no" -a "${SYS}" != "solaris"], [
1246     AC_DEFINE(CAN_COMPILE_SSE2, 1, [Define to 1 if SSE2 inline assembly is available.])
1247     have_sse2="yes"
1248   ])
1250   # SSE3
1251   AC_CACHE_CHECK([if $CC groks SSE3 inline assembly], [ac_cv_sse3_inline], [
1252     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1253 void *p;
1254 asm volatile("movsldup %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1256     ], [
1257       ac_cv_sse3_inline=yes
1258     ], [
1259       ac_cv_sse3_inline=no
1260     ])
1261   ])
1263   AS_IF([test "${ac_cv_sse3_inline}" != "no"], [
1264     AC_DEFINE(CAN_COMPILE_SSE3, 1, [Define to 1 if SSE3 inline assembly is available.]) ])
1265   # SSSE3
1266   AC_CACHE_CHECK([if $CC groks SSSE3 inline assembly], [ac_cv_ssse3_inline], [
1267     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1268 void *p;
1269 asm volatile("pabsw %%xmm0,%%xmm0"::"r"(p):"xmm0");
1271     ], [
1272       ac_cv_ssse3_inline=yes
1273     ], [
1274       ac_cv_ssse3_inline=no
1275     ])
1276   ])
1278   AS_IF([test "${ac_cv_ssse3_inline}" != "no"], [
1279     AC_DEFINE(CAN_COMPILE_SSSE3, 1, [Define to 1 if SSSE3 inline assembly is available.]) ])
1281   # SSE4.1
1282   AC_CACHE_CHECK([if $CC groks SSE4.1 inline assembly],
1283                  [ac_cv_sse4_1_inline], [
1284     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1285 void *p;
1286 asm volatile("pmaxsb %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1288     ], [
1289       ac_cv_sse4_1_inline=yes
1290     ], [
1291       ac_cv_sse4_1_inline=no
1292     ])
1293   ])
1295   AS_IF([test "${ac_cv_sse4_1_inline}" != "no"], [
1296     AC_DEFINE(CAN_COMPILE_SSE4_1, 1, [Define to 1 if SSE4_1 inline assembly is available.]) ])
1298   # SSE4.2
1299   AC_CACHE_CHECK([if $CC groks SSE4.2 inline assembly],
1300                  [ac_cv_sse4_2_inline], [
1301     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1302 void *p;
1303 asm volatile("pcmpgtq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1305     ], [
1306       ac_cv_sse4_2_inline=yes
1307     ], [
1308       ac_cv_sse4_2_inline=no
1309     ])
1310   ])
1312   AS_IF([test "${ac_cv_sse4_2_inline}" != "no"], [
1313     AC_DEFINE(CAN_COMPILE_SSE4_2, 1, [Define to 1 if SSE4_2 inline assembly is available.]) ])
1315   # SSE4A
1316   AC_CACHE_CHECK([if $CC groks SSE4A inline assembly], [ac_cv_sse4a_inline], [
1317     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1318 void *p;
1319 asm volatile("insertq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1321     ], [
1322       ac_cv_sse4a_inline=yes
1323     ], [
1324       ac_cv_sse4a_inline=no
1325     ])
1326   ])
1327   VLC_RESTORE_FLAGS
1328   AS_IF([test "${ac_cv_sse4a_inline}" != "no"], [
1329     AC_DEFINE(CAN_COMPILE_SSE4A, 1, [Define to 1 if SSE4A inline assembly is available.]) ])
1331 AM_CONDITIONAL([HAVE_SSE2], [test "$have_sse2" = "yes"])
1333 VLC_SAVE_FLAGS
1334 CFLAGS="${CFLAGS} -mmmx"
1335 have_3dnow="no"
1336 AC_CACHE_CHECK([if $CC groks 3D Now! inline assembly], [ac_cv_3dnow_inline], [
1337   AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1338 void *p;
1339 asm volatile("pfadd %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1341   ], [
1342     ac_cv_3dnow_inline=yes
1343   ], [
1344     ac_cv_3dnow_inline=no
1345   ])
1347 VLC_RESTORE_FLAGS
1348 AS_IF([test "${ac_cv_3dnow_inline}" != "no"], [
1349   AC_DEFINE(CAN_COMPILE_3DNOW, 1,
1350             [Define to 1 if 3D Now! inline assembly is available.])
1351   have_3dnow="yes"
1353 AM_CONDITIONAL([HAVE_3DNOW], [test "$have_3dnow" = "yes"])
1356 AC_ARG_ENABLE(neon,
1357   [AS_HELP_STRING([--disable-neon],
1358     [disable NEON optimizations (default auto)])],, [
1359   AS_IF([test "${host_cpu}" = "arm"], [enable_neon="yes"] ,[enable_neon="no"])
1361 AS_IF([test "${enable_neon}" != "no"], [
1362   VLC_SAVE_FLAGS
1363   CFLAGS="${CFLAGS} -mfpu=neon -mhard-float"
1364   AC_CACHE_CHECK([if $CCAS groks ARM NEON assembly], [ac_cv_arm_neon], [
1365     AC_COMPILE_IFELSE([
1366       AC_LANG_PROGRAM(,[[
1367 asm volatile("vqmovun.s64 d0, q1":::"d0");
1369     ], [
1370       ac_cv_arm_neon="yes"
1371     ], [
1372       ac_cv_arm_neon="no"
1373     ])
1374   ])
1375   VLC_RESTORE_FLAGS
1377 AM_CONDITIONAL(HAVE_NEON, [test "${ac_cv_arm_neon}" = "yes"])
1380 AC_ARG_ENABLE(altivec,
1381   [AS_HELP_STRING([--disable-altivec],
1382     [disable AltiVec optimizations (default auto)])],, [
1383   AS_CASE("${host_cpu}", [powerpc*],
1384         [enable_altivec=yes], [enable_altivec=no])
1386 have_altivec="no"
1387 ALTIVEC_CFLAGS=""
1388 AS_IF([test "${enable_altivec}" = "yes"], [
1389   ARCH="${ARCH} altivec";
1390   VLC_SAVE_FLAGS
1391   AC_CACHE_CHECK([if $CC groks AltiVec inline assembly],
1392     [ac_cv_altivec_inline],
1393     [AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1394          ac_cv_altivec_inline="yes",
1395          [CFLAGS="${CFLAGS} -Wa,-maltivec"
1396           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1397             [ac_cv_altivec_inline="-Wa,-maltivec"],
1398             ac_cv_altivec_inline=no)
1399          ])])
1400   VLC_RESTORE_FLAGS
1401   AS_IF([test "${ac_cv_altivec_inline}" != "no"], [
1402     AC_DEFINE(CAN_COMPILE_ALTIVEC, 1,
1403               [Define to 1 if AltiVec inline assembly is available.])
1404     AS_IF([test "${ac_cv_altivec_inline}" != "yes"], [
1405       ALTIVEC_CFLAGS="${ac_cv_altivec_inline}"
1406       VLC_ADD_CFLAGS([libvlccore],[${ac_cv_altivec_inline}])
1407     ])
1408     have_altivec="yes"
1409   ])
1411   VLC_SAVE_FLAGS
1412   AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1413   [ac_cv_c_altivec], [
1414     CFLAGS="${CFLAGS} -maltivec"
1415     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1416 [#include <altivec.h>]], [
1417 [vec_ld(0, (unsigned char *)0);]])], [
1418       ac_cv_c_altivec="-maltivec"
1419     ], [
1420       ac_cv_c_altivec="no"
1421     ])
1422   ])
1423   VLC_RESTORE_FLAGS
1424   AS_IF([test "${ac_cv_c_altivec}" != "no"], [
1425     CPPFLAGS="${CPPFLAGS} ${ac_cv_c_altivec}"
1426     AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, [Define to 1 if C AltiVec extensions are available.])
1427     VLC_ADD_CFLAGS([libvlccore],[${ac_cv_c_altivec}])
1428     ALTIVEC_CFLAGS="$ALTIVEC_FLAGS ${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}"
1429     VLC_ADD_CFLAGS([deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1430     have_altivec="yes"
1431   ])
1432   AC_CHECK_HEADERS(altivec.h)
1434   VLC_SAVE_FLAGS
1435   LDFLAGS="${LDFLAGS} -Wl,-framework,vecLib"
1436   AC_CACHE_CHECK([if linker needs -framework vecLib],
1437     [ac_cv_ld_altivec],
1438     [AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)])
1439   VLC_RESTORE_FLAGS
1440   AS_IF([test "${ac_cv_ld_altivec}" != "no"], [
1441     VLC_ADD_LIBS([libvlccore],[-Wl,-framework,vecLib])
1442   ])
1444 AC_SUBST(ALTIVEC_CFLAGS)
1445 AM_CONDITIONAL([HAVE_ALTIVEC], [test "$have_altivec" = "yes"])
1448 dnl  Memory usage
1450 AC_ARG_ENABLE(optimize-memory,
1451   [AS_HELP_STRING([--enable-optimize-memory],
1452     [optimize memory usage over performance])])
1453 if test "${enable_optimize_memory}" = "yes"; then
1454   AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1458 dnl Allow running as root (useful for people running on embedded platforms)
1460 AC_ARG_ENABLE(run-as-root,
1461   [AS_HELP_STRING([--enable-run-as-root],
1462     [allow running VLC as root (default disabled)])])
1463 AS_IF([test "${enable_run_as_root}" = "yes"],[
1464     AC_DEFINE(ALLOW_RUN_AS_ROOT, 1,
1465               [Define to 1 to allow running VLC as root (uid 0).])
1469 dnl Stream output
1471 AC_ARG_ENABLE(sout,
1472   [AS_HELP_STRING([--disable-sout],
1473     [disable streaming output (default enabled)])])
1474 AS_IF([test "${enable_sout}" != "no"], [
1475   AC_DEFINE(ENABLE_SOUT, 1, [Define to 1 for stream output support.])
1477 AM_CONDITIONAL(ENABLE_SOUT, [test "${enable_sout}" != "no"])
1479 dnl Lua modules
1480 AC_ARG_ENABLE(lua,
1481   [AS_HELP_STRING([--disable-lua],
1482     [disable LUA scripting support (default enabled)])])
1483 if test "${enable_lua}" != "no"
1484 then
1485   PKG_CHECK_MODULES(LUA, lua5.2,
1486     [ have_lua=yes ],
1487     [
1488     AC_MSG_WARN([${LUA_PKG_ERRORS}, trying lua 5.1 instead])
1490     PKG_CHECK_MODULES(LUA, lua5.1,
1491       [ have_lua=yes ],
1492       [
1493       AC_MSG_WARN([${LUA_PKG_ERRORS}, trying lua >= 5.1 instead])
1494       PKG_CHECK_MODULES(LUA, lua >= 5.1,
1495         [ have_lua=yes ],
1496         [
1497           AC_MSG_WARN([${LUA_PKG_ERRORS}, trying manual detection instead])
1498           have_lua=yes
1499           AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
1500             [],
1501             [ have_lua=no ] )
1502           AC_CHECK_LIB(  lua5.2 , luaL_newstate,
1503             [LUA_LIBS="-llua5.2"],
1504           AC_CHECK_LIB( lua5.1 , luaL_newstate,
1505             [LUA_LIBS="-llua5.1"],
1506             AC_CHECK_LIB( lua51 , luaL_newstate,
1507               [LUA_LIBS="-llua51"],
1508               AC_CHECK_LIB( lua , luaL_newstate,
1509                 [LUA_LIBS="-llua"],
1510                 [ have_lua=no
1511                 ], [-lm])
1512             )))
1513         ])
1514       ])
1515     ])
1516   if test "x${have_lua}" != "xyes" ;  then
1517       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.])
1518   fi
1519   AC_ARG_VAR([LUAC], [LUA byte compiler])
1520   AC_CHECK_PROGS(LUAC, [${LUAC} luac], [false])
1521   AS_IF([test "${LUAC}" = "false"], [
1522     AC_MSG_ERROR([Could not find the LUA byte compiler.])
1523   ])
1524   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], [
1525     AC_MSG_ERROR([You need 32-bits luac when using using lua from contrib.])
1526   ])
1528 AM_CONDITIONAL(BUILD_LUA, [test "${have_lua}" = "yes"])
1532 dnl HTTP daemon
1534 AC_ARG_ENABLE(httpd,
1535   [AS_HELP_STRING([--disable-httpd],
1536     [disable the built-in HTTP server (default enabled)])])
1537 if test "${enable_httpd}" != "no"
1538 then
1539   AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP daemon support)
1541 AM_CONDITIONAL(BUILD_HTTPD, [test "${enable_httpd}" != "no"])
1545 dnl VideoLAN manager
1547 AC_ARG_ENABLE(vlm,
1548   [AS_HELP_STRING([--disable-vlm],
1549     [disable the stream manager (default enabled)])],,
1550   [enable_vlm="${enable_sout}"])
1551 AS_IF([test "${enable_vlm}" != "no"], [
1552   AS_IF([test "${enable_sout}" = "no"], [
1553     AC_MSG_ERROR([VLM requires the stream output. Do not use --disable-sout.])
1554   ])
1555   AC_DEFINE(ENABLE_VLM, 1, [Define if you want the VideoLAN manager support])
1557 AM_CONDITIONAL([ENABLE_VLM], [test "${enable_vlm}" != "no"])
1561 dnl Addons manager storage and repositories modules
1563 AC_ARG_ENABLE(addonmanagermodules,
1564   [AS_HELP_STRING([--disable-addonmanagermodules],
1565     [disable the addons manager modules (default enabled)])])
1566 if test "${enable_addonmanagermodules}" != "no"
1567 then
1568   AC_DEFINE(ENABLE_ADDONMANAGERMODULES, 1, [Define if you want the addons manager modules])
1570 AM_CONDITIONAL([ENABLE_ADDONMANAGERMODULES], [test "${enable_addonmanagermodules}" != "no"])
1574 dnl  Input plugins
1577 EXTEND_HELP_STRING([Input plugins:])
1580 dnl  libarchive access module
1582 PKG_ENABLE_MODULES_VLC([ARCHIVE], [access_archive], [libarchive >= 3.1.0], (libarchive support), [auto])
1585 dnl  live555 input
1587 AC_ARG_ENABLE(live555,
1588   [AS_HELP_STRING([--enable-live555],
1589     [enable RTSP input through live555 (default enabled)])])
1591 AS_IF([test "${enable_live555}" != "no" -a -n "${CXX}"], [
1592   PKG_CHECK_MODULES(LIVE555, live555, [
1593     VLC_ADD_PLUGIN([live555])
1594     VLC_ADD_CXXFLAGS([live555], [$LIVE555_CFLAGS])
1595     VLC_ADD_LIBS([live555],[$LIVE555_LIBS])
1596   ], [
1597     AC_MSG_WARN([${LIVE555_PKG_ERRORS}.])
1599     AC_LANG_PUSH(C++)
1600     VLC_SAVE_FLAGS
1602     dnl detect include paths
1603     AS_IF([test -f "${CONTRIB_DIR}/include/UsageEnvironment.hh"], [
1604       CPPFLAGS_live555="-I${CONTRIB_DIR}/include/liveMedia -I${CONTRIB_DIR}/include/groupsock -I${CONTRIB_DIR}/include/BasicUsageEnvironment -I${CONTRIB_DIR}/include/UsageEnvironment"
1605     ], [
1606       AS_IF([test "${SYS}" != "os2"], [
1607         LIVE555_PREFIX=${LIVE555_PREFIX-"/usr"}
1608         CPPFLAGS_live555="-I${LIVE555_PREFIX}/include/liveMedia -I${LIVE555_PREFIX}/include/groupsock -I${LIVE555_PREFIX}/include/BasicUsageEnvironment -I${LIVE555_PREFIX}/include/UsageEnvironment"
1609       ], [
1610         LIVE555_PREFIX=${LIVE555_PREFIX-"/usr/lib/live"}
1611         CPPFLAGS_live555="-I${LIVE555_PREFIX}/liveMedia/include -I${LIVE555_PREFIX}/groupsock/include -I${LIVE555_PREFIX}/BasicUsageEnvironment/include -I${LIVE555_PREFIX}/UsageEnvironment/include"
1612         LDFLAGS_live555="-L${LIVE555_PREFIX}/liveMedia -L${LIVE555_PREFIX}/groupsock -L${LIVE555_PREFIX}/BasicUsageEnvironment -L${LIVE555_PREFIX}/UsageEnvironment"
1613       ])
1614     ])
1616     dnl CPP Flags
1617     AS_IF([test "${SYS}" = "solaris"], [
1618       CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS"
1619     ])
1620     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}"
1621     LDFLAGS="${LDFLAGS} ${LDFLAGS_live555}"
1623     dnl version check
1624     AC_CACHE_CHECK([for live555 version 1324598400 or later], [ac_cv_live555], [
1625       AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1626 [#include <liveMedia_version.hh>
1627 #if !defined (LIVEMEDIA_LIBRARY_VERSION_INT) || (LIVEMEDIA_LIBRARY_VERSION_INT < 1324598400)
1628 # error BOOM
1629 #endif]])
1630       ], [
1631         ac_cv_live555="yes"
1632       ], [
1633         ac_cv_live555="no"
1634       ])
1635     ])
1637     AS_IF([test "$ac_cv_live555" = "no"], [
1638       AC_MSG_WARN([live555 is missing or its installed version is too old:
1639 Version 2011.12.23 or later is required to proceed.
1640 You can get an updated one from http://www.live555.com/liveMedia .])
1641       AS_IF([test -n "${enable_live555}"], [
1642         AC_MSG_ERROR([Update live555 or pass --disable-live555 to disable RTSP input support.])
1643       ])
1644     ], [
1645       other_libs="-lgroupsock -lBasicUsageEnvironment -lUsageEnvironment"
1646       other_libs_pic="-lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic"
1647       AS_IF([test "${SYS}" = "mingw32"], [
1648         # add ws2_32 for closesocket, select, recv
1649         other_libs="$other_libs -lws2_32"
1650       ])
1652       dnl We need to check for pic because live555 don't provide shared libs
1653       dnl and we want to build a plugins so we need -fPIC on some arch.
1654       VLC_ADD_CXXFLAGS([live555], [${CPPFLAGS_live555}])
1655       VLC_ADD_LDFLAGS([live555], [${LDFLAGS_live555}])
1656       AC_CHECK_LIB(liveMedia_pic, main, [
1657         VLC_ADD_PLUGIN([live555])
1658         VLC_ADD_LIBS([live555], [-lliveMedia_pic ${other_libs_pic}])
1659       ],[
1660         AC_CHECK_LIB(liveMedia, main, [
1661           VLC_ADD_PLUGIN([live555])
1662           VLC_ADD_LIBS([live555], [-lliveMedia ${other_libs}])
1663         ],[],[${other_libs}])
1664       ],[${other_libs_pic}])
1665     ])
1666     VLC_RESTORE_FLAGS
1667     AC_LANG_POP(C++)
1668   ])
1672 dnl IIDC and DV FireWire input modules
1674 PKG_ENABLE_MODULES_VLC([DC1394], [], [libdc1394-2 >= 2.1.0], [IIDC FireWire input module], [auto])
1675 PKG_ENABLE_MODULES_VLC([DV1394], [], [libraw1394 >= 2.0.1 libavc1394 >= 0.5.3], [DV FireWire input module], [auto])
1678 dnl - linsys modules: access module check for libzvbi
1680 AC_ARG_ENABLE(linsys,
1681   [AS_HELP_STRING([--enable-linsys],
1682     [Linux Linear Systems Ltd. SDI and HD-SDI input cards (default enabled)])])
1683 AS_IF([test "$SYS" = "linux" -a "${enable_linsys}" != "no"], [
1684   VLC_ADD_PLUGIN([linsys_hdsdi])
1685   PKG_CHECK_MODULES(LINSYS_SDI, [zvbi-0.2 >= 0.2.28], [
1686     VLC_ADD_PLUGIN([linsys_sdi])
1687   ], [
1688     AC_MSG_WARN([${LINSYS_SDI_PKG_ERRORS}.])
1689   ])
1693 dnl dvdread module: check for libdvdread
1695 PKG_ENABLE_MODULES_VLC([DVDREAD], [], [dvdread > 4.9.0], [dvdread input module], [auto])
1698 dnl libdvdnav plugin
1700 PKG_ENABLE_MODULES_VLC([DVDNAV], [], [dvdnav > 4.9.0], [DVD with navigation input module (dvdnav)], [auto])
1701 AS_IF([test "${enable_dvdnav}" != "no"], [
1702   AC_MSG_CHECKING(for dvdnav_stream_cb in dvdnav/dvdnav.h)
1703     AC_EGREP_HEADER(dvdnav_stream_cb,dvdnav/dvdnav.h,[
1704       AC_MSG_RESULT(yes)
1705       AC_DEFINE(HAVE_STREAM_CB_IN_DVDNAV_H, 1, For dvdnav demux support)
1706       ],[
1707       AC_MSG_RESULT(no)
1708     ])
1712 dnl  Blu-ray Disc Support with libbluray
1714 PKG_ENABLE_MODULES_VLC([BLURAY], [libbluray], [libbluray >= 0.5.0], (libbluray for Blu-ray disc support ) )
1717 dnl  OpenCV wrapper and example filters
1719 PKG_ENABLE_MODULES_VLC([OPENCV], [opencv_example opencv_wrapper], [opencv > 2.0], (OpenCV (computer vision) filter), [auto])
1723 dnl  libsmbclient plugin
1725 PKG_ENABLE_MODULES_VLC([SMBCLIENT], [smb], [smbclient], (SMB/CIFS support), [auto])
1726 AS_IF([test "${SYS}" = "mingw32"], [ VLC_ADD_PLUGIN([smb]) ])
1729 dnl  liBDSM access module
1731 PKG_ENABLE_MODULES_VLC([DSM], [dsm], [libdsm >= 0.0.4], [libdsm SMB/CIFS access/sd module], [auto])
1734 dnl sftp access support
1736 PKG_ENABLE_MODULES_VLC([SFTP], [sftp], [libssh2], (support SFTP file transfer via libssh2), [auto])
1739 dnl  Video4Linux 2
1741 AC_ARG_ENABLE(v4l2, [AS_HELP_STRING([--disable-v4l2],
1742   [disable Video4Linux version 2 (default auto)])])
1743 have_v4l2="no"
1744 AS_IF([test "$enable_v4l2" != "no"], [
1745   AC_CHECK_HEADERS([linux/videodev2.h sys/videoio.h], [
1746     have_v4l2="yes"
1747   ])
1749 AM_CONDITIONAL(HAVE_V4L2, [test "${have_v4l2}" != "no"])
1752 dnl special access module for Blackmagic SDI cards
1754 AC_ARG_ENABLE(decklink,
1755   [AS_HELP_STRING([--disable-decklink],
1756     [disable Blackmagic DeckLink SDI input (default auto)])])
1757 AC_ARG_WITH(decklink_sdk,
1758   [AS_HELP_STRING[--with-decklink-sdk=DIR],
1759     [                        location of Blackmagic DeckLink SDI SDK])])
1760 have_decklink=no
1761 if test "${enable_decklink}" != "no"
1762 then
1763   if test "${with_decklink_sdk}" != "no" -a -n "${with_decklink_sdk}"
1764   then
1765     VLC_ADD_CPPFLAGS([decklink decklinkoutput],[-I${with_decklink_sdk}/include])
1766   fi
1767   VLC_SAVE_FLAGS
1768   CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_decklink}"
1769   AC_LANG_PUSH(C++)
1770   AC_CHECK_HEADERS(DeckLinkAPIDispatch.cpp, [
1771       have_decklink=yes
1772   ], [
1773       AC_MSG_WARN(Blackmagic DeckLink SDI include files not found, decklink disabled)
1774   ])
1775   AC_LANG_POP(C++)
1776   VLC_RESTORE_FLAGS
1778 AM_CONDITIONAL(HAVE_DECKLINK, [ test "${have_decklink}" != "no" ])
1782 dnl  gnomeVFS access module
1784 PKG_ENABLE_MODULES_VLC([GNOMEVFS], [gnomevfs], [gnome-vfs-2.0], [GnomeVFS access module], [auto])
1787 dnl  VCDX modules
1789 PKG_ENABLE_MODULES_VLC([VCDX], [vcdx], [libcdio >= 0.78.2 libiso9660 >= 0.72 libvcdinfo >= 0.7.22], [navigate VCD with libvcdinfo], [no])
1792 dnl  Built-in CD-DA and VCD module
1794 AC_ARG_ENABLE(vcd,
1795   [AS_HELP_STRING([--disable-vcd],
1796     [disable built-in VCD and CD-DA support (default enabled)])])
1798 AC_ARG_ENABLE(libcddb,
1799   [AS_HELP_STRING([--disable-libcddb],
1800     [disable CDDB for Audio CD (default enabled)])])
1802 if test "${enable_vcd}" != "no"
1803 then
1804   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1805   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1806     AC_MSG_RESULT(yes)
1807     VLC_ADD_PLUGIN([vcd cdda])
1808   ],[
1809     AC_MSG_RESULT(no)
1810   ])
1812   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1813   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1814     AC_MSG_RESULT(yes)
1815     VLC_ADD_PLUGIN([vcd cdda])
1816     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1817   ],[
1818     AC_MSG_RESULT(no)
1819   ])
1821   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1822   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1823     AC_MSG_RESULT(yes)
1824     VLC_ADD_PLUGIN([vcd cdda])
1825     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1826   ],[
1827     AC_MSG_RESULT(no)
1828   ])
1830   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32" -o "${SYS}" = "os2" -o "${SYS}" = "darwin"
1831   then
1832     VLC_ADD_PLUGIN([vcd cdda])
1833   fi
1835   if test "$enable_libcddb" != "no"; then
1836     PKG_CHECK_MODULES(LIBCDDB, [libcddb >= 0.9.5], [
1837       HAVE_LIBCDDB=yes
1838       AC_DEFINE(HAVE_LIBCDDB, 1, [Define this if you have libcddb installed])
1839       VLC_ADD_LIBS([cdda],[$LIBCDDB_LIBS])
1840       VLC_ADD_CFLAGS([cdda],[$LIBCDDB_CFLAGS])
1841       ],:
1842       [AC_MSG_WARN([${LIBCDDB_PKG_ERRORS}: CDDB access disabled.])
1843       HAVE_LIBCDDB=no])
1844   fi
1848 dnl Linux DVB
1850 AC_CACHE_CHECK([for Linux DVB version 5.1], [ac_cv_linux_dvb_5_1], [
1851   AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1852 [#include <linux/dvb/version.h>
1853 #if (DVB_API_VERSION < 5)
1854 # error Linux DVB API v3.2 and older are not supported.
1855 #endif
1856 #if (DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR < 1)
1857 # error Linux DVB API v5.0 is unsupported. Please update.
1858 #endif
1859 ]])], [
1860   ac_cv_linux_dvb_5_1=yes
1861 ], [
1862   ac_cv_linux_dvb_5_1=no
1863 ])])
1864 AM_CONDITIONAL([HAVE_LINUX_DVB], [test "$ac_cv_linux_dvb_5_1" = "yes"])
1867 dnl  Screen capture module
1869 AC_ARG_ENABLE(screen,
1870   [AS_HELP_STRING([--enable-screen],
1871     [disable screen capture (default enabled)])])
1872 if test "${enable_screen}" != "no"; then
1873   if test "${SYS}" = "darwin"; then
1874     AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
1875       VLC_ADD_PLUGIN([screen])
1876     ])
1877   fi
1879 AM_CONDITIONAL(HAVE_MAC_SCREEN, [test "${SYS}" = "darwin" -a "x${enable_screen}" != "xno"])
1882 dnl  VNC/RFB access module
1884 PKG_ENABLE_MODULES_VLC([VNC], [vnc], [libvncclient >= 0.9.9], (VNC/rfb client support), [auto])
1886 dnl  RDP/Remote Desktop access module
1888 PKG_ENABLE_MODULES_VLC([FREERDP], [rdp], [freerdp >= 1.0.1], (RDP/Remote Desktop client support) )
1891 dnl  Real RTSP plugin
1893 AC_ARG_ENABLE(realrtsp,
1894   [  --enable-realrtsp       Real RTSP module (default disabled)])
1895 if test "${enable_realrtsp}" = "yes"; then
1896   VLC_ADD_PLUGIN([access_realrtsp])
1900 dnl MacOS eyeTV
1901 AC_ARG_ENABLE(macosx-eyetv,
1902   [  --enable-macosx-eyetv   Mac OS X EyeTV (TNT Tuner) module (default enabled on Mac OS X)])
1903 if test "x${enable_macosx_eyetv}" != "xno" &&
1904   (test "${SYS}" = "darwin" || test "${enable_macosx_eyetv}" = "yes")
1905 then
1906   VLC_ADD_PLUGIN([access_eyetv])
1910 dnl QTKit
1911 AC_ARG_ENABLE(macosx-qtkit,
1912   [  --enable-macosx-qtkit Mac OS X qtsound (audio) module (default enabled on Mac OS X)])
1913 if test "x${enable_macosx_qtkit}" != "xno" &&
1914   (test "${SYS}" = "darwin" || test "${enable_macosx_qtkit}" = "yes")
1915 then
1916   VLC_ADD_PLUGIN([qtsound])
1918 AM_CONDITIONAL(HAVE_QTKIT, [test "${SYS}" = "darwin" -a "x${enable_macosx_qtkit}" != "xno"])
1921 dnl AVFoundation
1922 AC_SUBST(have_avfoundation, ["no"])
1923 AC_ARG_ENABLE(macosx-avfoundation,
1924   [  --enable-macosx-avfoundation Mac OS X avcapture (video) module (default enabled on Mac OS X)])
1925 if test "x${enable_macosx_avfoundation}" != "xno" &&
1926   (test "${SYS}" = "darwin" || test "${enable_macosx_avfoundation}" = "yes")
1927 then
1928   SAVED_LIBS="${LIBS}"
1929   LIBS="-framework AVFoundation"
1930   AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [])],[have_avfoundation=yes],[have_avfoundation=no])
1931   LIBS="${SAVED_LIBS}"
1932   if test "${have_avfoundation}" != "no"
1933   then
1934     VLC_ADD_PLUGIN([avcapture])
1935   fi
1937 AM_CONDITIONAL(HAVE_AVFOUNDATION, [test "${have_avfoundation}" != "no"])
1940 dnl  DCP plugin (using asdcplib)
1942 PKG_WITH_MODULES([ASDCP], [asdcplib], [have_asdcp="yes"])
1943 AM_CONDITIONAL(HAVE_ASDCP, [test "${have_asdcp}" = "yes"])
1946 dnl  Demux plugins
1949 EXTEND_HELP_STRING([Mux/Demux plugins:])
1952 dnl  libdvbpsi check for ts mux/demux
1954 have_dvbpsi="no"
1955 PKG_WITH_MODULES([DVBPSI], [libdvbpsi >= 1.0.0], [have_dvbpsi="yes"])
1956 AM_CONDITIONAL(HAVE_DVBPSI, [test "${have_dvbpsi}" = "yes"])
1960 dnl  GME demux plugin
1962 AC_ARG_ENABLE(gme,
1963   [AS_HELP_STRING([--enable-gme],
1964     [use Game Music Emu (default auto)])])
1965 AS_IF([test "${enable_gme}" != "no"], [
1966   AC_CHECK_HEADER([gme/gme.h], [
1967     VLC_ADD_LIBS([gme], [-lgme])
1968     VLC_ADD_PLUGIN([gme])
1969   ], [
1970     AS_IF([test "x${enable_gme}" != "x"], [
1971       AC_MSG_ERROR([GME cannot be found. Please install the development files.])
1972     ])
1973   ])
1978 dnl  SIDPlay plugin
1980 AC_ARG_ENABLE(sid,
1981     [AS_HELP_STRING([--enable-sid],[C64 sid demux support (default auto)])])
1982 AS_IF([test "${enable_sid}" != "no"], [
1983     PKG_CHECK_MODULES(SID, [libsidplay2], [
1984         AC_LANG_PUSH(C++)
1985         oldCPPFLAGS="$CPPFLAGS"
1986         CPPFLAGS="$CPPFLAGS $SID_CFLAGS"
1987         AC_CHECK_HEADER([sidplay/builders/resid.h], [
1988             VLC_ADD_PLUGIN([sid])
1989             VLC_ADD_CFLAGS([sid], [$SID_CFLAGS])
1990             VLC_ADD_LIBS([sid], [$SID_LIBS] [-lresid-builder])
1991         ], [
1992             AS_IF([test -n "${enable_sid}"],
1993                 [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
1994                 [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
1995                 )
1996         ])
1997         CPPFLAGS="$oldCPPFLAGS"
1998         AC_LANG_POP(C++)
1999     ], [
2000         AS_IF([test "x${enable_sid}" = "xyes"],
2001             [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
2002             [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2003             )
2004     ])
2009 dnl  ogg demux plugin
2011 PKG_ENABLE_MODULES_VLC([OGG], [mux_ogg], [ogg >= 1.0], [Ogg demux support], [auto])
2012 PKG_CHECK_MODULES(LIBVORBIS, [vorbis >= 1.1], [
2013     AC_DEFINE(HAVE_LIBVORBIS, 1, [Define to 1 if you have the libvorbis])
2014 ],[true])
2015 PKG_ENABLE_MODULES_VLC([OGG], [], [ogg >= 1.0], [Ogg demux support], [auto], [${LIBVORBIS_CFLAGS}], [${LIBVORBIS_LIBS}])
2016 if test "${enable_sout}" != "no"; then
2017 dnl Check for libshout
2018     PKG_ENABLE_MODULES_VLC([SHOUT], [access_output_shout], [shout >= 2.1], [libshout output plugin], [auto])
2022 dnl  matroska demux plugin
2024 AC_ARG_ENABLE(mkv,
2025   [AS_HELP_STRING([--disable-mkv],
2026     [do not use libmatroska (default auto)])])
2027 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
2028   AC_LANG_PUSH(C++)
2029   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
2030     AC_MSG_CHECKING(for libebml version >= 1.0.0)
2031     AC_EGREP_CPP(yes,
2032       [#include <ebml/EbmlVersion.h>
2033        #ifdef LIBEBML_VERSION
2034        #if LIBEBML_VERSION >= 0x010000
2035        yes
2036        #endif
2037        #endif],
2038       [AC_MSG_RESULT([yes])
2039         AC_CHECK_HEADERS(matroska/KaxVersion.h, [
2040           AC_MSG_CHECKING(for libmatroska version >= 1.0.0)
2041           AC_EGREP_CPP(yes,
2042             [#include <matroska/KaxVersion.h>
2043              #ifdef LIBMATROSKA_VERSION
2044              #if LIBMATROSKA_VERSION >= 0x010000
2045              yes
2046              #endif
2047              #endif],
2048             [AC_MSG_RESULT([yes])
2049               AC_CHECK_HEADERS(matroska/KaxAttachments.h)
2050               AC_CHECK_LIB(ebml_pic, main, [
2051                 VLC_ADD_PLUGIN([mkv])
2052                 VLC_ADD_LIBS([mkv],[-lmatroska -lebml_pic])
2053               ],[
2054                 AC_CHECK_LIB(ebml, main, [
2055                   VLC_ADD_PLUGIN([mkv])
2056                   VLC_ADD_LIBS([mkv],[-lmatroska -lebml])
2057                 ])
2058               ])
2059             ], [
2060               AC_MSG_RESULT([no])
2061               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.])
2062           ])
2063         ])
2064       ],
2065       [AC_MSG_RESULT([no])
2066         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.])
2067     ])
2068   ])
2069   AC_LANG_POP(C++)
2073 dnl  modplug demux plugin
2075 AC_ARG_ENABLE(mod,
2076   [AS_HELP_STRING([--disable-mod],
2077     [do not use libmodplug (default auto)])])
2078 if test "${enable_mod}" != "no" ; then
2079     PKG_CHECK_MODULES(LIBMODPLUG, [libmodplug >= 0.8.4 libmodplug != 0.8.8], [
2080           VLC_ADD_PLUGIN([mod])
2081           VLC_ADD_CXXFLAGS([mod],[$LIBMODPLUG_CFLAGS])
2082           VLC_ADD_CFLAGS([mod],[$LIBMODPLUG_CFLAGS]) #modules/demux/mod.c needs CFLAGS_mod, not CXXFLAGS_mod
2083           VLC_ADD_LIBS([mod],[$LIBMODPLUG_LIBS])
2084     ],[
2085        AS_IF([test -n "${enable_mod}"],
2086          [AC_MSG_ERROR([${LIBMODPLUG_PKG_ERRORS}.])],
2087          [AC_MSG_WARN([${LIBMODPLUG_PKG_ERRORS}.])])
2088     ])
2092 dnl  mpc demux plugin
2094 AC_ARG_ENABLE(mpc,
2095   [AS_HELP_STRING([--disable-mpc], [do not use libmpcdec (default auto)])])
2096 if test "${enable_mpc}" != "no"
2097 then
2098   AC_CHECK_HEADERS([mpc/mpcdec.h], [
2099     VLC_ADD_PLUGIN([mpc])
2100     VLC_ADD_LIBS([mpc],[-lmpcdec])],
2101     [AC_CHECK_HEADERS([mpcdec/mpcdec.h], [
2102     VLC_ADD_PLUGIN([mpc])
2103     VLC_ADD_LIBS([mpc],[-lmpcdec])])])
2107 dnl  Codec plugins
2110 EXTEND_HELP_STRING([Codec plugins:])
2113 dnl wmafixed plugin
2115 AC_ARG_ENABLE(wma-fixed,
2116   [  --enable-wma-fixed      libwma-fixed module (default disabled)])
2117 if test "${enable_wma_fixed}" = "yes"
2118 then
2119   VLC_ADD_PLUGIN([wma_fixed])
2123 dnl shine encoder plugin
2125 PKG_ENABLE_MODULES_VLC([SHINE], [], [shine >= 3.0.0], [MPEG Audio Layer 3 encoder], [auto], [], [], [])
2129 dnl openmax il codec plugin
2131 AC_ARG_ENABLE(omxil,
2132   [  --enable-omxil          openmax il codec module (default disabled)])
2133 if test "${enable_omxil}" = "yes"
2134 then
2135   VLC_ADD_PLUGIN([omxil])
2139 dnl openmax il vout plugin
2141 AC_ARG_ENABLE(omxil-vout,
2142   [  --enable-omxil-vout     openmax il video output module (default disabled)])
2143 if test "${enable_omxil_vout}" = "yes"
2144 then
2145   VLC_ADD_PLUGIN([omxil_vout])
2149 dnl raspberry pi openmax il configuration
2151 AC_ARG_ENABLE(rpi-omxil,
2152   [  --enable-rpi-omxil     openmax il configured for raspberry pi (default disabled)])
2153 if test "${enable_rpi_omxil}" = "yes"
2154 then
2155   VLC_ADD_PLUGIN([omxil omxil_vout])
2156   VLC_ADD_CFLAGS([omxil omxil_vout],[-DRPI_OMX])
2160 dnl CrystalHD codec plugin
2162 AC_ARG_ENABLE(crystalhd,
2163   [  --enable-crystalhd      crystalhd codec plugin (default auto)])
2164 if test "${enable_crystalhd}" != "no"; then
2165     AC_CHECK_HEADER(libcrystalhd/libcrystalhd_if.h, [
2166       VLC_ADD_PLUGIN([crystalhd])
2167       VLC_ADD_LIBS([crystalhd], [-lcrystalhd])
2168     ],[
2169       if test "${SYS}" = "mingw32" ; then
2170         AC_CHECK_HEADERS(libcrystalhd/bc_dts_defs.h, [
2171           VLC_ADD_PLUGIN([crystalhd])
2172           AC_CHECK_HEADERS(libcrystalhd/bc_drv_if.h, [
2173             VLC_ADD_LIBS([crystalhd], [-lbcmDIL])
2174             ])
2175         ],[
2176           AS_IF([test x"${enable_crystalhd}" = "xyes"],
2177                 [AC_MSG_ERROR("Could not find CrystalHD development headers")],
2178                 [AC_MSG_WARN("Could not find CrystalHD development headers")])
2179         ],[#define __LINUX_USER__
2180                #include <libcrystalhd/bc_dts_types.h>
2181         ])
2182       fi
2183     ],[
2184        #include <libcrystalhd/bc_dts_types.h>
2185       ])
2189 dnl  mad plugin
2191 have_mad="no"
2192 MAD_CFLAGS=""
2193 MAD_LIBS=""
2195 AC_ARG_WITH(mad, [  --with-mad=PATH         path to libmad], [
2196   enable_mad="yes"
2197 ], [
2198   with_mad="no"
2200 AS_IF([test "${with_mad}" != "no"], [
2201   MAD_CFLAGS="-I${with_mad}/include"
2202   MAD_LIBS="-L${with_mad}/lib"
2205 AC_ARG_ENABLE(mad,
2206   [  --enable-mad            libmad module (default enabled)])
2207 AS_IF([test "${enable_mad}" != "no"], [
2208   VLC_SAVE_FLAGS
2209   CPPFLAGS="${CPPFLAGS} ${MAD_CFLAGS}"
2210   LDFLAGS="${LDFLAGS} ${MAD_LIBS}"
2211   AC_CHECK_HEADERS(mad.h, [
2212     AC_CHECK_LIB(mad, mad_bit_init, [
2213       have_mad="yes"
2214       MAD_LIBS="${MAD_LIBS} -lmad"
2215     ])
2216   ])
2217   VLC_RESTORE_FLAGS
2218   AS_IF([test -n "$enable_mad" -a "${have_mad}" = "no"], [
2219     AC_MSG_ERROR([Could not find libmad. Install it or pass --disable-mad to disable it.])
2220   ])
2222 AC_SUBST(MAD_CFLAGS)
2223 AC_SUBST(MAD_LIBS)
2224 AM_CONDITIONAL([HAVE_MAD], [test "${have_mad}" = "yes"])
2226 dnl  mpg123 plugin
2229 PKG_ENABLE_MODULES_VLC([MPG123], [mpg123], [libmpg123], [libmpg123 decoder support], [auto])
2232 AC_ARG_ENABLE(merge-ffmpeg,
2233 [  --enable-merge-ffmpeg   merge FFmpeg-based plugins (default disabled)],, [
2234   enable_merge_ffmpeg="no"
2236 AM_CONDITIONAL([MERGE_FFMPEG], [test "$enable_merge_ffmpeg" != "no"])
2238 AC_MSG_CHECKING([for libavutil variant])
2239 PKG_CHECK_EXISTS([libavutil], [
2240   libavutil_version="$(${PKG_CONFIG} --modversion libavutil)"
2241   libavutil_micro="${libavutil_version##*.}"
2242   AS_IF([test ${libavutil_micro} -le 99], [
2243     avfork="libav"
2244   ], [
2245     avfork="ffmpeg"
2246   ])
2247 ], [
2248   avfork="none"
2250 AC_MSG_RESULT([${avfork}])
2253 dnl gstreamer stuff
2255 AC_ARG_ENABLE(gst-decode,
2256   [  --enable-gst-decode     GStreamer based decoding support (currently supports only video decoding) (default auto)])
2258 have_gst_decode="no"
2259 AS_IF([test "${enable_gst_decode}" != "no"], [
2260   PKG_CHECK_MODULES([GST_APP], [gstreamer-app-1.0], [
2261     PKG_CHECK_MODULES([GST_VIDEO], [gstreamer-video-1.0], [
2262       have_gst_decode="yes"
2263     ], [
2264       AC_MSG_WARN([${GST_VIDEO_PKG_ERRORS}. GStreamer decoder module will not be built.])
2265     ])
2266   ], [
2267     AC_MSG_WARN([${GST_APP_PKG_ERRORS}. GStreamer modules will not be built.])
2268   ])
2270 AM_CONDITIONAL([HAVE_GST_DECODE], [test "${have_gst_decode}" = "yes"])
2273 dnl  avcodec decoder/encoder plugin
2275 AC_ARG_ENABLE(avcodec,
2276 [  --enable-avcodec        libavcodec codec (default enabled)])
2277 AS_IF([test "${enable_avcodec}" != "no"], [
2278   PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 55.0.0 libavutil >= 52.0.0], [
2279     dnl PKG_CHECK_EXISTS([libavcodec < 56],, [
2280     dnl   AC_MSG_ERROR([libavcodec versions 56 and later are not supported yet.])
2281     dnl ])
2282     VLC_SAVE_FLAGS
2283     CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2284     CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2285     AC_CHECK_HEADERS(libavcodec/avcodec.h)
2286     AC_CHECK_HEADERS(libavutil/avutil.h)
2287     VLC_RESTORE_FLAGS
2288     have_avcodec="yes"
2289   ],[
2290     AC_MSG_ERROR([${AVCODEC_PKG_ERRORS}. Pass --disable-avcodec to ignore this error.])
2291   ])
2292 ], [
2293   have_avcodec="no"
2295 AM_CONDITIONAL([HAVE_AVCODEC], [test "${have_avcodec}" != "no"])
2298 dnl libva needs avcodec
2300 AC_ARG_ENABLE(libva,
2301   [  --enable-libva          VAAPI GPU decoding support (libVA) (default auto)])
2303 AS_IF([test "${enable_libva}" = "yes" -a "${have_avcodec}" != "yes" ], [
2304   AC_MSG_ERROR([--enable-libva and --disable-avcodec options are mutually exclusive. Use --enable-avcodec.])
2307 have_vaapi="no"
2308 have_vaapi_drm="no"
2309 have_vaapi_x11="no"
2310 AS_IF([test "${enable_libva}" != "no"], [
2311   PKG_CHECK_EXISTS([libva], [
2312     have_vaapi="yes"
2313   ], [
2314     AS_IF([test -n "${enable_libva}"], [
2315       AC_MSG_ERROR([${LIBVA_PKG_ERRORS}.])
2316     ], [
2317       AC_MSG_WARN([${LIBVA_PKG_ERRORS}.])
2318     ])
2319   ])
2320   PKG_CHECK_MODULES([LIBVA_DRM], [libva-drm], [
2321     have_vaapi_drm="yes"
2322   ], [
2323     AC_MSG_WARN([${LIBVA_DRM_PKG_ERRORS}.])
2324   ])
2325   PKG_CHECK_MODULES(LIBVA_X11, [libva-x11], [
2326     have_vaapi_x11="yes"
2327   ], [
2328     AC_MSG_WARN([${LIBVA_X11_PKG_ERRORS}.])
2329   ])
2331 AM_CONDITIONAL([HAVE_VAAPI_DRM], [test "${have_vaapi_drm}" = "yes"])
2332 AM_CONDITIONAL([HAVE_VAAPI_X11], [test "${have_vaapi_x11}" = "yes"])
2334 have_avcodec_vaapi="no"
2335 AS_IF([test "${have_vaapi}" = "yes" -a "${have_avcodec}" = "yes"], [
2336   VLC_SAVE_FLAGS
2337   CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2338   CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2339   AC_CHECK_HEADERS([libavcodec/vaapi.h], [
2340     AC_MSG_NOTICE([VAAPI acceleration activated])
2341     have_avcodec_vaapi="yes"
2342   ],[
2343     AS_IF([test -n "${enable_libva}"], [
2344       AC_MSG_ERROR([libva is present but libavcodec/vaapi.h is missing])
2345     ], [
2346       AC_MSG_WARN([libva is present but libavcodec/vaapi.h is missing ])
2347     ])
2348   ])
2349   VLC_RESTORE_FLAGS
2351 AM_CONDITIONAL([HAVE_AVCODEC_VAAPI], [test "${have_avcodec_vaapi}" = "yes"])
2354 dnl dxva2 needs avcodec
2356 AC_ARG_ENABLE(dxva2,
2357   [  --enable-dxva2          DxVA2 GPU decoding support (default auto)])
2359 have_avcodec_dxva2="no"
2360 AS_IF([test "${enable_dxva2}" != "no"], [
2361   if test "${SYS}" = "mingw32"; then
2362   AS_IF([test "x${have_avcodec}" = "xyes"], [
2363     AC_CHECK_HEADERS(dxva2api.h,
2364       [
2365         AC_CHECK_HEADERS(libavcodec/dxva2.h, [
2366            AC_MSG_NOTICE([DxVA2 acceleration activated])
2367            have_avcodec_dxva2="yes"
2368         ],[
2369     AS_IF([test "${enable_dxva2}" = "yes"],
2370           [AC_MSG_ERROR([dxva2 is present but libavcodec/dxva2.h is missing])],
2371               [AC_MSG_WARN([dxva2 is present but libavcodec/dxva2.h is missing ])])
2372         ], [#undef _WIN32_WINNT
2373             /* DXVA2 is only available in Vista and above */
2374             #define _WIN32_WINNT 0x600])
2375       ],[
2376     AS_IF([test "${enable_dxva2}" = "yes"],
2377               [AC_MSG_ERROR([Could not find required dxva2api.h])],
2378               [AC_MSG_WARN([dxva2api.h not found])])
2379       ])
2380   ],[
2381     AS_IF([test "x${enable_dxva2}" != "x"], [
2382       AC_MSG_ERROR([--enable-dxva2 and --disable-avcodec options are mutually exclusive.])
2383     ])
2384   ])
2385   fi
2387 AM_CONDITIONAL([HAVE_AVCODEC_DXVA2], [test "${have_avcodec_dxva2}" = "yes"])
2390 dnl d3d11va needs avcodec
2392 AC_ARG_ENABLE(d3d11va,
2393   [  --enable-d3d11va          D3D11 GPU decoding support (default auto)])
2395 have_avcodec_d3d11va="no"
2396 AS_IF([test "${enable_d3d11va}" != "no"], [
2397   if test "${SYS}" = "mingw32"; then
2398   AS_IF([test "x${have_avcodec}" = "xyes"], [
2399         AC_CHECK_TYPES([ID3D11VideoDecoder],
2400           [
2401             AC_CHECK_HEADERS(dxva2api.h,
2402               [
2403                 AC_CHECK_HEADERS(libavcodec/d3d11va.h, [
2404                    AC_MSG_NOTICE([D3D11 acceleration activated])
2405                    AC_DEFINE(HAVE_AVCODEC_D3D11VA, 1, [Define if the d3d11va module is built])
2406                    have_avcodec_d3d11va="yes"
2407                 ],[
2408                   AS_IF([test "${enable_d3d11va}" = "yes"],
2409                     [AC_MSG_ERROR([d3d11va is present but libavcodec/d3d11va.h is missing])],
2410                         [AC_MSG_WARN([d3d11va is present but libavcodec/d3d11va.h is missing ])])
2411                   ], [#undef _WIN32_WINNT
2412                       /* D3D11 is only available in Vista and above */
2413                       #define _WIN32_WINNT 0x600])
2414                   ],[
2415                     AS_IF([test "${enable_d3d11va}" = "yes"],
2416                           [AC_MSG_ERROR([Could not find required dxva2api.h])],
2417                           [AC_MSG_WARN([dxva2api.h not found])])
2418                   ])
2419           ],[
2420             AS_IF([test "${enable_d3d11va}" = "yes"],
2421                   [AC_MSG_ERROR([Could not find required ID3D11VideoDecoder in d3d11.h])],
2422                   [AC_MSG_WARN([ID3D11VideoDecoder not found])])
2423           ], [#include <d3d11.h>])
2424   ],[
2425     AS_IF([test "x${enable_d3d11va}" != "x"], [
2426       AC_MSG_ERROR([--enable-d3d11va and --disable-avcodec options are mutually exclusive.])
2427     ])
2428   ])
2429   fi
2431 AM_CONDITIONAL([HAVE_AVCODEC_D3D11VA], [test "${have_avcodec_d3d11va}" = "yes"])
2434 dnl DXGI debug
2436 AC_CHECK_HEADERS(dxgidebug.h)
2439 dnl vda needs avcodec
2441 AC_ARG_ENABLE(vda,
2442   [  --enable-vda          VDA  support (default auto)])
2444 have_avcodec_vda="no"
2445 AS_IF([test "${enable_vda}" != "no"], [
2446   if test "${SYS}" = "darwin"; then
2447   AS_IF([test "x${have_avcodec}" = "xyes"], [
2448     AC_CHECK_HEADERS(VideoDecodeAcceleration/VDADecoder.h,
2449       [
2450         AC_CHECK_HEADERS(libavcodec/vda.h, [
2451            have_avcodec_vda="yes"
2452         ],[
2453         AS_IF([test "${enable_vda}" = "yes"],
2454               [AC_MSG_ERROR([vda is present but libavcodec/vda.h is missing])],
2455               [AC_MSG_WARN([vda is present but libavcodec/vda.h is missing ])])
2456         ])
2457   ],[
2458         AS_IF([test "${enable_vda}" = "yes"],
2459               [AC_MSG_ERROR([Could not find required VideoDecodeAcceleration/VDADecoder.h])],
2460               [AC_MSG_WARN([VideoDecodeAcceleration/VDADecoder.h not found])])
2461       ])
2462   ],[
2463     AS_IF([test "x${enable_vda}" != "x"], [
2464       AC_MSG_ERROR([--enable-vda and --disable-avcodec options are mutually exclusive.])
2465     ])
2466  ])
2467  AS_IF([test "${have_avcodec_vda}" = "yes"], [
2468      SAVE_LIBS=$LIBS
2469      LIBS="$LIBS $AVCODEC_LIBS"
2470      AC_CHECK_FUNCS([av_vda_alloc_context])
2471      LIBS=$SAVE_LIBS
2472  ])
2473  fi
2475 AM_CONDITIONAL([HAVE_AVCODEC_VDA], [test "${have_avcodec_vda}" = "yes"])
2478 dnl  avformat demuxer/muxer plugin
2481 AC_ARG_ENABLE(avformat,
2482 [  --enable-avformat       libavformat containers (default enabled)],, [
2483   enable_avformat="${have_avcodec}"
2485 have_avformat="no"
2486 AS_IF([test "${enable_avformat}" != "no"], [
2487   PKG_CHECK_MODULES(AVFORMAT,[libavformat >= 53.21.0 libavcodec libavutil], [
2488       have_avformat="yes"
2489       VLC_SAVE_FLAGS
2490       CPPFLAGS="${CPPFLAGS} ${AVFORMAT_CFLAGS}"
2491       CFLAGS="${CFLAGS} ${AVFORMAT_CFLAGS}"
2492       AC_CHECK_HEADERS(libavformat/avformat.h libavformat/avio.h)
2493       AC_CHECK_HEADERS(libavcodec/avcodec.h)
2494       AC_CHECK_HEADERS(libavutil/avutil.h)
2495       AS_IF([test "$enable_merge_ffmpeg" = "no"], [
2496         have_avformat="no"
2497       ])
2498       VLC_RESTORE_FLAGS
2499     ],[
2500       AC_MSG_ERROR([${AVFORMAT_PKG_ERRORS}. Pass --disable-avformat to ignore this error.])
2501   ])
2503 AM_CONDITIONAL([HAVE_AVFORMAT], [test "${enable_avformat}" != "no"])
2506 dnl  swscale image scaling and conversion plugin
2509 AC_ARG_ENABLE(swscale,
2510   AS_HELP_STRING([--enable-swscale],[libswscale image scaling and conversion
2511           (default enabled)]))
2512 if test "${enable_swscale}" != "no"
2513 then
2514   PKG_CHECK_MODULES(SWSCALE,[libswscale],
2515     [
2516       VLC_SAVE_FLAGS
2517       CPPFLAGS="${CPPFLAGS} ${SWSCALE_CFLAGS}"
2518       CFLAGS="${CFLAGS} ${SWSCALE_CFLAGS}"
2519       AC_CHECK_HEADERS(libswscale/swscale.h)
2520       AC_CHECK_HEADERS(libavutil/avutil.h)
2521       VLC_ADD_PLUGIN([swscale])
2522       VLC_ADD_LIBS([swscale],[$SWSCALE_LIBS])
2523       VLC_ADD_CFLAGS([swscale],[$SWSCALE_CFLAGS])
2524       AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2525         VLC_ADD_LIBS([swscale],[${ac_cv_ld_bsymbolic}])
2526       ])
2527       VLC_RESTORE_FLAGS
2528     ],[
2529       AC_MSG_ERROR([${SWSCALE_PKG_ERRORS}. Pass --disable-swscale to ignore this error. Proper software scaling and some video chroma conversion will be missing.])
2530   ])
2534 dnl  postproc plugin
2537 AC_ARG_ENABLE(postproc,
2538 [  --enable-postproc       libpostproc image post-processing (default auto)])
2539 if test "${enable_postproc}" != "no"
2540 then
2541   PKG_CHECK_MODULES(POSTPROC,[libpostproc libavutil],
2542     [
2543       VLC_SAVE_FLAGS
2544       CPPFLAGS="${CPPFLAGS} ${POSTPROC_CFLAGS}"
2545       CFLAGS="${CFLAGS} ${POSTPROC_CFLAGS}"
2546       AC_CHECK_HEADERS(postproc/postprocess.h)
2547       VLC_ADD_PLUGIN([postproc])
2548       VLC_RESTORE_FLAGS
2549     ],[
2550       AC_MSG_WARN([${POSTPROC_PKG_ERRORS}.])
2551   ])
2555 dnl  faad decoder plugin
2557 AC_ARG_ENABLE(faad,
2558 [  --enable-faad           faad codec (default auto)])
2559 have_faad="no"
2560 AS_IF([test "${enable_faad}" != "no"], [
2561   AC_CHECK_HEADERS([neaacdec.h], [
2562     AC_CHECK_LIB(faad, NeAACDecOpen, [have_faad="yes"],, [$LIBM])
2564     AS_IF([test "${have_faad}" = "yes"], [
2565       VLC_ADD_PLUGIN([faad])
2566       VLC_ADD_LIBS([faad],[-lfaad])
2567     ], [
2568       AS_IF([test "${enable_faad}" = "yes"], [
2569         AC_MSG_ERROR([cannot find FAAD library])
2570       ], [
2571         AC_MSG_WARN([cannot find FAAD library])
2572       ])
2573     ])
2574   ])
2578 dnl libvpx decoder plugin
2580 AC_ARG_ENABLE(vpx,
2581     AS_HELP_STRING([--enable-vpx],[libvpx VP8/VP9 decoder (default auto)]))
2582 AS_IF([test "${enable_vpx}" != "no"],[
2583     PKG_CHECK_MODULES([VPX], [vpx] , [
2584         VLC_ADD_PLUGIN([vpx])
2585         VLC_ADD_CPPFLAGS([vpx], [${VPX_CFLAGS}])
2586         VLC_ADD_LIBS([vpx], [${VPX_LIBS}])
2587         AC_CHECK_LIB([vpx],[vpx_codec_vp8_dx], [
2588             VLC_ADD_CPPFLAGS([vpx], [-DENABLE_VP8_DECODER])
2589         ], [], [${VPX_LIBS}])
2590         AC_CHECK_LIB([vpx],[vpx_codec_vp9_dx], [
2591             VLC_ADD_CPPFLAGS([vpx], [-DENABLE_VP9_DECODER])
2592         ], [], [${VPX_LIBS}])
2593     ], [
2594     AS_IF([test "${enable_vpx}" = "yes"],[
2595         AC_MSG_ERROR([libvpx was not found])
2596     ])])
2600 dnl twolame encoder plugin
2602 PKG_ENABLE_MODULES_VLC([TWOLAME], [], [twolame], [MPEG Audio Layer 2 encoder], [auto], [], [], [ -DLIBTWOLAME_STATIC])
2605 dnl fdk-aac encoder plugin
2607 PKG_ENABLE_MODULES_VLC([FDKAAC], [], [fdk-aac], [FDK-AAC encoder], [disabled])
2610 dnl  QuickTime plugin
2612 AC_ARG_ENABLE(quicktime,
2613   [  --enable-quicktime      QuickTime module (deprecated)])
2614 if test "${enable_quicktime}" = "yes"; then
2615   if test "${SYS}" = "mingw32"; then
2616     VLC_ADD_PLUGIN([quicktime])
2617   else
2618   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2619     [ VLC_ADD_PLUGIN([quicktime])
2620       VLC_ADD_LIBS([quicktime],[-Wl,-framework,QuickTime,-framework,Carbon])
2621     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2622   fi
2626 dnl A52/AC3 decoder plugin
2628 AC_ARG_ENABLE(a52,
2629   [  --enable-a52            A/52 support with liba52 (default enabled)])
2630 if test "${enable_a52}" != "no"
2631 then
2632   AC_ARG_WITH(a52,
2633     [  --with-a52=PATH         a52 headers and libraries])
2634     if test -z "${with_a52}"
2635     then
2636       LDFLAGS_test=""
2637       CPPFLAGS_test=""
2638     else
2639       LDFLAGS_test="-L${with_a52}/lib"
2640       CPPFLAGS_test="-I${with_a52}/include"
2641     fi
2642     VLC_SAVE_FLAGS
2643     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2644     LDFLAGS="${LDFLAGS} ${LDFLAGS_test} ${LIBS_a52tofloat32}"
2645     AC_CHECK_HEADERS(a52dec/a52.h, [
2646       AC_CHECK_LIB(a52, a52_free, [
2647         VLC_ADD_PLUGIN([a52tofloat32])
2648         VLC_ADD_LIBS([a52tofloat32],[${LDFLAGS_test} -la52])
2649         VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2650       ],[
2651         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.])
2652         ], [$LIBM])
2653     ],[
2654       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.])
2655     ])
2656     VLC_RESTORE_FLAGS
2660 dnl DTS Coherent Acoustics decoder plugin
2662 PKG_ENABLE_MODULES_VLC([DCA], [dtstofloat32], [libdca >= 0.0.5], [DTS Coherent Acoustics support with libdca], [auto])
2665 dnl  Flac plugin
2667 PKG_ENABLE_MODULES_VLC([FLAC], [], [flac], [libflac decoder/encoder support], [auto])
2670 dnl  Libmpeg2 plugin
2672 PKG_ENABLE_MODULES_VLC([LIBMPEG2], [], [libmpeg2 > 0.3.2], [libmpeg2 decoder support], [auto])
2675 dnl  Vorbis plugin
2677 PKG_ENABLE_MODULES_VLC([VORBIS], [], [ogg vorbis >= 1.1 vorbisenc >= 1.1], [Vorbis decoder and encoder], [auto])
2680 dnl  Tremor plugin
2682 AC_ARG_ENABLE(tremor,
2683   [  --enable-tremor         Tremor decoder support (default disabled)])
2684 if test "${enable_tremor}" = "yes"
2685 then
2686   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2687     VLC_ADD_PLUGIN([tremor])
2688    ],[])
2692 dnl  Speex plugins
2694 PKG_ENABLE_MODULES_VLC([SPEEX], [], [ogg speex >= 1.0.5], [Speex support], [auto])
2695 have_speexdsp="no"
2696 AS_IF([test "${enable_speex}" != "no"], [
2697   PKG_CHECK_MODULES([SPEEXDSP], [speexdsp], [
2698     have_speexdsp="yes"
2699   ], [
2700     AC_MSG_WARN([${SPEEXDSP_PKG_ERRORS}.])
2701   ])
2703 AM_CONDITIONAL([HAVE_SPEEXDSP], [test "$have_speexdsp" = "yes"])
2706 dnl  Opus plugin
2708 PKG_ENABLE_MODULES_VLC([OPUS], [], [ogg opus >= 1.0.3], [Opus support], [auto])
2711 dnl  theora decoder plugin
2713 PKG_ENABLE_MODULES_VLC([THEORA], [], [ogg theoradec >= 1.0 theoraenc], [experimental theora codec], [auto])
2716 dnl  Daala decoder plugin
2718 PKG_ENABLE_MODULES_VLC([DAALA], [], [ogg daaladec daalaenc], [experimental daala codec], [disabled])
2721 dnl  schroedinger decoder plugin (for dirac format video)
2723 PKG_ENABLE_MODULES_VLC([SCHROEDINGER], [], [schroedinger-1.0 >= 1.0.10], [dirac decoder and encoder using schroedinger], [auto])
2726 dnl  PNG decoder module
2728 AC_ARG_ENABLE(png,
2729   [  --enable-png            PNG support (default enabled)])
2730 AS_IF([test "${enable_png}" != "no"], [
2731 AC_CHECK_HEADERS(png.h, [
2732   VLC_SAVE_FLAGS
2733   LDFLAGS="${LDFLAGS} -lz $LIBM"
2734   AC_CHECK_LIB(png, png_set_rows, [
2735     VLC_ADD_PLUGIN([png])
2736   ], [], [-lz $LIBM])
2737   VLC_RESTORE_FLAGS
2738   ])
2742 dnl  JPEG decoder module
2744 AC_ARG_ENABLE(jpeg,
2745   [  --enable-jpeg           JPEG support (default enabled)])
2746 AS_IF([test "${enable_jpeg}" != "no"], [
2747 AC_CHECK_HEADERS(jpeglib.h, [
2748   VLC_ADD_PLUGIN([jpeg])
2749   ])
2753 dnl  BPG decoder module
2755 AC_ARG_ENABLE(bpg,
2756   [  --enable-bpg           BPG support (default disabled)])
2757 AS_IF([test "${enable_bpg}" != "no"], [
2758 AC_CHECK_HEADERS(libbpg.h, [
2759   VLC_ADD_PLUGIN([bpg])
2760   ])
2764 dnl H262 encoder plugin (lib262)
2766 AC_ARG_ENABLE(x262,
2767   [  --enable-x262           H262 encoding support with static libx262 (default disabled)])
2768 if test "${enable_x262}" != "no"; then
2769     PKG_CHECK_MODULES(X262, x262, [
2770         VLC_ADD_PLUGIN([x262])
2771         VLC_ADD_LDFLAGS([x262],[${X262_LIBS}])
2772         AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2773           VLC_ADD_LIBS([x262],[${av_cv_ld_bsymbolic}])
2774         ])
2775         VLC_ADD_CFLAGS([x262],[${X262_CFLAGS}])
2776         if echo ${X262_LIBS} |grep -q 'pthreadGC2'; then
2777           VLC_ADD_CFLAGS([x262], [-DPTW32_STATIC_LIB])
2778         fi
2779     ], [
2780        if test "${enable_x262}" = "yes"; then
2781         AC_MSG_ERROR([x262 module doesn't work without staticly compiled libx262.a])
2782        fi
2783     ])
2786 dnl x265 encoder
2787 PKG_ENABLE_MODULES_VLC([X265],, [x265], [HEVC/H.265 encoder], [auto])
2790 dnl H264 encoder plugin (10-bit lib264)
2792 AC_ARG_ENABLE(x26410b,
2793   [  --enable-x26410b           H264 10-bit encoding support with static libx264 (default disabled)])
2794 if test "${enable_x26410b}" != "no"; then
2795     PKG_CHECK_MODULES(X26410B, x26410b, [
2796         VLC_ADD_PLUGIN([x26410b])
2797         VLC_ADD_LIBS([x26410b],[${X26410B_LIBS}])
2798         AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2799           VLC_ADD_LDFLAGS([x26410b],[${ac_cv_ld_bsymbolic}])
2800         ])
2801         VLC_ADD_CFLAGS([x26410b],[${X26410B_CFLAGS}])
2802         if echo ${X26410B_LIBS} |grep -q 'pthreadGC2'; then
2803           VLC_ADD_CFLAGS([x26410b], [-DPTW32_STATIC_LIB])
2804         fi
2805     ], [
2806        if test "${enable_x26410b}" = "yes"; then
2807         AC_MSG_ERROR([x26410b module doesn't work without staticly compiled libx264.a])
2808        fi
2809     ])
2814 dnl H264 encoder plugin (using libx264)
2816 AC_ARG_ENABLE(x264,
2817   [  --enable-x264           H264 encoding support with libx264 (default enabled)])
2818 if test "${enable_x264}" != "no"; then
2819       PKG_CHECK_MODULES(X264,x264 >= 0.86, [
2820         VLC_ADD_PLUGIN([x264])
2821         VLC_ADD_LIBS([x264],[${X264_LIBS}])
2823         AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2824           VLC_ADD_LDFLAGS([x264],[${ac_cv_ld_bsymbolic}])
2825         ])
2827         VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
2828         if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
2829           VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
2830         fi
2831       ],[
2832         if test "${enable_x264}" = "yes"; then
2833             AC_MSG_ERROR([${X264_PKG_ERRORS}: you may get it from http://www.videolan.org/x264.html])
2834           fi
2835       ])
2839 dnl Intel QuickSync (aka MediaSDK) H264/H262 encoder
2841 PKG_ENABLE_MODULES_VLC([MFX], [qsv], [libmfx], [Intel QuickSync MPEG4-Part10/MPEG2 (aka H.264/H.262) encoder], [auto])
2844 dnl libfluidsynth (MIDI synthetizer) plugin
2846 PKG_ENABLE_MODULES_VLC([FLUIDSYNTH], [], [fluidsynth >= 1.1.2], [MIDI synthetiser with libfluidsynth], [auto])
2849 dnl Teletext Modules
2850 dnl vbi decoder plugin (using libzbvi)
2851 dnl telx module
2852 dnl uncompatible
2854 AC_ARG_ENABLE(zvbi,
2855   AS_HELP_STRING([--enable-zvbi],[VBI (inc. Teletext) decoding support with
2856                   libzvbi (default enabled)]))
2857 AC_ARG_ENABLE(telx,
2858   AS_HELP_STRING([--enable-telx],[Teletext decoding module (conflicting with
2859                   zvbi) (default enabled if zvbi is absent)]))
2861 AS_IF( [test "${enable_zvbi}" != "no"],[
2862     PKG_CHECK_MODULES(ZVBI, [zvbi-0.2 >= 0.2.28],
2863         [
2864           VLC_ADD_PLUGIN([zvbi])
2865           AC_DEFINE(ZVBI_COMPILED, 1, [Define if the zvbi module is built])
2866           AS_IF( [test "${enable_telx}" = "yes"],[
2867                   AC_MSG_WARN([The zvbi and telx modules are incompatible. Using zvbi.])
2868                   ])
2869         ],[
2870           AC_MSG_WARN([${ZVBI_PKG_ERRORS}. Enabling the telx module instead.])
2871         ])
2872     ])
2873 AS_IF( [test "${enable_telx}" != "no" ],[
2874   VLC_ADD_PLUGIN([telx])
2875   ])
2878 dnl libass subtitle rendering module
2880 AC_ARG_ENABLE(libass,
2881   [  --enable-libass         Subtitle support using libass (default enabled)])
2882 AS_IF( [test "${enable_libass}" != "no"], [
2883   PKG_CHECK_MODULES(LIBASS, [libass >= 0.9.8],
2884       [
2885         VLC_ADD_PLUGIN([libass])
2887         AC_CHECK_HEADERS(fontconfig/fontconfig.h,
2888           [VLC_ADD_CPPFLAGS([libass],[-DHAVE_FONTCONFIG])
2889            VLC_ADD_LIBS([libass],[-lfontconfig])
2890        ])
2891       ],[
2892         AC_MSG_WARN([${LIBASS_PKG_ERRORS}.])
2893       ])
2894   ])
2897 dnl ARIB subtitles rendering module
2899 AC_ARG_ENABLE(aribsub,
2900   [  --enable-aribsub        ARIB Subtitles support (default enabled)])
2901 AS_IF( [test "${enable_aribsub}" != "no" ],[
2902   PKG_CHECK_MODULES(ARIBB24, [aribb24 >= 1.0.1], [
2903       have_aribb24="yes"
2904       VLC_ADD_PLUGIN([aribsub])
2905       VLC_ADD_LIBS([aribsub],[-laribb24])
2906       AC_DEFINE(HAVE_ARIBB24, 1, [Define if libaribb24 is available.])
2907     ],[
2908       AC_MSG_WARN(Library [aribb24] needed for [aribsub] was not found)
2909       have_aribb24="no"
2910   ])
2912 AM_CONDITIONAL([HAVE_ARIBB24], [test x"${have_aribb24}" = x"yes"])
2915 dnl ARIB B25
2917 PKG_ENABLE_MODULES_VLC([ARIBB25], [aribcam], [aribb25 >= 0.2.6], [ARIB STD-B25], [auto])
2920 dnl  kate decoder plugin
2922 PKG_ENABLE_MODULES_VLC([KATE], [], [kate >= 0.3.0], [kate codec], [auto])
2925 dnl  tiger rendering for kate decoder plugin
2927 AC_ARG_ENABLE(tiger,
2928 [  --enable-tiger          Tiger rendering library for Kate streams (default auto)])
2929 AS_IF([test "${enable_tiger}" != "no"], [
2930   PKG_CHECK_MODULES(TIGER,[tiger >= 0.3.1], [
2931       AC_DEFINE(HAVE_TIGER, 1, [Define if libtiger is available.])],[
2932         AS_IF([test -n "${enable_tiger}"], [
2933           AC_MSG_ERROR([${TIGER_PKG_ERRORS}.])
2934         ])
2935   ])
2940 dnl  Video plugins
2943 EXTEND_HELP_STRING([Video plugins:])
2946 dnl  OpenGL
2948 PKG_CHECK_MODULES([EGL], [egl], [
2949   have_egl="yes"
2950 ], [
2951   have_egl="no"
2953 AM_CONDITIONAL([HAVE_EGL], [test "${have_egl}" = "yes"])
2955 have_gl="no"
2956 PKG_CHECK_MODULES([GL], [gl], [
2957   have_gl="yes"
2958 ], [
2959   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2960 #ifdef _WIN32
2961 # include <GL/glew.h>
2962 #endif
2963 #include <GL/gl.h>
2964 ]], [
2965     [int t0 = GL_TEXTURE0;]])
2966   ], [
2967     GL_CFLAGS=""
2968     have_gl="yes"
2969     AS_IF([test "${SYS}" != "mingw32"], [
2970       GL_LIBS="-lGL"
2971     ], [
2972       GL_LIBS="-lopengl32"
2973     ])
2974   ])
2976 AM_CONDITIONAL([HAVE_GL], [test "${have_gl}" = "yes"])
2978 dnl OpenGL ES 2: depends on EGL 1.1
2979 PKG_ENABLE_MODULES_VLC([GLES2], [], [glesv2], [OpenGL ES v2 support], [disabled])
2980 dnl OpenGL ES 1: depends on EGL 1.0
2981 PKG_ENABLE_MODULES_VLC([GLES1], [], [glesv1_cm], [OpenGL ES v1 support], [disabled])
2984 dnl  Xlib
2987 AC_PATH_XTRA()
2988 AC_CHECK_HEADERS(X11/Xlib.h)
2991 dnl  X C Bindings modules
2993 AC_ARG_ENABLE(xcb,
2994   [  --enable-xcb            X11 support with XCB (default enabled)],, [
2995   AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "darwin"], [
2996     enable_xcb="yes"
2997   ], [
2998     enable_xcb="no"
2999   ])
3001 AC_ARG_ENABLE(xvideo,
3002   [  --enable-xvideo         XVideo support (default enabled)],, [
3003     enable_xvideo="$enable_xcb"
3006 have_xcb="no"
3007 have_xcb_keysyms="no"
3008 have_xcb_randr="no"
3009 have_xcb_xvideo="no"
3010 AS_IF([test "${enable_xcb}" != "no"], [
3011   dnl libxcb
3012   PKG_CHECK_MODULES(XCB, [xcb >= 1.6])
3013   have_xcb="yes"
3014   PKG_CHECK_MODULES(XCB_SHM, [xcb-shm])
3015   PKG_CHECK_MODULES(XCB_COMPOSITE, [xcb-composite])
3016   PKG_CHECK_MODULES(XPROTO, [xproto])
3018   AS_IF([test "${enable_xvideo}" != "no"], [
3019     PKG_CHECK_MODULES(XCB_XV, [xcb-xv >= 1.1.90.1], [have_xcb_xvideo="yes"])
3020   ])
3022   PKG_CHECK_MODULES(XCB_RANDR, [xcb-randr >= 1.3], [have_xcb_randr="yes"])
3024   dnl xcb-utils
3025   PKG_CHECK_MODULES(XCB_KEYSYMS, [xcb-keysyms >= 0.3.4], [have_xcb_keysyms="yes"], [
3026     AC_MSG_WARN([${XCB_KEYSYMS_PKG_ERRORS}. Hotkeys will not work.])
3027   ])
3029 AM_CONDITIONAL([HAVE_XCB], [test "${have_xcb}" = "yes"])
3030 AM_CONDITIONAL([HAVE_XCB_KEYSYMS], [test "${have_xcb_keysyms}" = "yes"])
3031 AM_CONDITIONAL([HAVE_XCB_RANDR], [test "${have_xcb_randr}" = "yes"])
3032 AM_CONDITIONAL([HAVE_XCB_XVIDEO], [test "${have_xcb_xvideo}" = "yes"])
3036 dnl VDPAU needs X11
3038 AC_ARG_ENABLE(vdpau,
3039   [AS_HELP_STRING([--enable-vdpau], [VDPAU hardware support (default auto)])])
3040 have_vdpau="no"
3041 AS_IF([test "${enable_vdpau}" != "no"], [
3042   PKG_CHECK_MODULES([VDPAU], [vdpau >= 0.6], [
3043     have_vdpau="yes"
3044     AS_IF([test "${no_x}" = "yes"], [
3045       AC_MSG_ERROR([VDPAU requires Xlib (X11).])
3046     ])
3047   ], [
3048     AS_IF([test -n "${enable_vdpau}"], [
3049       AC_MSG_ERROR([${VDPAU_PKG_ERRORS}.])
3050     ])
3051   ])
3053 AM_CONDITIONAL([HAVE_VDPAU], [test "${have_vdpau}" = "yes"])
3055 have_avcodec_vdpau="no"
3056 AS_IF([test "${have_vdpau}" = "yes" -a "${have_avcodec}" = "yes"], [
3057   case "${avfork}" in
3058     libav) av_vdpau_ver="55.26.0" ;;
3059     ffmpeg) av_vdpau_ver="55.42.100" ;;
3060   esac
3061   PKG_CHECK_EXISTS([libavutil >= 52.4.0 libavcodec >= ${av_vdpau_ver}], [
3062     have_avcodec_vdpau="yes"
3063     AC_MSG_NOTICE([VDPAU decoding acceleration activated])
3064   ], [
3065     AS_IF([test -n "${enable_vdpau}"], [
3066       AC_MSG_ERROR([libav libavutil >= 52.4.0 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
3067     ], [
3068       AC_MSG_WARN([libav libavutil >= 52.4.0 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
3069     ])
3070   ])
3072 AM_CONDITIONAL([HAVE_AVCODEC_VDPAU], [test "${have_avcodec_vdpau}" = "yes"])
3076 dnl  Wayland
3078 AC_ARG_ENABLE(wayland,
3079   [AS_HELP_STRING([--enable-wayland], [Wayland support (default auto)])])
3080 have_wayland="no"
3081 AC_ARG_VAR([WAYLAND_SCANNER], [Wayland scanner utility])
3083 AS_IF([test "${enable_wayland}" != "no"], [
3084   AC_MSG_CHECKING([for the Wayland scanner])
3085   AS_IF([test -z "$WAYLAND_SCANNER"], [
3086     PKG_CHECK_EXISTS([wayland-scanner], [
3087       WAYLAND_SCANNER="$(${PKG_CONFIG} wayland-scanner --variable wayland_scanner)"
3088     ], [
3089       WAYLAND_SCANNER="wayland-scanner"
3090     ])
3091   ])
3092   AC_MSG_RESULT([$WAYLAND_SCANNER])
3094   PKG_CHECK_MODULES([WAYLAND_CLIENT], [wayland-client >= 1.5.91], [
3095     have_wayland="yes"
3096   ], [
3097     AS_IF([test -n "${enable_wayland}"], [
3098       AC_MSG_ERROR([${WAYLAND_CLIENT_PKG_ERRORS}.])
3099     ])
3100   ])
3102   AS_IF([test "${have_egl}" = "yes"], [
3103     PKG_CHECK_MODULES([WAYLAND_EGL], [wayland-egl], [
3104       have_wayland_egl="yes"
3105     ], [
3106       AS_IF([test -n "${enable_wayland}"], [
3107         AC_MSG_ERROR([${WAYLAND_EGL_PKG_ERRORS}.])
3108       ])
3109     ])
3110   ])
3112 AM_CONDITIONAL([HAVE_WAYLAND], [test "${have_wayland}" = "yes"])
3113 AM_CONDITIONAL([HAVE_WAYLAND_EGL], [test "${have_wayland_egl}" = "yes"])
3117 dnl  SDL module
3119 AC_ARG_ENABLE(sdl,
3120   [  --enable-sdl            SDL support (default enabled)])
3121 AC_ARG_ENABLE(sdl-image,
3122   [  --enable-sdl-image      SDL image support (default enabled)])
3123 if test "${enable_sdl}" != "no"
3124 then
3125    PKG_CHECK_MODULES(SDL, [sdl >= 1.2.10], [
3126       # SDL on Darwin is heavily patched and can only run SDL_image
3127       if test "${SYS}" != "darwin"; then
3128         VLC_ADD_PLUGIN([vout_sdl])
3129       fi
3131       # SDL_image
3132       AS_IF([ test "${enable_sdl_image}" != "no"],[
3133         PKG_CHECK_MODULES(SDL_IMAGE, [SDL_image >= 1.2.10], [
3134           VLC_ADD_PLUGIN([sdl_image])],
3135           [ AC_MSG_WARN([${SDL_IMAGE_PKG_ERRORS}. You should install it alongside your SDL package.])
3136           ])
3137       ])
3138    ],[
3139      AC_MSG_WARN([${SDL_PKG_ERRORS}.])
3140    ])
3144 dnl  freetype module
3146 AC_ARG_ENABLE(freetype,
3147   [  --enable-freetype       freetype support   (default auto)])
3148 AC_ARG_ENABLE(fribidi,
3149   [  --enable-fribidi        fribidi support    (default auto)])
3150 AC_ARG_ENABLE(harfbuzz,
3151   [  --enable-harfbuzz       harfbuzz support   (default auto)])
3152 AC_ARG_ENABLE(fontconfig,
3153   [  --enable-fontconfig     fontconfig support (default auto)])
3155 AC_ARG_WITH([default-font],
3156     AS_HELP_STRING([--with-default-font=PATH],
3157         [Path to the default font]),
3158         [AC_DEFINE_UNQUOTED([DEFAULT_FONT_FILE],
3159             "$withval", [Default font])])
3160 AC_ARG_WITH([default-monospace-font],
3161     AS_HELP_STRING([--with-default-monospace-font=PATH],
3162         [Path to the default font]),
3163         [AC_DEFINE_UNQUOTED([DEFAULT_MONOSPACE_FONT_FILE],
3164             "$withval", [Default monospace font])])
3166 AC_ARG_WITH([default-font-family],
3167     AS_HELP_STRING([--with-default-font-family=NAME],
3168         [Path to the default font family]),
3169         [AC_DEFINE_UNQUOTED([DEFAULT_FAMILY],
3170             "$withval", [Default font family])])
3171 AC_ARG_WITH([default-monospace-font-family],
3172     AS_HELP_STRING([--with-default-monospace-font-family=NAME],
3173         [Path to the default font family]),
3174         [AC_DEFINE_UNQUOTED([DEFAULT_MONOSPACE_FAMILY],
3175             "$withval", [Default monospace font family])])
3177 have_freetype="no"
3178 have_fontconfig="no"
3179 have_fribidi="no"
3180 have_harfbuzz="no"
3182 if test "${enable_freetype}" != "no"; then
3183    PKG_CHECK_MODULES(FREETYPE, freetype2, [
3184       have_freetype="yes"
3185       VLC_ADD_CPPFLAGS([skins2],[${FREETYPE_CFLAGS}])
3186       VLC_ADD_LIBS([skins2],[${FREETYPE_LIBS}])
3188       dnl fontconfig support
3189       if test "${SYS}" != "mingw32"; then
3190           if test "${enable_fontconfig}" != "no"; then
3191             AC_CHECK_HEADERS(fontconfig/fontconfig.h, [
3192               have_fontconfig="yes"
3193             ],[AC_MSG_WARN([library fontconfig not found. Styles will be disabled in freetype])])
3194           fi
3195       fi
3197       dnl fribidi support
3198       if test "${enable_fribidi}" != "no"; then
3199         PKG_CHECK_MODULES(FRIBIDI, fribidi, [
3200           have_fribidi="yes"
3201           VLC_ADD_CPPFLAGS([skins2], [${FRIBIDI_CFLAGS} -DHAVE_FRIBIDI])
3202           VLC_ADD_LIBS([skins2], [${FRIBIDI_LIBS}])
3203         ],[AC_MSG_WARN([${FRIBIDI_PKG_ERRORS}. Bidirectional text and complex scripts (Arabic, Farsi, Thai...) will be disabled in FreeType.])])
3204       fi
3206       dnl harfbuzz support
3207       if test "${have_fribidi}" != "no"; then
3208         if test "${enable_harfbuzz}" != "no"; then
3209           PKG_CHECK_MODULES(HARFBUZZ, harfbuzz, [
3210             have_harfbuzz="yes"
3211             VLC_ADD_CPPFLAGS([skins2], [${HARFBUZZ_CFLAGS} -DHAVE_HARFBUZZ])
3212             VLC_ADD_LIBS([skins2], [${HARFBUZZ_LIBS}])
3213           ],[AC_MSG_WARN([${HARFBUZZ_PKG_ERRORS}. Support for complex scripts (Arabic, Farsi, Thai...) will be disabled in FreeType.])])
3214         fi
3215       fi
3216   ],[
3217   AS_IF([test -n "${enable_freetype}"],[
3218     AC_MSG_ERROR([${FREETYPE_PKG_ERRORS}. Install FreeType2 development or configure with --disable-freetype.])
3219     ])
3220   ])
3223 AM_CONDITIONAL([HAVE_FREETYPE], [test "${have_freetype}" = "yes"])
3224 AM_CONDITIONAL([HAVE_FONTCONFIG], [test "${have_fontconfig}" = "yes"])
3225 AM_CONDITIONAL([HAVE_FRIBIDI], [test "${have_fribidi}" = "yes"])
3226 AM_CONDITIONAL([HAVE_HARFBUZZ], [test "${have_harfbuzz}" = "yes"])
3230 dnl  QuartzText vout module (iOS/Mac OS)
3232 AC_ARG_ENABLE(macosx-quartztext,
3233   [  --enable-macosx-quartztext   Mac OS X quartz text module (default enabled on Mac OS X)])
3234 if test "x${enable_macosx_quartztext}" != "xno" &&
3235   (test "${SYS}" = "darwin" || test "${enable_macosx_quartztext}" = "yes")
3236 then
3237   VLC_ADD_PLUGIN([quartztext])
3241 dnl  SVG module (text rendering and image decoding)
3243 PKG_ENABLE_MODULES_VLC([SVG], [], [librsvg-2.0 >= 2.9.0], [SVG rendering library],[auto])
3244 PKG_ENABLE_MODULES_VLC([SVGDEC], [], [librsvg-2.0 >= 2.9.0 cairo >= 1.13.1], [SVG image decoder library],[auto])
3247 dnl  Windows DirectX module
3250 AC_ARG_ENABLE(directx,
3251   [AS_HELP_STRING([--enable-directx],
3252     [Microsoft DirectX support (default enabled on Windows)])],, [
3253   AS_IF([test "${SYS}" = "mingw32"], [
3254     enable_directx="yes"
3255   ], [
3256     enable_directx="no"
3257   ])
3259 have_directx="no"
3260 AS_IF([test "${enable_directx}" != "no"], [
3261   dnl DirectDraw
3262   AC_CHECK_HEADERS(ddraw.h, [
3263     have_directx="yes"
3264   ], [
3265     AC_MSG_ERROR([Cannot find DirectX headers!])
3266   ])
3268   dnl OpenGL
3269   AC_CHECK_HEADERS(GL/wglew.h, [
3270     VLC_ADD_PLUGIN([glwin32])
3271   ],, [
3272     #include <windows.h>
3273     #include <GL/gl.h>
3274   ])
3276   dnl Direct3D11
3277   AC_CHECK_HEADERS(d3d11.h, [
3278     VLC_ADD_PLUGIN([direct3d11])
3279   ])
3281   dnl Direct3D9
3282   AC_CHECK_HEADERS(d3d9.h, [
3283     VLC_ADD_PLUGIN([direct3d9])
3284   ])
3286   dnl Direct2D
3287   AC_CHECK_HEADERS(d2d1.h, [
3288     VLC_ADD_PLUGIN([direct2d])
3289   ])
3291 AM_CONDITIONAL([HAVE_DIRECTX], [test "$have_directx" = "yes"])
3294 dnl  Linux framebuffer module
3296 AC_CHECK_HEADER([linux/fb.h], [
3297   VLC_ADD_PLUGIN([fb])
3302 dnl  DirectFB module
3303 dnl  try to find using: 1 - given location; 2 - directfb-config; 3 - pkg-config
3304 dnl  TODO: support for static linking
3306 AC_ARG_ENABLE(directfb,
3307   [  --enable-directfb       DirectFB support (default disabled)])
3308 AC_ARG_WITH(directfb,
3309   [  --with-directfb=PATH    path to DirectFB headers and libraries])
3311 if test "${enable_directfb}" = "yes"; then
3312     have_directfb="false"
3313     CPPFLAGS_mydirectfb=
3314     LIBS_mydirectfb=
3315     if test "${with_directfb}" != "no" -a -n "${with_directfb}"; then
3316         dnl Trying the given location
3317         VLC_SAVE_FLAGS
3319         CPPFLAGS_new="-I${with_directfb}/include -D_REENTRANT -D_GNU_SOURCE"
3320         LIBS_new="-L${with_directfb}/lib/fusion/.libs/ -L${with_directfb}/lib/direct/.libs/ -L${with_directfb}/src/.libs/"
3322         CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_new}"
3323         LIBS="${LIBS} ${LIBS_new}"
3325         dnl FIXME: too obscure
3326         AC_CHECK_HEADER([directfb.h], [
3327             AC_CHECK_LIB([direct],[direct_initialize], [
3328                 AC_CHECK_LIB([fusion], [fusion_enter], [
3329                     AC_CHECK_LIB([directfb], [DirectFBInit], have_directfb="true", have_directfb="false")
3330                 ], have_directfb="false")
3331             ], have_directfb="false")
3332         ], have_directfb="false")
3334         VLC_RESTORE_FLAGS
3336         if test "${have_directfb}" = "true"; then
3337             LIBS_mydirectfb="${LIBS_new} -lz $LIBDL -ldirectfb -lfusion -ldirect -lpthread"
3338             CPPFLAGS_mydirectfb="${CPPFLAGS_new}"
3339         fi
3340     else
3341         dnl Look for directfb-config
3342         AC_PATH_PROG(DIRECTFB_CONFIG, directfb-config, no, ${PATH})
3343         if test "${DIRECTFB_CONFIG}" != "no"; then
3344             CPPFLAGS_mydirectfb="`${DIRECTFB_CONFIG} --cflags`"
3345             LIBS_mydirectfb="`${DIRECTFB_CONFIG} --libs`"
3346             have_directfb="true"
3347         else
3348             dnl Trying with pkg-config
3349             PKG_CHECK_MODULES(DIRECTFB, directfb, [
3350                 CPPFLAGS_mydirectfb="${DIRECTFB_CFLAGS}"
3351                 LIBS_mydirectfb="${DIRECTFB_LIBS}"
3352                 have_directfb="true"
3353                 ], [have_directfb="false"])
3354         fi
3355     fi
3356     if test "${have_directfb}" = "true"; then
3357         VLC_ADD_PLUGIN([directfb])
3358         VLC_ADD_CPPFLAGS([directfb],[${CPPFLAGS_mydirectfb}])
3359         VLC_ADD_LIBS([directfb],[${LIBS_mydirectfb}])
3360     else
3361         AC_MSG_ERROR([${DIRECTFB_PKG_ERRORS}.])
3362     fi
3366 dnl  AA plugin
3368 AC_ARG_ENABLE(aa,
3369   [  --enable-aa             aalib output (default disabled)])
3370 if test "${enable_aa}" = "yes"
3371 then
3372   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3373   if test "${have_aa}" = "true"
3374   then
3375     VLC_ADD_PLUGIN([aa])
3376   fi
3380 dnl  libcaca plugin
3382 PKG_ENABLE_MODULES_VLC([CACA], [], [caca >= 0.99.beta14], [libcaca output],[auto])
3385 dnl  OS/2 KVA plugin
3387 AC_ARG_ENABLE(kva,
3388   [AS_HELP_STRING([--enable-kva],
3389     [support the K Video Accelerator KVA (default enabled on OS/2)])],, [
3390   AS_IF([test "$SYS" = "os2"], [
3391     enable_kva="yes"
3392   ])
3394 have_kva="no"
3395 KVA_LIBS=""
3396 AS_IF([test "$enable_kva" != "no"], [
3397   AC_CHECK_HEADERS([kva.h], [
3398     have_kva="yes"
3399     AC_CHECK_LIB(kva, main, [
3400       KVA_LIBS="-lkva"
3401     ])
3402   ])
3404 AC_SUBST(KVA_LIBS)
3405 AM_CONDITIONAL([HAVE_KVA], [test "${have_kva}" = "yes"])
3408 dnl MMAL plugin
3410 AC_ARG_ENABLE(mmal,
3411   AS_HELP_STRING([--enable-mmal],
3412     [Multi-Media Abstraction Layer (MMAL) hardware plugin (default enable)]))
3413 if test "${enable_mmal}" != "no"; then
3414   VLC_SAVE_FLAGS
3415   LDFLAGS="${LDFLAGS} -L/opt/vc/lib -lvchostif"
3416   CPPFLAGS="${CPPFLAGS} -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
3417   AC_CHECK_HEADERS(interface/mmal/mmal.h,
3418     [ AC_CHECK_LIB(bcm_host, vc_tv_unregister_callback_full, [
3419         have_mmal="yes"
3420         VLC_ADD_PLUGIN([mmal])
3421         VLC_ADD_LDFLAGS([mmal],[ -L/opt/vc/lib ])
3422         VLC_ADD_CFLAGS([mmal],[ -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux ])
3423         VLC_ADD_LIBS([mmal],[ -lbcm_host -lmmal -lvchostif ]) ], [
3424           AS_IF([test "${enable_mmal}" = "yes"],
3425             [ AC_MSG_ERROR([Cannot find bcm library...]) ],
3426             [ AC_MSG_WARN([Cannot find bcm library...]) ])
3427           ],
3428         [])
3429     ] , [ AS_IF([test "${enable_mmal}" = "yes"],
3430       [ AC_MSG_ERROR([Cannot find development headers for mmal...]) ],
3431       [ AC_MSG_WARN([Cannot find development headers for mmal...]) ]) ])
3432   VLC_RESTORE_FLAGS
3434 AM_CONDITIONAL([HAVE_MMAL], [test "${have_mmal}" = "yes"])
3437 dnl  Audio plugins
3440 EXTEND_HELP_STRING([Audio plugins:])
3443 dnl  Pulseaudio module
3445 AC_ARG_ENABLE(pulse,
3446   [AS_HELP_STRING([--enable-pulse],
3447     [use the PulseAudio client library (default auto)])])
3448 have_pulse="no"
3449 AS_IF([test "${enable_pulse}" != "no"], [
3450   PKG_CHECK_MODULES([PULSE], [libpulse >= 1.0], [
3451     have_pulse="yes"
3452   ], [
3453     AS_IF([test "x${enable_pulse}" != "x"], [
3454       AC_MSG_ERROR([$PULSE_PKG_ERRORS. PulseAudio 1.0 or later required.])
3455     ])
3456   ])
3458 AM_CONDITIONAL([HAVE_PULSE], [test "${have_pulse}" = "yes"])
3461 dnl  ALSA module
3463 AC_ARG_ENABLE(alsa,
3464   [AS_HELP_STRING([--enable-alsa],
3465     [support the Advanced Linux Sound Architecture (default auto)])],, [
3466   AS_IF([test "$SYS" = "linux" -a "${have_pulse}" = "no"], [
3467     enable_alsa="yes"
3468   ])
3470 have_alsa="no"
3471 AS_IF([test "${enable_alsa}" != "no"], [
3472   PKG_CHECK_MODULES([ALSA], [alsa >= 1.0.24], [
3473     have_alsa="yes"
3474   ], [
3475     AS_IF([test "x${enable_alsa}" != "x"], [
3476       AC_MSG_ERROR([$ALSA_PKG_ERRORS. alsa-lib 1.0.24 or later required.])
3477     ])
3478   ])
3480 AM_CONDITIONAL([HAVE_ALSA], [test "${have_alsa}" = "yes"])
3483 dnl  Open Sound System module
3485 AC_ARG_ENABLE(oss,
3486   [AS_HELP_STRING([--enable-oss],
3487     [support the Open Sound System OSS (default enabled on FreeBSD/NetBSD/DragonFlyBSD)])],, [
3488   AS_IF([test "$SYS" = "mingw32" -o "$SYS" = "linux" -o "$SYS" = "openbsd"], [
3489     enable_oss="no"
3490   ])
3492 have_oss="no"
3493 OSS_LIBS=""
3494 AS_IF([test "$enable_oss" != "no"], [
3495   AC_CHECK_HEADERS([soundcard.h sys/soundcard.h], [
3496     have_oss="yes"
3497     AC_CHECK_LIB(ossaudio, main, [
3498       OSS_LIBS="-lossaudio"
3499     ])
3500   ])
3502 AC_SUBST(OSS_LIBS)
3503 AM_CONDITIONAL([HAVE_OSS], [test "${have_oss}" = "yes"])
3506 dnl  OpenBSD sndio module
3508 AC_ARG_ENABLE([sndio],
3509   [AS_HELP_STRING([--disable-sndio],
3510     [support the OpenBSD sndio (default auto)])],, [
3511   AS_IF([test "$SYS" = "openbsd"], [
3512     enable_sndio="yes"
3513   ])
3515 have_sndio="no"
3516 AS_IF([test "$enable_sndio" != "no"], [
3517   AC_CHECK_HEADER([sndio.h], [
3518     have_sndio="yes"
3519   ])
3521 AM_CONDITIONAL([HAVE_SNDIO], [test "${have_sndio}" = "yes"])
3524 dnl  Windows Audio Session plugin
3526 AC_ARG_ENABLE([wasapi],
3527   [AS_HELP_STRING([--enable-wasapi],
3528     [use the Windows Audio Session API (default auto)])
3530 have_wasapi="no"
3531 AS_IF([test "$enable_wasapi" != "no"], [
3532   AC_CHECK_HEADER([audioclient.h], [
3533     have_wasapi="yes"
3534   ], [
3535     AS_IF([test "x${enable_wasapi}" != "x"], [
3536       AC_MSG_ERROR([Windows Audio Session API not found.])
3537     ])
3538   ])
3540 AM_CONDITIONAL([HAVE_WASAPI], [test "${have_wasapi}" = "yes"])
3543 dnl  AudioQueue plugin
3545 AC_ARG_ENABLE(audioqueue,
3546   [  --enable-audioqueue     AudioQueue audio module (default disabled)])
3547 if test "${enable_audioqueue}" = "yes"
3548 then
3549   VLC_ADD_PLUGIN([audioqueue])
3553 dnl  JACK modules
3555 AC_ARG_ENABLE(jack,
3556   [AS_HELP_STRING([--disable-jack],
3557     [do not use jack (default auto)])])
3558 have_jack="no"
3559 AS_IF([test "${enable_jack}" != "no"], [
3560     PKG_CHECK_MODULES(JACK, jack >= 1.9.7,
3561       [ have_jack=yes ],
3562       [
3563       AC_MSG_WARN([${JACK_PKG_ERRORS}, trying jack1 instead])
3565       PKG_CHECK_MODULES(JACK, jack >= 0.120.1 jack < 1.0,
3566       [ have_jack=yes ],
3567       [
3568       AS_IF([test -n "${enable_jack}"],
3569          [AC_MSG_ERROR([${JACK_PKG_ERRORS}.])],
3570          [AC_MSG_WARN([${JACK_PKG_ERRORS}.])])
3571       ])
3572     ])
3574 AM_CONDITIONAL([HAVE_JACK], [test "${have_jack}" != "no"])
3577 dnl  OpenSLES Android
3579 AC_ARG_ENABLE(opensles,
3580   [  --enable-opensles       Android OpenSL ES audio module (default disabled)])
3581 if test "${HAVE_ANDROID}" = "1"; then
3582   if test "${enable_opensles}" = "yes"; then
3583       AC_CHECK_HEADERS(SLES/OpenSLES.h,
3584         [ VLC_ADD_PLUGIN([opensles_android]) ],
3585         [ AC_MSG_ERROR([cannot find OpenSLES headers])] )
3586   fi
3590 dnl libsamplerate plugin
3592 PKG_ENABLE_MODULES_VLC([SAMPLERATE], [], [samplerate], [Resampler with libsamplerate], [auto])
3595 dnl  OS/2 KAI plugin
3597 AC_ARG_ENABLE(kai,
3598   [AS_HELP_STRING([--enable-kai],
3599     [support the K Audio Interface KAI (default enabled on OS/2)])],, [
3600   AS_IF([test "$SYS" = "os2"], [
3601     enable_kai="yes"
3602   ])
3604 have_kai="no"
3605 KAI_LIBS=""
3606 AS_IF([test "$enable_kai" != "no"], [
3607   AC_CHECK_HEADERS([kai.h], [
3608     have_kai="yes"
3609     AC_CHECK_LIB(kai, main, [
3610       KAI_LIBS="-lkai"
3611     ])
3612   ])
3614 AC_SUBST(KAI_LIBS)
3615 AM_CONDITIONAL([HAVE_KAI], [test "${have_kai}" = "yes"])
3618 dnl  chromaprint audio track fingerprinter
3620 m4_pushdef([libchromaprint_version], 0.6.0)
3621 PKG_WITH_MODULES([CHROMAPRINT],[libchromaprint >= libchromaprint_version],
3622     VLC_ADD_PLUGIN([stream_out_chromaprint]),
3623     AS_IF([test "${enable_chromaprint}" = "yes"],
3624         [AC_MSG_ERROR(Library [libchromaprint >= libchromaprint_version] needed for [chromaprint] was not found)],
3625         [AC_MSG_WARN(Library [libchromaprint >= libchromaprint_version] needed for [chromaprint] was not found)]
3626          ),
3627     [(Chromaprint based audio fingerprinter)],[auto])
3628 m4_popdef([libchromaprint_version])
3631 dnl  Chromecast streaming support
3633 m4_pushdef([protobuf_lite_version], 2.5.0)
3634 AC_ARG_VAR(PROTOC, [protobuf compiler])
3635 AC_CHECK_PROGS(PROTOC, protoc, no)
3636 PKG_WITH_MODULES([CHROMECAST],[protobuf-lite >= protobuf_lite_version], [
3637     AS_IF([test "x${PROTOC}" != "xno"], [
3638         build_chromecast="yes"
3639     ], [
3640     AC_MSG_ERROR(protoc compiler needed for [chromecast] was not found)
3641     ])
3642 ], [
3643     AS_IF([test "${enable_chromecast}" = "yes"],
3644         AC_MSG_ERROR(Library [protobuf-lite >= protobuf_lite_version] needed for [chromecast] was not found),
3645         AC_MSG_WARN(Library [protobuf-lite >= protobuf_lite_version] needed for [chromecast] was not found)
3646     )
3647     enable_chromecast="no"
3648 ], [(Chromecast streaming support)], [auto])
3649 AM_CONDITIONAL([BUILD_CHROMECAST], [test "${build_chromecast}" = "yes"])
3650 m4_popdef([protobuf_lite_version])
3653 dnl  Interface plugins
3656 EXTEND_HELP_STRING([Interface plugins:])
3659 dnl QT
3661 AC_ARG_ENABLE(qt, [
3662   AS_HELP_STRING([--disable-qt], [Qt UI support (default enabled)])],, [
3663   AS_IF([test "${SYS}" = "darwin"], [
3664     enable_qt="no"
3665   ])
3667 AS_IF([test "${enable_qt}" != "no"], [
3668   PKG_CHECK_MODULES([QT], [Qt5Core >= 5.1.0 Qt5Widgets Qt5Gui], [
3669       PKG_CHECK_MODULES([QTX11], [Qt5X11Extras], [
3670           VLC_ADD_LIBS([qt4],[${QTX11_LIBS}])
3671           VLC_ADD_CXXFLAGS([qt4],[${QTX11_CFLAGS} -DQT5_HAS_X11])
3672       ],[
3673           AC_MSG_WARN([Not building Qt Interface with X11 helpers.])
3674       ])
3675       QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix Qt5Core)"
3676       QT_HOST_PATH="$(eval $PKG_CONFIG --variable=host_bins Qt5Core)"
3677       AC_PATH_PROGS(MOC, [moc-qt5 moc], moc, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3678       AC_PATH_PROGS(RCC, [rcc-qt5 rcc], rcc, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3679       AC_PATH_PROGS(UIC, [uic-qt5 uic], uic, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3680     ], [
3681       PKG_CHECK_MODULES([QT], [QtCore QtGui >= 4.6.0],, [
3682         AS_IF([test -n "${enable_qt}"],[
3683           AC_MSG_ERROR([${QT_PKG_ERRORS}.])
3684         ],[
3685           AC_MSG_WARN([${QT_PKG_ERRORS}.])
3686         ])
3687         enable_qt="no"
3688       ])
3689       QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix QtCore)"
3690       AC_PATH_PROGS(MOC, [moc-qt4 moc], moc, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3691       AC_PATH_PROG(RCC, rcc, rcc, [${QT_PATH}/bin ${CONTRIB_DIR}/bin])
3692       AC_PATH_PROGS(UIC, [uic-qt4 uic], uic, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3693     ])
3695 AS_IF([test "${enable_qt}" != "no"], [
3696   VLC_ADD_PLUGIN([qt4])
3697   ALIASES="${ALIASES} qvlc"
3699 AM_CONDITIONAL(ENABLE_QT4, [test "$enable_qt" != "no"])
3702 dnl Simple test for skins2 dependency
3704 AS_IF([test "$enable_qt" = "no"], [
3705   AS_IF([test "${enable_skins2}" = "yes"], [
3706     AC_MSG_ERROR([The skins2 module depends on the Qt4 interface. Without it you will not be able to open any dialog box from the interface, which makes the skins2 interface rather useless. Install the Qt4 development package or alternatively you can also configure with: --disable-qt4 --disable-skins2.])
3707   ], [
3708     enable_skins2="no"
3709     AC_MSG_WARN([The skins2 module depends on the Qt4 interface, Qt4 is not built so skins2 is disabled.])
3710   ])
3714 dnl Skins2 module
3716 AC_ARG_ENABLE(skins2,
3717   [AS_HELP_STRING([--enable-skins2], [skins interface module (default auto)])])
3718 AS_IF([test "${enable_skins2}" != "no"], [
3719   have_skins_deps="yes"
3721   dnl Win32
3722   AS_IF([test "${SYS}" = "mingw32"], [
3723     VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -DWIN32_SKINS])
3724     VLC_ADD_LIBS([skins2],[-lgdi32 -lole32 -luuid -lmsimg32])
3725   dnl MacOS
3726   ], [test "${SYS}" = "darwin"], [
3727     VLC_ADD_CPPFLAGS([skins2],[ -DMACOSX_SKINS])
3728     VLC_ADD_LIBS([skins2],[-Wl,-framework,Carbon])
3729   dnl OS/2
3730   ], [test "${SYS}" = "os2"], [
3731     VLC_ADD_CPPFLAGS([skins2],[ -DOS2_SKINS])
3732   dnl Linux/Unix
3733   ], [
3734     PKG_CHECK_MODULES([XPM], [xpm],, [have_skins_deps="no"])
3735     PKG_CHECK_MODULES([XINERAMA], [xinerama],, [have_skins_deps="no"])
3736     PKG_CHECK_MODULES([XEXT], [xext],, [have_skins_deps="no"])
3737     VLC_ADD_CPPFLAGS([skins2],[${X_CFLAGS} ${XEXT_CFLAGS} ${XPM_CFLAGS} -DX11_SKINS])
3738     VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} ${XEXT_LIBS} ${XPM_LIBS} ${XINERAMA_LIBS} -lX11])
3739   ])
3741   dnl for All OSes
3742   VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3744   dnl we need freetype
3745   AS_IF([test "${have_freetype}" != "yes"], [
3746     have_skins_deps="no"
3747   ])
3749   AS_IF([test "${have_skins_deps}" = "no"], [
3750     AS_IF([test "x${enable_skins2}" = "x"], [
3751       AC_MSG_WARN([Skins2 interface disabled due to missing dependencies.])
3752     ], [
3753       AC_MSG_ERROR([Skins2 interface requires FreeType, libxpm, libxext and libxinerama])
3754     ])
3755     enable_skins2="no"
3756   ], [
3757     VLC_ADD_PLUGIN([skins2])
3758     ALIASES="${ALIASES} svlc"
3759     enable_skins2="yes"
3760   ])
3762 AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes"])
3764 AC_ARG_ENABLE(libtar,
3765   [  --enable-libtar         libtar support for skins2 (default auto)])
3766 AS_IF([test "${enable_skins2}" = "yes" && test "${enable_libtar}" != "no"], [
3767   AC_CHECK_HEADERS(libtar.h, [
3768     VLC_ADD_LIBS([skins2],[-ltar])
3769   ])
3773 dnl  MacOS X gui module
3775 AC_ARG_ENABLE(macosx,
3776   [  --enable-macosx         Mac OS X gui support (default enabled on Mac OS X)])
3777 if test "x${enable_macosx}" != "xno" -a "${SYS}" = "darwin"
3778 then
3779   VLC_ADD_PLUGIN([macosx])
3781   if test ! -d ${CONTRIB_DIR}/BGHUDAppKit.framework
3782   then
3783     AC_MSG_ERROR([BGHUDAppKit framework is required and was not found in ${CONTRIB_DIR}])
3784   fi
3786 AM_CONDITIONAL(ENABLE_MACOSX_UI, [test "$enable_macosx" != "no"])
3789 dnl  MacOS X sparkle update support
3791 AC_ARG_ENABLE(sparkle,
3792   [  --enable-sparkle        Sparkle update support for OS X (default enabled on Mac OS X)])
3793 if test "x${enable_sparkle}" != "xno" -a "${HAVE_OSX}" = "1"
3794 then
3795   if test ! -d ${CONTRIB_DIR}/Sparkle.framework
3796   then
3797     AC_MSG_ERROR([Sparkle framework is required and was not found in ${CONTRIB_DIR}])
3798   fi
3800   AC_DEFINE([HAVE_SPARKLE], [1], [Define to 1 if sparkle is enabled.])
3802 AM_CONDITIONAL(HAVE_SPARKLE, [test "$enable_sparkle" != "no"])
3806 dnl  Minimal Mac OS X module
3808 AC_ARG_ENABLE(minimal-macosx,
3809   [  --enable-minimal-macosx Minimal Mac OS X support (default disabled)])
3810 if test "${enable_minimal_macosx}" = "yes" -a "${SYS}" = "darwin"
3811 then
3812   VLC_ADD_PLUGIN([minimal_macosx])
3816 dnl  MacOS X dialog provider
3818 AC_ARG_ENABLE(macosx-dialog-provider,
3819   [  --enable-macosx-dialog-provider Mac OS X dialog module (default enabled on Mac OS X)])
3820 if test "x${enable_macosx_dialog_provider}" != "xno" &&
3821   (test "${SYS}" = "darwin" || test "${enable_macosx_dialog_provider}" = "yes")
3822 then
3823   VLC_ADD_PLUGIN([macosx_dialog_provider])
3827 dnl  ncurses module
3829 AC_ARG_ENABLE(ncurses,
3830 [AS_HELP_STRING([--disable-ncurses],[ncurses text-based interface (default auto)])])
3831 have_ncurses="no"
3832 AS_IF([test "${enable_ncurses}" != "no"] ,[
3833   PKG_CHECK_MODULES([NCURSES], [ncursesw], [
3834     have_ncurses="yes"
3835     ALIASES="${ALIASES} nvlc"
3836   ], [
3837     AS_IF([test -n "${enable_ncurses}"], [
3838       AC_MSG_ERROR([${NCURSES_PKG_ERRORS}.])
3839     ])
3840   ])
3842 AM_CONDITIONAL([HAVE_NCURSES], [test "${have_ncurses}" = "yes"])
3845 dnl  Lirc plugin
3847 AC_ARG_ENABLE(lirc,
3848   [  --enable-lirc           lirc support (default disabled)])
3849 have_lirc="no"
3850 AS_IF([test "${enable_lirc}" = "yes"], [
3851   AC_CHECK_HEADER(lirc/lirc_client.h, [
3852     AC_CHECK_LIB(lirc_client, lirc_init, [
3853       have_lirc="true"
3854     ])
3855   ])
3857 AM_CONDITIONAL([HAVE_LIRC], [test "${have_lirc}" = "yes"])
3859 EXTEND_HELP_STRING([Visualisations and Video filter plugins:])
3861 dnl  goom visualization plugin
3863 PKG_ENABLE_MODULES_VLC([GOOM], [], [libgoom2], [goom visualization plugin], [auto])
3866 dnl libprojectM visualization plugin
3868 AC_ARG_ENABLE(projectm,
3869   [  --enable-projectm       projectM visualization plugin (default enabled)])
3870 AS_IF([test "${enable_projectm}" != "no"],
3871   [
3872     PKG_CHECK_MODULES(PROJECTM, libprojectM,
3873     [
3874       VLC_ADD_PLUGIN([projectm])
3875       PKG_CHECK_EXISTS([libprojectM >= 2.0.0],
3876         [ AC_DEFINE([HAVE_PROJECTM2], 1, [Define to 1 if using libprojectM 2.x]) ],
3877         [ AC_MSG_WARN( [Using libprojectM version 1] )
3878       ])
3879     ],[
3880       AC_MSG_WARN([${PROJECTM_PKG_ERRORS}.])
3881     ])
3882   ])
3885 dnl Vovoid VSXu visualization plugin
3887 AC_ARG_ENABLE(vsxu,
3888   [  --enable-vsxu           Vovoid VSXu visualization plugin (default auto)])
3889 AS_IF([test "${enable_vsxu}" != "no"],
3890   [
3891     PKG_CHECK_MODULES(VSXU, libvsxu,
3892     [
3893       VLC_ADD_PLUGIN([vsxu])
3894     ],[
3895       AC_MSG_WARN([${VSXU_PKG_ERRORS}.])
3896     ])
3897   ])
3899 EXTEND_HELP_STRING([Service Discovery plugins:])
3901 dnl  Bonjour services discovery
3902 PKG_ENABLE_MODULES_VLC([BONJOUR], [], [avahi-client >= 0.6], [Bonjour services discovery], [auto])
3905 dnl  libudev services discovery
3906 PKG_ENABLE_MODULES_VLC([UDEV], [], [libudev >= 142], [Linux udev services discovery], [auto])
3909 dnl MTP devices services discovery
3910 PKG_ENABLE_MODULES_VLC([MTP], [mtp access_mtp], [libmtp >= 1.0.0], [MTP devices support], [auto])
3913 dnl UPnP Plugin (Intel SDK)
3915 PKG_ENABLE_MODULES_VLC([UPNP], [upnp], [libupnp], [Intel UPNP SDK],[auto])
3917 EXTEND_HELP_STRING([Misc options:])
3920 dnl  libxml2 module
3922 PKG_ENABLE_MODULES_VLC([LIBXML2], [xml], [libxml-2.0 >= 2.5], [libxml2 support],[auto])
3926 dnl libgcrypt
3928 AC_ARG_ENABLE(libgcrypt,
3929   [  --disable-libgcrypt     gcrypt support (default enabled)])
3930 # require libgcrypt >= 1.6.0
3931 AS_IF([test "${enable_libgcrypt}" != "no"], [
3932   AC_TRY_COMPILE([
3933 #include <gcrypt.h>
3934 #if GCRYPT_VERSION_NUMBER < 0x010600
3935 #error
3936 #endif],
3937   [], [
3938     have_libgcrypt="yes"
3939     AC_DEFINE([HAVE_GCRYPT], 1, [Defined if having gcrypt])
3940     GCRYPT_CFLAGS="`libgcrypt-config --cflags`"
3941     GCRYPT_LIBS="`libgcrypt-config --libs`"
3942   ], [
3943     AS_IF([test "${enable_libgcrypt}" == "yes"], [
3944       AC_MSG_ERROR([libgcrypt version 1.6.0 or higher not found. Install libgcrypt or pass --disable-libgcrypt.])
3945     ])
3946   ])
3949 AC_SUBST(GCRYPT_CFLAGS)
3950 AC_SUBST(GCRYPT_LIBS)
3951 AM_CONDITIONAL([HAVE_GCRYPT], [test "${have_libgcrypt}" = "yes"])
3954 dnl TLS/SSL
3956 AC_ARG_ENABLE(gnutls,
3957   [  --enable-gnutls         GNU TLS TLS/SSL support (default enabled)])
3958 AS_IF([test "${enable_gnutls}" != "no"], [
3959   PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.2.0], [
3960     VLC_ADD_PLUGIN([gnutls])
3961   ], [
3962     AS_IF([test -n "${enable_gnutls}"], [
3963       AC_MSG_ERROR([${GNUTLS_PKG_ERRORS}.)])
3964     ])
3965   ])
3970 dnl Taglib plugin
3972 AC_ARG_ENABLE(taglib,
3973   [AS_HELP_STRING([--disable-taglib],
3974     [do not use TagLib (default enabled)])])
3975 AS_IF([test "${enable_taglib}" != "no"], [
3976   PKG_CHECK_MODULES(TAGLIB, taglib >= 1.9, [
3977     VLC_ADD_PLUGIN([taglib])
3978   ], [
3979     AC_MSG_WARN([${TAGLIB_PKG_ERRORS}.])])
3983 dnl  Developers helper modules (should be hidden from configure help)
3985 AC_ARG_ENABLE(devtools, [], [], [enable_devtools="no"])
3986 AS_IF([test "${enable_devtools}" != "no"], [
3987   VLC_ADD_PLUGIN([accesstweaks])
3991 dnl update checking system
3993 AC_ARG_ENABLE(update-check,
3994   [  --enable-update-check   update checking system (default disabled)])
3995 if test "${enable_update_check}" = "yes"
3996 then
3997   if test "${have_libgcrypt}" != "yes"
3998   then
3999     AC_MSG_ERROR([libgcrypt is required for update checking system])
4000   fi
4001   VLC_ADD_LIBS([libvlccore], [${GCRYPT_LIBS}])
4002   VLC_ADD_CFLAGS([libvlccore], [${GCRYPT_CFLAGS}])
4003   AC_DEFINE([UPDATE_CHECK], 1, [Define if you want to use the VLC update mechanism])
4007 dnl Growl notification plugin
4009 AC_ARG_ENABLE(growl,
4010   [  --enable-growl          growl notification plugin (default disabled)],,
4011   [enable_growl=no])
4012 AS_IF([test "${enable_growl}" != "no"], [
4013     AC_CHECK_HEADERS(${CONTRIB_DIR}/Growl.framework/Versions/A/Headers/Growl.h, [
4014       VLC_ADD_PLUGIN([growl])
4015       VLC_ADD_LIBS([growl], [-F${CONTRIB_DIR} -Wl,-framework,Growl,-framework,Foundation])
4016       VLC_ADD_OBJCFLAGS([growl], [-F${CONTRIB_DIR}])
4017       VLC_ADD_OBJCFLAGS([growl], [-fobjc-exceptions] )
4018     ])
4019   ]
4023 dnl Libnotify notification plugin
4025 PKG_ENABLE_MODULES_VLC([NOTIFY], [], [libnotify gtk+-2.0], [libnotify notification], [auto])
4028 dnl  Endianness check
4030 AC_C_BIGENDIAN
4031 AS_IF([test "${ac_cv_c_bigendian}" = "yes"], [
4032   DEFS_BIGENDIAN="-DWORDS_BIGENDIAN=1"
4033 ], [
4034   DEFS_BIGENDIAN=""
4036 AC_SUBST(DEFS_BIGENDIAN)
4039 dnl Where to install KDE solid .desktop
4041 AC_ARG_VAR([KDE4_CONFIG], [kde4-config utility])
4042 AS_IF([test "x$KDE4_CONFIG" = "x"], [
4043   KDE4_CONFIG="kde4-config"
4046 AC_ARG_WITH(kde-solid,
4047   AS_HELP_STRING([--with-kde-solid=PATH],
4048                  [KDE Solid actions directory (auto)]),, [
4050 if test "${SYS}" != "mingw32" -a "${SYS}" != "darwin" ; then
4051   with_kde_solid="yes"
4054 soliddatadir=""
4055 AS_IF([test "${with_kde_solid}" != "no"], [
4056   AS_IF([test "${with_kde_solid}" = "yes"], [
4057     kde4datadir="`${KDE4_CONFIG} --install data`"
4058     AS_IF([test "x$kde4datadir" = "x"], [kde4datadir='${datadir}/kde4/apps'])
4059     soliddatadir="${kde4datadir}/solid/actions"
4060   ], [
4061     soliddatadir="${with_kde_solid}"
4062   ])
4064 AC_SUBST(soliddatadir)
4065 AM_CONDITIONAL(KDE_SOLID, [test "x${soliddatadir}" != "x"])
4067 EXTEND_HELP_STRING([Components:])
4070 dnl  the VLC binary
4072 AC_ARG_ENABLE(vlc,
4073   [  --enable-vlc            build the VLC media player (default enabled)])
4074 AM_CONDITIONAL(BUILD_VLC, [test "${enable_vlc}" != "no"])
4076 AC_ARG_ENABLE(macosx-vlc-app,
4077   [  --enable-macosx-vlc-app build the VLC media player (default enabled on Mac OS X)])
4078 AM_CONDITIONAL(BUILD_MACOSX_VLC_APP, [test "${enable_macosx_vlc_app}" != "no" &&
4079     (test "${SYS}" = "darwin" || test "${enable_macosx_vlc_app}" = "yes") ])
4082 dnl  Stuff used by the program
4084 VERSION_MESSAGE="${VERSION} ${CODENAME}"
4085 COPYRIGHT_MESSAGE="Copyright © ${COPYRIGHT_YEARS} the VideoLAN team"
4086 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION_MESSAGE}", [Simple version string])
4087 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "${COPYRIGHT_MESSAGE}", [Copyright string])
4088 AC_DEFINE_UNQUOTED(COPYRIGHT_YEARS, "${COPYRIGHT_YEARS}", [The copyright years])
4089 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4090 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,${VERSION_MAJOR}, [version major number])
4091 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,${VERSION_MINOR}, [version minor number])
4092 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,${VERSION_REVISION}, [version revision number])
4093 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,${VERSION_EXTRA}, [version extra number])
4094 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_DEV,"${VERSION_DEV}", [version development string])
4095 AC_SUBST(COPYRIGHT_MESSAGE)
4096 AC_SUBST(VERSION_MESSAGE)
4097 AC_SUBST(VERSION_MAJOR)
4098 AC_SUBST(VERSION_MINOR)
4099 AC_SUBST(VERSION_REVISION)
4100 AC_SUBST(VERSION_EXTRA)
4101 AC_SUBST(COPYRIGHT_YEARS)
4102 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami|sed -e 's/\\\/\\\\\\\/g'`", [user who ran configure])
4103 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname -f 2>/dev/null || hostname`", [host which ran configure])
4104 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1 | sed -e 's/ *$//'`", [compiler])
4106 dnl  Handle substvars that use $(top_srcdir)
4108 CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/include ${CPPFLAGS}"
4111 dnl  Configuration is finished
4113 AC_SUBST(SYS)
4114 AC_SUBST(ARCH)
4115 AC_SUBST(ALIASES)
4116 AC_SUBST(ASM)
4117 AC_SUBST(MOC)
4118 AC_SUBST(RCC)
4119 AC_SUBST(UIC)
4120 AC_SUBST(WINDRES)
4121 AC_SUBST(WINE_SDK_PATH)
4122 AC_SUBST(LIBEXT)
4123 AC_SUBST(AM_CPPFLAGS)
4124 AC_SUBST(MACOSX_DEPLOYMENT_TARGET)
4125 AC_SUBST(FILE_LIBVLCCORE_DLL)
4126 AC_SUBST(FILE_LIBVLC_DLL)
4128 AC_CONFIG_FILES([
4129   Makefile
4130   doc/Makefile
4131   modules/Makefile
4132   m4/Makefile
4133   po/Makefile.in
4134   share/Makefile
4135   compat/Makefile
4136   src/Makefile
4137   lib/Makefile
4138   bin/Makefile
4139   test/Makefile
4140   modules/gui/macosx/Makefile
4141   modules/gui/qt4/Makefile
4142   modules/gui/skins2/Makefile
4143   modules/hw/mmal/Makefile
4146 AM_COND_IF([HAVE_WIN32], [
4147   AC_CONFIG_FILES([
4148     extras/package/win32/NSIS/spad.nsi
4149     extras/package/win32/NSIS/vlc.win32.nsi
4150     extras/package/win32/msi/config.wxi
4151   ])
4154 AM_COND_IF([HAVE_DARWIN], [
4155   AC_CONFIG_FILES([
4156     extras/package/macosx/Info.plist
4157     extras/package/macosx/Resources/English.lproj/InfoPlist.strings
4158   ])
4161 dnl Generate makefiles
4162 AC_OUTPUT
4164 dnl Do we have to use make or gmake ?
4165 if make --version 2>&1|grep -q GNU
4166 then
4167     # GNU make, all seems good
4168     MAKE=make
4169 else
4170     # Known GNU make alias (on BSD)
4171     MAKE=gmake
4173 dnl Shortcut to nice compile message
4174 if test -n $SHELL; then
4175   SHELL=${CONFIG_SHELL-/bin/sh}
4177 rm -f compile
4178 compile_top_srcdir=`sed -ne "s/^top_srcdir *= *//p" < Makefile`
4179 echo "#! $SHELL
4180 rm -f .error\$\$
4181 ERROR=0
4182 export PATH=\"$PATH\" LANG=C
4183 ($MAKE V=1 \$@ 2>&1 || touch .error\$\$)| $compile_top_srcdir/extras/buildsystem/make.pl
4184 test -f .error\$\$ && ERROR=1
4185 rm -f .error\$\$
4186 exit \$ERROR" >compile
4187 chmod a+x compile
4189 echo "
4190 libvlc configuration
4191 --------------------
4192 version               : ${VERSION}
4193 system                : ${SYS}
4194 architecture          : ${ARCH}
4195 optimizations         : ${enable_optimizations}"
4196 if test "${enable_vlc}" != "no"; then
4197 echo "vlc aliases           :${ALIASES}"
4198 else
4199 echo "build vlc executable  : no"
4201 echo "
4202 To build vlc and its plugins, type \`$MAKE', or \`./compile' if you like nice colors."