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