skins2: os2: prepend std:: explicitly
[vlc.git] / configure.ac
blobbf6d4166fd0780d72761273119baddd1f6e89f7f
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   symbian*)
295     SYS=symbian
296     ;;
297   *os2*)
298     SYS=os2
299     LDFLAGS="${LDFLAGS} -Zomf -Zbin-files -Zargs-wild -Zhigh-mem"
300     AC_LIBOBJ([freeaddrinfo])
301     ;;
302   *)
303     SYS="${host_os}"
304     ;;
305 esac
306 AM_CONDITIONAL(HAVE_DARWIN,  test "${SYS}" = "darwin")
307 AM_CONDITIONAL(HAVE_LINUX,   test "${SYS}" = "linux")
308 AM_CONDITIONAL(HAVE_OS2,     test "${SYS}" = "os2")
309 AM_CONDITIONAL(HAVE_WIN32,   test "${SYS}" = "mingw32")
310 AM_CONDITIONAL(HAVE_WIN64,   test "${HAVE_WIN64}" = "1")
311 AM_CONDITIONAL(HAVE_SYMBIAN, test "${SYS}" = "symbian")
312 AM_CONDITIONAL(HAVE_IOS,   test "${HAVE_IOS}" = "1")
313 AM_CONDITIONAL(HAVE_OSX,   test "${HAVE_OSX}" = "1")
315 AC_SUBST(YASMFLAGS)
318 dnl Sadly autoconf does not think about testing foo.exe when ask to test
319 dnl for program foo on win32
320 case "${build_os}" in
321     cygwin|msys)
322         ac_executable_extensions=".exe"
323     ;;
324     *)
325     ;;
326 esac
328 dnl Android is linux, but a bit different
329 AS_IF([test "$SYS" = linux],[
330     AC_MSG_CHECKING([for an Android system])
331     AC_PREPROC_IFELSE([AC_LANG_PROGRAM(
332         [[#ifndef __ANDROID__
333          # error Not Android
334          #endif
335         ]],[[;]])
336     ],[
337       HAVE_ANDROID="1"
338       AC_MSG_RESULT([yes])
339     ],[
340       AC_MSG_RESULT([no])
341     ])
343 AM_CONDITIONAL(HAVE_ANDROID, test "${HAVE_ANDROID}" = "1")
347 dnl  Check for the contrib directory
349 AC_ARG_WITH(contrib,
350   [AS_HELP_STRING([--with-contrib[=DIR]],
351     [search for 3rd party libraries in DIR/include and DIR/lib])
353 AC_MSG_CHECKING([for 3rd party libraries path])
354 AS_IF([test -z "${with_contrib}" || test "${with_contrib}" = "yes"], [
355   CONTRIB_DIR="${srcdir}/contrib/${host}"
356   AS_IF([test ! -d "${CONTRIB_DIR}"], [
357     echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
358     CONTRIB_DIR="${srcdir}/contrib/`$CC -dumpmachine`"
359     AS_IF([test ! -d "${CONTRIB_DIR}"], [
360       echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
361       CONTRIB_DIR="${srcdir}/extras/contrib/hosts/${host}"
362       AS_IF([test ! -d "${CONTRIB_DIR}"], [
363         echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
364         CONTRIB_DIR="${srcdir}/extras/contrib/hosts/`$CC -dumpmachine`"
365         AS_IF([test ! -d "${CONTRIB_DIR}"], [
366           echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
367           CONTRIB_DIR=""
368           AC_MSG_RESULT([not found])
369         ])
370       ])
371     ])
372   ])
373 ], [
374   AS_IF([test "${with_contrib}" != "no"], [
375     CONTRIB_DIR="${with_contrib}"
376   ], [
377     CONTRIB_DIR=""
378     AC_MSG_RESULT([disabled])
379   ])
381 AS_IF([test -n "${CONTRIB_DIR}"], [
382   AS_IF([test -d "${CONTRIB_DIR}/lib"],[
383     CONTRIB_DIR=`cd "${CONTRIB_DIR}" && pwd`
384   ], [
385     echo "${CONTRIB_DIR}/lib not found" >&AS_MESSAGE_LOG_FD
386     CONTRIB_DIR=""
387     AC_MSG_RESULT([not usable])
388   ])
391 AS_IF([test -n "${CONTRIB_DIR}"], [
392   AC_MSG_RESULT([${CONTRIB_DIR}])
393   export PATH=${CONTRIB_DIR}/bin:$PATH
394   CPPFLAGS="${CPPFLAGS} -I${CONTRIB_DIR}/include"
395   CFLAGS="${CFLAGS} -I${CONTRIB_DIR}/include"
396   CXXFLAGS="${CXXFLAGS} -I${CONTRIB_DIR}/include"
397   OBJCFLAGS="${OBJCFLAGS} -I${CONTRIB_DIR}/include"
398   export PKG_CONFIG_PATH="${CONTRIB_DIR}/lib/pkgconfig:$PKG_CONFIG_PATH"
399   LDFLAGS="${LDFLAGS} -L${CONTRIB_DIR}/lib"
401   AS_IF([test "${SYS}" = "darwin"], [
402     export LD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$LD_LIBRARY_PATH"
403     export DYLD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$DYLD_LIBRARY_PATH"
404   ])
405 ], [
406   AS_IF([test -n "${with_contrib}" && test "${with_contrib}" != "no"], [
407     AC_MSG_ERROR([Third party libraries not found!])
408   ])
410 AC_SUBST(CONTRIB_DIR)
412 dnl Add extras/tools to the PATH
413 TOOLS_DIR="${srcdir}/extras/tools/build/bin"
414 AS_IF([test -d "${TOOLS_DIR}"], [
415     TOOLS_DIR=`cd "${TOOLS_DIR}" && pwd`
416     export PATH="${TOOLS_DIR}":$PATH
420 dnl  Libtool
421 dnl  It's very bad, but our former custom system was worst
422 dnl  -- Courmisch
425 dnl override platform specific check for dependent libraries
426 dnl otherwise libtool linking of shared libraries will
427 dnl fail on anything other than pass_all.
428 AC_CACHE_VAL(lt_cv_deplibs_check_method,
429     [lt_cv_deplibs_check_method=pass_all])
431 LT_INIT([dlopen win32-dll shared disable-static])
432 LT_LANG([C++])
433 LT_LANG([Windows Resource])
435 DOLT
437 lt_cv_deplibs_check_method=pass_all
439 AS_IF([test "${enable_shared}" = "no" -a "${enable_vlc}" != "no"], [
440   AC_MSG_ERROR([VLC is based on plugins. Shared libraries cannot be disabled.])
444 dnl Gettext stuff
446 AM_GNU_GETTEXT_VERSION([0.19.2])
447 AM_GNU_GETTEXT([external], [need-ngettext])
450 dnl Iconv stuff
452 AM_ICONV
455 dnl checks for mingw
456 AS_IF([test "${SYS}" = "mingw32"], [
458 dnl Check for broken versions of mingw-runtime compatability library
459     AC_MSG_CHECKING(for broken mingw-runtime)
460     AC_PREPROC_IFELSE([AC_LANG_SOURCE([
461 #include <_mingw.h>
462 #if defined(__MINGW64_VERSION_MAJOR)
463 # if __MINGW64_VERSION_MAJOR < 3
464 #  error Attempting to use mingw-runtime with broken vsnprintf and direct2d support
465 # endif
466 #elif __MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION < 15
467 # error Attempting to use mingw-runtime with broken vsnprintf support
468 #endif
469     ])], [
470         AC_MSG_RESULT([ok])
471     ], [
472         AC_MSG_RESULT([present])
473         AC_MSG_ERROR([LibVLC requires mingw-runtime version 3.15 or higher, or mingw-w64 version 3.0 or higher!])
474     ])
476     dnl force use of mingw provided c99 *printf over msvcrt
477     CPPFLAGS="${CPPFLAGS} -D__USE_MINGW_ANSI_STDIO=1"
479     dnl Add WinMainCRTStartup entry point to show it's a WinMain application
480     VLC_ADD_LDFLAGS([vlc],[-mwindows])
482     dnl Check for the need to include the mingwex lib for mingw32
483     VLC_SAVE_FLAGS
484     AC_CHECK_LIB(mingwex,opendir,
485         AC_CHECK_LIB(mingw32,opendir,,
486             [VLC_ADD_LIBS([libvlccore],[-lmingwex])])
487     )
488     VLC_RESTORE_FLAGS
490     dnl Check for fnative-struct or mms-bitfields support for mingw32
491     VLC_SAVE_FLAGS
492     CFLAGS="${CFLAGS} -mms-bitfields"
493     CXXFLAGS="${CXXFLAGS} -mms-bitfields"
494     AC_CACHE_CHECK([if \$CC accepts -mms-bitfields],
495         [ac_cv_c_mms_bitfields],
496         [AC_TRY_COMPILE([],,ac_cv_c_mms_bitfields=yes, ac_cv_c_mms_bitfields=no)])
497     if test "${ac_cv_c_mms_bitfields}" = "no"; then
498         VLC_RESTORE_FLAGS
499         CFLAGS="${CFLAGS} -fnative-struct"
500         CXXFLAGS="${CXXFLAGS} -fnative-struct"
501         AC_CACHE_CHECK([if \$CC accepts -fnative-struct],
502             [ac_cv_c_fnative_struct],
503             [AC_TRY_COMPILE([],,ac_cv_c_fnative_struct=yes, ac_cv_c_fnative_struct=no)])
504         "${ac_cv_c_fnative_struct}" = "no" && VLC_RESTORE_FLAGS
505     fi
508 AC_ARG_ENABLE(winstore_app,
509      AS_HELP_STRING([--enable-winstore-app],
510                     [Build targetted for Windows Store apps (default disabled)]))
512 vlc_winstore_app=0
513 AS_IF([test "${SYS}" = "mingw32"],[
514   AS_IF([test "${enable_winstore_app}" = "yes"], [
515     vlc_winstore_app=1
516      VLC_ADD_LIBS([libvlccore], [-lole32 -lruntimeobject])
517     ],[
518      VLC_ADD_LIBS([libvlccore],[-lwinmm])
519     ])
520   ])
521 AC_DEFINE_UNQUOTED(VLC_WINSTORE_APP, ${vlc_winstore_app}, [Define to 1 if you want to build for Windows Store apps])
522 AM_CONDITIONAL([HAVE_WINSTORE], [test "$vlc_winstore_app" = "1"])
526 dnl Buggy glibc prevention. Purposedly not cached.
527 dnl See sourceware.org bugs 5058 and 5443.
528 dnl Ubuntu alone has 20 bug numbers for this...
530 AC_MSG_CHECKING(for buggy GNU/libc versions)
531 AC_PREPROC_IFELSE([AC_LANG_SOURCE([
532 #include <limits.h>
533 #if defined (__GLIBC__) && (__GLIBC__ == 2) \
534   && (__GLIBC_MINOR__ >= 5) && (__GLIBC_MINOR__ <= 7)
535 # error GNU/libc with dcgettext killer bug!
536 #endif
537 ])], [
538   AC_MSG_RESULT([not present])
539 ], [
540   AC_MSG_RESULT([found])
541   AS_IF([test "x${enable_nls}" != "xno"], [
542     AC_MSG_ERROR([Buggy GNU/libc (version 2.5 - 2.7) present. VLC would crash; there is no viable
543 work-around for this. Check with your distribution vendor on how to update the
544 glibc run-time. Alternatively, build with --disable-nls.])
545   ])
548 dnl Plugin compilation stuff
550 VLC_LIBRARY_SUFFIX
552 dnl Check for system libs needed
553 need_libc=false
555 dnl Check for usual libc functions
556 AC_CHECK_DECLS([nanosleep],,,[#include <time.h>])
557 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])
558 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])
559 AC_CHECK_FUNCS(fdatasync,,
560   [AC_DEFINE(fdatasync, fsync, [Alias fdatasync() to fsync() if missing.])
563 dnl mingw64 implements those as static inline, not functions with C linkage
564 VLC_REPLACE_DECL([asprintf], [#include <stdio.h>])
565 VLC_REPLACE_DECL([vasprintf], [#include <stdio.h>])
566 VLC_REPLACE_DECL([gmtime_r], [#include <time.h>])
567 VLC_REPLACE_DECL([localtime_r], [#include <time.h>])
569 dnl C11 static_assert()
570 AC_MSG_CHECKING([for static_assert in assert.h])
571 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <assert.h>], [
572 static_assert(1, "The impossible happened.");
573 ])], [
574   AC_MSG_RESULT([yes])
575   AC_DEFINE([HAVE_STATIC_ASSERT], [1], [Define to 1 if <assert.h> defines static_assert.])
576 ], [
577   AC_MSG_RESULT([no])
580 # Windows CE does not have strcoll()
581 AC_FUNC_STRCOLL
583 dnl Check for non-standard system calls
584 case "$SYS" in
585   "linux")
586     AC_CHECK_FUNCS([accept4 pipe2 eventfd vmsplice sched_getaffinity])
587     ;;
588   "mingw32")
589     AC_CHECK_FUNCS([_lock_file])
590     ;;
591 esac
593 AH_BOTTOM([#include <vlc_fixups.h>])
595 dnl Check for struct pollfd
596 AC_CHECK_TYPES([struct pollfd],,,
597 [#include <sys/types.h>
598 #if HAVE_POLL
599 # include <poll.h>
600 #elif defined (_WIN32)
601 # include <winsock2.h>
602 #endif
605 dnl Checks for socket stuff
606 VLC_SAVE_FLAGS
607 SOCKET_LIBS=""
608 AC_SEARCH_LIBS(connect, [socket], [
609   AS_IF([test "$ac_cv_search_connect" != "none required"], [
610     SOCKET_LIBS="$ac_cv_search_connect"
611   ])
612 ], [
613   AS_IF([test "${SYS}" = "mingw32"], [
614     SOCKET_LIBS="-lws2_32"
615   ])
618 AC_SEARCH_LIBS([inet_pton], [nsl], [
619  AS_IF([test "$ac_cv_search_inet_pton" != "none required"], [
620     SOCKET_LIBS="$ac_cv_search_inet_pton $SOCKET_LIBS"
621   ])
622 ],, [${SOCKET_LIBS}])
624 LIBS="${LIBS} ${SOCKET_LIBS}"
625 AC_LINK_IFELSE([
626     AC_LANG_PROGRAM([#ifdef _WIN32
627         # if _WIN32_WINNT < 0x600
628         #  error Needs vista+
629         # endif
630         #include <ws2tcpip.h>
631         #else
632         #include <sys/socket.h>
633         #include <arpa/inet.h>
634         #endif], [
635         char dst[[sizeof(struct in_addr)]];
636         inet_pton(AF_INET, "127.0.0.1", dst);
637     ])],[AC_DEFINE([HAVE_INET_PTON],[1],[Define to 1 if you have inet_pton function])],[AC_LIBOBJ([inet_pton])])
638 AC_CHECK_FUNCS([if_nameindex if_nametoindex])
639 VLC_RESTORE_FLAGS
640 AC_SUBST(SOCKET_LIBS)
642 dnl Check for socklen_t
643 AH_TEMPLATE(socklen_t, [Define to `int' if <sys/socket.h> does not define.])
644 AC_CACHE_CHECK([for socklen_t in sys/socket.h], dnl ` (fix VIM syntax highlight
645 ac_cv_type_socklen_t,
646 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
647 [#include <sys/types.h>
648 #ifdef _WIN32
649 # include <winsock2.h>
650 # include <ws2tcpip.h>
651 #else
652 # include <sys/socket.h>
653 #endif]], [[socklen_t len; len = 0;]])],
654 ac_cv_type_socklen_t=yes,
655 ac_cv_type_socklen_t=no)])
656 AS_IF([test "$ac_cv_type_socklen_t" = no],
657  [AC_DEFINE(socklen_t, int)])
659 dnl Check for struct sockaddr_storage
660 AH_TEMPLATE(sockaddr_storage, [Define to `sockaddr' if <sys/socket.h> does not define.]) dnl ` (fix VIM syntax highlight
661 AH_TEMPLATE(ss_family, [Define to `sa_family' if <sys/socket.h> does not define.]) dnl ` (fix VIM syntax highlight
662 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_struct_sockaddr_storage,
663   [AC_TRY_COMPILE(
664     [#include <sys/types.h>
665      #if defined( _WIN32 )
666      # include <winsock2.h>
667      #else
668      # include <sys/socket.h>
669      #endif], [struct sockaddr_storage addr;],
670      ac_cv_struct_sockaddr_storage=yes,
671      ac_cv_struct_sockaddr_storage=no)])
672 AS_IF([test "${ac_cv_struct_sockaddr_storage}" = no], [
673   AC_DEFINE(sockaddr_storage, sockaddr)
674   AC_DEFINE(ss_family, sa_family)
677 dnl FreeBSD has a gnugetopt library for this:
678 GNUGETOPT_LIBS=""
679 AC_CHECK_FUNC(getopt_long,, [
680   AC_CHECK_LIB([gnugetopt],[getopt_long], [
681     GNUGETOPT_LIBS="-lgnugetopt"
682   ])
684 AC_SUBST(GNUGETOPT_LIBS)
686 AC_CHECK_LIB(m,cos,[
687   LIBM="-lm"
688 ], [
689   LIBM=""
691 AC_SUBST(LIBM)
693 AC_CHECK_LIB(m,lrintf, [
694   AC_DEFINE(HAVE_LRINTF, 1, [Define to 1 if you have the lrintf function])
695   VLC_ADD_LIBS([skins2],[-lm])
697 AC_CHECK_LIB(m,nanf,
698   AC_DEFINE(HAVE_NANF, 1, [Define to 1 if you have the NANF function])
701 dnl Check for dynamic plugins
702 LIBDL=""
703 have_dynamic_objects="no"
704 VLC_SAVE_FLAGS
705 AC_SEARCH_LIBS(dlsym, [dl svld], [
706   AS_IF([test "$ac_cv_search_dlsym" != "none required"], [
707     LIBDL="$ac_cv_search_dlsym"
708   ])
709   have_dynamic_objects="yes"
711 VLC_RESTORE_FLAGS
713 # Windows
714 AS_IF([test "${SYS}" = "mingw32"], [
715   LIBDL=""
716   have_dynamic_objects="yes" #assume we can use shared objects
719 AS_IF([test "${enable_shared}" = "no"], [
720   have_dynamic_objects=no
722 AM_CONDITIONAL(HAVE_DYNAMIC_PLUGINS, [test "${have_dynamic_objects}" != "no"])
724 AC_SUBST(LIBDL)
726 dnl Check for thread library
727 LIBPTHREAD=""
728 AS_IF([test "${SYS}" != "mingw32"], [
729   VLC_SAVE_FLAGS
730   LIBS=""
731   AC_SEARCH_LIBS(pthread_rwlock_init, pthread pthreads c_r, [
732     AS_IF([test "$ac_cv_search_pthread_rwlock_init" != "none required"], [
733       LIBPTHREAD="$ac_cv_search_pthread_rwlock_init"
734     ])
735   ])
736   VLC_RESTORE_FLAGS
738   AC_CHECK_LIB(rt, clock_nanosleep, [
739     VLC_ADD_LIBS([libvlccore],[-lrt])
740   ], [
741     AC_CHECK_FUNC(nanosleep,,[
742       AC_CHECK_LIB(rt,nanosleep, [
743         VLC_ADD_LIBS([libvlccore],[-lrt])
744       ], [
745         AC_CHECK_LIB(posix4,nanosleep, [
746           VLC_ADD_LIBS([libvlccore],[-lposix4])
747         ])
748       ])
749     ])
750     dnl HP/UX port
751     AC_CHECK_LIB(rt,sem_init, [VLC_ADD_LIBS([libvlccore],[-lrt])])
752   ])
754 AC_SUBST(LIBPTHREAD)
757 dnl Check for headers
760 dnl  POSIX
761 AC_CHECK_HEADERS([arpa/inet.h pthread.h search.h sys/shm.h sys/socket.h])
762 AC_CHECK_HEADERS([net/if.h], [], [],
764 #include <sys/types.h>
765 #include <sys/socket.h>
767 AC_CHECK_HEADER([syslog.h], [have_syslog="yes"], [have_syslog="no"])
768 AM_CONDITIONAL([HAVE_SYSLOG], [test "$have_syslog" = "yes"])
770 dnl  BSD
771 AC_CHECK_HEADERS([netinet/udplite.h sys/param.h sys/mount.h])
773 dnl  GNU/Linux
774 AC_CHECK_HEADERS([getopt.h linux/dccp.h linux/magic.h mntent.h sys/eventfd.h])
776 dnl  MacOS
777 AC_CHECK_HEADERS([xlocale.h])
779 dnl LP64 and LLP64 architectures had better define ssize_t by themselves...
780 AH_TEMPLATE(ssize_t, [Define to `int' if <stddef.h> does not define.]) dnl ` (fix VIM syntax highlight
781 AC_CHECK_TYPE(ssize_t,, [
782   AC_DEFINE(ssize_t, int)
785 dnl It seems that autoconf detects pkg-config only during the first
786 dnl PKG_CHECK_MODULES from configure.ac - which makes sense. But in our case,
787 dnl it is nested within a conditional block, so it was not working right.
788 dnl Make PKG_CONFIG_PATH precious so that it appears in the help and get saved
789 AC_ARG_VAR(PKG_CONFIG_PATH,
790        [Paths where to find .pc not at the default location])
791 PKG_PROG_PKG_CONFIG()
793 dnl On some OS we need static linking
794 AS_IF([test -n "${PKG_CONFIG}" ],[
795     AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "darwin" -o "${SYS}" = "os2" ],[
796         PKG_CONFIG="${PKG_CONFIG} --static"
797     ])
802 dnl Check for zlib.h and -lz along with system -lminizip if available
804 AC_CHECK_HEADERS(zlib.h, [ have_zlib=yes ], [ have_zlib=no ])
805 AM_CONDITIONAL(HAVE_ZLIB, [ test "${have_zlib}" = "yes" ])
806 if test "${have_zlib}" = "yes"
807 then
808   VLC_ADD_LIBS([skins2 sap unzip zip],[-lz])
809   PKG_CHECK_MODULES([MINIZIP], [minizip] , [ have_minizip=yes ], [
810     AC_CHECK_HEADERS([unzip.h], [
811       have_minizip=yes
812       MINIZIP_LIBS="-lminizip -lz"
813     ], [
814       VLC_ADD_CPPFLAGS([skins2], [-I\\\$(top_srcdir)/modules/access/zip/unzip])
815       VLC_ADD_LIBS([skins2], [\\\$(top_builddir)/modules/libunzip.la])
816       have_minizip=no
817     ])
818   ])
819   VLC_ADD_CPPFLAGS([skins2],[$MINIZIP_CFLAGS])
820   VLC_ADD_LIBS([skins2],[$MINIZIP_LIBS])
822 AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
826 dnl Domain name i18n support via GNU libidn
828 PKG_CHECK_MODULES([IDN], [libidn], [
829   have_libidn="yes"
830   AC_DEFINE([HAVE_IDN], 1, [Define to 1 if you have GNU libidn.])
831 ], [
832   have_libidn="no"
836 dnl Check for dbus
837 AC_ARG_ENABLE(dbus,
838   [AS_HELP_STRING([--enable-dbus],
839     [compile D-Bus message bus support (default enabled)])])
840 have_dbus="no"
841 AS_IF([test "${enable_dbus}" != "no"], [
842   PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.6.0], [
843     have_dbus="yes"
844   ], [
845     AS_IF([test -n "${enable_dbus}"], [
846       AC_MSG_ERROR([${DBUS_PKG_ERRORS}.])
847     ], [
848       AC_MSG_WARN([${DBUS_PKG_ERRORS}.])
849     ])
850   ])
852 AM_CONDITIONAL([HAVE_DBUS], [test "${have_dbus}" = "yes"])
855 dnl Check for systemd
856 PKG_CHECK_MODULES([SYSTEMD], [libsystemd], [
857   have_systemd="yes"
858 ], [
859   AC_MSG_WARN([${SYSTEMD_PKG_ERRORS}.])
861 AM_CONDITIONAL([HAVE_SYSTEMD], [test "${have_systemd}" = "yes"])
864 dnl Check for ntohl, etc.
865 VLC_SAVE_FLAGS
866 CFLAGS="${CFLAGS} -Wall -Werror"
867 AC_CACHE_CHECK([for ntohl in sys/param.h],
868     [ac_cv_c_ntohl_sys_param_h],
869     [     AC_TRY_COMPILE([#include <sys/param.h>],
870         [int meuh; ntohl(meuh);],
871         ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
872 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
873     AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
875 VLC_RESTORE_FLAGS
877 EXTEND_HELP_STRING([Optimization options:])
879 dnl  Compiler warnings
882 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])
883 RDC_PROG_CC_FLAGS([-pipe])
884 AC_LANG_PUSH([C++])
885 RDC_PROG_CXX_WFLAGS([all extra sign-compare undef pointer-arith volatile-register-var])
886 AC_LANG_POP([C++])
889 dnl  Debugging mode
891 AC_ARG_ENABLE(debug,
892   [AS_HELP_STRING([--enable-debug],
893     [build with run-time assertions (default disabled)])],,
894   [enable_debug="no"])
895 AH_TEMPLATE(NDEBUG,
896             [Define to 1 if debug code should NOT be compiled])
897 AS_IF([test "${enable_debug}" != "no"], [
898   AC_CHECK_HEADERS([valgrind/valgrind.h])
899 ], [
900   AC_DEFINE(NDEBUG)
904 dnl  Profiling
906 AC_ARG_ENABLE(gprof,
907   [AS_HELP_STRING([--enable-gprof],[profile with gprof (default disabled)])],,
908   [enable_gprof="no"])
909 AS_IF([test "${enable_gprof}" != "no"], [
910   CFLAGS="${CFLAGS} -pg"
911   CXXFLAGS="${CXXFLAGS} -pg"
912   OBJCFLAGS="${OBJCFLAGS} -pg"
913   LDFLAGS="${LDFLAGS} -pg"
916 AC_ARG_ENABLE(cprof,
917   [AS_HELP_STRING([--enable-cprof],[profile with cprof (default disabled)])],,
918   [enable_cprof="no"])
919 AS_IF([test "${enable_gprof}" != "no"], [
920   CFLAGS="${CFLAGS} -finstrument-functions"
921   CXXFLAGS="${CXXFLAGS} -finstrument-functions"
922   OBJCFLAGS="${OBJCFLAGS} -finstrument-functions"
923   LDFLAGS="${LDFLAGS} -finstrument-functions"
927 dnl  Test coverage
929 AC_ARG_ENABLE(coverage,
930   [AS_HELP_STRING([--enable-coverage],
931     [build for test coverage (default disabled)])],,
932   [enable_coverage="no"])
933 AS_IF([test "${enable_coverage}" != "no"], [
934   CFLAGS="-fprofile-arcs -ftest-coverage ${CFLAGS}"
935   CXXFLAGS="-fprofile-arcs -ftest-coverage ${CXXFLAGS}"
936   LDFLAGS="-lgcov ${LDFLAGS}"
939 AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "os2"], [
940   VLC_SAVE_FLAGS
941   CFLAGS="${CFLAGS} -fvisibility=hidden"
942   CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
943   OBJCFLAGS="${OBJCFLAGS} -fvisibility=hidden"
944   AC_CACHE_CHECK([if $CC accepts -fvisibility=hidden],
945                  [ac_cv_c_visibility_hidden], [
946     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
947       ac_cv_c_visibility_hidden=yes
948     ], [
949       ac_cv_c_visibility_hidden=no
950     ])
951   ])
952   AS_IF([test "${ac_cv_c_visibility_hidden}" = "no"], [VLC_RESTORE_FLAGS])
957 dnl  Enable/disable optimizations
959 AC_ARG_ENABLE(optimizations,
960   [AS_HELP_STRING([--disable-optimizations],
961     [disable compiler optimizations (default enabled)])],,
962   [enable_optimizations="yes"])
964 dnl Check for various optimization flags
965 AS_IF([test "${enable_optimizations}" != "no"], [
967   dnl -O3 only in production builds
968   AS_IF([test "${enable_debug}" = "no"], [
969     VLC_SAVE_FLAGS
970     CFLAGS="${CFLAGS} -O3"
971     CXXFLAGS="${CXXFLAGS} -O3"
972     OBJCFLAGS="${OBJCFLAGS} -O3"
973     AC_CACHE_CHECK([if $CC accepts -O3],  [ac_cv_c_o3], [
974       AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
975         ac_cv_c_o3=yes
976       ], [
977         ac_cv_c_o3=no
978       ])
979     ])
980     AS_IF([test "${ac_cv_c_o3}" = "no"], [VLC_RESTORE_FLAGS])
981   ])
983   dnl Check for -ffast-math
984   VLC_SAVE_FLAGS
985   CFLAGS="${CFLAGS} -ffast-math"
986   CXXFLAGS="${CXXFLAGS} -ffast-math"
987   OBJCFLAGS="${OBJCFLAGS} -ffast-math"
988   AC_CACHE_CHECK([if $CC accepts -ffast-math], [ac_cv_c_fast_math], [
989     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
990       ac_cv_c_fast_math=yes
991     ], [
992       ac_cv_c_fast_math=no
993     ])
994   ])
995   AS_IF([test "${ac_cv_c_fast_math}" = "no"], [VLC_RESTORE_FLAGS])
996   AH_BOTTOM([
997 #ifndef __FAST_MATH__
998 # ifndef _MSC_VER
999 #  pragma STDC FENV_ACCESS OFF
1000 #  pragma STDC FP_CONTRACT ON
1001 # else
1002 #  pragma fenv_access(off)
1003 #  pragma fp_contract(on)
1004 # endif
1005 #endif
1008   dnl Check for -funroll-loops
1009   VLC_SAVE_FLAGS
1010   CFLAGS="${CFLAGS} -funroll-loops"
1011   CXXFLAGS="${CXXFLAGS} -funroll-loops"
1012   OBJCFLAGS="${OBJCFLAGS} -funroll-loops"
1013   AC_CACHE_CHECK([if $CC accepts -funroll-loops], [ac_cv_c_unroll_loops], [
1014     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
1015       ac_cv_c_unroll_loops=yes
1016     ], [
1017       ac_cv_c_unroll_loops=no
1018     ])
1019   ])
1020   AS_IF([test "${ac_cv_c_unroll_loops}" = "no"], [VLC_RESTORE_FLAGS])
1022   AS_IF([test "$enable_debug" = "no"], [
1023     dnl Check for -fomit-frame-pointer
1024     VLC_SAVE_FLAGS
1025     CFLAGS="${CFLAGS} -fomit-frame-pointer"
1026     CXXFLAGS="${CXXFLAGS} -fomit-frame-pointer"
1027     OBJCFLAGS="${OBJCFLAGS} -fomit-frame-pointer"
1028     AC_CACHE_CHECK([if $CC accepts -fomit-frame-pointer],
1029       [ac_cv_c_omit_frame_pointer], [
1030       AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
1031         ac_cv_c_omit_frame_pointer=yes
1032       ], [
1033         ac_cv_c_omit_frame_pointer=no
1034       ])
1035     ])
1036     AS_IF([test "${ac_cv_c_omit_frame_pointer}" = "no"], [VLC_RESTORE_FLAGS])
1037   ])
1040 VLC_SAVE_FLAGS
1041 LDFLAGS="${LDFLAGS} -Wl,-Bsymbolic"
1042 AC_CACHE_CHECK([if linker supports -Bsymbolic], [ac_cv_ld_bsymbolic], [
1043   AC_TRY_LINK([],, [
1044     ac_cv_ld_bsymbolic="-Wl,-Bsymbolic"
1045   ], [
1046     ac_cv_ld_bsymbolic=""
1047   ])
1049 VLC_RESTORE_FLAGS
1050 SYMBOLIC_LDFLAGS="${ac_cv_ld_bsymbolic}"
1051 AC_SUBST(SYMBOLIC_LDFLAGS)
1053 dnl Checks for __attribute__(aligned()) directive
1054 VLC_SAVE_FLAGS
1055 CFLAGS="${CFLAGS} -Werror"
1056 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
1057     [ac_cv_c_attribute_aligned],
1058     [ac_cv_c_attribute_aligned=0
1059     for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
1060         AC_TRY_COMPILE([],
1061         [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
1062         [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
1063     done])
1064 VLC_RESTORE_FLAGS
1065 if test "${ac_cv_c_attribute_aligned}" != "0"; then
1066     AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
1067         [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
1070 dnl Check for __attribute__((packed))
1071 AC_CACHE_CHECK([for __attribute__((packed))],
1072   [ac_cv_c_attribute_packed],
1073   [ac_cv_c_attribute_packed=no
1074    AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b; (void)b;],
1075                     [ac_cv_c_attribute_packed=yes])])
1076 if test "${ac_cv_c_attribute_packed}" != "no"; then
1077   AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
1081 dnl  Check the CPU
1083 case "${host_cpu}" in
1084   "")
1085     ARCH=unknown
1086     ;;
1087   *)
1088     ARCH="${host_cpu}"
1089     ;;
1090 esac
1092 dnl Check for backtrace() support
1093 AC_CHECK_HEADERS(execinfo.h)
1094 AC_CHECK_FUNCS(backtrace)
1097 dnl  default modules
1099 ALIASES="${ALIASES} cvlc rvlc"
1102 dnl  Accelerated modules
1105 dnl  Check for fully working MMX intrinsics
1106 dnl  We need support for -mmmx, we need <mmintrin.h>, and we also need a
1107 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1108 AC_ARG_ENABLE(mmx,
1109   [AS_HELP_STRING([--disable-mmx],
1110     [disable MMX optimizations (default auto)])],,[
1111   case "${host_cpu}" in
1112     i?86|x86_64)
1113       enable_mmx="yes"
1114       ;;
1115     *)
1116       enable_mmx="no"
1117       ;;
1118   esac
1120 have_mmx="no"
1121 have_mmxext="no"
1122 AS_IF([test "${enable_mmx}" != "no"], [
1123   ARCH="${ARCH} mmx"
1124   VLC_SAVE_FLAGS
1125   CFLAGS="${CFLAGS} -mmmx"
1126   AC_CACHE_CHECK([if $CC groks MMX intrinsics], [ac_cv_c_mmx_intrinsics], [
1127     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1128 [#include <mmintrin.h>
1129 #include <stdint.h>
1130 uint64_t frobzor;]], [
1131 [__m64 a, b, c;
1132 a = b = c = (__m64)frobzor;
1133 a = _mm_slli_pi16(a, 3);
1134 a = _mm_adds_pi16(a, b);
1135 c = _mm_srli_pi16(c, 8);
1136 c = _mm_slli_pi16(c, 3);
1137 b = _mm_adds_pi16(b, c);
1138 a = _mm_unpacklo_pi8(a, b);
1139 frobzor = (uint64_t)a;]])], [
1140       ac_cv_c_mmx_intrinsics=yes
1141     ], [
1142       ac_cv_c_mmx_intrinsics=no
1143     ])
1144   ])
1145   VLC_RESTORE_FLAGS
1146   AS_IF([test "${ac_cv_c_mmx_intrinsics}" != "no"], [
1147     AC_DEFINE(HAVE_MMX_INTRINSICS, 1, [Define to 1 if MMX intrinsics are available.])
1148   ])
1150   VLC_SAVE_FLAGS
1151   CFLAGS="${CFLAGS} -mmmx"
1152   AC_CACHE_CHECK([if $CC groks MMX inline assembly], [ac_cv_mmx_inline], [
1153     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1154 void *p;
1155 asm volatile("packuswb %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1157     ], [
1158       ac_cv_mmx_inline=yes
1159     ], [
1160       ac_cv_mmx_inline=no
1161     ])
1162   ])
1163   AS_IF([test "${ac_cv_mmx_inline}" != "no"], [
1164     AC_DEFINE(CAN_COMPILE_MMX, 1, [Define to 1 inline MMX assembly is available.])
1165     have_mmx="yes"
1166   ])
1168   AC_CACHE_CHECK([if $CC groks MMX EXT inline assembly],
1169                  [ac_cv_mmxext_inline], [
1170     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1171 void *p;
1172 asm volatile("maskmovq %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1174     ], [
1175       ac_cv_mmxext_inline=yes
1176     ], [
1177       ac_cv_mmxext_inline=no
1178     ])
1179   ])
1180   VLC_RESTORE_FLAGS
1181   AS_IF([test "${ac_cv_mmxext_inline}" != "no"], [
1182     AC_DEFINE(CAN_COMPILE_MMXEXT, 1, [Define to 1 if MMX EXT inline assembly is available.])
1183     have_mmxext="yes"
1184   ])
1186 AM_CONDITIONAL([HAVE_MMX], [test "${have_mmx}" = "yes"])
1187 AM_CONDITIONAL([HAVE_MMXEXT], [test "${have_mmxext}" = "yes"])
1189 dnl  Check for fully workin SSE2 intrinsics
1190 dnl  We need support for -mmmx, we need <emmintrin.h>, and we also need a
1191 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1192 AC_ARG_ENABLE(sse,
1193   [AS_HELP_STRING([--disable-sse],
1194     [disable SSE (1-4) optimizations (default auto)])],, [
1195   case "${host_cpu}" in
1196     i?86|x86_64)
1197       enable_sse=yes
1198       ;;
1199     *)
1200       enable_sse=no
1201       ;;
1202   esac
1204 have_sse2="no"
1205 AS_IF([test "${enable_sse}" != "no"], [
1206   ARCH="${ARCH} sse sse2"
1208   VLC_SAVE_FLAGS
1209   CFLAGS="${CFLAGS} -msse2"
1210   AC_CACHE_CHECK([if $CC groks SSE2 intrinsics], [ac_cv_c_sse2_intrinsics], [
1211     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1212 [#include <emmintrin.h>
1213 #include <stdint.h>
1214 uint64_t frobzor;]], [
1215 [__m128i a, b, c;
1216 a = b = c = _mm_set1_epi64((__m64)frobzor);
1217 a = _mm_slli_epi16(a, 3);
1218 a = _mm_adds_epi16(a, b);
1219 c = _mm_srli_epi16(c, 8);
1220 c = _mm_slli_epi16(c, 3);
1221 b = _mm_adds_epi16(b, c);
1222 a = _mm_unpacklo_epi8(a, b);
1223 frobzor = (uint64_t)_mm_movepi64_pi64(a);]])], [
1224       ac_cv_c_sse2_intrinsics=yes
1225     ], [
1226       ac_cv_c_sse2_intrinsics=no
1227     ])
1228   ])
1229   VLC_RESTORE_FLAGS
1230   AS_IF([test "${ac_cv_c_sse2_intrinsics}" != "no"], [
1231     AC_DEFINE(HAVE_SSE2_INTRINSICS, 1, [Define to 1 if SSE2 intrinsics are available.])
1232   ])
1234   VLC_SAVE_FLAGS
1235   CFLAGS="${CFLAGS} -msse"
1236   AC_CACHE_CHECK([if $CC groks SSE inline assembly], [ac_cv_sse_inline], [
1237     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1238 void *p;
1239 asm volatile("xorps %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1241     ], [
1242       ac_cv_sse_inline=yes
1243     ], [
1244       ac_cv_sse_inline=no
1245     ])
1246   ])
1248   AS_IF([test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"], [
1249     AC_DEFINE(CAN_COMPILE_SSE, 1, [Define to 1 if SSE inline assembly is available.])
1250   ])
1252   AC_CACHE_CHECK([if $CC groks SSE2 inline assembly], [ac_cv_sse2_inline], [
1253     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1254 void *p;
1255 asm volatile("punpckhqdq %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1257     ], [
1258       ac_cv_sse2_inline=yes
1259     ], [
1260       ac_cv_sse2_inline=no
1261     ])
1262   ])
1263   AS_IF([test "${ac_cv_sse2_inline}" != "no" -a "${SYS}" != "solaris"], [
1264     AC_DEFINE(CAN_COMPILE_SSE2, 1, [Define to 1 if SSE2 inline assembly is available.])
1265     have_sse2="yes"
1266   ])
1268   # SSE3
1269   AC_CACHE_CHECK([if $CC groks SSE3 inline assembly], [ac_cv_sse3_inline], [
1270     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1271 void *p;
1272 asm volatile("movsldup %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1274     ], [
1275       ac_cv_sse3_inline=yes
1276     ], [
1277       ac_cv_sse3_inline=no
1278     ])
1279   ])
1281   AS_IF([test "${ac_cv_sse3_inline}" != "no"], [
1282     AC_DEFINE(CAN_COMPILE_SSE3, 1, [Define to 1 if SSE3 inline assembly is available.]) ])
1283   # SSSE3
1284   AC_CACHE_CHECK([if $CC groks SSSE3 inline assembly], [ac_cv_ssse3_inline], [
1285     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1286 void *p;
1287 asm volatile("pabsw %%xmm0,%%xmm0"::"r"(p):"xmm0");
1289     ], [
1290       ac_cv_ssse3_inline=yes
1291     ], [
1292       ac_cv_ssse3_inline=no
1293     ])
1294   ])
1296   AS_IF([test "${ac_cv_ssse3_inline}" != "no"], [
1297     AC_DEFINE(CAN_COMPILE_SSSE3, 1, [Define to 1 if SSSE3 inline assembly is available.]) ])
1299   # SSE4.1
1300   AC_CACHE_CHECK([if $CC groks SSE4.1 inline assembly],
1301                  [ac_cv_sse4_1_inline], [
1302     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1303 void *p;
1304 asm volatile("pmaxsb %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1306     ], [
1307       ac_cv_sse4_1_inline=yes
1308     ], [
1309       ac_cv_sse4_1_inline=no
1310     ])
1311   ])
1313   AS_IF([test "${ac_cv_sse4_1_inline}" != "no"], [
1314     AC_DEFINE(CAN_COMPILE_SSE4_1, 1, [Define to 1 if SSE4_1 inline assembly is available.]) ])
1316   # SSE4.2
1317   AC_CACHE_CHECK([if $CC groks SSE4.2 inline assembly],
1318                  [ac_cv_sse4_2_inline], [
1319     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1320 void *p;
1321 asm volatile("pcmpgtq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1323     ], [
1324       ac_cv_sse4_2_inline=yes
1325     ], [
1326       ac_cv_sse4_2_inline=no
1327     ])
1328   ])
1330   AS_IF([test "${ac_cv_sse4_2_inline}" != "no"], [
1331     AC_DEFINE(CAN_COMPILE_SSE4_2, 1, [Define to 1 if SSE4_2 inline assembly is available.]) ])
1333   # SSE4A
1334   AC_CACHE_CHECK([if $CC groks SSE4A inline assembly], [ac_cv_sse4a_inline], [
1335     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1336 void *p;
1337 asm volatile("insertq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1339     ], [
1340       ac_cv_sse4a_inline=yes
1341     ], [
1342       ac_cv_sse4a_inline=no
1343     ])
1344   ])
1345   VLC_RESTORE_FLAGS
1346   AS_IF([test "${ac_cv_sse4a_inline}" != "no"], [
1347     AC_DEFINE(CAN_COMPILE_SSE4A, 1, [Define to 1 if SSE4A inline assembly is available.]) ])
1349 AM_CONDITIONAL([HAVE_SSE2], [test "$have_sse2" = "yes"])
1351 VLC_SAVE_FLAGS
1352 CFLAGS="${CFLAGS} -mmmx"
1353 have_3dnow="no"
1354 AC_CACHE_CHECK([if $CC groks 3D Now! inline assembly], [ac_cv_3dnow_inline], [
1355   AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1356 void *p;
1357 asm volatile("pfadd %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1359   ], [
1360     ac_cv_3dnow_inline=yes
1361   ], [
1362     ac_cv_3dnow_inline=no
1363   ])
1365 VLC_RESTORE_FLAGS
1366 AS_IF([test "${ac_cv_3dnow_inline}" != "no"], [
1367   AC_DEFINE(CAN_COMPILE_3DNOW, 1,
1368             [Define to 1 if 3D Now! inline assembly is available.])
1369   have_3dnow="yes"
1371 AM_CONDITIONAL([HAVE_3DNOW], [test "$have_3dnow" = "yes"])
1374 AC_ARG_ENABLE(neon,
1375   [AS_HELP_STRING([--disable-neon],
1376     [disable NEON optimizations (default auto)])],, [
1377   AS_IF([test "${host_cpu}" = "arm"], [enable_neon="yes"] ,[enable_neon="no"])
1379 AS_IF([test "${enable_neon}" != "no"], [
1380   VLC_SAVE_FLAGS
1381   CFLAGS="${CFLAGS} -mfpu=neon -mhard-float"
1382   AC_CACHE_CHECK([if $CCAS groks ARM NEON assembly], [ac_cv_arm_neon], [
1383     AC_COMPILE_IFELSE([
1384       AC_LANG_PROGRAM(,[[
1385 asm volatile("vqmovun.s64 d0, q1":::"d0");
1387     ], [
1388       ac_cv_arm_neon="yes"
1389     ], [
1390       ac_cv_arm_neon="no"
1391     ])
1392   ])
1393   VLC_RESTORE_FLAGS
1395 AM_CONDITIONAL(HAVE_NEON, [test "${ac_cv_arm_neon}" = "yes"])
1398 AC_ARG_ENABLE(altivec,
1399   [AS_HELP_STRING([--disable-altivec],
1400     [disable AltiVec optimizations (default auto)])],, [
1401   AS_CASE("${host_cpu}", [powerpc*],
1402         [enable_altivec=yes], [enable_altivec=no])
1404 have_altivec="no"
1405 ALTIVEC_CFLAGS=""
1406 AS_IF([test "${enable_altivec}" = "yes"], [
1407   ARCH="${ARCH} altivec";
1408   VLC_SAVE_FLAGS
1409   AC_CACHE_CHECK([if $CC groks AltiVec inline assembly],
1410     [ac_cv_altivec_inline],
1411     [AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1412          ac_cv_altivec_inline="yes",
1413          [CFLAGS="${CFLAGS} -Wa,-maltivec"
1414           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1415             [ac_cv_altivec_inline="-Wa,-maltivec"],
1416             ac_cv_altivec_inline=no)
1417          ])])
1418   VLC_RESTORE_FLAGS
1419   AS_IF([test "${ac_cv_altivec_inline}" != "no"], [
1420     AC_DEFINE(CAN_COMPILE_ALTIVEC, 1,
1421               [Define to 1 if AltiVec inline assembly is available.])
1422     AS_IF([test "${ac_cv_altivec_inline}" != "yes"], [
1423       ALTIVEC_CFLAGS="${ac_cv_altivec_inline}"
1424       VLC_ADD_CFLAGS([libvlccore],[${ac_cv_altivec_inline}])
1425     ])
1426     have_altivec="yes"
1427   ])
1429   VLC_SAVE_FLAGS
1430   AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1431   [ac_cv_c_altivec], [
1432     CFLAGS="${CFLAGS} -maltivec"
1433     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1434 [#include <altivec.h>]], [
1435 [vec_ld(0, (unsigned char *)0);]])], [
1436       ac_cv_c_altivec="-maltivec"
1437     ], [
1438       ac_cv_c_altivec="no"
1439     ])
1440   ])
1441   VLC_RESTORE_FLAGS
1442   AS_IF([test "${ac_cv_c_altivec}" != "no"], [
1443     CPPFLAGS="${CPPFLAGS} ${ac_cv_c_altivec}"
1444     AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, [Define to 1 if C AltiVec extensions are available.])
1445     VLC_ADD_CFLAGS([libvlccore],[${ac_cv_c_altivec}])
1446     ALTIVEC_CFLAGS="$ALTIVEC_FLAGS ${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}"
1447     VLC_ADD_CFLAGS([deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1448     have_altivec="yes"
1449   ])
1450   AC_CHECK_HEADERS(altivec.h)
1452   VLC_SAVE_FLAGS
1453   LDFLAGS="${LDFLAGS} -Wl,-framework,vecLib"
1454   AC_CACHE_CHECK([if linker needs -framework vecLib],
1455     [ac_cv_ld_altivec],
1456     [AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)])
1457   VLC_RESTORE_FLAGS
1458   AS_IF([test "${ac_cv_ld_altivec}" != "no"], [
1459     VLC_ADD_LIBS([libvlccore],[-Wl,-framework,vecLib])
1460   ])
1462 AC_SUBST(ALTIVEC_CFLAGS)
1463 AM_CONDITIONAL([HAVE_ALTIVEC], [test "$have_altivec" = "yes"])
1466 dnl  Memory usage
1468 AC_ARG_ENABLE(optimize-memory,
1469   [AS_HELP_STRING([--enable-optimize-memory],
1470     [optimize memory usage over performance])])
1471 if test "${enable_optimize_memory}" = "yes"; then
1472   AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1476 dnl Allow running as root (useful for people running on embedded platforms)
1478 AC_ARG_ENABLE(run-as-root,
1479   [AS_HELP_STRING([--enable-run-as-root],
1480     [allow running VLC as root (default disabled)])])
1481 AS_IF([test "${enable_run_as_root}" = "yes"],[
1482     AC_DEFINE(ALLOW_RUN_AS_ROOT, 1,
1483               [Define to 1 to allow running VLC as root (uid 0).])
1487 dnl Stream output
1489 AC_ARG_ENABLE(sout,
1490   [AS_HELP_STRING([--disable-sout],
1491     [disable streaming output (default enabled)])])
1492 AS_IF([test "${enable_sout}" != "no"], [
1493   AC_DEFINE(ENABLE_SOUT, 1, [Define to 1 for stream output support.])
1495 AM_CONDITIONAL(ENABLE_SOUT, [test "${enable_sout}" != "no"])
1497 dnl Lua modules
1498 AC_ARG_ENABLE(lua,
1499   [AS_HELP_STRING([--disable-lua],
1500     [disable LUA scripting support (default enabled)])])
1501 if test "${enable_lua}" != "no"
1502 then
1503   PKG_CHECK_MODULES(LUA, lua5.2,
1504     [ have_lua=yes ],
1505     [
1506     AC_MSG_WARN([${LUA_PKG_ERRORS}, trying lua 5.1 instead])
1508     PKG_CHECK_MODULES(LUA, lua5.1,
1509       [ have_lua=yes ],
1510       [
1511       AC_MSG_WARN([${LUA_PKG_ERRORS}, trying lua >= 5.1 instead])
1512       PKG_CHECK_MODULES(LUA, lua >= 5.1,
1513         [ have_lua=yes ],
1514         [
1515           AC_MSG_WARN([${LUA_PKG_ERRORS}, trying manual detection instead])
1516           have_lua=yes
1517           AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
1518             [],
1519             [ have_lua=no ] )
1520           AC_CHECK_LIB(  lua5.2 , luaL_newstate,
1521             [LUA_LIBS="-llua5.2"],
1522           AC_CHECK_LIB( lua5.1 , luaL_newstate,
1523             [LUA_LIBS="-llua5.1"],
1524             AC_CHECK_LIB( lua51 , luaL_newstate,
1525               [LUA_LIBS="-llua51"],
1526               AC_CHECK_LIB( lua , luaL_newstate,
1527                 [LUA_LIBS="-llua"],
1528                 [ have_lua=no
1529                 ], [-lm])
1530             )))
1531         ])
1532       ])
1533     ])
1534   if test "x${have_lua}" != "xyes" ;  then
1535       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.])
1536   fi
1537   AC_ARG_VAR([LUAC], [LUA byte compiler])
1538   AC_PATH_PROGS(LUAC,[${LUAC} luac], [false])
1539   AS_IF([test "${LUAC}" = "false"], [
1540     AC_MSG_ERROR([Could not find the LUA byte compiler.])
1541   ])
1542   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], [
1543     AC_MSG_ERROR([You need 32-bits luac when using using lua from contrib.])
1544   ])
1546 AM_CONDITIONAL(BUILD_LUA, [test "${have_lua}" = "yes"])
1550 dnl HTTP daemon
1552 AC_ARG_ENABLE(httpd,
1553   [AS_HELP_STRING([--disable-httpd],
1554     [disable the built-in HTTP server (default enabled)])])
1555 if test "${enable_httpd}" != "no"
1556 then
1557   AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP daemon support)
1559 AM_CONDITIONAL(BUILD_HTTPD, [test "${enable_httpd}" != "no"])
1563 dnl VideoLAN manager
1565 AC_ARG_ENABLE(vlm,
1566   [AS_HELP_STRING([--disable-vlm],
1567     [disable the stream manager (default enabled)])],,
1568   [enable_vlm="${enable_sout}"])
1569 AS_IF([test "${enable_vlm}" != "no"], [
1570   AS_IF([test "${enable_sout}" = "no"], [
1571     AC_MSG_ERROR([VLM requires the stream output. Do not use --disable-sout.])
1572   ])
1573   AC_DEFINE(ENABLE_VLM, 1, [Define if you want the VideoLAN manager support])
1575 AM_CONDITIONAL([ENABLE_VLM], [test "${enable_vlm}" != "no"])
1579 dnl Addons manager storage and repositories modules
1581 AC_ARG_ENABLE(addonmanagermodules,
1582   [AS_HELP_STRING([--disable-addonmanagermodules],
1583     [disable the addons manager modules (default enabled)])])
1584 if test "${enable_addonmanagermodules}" != "no"
1585 then
1586   AC_DEFINE(ENABLE_ADDONMANAGERMODULES, 1, [Define if you want the addons manager modules])
1588 AM_CONDITIONAL([ENABLE_ADDONMANAGERMODULES], [test "${enable_addonmanagermodules}" != "no"])
1592 dnl  Input plugins
1595 EXTEND_HELP_STRING([Input plugins:])
1598 dnl  libarchive access module
1600 PKG_ENABLE_MODULES_VLC([ARCHIVE], [access_archive], [libarchive >= 3.1.0], (libarchive support), [auto])
1603 dnl  live555 input
1605 AC_ARG_ENABLE(live555,
1606   [AS_HELP_STRING([--enable-live555],
1607     [enable RTSP input through live555 (default enabled)])])
1609 AS_IF([test "${enable_live555}" != "no" -a -n "${CXX}"], [
1610   PKG_CHECK_MODULES(LIVE555, live555, [
1611     VLC_ADD_PLUGIN([live555])
1612     VLC_ADD_CXXFLAGS([live555], [$LIVE555_CFLAGS])
1613     VLC_ADD_LIBS([live555],[$LIVE555_LIBS])
1614   ], [
1615     AC_MSG_WARN([${LIVE555_PKG_ERRORS}.])
1617     AC_LANG_PUSH(C++)
1618     VLC_SAVE_FLAGS
1620     dnl detect include paths
1621     AS_IF([test -f "${CONTRIB_DIR}/include/UsageEnvironment.hh"], [
1622       CPPFLAGS_live555="-I${CONTRIB_DIR}/include/liveMedia -I${CONTRIB_DIR}/include/groupsock -I${CONTRIB_DIR}/include/BasicUsageEnvironment -I${CONTRIB_DIR}/include/UsageEnvironment"
1623     ], [
1624       AS_IF([test "${SYS}" != "os2"], [
1625         LIVE555_PREFIX=${LIVE555_PREFIX-"/usr"}
1626         CPPFLAGS_live555="-I${LIVE555_PREFIX}/include/liveMedia -I${LIVE555_PREFIX}/include/groupsock -I${LIVE555_PREFIX}/include/BasicUsageEnvironment -I${LIVE555_PREFIX}/include/UsageEnvironment"
1627       ], [
1628         LIVE555_PREFIX=${LIVE555_PREFIX-"/usr/lib/live"}
1629         CPPFLAGS_live555="-I${LIVE555_PREFIX}/liveMedia/include -I${LIVE555_PREFIX}/groupsock/include -I${LIVE555_PREFIX}/BasicUsageEnvironment/include -I${LIVE555_PREFIX}/UsageEnvironment/include"
1630         LDFLAGS_live555="-L${LIVE555_PREFIX}/liveMedia -L${LIVE555_PREFIX}/groupsock -L${LIVE555_PREFIX}/BasicUsageEnvironment -L${LIVE555_PREFIX}/UsageEnvironment"
1631       ])
1632     ])
1634     dnl CPP Flags
1635     AS_IF([test "${SYS}" = "solaris"], [
1636       CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS"
1637     ])
1638     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}"
1639     LDFLAGS="${LDFLAGS} ${LDFLAGS_live555}"
1641     dnl version check
1642     AC_CACHE_CHECK([for live555 version 1324598400 or later], [ac_cv_live555], [
1643       AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1644 [#include <liveMedia_version.hh>
1645 #if !defined (LIVEMEDIA_LIBRARY_VERSION_INT) || (LIVEMEDIA_LIBRARY_VERSION_INT < 1324598400)
1646 # error BOOM
1647 #endif]])
1648       ], [
1649         ac_cv_live555="yes"
1650       ], [
1651         ac_cv_live555="no"
1652       ])
1653     ])
1655     AS_IF([test "$ac_cv_live555" = "no"], [
1656       AC_MSG_WARN([live555 is missing or its installed version is too old:
1657 Version 2011.12.23 or later is required to proceed.
1658 You can get an updated one from http://www.live555.com/liveMedia .])
1659       AS_IF([test -n "${enable_live555}"], [
1660         AC_MSG_ERROR([Update live555 or pass --disable-live555 to disable RTSP input support.])
1661       ])
1662     ], [
1663       other_libs="-lgroupsock -lBasicUsageEnvironment -lUsageEnvironment"
1664       other_libs_pic="-lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic"
1665       AS_IF([test "${SYS}" = "mingw32"], [
1666         # add ws2_32 for closesocket, select, recv
1667         other_libs="$other_libs -lws2_32"
1668       ])
1670       dnl We need to check for pic because live555 don't provide shared libs
1671       dnl and we want to build a plugins so we need -fPIC on some arch.
1672       VLC_ADD_CXXFLAGS([live555], [${CPPFLAGS_live555}])
1673       VLC_ADD_LDFLAGS([live555], [${LDFLAGS_live555}])
1674       AC_CHECK_LIB(liveMedia_pic, main, [
1675         VLC_ADD_PLUGIN([live555])
1676         VLC_ADD_LIBS([live555], [-lliveMedia_pic ${other_libs_pic}])
1677       ],[
1678         AC_CHECK_LIB(liveMedia, main, [
1679           VLC_ADD_PLUGIN([live555])
1680           VLC_ADD_LIBS([live555], [-lliveMedia ${other_libs}])
1681         ],[],[${other_libs}])
1682       ],[${other_libs_pic}])
1683     ])
1684     VLC_RESTORE_FLAGS
1685     AC_LANG_POP(C++)
1686   ])
1690 dnl IIDC and DV FireWire input modules
1692 PKG_ENABLE_MODULES_VLC([DC1394], [], [libdc1394-2 >= 2.1.0], [IIDC FireWire input module], [auto])
1693 PKG_ENABLE_MODULES_VLC([DV1394], [], [libraw1394 >= 2.0.1 libavc1394 >= 0.5.3], [DV FireWire input module], [auto])
1696 dnl - linsys modules: access module check for libzvbi
1698 AC_ARG_ENABLE(linsys,
1699   [AS_HELP_STRING([--enable-linsys],
1700     [Linux Linear Systems Ltd. SDI and HD-SDI input cards (default enabled)])])
1701 AS_IF([test "$SYS" = "linux" -a "${enable_linsys}" != "no"], [
1702   VLC_ADD_PLUGIN([linsys_hdsdi])
1703   PKG_CHECK_MODULES(LINSYS_SDI, [zvbi-0.2 >= 0.2.28], [
1704     VLC_ADD_PLUGIN([linsys_sdi])
1705   ], [
1706     AC_MSG_WARN([${LINSYS_SDI_PKG_ERRORS}.])
1707   ])
1711 dnl dvdread module: check for libdvdread
1713 PKG_ENABLE_MODULES_VLC([DVDREAD], [], [dvdread > 4.9.0], [dvdread input module], [auto])
1716 dnl libdvdnav plugin
1718 PKG_ENABLE_MODULES_VLC([DVDNAV], [], [dvdnav > 4.9.0], [DVD with navigation input module (dvdnav)], [auto])
1721 dnl  Blu-ray Disc Support with libbluray
1723 PKG_ENABLE_MODULES_VLC([BLURAY], [libbluray], [libbluray >= 0.5.0], (libbluray for Blu-ray disc support ) )
1726 dnl  OpenCV wrapper and example filters
1728 PKG_ENABLE_MODULES_VLC([OPENCV], [opencv_example opencv_wrapper], [opencv > 2.0], (OpenCV (computer vision) filter), [auto])
1732 dnl  libsmbclient plugin
1734 PKG_ENABLE_MODULES_VLC([SMBCLIENT], [smb], [smbclient], (SMB/CIFS support), [auto])
1735 AS_IF([test "${SYS}" = "mingw32"], [ VLC_ADD_PLUGIN([smb]) ])
1738 dnl  liBDSM access module
1740 PKG_ENABLE_MODULES_VLC([DSM], [dsm], [libdsm >= 0.0.4], [libdsm SMB/CIFS access/sd module], [auto])
1743 dnl sftp access support
1745 PKG_ENABLE_MODULES_VLC([SFTP], [sftp], [libssh2], (support SFTP file transfer via libssh2), [auto])
1748 dnl  Video4Linux 2
1750 AC_ARG_ENABLE(v4l2, [AS_HELP_STRING([--disable-v4l2],
1751   [disable Video4Linux version 2 (default auto)])])
1752 have_v4l2="no"
1753 AS_IF([test "$enable_v4l2" != "no"], [
1754   AC_CHECK_HEADERS([linux/videodev2.h sys/videoio.h], [
1755     have_v4l2="yes"
1756   ])
1758 AM_CONDITIONAL(HAVE_V4L2, [test "${have_v4l2}" != "no"])
1761 dnl special access module for Blackmagic SDI cards
1763 AC_ARG_ENABLE(decklink,
1764   [AS_HELP_STRING([--disable-decklink],
1765     [disable Blackmagic DeckLink SDI input (default auto)])])
1766 AC_ARG_WITH(decklink_sdk,
1767   [AS_HELP_STRING[--with-decklink-sdk=DIR],
1768     [                        location of Blackmagic DeckLink SDI SDK])])
1769 have_decklink=no
1770 if test "${enable_decklink}" != "no"
1771 then
1772   if test "${with_decklink_sdk}" != "no" -a -n "${with_decklink_sdk}"
1773   then
1774     VLC_ADD_CPPFLAGS([decklink decklinkoutput],[-I${with_decklink_sdk}/include])
1775   fi
1776   VLC_SAVE_FLAGS
1777   CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_decklink}"
1778   AC_LANG_PUSH(C++)
1779   AC_CHECK_HEADERS(DeckLinkAPIDispatch.cpp, [
1780       have_decklink=yes
1781   ], [
1782       AC_MSG_WARN(Blackmagic DeckLink SDI include files not found, decklink disabled)
1783   ])
1784   AC_LANG_POP(C++)
1785   VLC_RESTORE_FLAGS
1787 AM_CONDITIONAL(HAVE_DECKLINK, [ test "${have_decklink}" != "no" ])
1791 dnl  gnomeVFS access module
1793 PKG_ENABLE_MODULES_VLC([GNOMEVFS], [gnomevfs], [gnome-vfs-2.0], [GnomeVFS access module], [auto])
1796 dnl  VCDX modules
1798 PKG_ENABLE_MODULES_VLC([VCDX], [vcdx], [libcdio >= 0.78.2 libiso9660 >= 0.72 libvcdinfo >= 0.7.22], [navigate VCD with libvcdinfo], [no])
1801 dnl  Built-in CD-DA and VCD module
1803 AC_ARG_ENABLE(vcd,
1804   [AS_HELP_STRING([--disable-vcd],
1805     [disable built-in VCD and CD-DA support (default enabled)])])
1807 AC_ARG_ENABLE(libcddb,
1808   [AS_HELP_STRING([--disable-libcddb],
1809     [disable CDDB for Audio CD (default enabled)])])
1811 if test "${enable_vcd}" != "no"
1812 then
1813   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1814   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1815     AC_MSG_RESULT(yes)
1816     VLC_ADD_PLUGIN([vcd cdda])
1817   ],[
1818     AC_MSG_RESULT(no)
1819   ])
1821   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1822   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1823     AC_MSG_RESULT(yes)
1824     VLC_ADD_PLUGIN([vcd cdda])
1825     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1826   ],[
1827     AC_MSG_RESULT(no)
1828   ])
1830   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1831   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1832     AC_MSG_RESULT(yes)
1833     VLC_ADD_PLUGIN([vcd cdda])
1834     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1835   ],[
1836     AC_MSG_RESULT(no)
1837   ])
1839   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32" -o "${SYS}" = "os2" -o "${SYS}" = "darwin"
1840   then
1841     VLC_ADD_PLUGIN([vcd cdda])
1842   fi
1844   if test "$enable_libcddb" != "no"; then
1845     PKG_CHECK_MODULES(LIBCDDB, [libcddb >= 0.9.5], [
1846       HAVE_LIBCDDB=yes
1847       AC_DEFINE(HAVE_LIBCDDB, 1, [Define this if you have libcddb installed])
1848       VLC_ADD_LIBS([cdda],[$LIBCDDB_LIBS])
1849       VLC_ADD_CFLAGS([cdda],[$LIBCDDB_CFLAGS])
1850       ],:
1851       [AC_MSG_WARN([${LIBCDDB_PKG_ERRORS}: CDDB access disabled.])
1852       HAVE_LIBCDDB=no])
1853   fi
1857 dnl Linux DVB
1859 AC_CACHE_CHECK([for Linux DVB version 5.1], [ac_cv_linux_dvb_5_1], [
1860   AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1861 [#include <linux/dvb/version.h>
1862 #if (DVB_API_VERSION < 5)
1863 # error Linux DVB API v3.2 and older are not supported.
1864 #endif
1865 #if (DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR < 1)
1866 # error Linux DVB API v5.0 is unsupported. Please update.
1867 #endif
1868 ]])], [
1869   ac_cv_linux_dvb_5_1=yes
1870 ], [
1871   ac_cv_linux_dvb_5_1=no
1872 ])])
1873 AM_CONDITIONAL([HAVE_LINUX_DVB], [test "$ac_cv_linux_dvb_5_1" = "yes"])
1876 dnl  Screen capture module
1878 AC_ARG_ENABLE(screen,
1879   [AS_HELP_STRING([--enable-screen],
1880     [disable screen capture (default enabled)])])
1881 if test "${enable_screen}" != "no"; then
1882   if test "${SYS}" = "darwin"; then
1883     AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
1884       VLC_ADD_PLUGIN([screen])
1885     ])
1886   fi
1888 AM_CONDITIONAL(HAVE_MAC_SCREEN, [test "${SYS}" = "darwin" -a "x${enable_screen}" != "xno"])
1891 dnl  VNC/RFB access module
1893 PKG_ENABLE_MODULES_VLC([VNC], [vnc], [libvncclient >= 0.9.9], (VNC/rfb client support), [auto])
1895 dnl  RDP/Remote Desktop access module
1897 PKG_ENABLE_MODULES_VLC([FREERDP], [rdp], [freerdp >= 1.0.1], (RDP/Remote Desktop client support) )
1900 dnl  Real RTSP plugin
1902 AC_ARG_ENABLE(realrtsp,
1903   [  --enable-realrtsp       Real RTSP module (default disabled)])
1904 if test "${enable_realrtsp}" = "yes"; then
1905   VLC_ADD_PLUGIN([access_realrtsp])
1909 dnl MacOS eyeTV
1910 AC_ARG_ENABLE(macosx-eyetv,
1911   [  --enable-macosx-eyetv   Mac OS X EyeTV (TNT Tuner) module (default enabled on Mac OS X)])
1912 if test "x${enable_macosx_eyetv}" != "xno" &&
1913   (test "${SYS}" = "darwin" || test "${enable_macosx_eyetv}" = "yes")
1914 then
1915   VLC_ADD_PLUGIN([access_eyetv])
1919 dnl QTKit
1920 AC_ARG_ENABLE(macosx-qtkit,
1921   [  --enable-macosx-qtkit Mac OS X qtcapture (video) and qtsound (audio) module (default enabled on Mac OS X)])
1922 if test "x${enable_macosx_qtkit}" != "xno" &&
1923   (test "${SYS}" = "darwin" || test "${enable_macosx_qtkit}" = "yes")
1924 then
1925   VLC_ADD_PLUGIN([qtcapture])
1926   VLC_ADD_PLUGIN([qtsound])
1928 AM_CONDITIONAL(HAVE_QTKIT, [test "${SYS}" = "darwin" -a "x${enable_macosx_qtkit}" != "xno"])
1931 dnl AVFoundation
1932 AC_SUBST(have_avfoundation, ["no"])
1933 AC_ARG_ENABLE(macosx-avfoundation,
1934   [  --enable-macosx-avfoundation Mac OS X avcapture (video) module (default enabled on Mac OS X)])
1935 if test "x${enable_macosx_avfoundation}" != "xno" &&
1936   (test "${SYS}" = "darwin" || test "${enable_macosx_avfoundation}" = "yes")
1937 then
1938   SAVED_LIBS="${LIBS}"
1939   LIBS="-framework AVFoundation"
1940   AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [])],[have_avfoundation=yes],[have_avfoundation=no])
1941   LIBS="${SAVED_LIBS}"
1942   if test "${have_avfoundation}" != "no"
1943   then
1944     VLC_ADD_PLUGIN([avcapture])
1945   fi
1947 AM_CONDITIONAL(HAVE_AVFOUNDATION, [test "${have_avfoundation}" != "no"])
1950 dnl  DCP plugin (using asdcplib)
1952 PKG_WITH_MODULES([ASDCP], [asdcplib], [have_asdcp="yes"])
1953 AM_CONDITIONAL(HAVE_ASDCP, [test "${have_asdcp}" = "yes"])
1956 dnl  Demux plugins
1959 EXTEND_HELP_STRING([Mux/Demux plugins:])
1962 dnl  libdvbpsi check for ts mux/demux
1964 have_dvbpsi="no"
1965 PKG_WITH_MODULES([DVBPSI], [libdvbpsi >= 1.0.0], [have_dvbpsi="yes"])
1966 AM_CONDITIONAL(HAVE_DVBPSI, [test "${have_dvbpsi}" = "yes"])
1970 dnl  GME demux plugin
1972 AC_ARG_ENABLE(gme,
1973   [AS_HELP_STRING([--enable-gme],
1974     [use Game Music Emu (default auto)])])
1975 AS_IF([test "${enable_gme}" != "no"], [
1976   AC_CHECK_HEADER([gme/gme.h], [
1977     VLC_ADD_LIBS([gme], [-lgme])
1978     VLC_ADD_PLUGIN([gme])
1979   ], [
1980     AS_IF([test "x${enable_gme}" != "x"], [
1981       AC_MSG_ERROR([GME cannot be found. Please install the development files.])
1982     ])
1983   ])
1988 dnl  SIDPlay plugin
1990 AC_ARG_ENABLE(sid,
1991     [AS_HELP_STRING([--enable-sid],[C64 sid demux support (default auto)])])
1992 AS_IF([test "${enable_sid}" != "no"], [
1993     PKG_CHECK_MODULES(SID, [libsidplay2], [
1994         AC_LANG_PUSH(C++)
1995         oldCPPFLAGS="$CPPFLAGS"
1996         CPPFLAGS="$CPPFLAGS $SID_CFLAGS"
1997         AC_CHECK_HEADER([sidplay/builders/resid.h], [
1998             VLC_ADD_PLUGIN([sid])
1999             VLC_ADD_CFLAGS([sid], [$SID_CFLAGS])
2000             VLC_ADD_LIBS([sid], [$SID_LIBS] [-lresid-builder])
2001         ], [
2002             AS_IF([test -n "${enable_sid}"],
2003                 [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
2004                 [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2005                 )
2006         ])
2007         CPPFLAGS="$oldCPPFLAGS"
2008         AC_LANG_POP(C++)
2009     ], [
2010         AS_IF([test "x${enable_sid}" = "xyes"],
2011             [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
2012             [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2013             )
2014     ])
2019 dnl  ogg demux plugin
2021 PKG_ENABLE_MODULES_VLC([OGG], [mux_ogg], [ogg >= 1.0], [Ogg demux support], [auto])
2022 PKG_CHECK_MODULES(LIBVORBIS, [vorbis >= 1.1], [
2023     AC_DEFINE(HAVE_LIBVORBIS, 1, [Define to 1 if you have the libvorbis])
2024 ],[true])
2025 PKG_ENABLE_MODULES_VLC([OGG], [], [ogg >= 1.0], [Ogg demux support], [auto], [${LIBVORBIS_CFLAGS}], [${LIBVORBIS_LIBS}])
2026 if test "${enable_sout}" != "no"; then
2027 dnl Check for libshout
2028     PKG_ENABLE_MODULES_VLC([SHOUT], [access_output_shout], [shout >= 2.1], [libshout output plugin], [auto])
2032 dnl  matroska demux plugin
2034 AC_ARG_ENABLE(mkv,
2035   [AS_HELP_STRING([--disable-mkv],
2036     [do not use libmatroska (default auto)])])
2037 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
2038   AC_LANG_PUSH(C++)
2039   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
2040     AC_MSG_CHECKING(for libebml version >= 1.0.0)
2041     AC_EGREP_CPP(yes,
2042       [#include <ebml/EbmlVersion.h>
2043        #ifdef LIBEBML_VERSION
2044        #if LIBEBML_VERSION >= 0x010000
2045        yes
2046        #endif
2047        #endif],
2048       [AC_MSG_RESULT([yes])
2049         AC_CHECK_HEADERS(matroska/KaxVersion.h, [
2050           AC_MSG_CHECKING(for libmatroska version >= 1.0.0)
2051           AC_EGREP_CPP(yes,
2052             [#include <matroska/KaxVersion.h>
2053              #ifdef LIBMATROSKA_VERSION
2054              #if LIBMATROSKA_VERSION >= 0x010000
2055              yes
2056              #endif
2057              #endif],
2058             [AC_MSG_RESULT([yes])
2059               AC_CHECK_HEADERS(matroska/KaxAttachments.h)
2060               AC_CHECK_LIB(ebml_pic, main, [
2061                 VLC_ADD_PLUGIN([mkv])
2062                 VLC_ADD_LIBS([mkv],[-lmatroska -lebml_pic])
2063               ],[
2064                 AC_CHECK_LIB(ebml, main, [
2065                   VLC_ADD_PLUGIN([mkv])
2066                   VLC_ADD_LIBS([mkv],[-lmatroska -lebml])
2067                 ])
2068               ])
2069             ], [
2070               AC_MSG_RESULT([no])
2071               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.])
2072           ])
2073         ])
2074       ],
2075       [AC_MSG_RESULT([no])
2076         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.])
2077     ])
2078   ])
2079   AC_LANG_POP(C++)
2083 dnl  modplug demux plugin
2085 AC_ARG_ENABLE(mod,
2086   [AS_HELP_STRING([--disable-mod],
2087     [do not use libmodplug (default auto)])])
2088 if test "${enable_mod}" != "no" ; then
2089     PKG_CHECK_MODULES(LIBMODPLUG, [libmodplug >= 0.8.4 libmodplug != 0.8.8], [
2090           VLC_ADD_PLUGIN([mod])
2091           VLC_ADD_CXXFLAGS([mod],[$LIBMODPLUG_CFLAGS])
2092           VLC_ADD_CFLAGS([mod],[$LIBMODPLUG_CFLAGS]) #modules/demux/mod.c needs CFLAGS_mod, not CXXFLAGS_mod
2093           VLC_ADD_LIBS([mod],[$LIBMODPLUG_LIBS])
2094     ],[
2095        AS_IF([test -n "${enable_mod}"],
2096          [AC_MSG_ERROR([${LIBMODPLUG_PKG_ERRORS}.])],
2097          [AC_MSG_WARN([${LIBMODPLUG_PKG_ERRORS}.])])
2098     ])
2102 dnl  mpc demux plugin
2104 AC_ARG_ENABLE(mpc,
2105   [AS_HELP_STRING([--disable-mpc], [do not use libmpcdec (default auto)])])
2106 if test "${enable_mpc}" != "no"
2107 then
2108   AC_CHECK_HEADERS([mpc/mpcdec.h], [
2109     VLC_ADD_PLUGIN([mpc])
2110     VLC_ADD_LIBS([mpc],[-lmpcdec])],
2111     [AC_CHECK_HEADERS([mpcdec/mpcdec.h], [
2112     VLC_ADD_PLUGIN([mpc])
2113     VLC_ADD_LIBS([mpc],[-lmpcdec])])])
2117 dnl  Codec plugins
2120 EXTEND_HELP_STRING([Codec plugins:])
2123 dnl wmafixed plugin
2125 AC_ARG_ENABLE(wma-fixed,
2126   [  --enable-wma-fixed      libwma-fixed module (default disabled)])
2127 if test "${enable_wma_fixed}" = "yes"
2128 then
2129   VLC_ADD_PLUGIN([wma_fixed])
2133 dnl shine encoder plugin
2135 PKG_ENABLE_MODULES_VLC([SHINE], [], [shine >= 3.0.0], [MPEG Audio Layer 3 encoder], [auto], [], [], [])
2139 dnl openmax il codec plugin
2141 AC_ARG_ENABLE(omxil,
2142   [  --enable-omxil          openmax il codec module (default disabled)])
2143 if test "${enable_omxil}" = "yes"
2144 then
2145   VLC_ADD_PLUGIN([omxil])
2149 dnl openmax il vout plugin
2151 AC_ARG_ENABLE(omxil-vout,
2152   [  --enable-omxil-vout     openmax il video output module (default disabled)])
2153 if test "${enable_omxil_vout}" = "yes"
2154 then
2155   VLC_ADD_PLUGIN([omxil_vout])
2159 dnl raspberry pi openmax il configuration
2161 AC_ARG_ENABLE(rpi-omxil,
2162   [  --enable-rpi-omxil     openmax il configured for raspberry pi (default disabled)])
2163 if test "${enable_rpi_omxil}" = "yes"
2164 then
2165   VLC_ADD_PLUGIN([omxil omxil_vout])
2166   VLC_ADD_CFLAGS([omxil omxil_vout],[-DRPI_OMX])
2170 dnl CrystalHD codec plugin
2172 AC_ARG_ENABLE(crystalhd,
2173   [  --enable-crystalhd      crystalhd codec plugin (default auto)])
2174 if test "${enable_crystalhd}" != "no"; then
2175     AC_CHECK_HEADER(libcrystalhd/libcrystalhd_if.h, [
2176       VLC_ADD_PLUGIN([crystalhd])
2177       VLC_ADD_LIBS([crystalhd], [-lcrystalhd])
2178     ],[
2179       if test "${SYS}" = "mingw32" ; then
2180         AC_CHECK_HEADERS(libcrystalhd/bc_dts_defs.h, [
2181           VLC_ADD_PLUGIN([crystalhd])
2182           AC_CHECK_HEADERS(libcrystalhd/bc_drv_if.h, [
2183             VLC_ADD_LIBS([crystalhd], [-lbcmDIL])
2184             ])
2185         ],[
2186           AS_IF([test x"${enable_crystalhd}" = "xyes"],
2187                 [AC_MSG_ERROR("Could not find CrystalHD development headers")],
2188                 [AC_MSG_WARN("Could not find CrystalHD development headers")])
2189         ],[#define __LINUX_USER__
2190                #include <libcrystalhd/bc_dts_types.h>
2191         ])
2192       fi
2193     ],[
2194        #include <libcrystalhd/bc_dts_types.h>
2195       ])
2199 dnl  mad plugin
2201 have_mad="no"
2202 MAD_CFLAGS=""
2203 MAD_LIBS=""
2205 AC_ARG_WITH(mad, [  --with-mad=PATH         path to libmad], [
2206   enable_mad="yes"
2207 ], [
2208   with_mad="no"
2210 AS_IF([test "${with_mad}" != "no"], [
2211   MAD_CFLAGS="-I${with_mad}/include"
2212   MAD_LIBS="-L${with_mad}/lib"
2215 AC_ARG_ENABLE(mad,
2216   [  --enable-mad            libmad module (default enabled)])
2217 AS_IF([test "${enable_mad}" != "no"], [
2218   VLC_SAVE_FLAGS
2219   CPPFLAGS="${CPPFLAGS} ${MAD_CFLAGS}"
2220   LDFLAGS="${LDFLAGS} ${MAD_LIBS}"
2221   AC_CHECK_HEADERS(mad.h, [
2222     AC_CHECK_LIB(mad, mad_bit_init, [
2223       have_mad="yes"
2224       MAD_LIBS="${MAD_LIBS} -lmad"
2225     ])
2226   ])
2227   VLC_RESTORE_FLAGS
2228   AS_IF([test -n "$enable_mad" -a "${have_mad}" = "no"], [
2229     AC_MSG_ERROR([Could not find libmad. Install it or pass --disable-mad to disable it.])
2230   ])
2232 AC_SUBST(MAD_CFLAGS)
2233 AC_SUBST(MAD_LIBS)
2234 AM_CONDITIONAL([HAVE_MAD], [test "${have_mad}" = "yes"])
2236 dnl  mpg123 plugin
2239 PKG_ENABLE_MODULES_VLC([MPG123], [mpg123], [libmpg123], [libmpg123 decoder support], [auto])
2242 AC_ARG_ENABLE(merge-ffmpeg,
2243 [  --enable-merge-ffmpeg   merge FFmpeg-based plugins (default disabled)],, [
2244   enable_merge_ffmpeg="no"
2246 AM_CONDITIONAL([MERGE_FFMPEG], [test "$enable_merge_ffmpeg" != "no"])
2248 AC_MSG_CHECKING([for libavutil variant])
2249 PKG_CHECK_EXISTS([libavutil], [
2250   libavutil_version="$(${PKG_CONFIG} --modversion libavutil)"
2251   libavutil_micro="${libavutil_version##*.}"
2252   AS_IF([test ${libavutil_micro} -le 99], [
2253     avfork="libav"
2254   ], [
2255     avfork="ffmpeg"
2256   ])
2257 ], [
2258   avfork="none"
2260 AC_MSG_RESULT([${avfork}])
2263 dnl gstreamer stuff
2265 AC_ARG_ENABLE(gst-decode,
2266   [  --enable-gst-decode     GStreamer based decoding support (currently supports only video decoding) (default auto)])
2268 have_gst_decode="no"
2269 AS_IF([test "${enable_gst_decode}" != "no"], [
2270   PKG_CHECK_MODULES([GST_APP], [gstreamer-app-1.0], [
2271     PKG_CHECK_MODULES([GST_VIDEO], [gstreamer-video-1.0], [
2272       have_gst_decode="yes"
2273     ], [
2274       AC_MSG_WARN([${GST_VIDEO_PKG_ERRORS}. GStreamer decoder module will not be built.])
2275     ])
2276   ], [
2277     AC_MSG_WARN([${GST_APP_PKG_ERRORS}. GStreamer modules will not be built.])
2278   ])
2280 AM_CONDITIONAL([HAVE_GST_DECODE], [test "${have_gst_decode}" = "yes"])
2283 dnl  avcodec decoder/encoder plugin
2285 AC_ARG_ENABLE(avcodec,
2286 [  --enable-avcodec        libavcodec codec (default enabled)])
2287 AS_IF([test "${enable_avcodec}" != "no"], [
2288   PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 55.0.0 libavutil >= 52.0.0], [
2289     dnl PKG_CHECK_EXISTS([libavcodec < 56],, [
2290     dnl   AC_MSG_ERROR([libavcodec versions 56 and later are not supported yet.])
2291     dnl ])
2292     VLC_SAVE_FLAGS
2293     CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2294     CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2295     AC_CHECK_HEADERS(libavcodec/avcodec.h)
2296     AC_CHECK_HEADERS(libavutil/avutil.h)
2297     VLC_RESTORE_FLAGS
2298     have_avcodec="yes"
2299   ],[
2300     AC_MSG_ERROR([${AVCODEC_PKG_ERRORS}. Pass --disable-avcodec to ignore this error.])
2301   ])
2302 ], [
2303   have_avcodec="no"
2305 AM_CONDITIONAL([HAVE_AVCODEC], [test "${have_avcodec}" != "no"])
2308 dnl libva needs avcodec
2310 AC_ARG_ENABLE(libva,
2311   [  --enable-libva          VAAPI GPU decoding support (libVA) (default auto)])
2313 AS_IF([test "${enable_libva}" = "yes" -a "${have_avcodec}" != "yes" ], [
2314   AC_MSG_ERROR([--enable-libva and --disable-avcodec options are mutually exclusive. Use --enable-avcodec.])
2317 have_vaapi="no"
2318 have_vaapi_drm="no"
2319 have_vaapi_x11="no"
2320 AS_IF([test "${enable_libva}" != "no"], [
2321   PKG_CHECK_EXISTS([libva], [
2322     have_vaapi="yes"
2323   ], [
2324     AS_IF([test -n "${enable_libva}"], [
2325       AC_MSG_ERROR([${LIBVA_PKG_ERRORS}.])
2326     ], [
2327       AC_MSG_WARN([${LIBVA_PKG_ERRORS}.])
2328     ])
2329   ])
2330   PKG_CHECK_MODULES([LIBVA_DRM], [libva-drm], [
2331     have_vaapi_drm="yes"
2332   ], [
2333     AC_MSG_WARN([${LIBVA_DRM_PKG_ERRORS}.])
2334   ])
2335   PKG_CHECK_MODULES(LIBVA_X11, [libva-x11], [
2336     have_vaapi_x11="yes"
2337   ], [
2338     AC_MSG_WARN([${LIBVA_X11_PKG_ERRORS}.])
2339   ])
2341 AM_CONDITIONAL([HAVE_VAAPI_DRM], [test "${have_vaapi_drm}" = "yes"])
2342 AM_CONDITIONAL([HAVE_VAAPI_X11], [test "${have_vaapi_x11}" = "yes"])
2344 have_avcodec_vaapi="no"
2345 AS_IF([test "${have_vaapi}" = "yes" -a "${have_avcodec}" = "yes"], [
2346   VLC_SAVE_FLAGS
2347   CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2348   CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2349   AC_CHECK_HEADERS([libavcodec/vaapi.h], [
2350     AC_MSG_NOTICE([VAAPI acceleration activated])
2351     have_avcodec_vaapi="yes"
2352   ],[
2353     AS_IF([test -n "${enable_libva}"], [
2354       AC_MSG_ERROR([libva is present but libavcodec/vaapi.h is missing])
2355     ], [
2356       AC_MSG_WARN([libva is present but libavcodec/vaapi.h is missing ])
2357     ])
2358   ])
2359   VLC_RESTORE_FLAGS
2361 AM_CONDITIONAL([HAVE_AVCODEC_VAAPI], [test "${have_avcodec_vaapi}" = "yes"])
2364 dnl dxva2 needs avcodec
2366 AC_ARG_ENABLE(dxva2,
2367   [  --enable-dxva2          DxVA2 GPU decoding support (default auto)])
2369 have_avcodec_dxva2="no"
2370 AS_IF([test "${enable_dxva2}" != "no"], [
2371   if test "${SYS}" = "mingw32"; then
2372   AS_IF([test "x${have_avcodec}" = "xyes"], [
2373     AC_CHECK_HEADERS(dxva2api.h,
2374       [
2375         AC_CHECK_HEADERS(libavcodec/dxva2.h, [
2376            AC_MSG_NOTICE([DxVA2 acceleration activated])
2377            have_avcodec_dxva2="yes"
2378         ],[
2379     AS_IF([test "${enable_dxva2}" = "yes"],
2380           [AC_MSG_ERROR([dxva2 is present but libavcodec/dxva2.h is missing])],
2381               [AC_MSG_WARN([dxva2 is present but libavcodec/dxva2.h is missing ])])
2382         ], [#undef _WIN32_WINNT
2383             /* DXVA2 is only available in Vista and above */
2384             #define _WIN32_WINNT 0x600])
2385       ],[
2386     AS_IF([test "${enable_dxva2}" = "yes"],
2387               [AC_MSG_ERROR([Could not find required dxva2api.h])],
2388               [AC_MSG_WARN([dxva2api.h not found])])
2389       ])
2390   ],[
2391     AS_IF([test "x${enable_dxva2}" != "x"], [
2392       AC_MSG_ERROR([--enable-dxva2 and --disable-avcodec options are mutually exclusive.])
2393     ])
2394   ])
2395   fi
2397 AM_CONDITIONAL([HAVE_AVCODEC_DXVA2], [test "${have_avcodec_dxva2}" = "yes"])
2400 dnl d3d11va needs avcodec
2402 AC_ARG_ENABLE(d3d11va,
2403   [  --enable-d3d11va          D3D11 GPU decoding support (default auto)])
2405 have_avcodec_d3d11va="no"
2406 AS_IF([test "${enable_d3d11va}" != "no"], [
2407   if test "${SYS}" = "mingw32"; then
2408   AS_IF([test "x${have_avcodec}" = "xyes"], [
2409         AC_CHECK_TYPES([ID3D11VideoDecoder],
2410           [
2411             AC_CHECK_HEADERS(dxva2api.h,
2412               [
2413                 AC_CHECK_HEADERS(libavcodec/d3d11va.h, [
2414                    AC_MSG_NOTICE([D3D11 acceleration activated])
2415                    AC_DEFINE(HAVE_AVCODEC_D3D11VA, 1, [Define if the d3d11va module is built])
2416                    have_avcodec_d3d11va="yes"
2417                 ],[
2418                   AS_IF([test "${enable_d3d11va}" = "yes"],
2419                     [AC_MSG_ERROR([d3d11va is present but libavcodec/d3d11va.h is missing])],
2420                         [AC_MSG_WARN([d3d11va is present but libavcodec/d3d11va.h is missing ])])
2421                   ], [#undef _WIN32_WINNT
2422                       /* D3D11 is only available in Vista and above */
2423                       #define _WIN32_WINNT 0x600])
2424                   ],[
2425                     AS_IF([test "${enable_d3d11va}" = "yes"],
2426                           [AC_MSG_ERROR([Could not find required dxva2api.h])],
2427                           [AC_MSG_WARN([dxva2api.h not found])])
2428                   ])
2429           ],[
2430             AS_IF([test "${enable_d3d11va}" = "yes"],
2431                   [AC_MSG_ERROR([Could not find required ID3D11VideoDecoder in d3d11.h])],
2432                   [AC_MSG_WARN([ID3D11VideoDecoder not found])])
2433           ], [#include <d3d11.h>])
2434   ],[
2435     AS_IF([test "x${enable_d3d11va}" != "x"], [
2436       AC_MSG_ERROR([--enable-d3d11va and --disable-avcodec options are mutually exclusive.])
2437     ])
2438   ])
2439   fi
2441 AM_CONDITIONAL([HAVE_AVCODEC_D3D11VA], [test "${have_avcodec_d3d11va}" = "yes"])
2444 dnl DXGI debug
2446 AC_CHECK_HEADERS(dxgidebug.h)
2449 dnl vda needs avcodec
2451 AC_ARG_ENABLE(vda,
2452   [  --enable-vda          VDA  support (default auto)])
2454 have_avcodec_vda="no"
2455 AS_IF([test "${enable_vda}" != "no"], [
2456   if test "${SYS}" = "darwin"; then
2457   AS_IF([test "x${have_avcodec}" = "xyes"], [
2458     AC_CHECK_HEADERS(VideoDecodeAcceleration/VDADecoder.h,
2459       [
2460         AC_CHECK_HEADERS(libavcodec/vda.h, [
2461            have_avcodec_vda="yes"
2462         ],[
2463         AS_IF([test "${enable_vda}" = "yes"],
2464               [AC_MSG_ERROR([vda is present but libavcodec/vda.h is missing])],
2465               [AC_MSG_WARN([vda is present but libavcodec/vda.h is missing ])])
2466         ])
2467   ],[
2468         AS_IF([test "${enable_vda}" = "yes"],
2469               [AC_MSG_ERROR([Could not find required VideoDecodeAcceleration/VDADecoder.h])],
2470               [AC_MSG_WARN([VideoDecodeAcceleration/VDADecoder.h not found])])
2471       ])
2472   ],[
2473     AS_IF([test "x${enable_vda}" != "x"], [
2474       AC_MSG_ERROR([--enable-vda and --disable-avcodec options are mutually exclusive.])
2475     ])
2476  ])
2477  AS_IF([test "${have_avcodec_vda}" = "yes"], [
2478      SAVE_LIBS=$LIBS
2479      LIBS="$LIBS $AVCODEC_LIBS"
2480      AC_CHECK_FUNCS([av_vda_alloc_context])
2481      LIBS=$SAVE_LIBS
2482  ])
2483  fi
2485 AM_CONDITIONAL([HAVE_AVCODEC_VDA], [test "${have_avcodec_vda}" = "yes"])
2488 dnl  avformat demuxer/muxer plugin
2491 AC_ARG_ENABLE(avformat,
2492 [  --enable-avformat       libavformat containers (default enabled)],, [
2493   enable_avformat="${have_avcodec}"
2495 have_avformat="no"
2496 AS_IF([test "${enable_avformat}" != "no"], [
2497   PKG_CHECK_MODULES(AVFORMAT,[libavformat >= 53.21.0 libavcodec libavutil], [
2498       have_avformat="yes"
2499       VLC_SAVE_FLAGS
2500       CPPFLAGS="${CPPFLAGS} ${AVFORMAT_CFLAGS}"
2501       CFLAGS="${CFLAGS} ${AVFORMAT_CFLAGS}"
2502       AC_CHECK_HEADERS(libavformat/avformat.h libavformat/avio.h)
2503       AC_CHECK_HEADERS(libavcodec/avcodec.h)
2504       AC_CHECK_HEADERS(libavutil/avutil.h)
2505       AS_IF([test "$enable_merge_ffmpeg" = "no"], [
2506         have_avformat="no"
2507       ])
2508       VLC_RESTORE_FLAGS
2509     ],[
2510       AC_MSG_ERROR([${AVFORMAT_PKG_ERRORS}. Pass --disable-avformat to ignore this error.])
2511   ])
2513 AM_CONDITIONAL([HAVE_AVFORMAT], [test "${enable_avformat}" != "no"])
2516 dnl  swscale image scaling and conversion plugin
2519 AC_ARG_ENABLE(swscale,
2520   AS_HELP_STRING([--enable-swscale],[libswscale image scaling and conversion
2521           (default enabled)]))
2522 if test "${enable_swscale}" != "no"
2523 then
2524   PKG_CHECK_MODULES(SWSCALE,[libswscale],
2525     [
2526       VLC_SAVE_FLAGS
2527       CPPFLAGS="${CPPFLAGS} ${SWSCALE_CFLAGS}"
2528       CFLAGS="${CFLAGS} ${SWSCALE_CFLAGS}"
2529       AC_CHECK_HEADERS(libswscale/swscale.h)
2530       AC_CHECK_HEADERS(libavutil/avutil.h)
2531       VLC_ADD_PLUGIN([swscale])
2532       VLC_ADD_LIBS([swscale],[$SWSCALE_LIBS])
2533       VLC_ADD_CFLAGS([swscale],[$SWSCALE_CFLAGS])
2534       AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2535         VLC_ADD_LIBS([swscale],[${ac_cv_ld_bsymbolic}])
2536       ])
2537       VLC_RESTORE_FLAGS
2538     ],[
2539       AC_MSG_ERROR([${SWSCALE_PKG_ERRORS}. Pass --disable-swscale to ignore this error. Proper software scaling and some video chroma conversion will be missing.])
2540   ])
2544 dnl  postproc plugin
2547 AC_ARG_ENABLE(postproc,
2548 [  --enable-postproc       libpostproc image post-processing (default auto)])
2549 if test "${enable_postproc}" != "no"
2550 then
2551   PKG_CHECK_MODULES(POSTPROC,[libpostproc libavutil],
2552     [
2553       VLC_SAVE_FLAGS
2554       CPPFLAGS="${CPPFLAGS} ${POSTPROC_CFLAGS}"
2555       CFLAGS="${CFLAGS} ${POSTPROC_CFLAGS}"
2556       AC_CHECK_HEADERS(postproc/postprocess.h)
2557       VLC_ADD_PLUGIN([postproc])
2558       VLC_RESTORE_FLAGS
2559     ],[
2560       AC_MSG_WARN([${POSTPROC_PKG_ERRORS}.])
2561   ])
2565 dnl  faad decoder plugin
2567 AC_ARG_ENABLE(faad,
2568 [  --enable-faad           faad codec (default auto)])
2569 have_faad="no"
2570 AS_IF([test "${enable_faad}" != "no"], [
2571   AC_CHECK_HEADERS([neaacdec.h], [
2572     AC_CHECK_LIB(faad, NeAACDecOpen, [have_faad="yes"],, [$LIBM])
2574     AS_IF([test "${have_faad}" = "yes"], [
2575       VLC_ADD_PLUGIN([faad])
2576       VLC_ADD_LIBS([faad],[-lfaad])
2577     ], [
2578       AS_IF([test "${enable_faad}" = "yes"], [
2579         AC_MSG_ERROR([cannot find FAAD library])
2580       ], [
2581         AC_MSG_WARN([cannot find FAAD library])
2582       ])
2583     ])
2584   ])
2588 dnl libvpx decoder plugin
2590 AC_ARG_ENABLE(vpx,
2591     AS_HELP_STRING([--enable-vpx],[libvpx VP8/VP9 decoder (default auto)]))
2592 AS_IF([test "${enable_vpx}" != "no"],[
2593     PKG_CHECK_MODULES([VPX], [vpx] , [
2594         VLC_ADD_PLUGIN([vpx])
2595         VLC_ADD_CPPFLAGS([vpx], [${VPX_CFLAGS}])
2596         VLC_ADD_LIBS([vpx], [${VPX_LIBS}])
2597         AC_CHECK_LIB([vpx],[vpx_codec_vp8_dx], [
2598             VLC_ADD_CPPFLAGS([vpx], [-DENABLE_VP8_DECODER])
2599         ], [], [${VPX_LIBS}])
2600         AC_CHECK_LIB([vpx],[vpx_codec_vp9_dx], [
2601             VLC_ADD_CPPFLAGS([vpx], [-DENABLE_VP9_DECODER])
2602         ], [], [${VPX_LIBS}])
2603     ], [
2604     AS_IF([test "${enable_vpx}" = "yes"],[
2605         AC_MSG_ERROR([libvpx was not found])
2606     ])])
2610 dnl twolame encoder plugin
2612 PKG_ENABLE_MODULES_VLC([TWOLAME], [], [twolame], [MPEG Audio Layer 2 encoder], [auto], [], [], [ -DLIBTWOLAME_STATIC])
2615 dnl fdk-aac encoder plugin
2617 PKG_ENABLE_MODULES_VLC([FDKAAC], [], [fdk-aac], [FDK-AAC encoder], [disabled])
2620 dnl  QuickTime plugin
2622 AC_ARG_ENABLE(quicktime,
2623   [  --enable-quicktime      QuickTime module (deprecated)])
2624 if test "${enable_quicktime}" = "yes"; then
2625   if test "${SYS}" = "mingw32"; then
2626     VLC_ADD_PLUGIN([quicktime])
2627   else
2628   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2629     [ VLC_ADD_PLUGIN([quicktime])
2630       VLC_ADD_LIBS([quicktime],[-Wl,-framework,QuickTime,-framework,Carbon])
2631     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2632   fi
2636 dnl A52/AC3 decoder plugin
2638 AC_ARG_ENABLE(a52,
2639   [  --enable-a52            A/52 support with liba52 (default enabled)])
2640 if test "${enable_a52}" != "no"
2641 then
2642   AC_ARG_WITH(a52,
2643     [  --with-a52=PATH         a52 headers and libraries])
2644     if test -z "${with_a52}"
2645     then
2646       LDFLAGS_test=""
2647       CPPFLAGS_test=""
2648     else
2649       LDFLAGS_test="-L${with_a52}/lib"
2650       CPPFLAGS_test="-I${with_a52}/include"
2651     fi
2652     VLC_SAVE_FLAGS
2653     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2654     LDFLAGS="${LDFLAGS} ${LDFLAGS_test} ${LIBS_a52tofloat32}"
2655     AC_CHECK_HEADERS(a52dec/a52.h, [
2656       AC_CHECK_LIB(a52, a52_free, [
2657         VLC_ADD_PLUGIN([a52tofloat32])
2658         VLC_ADD_LIBS([a52tofloat32],[${LDFLAGS_test} -la52])
2659         VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2660       ],[
2661         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.])
2662         ], [$LIBM])
2663     ],[
2664       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.])
2665     ])
2666     VLC_RESTORE_FLAGS
2670 dnl DTS Coherent Acoustics decoder plugin
2672 PKG_ENABLE_MODULES_VLC([DCA], [dtstofloat32], [libdca >= 0.0.5], [DTS Coherent Acoustics support with libdca], [auto])
2675 dnl  Flac plugin
2677 PKG_ENABLE_MODULES_VLC([FLAC], [], [flac], [libflac decoder/encoder support], [auto])
2680 dnl  Libmpeg2 plugin
2682 PKG_ENABLE_MODULES_VLC([LIBMPEG2], [], [libmpeg2 > 0.3.2], [libmpeg2 decoder support], [auto])
2685 dnl  Vorbis plugin
2687 PKG_ENABLE_MODULES_VLC([VORBIS], [], [ogg vorbis >= 1.1 vorbisenc >= 1.1], [Vorbis decoder and encoder], [auto])
2690 dnl  Tremor plugin
2692 AC_ARG_ENABLE(tremor,
2693   [  --enable-tremor         Tremor decoder support (default disabled)])
2694 if test "${enable_tremor}" = "yes"
2695 then
2696   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2697     VLC_ADD_PLUGIN([tremor])
2698    ],[])
2702 dnl  Speex plugins
2704 PKG_ENABLE_MODULES_VLC([SPEEX], [], [ogg speex >= 1.0.5], [Speex support], [auto])
2705 have_speexdsp="no"
2706 AS_IF([test "${enable_speex}" != "no"], [
2707   PKG_CHECK_MODULES([SPEEXDSP], [speexdsp], [
2708     have_speexdsp="yes"
2709   ], [
2710     AC_MSG_WARN([${SPEEXDSP_PKG_ERRORS}.])
2711   ])
2713 AM_CONDITIONAL([HAVE_SPEEXDSP], [test "$have_speexdsp" = "yes"])
2716 dnl  Opus plugin
2718 PKG_ENABLE_MODULES_VLC([OPUS], [], [ogg opus >= 1.0.3], [Opus support], [auto])
2721 dnl  theora decoder plugin
2723 PKG_ENABLE_MODULES_VLC([THEORA], [], [ogg theoradec >= 1.0 theoraenc], [experimental theora codec], [auto])
2726 dnl  Daala decoder plugin
2728 PKG_ENABLE_MODULES_VLC([DAALA], [], [ogg daaladec daalaenc], [experimental daala codec], [disabled])
2731 dnl  schroedinger decoder plugin (for dirac format video)
2733 PKG_ENABLE_MODULES_VLC([SCHROEDINGER], [], [schroedinger-1.0 >= 1.0.10], [dirac decoder and encoder using schroedinger], [auto])
2736 dnl  PNG decoder module
2738 AC_ARG_ENABLE(png,
2739   [  --enable-png            PNG support (default enabled)])
2740 AS_IF([test "${enable_png}" != "no"], [
2741 AC_CHECK_HEADERS(png.h, [
2742   VLC_SAVE_FLAGS
2743   LDFLAGS="${LDFLAGS} -lz $LIBM"
2744   AC_CHECK_LIB(png, png_set_rows, [
2745     VLC_ADD_PLUGIN([png])
2746   ], [], [-lz $LIBM])
2747   VLC_RESTORE_FLAGS
2748   ])
2752 dnl  JPEG decoder module
2754 AC_ARG_ENABLE(jpeg,
2755   [  --enable-jpeg           JPEG support (default enabled)])
2756 AS_IF([test "${enable_jpeg}" != "no"], [
2757 AC_CHECK_HEADERS(jpeglib.h, [
2758   VLC_ADD_PLUGIN([jpeg])
2759   ])
2763 dnl  BPG decoder module
2765 AC_ARG_ENABLE(bpg,
2766   [  --enable-bpg           BPG support (default disabled)])
2767 AS_IF([test "${enable_bpg}" != "no"], [
2768 AC_CHECK_HEADERS(libbpg.h, [
2769   VLC_ADD_PLUGIN([bpg])
2770   ])
2774 dnl H262 encoder plugin (lib262)
2776 AC_ARG_ENABLE(x262,
2777   [  --enable-x262           H262 encoding support with static libx262 (default disabled)])
2778 if test "${enable_x262}" != "no"; then
2779     PKG_CHECK_MODULES(X262, x262, [
2780         VLC_ADD_PLUGIN([x262])
2781         VLC_ADD_LDFLAGS([x262],[${X262_LIBS}])
2782         AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2783           VLC_ADD_LIBS([x262],[${av_cv_ld_bsymbolic}])
2784         ])
2785         VLC_ADD_CFLAGS([x262],[${X262_CFLAGS}])
2786         if echo ${X262_LIBS} |grep -q 'pthreadGC2'; then
2787           VLC_ADD_CFLAGS([x262], [-DPTW32_STATIC_LIB])
2788         fi
2789     ], [
2790        if test "${enable_x262}" = "yes"; then
2791         AC_MSG_ERROR([x262 module doesn't work without staticly compiled libx262.a])
2792        fi
2793     ])
2796 dnl x265 encoder
2797 PKG_ENABLE_MODULES_VLC([X265],, [x265], [HEVC/H.265 encoder], [auto])
2800 dnl H264 encoder plugin (10-bit lib264)
2802 AC_ARG_ENABLE(x26410b,
2803   [  --enable-x26410b           H264 10-bit encoding support with static libx264 (default disabled)])
2804 if test "${enable_x26410b}" != "no"; then
2805     PKG_CHECK_MODULES(X26410B, x26410b, [
2806         VLC_ADD_PLUGIN([x26410b])
2807         VLC_ADD_LIBS([x26410b],[${X26410B_LIBS}])
2808         AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2809           VLC_ADD_LDFLAGS([x26410b],[${ac_cv_ld_bsymbolic}])
2810         ])
2811         VLC_ADD_CFLAGS([x26410b],[${X26410B_CFLAGS}])
2812         if echo ${X26410B_LIBS} |grep -q 'pthreadGC2'; then
2813           VLC_ADD_CFLAGS([x26410b], [-DPTW32_STATIC_LIB])
2814         fi
2815     ], [
2816        if test "${enable_x26410b}" = "yes"; then
2817         AC_MSG_ERROR([x26410b module doesn't work without staticly compiled libx264.a])
2818        fi
2819     ])
2824 dnl H264 encoder plugin (using libx264)
2826 AC_ARG_ENABLE(x264,
2827   [  --enable-x264           H264 encoding support with libx264 (default enabled)])
2828 if test "${enable_x264}" != "no"; then
2829       PKG_CHECK_MODULES(X264,x264 >= 0.86, [
2830         VLC_ADD_PLUGIN([x264])
2831         VLC_ADD_LIBS([x264],[${X264_LIBS}])
2833         AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2834           VLC_ADD_LDFLAGS([x264],[${ac_cv_ld_bsymbolic}])
2835         ])
2837         VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
2838         if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
2839           VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
2840         fi
2841       ],[
2842         if test "${enable_x264}" = "yes"; then
2843             AC_MSG_ERROR([${X264_PKG_ERRORS}: you may get it from http://www.videolan.org/x264.html])
2844           fi
2845       ])
2849 dnl Intel QuickSync (aka MediaSDK) H264/H262 encoder
2851 PKG_ENABLE_MODULES_VLC([MFX], [qsv], [libmfx], [Intel QuickSync MPEG4-Part10/MPEG2 (aka H.264/H.262) encoder], [auto])
2854 dnl libfluidsynth (MIDI synthetizer) plugin
2856 PKG_ENABLE_MODULES_VLC([FLUIDSYNTH], [], [fluidsynth >= 1.1.2], [MIDI synthetiser with libfluidsynth], [auto])
2859 dnl Teletext Modules
2860 dnl vbi decoder plugin (using libzbvi)
2861 dnl telx module
2862 dnl uncompatible
2864 AC_ARG_ENABLE(zvbi,
2865   AS_HELP_STRING([--enable-zvbi],[VBI (inc. Teletext) decoding support with
2866                   libzvbi (default enabled)]))
2867 AC_ARG_ENABLE(telx,
2868   AS_HELP_STRING([--enable-telx],[Teletext decoding module (conflicting with
2869                   zvbi) (default enabled if zvbi is absent)]))
2871 AS_IF( [test "${enable_zvbi}" != "no"],[
2872     PKG_CHECK_MODULES(ZVBI, [zvbi-0.2 >= 0.2.28],
2873         [
2874           VLC_ADD_PLUGIN([zvbi])
2875           AC_DEFINE(ZVBI_COMPILED, 1, [Define if the zvbi module is built])
2876           AS_IF( [test "${enable_telx}" = "yes"],[
2877                   AC_MSG_WARN([The zvbi and telx modules are incompatible. Using zvbi.])
2878                   ])
2879         ],[
2880           AC_MSG_WARN([${ZVBI_PKG_ERRORS}. Enabling the telx module instead.])
2881         ])
2882     ])
2883 AS_IF( [test "${enable_telx}" != "no" ],[
2884   VLC_ADD_PLUGIN([telx])
2885   ])
2888 dnl libass subtitle rendering module
2890 AC_ARG_ENABLE(libass,
2891   [  --enable-libass         Subtitle support using libass (default enabled)])
2892 AS_IF( [test "${enable_libass}" != "no"], [
2893   PKG_CHECK_MODULES(LIBASS, [libass >= 0.9.8],
2894       [
2895         VLC_ADD_PLUGIN([libass])
2897         AC_CHECK_HEADERS(fontconfig/fontconfig.h,
2898           [VLC_ADD_CPPFLAGS([libass],[-DHAVE_FONTCONFIG])
2899            VLC_ADD_LIBS([libass],[-lfontconfig])
2900        ])
2901       ],[
2902         AC_MSG_WARN([${LIBASS_PKG_ERRORS}.])
2903       ])
2904   ])
2907 dnl ARIB subtitles rendering module
2909 AC_ARG_ENABLE(aribsub,
2910   [  --enable-aribsub        ARIB Subtitles support (default enabled)])
2911 AS_IF( [test "${enable_aribsub}" != "no" ],[
2912   PKG_CHECK_MODULES(ARIBB24, [aribb24 >= 1.0.1], [
2913       have_aribb24="yes"
2914       VLC_ADD_PLUGIN([aribsub])
2915       VLC_ADD_LIBS([aribsub],[-laribb24])
2916       AC_DEFINE(HAVE_ARIBB24, 1, [Define if libaribb24 is available.])
2917     ],[
2918       AC_MSG_WARN(Library [aribb24] needed for [aribsub] was not found)
2919       have_aribb24="no"
2920   ])
2922 AM_CONDITIONAL([HAVE_ARIBB24], [test x"${have_aribb24}" = x"yes"])
2925 dnl ARIB B25
2927 PKG_ENABLE_MODULES_VLC([ARIBB25], [aribcam], [aribb25 >= 0.2.6], [ARIB STD-B25], [auto])
2930 dnl  kate decoder plugin
2932 PKG_ENABLE_MODULES_VLC([KATE], [], [kate >= 0.3.0], [kate codec], [auto])
2935 dnl  tiger rendering for kate decoder plugin
2937 AC_ARG_ENABLE(tiger,
2938 [  --enable-tiger          Tiger rendering library for Kate streams (default auto)])
2939 AS_IF([test "${enable_tiger}" != "no"], [
2940   PKG_CHECK_MODULES(TIGER,[tiger >= 0.3.1], [
2941       AC_DEFINE(HAVE_TIGER, 1, [Define if libtiger is available.])],[
2942         AS_IF([test -n "${enable_tiger}"], [
2943           AC_MSG_ERROR([${TIGER_PKG_ERRORS}.])
2944         ])
2945   ])
2950 dnl  Video plugins
2953 EXTEND_HELP_STRING([Video plugins:])
2956 dnl  OpenGL
2958 PKG_CHECK_MODULES([EGL], [egl], [
2959   have_egl="yes"
2960 ], [
2961   have_egl="no"
2963 AM_CONDITIONAL([HAVE_EGL], [test "${have_egl}" = "yes"])
2965 have_gl="no"
2966 PKG_CHECK_MODULES([GL], [gl], [
2967   have_gl="yes"
2968 ], [
2969   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2970 #ifdef _WIN32
2971 # include <GL/glew.h>
2972 #endif
2973 #include <GL/gl.h>
2974 ]], [
2975     [int t0 = GL_TEXTURE0;]])
2976   ], [
2977     GL_CFLAGS=""
2978     have_gl="yes"
2979     AS_IF([test "${SYS}" != "mingw32"], [
2980       GL_LIBS="-lGL"
2981     ], [
2982       GL_LIBS="-lopengl32"
2983     ])
2984   ])
2986 AM_CONDITIONAL([HAVE_GL], [test "${have_gl}" = "yes"])
2988 dnl OpenGL ES 2: depends on EGL 1.1
2989 PKG_ENABLE_MODULES_VLC([GLES2], [], [glesv2], [OpenGL ES v2 support], [disabled])
2990 dnl OpenGL ES 1: depends on EGL 1.0
2991 PKG_ENABLE_MODULES_VLC([GLES1], [], [glesv1_cm], [OpenGL ES v1 support], [disabled])
2994 dnl  Xlib
2997 AC_PATH_XTRA()
2998 AC_CHECK_HEADERS(X11/Xlib.h)
3001 dnl  X C Bindings modules
3003 AC_ARG_ENABLE(xcb,
3004   [  --enable-xcb            X11 support with XCB (default enabled)],, [
3005   AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "darwin" -a "${SYS}" != "symbian"], [
3006     enable_xcb="yes"
3007   ], [
3008     enable_xcb="no"
3009   ])
3011 AC_ARG_ENABLE(xvideo,
3012   [  --enable-xvideo         XVideo support (default enabled)],, [
3013     enable_xvideo="$enable_xcb"
3016 have_xcb="no"
3017 have_xcb_keysyms="no"
3018 have_xcb_randr="no"
3019 have_xcb_xvideo="no"
3020 AS_IF([test "${enable_xcb}" != "no"], [
3021   dnl libxcb
3022   PKG_CHECK_MODULES(XCB, [xcb >= 1.6])
3023   have_xcb="yes"
3024   PKG_CHECK_MODULES(XCB_SHM, [xcb-shm])
3025   PKG_CHECK_MODULES(XCB_COMPOSITE, [xcb-composite])
3026   PKG_CHECK_MODULES(XPROTO, [xproto])
3028   AS_IF([test "${enable_xvideo}" != "no"], [
3029     PKG_CHECK_MODULES(XCB_XV, [xcb-xv >= 1.1.90.1], [have_xcb_xvideo="yes"])
3030   ])
3032   PKG_CHECK_MODULES(XCB_RANDR, [xcb-randr >= 1.3], [have_xcb_randr="yes"])
3034   dnl xcb-utils
3035   PKG_CHECK_MODULES(XCB_KEYSYMS, [xcb-keysyms >= 0.3.4], [have_xcb_keysyms="yes"], [
3036     AC_MSG_WARN([${XCB_KEYSYMS_PKG_ERRORS}. Hotkeys will not work.])
3037   ])
3039 AM_CONDITIONAL([HAVE_XCB], [test "${have_xcb}" = "yes"])
3040 AM_CONDITIONAL([HAVE_XCB_KEYSYMS], [test "${have_xcb_keysyms}" = "yes"])
3041 AM_CONDITIONAL([HAVE_XCB_RANDR], [test "${have_xcb_randr}" = "yes"])
3042 AM_CONDITIONAL([HAVE_XCB_XVIDEO], [test "${have_xcb_xvideo}" = "yes"])
3046 dnl VDPAU needs X11
3048 AC_ARG_ENABLE(vdpau,
3049   [AS_HELP_STRING([--enable-vdpau], [VDPAU hardware support (default auto)])])
3050 have_vdpau="no"
3051 AS_IF([test "${enable_vdpau}" != "no"], [
3052   PKG_CHECK_MODULES([VDPAU], [vdpau >= 0.6], [
3053     have_vdpau="yes"
3054     AS_IF([test "${no_x}" = "yes"], [
3055       AC_MSG_ERROR([VDPAU requires Xlib (X11).])
3056     ])
3057   ], [
3058     AS_IF([test -n "${enable_vdpau}"], [
3059       AC_MSG_ERROR([${VDPAU_PKG_ERRORS}.])
3060     ])
3061   ])
3063 AM_CONDITIONAL([HAVE_VDPAU], [test "${have_vdpau}" = "yes"])
3065 have_avcodec_vdpau="no"
3066 AS_IF([test "${have_vdpau}" = "yes" -a "${have_avcodec}" = "yes"], [
3067   case "${avfork}" in
3068     libav) av_vdpau_ver="55.26.0" ;;
3069     ffmpeg) av_vdpau_ver="55.42.100" ;;
3070   esac
3071   PKG_CHECK_EXISTS([libavutil >= 52.4.0 libavcodec >= ${av_vdpau_ver}], [
3072     have_avcodec_vdpau="yes"
3073     AC_MSG_NOTICE([VDPAU decoding acceleration activated])
3074   ], [
3075     AS_IF([test -n "${enable_vdpau}"], [
3076       AC_MSG_ERROR([libav libavutil >= 52.4.0 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
3077     ], [
3078       AC_MSG_WARN([libav libavutil >= 52.4.0 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
3079     ])
3080   ])
3082 AM_CONDITIONAL([HAVE_AVCODEC_VDPAU], [test "${have_avcodec_vdpau}" = "yes"])
3086 dnl  Wayland
3088 AC_ARG_ENABLE(wayland,
3089   [AS_HELP_STRING([--enable-wayland], [Wayland support (default auto)])])
3090 have_wayland="no"
3091 AC_ARG_VAR([WAYLAND_SCANNER], [Wayland scanner utility])
3093 AS_IF([test "${enable_wayland}" != "no"], [
3094   AC_MSG_CHECKING([for the Wayland scanner])
3095   AS_IF([test -z "$WAYLAND_SCANNER"], [
3096     PKG_CHECK_EXISTS([wayland-scanner], [
3097       WAYLAND_SCANNER="$(${PKG_CONFIG} wayland-scanner --variable wayland_scanner)"
3098     ], [
3099       WAYLAND_SCANNER="wayland-scanner"
3100     ])
3101   ])
3102   AC_MSG_RESULT([$WAYLAND_SCANNER])
3104   PKG_CHECK_MODULES([WAYLAND_CLIENT], [wayland-client >= 1.5.91], [
3105     have_wayland="yes"
3106   ], [
3107     AS_IF([test -n "${enable_wayland}"], [
3108       AC_MSG_ERROR([${WAYLAND_CLIENT_PKG_ERRORS}.])
3109     ])
3110   ])
3112   AS_IF([test "${have_egl}" = "yes"], [
3113     PKG_CHECK_MODULES([WAYLAND_EGL], [wayland-egl], [
3114       have_wayland_egl="yes"
3115     ], [
3116       AS_IF([test -n "${enable_wayland}"], [
3117         AC_MSG_ERROR([${WAYLAND_EGL_PKG_ERRORS}.])
3118       ])
3119     ])
3120   ])
3122 AM_CONDITIONAL([HAVE_WAYLAND], [test "${have_wayland}" = "yes"])
3123 AM_CONDITIONAL([HAVE_WAYLAND_EGL], [test "${have_wayland_egl}" = "yes"])
3127 dnl  SDL module
3129 AC_ARG_ENABLE(sdl,
3130   [  --enable-sdl            SDL support (default enabled)])
3131 AC_ARG_ENABLE(sdl-image,
3132   [  --enable-sdl-image      SDL image support (default enabled)])
3133 if test "${enable_sdl}" != "no"
3134 then
3135    PKG_CHECK_MODULES(SDL, [sdl >= 1.2.10], [
3136       # SDL on Darwin is heavily patched and can only run SDL_image
3137       if test "${SYS}" != "darwin"; then
3138         VLC_ADD_PLUGIN([vout_sdl])
3139       fi
3141       # SDL_image
3142       AS_IF([ test "${enable_sdl_image}" != "no"],[
3143         PKG_CHECK_MODULES(SDL_IMAGE, [SDL_image >= 1.2.10], [
3144           VLC_ADD_PLUGIN([sdl_image])],
3145           [ AC_MSG_WARN([${SDL_IMAGE_PKG_ERRORS}. You should install it alongside your SDL package.])
3146           ])
3147       ])
3148    ],[
3149      AC_MSG_WARN([${SDL_PKG_ERRORS}.])
3150    ])
3154 dnl  freetype module
3156 AC_ARG_ENABLE(freetype,
3157   [  --enable-freetype       freetype support   (default auto)])
3158 AC_ARG_ENABLE(fribidi,
3159   [  --enable-fribidi        fribidi support    (default auto)])
3160 AC_ARG_ENABLE(harfbuzz,
3161   [  --enable-harfbuzz       harfbuzz support   (default auto)])
3162 AC_ARG_ENABLE(fontconfig,
3163   [  --enable-fontconfig     fontconfig support (default auto)])
3165 AC_ARG_WITH([default-font],
3166     AS_HELP_STRING([--with-default-font=PATH],
3167         [Path to the default font]),
3168         [AC_DEFINE_UNQUOTED([DEFAULT_FONT_FILE],
3169             "$withval", [Default font])])
3170 AC_ARG_WITH([default-monospace-font],
3171     AS_HELP_STRING([--with-default-monospace-font=PATH],
3172         [Path to the default font]),
3173         [AC_DEFINE_UNQUOTED([DEFAULT_MONOSPACE_FONT_FILE],
3174             "$withval", [Default monospace font])])
3176 AC_ARG_WITH([default-font-family],
3177     AS_HELP_STRING([--with-default-font-family=NAME],
3178         [Path to the default font family]),
3179         [AC_DEFINE_UNQUOTED([DEFAULT_FAMILY],
3180             "$withval", [Default font family])])
3181 AC_ARG_WITH([default-monospace-font-family],
3182     AS_HELP_STRING([--with-default-monospace-font-family=NAME],
3183         [Path to the default font family]),
3184         [AC_DEFINE_UNQUOTED([DEFAULT_MONOSPACE_FAMILY],
3185             "$withval", [Default monospace font family])])
3187 have_freetype="no"
3188 have_fontconfig="no"
3189 have_fribidi="no"
3190 have_harfbuzz="no"
3192 if test "${enable_freetype}" != "no"; then
3193    PKG_CHECK_MODULES(FREETYPE, freetype2, [
3194       have_freetype="yes"
3195       VLC_ADD_CPPFLAGS([skins2],[${FREETYPE_CFLAGS}])
3196       VLC_ADD_LIBS([skins2],[${FREETYPE_LIBS}])
3198       dnl fontconfig support
3199       if test "${SYS}" != "mingw32"; then
3200           if test "${enable_fontconfig}" != "no"; then
3201             AC_CHECK_HEADERS(fontconfig/fontconfig.h, [
3202               have_fontconfig="yes"
3203             ],[AC_MSG_WARN([library fontconfig not found. Styles will be disabled in freetype])])
3204           fi
3205       fi
3207       dnl fribidi support
3208       if test "${enable_fribidi}" != "no"; then
3209         PKG_CHECK_MODULES(FRIBIDI, fribidi, [
3210           have_fribidi="yes"
3211           VLC_ADD_CPPFLAGS([skins2], [${FRIBIDI_CFLAGS} -DHAVE_FRIBIDI])
3212           VLC_ADD_LIBS([skins2], [${FRIBIDI_LIBS}])
3213         ],[AC_MSG_WARN([${FRIBIDI_PKG_ERRORS}. Bidirectional text and complex scripts (Arabic, Farsi, Thai...) will be disabled in FreeType.])])
3214       fi
3216       dnl harfbuzz support
3217       if test "${have_fribidi}" != "no"; then
3218         if test "${enable_harfbuzz}" != "no"; then
3219           PKG_CHECK_MODULES(HARFBUZZ, harfbuzz, [
3220             have_harfbuzz="yes"
3221             VLC_ADD_CPPFLAGS([skins2], [${HARFBUZZ_CFLAGS} -DHAVE_HARFBUZZ])
3222             VLC_ADD_LIBS([skins2], [${HARFBUZZ_LIBS}])
3223           ],[AC_MSG_WARN([${HARFBUZZ_PKG_ERRORS}. Support for complex scripts (Arabic, Farsi, Thai...) will be disabled in FreeType.])])
3224         fi
3225       fi
3226   ],[
3227   AS_IF([test -n "${enable_freetype}"],[
3228     AC_MSG_ERROR([${FREETYPE_PKG_ERRORS}. Install FreeType2 development or configure with --disable-freetype.])
3229     ])
3230   ])
3233 AM_CONDITIONAL([HAVE_FREETYPE], [test "${have_freetype}" = "yes"])
3234 AM_CONDITIONAL([HAVE_FONTCONFIG], [test "${have_fontconfig}" = "yes"])
3235 AM_CONDITIONAL([HAVE_FRIBIDI], [test "${have_fribidi}" = "yes"])
3236 AM_CONDITIONAL([HAVE_HARFBUZZ], [test "${have_harfbuzz}" = "yes"])
3240 dnl  QuartzText vout module (iOS/Mac OS)
3242 AC_ARG_ENABLE(macosx-quartztext,
3243   [  --enable-macosx-quartztext   Mac OS X quartz text module (default enabled on Mac OS X)])
3244 if test "x${enable_macosx_quartztext}" != "xno" &&
3245   (test "${SYS}" = "darwin" || test "${enable_macosx_quartztext}" = "yes")
3246 then
3247   VLC_ADD_PLUGIN([quartztext])
3251 dnl  SVG module (text rendering and image decoding)
3253 PKG_ENABLE_MODULES_VLC([SVG], [], [librsvg-2.0 >= 2.9.0], [SVG rendering library],[auto])
3254 PKG_ENABLE_MODULES_VLC([SVGDEC], [], [librsvg-2.0 >= 2.9.0 cairo >= 1.13.1], [SVG image decoder library],[auto])
3257 dnl  Windows DirectX module
3260 AC_ARG_ENABLE(directx,
3261   [AS_HELP_STRING([--enable-directx],
3262     [Microsoft DirectX support (default enabled on Windows)])],, [
3263   AS_IF([test "${SYS}" = "mingw32"], [
3264     enable_directx="yes"
3265   ], [
3266     enable_directx="no"
3267   ])
3269 have_directx="no"
3270 AS_IF([test "${enable_directx}" != "no"], [
3271   dnl DirectDraw
3272   AC_CHECK_HEADERS(ddraw.h, [
3273     have_directx="yes"
3274   ], [
3275     AC_MSG_ERROR([Cannot find DirectX headers!])
3276   ])
3278   dnl OpenGL
3279   AC_CHECK_HEADERS(GL/wglew.h, [
3280     VLC_ADD_PLUGIN([glwin32])
3281   ],, [
3282     #include <windows.h>
3283     #include <GL/gl.h>
3284   ])
3286   dnl Direct3D11
3287   AC_CHECK_HEADERS(d3d11.h, [
3288     VLC_ADD_PLUGIN([direct3d11])
3289   ])
3291   dnl Direct3D9
3292   AC_CHECK_HEADERS(d3d9.h, [
3293     VLC_ADD_PLUGIN([direct3d9])
3294   ])
3296   dnl Direct2D
3297   AC_CHECK_HEADERS(d2d1.h, [
3298     VLC_ADD_PLUGIN([direct2d])
3299   ])
3301 AM_CONDITIONAL([HAVE_DIRECTX], [test "$have_directx" = "yes"])
3304 dnl  Linux framebuffer module
3306 AC_CHECK_HEADER([linux/fb.h], [
3307   VLC_ADD_PLUGIN([fb])
3312 dnl  DirectFB module
3313 dnl  try to find using: 1 - given location; 2 - directfb-config; 3 - pkg-config
3314 dnl  TODO: support for static linking
3316 AC_ARG_ENABLE(directfb,
3317   [  --enable-directfb       DirectFB support (default disabled)])
3318 AC_ARG_WITH(directfb,
3319   [  --with-directfb=PATH    path to DirectFB headers and libraries])
3321 if test "${enable_directfb}" = "yes"; then
3322     have_directfb="false"
3323     CPPFLAGS_mydirectfb=
3324     LIBS_mydirectfb=
3325     if test "${with_directfb}" != "no" -a -n "${with_directfb}"; then
3326         dnl Trying the given location
3327         VLC_SAVE_FLAGS
3329         CPPFLAGS_new="-I${with_directfb}/include -D_REENTRANT -D_GNU_SOURCE"
3330         LIBS_new="-L${with_directfb}/lib/fusion/.libs/ -L${with_directfb}/lib/direct/.libs/ -L${with_directfb}/src/.libs/"
3332         CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_new}"
3333         LIBS="${LIBS} ${LIBS_new}"
3335         dnl FIXME: too obscure
3336         AC_CHECK_HEADER([directfb.h], [
3337             AC_CHECK_LIB([direct],[direct_initialize], [
3338                 AC_CHECK_LIB([fusion], [fusion_enter], [
3339                     AC_CHECK_LIB([directfb], [DirectFBInit], have_directfb="true", have_directfb="false")
3340                 ], have_directfb="false")
3341             ], have_directfb="false")
3342         ], have_directfb="false")
3344         VLC_RESTORE_FLAGS
3346         if test "${have_directfb}" = "true"; then
3347             LIBS_mydirectfb="${LIBS_new} -lz $LIBDL -ldirectfb -lfusion -ldirect -lpthread"
3348             CPPFLAGS_mydirectfb="${CPPFLAGS_new}"
3349         fi
3350     else
3351         dnl Look for directfb-config
3352         AC_PATH_PROG(DIRECTFB_CONFIG, directfb-config, no, ${PATH})
3353         if test "${DIRECTFB_CONFIG}" != "no"; then
3354             CPPFLAGS_mydirectfb="`${DIRECTFB_CONFIG} --cflags`"
3355             LIBS_mydirectfb="`${DIRECTFB_CONFIG} --libs`"
3356             have_directfb="true"
3357         else
3358             dnl Trying with pkg-config
3359             PKG_CHECK_MODULES(DIRECTFB, directfb, [
3360                 CPPFLAGS_mydirectfb="${DIRECTFB_CFLAGS}"
3361                 LIBS_mydirectfb="${DIRECTFB_LIBS}"
3362                 have_directfb="true"
3363                 ], [have_directfb="false"])
3364         fi
3365     fi
3366     if test "${have_directfb}" = "true"; then
3367         VLC_ADD_PLUGIN([directfb])
3368         VLC_ADD_CPPFLAGS([directfb],[${CPPFLAGS_mydirectfb}])
3369         VLC_ADD_LIBS([directfb],[${LIBS_mydirectfb}])
3370     else
3371         AC_MSG_ERROR([${DIRECTFB_PKG_ERRORS}.])
3372     fi
3376 dnl  AA plugin
3378 AC_ARG_ENABLE(aa,
3379   [  --enable-aa             aalib output (default disabled)])
3380 if test "${enable_aa}" = "yes"
3381 then
3382   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3383   if test "${have_aa}" = "true"
3384   then
3385     VLC_ADD_PLUGIN([aa])
3386   fi
3390 dnl  libcaca plugin
3392 PKG_ENABLE_MODULES_VLC([CACA], [], [caca >= 0.99.beta14], [libcaca output],[auto])
3395 dnl  OS/2 KVA plugin
3397 AC_ARG_ENABLE(kva,
3398   [AS_HELP_STRING([--enable-kva],
3399     [support the K Video Accelerator KVA (default enabled on OS/2)])],, [
3400   AS_IF([test "$SYS" = "os2"], [
3401     enable_kva="yes"
3402   ])
3404 have_kva="no"
3405 KVA_LIBS=""
3406 AS_IF([test "$enable_kva" != "no"], [
3407   AC_CHECK_HEADERS([kva.h], [
3408     have_kva="yes"
3409     AC_CHECK_LIB(kva, main, [
3410       KVA_LIBS="-lkva"
3411     ])
3412   ])
3414 AC_SUBST(KVA_LIBS)
3415 AM_CONDITIONAL([HAVE_KVA], [test "${have_kva}" = "yes"])
3418 dnl MMAL plugin
3420 AC_ARG_ENABLE(mmal,
3421   AS_HELP_STRING([--enable-mmal],
3422     [Multi-Media Abstraction Layer (MMAL) hardware plugin (default enable)]))
3423 if test "${enable_mmal}" != "no"; then
3424   VLC_SAVE_FLAGS
3425   LDFLAGS="${LDFLAGS} -L/opt/vc/lib -lvchostif"
3426   CPPFLAGS="${CPPFLAGS} -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
3427   AC_CHECK_HEADERS(interface/mmal/mmal.h,
3428     [ AC_CHECK_LIB(bcm_host, vc_tv_unregister_callback_full, [
3429         have_mmal="yes"
3430         VLC_ADD_PLUGIN([mmal])
3431         VLC_ADD_LDFLAGS([mmal],[ -L/opt/vc/lib ])
3432         VLC_ADD_CFLAGS([mmal],[ -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux ])
3433         VLC_ADD_LIBS([mmal],[ -lbcm_host -lmmal -lvchostif ]) ], [
3434           AS_IF([test "${enable_mmal}" = "yes"],
3435             [ AC_MSG_ERROR([Cannot find bcm library...]) ],
3436             [ AC_MSG_WARN([Cannot find bcm library...]) ])
3437           ],
3438         [])
3439     ] , [ AS_IF([test "${enable_mmal}" = "yes"],
3440       [ AC_MSG_ERROR([Cannot find development headers for mmal...]) ],
3441       [ AC_MSG_WARN([Cannot find development headers for mmal...]) ]) ])
3442   VLC_RESTORE_FLAGS
3444 AM_CONDITIONAL([HAVE_MMAL], [test "${have_mmal}" = "yes"])
3447 dnl  Audio plugins
3450 EXTEND_HELP_STRING([Audio plugins:])
3453 dnl  Pulseaudio module
3455 AC_ARG_ENABLE(pulse,
3456   [AS_HELP_STRING([--enable-pulse],
3457     [use the PulseAudio client library (default auto)])])
3458 have_pulse="no"
3459 AS_IF([test "${enable_pulse}" != "no"], [
3460   PKG_CHECK_MODULES([PULSE], [libpulse >= 1.0], [
3461     have_pulse="yes"
3462   ], [
3463     AS_IF([test "x${enable_pulse}" != "x"], [
3464       AC_MSG_ERROR([$PULSE_PKG_ERRORS. PulseAudio 1.0 or later required.])
3465     ])
3466   ])
3468 AM_CONDITIONAL([HAVE_PULSE], [test "${have_pulse}" = "yes"])
3471 dnl  ALSA module
3473 AC_ARG_ENABLE(alsa,
3474   [AS_HELP_STRING([--enable-alsa],
3475     [support the Advanced Linux Sound Architecture (default auto)])],, [
3476   AS_IF([test "$SYS" = "linux" -a "${have_pulse}" = "no"], [
3477     enable_alsa="yes"
3478   ])
3480 have_alsa="no"
3481 AS_IF([test "${enable_alsa}" != "no"], [
3482   PKG_CHECK_MODULES([ALSA], [alsa >= 1.0.24], [
3483     have_alsa="yes"
3484   ], [
3485     AS_IF([test "x${enable_alsa}" != "x"], [
3486       AC_MSG_ERROR([$ALSA_PKG_ERRORS. alsa-lib 1.0.24 or later required.])
3487     ])
3488   ])
3490 AM_CONDITIONAL([HAVE_ALSA], [test "${have_alsa}" = "yes"])
3493 dnl  Open Sound System module
3495 AC_ARG_ENABLE(oss,
3496   [AS_HELP_STRING([--enable-oss],
3497     [support the Open Sound System OSS (default enabled on FreeBSD/NetBSD/DragonFlyBSD)])],, [
3498   AS_IF([test "$SYS" = "mingw32" -o "$SYS" = "linux" -o "$SYS" = "openbsd"], [
3499     enable_oss="no"
3500   ])
3502 have_oss="no"
3503 OSS_LIBS=""
3504 AS_IF([test "$enable_oss" != "no"], [
3505   AC_CHECK_HEADERS([soundcard.h sys/soundcard.h], [
3506     have_oss="yes"
3507     AC_CHECK_LIB(ossaudio, main, [
3508       OSS_LIBS="-lossaudio"
3509     ])
3510   ])
3512 AC_SUBST(OSS_LIBS)
3513 AM_CONDITIONAL([HAVE_OSS], [test "${have_oss}" = "yes"])
3516 dnl  OpenBSD sndio module
3518 AC_ARG_ENABLE([sndio],
3519   [AS_HELP_STRING([--disable-sndio],
3520     [support the OpenBSD sndio (default auto)])],, [
3521   AS_IF([test "$SYS" = "openbsd"], [
3522     enable_sndio="yes"
3523   ])
3525 have_sndio="no"
3526 AS_IF([test "$enable_sndio" != "no"], [
3527   AC_CHECK_HEADER([sndio.h], [
3528     have_sndio="yes"
3529   ])
3531 AM_CONDITIONAL([HAVE_SNDIO], [test "${have_sndio}" = "yes"])
3534 dnl  Windows Audio Session plugin
3536 AC_ARG_ENABLE([wasapi],
3537   [AS_HELP_STRING([--enable-wasapi],
3538     [use the Windows Audio Session API (default auto)])
3540 have_wasapi="no"
3541 AS_IF([test "$enable_wasapi" != "no"], [
3542   AC_CHECK_HEADER([audioclient.h], [
3543     have_wasapi="yes"
3544   ], [
3545     AS_IF([test "x${enable_wasapi}" != "x"], [
3546       AC_MSG_ERROR([Windows Audio Session API not found.])
3547     ])
3548   ])
3550 AM_CONDITIONAL([HAVE_WASAPI], [test "${have_wasapi}" = "yes"])
3553 dnl  AudioQueue plugin
3555 AC_ARG_ENABLE(audioqueue,
3556   [  --enable-audioqueue     AudioQueue audio module (default disabled)])
3557 if test "${enable_audioqueue}" = "yes"
3558 then
3559   VLC_ADD_PLUGIN([audioqueue])
3563 dnl  JACK modules
3565 AC_ARG_ENABLE(jack,
3566   [AS_HELP_STRING([--disable-jack],
3567     [do not use jack (default auto)])])
3568 have_jack="no"
3569 AS_IF([test "${enable_jack}" != "no"], [
3570     PKG_CHECK_MODULES(JACK, jack >= 1.9.7,
3571       [ have_jack=yes ],
3572       [
3573       AC_MSG_WARN([${JACK_PKG_ERRORS}, trying jack1 instead])
3575       PKG_CHECK_MODULES(JACK, jack >= 0.120.1 jack < 1.0,
3576       [ have_jack=yes ],
3577       [
3578       AS_IF([test -n "${enable_jack}"],
3579          [AC_MSG_ERROR([${JACK_PKG_ERRORS}.])],
3580          [AC_MSG_WARN([${JACK_PKG_ERRORS}.])])
3581       ])
3582     ])
3584 AM_CONDITIONAL([HAVE_JACK], [test "${have_jack}" != "no"])
3587 dnl  OpenSLES Android
3589 AC_ARG_ENABLE(opensles,
3590   [  --enable-opensles       Android OpenSL ES audio module (default disabled)])
3591 if test "${HAVE_ANDROID}" = "1"; then
3592   if test "${enable_opensles}" = "yes"; then
3593       AC_CHECK_HEADERS(SLES/OpenSLES.h,
3594         [ VLC_ADD_PLUGIN([opensles_android]) ],
3595         [ AC_MSG_ERROR([cannot find OpenSLES headers])] )
3596   fi
3600 dnl libsamplerate plugin
3602 PKG_ENABLE_MODULES_VLC([SAMPLERATE], [], [samplerate], [Resampler with libsamplerate], [auto])
3605 dnl  OS/2 KAI plugin
3607 AC_ARG_ENABLE(kai,
3608   [AS_HELP_STRING([--enable-kai],
3609     [support the K Audio Interface KAI (default enabled on OS/2)])],, [
3610   AS_IF([test "$SYS" = "os2"], [
3611     enable_kai="yes"
3612   ])
3614 have_kai="no"
3615 KAI_LIBS=""
3616 AS_IF([test "$enable_kai" != "no"], [
3617   AC_CHECK_HEADERS([kai.h], [
3618     have_kai="yes"
3619     AC_CHECK_LIB(kai, main, [
3620       KAI_LIBS="-lkai"
3621     ])
3622   ])
3624 AC_SUBST(KAI_LIBS)
3625 AM_CONDITIONAL([HAVE_KAI], [test "${have_kai}" = "yes"])
3628 dnl  chromaprint audio track fingerprinter
3630 m4_pushdef([libchromaprint_version], 0.6.0)
3631 PKG_WITH_MODULES([CHROMAPRINT],[libchromaprint >= libchromaprint_version],
3632     VLC_ADD_PLUGIN([stream_out_chromaprint]),
3633     AS_IF([test "${enable_chromaprint}" = "yes"],
3634         [AC_MSG_ERROR(Library [libchromaprint >= libchromaprint_version] needed for [chromaprint] was not found)],
3635         [AC_MSG_WARN(Library [libchromaprint >= libchromaprint_version] needed for [chromaprint] was not found)]
3636          ),
3637     [(Chromaprint based audio fingerprinter)],[auto])
3638 m4_popdef([libchromaprint_version])
3641 dnl  Chromecast streaming support
3643 m4_pushdef([protobuf_lite_version], 2.5.0)
3644 AC_ARG_VAR(PROTOC, [protobuf compiler])
3645 AC_PATH_PROGS(PROTOC, protoc, no)
3646 PKG_WITH_MODULES([CHROMECAST],[protobuf-lite >= protobuf_lite_version], [
3647     AS_IF([test "x${PROTOC}" != "xno"], [
3648         build_chromecast="yes"
3649     ], [
3650     AC_MSG_ERROR(protoc compiler needed for [chromecast] was not found)
3651     ])
3652 ], [
3653     AS_IF([test "${enable_chromecast}" = "yes"],
3654         AC_MSG_ERROR(Library [protobuf-lite >= protobuf_lite_version] needed for [chromecast] was not found),
3655         AC_MSG_WARN(Library [protobuf-lite >= protobuf_lite_version] needed for [chromecast] was not found)
3656     )
3657     enable_chromecast="no"
3658 ], [(Chromecast streaming support)], [auto])
3659 AM_CONDITIONAL([BUILD_CHROMECAST], [test "${build_chromecast}" = "yes"])
3660 m4_popdef([protobuf_lite_version])
3663 dnl  Interface plugins
3666 EXTEND_HELP_STRING([Interface plugins:])
3669 dnl QT
3671 AC_ARG_ENABLE(qt, [
3672   AS_HELP_STRING([--disable-qt], [Qt UI support (default enabled)])],, [
3673   AS_IF([test "${SYS}" = "darwin"], [
3674     enable_qt="no"
3675   ])
3677 AS_IF([test "${enable_qt}" != "no"], [
3678   PKG_CHECK_MODULES([QT], [Qt5Core >= 5.1.0 Qt5Widgets Qt5Gui], [
3679       PKG_CHECK_MODULES([QTX11], [Qt5X11Extras], [
3680           VLC_ADD_LIBS([qt4],[${QTX11_LIBS}])
3681           VLC_ADD_CXXFLAGS([qt4],[${QTX11_CFLAGS} -DQT5_HAS_X11])
3682       ],[
3683           AC_MSG_WARN([Not building Qt Interface with X11 helpers.])
3684       ])
3685       QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix Qt5Core)"
3686       QT_HOST_PATH="$(eval $PKG_CONFIG --variable=host_bins Qt5Core)"
3687       AC_PATH_PROGS(MOC, [moc-qt5 moc], moc, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3688       AC_PATH_PROGS(RCC, [rcc-qt5 rcc], rcc, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3689       AC_PATH_PROGS(UIC, [uic-qt5 uic], uic, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3690     ], [
3691       PKG_CHECK_MODULES([QT], [QtCore QtGui >= 4.6.0],, [
3692         AS_IF([test -n "${enable_qt}"],[
3693           AC_MSG_ERROR([${QT_PKG_ERRORS}.])
3694         ],[
3695           AC_MSG_WARN([${QT_PKG_ERRORS}.])
3696         ])
3697         enable_qt="no"
3698       ])
3699       QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix QtCore)"
3700       AC_PATH_PROGS(MOC, [moc-qt4 moc], moc, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3701       AC_PATH_PROG(RCC, rcc, rcc, [${QT_PATH}/bin ${CONTRIB_DIR}/bin])
3702       AC_PATH_PROGS(UIC, [uic-qt4 uic], uic, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3703     ])
3705 AS_IF([test "${enable_qt}" != "no"], [
3706   VLC_ADD_PLUGIN([qt4])
3707   ALIASES="${ALIASES} qvlc"
3709 AM_CONDITIONAL(ENABLE_QT4, [test "$enable_qt" != "no"])
3712 dnl Simple test for skins2 dependency
3714 AS_IF([test "$enable_qt" = "no"], [
3715   AS_IF([test "${enable_skins2}" = "yes"], [
3716     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.])
3717   ], [
3718     enable_skins2="no"
3719     AC_MSG_WARN([The skins2 module depends on the Qt4 interface, Qt4 is not built so skins2 is disabled.])
3720   ])
3724 dnl Skins2 module
3726 AC_ARG_ENABLE(skins2,
3727   [AS_HELP_STRING([--enable-skins2], [skins interface module (default auto)])])
3728 AS_IF([test "${enable_skins2}" != "no"], [
3729   have_skins_deps="yes"
3731   dnl Win32
3732   AS_IF([test "${SYS}" = "mingw32"], [
3733     VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -DWIN32_SKINS])
3734     VLC_ADD_LIBS([skins2],[-lgdi32 -lole32 -luuid -lmsimg32])
3735   dnl MacOS
3736   ], [test "${SYS}" = "darwin"], [
3737     VLC_ADD_CPPFLAGS([skins2],[ -DMACOSX_SKINS])
3738     VLC_ADD_LIBS([skins2],[-Wl,-framework,Carbon])
3739   dnl OS/2
3740   ], [test "${SYS}" = "os2"], [
3741     VLC_ADD_CPPFLAGS([skins2],[ -DOS2_SKINS])
3742   dnl Linux/Unix
3743   ], [
3744     PKG_CHECK_MODULES([XPM], [xpm],, [have_skins_deps="no"])
3745     PKG_CHECK_MODULES([XINERAMA], [xinerama],, [have_skins_deps="no"])
3746     PKG_CHECK_MODULES([XEXT], [xext],, [have_skins_deps="no"])
3747     VLC_ADD_CPPFLAGS([skins2],[${X_CFLAGS} ${XEXT_CFLAGS} ${XPM_CFLAGS} -DX11_SKINS])
3748     VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} ${XEXT_LIBS} ${XPM_LIBS} ${XINERAMA_LIBS} -lX11])
3749   ])
3751   dnl for All OSes
3752   VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3754   dnl we need freetype
3755   AS_IF([test "${have_freetype}" != "yes"], [
3756     have_skins_deps="no"
3757   ])
3759   AS_IF([test "${have_skins_deps}" = "no"], [
3760     AS_IF([test "x${enable_skins2}" = "x"], [
3761       AC_MSG_WARN([Skins2 interface disabled due to missing dependencies.])
3762     ], [
3763       AC_MSG_ERROR([Skins2 interface requires FreeType, libxpm, libxext and libxinerama])
3764     ])
3765     enable_skins2="no"
3766   ], [
3767     VLC_ADD_PLUGIN([skins2])
3768     ALIASES="${ALIASES} svlc"
3769     enable_skins2="yes"
3770   ])
3772 AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes"])
3774 AC_ARG_ENABLE(libtar,
3775   [  --enable-libtar         libtar support for skins2 (default auto)])
3776 AS_IF([test "${enable_skins2}" = "yes" && test "${enable_libtar}" != "no"], [
3777   AC_CHECK_HEADERS(libtar.h, [
3778     VLC_ADD_LIBS([skins2],[-ltar])
3779   ])
3783 dnl  MacOS X gui module
3785 AC_ARG_ENABLE(macosx,
3786   [  --enable-macosx         Mac OS X gui support (default enabled on Mac OS X)])
3787 if test "x${enable_macosx}" != "xno" -a "${SYS}" = "darwin"
3788 then
3789   VLC_ADD_PLUGIN([macosx])
3791   if test ! -d ${CONTRIB_DIR}/BGHUDAppKit.framework
3792   then
3793     AC_MSG_ERROR([BGHUDAppKit framework is required and was not found in ${CONTRIB_DIR}])
3794   fi
3796 AM_CONDITIONAL(ENABLE_MACOSX_UI, [test "$enable_macosx" != "no"])
3799 dnl  MacOS X sparkle update support
3801 AC_ARG_ENABLE(sparkle,
3802   [  --enable-sparkle        Sparkle update support for OS X (default enabled on Mac OS X)])
3803 if test "x${enable_sparkle}" != "xno" -a "${HAVE_OSX}" = "1"
3804 then
3805   if test ! -d ${CONTRIB_DIR}/Sparkle.framework
3806   then
3807     AC_MSG_ERROR([Sparkle framework is required and was not found in ${CONTRIB_DIR}])
3808   fi
3810   AC_DEFINE([HAVE_SPARKLE], [1], [Define to 1 if sparkle is enabled.])
3812 AM_CONDITIONAL(HAVE_SPARKLE, [test "$enable_sparkle" != "no"])
3816 dnl  Minimal Mac OS X module
3818 AC_ARG_ENABLE(minimal-macosx,
3819   [  --enable-minimal-macosx Minimal Mac OS X support (default disabled)])
3820 if test "${enable_minimal_macosx}" = "yes" -a "${SYS}" = "darwin"
3821 then
3822   VLC_ADD_PLUGIN([minimal_macosx])
3826 dnl  MacOS X dialog provider
3828 AC_ARG_ENABLE(macosx-dialog-provider,
3829   [  --enable-macosx-dialog-provider Mac OS X dialog module (default enabled on Mac OS X)])
3830 if test "x${enable_macosx_dialog_provider}" != "xno" &&
3831   (test "${SYS}" = "darwin" || test "${enable_macosx_dialog_provider}" = "yes")
3832 then
3833   VLC_ADD_PLUGIN([macosx_dialog_provider])
3837 dnl  ncurses module
3839 AC_ARG_ENABLE(ncurses,
3840 [AS_HELP_STRING([--disable-ncurses],[ncurses text-based interface (default auto)])])
3841 have_ncurses="no"
3842 AS_IF([test "${enable_ncurses}" != "no"] ,[
3843   PKG_CHECK_MODULES([NCURSES], [ncursesw], [
3844     have_ncurses="yes"
3845     ALIASES="${ALIASES} nvlc"
3846   ], [
3847     AS_IF([test -n "${enable_ncurses}"], [
3848       AC_MSG_ERROR([${NCURSES_PKG_ERRORS}.])
3849     ])
3850   ])
3852 AM_CONDITIONAL([HAVE_NCURSES], [test "${have_ncurses}" = "yes"])
3855 dnl  Lirc plugin
3857 AC_ARG_ENABLE(lirc,
3858   [  --enable-lirc           lirc support (default disabled)])
3859 have_lirc="no"
3860 AS_IF([test "${enable_lirc}" = "yes"], [
3861   AC_CHECK_HEADER(lirc/lirc_client.h, [
3862     AC_CHECK_LIB(lirc_client, lirc_init, [
3863       have_lirc="true"
3864     ])
3865   ])
3867 AM_CONDITIONAL([HAVE_LIRC], [test "${have_lirc}" = "yes"])
3869 EXTEND_HELP_STRING([Visualisations and Video filter plugins:])
3871 dnl  goom visualization plugin
3873 PKG_ENABLE_MODULES_VLC([GOOM], [], [libgoom2], [goom visualization plugin], [auto])
3876 dnl libprojectM visualization plugin
3878 AC_ARG_ENABLE(projectm,
3879   [  --enable-projectm       projectM visualization plugin (default enabled)])
3880 AS_IF([test "${enable_projectm}" != "no"],
3881   [
3882     PKG_CHECK_MODULES(PROJECTM, libprojectM,
3883     [
3884       VLC_ADD_PLUGIN([projectm])
3885       PKG_CHECK_EXISTS([libprojectM >= 2.0.0],
3886         [ AC_DEFINE([HAVE_PROJECTM2], 1, [Define to 1 if using libprojectM 2.x]) ],
3887         [ AC_MSG_WARN( [Using libprojectM version 1] )
3888       ])
3889     ],[
3890       AC_MSG_WARN([${PROJECTM_PKG_ERRORS}.])
3891     ])
3892   ])
3895 dnl Vovoid VSXu visualization plugin
3897 AC_ARG_ENABLE(vsxu,
3898   [  --enable-vsxu           Vovoid VSXu visualization plugin (default auto)])
3899 AS_IF([test "${enable_vsxu}" != "no"],
3900   [
3901     PKG_CHECK_MODULES(VSXU, libvsxu,
3902     [
3903       VLC_ADD_PLUGIN([vsxu])
3904     ],[
3905       AC_MSG_WARN([${VSXU_PKG_ERRORS}.])
3906     ])
3907   ])
3910 dnl  AtmoLight (homemade Philips Ambilight clone)
3912 AC_ARG_ENABLE(atmo,
3913 AS_HELP_STRING([--disable-atmo],[AtmoLight (homemade Philips Ambilight clone)
3914                 (default enabled)]),, [enable_atmo="yes"])
3915 AS_IF([test "${enable_atmo}" != no], [
3916   AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "linux"], [
3917     VLC_ADD_PLUGIN([atmo])
3918   ])
3921 EXTEND_HELP_STRING([Service Discovery plugins:])
3923 dnl  Bonjour services discovery
3924 PKG_ENABLE_MODULES_VLC([BONJOUR], [], [avahi-client >= 0.6], [Bonjour services discovery], [auto])
3927 dnl  libudev services discovery
3928 PKG_ENABLE_MODULES_VLC([UDEV], [], [libudev >= 142], [Linux udev services discovery], [auto])
3931 dnl MTP devices services discovery
3932 PKG_ENABLE_MODULES_VLC([MTP], [mtp access_mtp], [libmtp >= 1.0.0], [MTP devices support], [auto])
3935 dnl UPnP Plugin (Intel SDK)
3937 PKG_ENABLE_MODULES_VLC([UPNP], [upnp], [libupnp], [Intel UPNP SDK],[auto])
3939 EXTEND_HELP_STRING([Misc options:])
3942 dnl  libxml2 module
3944 PKG_ENABLE_MODULES_VLC([LIBXML2], [xml], [libxml-2.0 >= 2.5], [libxml2 support],[auto])
3948 dnl libgcrypt
3950 AC_ARG_ENABLE(libgcrypt,
3951   [  --disable-libgcrypt     gcrypt support (default enabled)])
3952 # require libgcrypt >= 1.6.0
3953 AS_IF([test "${enable_libgcrypt}" != "no"], [
3954   AC_TRY_COMPILE([
3955 #include <gcrypt.h>
3956 #if GCRYPT_VERSION_NUMBER < 0x010600
3957 #error
3958 #endif],
3959   [], [
3960     have_libgcrypt="yes"
3961     AC_DEFINE([HAVE_GCRYPT], 1, [Defined if having gcrypt])
3962     GCRYPT_CFLAGS="`libgcrypt-config --cflags`"
3963     GCRYPT_LIBS="`libgcrypt-config --libs`"
3964   ], [
3965     AS_IF([test "${enable_libgcrypt}" == "yes"], [
3966       AC_MSG_ERROR([libgcrypt version 1.6.0 or higher not found. Install libgcrypt or pass --disable-libgcrypt.])
3967     ])
3968   ])
3971 AC_SUBST(GCRYPT_CFLAGS)
3972 AC_SUBST(GCRYPT_LIBS)
3973 AM_CONDITIONAL([HAVE_GCRYPT], [test "${have_libgcrypt}" = "yes"])
3976 dnl TLS/SSL
3978 AC_ARG_ENABLE(gnutls,
3979   [  --enable-gnutls         GNU TLS TLS/SSL support (default enabled)])
3980 AS_IF([test "${enable_gnutls}" != "no"], [
3981   PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.2.0], [
3982     VLC_ADD_PLUGIN([gnutls])
3983   ], [
3984     AS_IF([test -n "${enable_gnutls}"], [
3985       AC_MSG_ERROR([${GNUTLS_PKG_ERRORS}.)])
3986     ])
3987   ])
3992 dnl Taglib plugin
3994 AC_ARG_ENABLE(taglib,
3995   [AS_HELP_STRING([--disable-taglib],
3996     [do not use TagLib (default enabled)])])
3997 AS_IF([test "${enable_taglib}" != "no"], [
3998   PKG_CHECK_MODULES(TAGLIB, taglib >= 1.9, [
3999     VLC_ADD_PLUGIN([taglib])
4000   ], [
4001     AC_MSG_WARN([${TAGLIB_PKG_ERRORS}.])])
4006 dnl update checking system
4008 AC_ARG_ENABLE(update-check,
4009   [  --enable-update-check   update checking system (default disabled)])
4010 if test "${enable_update_check}" = "yes"
4011 then
4012   if test "${have_libgcrypt}" != "yes"
4013   then
4014     AC_MSG_ERROR([libgcrypt is required for update checking system])
4015   fi
4016   VLC_ADD_LIBS([libvlccore], [${GCRYPT_LIBS}])
4017   VLC_ADD_CFLAGS([libvlccore], [${GCRYPT_CFLAGS}])
4018   AC_DEFINE([UPDATE_CHECK], 1, [Define if you want to use the VLC update mechanism])
4022 dnl Growl notification plugin
4024 AC_ARG_ENABLE(growl,
4025   [  --enable-growl          growl notification plugin (default disabled)],,
4026   [enable_growl=no])
4027 AS_IF([test "${enable_growl}" != "no"], [
4028     AC_CHECK_HEADERS(${CONTRIB_DIR}/Growl.framework/Versions/A/Headers/Growl.h, [
4029       VLC_ADD_PLUGIN([growl])
4030       VLC_ADD_LIBS([growl], [-F${CONTRIB_DIR} -Wl,-framework,Growl,-framework,Foundation])
4031       VLC_ADD_OBJCFLAGS([growl], [-F${CONTRIB_DIR}])
4032       VLC_ADD_OBJCFLAGS([growl], [-fobjc-exceptions] )
4033     ])
4034   ]
4038 dnl Libnotify notification plugin
4040 PKG_ENABLE_MODULES_VLC([NOTIFY], [], [libnotify gtk+-2.0], [libnotify notification], [auto])
4043 dnl  Endianness check
4045 AC_C_BIGENDIAN
4046 AS_IF([test "${ac_cv_c_bigendian}" = "yes"], [
4047   DEFS_BIGENDIAN="-DWORDS_BIGENDIAN=1"
4048 ], [
4049   DEFS_BIGENDIAN=""
4051 AC_SUBST(DEFS_BIGENDIAN)
4054 dnl Where to install KDE solid .desktop
4056 AC_ARG_VAR([KDE4_CONFIG], [kde4-config utility])
4057 AS_IF([test "x$KDE4_CONFIG" = "x"], [
4058   KDE4_CONFIG="kde4-config"
4061 AC_ARG_WITH(kde-solid,
4062   AS_HELP_STRING([--with-kde-solid=PATH],
4063                  [KDE Solid actions directory (auto)]),, [
4065 if test "${SYS}" != "mingw32" -a "${SYS}" != "darwin" ; then
4066   with_kde_solid="yes"
4069 soliddatadir=""
4070 AS_IF([test "${with_kde_solid}" != "no"], [
4071   AS_IF([test "${with_kde_solid}" = "yes"], [
4072     kde4datadir="`${KDE4_CONFIG} --install data`"
4073     AS_IF([test "x$kde4datadir" = "x"], [kde4datadir='${datadir}/kde4/apps'])
4074     soliddatadir="${kde4datadir}/solid/actions"
4075   ], [
4076     soliddatadir="${with_kde_solid}"
4077   ])
4079 AC_SUBST(soliddatadir)
4080 AM_CONDITIONAL(KDE_SOLID, [test "x${soliddatadir}" != "x"])
4082 EXTEND_HELP_STRING([Components:])
4085 dnl  the VLC binary
4087 AC_ARG_ENABLE(vlc,
4088   [  --enable-vlc            build the VLC media player (default enabled)])
4089 AM_CONDITIONAL(BUILD_VLC, [test "${enable_vlc}" != "no"])
4091 AC_ARG_ENABLE(macosx-vlc-app,
4092   [  --enable-macosx-vlc-app build the VLC media player (default enabled on Mac OS X)])
4093 AM_CONDITIONAL(BUILD_MACOSX_VLC_APP, [test "${enable_macosx_vlc_app}" != "no" &&
4094     (test "${SYS}" = "darwin" || test "${enable_macosx_vlc_app}" = "yes") ])
4097 dnl  Stuff used by the program
4099 VERSION_MESSAGE="${VERSION} ${CODENAME}"
4100 COPYRIGHT_MESSAGE="Copyright © ${COPYRIGHT_YEARS} the VideoLAN team"
4101 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION_MESSAGE}", [Simple version string])
4102 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "${COPYRIGHT_MESSAGE}", [Copyright string])
4103 AC_DEFINE_UNQUOTED(COPYRIGHT_YEARS, "${COPYRIGHT_YEARS}", [The copyright years])
4104 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4105 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,${VERSION_MAJOR}, [version major number])
4106 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,${VERSION_MINOR}, [version minor number])
4107 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,${VERSION_REVISION}, [version revision number])
4108 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,${VERSION_EXTRA}, [version extra number])
4109 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_DEV,"${VERSION_DEV}", [version development string])
4110 AC_SUBST(COPYRIGHT_MESSAGE)
4111 AC_SUBST(VERSION_MESSAGE)
4112 AC_SUBST(VERSION_MAJOR)
4113 AC_SUBST(VERSION_MINOR)
4114 AC_SUBST(VERSION_REVISION)
4115 AC_SUBST(VERSION_EXTRA)
4116 AC_SUBST(COPYRIGHT_YEARS)
4117 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami|sed -e 's/\\\/\\\\\\\/g'`", [user who ran configure])
4118 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname -f 2>/dev/null || hostname`", [host which ran configure])
4119 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1 | sed -e 's/ *$//'`", [compiler])
4121 dnl  Handle substvars that use $(top_srcdir)
4123 CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/include ${CPPFLAGS}"
4126 dnl  Configuration is finished
4128 AC_SUBST(SYS)
4129 AC_SUBST(ARCH)
4130 AC_SUBST(ALIASES)
4131 AC_SUBST(ASM)
4132 AC_SUBST(MOC)
4133 AC_SUBST(RCC)
4134 AC_SUBST(UIC)
4135 AC_SUBST(WINDRES)
4136 AC_SUBST(WINE_SDK_PATH)
4137 AC_SUBST(LIBEXT)
4138 AC_SUBST(AM_CPPFLAGS)
4139 AC_SUBST(MACOSX_DEPLOYMENT_TARGET)
4140 AC_SUBST(FILE_LIBVLCCORE_DLL)
4141 AC_SUBST(FILE_LIBVLC_DLL)
4143 AC_CONFIG_FILES([
4144   Makefile
4145   doc/Makefile
4146   modules/Makefile
4147   m4/Makefile
4148   po/Makefile.in
4149   share/Makefile
4150   compat/Makefile
4151   src/Makefile
4152   lib/Makefile
4153   bin/Makefile
4154   test/Makefile
4155   modules/gui/macosx/Makefile
4156   modules/gui/qt4/Makefile
4157   modules/gui/skins2/Makefile
4158   modules/hw/mmal/Makefile
4161 AM_COND_IF([HAVE_WIN32], [
4162   AC_CONFIG_FILES([
4163     extras/package/win32/NSIS/spad.nsi
4164     extras/package/win32/NSIS/vlc.win32.nsi
4165     extras/package/win32/msi/config.wxi
4166   ])
4169 AM_COND_IF([HAVE_DARWIN], [
4170   AC_CONFIG_FILES([
4171     extras/package/macosx/Info.plist
4172     extras/package/macosx/Resources/English.lproj/InfoPlist.strings
4173   ])
4176 dnl Generate makefiles
4177 AC_OUTPUT
4179 dnl Do we have to use make or gmake ?
4180 if make --version 2>&1|grep -q GNU
4181 then
4182     # GNU make, all seems good
4183     MAKE=make
4184 else
4185     # Known GNU make alias (on BSD)
4186     MAKE=gmake
4188 dnl Shortcut to nice compile message
4189 if test -n $SHELL; then
4190   SHELL=${CONFIG_SHELL-/bin/sh}
4192 rm -f compile
4193 compile_top_srcdir=`sed -ne "s/^top_srcdir *= *//p" < Makefile`
4194 echo "#! $SHELL
4195 rm -f .error\$\$
4196 ERROR=0
4197 export PATH=\"$PATH\" LANG=C
4198 ($MAKE V=1 \$@ 2>&1 || touch .error\$\$)| $compile_top_srcdir/extras/buildsystem/make.pl
4199 test -f .error\$\$ && ERROR=1
4200 rm -f .error\$\$
4201 exit \$ERROR" >compile
4202 chmod a+x compile
4204 echo "
4205 libvlc configuration
4206 --------------------
4207 version               : ${VERSION}
4208 system                : ${SYS}
4209 architecture          : ${ARCH}
4210 optimizations         : ${enable_optimizations}"
4211 if test "${enable_vlc}" != "no"; then
4212 echo "vlc aliases           :${ALIASES}"
4213 else
4214 echo "build vlc executable  : no"
4216 echo "
4217 To build vlc and its plugins, type \`$MAKE', or \`./compile' if you like nice colors."