1 dnl Autoconf settings for vlc
3 AC_COPYRIGHT([Copyright 1999-2015 VLC authors and VideoLAN])
5 AC_INIT(vlc, 3.0.0-git)
15 CONFIGURE_LINE="`echo "$0 $ac_configure_args" | sed -e 's/\\\/\\\\\\\/g'`"
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)
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])
36 dnl vlcincludedir="\${includedir}/\${PKGDIR}"
37 dnl AC_SUBST(vlcincludedir)
38 vlcdatadir="\${datadir}/\${PKGDIR}"
40 vlclibdir="\${libdir}/\${PKGDIR}"
47 AC_USE_SYSTEM_EXTENSIONS
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.])
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>.])
64 _AM_DEPENDENCIES([OBJC])
70 AC_ARG_VAR([DESKTOP_FILE_VALIDATE], [Validator for desktop entry files])
71 AC_CHECK_PROGS(DESKTOP_FILE_VALIDATE, [${DESKTOP_FILE_VALIDATE} desktop-file-validate], :)
72 AC_ARG_VAR([BUILDCC], [Build system C11 or C99 compiler command])
73 AC_CHECK_PROGS(BUILDCC, [c11-gcc c11 c99-gcc c99], [false])
74 AS_IF([test "$BUILDCC" = "false"], [
75 AC_MSG_ERROR([Cannot find native C99 compiler: please define BUILDCC.])
78 dnl Check for compiler properties
82 AX_CXX_COMPILE_STDCXX_11(noext, optional)
84 dnl Extend the --help string at the current spot.
85 AC_DEFUN([EXTEND_HELP_STRING], [m4_divert_once([HELP_ENABLE], [$1])])
87 dnl Allow binary package maintainer to pass a custom string to avoid
89 AC_ARG_WITH(binary-version,
90 AS_HELP_STRING([--with-binary-version=STRING],
91 [To avoid plugins cache problem between binary version]),[],[])
92 AS_IF([test -n "${with_binary_version}"],[
93 AC_DEFINE_UNQUOTED([DISTRO_VERSION],["${with_binary_version}"],
94 [Binary specific version])
98 dnl Check the operating system
113 CFLAGS="${CFLAGS} -pthread"
117 CFLAGS="${CFLAGS} -pthread"
118 CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
119 LDFLAGS="${LDFLAGS} -L/usr/local/lib"
123 CPPFLAGS="${CPPFLAGS} -I/usr/local/include -I/usr/X11R6/include"
124 LDFLAGS="${LDFLAGS} -L/usr/local/lib -L/usr/X11R6/lib/"
134 dnl Force gcc "-arch" flag
138 ARCH_flag="-arch i386"
141 ARCH_flag="-arch ppc64"
144 ARCH_flag="-arch ppc"
147 ARCH_flag="-arch x86_64"
150 ac_cv_c_bigendian="no"
151 ac_cv_c_attribute_packed="no"
156 CFLAGS="${CFLAGS} -D_INTL_REDIRECT_MACROS -std=gnu11 ${ARCH_flag}"
157 CXX="${CXX} -stdlib=libc++ -std=c++11"
158 CXXFLAGS="${CXXFLAGS} -D_INTL_REDIRECT_MACROS ${ARCH_flag}"
159 CPPFLAGS="${CPPFLAGS} ${ARCH_flag}"
160 OBJCFLAGS="${OBJCFLAGS} -D_INTL_REDIRECT_MACROS -std=gnu11 ${ARCH_flag}"
161 LDFLAGS="${LDFLAGS} -Wl,-headerpad_max_install_names ${ARCH_flag}"
162 VLC_ADD_LIBS([libvlc vlc],[-Wl,-undefined,dynamic_lookup,-framework,AppKit])
163 VLC_ADD_LIBS([libvlccore],[-Wl,-framework,CoreFoundation,-framework,CoreServices])
166 [#import <TargetConditionals.h>
173 dnl Allow binaries created on Lion to run on earlier releases
175 [#import <Cocoa/Cocoa.h>
176 #ifdef MAC_OS_X_VERSION_10_7
179 [AC_MSG_RESULT([yes])
180 AC_LIBOBJ([getdelim])
182 AC_LIBOBJ([strnlen])],)
185 dnl Handle Mac OS X SDK flags
187 AC_ARG_WITH(macosx-sdk,
188 [AS_HELP_STRING([--with-macosx-sdk=DIR],
189 [compile using the SDK in DIR])])
190 if test "${with_macosx_sdk}" != "" ; then
191 test ! -d "${with_macosx_sdk}" && AC_MSG_ERROR([SDK "${with_macosx_sdk}" not found])
192 CPP="${CPP} -isysroot ${with_macosx_sdk}"
193 CC="${CC} -isysroot ${with_macosx_sdk}"
194 CXX="${CXX} -isysroot ${with_macosx_sdk}"
195 OBJC="${OBJC} -isysroot ${with_macosx_sdk}"
196 LD="${LD} -syslibroot ${with_macosx_sdk}"
198 AC_ARG_WITH(macosx-version-min,
199 [AS_HELP_STRING([--with-macosx-version-min=VERSION],
200 [compile for Mac OS X VERSION and above])])
201 if test "${with_macosx_version_min}" != "" ; then
202 CPP="${CPP} -mmacosx-version-min=${with_macosx_version_min}"
203 CC="${CC} -mmacosx-version-min=${with_macosx_version_min}"
204 CXX="${CXX} -mmacosx-version-min=${with_macosx_version_min}"
205 OBJC="${OBJC} -mmacosx-version-min=${with_macosx_version_min}"
206 LD="${LD} -mmacosx_version_min=${with_macosx_version_min}"
209 *mingw32* | *cygwin* | *wince* | *mingwce*)
210 AC_CHECK_TOOL(WINDRES, windres, :)
211 AC_CHECK_TOOL(OBJCOPY, objcopy, :)
212 AH_TOP([#if defined(_WIN32) && !defined(_WIN32_WINNT)])
213 AH_TOP([# define _WIN32_WINNT 0x0502 /* Windows XP SP2 */])
215 AC_DEFINE([_WIN32_IE], 0x0600, [Define to '0x0600' for IE 6.0 (and shell) APIs.])
216 AC_DEFINE([_UNICODE], [1], [Define to 1 for Unicode (Wide Chars) APIs.])
217 AC_DEFINE([UNICODE], [1], [Define to 1 for Unicode (Wide Chars) APIs.])
218 AC_DEFINE([_ISOC99_SOURCE], [1], [Extensions to ISO C89 from ISO C99.])
219 AC_DEFINE([_ISOC11_SOURCE], [1], [Extensions to ISO C99 from ISO C11.])
220 AC_DEFINE([_POSIX_SOURCE], [1], [IEEE Std 1003.1.])
221 AC_DEFINE([_POSIX_C_SOURCE], [200809L], [IEEE Std 1003.1.])
222 AC_DEFINE([_XOPEN_SOURCE], [700], [POSIX and XPG 7th edition])
223 AC_DEFINE([_XOPEN_SOURCE_EXTENDED], [1], [XPG things and X/Open Unix extensions.])
224 AC_DEFINE([_BSD_SOURCE], [1], [ISO C, POSIX, and 4.3BSD things.])
225 AC_DEFINE([_SVID_SOURCE], [1], [ISO C, POSIX, and SVID things.])
232 dnl Check if we are using the mno-cygwin mode in which case we are
233 dnl actually dealing with a mingw32 compiler.
238 SYS=mingw32, AC_MSG_ERROR([VLC requires -mno-cygwin]))
242 if test "${SYS}" = "mingw32"; then
244 LDFLAGS="${LDFLAGS} -Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase"
246 AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos)
247 ac_default_prefix="`pwd`/_win32"
248 DESTDIR="`pwd`/_win32/"
251 dnl NSIS/MSI Installer prefix and WIN64
257 PROGRAMFILES="PROGRAMFILES64"
261 PROGRAMFILES="PROGRAMFILES"
264 AC_SUBST(WINDOWS_ARCH)
265 AC_SUBST(PROGRAMFILES)
280 LDFLAGS="${LDFLAGS} -Zomf -Zbin-files -Zargs-wild -Zhigh-mem"
281 AC_LIBOBJ([freeaddrinfo])
287 AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin")
288 AM_CONDITIONAL(HAVE_LINUX, test "${SYS}" = "linux")
289 AM_CONDITIONAL(HAVE_OS2, test "${SYS}" = "os2")
290 AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32")
291 AM_CONDITIONAL(HAVE_WIN64, test "${HAVE_WIN64}" = "1")
292 AM_CONDITIONAL(HAVE_IOS, test "${HAVE_IOS}" = "1")
293 AM_CONDITIONAL(HAVE_OSX, test "${HAVE_OSX}" = "1")
296 dnl Sadly autoconf does not think about testing foo.exe when ask to test
297 dnl for program foo on win32
298 case "${build_os}" in
300 ac_executable_extensions=".exe"
308 AC_SUBST(BUILDEXEEXT)
310 dnl Android is linux, but a bit different
311 AS_IF([test "$SYS" = linux],[
312 AC_MSG_CHECKING([for an Android system])
313 AC_PREPROC_IFELSE([AC_LANG_PROGRAM(
314 [[#ifndef __ANDROID__
325 AM_CONDITIONAL(HAVE_ANDROID, test "${HAVE_ANDROID}" = "1")
329 dnl Check for the contrib directory
332 [AS_HELP_STRING([--with-contrib[=DIR]],
333 [search for 3rd party libraries in DIR/include and DIR/lib])
335 AC_MSG_CHECKING([for 3rd party libraries path])
336 AS_IF([test -z "${with_contrib}" || test "${with_contrib}" = "yes"], [
337 CONTRIB_DIR="${srcdir}/contrib/${host}"
338 AS_IF([test ! -d "${CONTRIB_DIR}"], [
339 echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
340 CONTRIB_DIR="${srcdir}/contrib/`$CC -dumpmachine`"
341 AS_IF([test ! -d "${CONTRIB_DIR}"], [
342 echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
343 CONTRIB_DIR="${srcdir}/extras/contrib/hosts/${host}"
344 AS_IF([test ! -d "${CONTRIB_DIR}"], [
345 echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
346 CONTRIB_DIR="${srcdir}/extras/contrib/hosts/`$CC -dumpmachine`"
347 AS_IF([test ! -d "${CONTRIB_DIR}"], [
348 echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
350 AC_MSG_RESULT([not found])
356 AS_IF([test "${with_contrib}" != "no"], [
357 CONTRIB_DIR="${with_contrib}"
360 AC_MSG_RESULT([disabled])
363 AS_IF([test -n "${CONTRIB_DIR}"], [
364 AS_IF([test -d "${CONTRIB_DIR}/lib"],[
365 CONTRIB_DIR=`cd "${CONTRIB_DIR}" && pwd`
367 echo "${CONTRIB_DIR}/lib not found" >&AS_MESSAGE_LOG_FD
369 AC_MSG_RESULT([not usable])
373 AS_IF([test -n "${CONTRIB_DIR}"], [
374 AC_MSG_RESULT([${CONTRIB_DIR}])
375 export PATH=${CONTRIB_DIR}/bin:$PATH
376 CPPFLAGS="${CPPFLAGS} -I${CONTRIB_DIR}/include"
377 CFLAGS="${CFLAGS} -I${CONTRIB_DIR}/include"
378 CXXFLAGS="${CXXFLAGS} -I${CONTRIB_DIR}/include"
379 OBJCFLAGS="${OBJCFLAGS} -I${CONTRIB_DIR}/include"
380 export PKG_CONFIG_PATH="${CONTRIB_DIR}/lib/pkgconfig:$PKG_CONFIG_PATH"
381 LDFLAGS="${LDFLAGS} -L${CONTRIB_DIR}/lib"
383 AS_IF([test "${SYS}" = "darwin"], [
384 export LD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$LD_LIBRARY_PATH"
385 export DYLD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$DYLD_LIBRARY_PATH"
388 AS_IF([test -n "${with_contrib}" && test "${with_contrib}" != "no"], [
389 AC_MSG_ERROR([Third party libraries not found!])
392 AC_SUBST(CONTRIB_DIR)
394 dnl Add extras/tools to the PATH
395 TOOLS_DIR="${srcdir}/extras/tools/build/bin"
396 AS_IF([test -d "${TOOLS_DIR}"], [
397 TOOLS_DIR=`cd "${TOOLS_DIR}" && pwd`
398 export PATH="${TOOLS_DIR}":$PATH
403 dnl It's very bad, but our former custom system was worst
407 dnl override platform specific check for dependent libraries
408 dnl otherwise libtool linking of shared libraries will
409 dnl fail on anything other than pass_all.
410 AC_CACHE_VAL(lt_cv_deplibs_check_method,
411 [lt_cv_deplibs_check_method=pass_all])
413 LT_INIT([dlopen win32-dll shared disable-static])
415 LT_LANG([Windows Resource])
419 lt_cv_deplibs_check_method=pass_all
421 AS_IF([test "${enable_shared}" = "no" -a "${enable_vlc}" != "no"], [
422 AC_MSG_ERROR([VLC is based on plugins. Shared libraries cannot be disabled.])
428 AM_GNU_GETTEXT_VERSION([0.19.4])
429 AM_GNU_GETTEXT([external], [need-ngettext])
438 AS_IF([test "${SYS}" = "mingw32"], [
440 dnl Check for broken versions of mingw-runtime compatability library
441 AC_MSG_CHECKING(for broken mingw-runtime)
442 AC_PREPROC_IFELSE([AC_LANG_SOURCE([
444 #if defined(__MINGW64_VERSION_MAJOR)
445 # if __MINGW64_VERSION_MAJOR < 3
446 # error Attempting to use mingw-runtime with broken vsnprintf and direct2d support
448 #elif __MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION < 15
449 # error Attempting to use mingw-runtime with broken vsnprintf support
454 AC_MSG_RESULT([present])
455 AC_MSG_ERROR([LibVLC requires mingw-runtime version 3.15 or higher, or mingw-w64 version 3.0 or higher!])
458 dnl force use of mingw provided c99 *printf over msvcrt
459 CPPFLAGS="${CPPFLAGS} -D__USE_MINGW_ANSI_STDIO=1"
461 dnl Add WinMainCRTStartup entry point to show it's a WinMain application
462 VLC_ADD_LDFLAGS([vlc],[-mwindows])
464 dnl Check for the need to include the mingwex lib for mingw32
466 AC_CHECK_LIB(mingwex,opendir,
467 AC_CHECK_LIB(mingw32,opendir,,
468 [VLC_ADD_LIBS([libvlccore],[-lmingwex])])
472 dnl Check for fnative-struct or mms-bitfields support for mingw32
474 CFLAGS="${CFLAGS} -mms-bitfields"
475 CXXFLAGS="${CXXFLAGS} -mms-bitfields"
476 AC_CACHE_CHECK([if \$CC accepts -mms-bitfields],
477 [ac_cv_c_mms_bitfields],
478 [AC_TRY_COMPILE([],,ac_cv_c_mms_bitfields=yes, ac_cv_c_mms_bitfields=no)])
479 if test "${ac_cv_c_mms_bitfields}" = "no"; then
481 CFLAGS="${CFLAGS} -fnative-struct"
482 CXXFLAGS="${CXXFLAGS} -fnative-struct"
483 AC_CACHE_CHECK([if \$CC accepts -fnative-struct],
484 [ac_cv_c_fnative_struct],
485 [AC_TRY_COMPILE([],,ac_cv_c_fnative_struct=yes, ac_cv_c_fnative_struct=no)])
486 "${ac_cv_c_fnative_struct}" = "no" && VLC_RESTORE_FLAGS
490 AC_ARG_ENABLE(winstore_app,
491 AS_HELP_STRING([--enable-winstore-app],
492 [Build targetted for Windows Store apps (default disabled)]))
495 AS_IF([test "${SYS}" = "mingw32"],[
496 AS_IF([test "${enable_winstore_app}" = "yes"], [
498 VLC_ADD_LIBS([libvlccore], [-lole32 -lruntimeobject])
500 VLC_ADD_LIBS([libvlccore],[-lwinmm])
503 AC_DEFINE_UNQUOTED(VLC_WINSTORE_APP, ${vlc_winstore_app}, [Define to 1 if you want to build for Windows Store apps])
504 AM_CONDITIONAL([HAVE_WINSTORE], [test "$vlc_winstore_app" = "1"])
508 dnl Buggy glibc prevention. Purposedly not cached.
509 dnl See sourceware.org bugs 5058 and 5443.
510 dnl Ubuntu alone has 20 bug numbers for this...
512 AC_MSG_CHECKING(for buggy GNU/libc versions)
513 AC_PREPROC_IFELSE([AC_LANG_SOURCE([
515 #if defined (__GLIBC__) && (__GLIBC__ == 2) \
516 && (__GLIBC_MINOR__ >= 5) && (__GLIBC_MINOR__ <= 7)
517 # error GNU/libc with dcgettext killer bug!
520 AC_MSG_RESULT([not present])
522 AC_MSG_RESULT([found])
523 AS_IF([test "x${enable_nls}" != "xno"], [
524 AC_MSG_ERROR([Buggy GNU/libc (version 2.5 - 2.7) present. VLC would crash; there is no viable
525 work-around for this. Check with your distribution vendor on how to update the
526 glibc run-time. Alternatively, build with --disable-nls.])
530 dnl Plugin compilation stuff
534 dnl Check for system libs needed
537 dnl Check for usual libc functions
538 AC_CHECK_DECLS([nanosleep],,,[#include <time.h>])
539 AC_CHECK_FUNCS([daemon fcntl fstatvfs fork getenv getpwuid_r isatty lstat memalign mkostemp mmap open_memstream openat pread posix_fadvise posix_madvise setlocale stricmp strnicmp strptime uselocale pthread_cond_timedwait_monotonic_np pthread_condattr_setclock])
540 AC_REPLACE_FUNCS([atof atoll dirfd fdopendir ffsll flockfile fsync getdelim getpid lldiv nrand48 poll posix_memalign rewind setenv strcasecmp strcasestr strdup strlcpy strndup strnlen strsep strtof strtok_r strtoll swab tdestroy strverscmp])
541 AC_CHECK_FUNCS(fdatasync,,
542 [AC_DEFINE(fdatasync, fsync, [Alias fdatasync() to fsync() if missing.])
545 dnl mingw64 implements those as static inline, not functions with C linkage
546 VLC_REPLACE_DECL([asprintf], [#include <stdio.h>])
547 VLC_REPLACE_DECL([vasprintf], [#include <stdio.h>])
548 VLC_REPLACE_DECL([gmtime_r], [#include <time.h>])
549 VLC_REPLACE_DECL([localtime_r], [#include <time.h>])
551 dnl C11 static_assert()
552 AC_MSG_CHECKING([for static_assert in assert.h])
553 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <assert.h>], [
554 static_assert(1, "The impossible happened.");
557 AC_DEFINE([HAVE_STATIC_ASSERT], [1], [Define to 1 if <assert.h> defines static_assert.])
562 # Windows CE does not have strcoll()
565 dnl Check for non-standard system calls
568 AC_CHECK_FUNCS([accept4 pipe2 eventfd vmsplice sched_getaffinity])
571 AC_CHECK_FUNCS([_lock_file])
575 AH_BOTTOM([#include <vlc_fixups.h>])
577 dnl Check for struct pollfd
578 AC_CHECK_TYPES([struct pollfd],,,
579 [#include <sys/types.h>
582 #elif defined (_WIN32)
583 # include <winsock2.h>
587 dnl Checks for socket stuff
590 AC_SEARCH_LIBS(connect, [socket], [
591 AS_IF([test "$ac_cv_search_connect" != "none required"], [
592 SOCKET_LIBS="$ac_cv_search_connect"
595 AS_IF([test "${SYS}" = "mingw32"], [
596 SOCKET_LIBS="-lws2_32"
600 AC_SEARCH_LIBS([inet_pton], [nsl], [
601 AS_IF([test "$ac_cv_search_inet_pton" != "none required"], [
602 SOCKET_LIBS="$ac_cv_search_inet_pton $SOCKET_LIBS"
604 ],, [${SOCKET_LIBS}])
606 LIBS="${LIBS} ${SOCKET_LIBS}"
608 AC_LANG_PROGRAM([#ifdef _WIN32
609 # if _WIN32_WINNT < 0x600
612 #include <ws2tcpip.h>
614 #include <sys/socket.h>
615 #include <arpa/inet.h>
617 char dst[[sizeof(struct in_addr)]];
618 inet_pton(AF_INET, "127.0.0.1", dst);
619 ])],[AC_DEFINE([HAVE_INET_PTON],[1],[Define to 1 if you have inet_pton function])],[AC_LIBOBJ([inet_pton])])
620 AC_CHECK_FUNCS([if_nameindex if_nametoindex])
622 AC_SUBST(SOCKET_LIBS)
624 dnl Check for socklen_t
625 AH_TEMPLATE(socklen_t, [Define to `int' if <sys/socket.h> does not define.])
626 AC_CACHE_CHECK([for socklen_t in sys/socket.h], dnl ` (fix VIM syntax highlight
627 ac_cv_type_socklen_t,
628 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
629 [#include <sys/types.h>
631 # include <winsock2.h>
632 # include <ws2tcpip.h>
634 # include <sys/socket.h>
635 #endif]], [[socklen_t len; len = 0;]])],
636 ac_cv_type_socklen_t=yes,
637 ac_cv_type_socklen_t=no)])
638 AS_IF([test "$ac_cv_type_socklen_t" = no],
639 [AC_DEFINE(socklen_t, int)])
641 dnl Check for struct sockaddr_storage
642 AH_TEMPLATE(sockaddr_storage, [Define to `sockaddr' if <sys/socket.h> does not define.]) dnl ` (fix VIM syntax highlight
643 AH_TEMPLATE(ss_family, [Define to `sa_family' if <sys/socket.h> does not define.]) dnl ` (fix VIM syntax highlight
644 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_struct_sockaddr_storage,
646 [#include <sys/types.h>
647 #if defined( _WIN32 )
648 # include <winsock2.h>
650 # include <sys/socket.h>
651 #endif], [struct sockaddr_storage addr;],
652 ac_cv_struct_sockaddr_storage=yes,
653 ac_cv_struct_sockaddr_storage=no)])
654 AS_IF([test "${ac_cv_struct_sockaddr_storage}" = no], [
655 AC_DEFINE(sockaddr_storage, sockaddr)
656 AC_DEFINE(ss_family, sa_family)
659 dnl FreeBSD has a gnugetopt library for this:
661 AC_CHECK_FUNC(getopt_long,, [
662 AC_CHECK_LIB([gnugetopt],[getopt_long], [
663 GNUGETOPT_LIBS="-lgnugetopt"
666 AC_SUBST(GNUGETOPT_LIBS)
675 AC_CHECK_LIB(m,lrintf, [
676 AC_DEFINE(HAVE_LRINTF, 1, [Define to 1 if you have the lrintf function])
677 VLC_ADD_LIBS([skins2],[-lm])
680 AC_DEFINE(HAVE_NANF, 1, [Define to 1 if you have the NANF function])
683 dnl Check for dynamic plugins
685 have_dynamic_objects="no"
687 AC_SEARCH_LIBS(dlsym, [dl svld], [
688 AS_IF([test "$ac_cv_search_dlsym" != "none required"], [
689 LIBDL="$ac_cv_search_dlsym"
691 have_dynamic_objects="yes"
696 AS_IF([test "${SYS}" = "mingw32"], [
698 have_dynamic_objects="yes" #assume we can use shared objects
701 AS_IF([test "${enable_shared}" = "no"], [
702 have_dynamic_objects=no
704 AM_CONDITIONAL(HAVE_DYNAMIC_PLUGINS, [test "${have_dynamic_objects}" != "no"])
708 dnl Check for thread library
710 AS_IF([test "${SYS}" != "mingw32"], [
713 AC_SEARCH_LIBS(pthread_rwlock_init, pthread pthreads c_r, [
714 AS_IF([test "$ac_cv_search_pthread_rwlock_init" != "none required"], [
715 LIBPTHREAD="$ac_cv_search_pthread_rwlock_init"
720 AC_CHECK_LIB(rt, clock_nanosleep, [
721 VLC_ADD_LIBS([libvlccore],[-lrt])
723 AC_CHECK_FUNC(nanosleep,,[
724 AC_CHECK_LIB(rt,nanosleep, [
725 VLC_ADD_LIBS([libvlccore],[-lrt])
727 AC_CHECK_LIB(posix4,nanosleep, [
728 VLC_ADD_LIBS([libvlccore],[-lposix4])
733 AC_CHECK_LIB(rt,sem_init, [VLC_ADD_LIBS([libvlccore],[-lrt])])
739 dnl Check for headers
743 AC_CHECK_HEADERS([arpa/inet.h pthread.h search.h sys/shm.h sys/socket.h])
744 AC_CHECK_HEADERS([net/if.h], [], [],
746 #include <sys/types.h>
747 #include <sys/socket.h>
749 AC_CHECK_HEADER([syslog.h], [have_syslog="yes"], [have_syslog="no"])
750 AM_CONDITIONAL([HAVE_SYSLOG], [test "$have_syslog" = "yes"])
753 AC_CHECK_HEADERS([netinet/udplite.h sys/param.h sys/mount.h])
756 AC_CHECK_HEADERS([getopt.h linux/dccp.h linux/magic.h mntent.h sys/eventfd.h])
759 AC_CHECK_HEADERS([xlocale.h])
761 dnl LP64 and LLP64 architectures had better define ssize_t by themselves...
762 AH_TEMPLATE(ssize_t, [Define to `int' if <stddef.h> does not define.]) dnl ` (fix VIM syntax highlight
763 AC_CHECK_TYPE(ssize_t,, [
764 AC_DEFINE(ssize_t, int)
767 dnl It seems that autoconf detects pkg-config only during the first
768 dnl PKG_CHECK_MODULES from configure.ac - which makes sense. But in our case,
769 dnl it is nested within a conditional block, so it was not working right.
770 dnl Make PKG_CONFIG_PATH precious so that it appears in the help and get saved
771 AC_ARG_VAR(PKG_CONFIG_PATH,
772 [Paths where to find .pc not at the default location])
773 PKG_PROG_PKG_CONFIG()
775 dnl On some OS we need static linking
776 AS_IF([test -n "${PKG_CONFIG}" ],[
777 AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "darwin" -o "${SYS}" = "os2" ],[
778 PKG_CONFIG="${PKG_CONFIG} --static"
784 dnl Check for zlib.h and -lz along with system -lminizip if available
786 AC_CHECK_HEADERS(zlib.h, [ have_zlib=yes ], [ have_zlib=no ])
787 AM_CONDITIONAL(HAVE_ZLIB, [ test "${have_zlib}" = "yes" ])
788 if test "${have_zlib}" = "yes"
790 VLC_ADD_LIBS([skins2 sap unzip zip],[-lz])
791 PKG_CHECK_MODULES([MINIZIP], [minizip] , [ have_minizip=yes ], [
792 AC_CHECK_HEADERS([unzip.h], [
794 MINIZIP_LIBS="-lminizip -lz"
796 VLC_ADD_CPPFLAGS([skins2], [-I\\\$(top_srcdir)/modules/access/zip/unzip])
797 VLC_ADD_LIBS([skins2], [\\\$(top_builddir)/modules/libunzip.la])
801 VLC_ADD_CPPFLAGS([skins2],[$MINIZIP_CFLAGS])
802 VLC_ADD_LIBS([skins2],[$MINIZIP_LIBS])
804 AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
808 dnl Domain name i18n support via GNU libidn
810 PKG_CHECK_MODULES([IDN], [libidn], [
812 AC_DEFINE([HAVE_IDN], 1, [Define to 1 if you have GNU libidn.])
820 [AS_HELP_STRING([--enable-dbus],
821 [compile D-Bus message bus support (default enabled)])])
823 AS_IF([test "${enable_dbus}" != "no"], [
824 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.6.0], [
827 AS_IF([test -n "${enable_dbus}"], [
828 AC_MSG_ERROR([${DBUS_PKG_ERRORS}.])
830 AC_MSG_WARN([${DBUS_PKG_ERRORS}.])
834 AM_CONDITIONAL([HAVE_DBUS], [test "${have_dbus}" = "yes"])
837 dnl Check for systemd
838 PKG_CHECK_MODULES([SYSTEMD], [libsystemd], [
841 AC_MSG_WARN([${SYSTEMD_PKG_ERRORS}.])
843 AM_CONDITIONAL([HAVE_SYSTEMD], [test "${have_systemd}" = "yes"])
846 dnl Check for ntohl, etc.
848 CFLAGS="${CFLAGS} -Wall -Werror"
849 AC_CACHE_CHECK([for ntohl in sys/param.h],
850 [ac_cv_c_ntohl_sys_param_h],
851 [ AC_TRY_COMPILE([#include <sys/param.h>],
852 [int meuh; ntohl(meuh);],
853 ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
854 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
855 AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
859 EXTEND_HELP_STRING([Optimization options:])
861 dnl Compiler warnings
864 RDC_PROG_CC_WFLAGS([all extra sign-compare undef pointer-arith bad-function-cast write-strings missing-prototypes volatile-register-var error-implicit-function-declaration init-self logical-op])
865 RDC_PROG_CC_FLAGS([-pipe])
867 RDC_PROG_CXX_WFLAGS([all extra sign-compare undef pointer-arith volatile-register-var])
874 [AS_HELP_STRING([--enable-debug],
875 [build with run-time assertions (default disabled)])],,
878 [Define to 1 if debug code should NOT be compiled])
879 AS_IF([test "${enable_debug}" != "no"], [
880 AC_CHECK_HEADERS([valgrind/valgrind.h])
889 [AS_HELP_STRING([--enable-gprof],[profile with gprof (default disabled)])],,
891 AS_IF([test "${enable_gprof}" != "no"], [
892 CFLAGS="${CFLAGS} -pg"
893 CXXFLAGS="${CXXFLAGS} -pg"
894 OBJCFLAGS="${OBJCFLAGS} -pg"
895 LDFLAGS="${LDFLAGS} -pg"
899 [AS_HELP_STRING([--enable-cprof],[profile with cprof (default disabled)])],,
901 AS_IF([test "${enable_gprof}" != "no"], [
902 CFLAGS="${CFLAGS} -finstrument-functions"
903 CXXFLAGS="${CXXFLAGS} -finstrument-functions"
904 OBJCFLAGS="${OBJCFLAGS} -finstrument-functions"
905 LDFLAGS="${LDFLAGS} -finstrument-functions"
911 AC_ARG_ENABLE(coverage,
912 [AS_HELP_STRING([--enable-coverage],
913 [build for test coverage (default disabled)])],,
914 [enable_coverage="no"])
915 AS_IF([test "${enable_coverage}" != "no"], [
916 CFLAGS="-fprofile-arcs -ftest-coverage ${CFLAGS}"
917 CXXFLAGS="-fprofile-arcs -ftest-coverage ${CXXFLAGS}"
918 LDFLAGS="-lgcov ${LDFLAGS}"
921 AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "os2"], [
923 CFLAGS="${CFLAGS} -fvisibility=hidden"
924 CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
925 OBJCFLAGS="${OBJCFLAGS} -fvisibility=hidden"
926 AC_CACHE_CHECK([if $CC accepts -fvisibility=hidden],
927 [ac_cv_c_visibility_hidden], [
928 AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
929 ac_cv_c_visibility_hidden=yes
931 ac_cv_c_visibility_hidden=no
934 AS_IF([test "${ac_cv_c_visibility_hidden}" = "no"], [VLC_RESTORE_FLAGS])
939 dnl Enable/disable optimizations
941 AC_ARG_ENABLE(optimizations,
942 [AS_HELP_STRING([--disable-optimizations],
943 [disable compiler optimizations (default enabled)])],,
944 [enable_optimizations="yes"])
946 dnl Check for various optimization flags
947 AS_IF([test "${enable_optimizations}" != "no"], [
949 dnl -O3 only in production builds
950 AS_IF([test "${enable_debug}" = "no"], [
952 CFLAGS="${CFLAGS} -O3"
953 CXXFLAGS="${CXXFLAGS} -O3"
954 OBJCFLAGS="${OBJCFLAGS} -O3"
955 AC_CACHE_CHECK([if $CC accepts -O3], [ac_cv_c_o3], [
956 AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
962 AS_IF([test "${ac_cv_c_o3}" = "no"], [VLC_RESTORE_FLAGS])
965 dnl Check for -ffast-math
967 CFLAGS="${CFLAGS} -ffast-math"
968 CXXFLAGS="${CXXFLAGS} -ffast-math"
969 OBJCFLAGS="${OBJCFLAGS} -ffast-math"
970 AC_CACHE_CHECK([if $CC accepts -ffast-math], [ac_cv_c_fast_math], [
971 AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
972 ac_cv_c_fast_math=yes
977 AS_IF([test "${ac_cv_c_fast_math}" = "no"], [VLC_RESTORE_FLAGS])
979 #ifndef __FAST_MATH__
981 # pragma STDC FENV_ACCESS OFF
982 # pragma STDC FP_CONTRACT ON
984 # pragma fenv_access(off)
985 # pragma fp_contract(on)
990 dnl Check for -funroll-loops
992 CFLAGS="${CFLAGS} -funroll-loops"
993 CXXFLAGS="${CXXFLAGS} -funroll-loops"
994 OBJCFLAGS="${OBJCFLAGS} -funroll-loops"
995 AC_CACHE_CHECK([if $CC accepts -funroll-loops], [ac_cv_c_unroll_loops], [
996 AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
997 ac_cv_c_unroll_loops=yes
999 ac_cv_c_unroll_loops=no
1002 AS_IF([test "${ac_cv_c_unroll_loops}" = "no"], [VLC_RESTORE_FLAGS])
1004 AS_IF([test "$enable_debug" = "no"], [
1005 dnl Check for -fomit-frame-pointer
1007 CFLAGS="${CFLAGS} -fomit-frame-pointer"
1008 CXXFLAGS="${CXXFLAGS} -fomit-frame-pointer"
1009 OBJCFLAGS="${OBJCFLAGS} -fomit-frame-pointer"
1010 AC_CACHE_CHECK([if $CC accepts -fomit-frame-pointer],
1011 [ac_cv_c_omit_frame_pointer], [
1012 AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
1013 ac_cv_c_omit_frame_pointer=yes
1015 ac_cv_c_omit_frame_pointer=no
1018 AS_IF([test "${ac_cv_c_omit_frame_pointer}" = "no"], [VLC_RESTORE_FLAGS])
1023 LDFLAGS="${LDFLAGS} -Wl,-Bsymbolic"
1024 AC_CACHE_CHECK([if linker supports -Bsymbolic], [ac_cv_ld_bsymbolic], [
1026 ac_cv_ld_bsymbolic="-Wl,-Bsymbolic"
1028 ac_cv_ld_bsymbolic=""
1032 SYMBOLIC_LDFLAGS="${ac_cv_ld_bsymbolic}"
1033 AC_SUBST(SYMBOLIC_LDFLAGS)
1035 dnl Checks for __attribute__(aligned()) directive
1037 CFLAGS="${CFLAGS} -Werror"
1038 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
1039 [ac_cv_c_attribute_aligned],
1040 [ac_cv_c_attribute_aligned=0
1041 for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
1043 [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
1044 [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
1047 if test "${ac_cv_c_attribute_aligned}" != "0"; then
1048 AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
1049 [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
1052 dnl Check for __attribute__((packed))
1053 AC_CACHE_CHECK([for __attribute__((packed))],
1054 [ac_cv_c_attribute_packed],
1055 [ac_cv_c_attribute_packed=no
1056 AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b; (void)b;],
1057 [ac_cv_c_attribute_packed=yes])])
1058 if test "${ac_cv_c_attribute_packed}" != "no"; then
1059 AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
1065 case "${host_cpu}" in
1074 dnl Check for backtrace() support
1075 AC_CHECK_HEADERS(execinfo.h)
1076 AC_CHECK_FUNCS(backtrace)
1081 ALIASES="${ALIASES} cvlc rvlc"
1084 dnl Accelerated modules
1087 dnl Check for fully working MMX intrinsics
1088 dnl We need support for -mmmx, we need <mmintrin.h>, and we also need a
1089 dnl working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1091 [AS_HELP_STRING([--disable-mmx],
1092 [disable MMX optimizations (default auto)])],,[
1093 case "${host_cpu}" in
1104 AS_IF([test "${enable_mmx}" != "no"], [
1107 CFLAGS="${CFLAGS} -mmmx"
1108 AC_CACHE_CHECK([if $CC groks MMX intrinsics], [ac_cv_c_mmx_intrinsics], [
1109 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1110 [#include <mmintrin.h>
1112 uint64_t frobzor;]], [
1114 a = b = c = (__m64)frobzor;
1115 a = _mm_slli_pi16(a, 3);
1116 a = _mm_adds_pi16(a, b);
1117 c = _mm_srli_pi16(c, 8);
1118 c = _mm_slli_pi16(c, 3);
1119 b = _mm_adds_pi16(b, c);
1120 a = _mm_unpacklo_pi8(a, b);
1121 frobzor = (uint64_t)a;]])], [
1122 ac_cv_c_mmx_intrinsics=yes
1124 ac_cv_c_mmx_intrinsics=no
1128 AS_IF([test "${ac_cv_c_mmx_intrinsics}" != "no"], [
1129 AC_DEFINE(HAVE_MMX_INTRINSICS, 1, [Define to 1 if MMX intrinsics are available.])
1133 CFLAGS="${CFLAGS} -mmmx"
1134 AC_CACHE_CHECK([if $CC groks MMX inline assembly], [ac_cv_mmx_inline], [
1135 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1137 asm volatile("packuswb %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1140 ac_cv_mmx_inline=yes
1145 AS_IF([test "${ac_cv_mmx_inline}" != "no"], [
1146 AC_DEFINE(CAN_COMPILE_MMX, 1, [Define to 1 inline MMX assembly is available.])
1150 AC_CACHE_CHECK([if $CC groks MMX EXT inline assembly],
1151 [ac_cv_mmxext_inline], [
1152 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1154 asm volatile("maskmovq %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1157 ac_cv_mmxext_inline=yes
1159 ac_cv_mmxext_inline=no
1163 AS_IF([test "${ac_cv_mmxext_inline}" != "no"], [
1164 AC_DEFINE(CAN_COMPILE_MMXEXT, 1, [Define to 1 if MMX EXT inline assembly is available.])
1168 AM_CONDITIONAL([HAVE_MMX], [test "${have_mmx}" = "yes"])
1169 AM_CONDITIONAL([HAVE_MMXEXT], [test "${have_mmxext}" = "yes"])
1171 dnl Check for fully workin SSE2 intrinsics
1172 dnl We need support for -mmmx, we need <emmintrin.h>, and we also need a
1173 dnl working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1175 [AS_HELP_STRING([--disable-sse],
1176 [disable SSE (1-4) optimizations (default auto)])],, [
1177 case "${host_cpu}" in
1187 AS_IF([test "${enable_sse}" != "no"], [
1188 ARCH="${ARCH} sse sse2"
1191 CFLAGS="${CFLAGS} -msse2"
1192 AC_CACHE_CHECK([if $CC groks SSE2 intrinsics], [ac_cv_c_sse2_intrinsics], [
1193 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1194 [#include <emmintrin.h>
1196 uint64_t frobzor;]], [
1198 a = b = c = _mm_set1_epi64((__m64)frobzor);
1199 a = _mm_slli_epi16(a, 3);
1200 a = _mm_adds_epi16(a, b);
1201 c = _mm_srli_epi16(c, 8);
1202 c = _mm_slli_epi16(c, 3);
1203 b = _mm_adds_epi16(b, c);
1204 a = _mm_unpacklo_epi8(a, b);
1205 frobzor = (uint64_t)_mm_movepi64_pi64(a);]])], [
1206 ac_cv_c_sse2_intrinsics=yes
1208 ac_cv_c_sse2_intrinsics=no
1212 AS_IF([test "${ac_cv_c_sse2_intrinsics}" != "no"], [
1213 AC_DEFINE(HAVE_SSE2_INTRINSICS, 1, [Define to 1 if SSE2 intrinsics are available.])
1217 CFLAGS="${CFLAGS} -msse"
1218 AC_CACHE_CHECK([if $CC groks SSE inline assembly], [ac_cv_sse_inline], [
1219 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1221 asm volatile("xorps %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1224 ac_cv_sse_inline=yes
1230 AS_IF([test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"], [
1231 AC_DEFINE(CAN_COMPILE_SSE, 1, [Define to 1 if SSE inline assembly is available.])
1234 AC_CACHE_CHECK([if $CC groks SSE2 inline assembly], [ac_cv_sse2_inline], [
1235 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1237 asm volatile("punpckhqdq %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1240 ac_cv_sse2_inline=yes
1242 ac_cv_sse2_inline=no
1245 AS_IF([test "${ac_cv_sse2_inline}" != "no" -a "${SYS}" != "solaris"], [
1246 AC_DEFINE(CAN_COMPILE_SSE2, 1, [Define to 1 if SSE2 inline assembly is available.])
1251 AC_CACHE_CHECK([if $CC groks SSE3 inline assembly], [ac_cv_sse3_inline], [
1252 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1254 asm volatile("movsldup %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1257 ac_cv_sse3_inline=yes
1259 ac_cv_sse3_inline=no
1263 AS_IF([test "${ac_cv_sse3_inline}" != "no"], [
1264 AC_DEFINE(CAN_COMPILE_SSE3, 1, [Define to 1 if SSE3 inline assembly is available.]) ])
1266 AC_CACHE_CHECK([if $CC groks SSSE3 inline assembly], [ac_cv_ssse3_inline], [
1267 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1269 asm volatile("pabsw %%xmm0,%%xmm0"::"r"(p):"xmm0");
1272 ac_cv_ssse3_inline=yes
1274 ac_cv_ssse3_inline=no
1278 AS_IF([test "${ac_cv_ssse3_inline}" != "no"], [
1279 AC_DEFINE(CAN_COMPILE_SSSE3, 1, [Define to 1 if SSSE3 inline assembly is available.]) ])
1282 AC_CACHE_CHECK([if $CC groks SSE4.1 inline assembly],
1283 [ac_cv_sse4_1_inline], [
1284 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1286 asm volatile("pmaxsb %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1289 ac_cv_sse4_1_inline=yes
1291 ac_cv_sse4_1_inline=no
1295 AS_IF([test "${ac_cv_sse4_1_inline}" != "no"], [
1296 AC_DEFINE(CAN_COMPILE_SSE4_1, 1, [Define to 1 if SSE4_1 inline assembly is available.]) ])
1299 AC_CACHE_CHECK([if $CC groks SSE4.2 inline assembly],
1300 [ac_cv_sse4_2_inline], [
1301 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1303 asm volatile("pcmpgtq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1306 ac_cv_sse4_2_inline=yes
1308 ac_cv_sse4_2_inline=no
1312 AS_IF([test "${ac_cv_sse4_2_inline}" != "no"], [
1313 AC_DEFINE(CAN_COMPILE_SSE4_2, 1, [Define to 1 if SSE4_2 inline assembly is available.]) ])
1316 AC_CACHE_CHECK([if $CC groks SSE4A inline assembly], [ac_cv_sse4a_inline], [
1317 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1319 asm volatile("insertq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1322 ac_cv_sse4a_inline=yes
1324 ac_cv_sse4a_inline=no
1328 AS_IF([test "${ac_cv_sse4a_inline}" != "no"], [
1329 AC_DEFINE(CAN_COMPILE_SSE4A, 1, [Define to 1 if SSE4A inline assembly is available.]) ])
1331 AM_CONDITIONAL([HAVE_SSE2], [test "$have_sse2" = "yes"])
1334 CFLAGS="${CFLAGS} -mmmx"
1336 AC_CACHE_CHECK([if $CC groks 3D Now! inline assembly], [ac_cv_3dnow_inline], [
1337 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1339 asm volatile("pfadd %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1342 ac_cv_3dnow_inline=yes
1344 ac_cv_3dnow_inline=no
1348 AS_IF([test "${ac_cv_3dnow_inline}" != "no"], [
1349 AC_DEFINE(CAN_COMPILE_3DNOW, 1,
1350 [Define to 1 if 3D Now! inline assembly is available.])
1353 AM_CONDITIONAL([HAVE_3DNOW], [test "$have_3dnow" = "yes"])
1357 [AS_HELP_STRING([--disable-neon],
1358 [disable NEON optimizations (default auto)])],, [
1359 AS_IF([test "${host_cpu}" = "arm"], [enable_neon="yes"] ,[enable_neon="no"])
1361 AS_IF([test "${enable_neon}" != "no"], [
1363 CFLAGS="${CFLAGS} -mfpu=neon -mhard-float"
1364 AC_CACHE_CHECK([if $CCAS groks ARM NEON assembly], [ac_cv_arm_neon], [
1367 asm volatile("vqmovun.s64 d0, q1":::"d0");
1370 ac_cv_arm_neon="yes"
1377 AM_CONDITIONAL(HAVE_NEON, [test "${ac_cv_arm_neon}" = "yes"])
1380 AC_ARG_ENABLE(altivec,
1381 [AS_HELP_STRING([--disable-altivec],
1382 [disable AltiVec optimizations (default auto)])],, [
1383 AS_CASE("${host_cpu}", [powerpc*],
1384 [enable_altivec=yes], [enable_altivec=no])
1388 AS_IF([test "${enable_altivec}" = "yes"], [
1389 ARCH="${ARCH} altivec";
1391 AC_CACHE_CHECK([if $CC groks AltiVec inline assembly],
1392 [ac_cv_altivec_inline],
1393 [AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1394 ac_cv_altivec_inline="yes",
1395 [CFLAGS="${CFLAGS} -Wa,-maltivec"
1396 AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1397 [ac_cv_altivec_inline="-Wa,-maltivec"],
1398 ac_cv_altivec_inline=no)
1401 AS_IF([test "${ac_cv_altivec_inline}" != "no"], [
1402 AC_DEFINE(CAN_COMPILE_ALTIVEC, 1,
1403 [Define to 1 if AltiVec inline assembly is available.])
1404 AS_IF([test "${ac_cv_altivec_inline}" != "yes"], [
1405 ALTIVEC_CFLAGS="${ac_cv_altivec_inline}"
1406 VLC_ADD_CFLAGS([libvlccore],[${ac_cv_altivec_inline}])
1412 AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1413 [ac_cv_c_altivec], [
1414 CFLAGS="${CFLAGS} -maltivec"
1415 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1416 [#include <altivec.h>]], [
1417 [vec_ld(0, (unsigned char *)0);]])], [
1418 ac_cv_c_altivec="-maltivec"
1420 ac_cv_c_altivec="no"
1424 AS_IF([test "${ac_cv_c_altivec}" != "no"], [
1425 CPPFLAGS="${CPPFLAGS} ${ac_cv_c_altivec}"
1426 AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, [Define to 1 if C AltiVec extensions are available.])
1427 VLC_ADD_CFLAGS([libvlccore],[${ac_cv_c_altivec}])
1428 ALTIVEC_CFLAGS="$ALTIVEC_FLAGS ${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}"
1429 VLC_ADD_CFLAGS([deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1432 AC_CHECK_HEADERS(altivec.h)
1435 LDFLAGS="${LDFLAGS} -Wl,-framework,vecLib"
1436 AC_CACHE_CHECK([if linker needs -framework vecLib],
1438 [AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)])
1440 AS_IF([test "${ac_cv_ld_altivec}" != "no"], [
1441 VLC_ADD_LIBS([libvlccore],[-Wl,-framework,vecLib])
1444 AC_SUBST(ALTIVEC_CFLAGS)
1445 AM_CONDITIONAL([HAVE_ALTIVEC], [test "$have_altivec" = "yes"])
1450 AC_ARG_ENABLE(optimize-memory,
1451 [AS_HELP_STRING([--enable-optimize-memory],
1452 [optimize memory usage over performance])])
1453 if test "${enable_optimize_memory}" = "yes"; then
1454 AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1458 dnl Allow running as root (useful for people running on embedded platforms)
1460 AC_ARG_ENABLE(run-as-root,
1461 [AS_HELP_STRING([--enable-run-as-root],
1462 [allow running VLC as root (default disabled)])])
1463 AS_IF([test "${enable_run_as_root}" = "yes"],[
1464 AC_DEFINE(ALLOW_RUN_AS_ROOT, 1,
1465 [Define to 1 to allow running VLC as root (uid 0).])
1472 [AS_HELP_STRING([--disable-sout],
1473 [disable streaming output (default enabled)])])
1474 AS_IF([test "${enable_sout}" != "no"], [
1475 AC_DEFINE(ENABLE_SOUT, 1, [Define to 1 for stream output support.])
1477 AM_CONDITIONAL(ENABLE_SOUT, [test "${enable_sout}" != "no"])
1481 [AS_HELP_STRING([--disable-lua],
1482 [disable LUA scripting support (default enabled)])])
1483 if test "${enable_lua}" != "no"
1485 PKG_CHECK_MODULES(LUA, lua5.2,
1488 AC_MSG_WARN([${LUA_PKG_ERRORS}, trying lua 5.1 instead])
1490 PKG_CHECK_MODULES(LUA, lua5.1,
1493 AC_MSG_WARN([${LUA_PKG_ERRORS}, trying lua >= 5.1 instead])
1494 PKG_CHECK_MODULES(LUA, lua >= 5.1,
1497 AC_MSG_WARN([${LUA_PKG_ERRORS}, trying manual detection instead])
1499 AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
1502 AC_CHECK_LIB( lua5.2 , luaL_newstate,
1503 [LUA_LIBS="-llua5.2"],
1504 AC_CHECK_LIB( lua5.1 , luaL_newstate,
1505 [LUA_LIBS="-llua5.1"],
1506 AC_CHECK_LIB( lua51 , luaL_newstate,
1507 [LUA_LIBS="-llua51"],
1508 AC_CHECK_LIB( lua , luaL_newstate,
1516 if test "x${have_lua}" != "xyes" ; then
1517 AC_MSG_ERROR([Could not find lua. Lua is needed for some interfaces (rc, telnet, http) as well as many other custom scripts. Use --disable-lua to ignore this error.])
1519 AC_ARG_VAR([LUAC], [LUA byte compiler])
1520 AC_CHECK_PROGS(LUAC, [${LUAC} luac], [false])
1521 AS_IF([test "${LUAC}" = "false"], [
1522 AC_MSG_ERROR([Could not find the LUA byte compiler.])
1524 AS_IF([test -d "${CONTRIB_DIR}" -a -f "${CONTRIB_DIR}/lib/liblua.a" -a `echo|${LUAC} -o - -|od -j 8 -N 2 -t x2|head -n 1|tr -s ' '|cut -d' ' -f2` != 0404], [
1525 AC_MSG_ERROR([You need 32-bits luac when using using lua from contrib.])
1528 AM_CONDITIONAL(BUILD_LUA, [test "${have_lua}" = "yes"])
1534 AC_ARG_ENABLE(httpd,
1535 [AS_HELP_STRING([--disable-httpd],
1536 [disable the built-in HTTP server (default enabled)])])
1537 if test "${enable_httpd}" != "no"
1539 AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP daemon support)
1541 AM_CONDITIONAL(BUILD_HTTPD, [test "${enable_httpd}" != "no"])
1545 dnl VideoLAN manager
1548 [AS_HELP_STRING([--disable-vlm],
1549 [disable the stream manager (default enabled)])],,
1550 [enable_vlm="${enable_sout}"])
1551 AS_IF([test "${enable_vlm}" != "no"], [
1552 AS_IF([test "${enable_sout}" = "no"], [
1553 AC_MSG_ERROR([VLM requires the stream output. Do not use --disable-sout.])
1555 AC_DEFINE(ENABLE_VLM, 1, [Define if you want the VideoLAN manager support])
1557 AM_CONDITIONAL([ENABLE_VLM], [test "${enable_vlm}" != "no"])
1561 dnl Addons manager storage and repositories modules
1563 AC_ARG_ENABLE(addonmanagermodules,
1564 [AS_HELP_STRING([--disable-addonmanagermodules],
1565 [disable the addons manager modules (default enabled)])])
1566 if test "${enable_addonmanagermodules}" != "no"
1568 AC_DEFINE(ENABLE_ADDONMANAGERMODULES, 1, [Define if you want the addons manager modules])
1570 AM_CONDITIONAL([ENABLE_ADDONMANAGERMODULES], [test "${enable_addonmanagermodules}" != "no"])
1577 EXTEND_HELP_STRING([Input plugins:])
1580 dnl libarchive access module
1582 PKG_ENABLE_MODULES_VLC([ARCHIVE], [access_archive], [libarchive >= 3.1.0], (libarchive support), [auto])
1587 AC_ARG_ENABLE(live555,
1588 [AS_HELP_STRING([--enable-live555],
1589 [enable RTSP input through live555 (default enabled)])])
1591 AS_IF([test "${enable_live555}" != "no" -a -n "${CXX}"], [
1592 PKG_CHECK_MODULES(LIVE555, live555, [
1593 VLC_ADD_PLUGIN([live555])
1594 VLC_ADD_CXXFLAGS([live555], [$LIVE555_CFLAGS])
1595 VLC_ADD_LIBS([live555],[$LIVE555_LIBS])
1597 AC_MSG_WARN([${LIVE555_PKG_ERRORS}.])
1602 dnl detect include paths
1603 AS_IF([test -f "${CONTRIB_DIR}/include/UsageEnvironment.hh"], [
1604 CPPFLAGS_live555="-I${CONTRIB_DIR}/include/liveMedia -I${CONTRIB_DIR}/include/groupsock -I${CONTRIB_DIR}/include/BasicUsageEnvironment -I${CONTRIB_DIR}/include/UsageEnvironment"
1606 AS_IF([test "${SYS}" != "os2"], [
1607 LIVE555_PREFIX=${LIVE555_PREFIX-"/usr"}
1608 CPPFLAGS_live555="-I${LIVE555_PREFIX}/include/liveMedia -I${LIVE555_PREFIX}/include/groupsock -I${LIVE555_PREFIX}/include/BasicUsageEnvironment -I${LIVE555_PREFIX}/include/UsageEnvironment"
1610 LIVE555_PREFIX=${LIVE555_PREFIX-"/usr/lib/live"}
1611 CPPFLAGS_live555="-I${LIVE555_PREFIX}/liveMedia/include -I${LIVE555_PREFIX}/groupsock/include -I${LIVE555_PREFIX}/BasicUsageEnvironment/include -I${LIVE555_PREFIX}/UsageEnvironment/include"
1612 LDFLAGS_live555="-L${LIVE555_PREFIX}/liveMedia -L${LIVE555_PREFIX}/groupsock -L${LIVE555_PREFIX}/BasicUsageEnvironment -L${LIVE555_PREFIX}/UsageEnvironment"
1617 AS_IF([test "${SYS}" = "solaris"], [
1618 CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS"
1620 CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}"
1621 LDFLAGS="${LDFLAGS} ${LDFLAGS_live555}"
1624 AC_CACHE_CHECK([for live555 version 1324598400 or later], [ac_cv_live555], [
1625 AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1626 [#include <liveMedia_version.hh>
1627 #if !defined (LIVEMEDIA_LIBRARY_VERSION_INT) || (LIVEMEDIA_LIBRARY_VERSION_INT < 1324598400)
1637 AS_IF([test "$ac_cv_live555" = "no"], [
1638 AC_MSG_WARN([live555 is missing or its installed version is too old:
1639 Version 2011.12.23 or later is required to proceed.
1640 You can get an updated one from http://www.live555.com/liveMedia .])
1641 AS_IF([test -n "${enable_live555}"], [
1642 AC_MSG_ERROR([Update live555 or pass --disable-live555 to disable RTSP input support.])
1645 other_libs="-lgroupsock -lBasicUsageEnvironment -lUsageEnvironment"
1646 other_libs_pic="-lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic"
1647 AS_IF([test "${SYS}" = "mingw32"], [
1648 # add ws2_32 for closesocket, select, recv
1649 other_libs="$other_libs -lws2_32"
1652 dnl We need to check for pic because live555 don't provide shared libs
1653 dnl and we want to build a plugins so we need -fPIC on some arch.
1654 VLC_ADD_CXXFLAGS([live555], [${CPPFLAGS_live555}])
1655 VLC_ADD_LDFLAGS([live555], [${LDFLAGS_live555}])
1656 AC_CHECK_LIB(liveMedia_pic, main, [
1657 VLC_ADD_PLUGIN([live555])
1658 VLC_ADD_LIBS([live555], [-lliveMedia_pic ${other_libs_pic}])
1660 AC_CHECK_LIB(liveMedia, main, [
1661 VLC_ADD_PLUGIN([live555])
1662 VLC_ADD_LIBS([live555], [-lliveMedia ${other_libs}])
1663 ],[],[${other_libs}])
1664 ],[${other_libs_pic}])
1672 dnl IIDC and DV FireWire input modules
1674 PKG_ENABLE_MODULES_VLC([DC1394], [], [libdc1394-2 >= 2.1.0], [IIDC FireWire input module], [auto])
1675 PKG_ENABLE_MODULES_VLC([DV1394], [], [libraw1394 >= 2.0.1 libavc1394 >= 0.5.3], [DV FireWire input module], [auto])
1678 dnl - linsys modules: access module check for libzvbi
1680 AC_ARG_ENABLE(linsys,
1681 [AS_HELP_STRING([--enable-linsys],
1682 [Linux Linear Systems Ltd. SDI and HD-SDI input cards (default enabled)])])
1683 AS_IF([test "$SYS" = "linux" -a "${enable_linsys}" != "no"], [
1684 VLC_ADD_PLUGIN([linsys_hdsdi])
1685 PKG_CHECK_MODULES(LINSYS_SDI, [zvbi-0.2 >= 0.2.28], [
1686 VLC_ADD_PLUGIN([linsys_sdi])
1688 AC_MSG_WARN([${LINSYS_SDI_PKG_ERRORS}.])
1693 dnl dvdread module: check for libdvdread
1695 PKG_ENABLE_MODULES_VLC([DVDREAD], [], [dvdread > 4.9.0], [dvdread input module], [auto])
1698 dnl libdvdnav plugin
1700 PKG_ENABLE_MODULES_VLC([DVDNAV], [], [dvdnav > 4.9.0], [DVD with navigation input module (dvdnav)], [auto])
1701 AS_IF([test "${enable_dvdnav}" != "no"], [
1702 AC_MSG_CHECKING(for dvdnav_stream_cb in dvdnav/dvdnav.h)
1703 AC_EGREP_HEADER(dvdnav_stream_cb,dvdnav/dvdnav.h,[
1705 AC_DEFINE(HAVE_STREAM_CB_IN_DVDNAV_H, 1, For dvdnav demux support)
1712 dnl Blu-ray Disc Support with libbluray
1714 PKG_ENABLE_MODULES_VLC([BLURAY], [libbluray], [libbluray >= 0.5.0], (libbluray for Blu-ray disc support ) )
1717 dnl OpenCV wrapper and example filters
1719 PKG_ENABLE_MODULES_VLC([OPENCV], [opencv_example opencv_wrapper], [opencv > 2.0], (OpenCV (computer vision) filter), [auto])
1723 dnl libsmbclient plugin
1725 PKG_ENABLE_MODULES_VLC([SMBCLIENT], [smb], [smbclient], (SMB/CIFS support), [auto])
1726 AS_IF([test "${SYS}" = "mingw32"], [ VLC_ADD_PLUGIN([smb]) ])
1729 dnl liBDSM access module
1731 PKG_ENABLE_MODULES_VLC([DSM], [dsm], [libdsm >= 0.0.4], [libdsm SMB/CIFS access/sd module], [auto])
1734 dnl sftp access support
1736 PKG_ENABLE_MODULES_VLC([SFTP], [sftp], [libssh2], (support SFTP file transfer via libssh2), [auto])
1741 AC_ARG_ENABLE(v4l2, [AS_HELP_STRING([--disable-v4l2],
1742 [disable Video4Linux version 2 (default auto)])])
1744 AS_IF([test "$enable_v4l2" != "no"], [
1745 AC_CHECK_HEADERS([linux/videodev2.h sys/videoio.h], [
1749 AM_CONDITIONAL(HAVE_V4L2, [test "${have_v4l2}" != "no"])
1752 dnl special access module for Blackmagic SDI cards
1754 AC_ARG_ENABLE(decklink,
1755 [AS_HELP_STRING([--disable-decklink],
1756 [disable Blackmagic DeckLink SDI input (default auto)])])
1757 AC_ARG_WITH(decklink_sdk,
1758 [AS_HELP_STRING[--with-decklink-sdk=DIR],
1759 [ location of Blackmagic DeckLink SDI SDK])])
1761 if test "${enable_decklink}" != "no"
1763 if test "${with_decklink_sdk}" != "no" -a -n "${with_decklink_sdk}"
1765 VLC_ADD_CPPFLAGS([decklink decklinkoutput],[-I${with_decklink_sdk}/include])
1768 CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_decklink}"
1770 AC_CHECK_HEADERS(DeckLinkAPIDispatch.cpp, [
1773 AC_MSG_WARN(Blackmagic DeckLink SDI include files not found, decklink disabled)
1778 AM_CONDITIONAL(HAVE_DECKLINK, [ test "${have_decklink}" != "no" ])
1784 PKG_ENABLE_MODULES_VLC([VCDX], [vcdx], [libcdio >= 0.78.2 libiso9660 >= 0.72 libvcdinfo >= 0.7.22], [navigate VCD with libvcdinfo], [no])
1787 dnl Built-in CD-DA and VCD module
1790 [AS_HELP_STRING([--disable-vcd],
1791 [disable built-in VCD and CD-DA support (default enabled)])])
1793 AC_ARG_ENABLE(libcddb,
1794 [AS_HELP_STRING([--disable-libcddb],
1795 [disable CDDB for Audio CD (default enabled)])])
1797 if test "${enable_vcd}" != "no"
1799 AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1800 AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1802 VLC_ADD_PLUGIN([vcd cdda])
1807 AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1808 AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1810 VLC_ADD_PLUGIN([vcd cdda])
1811 AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1816 AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1817 AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1819 VLC_ADD_PLUGIN([vcd cdda])
1820 AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1825 if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32" -o "${SYS}" = "os2" -o "${SYS}" = "darwin"
1827 VLC_ADD_PLUGIN([vcd cdda])
1830 if test "$enable_libcddb" != "no"; then
1831 PKG_CHECK_MODULES(LIBCDDB, [libcddb >= 0.9.5], [
1833 AC_DEFINE(HAVE_LIBCDDB, 1, [Define this if you have libcddb installed])
1834 VLC_ADD_LIBS([cdda],[$LIBCDDB_LIBS])
1835 VLC_ADD_CFLAGS([cdda],[$LIBCDDB_CFLAGS])
1837 [AC_MSG_WARN([${LIBCDDB_PKG_ERRORS}: CDDB access disabled.])
1845 AC_CACHE_CHECK([for Linux DVB version 5.1], [ac_cv_linux_dvb_5_1], [
1846 AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1847 [#include <linux/dvb/version.h>
1848 #if (DVB_API_VERSION < 5)
1849 # error Linux DVB API v3.2 and older are not supported.
1851 #if (DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR < 1)
1852 # error Linux DVB API v5.0 is unsupported. Please update.
1855 ac_cv_linux_dvb_5_1=yes
1857 ac_cv_linux_dvb_5_1=no
1859 AM_CONDITIONAL([HAVE_LINUX_DVB], [test "$ac_cv_linux_dvb_5_1" = "yes"])
1862 dnl Screen capture module
1864 AC_ARG_ENABLE(screen,
1865 [AS_HELP_STRING([--enable-screen],
1866 [disable screen capture (default enabled)])])
1867 if test "${enable_screen}" != "no"; then
1868 if test "${SYS}" = "darwin"; then
1869 AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
1870 VLC_ADD_PLUGIN([screen])
1874 AM_CONDITIONAL(HAVE_MAC_SCREEN, [test "${SYS}" = "darwin" -a "x${enable_screen}" != "xno"])
1877 dnl VNC/RFB access module
1879 PKG_ENABLE_MODULES_VLC([VNC], [vnc], [libvncclient >= 0.9.9], (VNC/rfb client support), [auto])
1881 dnl RDP/Remote Desktop access module
1883 PKG_ENABLE_MODULES_VLC([FREERDP], [rdp], [freerdp >= 1.0.1], (RDP/Remote Desktop client support) )
1886 dnl Real RTSP plugin
1888 AC_ARG_ENABLE(realrtsp,
1889 [ --enable-realrtsp Real RTSP module (default disabled)])
1890 if test "${enable_realrtsp}" = "yes"; then
1891 VLC_ADD_PLUGIN([access_realrtsp])
1896 AC_ARG_ENABLE(macosx-eyetv,
1897 [ --enable-macosx-eyetv Mac OS X EyeTV (TNT Tuner) module (default enabled on Mac OS X)])
1898 if test "x${enable_macosx_eyetv}" != "xno" &&
1899 (test "${SYS}" = "darwin" || test "${enable_macosx_eyetv}" = "yes")
1901 VLC_ADD_PLUGIN([access_eyetv])
1906 AC_ARG_ENABLE(macosx-qtkit,
1907 [ --enable-macosx-qtkit Mac OS X qtsound (audio) module (default enabled on Mac OS X)])
1908 if test "x${enable_macosx_qtkit}" != "xno" &&
1909 (test "${SYS}" = "darwin" || test "${enable_macosx_qtkit}" = "yes")
1911 VLC_ADD_PLUGIN([qtsound])
1913 AM_CONDITIONAL(HAVE_QTKIT, [test "${SYS}" = "darwin" -a "x${enable_macosx_qtkit}" != "xno"])
1917 AC_SUBST(have_avfoundation, ["no"])
1918 AC_ARG_ENABLE(macosx-avfoundation,
1919 [ --enable-macosx-avfoundation Mac OS X avcapture (video) module (default enabled on Mac OS X)])
1920 if test "x${enable_macosx_avfoundation}" != "xno" &&
1921 (test "${SYS}" = "darwin" || test "${enable_macosx_avfoundation}" = "yes")
1923 SAVED_LIBS="${LIBS}"
1924 LIBS="-framework AVFoundation"
1925 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [])],[have_avfoundation=yes],[have_avfoundation=no])
1926 LIBS="${SAVED_LIBS}"
1927 if test "${have_avfoundation}" != "no"
1929 VLC_ADD_PLUGIN([avcapture])
1932 AM_CONDITIONAL(HAVE_AVFOUNDATION, [test "${have_avfoundation}" != "no"])
1935 dnl DCP plugin (using asdcplib)
1937 PKG_WITH_MODULES([ASDCP], [asdcplib], [have_asdcp="yes"])
1938 AM_CONDITIONAL(HAVE_ASDCP, [test "${have_asdcp}" = "yes"])
1944 EXTEND_HELP_STRING([Mux/Demux plugins:])
1947 dnl libdvbpsi check for ts mux/demux
1950 PKG_WITH_MODULES([DVBPSI], [libdvbpsi >= 1.0.0], [have_dvbpsi="yes"])
1951 AM_CONDITIONAL(HAVE_DVBPSI, [test "${have_dvbpsi}" = "yes"])
1955 dnl GME demux plugin
1958 [AS_HELP_STRING([--enable-gme],
1959 [use Game Music Emu (default auto)])])
1960 AS_IF([test "${enable_gme}" != "no"], [
1961 AC_CHECK_HEADER([gme/gme.h], [
1962 VLC_ADD_LIBS([gme], [-lgme])
1963 VLC_ADD_PLUGIN([gme])
1965 AS_IF([test "x${enable_gme}" != "x"], [
1966 AC_MSG_ERROR([GME cannot be found. Please install the development files.])
1976 [AS_HELP_STRING([--enable-sid],[C64 sid demux support (default auto)])])
1977 AS_IF([test "${enable_sid}" != "no"], [
1978 PKG_CHECK_MODULES(SID, [libsidplay2], [
1980 oldCPPFLAGS="$CPPFLAGS"
1981 CPPFLAGS="$CPPFLAGS $SID_CFLAGS"
1982 AC_CHECK_HEADER([sidplay/builders/resid.h], [
1983 VLC_ADD_PLUGIN([sid])
1984 VLC_ADD_CFLAGS([sid], [$SID_CFLAGS])
1985 VLC_ADD_LIBS([sid], [$SID_LIBS] [-lresid-builder])
1987 AS_IF([test -n "${enable_sid}"],
1988 [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
1989 [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
1992 CPPFLAGS="$oldCPPFLAGS"
1995 AS_IF([test "x${enable_sid}" = "xyes"],
1996 [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
1997 [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2004 dnl ogg demux plugin
2006 PKG_ENABLE_MODULES_VLC([OGG], [mux_ogg], [ogg >= 1.0], [Ogg demux support], [auto])
2007 PKG_CHECK_MODULES(LIBVORBIS, [vorbis >= 1.1], [
2008 AC_DEFINE(HAVE_LIBVORBIS, 1, [Define to 1 if you have the libvorbis])
2010 PKG_ENABLE_MODULES_VLC([OGG], [], [ogg >= 1.0], [Ogg demux support], [auto], [${LIBVORBIS_CFLAGS}], [${LIBVORBIS_LIBS}])
2011 if test "${enable_sout}" != "no"; then
2012 dnl Check for libshout
2013 PKG_ENABLE_MODULES_VLC([SHOUT], [access_output_shout], [shout >= 2.1], [libshout output plugin], [auto])
2017 dnl matroska demux plugin
2020 [AS_HELP_STRING([--disable-mkv],
2021 [do not use libmatroska (default auto)])])
2022 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
2024 AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
2025 AC_MSG_CHECKING(for libebml version >= 1.0.0)
2027 [#include <ebml/EbmlVersion.h>
2028 #ifdef LIBEBML_VERSION
2029 #if LIBEBML_VERSION >= 0x010000
2033 [AC_MSG_RESULT([yes])
2034 AC_CHECK_HEADERS(matroska/KaxVersion.h, [
2035 AC_MSG_CHECKING(for libmatroska version >= 1.0.0)
2037 [#include <matroska/KaxVersion.h>
2038 #ifdef LIBMATROSKA_VERSION
2039 #if LIBMATROSKA_VERSION >= 0x010000
2043 [AC_MSG_RESULT([yes])
2044 AC_CHECK_HEADERS(matroska/KaxAttachments.h)
2045 AC_CHECK_LIB(ebml_pic, main, [
2046 VLC_ADD_PLUGIN([mkv])
2047 VLC_ADD_LIBS([mkv],[-lmatroska -lebml_pic])
2049 AC_CHECK_LIB(ebml, main, [
2050 VLC_ADD_PLUGIN([mkv])
2051 VLC_ADD_LIBS([mkv],[-lmatroska -lebml])
2056 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.])
2060 [AC_MSG_RESULT([no])
2061 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.])
2068 dnl modplug demux plugin
2071 [AS_HELP_STRING([--disable-mod],
2072 [do not use libmodplug (default auto)])])
2073 if test "${enable_mod}" != "no" ; then
2074 PKG_CHECK_MODULES(LIBMODPLUG, [libmodplug >= 0.8.4 libmodplug != 0.8.8], [
2075 VLC_ADD_PLUGIN([mod])
2076 VLC_ADD_CXXFLAGS([mod],[$LIBMODPLUG_CFLAGS])
2077 VLC_ADD_CFLAGS([mod],[$LIBMODPLUG_CFLAGS]) #modules/demux/mod.c needs CFLAGS_mod, not CXXFLAGS_mod
2078 VLC_ADD_LIBS([mod],[$LIBMODPLUG_LIBS])
2080 AS_IF([test -n "${enable_mod}"],
2081 [AC_MSG_ERROR([${LIBMODPLUG_PKG_ERRORS}.])],
2082 [AC_MSG_WARN([${LIBMODPLUG_PKG_ERRORS}.])])
2087 dnl mpc demux plugin
2090 [AS_HELP_STRING([--disable-mpc], [do not use libmpcdec (default auto)])])
2091 if test "${enable_mpc}" != "no"
2093 AC_CHECK_HEADERS([mpc/mpcdec.h], [
2094 VLC_ADD_PLUGIN([mpc])
2095 VLC_ADD_LIBS([mpc],[-lmpcdec])],
2096 [AC_CHECK_HEADERS([mpcdec/mpcdec.h], [
2097 VLC_ADD_PLUGIN([mpc])
2098 VLC_ADD_LIBS([mpc],[-lmpcdec])])])
2105 EXTEND_HELP_STRING([Codec plugins:])
2110 AC_ARG_ENABLE(wma-fixed,
2111 [ --enable-wma-fixed libwma-fixed module (default disabled)])
2112 if test "${enable_wma_fixed}" = "yes"
2114 VLC_ADD_PLUGIN([wma_fixed])
2118 dnl shine encoder plugin
2120 PKG_ENABLE_MODULES_VLC([SHINE], [], [shine >= 3.0.0], [MPEG Audio Layer 3 encoder], [auto], [], [], [])
2124 dnl openmax il codec plugin
2126 AC_ARG_ENABLE(omxil,
2127 [ --enable-omxil openmax il codec module (default disabled)])
2128 if test "${enable_omxil}" = "yes"
2130 VLC_ADD_PLUGIN([omxil])
2134 dnl openmax il vout plugin
2136 AC_ARG_ENABLE(omxil-vout,
2137 [ --enable-omxil-vout openmax il video output module (default disabled)])
2138 if test "${enable_omxil_vout}" = "yes"
2140 VLC_ADD_PLUGIN([omxil_vout])
2144 dnl raspberry pi openmax il configuration
2146 AC_ARG_ENABLE(rpi-omxil,
2147 [ --enable-rpi-omxil openmax il configured for raspberry pi (default disabled)])
2148 if test "${enable_rpi_omxil}" = "yes"
2150 VLC_ADD_PLUGIN([omxil omxil_vout])
2151 VLC_ADD_CFLAGS([omxil omxil_vout],[-DRPI_OMX])
2155 dnl CrystalHD codec plugin
2157 AC_ARG_ENABLE(crystalhd,
2158 [ --enable-crystalhd crystalhd codec plugin (default auto)])
2159 if test "${enable_crystalhd}" != "no"; then
2160 AC_CHECK_HEADER(libcrystalhd/libcrystalhd_if.h, [
2161 VLC_ADD_PLUGIN([crystalhd])
2162 VLC_ADD_LIBS([crystalhd], [-lcrystalhd])
2164 if test "${SYS}" = "mingw32" ; then
2165 AC_CHECK_HEADERS(libcrystalhd/bc_dts_defs.h, [
2166 VLC_ADD_PLUGIN([crystalhd])
2167 AC_CHECK_HEADERS(libcrystalhd/bc_drv_if.h, [
2168 VLC_ADD_LIBS([crystalhd], [-lbcmDIL])
2171 AS_IF([test x"${enable_crystalhd}" = "xyes"],
2172 [AC_MSG_ERROR("Could not find CrystalHD development headers")],
2173 [AC_MSG_WARN("Could not find CrystalHD development headers")])
2174 ],[#define __LINUX_USER__
2175 #include <libcrystalhd/bc_dts_types.h>
2179 #include <libcrystalhd/bc_dts_types.h>
2190 AC_ARG_WITH(mad, [ --with-mad=PATH path to libmad], [
2195 AS_IF([test "${with_mad}" != "no"], [
2196 MAD_CFLAGS="-I${with_mad}/include"
2197 MAD_LIBS="-L${with_mad}/lib"
2201 [ --enable-mad libmad module (default enabled)])
2202 AS_IF([test "${enable_mad}" != "no"], [
2204 CPPFLAGS="${CPPFLAGS} ${MAD_CFLAGS}"
2205 LDFLAGS="${LDFLAGS} ${MAD_LIBS}"
2206 AC_CHECK_HEADERS(mad.h, [
2207 AC_CHECK_LIB(mad, mad_bit_init, [
2209 MAD_LIBS="${MAD_LIBS} -lmad"
2213 AS_IF([test -n "$enable_mad" -a "${have_mad}" = "no"], [
2214 AC_MSG_ERROR([Could not find libmad. Install it or pass --disable-mad to disable it.])
2217 AC_SUBST(MAD_CFLAGS)
2219 AM_CONDITIONAL([HAVE_MAD], [test "${have_mad}" = "yes"])
2224 PKG_ENABLE_MODULES_VLC([MPG123], [mpg123], [libmpg123], [libmpg123 decoder support], [auto])
2227 AC_ARG_ENABLE(merge-ffmpeg,
2228 [ --enable-merge-ffmpeg merge FFmpeg-based plugins (default disabled)],, [
2229 enable_merge_ffmpeg="no"
2231 AM_CONDITIONAL([MERGE_FFMPEG], [test "$enable_merge_ffmpeg" != "no"])
2233 AC_MSG_CHECKING([for libavutil variant])
2234 PKG_CHECK_EXISTS([libavutil], [
2235 libavutil_version="$(${PKG_CONFIG} --modversion libavutil)"
2236 libavutil_micro="${libavutil_version##*.}"
2237 AS_IF([test ${libavutil_micro} -le 99], [
2245 AC_MSG_RESULT([${avfork}])
2250 AC_ARG_ENABLE(gst-decode,
2251 [ --enable-gst-decode GStreamer based decoding support (currently supports only video decoding) (default auto)])
2253 have_gst_decode="no"
2254 AS_IF([test "${enable_gst_decode}" != "no"], [
2255 PKG_CHECK_MODULES([GST_APP], [gstreamer-app-1.0], [
2256 PKG_CHECK_MODULES([GST_VIDEO], [gstreamer-video-1.0], [
2257 have_gst_decode="yes"
2259 AC_MSG_WARN([${GST_VIDEO_PKG_ERRORS}. GStreamer decoder module will not be built.])
2262 AC_MSG_WARN([${GST_APP_PKG_ERRORS}. GStreamer modules will not be built.])
2265 AM_CONDITIONAL([HAVE_GST_DECODE], [test "${have_gst_decode}" = "yes"])
2268 dnl avcodec decoder/encoder plugin
2270 AC_ARG_ENABLE(avcodec,
2271 [ --enable-avcodec libavcodec codec (default enabled)])
2272 AS_IF([test "${enable_avcodec}" != "no"], [
2273 PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 55.0.0 libavutil >= 52.0.0], [
2274 dnl PKG_CHECK_EXISTS([libavcodec < 56],, [
2275 dnl AC_MSG_ERROR([libavcodec versions 56 and later are not supported yet.])
2278 CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2279 CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2280 AC_CHECK_HEADERS(libavcodec/avcodec.h)
2281 AC_CHECK_HEADERS(libavutil/avutil.h)
2285 AC_MSG_ERROR([${AVCODEC_PKG_ERRORS}. Pass --disable-avcodec to ignore this error.])
2290 AM_CONDITIONAL([HAVE_AVCODEC], [test "${have_avcodec}" != "no"])
2293 dnl libva needs avcodec
2295 AC_ARG_ENABLE(libva,
2296 [ --enable-libva VAAPI GPU decoding support (libVA) (default auto)])
2298 AS_IF([test "${enable_libva}" = "yes" -a "${have_avcodec}" != "yes" ], [
2299 AC_MSG_ERROR([--enable-libva and --disable-avcodec options are mutually exclusive. Use --enable-avcodec.])
2305 AS_IF([test "${enable_libva}" != "no"], [
2306 PKG_CHECK_EXISTS([libva], [
2309 AS_IF([test -n "${enable_libva}"], [
2310 AC_MSG_ERROR([${LIBVA_PKG_ERRORS}.])
2312 AC_MSG_WARN([${LIBVA_PKG_ERRORS}.])
2315 PKG_CHECK_MODULES([LIBVA_DRM], [libva-drm], [
2316 have_vaapi_drm="yes"
2318 AC_MSG_WARN([${LIBVA_DRM_PKG_ERRORS}.])
2320 PKG_CHECK_MODULES(LIBVA_X11, [libva-x11], [
2321 have_vaapi_x11="yes"
2323 AC_MSG_WARN([${LIBVA_X11_PKG_ERRORS}.])
2326 AM_CONDITIONAL([HAVE_VAAPI_DRM], [test "${have_vaapi_drm}" = "yes"])
2327 AM_CONDITIONAL([HAVE_VAAPI_X11], [test "${have_vaapi_x11}" = "yes"])
2329 have_avcodec_vaapi="no"
2330 AS_IF([test "${have_vaapi}" = "yes" -a "${have_avcodec}" = "yes"], [
2332 CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2333 CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2334 AC_CHECK_HEADERS([libavcodec/vaapi.h], [
2335 AC_MSG_NOTICE([VAAPI acceleration activated])
2336 have_avcodec_vaapi="yes"
2338 AS_IF([test -n "${enable_libva}"], [
2339 AC_MSG_ERROR([libva is present but libavcodec/vaapi.h is missing])
2341 AC_MSG_WARN([libva is present but libavcodec/vaapi.h is missing ])
2346 AM_CONDITIONAL([HAVE_AVCODEC_VAAPI], [test "${have_avcodec_vaapi}" = "yes"])
2349 dnl dxva2 needs avcodec
2351 AC_ARG_ENABLE(dxva2,
2352 [ --enable-dxva2 DxVA2 GPU decoding support (default auto)])
2354 have_avcodec_dxva2="no"
2355 AS_IF([test "${enable_dxva2}" != "no"], [
2356 if test "${SYS}" = "mingw32"; then
2357 AS_IF([test "x${have_avcodec}" = "xyes"], [
2358 AC_CHECK_HEADERS(dxva2api.h,
2360 AC_CHECK_HEADERS(libavcodec/dxva2.h, [
2361 AC_MSG_NOTICE([DxVA2 acceleration activated])
2362 have_avcodec_dxva2="yes"
2364 AS_IF([test "${enable_dxva2}" = "yes"],
2365 [AC_MSG_ERROR([dxva2 is present but libavcodec/dxva2.h is missing])],
2366 [AC_MSG_WARN([dxva2 is present but libavcodec/dxva2.h is missing ])])
2367 ], [#undef _WIN32_WINNT
2368 /* DXVA2 is only available in Vista and above */
2369 #define _WIN32_WINNT 0x600])
2371 AS_IF([test "${enable_dxva2}" = "yes"],
2372 [AC_MSG_ERROR([Could not find required dxva2api.h])],
2373 [AC_MSG_WARN([dxva2api.h not found])])
2376 AS_IF([test "x${enable_dxva2}" != "x"], [
2377 AC_MSG_ERROR([--enable-dxva2 and --disable-avcodec options are mutually exclusive.])
2382 AM_CONDITIONAL([HAVE_AVCODEC_DXVA2], [test "${have_avcodec_dxva2}" = "yes"])
2385 dnl d3d11va needs avcodec
2387 AC_ARG_ENABLE(d3d11va,
2388 [ --enable-d3d11va D3D11 GPU decoding support (default auto)])
2390 have_avcodec_d3d11va="no"
2391 AS_IF([test "${enable_d3d11va}" != "no"], [
2392 if test "${SYS}" = "mingw32"; then
2393 AS_IF([test "x${have_avcodec}" = "xyes"], [
2394 AC_CHECK_TYPES([ID3D11VideoDecoder],
2396 AC_CHECK_HEADERS(dxva2api.h,
2398 AC_CHECK_HEADERS(libavcodec/d3d11va.h, [
2399 AC_MSG_NOTICE([D3D11 acceleration activated])
2400 AC_DEFINE(HAVE_AVCODEC_D3D11VA, 1, [Define if the d3d11va module is built])
2401 have_avcodec_d3d11va="yes"
2403 AS_IF([test "${enable_d3d11va}" = "yes"],
2404 [AC_MSG_ERROR([d3d11va is present but libavcodec/d3d11va.h is missing])],
2405 [AC_MSG_WARN([d3d11va is present but libavcodec/d3d11va.h is missing ])])
2406 ], [#undef _WIN32_WINNT
2407 /* D3D11 is only available in Vista and above */
2408 #define _WIN32_WINNT 0x600])
2410 AS_IF([test "${enable_d3d11va}" = "yes"],
2411 [AC_MSG_ERROR([Could not find required dxva2api.h])],
2412 [AC_MSG_WARN([dxva2api.h not found])])
2415 AS_IF([test "${enable_d3d11va}" = "yes"],
2416 [AC_MSG_ERROR([Could not find required ID3D11VideoDecoder in d3d11.h])],
2417 [AC_MSG_WARN([ID3D11VideoDecoder not found])])
2418 ], [#include <d3d11.h>])
2420 AS_IF([test "x${enable_d3d11va}" != "x"], [
2421 AC_MSG_ERROR([--enable-d3d11va and --disable-avcodec options are mutually exclusive.])
2426 AM_CONDITIONAL([HAVE_AVCODEC_D3D11VA], [test "${have_avcodec_d3d11va}" = "yes"])
2431 AC_CHECK_HEADERS(dxgidebug.h)
2434 dnl vda needs avcodec
2437 [ --enable-vda VDA support (default auto)])
2439 have_avcodec_vda="no"
2440 AS_IF([test "${enable_vda}" != "no"], [
2441 if test "${SYS}" = "darwin"; then
2442 AS_IF([test "x${have_avcodec}" = "xyes"], [
2443 AC_CHECK_HEADERS(VideoDecodeAcceleration/VDADecoder.h,
2445 AC_CHECK_HEADERS(libavcodec/vda.h, [
2446 have_avcodec_vda="yes"
2448 AS_IF([test "${enable_vda}" = "yes"],
2449 [AC_MSG_ERROR([vda is present but libavcodec/vda.h is missing])],
2450 [AC_MSG_WARN([vda is present but libavcodec/vda.h is missing ])])
2453 AS_IF([test "${enable_vda}" = "yes"],
2454 [AC_MSG_ERROR([Could not find required VideoDecodeAcceleration/VDADecoder.h])],
2455 [AC_MSG_WARN([VideoDecodeAcceleration/VDADecoder.h not found])])
2458 AS_IF([test "x${enable_vda}" != "x"], [
2459 AC_MSG_ERROR([--enable-vda and --disable-avcodec options are mutually exclusive.])
2462 AS_IF([test "${have_avcodec_vda}" = "yes"], [
2464 LIBS="$LIBS $AVCODEC_LIBS"
2465 AC_CHECK_FUNCS([av_vda_alloc_context])
2470 AM_CONDITIONAL([HAVE_AVCODEC_VDA], [test "${have_avcodec_vda}" = "yes"])
2473 dnl avformat demuxer/muxer plugin
2476 AC_ARG_ENABLE(avformat,
2477 [ --enable-avformat libavformat containers (default enabled)],, [
2478 enable_avformat="${have_avcodec}"
2481 AS_IF([test "${enable_avformat}" != "no"], [
2482 PKG_CHECK_MODULES(AVFORMAT,[libavformat >= 53.21.0 libavcodec libavutil], [
2485 CPPFLAGS="${CPPFLAGS} ${AVFORMAT_CFLAGS}"
2486 CFLAGS="${CFLAGS} ${AVFORMAT_CFLAGS}"
2487 AC_CHECK_HEADERS(libavformat/avformat.h libavformat/avio.h)
2488 AC_CHECK_HEADERS(libavcodec/avcodec.h)
2489 AC_CHECK_HEADERS(libavutil/avutil.h)
2490 AS_IF([test "$enable_merge_ffmpeg" = "no"], [
2495 AC_MSG_ERROR([${AVFORMAT_PKG_ERRORS}. Pass --disable-avformat to ignore this error.])
2498 AM_CONDITIONAL([HAVE_AVFORMAT], [test "${enable_avformat}" != "no"])
2501 dnl swscale image scaling and conversion plugin
2504 AC_ARG_ENABLE(swscale,
2505 AS_HELP_STRING([--enable-swscale],[libswscale image scaling and conversion
2506 (default enabled)]))
2507 if test "${enable_swscale}" != "no"
2509 PKG_CHECK_MODULES(SWSCALE,[libswscale],
2512 CPPFLAGS="${CPPFLAGS} ${SWSCALE_CFLAGS}"
2513 CFLAGS="${CFLAGS} ${SWSCALE_CFLAGS}"
2514 AC_CHECK_HEADERS(libswscale/swscale.h)
2515 AC_CHECK_HEADERS(libavutil/avutil.h)
2516 VLC_ADD_PLUGIN([swscale])
2517 VLC_ADD_LIBS([swscale],[$SWSCALE_LIBS])
2518 VLC_ADD_CFLAGS([swscale],[$SWSCALE_CFLAGS])
2519 AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2520 VLC_ADD_LIBS([swscale],[${ac_cv_ld_bsymbolic}])
2524 AC_MSG_ERROR([${SWSCALE_PKG_ERRORS}. Pass --disable-swscale to ignore this error. Proper software scaling and some video chroma conversion will be missing.])
2532 AC_ARG_ENABLE(postproc,
2533 [ --enable-postproc libpostproc image post-processing (default auto)])
2534 if test "${enable_postproc}" != "no"
2536 PKG_CHECK_MODULES(POSTPROC,[libpostproc libavutil],
2539 CPPFLAGS="${CPPFLAGS} ${POSTPROC_CFLAGS}"
2540 CFLAGS="${CFLAGS} ${POSTPROC_CFLAGS}"
2541 AC_CHECK_HEADERS(postproc/postprocess.h)
2542 VLC_ADD_PLUGIN([postproc])
2545 AC_MSG_WARN([${POSTPROC_PKG_ERRORS}.])
2550 dnl faad decoder plugin
2553 [ --enable-faad faad codec (default auto)])
2555 AS_IF([test "${enable_faad}" != "no"], [
2556 AC_CHECK_HEADERS([neaacdec.h], [
2557 AC_CHECK_LIB(faad, NeAACDecOpen, [have_faad="yes"],, [$LIBM])
2559 AS_IF([test "${have_faad}" = "yes"], [
2560 VLC_ADD_PLUGIN([faad])
2561 VLC_ADD_LIBS([faad],[-lfaad])
2563 AS_IF([test "${enable_faad}" = "yes"], [
2564 AC_MSG_ERROR([cannot find FAAD library])
2566 AC_MSG_WARN([cannot find FAAD library])
2573 dnl libvpx decoder plugin
2576 AS_HELP_STRING([--enable-vpx],[libvpx VP8/VP9 decoder (default auto)]))
2577 AS_IF([test "${enable_vpx}" != "no"],[
2578 PKG_CHECK_MODULES([VPX], [vpx] , [
2579 VLC_ADD_PLUGIN([vpx])
2580 VLC_ADD_CPPFLAGS([vpx], [${VPX_CFLAGS}])
2581 VLC_ADD_LIBS([vpx], [${VPX_LIBS}])
2582 AC_CHECK_LIB([vpx],[vpx_codec_vp8_dx], [
2583 VLC_ADD_CPPFLAGS([vpx], [-DENABLE_VP8_DECODER])
2584 ], [], [${VPX_LIBS}])
2585 AC_CHECK_LIB([vpx],[vpx_codec_vp9_dx], [
2586 VLC_ADD_CPPFLAGS([vpx], [-DENABLE_VP9_DECODER])
2587 ], [], [${VPX_LIBS}])
2589 AS_IF([test "${enable_vpx}" = "yes"],[
2590 AC_MSG_ERROR([libvpx was not found])
2595 dnl twolame encoder plugin
2597 PKG_ENABLE_MODULES_VLC([TWOLAME], [], [twolame], [MPEG Audio Layer 2 encoder], [auto], [], [], [ -DLIBTWOLAME_STATIC])
2600 dnl fdk-aac encoder plugin
2602 PKG_ENABLE_MODULES_VLC([FDKAAC], [], [fdk-aac], [FDK-AAC encoder], [disabled])
2605 dnl QuickTime plugin
2607 AC_ARG_ENABLE(quicktime,
2608 [ --enable-quicktime QuickTime module (deprecated)])
2609 if test "${enable_quicktime}" = "yes"; then
2610 if test "${SYS}" = "mingw32"; then
2611 VLC_ADD_PLUGIN([quicktime])
2613 AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2614 [ VLC_ADD_PLUGIN([quicktime])
2615 VLC_ADD_LIBS([quicktime],[-Wl,-framework,QuickTime,-framework,Carbon])
2616 ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2621 dnl A52/AC3 decoder plugin
2624 [ --enable-a52 A/52 support with liba52 (default enabled)])
2625 if test "${enable_a52}" != "no"
2628 [ --with-a52=PATH a52 headers and libraries])
2629 if test -z "${with_a52}"
2634 LDFLAGS_test="-L${with_a52}/lib"
2635 CPPFLAGS_test="-I${with_a52}/include"
2638 CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2639 LDFLAGS="${LDFLAGS} ${LDFLAGS_test} ${LIBS_a52tofloat32}"
2640 AC_CHECK_HEADERS(a52dec/a52.h, [
2641 AC_CHECK_LIB(a52, a52_free, [
2642 VLC_ADD_PLUGIN([a52tofloat32])
2643 VLC_ADD_LIBS([a52tofloat32],[${LDFLAGS_test} -la52])
2644 VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2646 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.])
2649 AC_MSG_ERROR([Could not find liba52 on your system: you may get it from http://liba52.sf.net/. Alternatively you can use --disable-a52 to disable the a52 plugin.])
2655 dnl DTS Coherent Acoustics decoder plugin
2657 PKG_ENABLE_MODULES_VLC([DCA], [dtstofloat32], [libdca >= 0.0.5], [DTS Coherent Acoustics support with libdca], [auto])
2662 PKG_ENABLE_MODULES_VLC([FLAC], [], [flac], [libflac decoder/encoder support], [auto])
2667 PKG_ENABLE_MODULES_VLC([LIBMPEG2], [], [libmpeg2 > 0.3.2], [libmpeg2 decoder support], [auto])
2672 PKG_ENABLE_MODULES_VLC([VORBIS], [], [ogg vorbis >= 1.1 vorbisenc >= 1.1], [Vorbis decoder and encoder], [auto])
2677 AC_ARG_ENABLE(tremor,
2678 [ --enable-tremor Tremor decoder support (default disabled)])
2679 if test "${enable_tremor}" = "yes"
2681 AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2682 VLC_ADD_PLUGIN([tremor])
2689 PKG_ENABLE_MODULES_VLC([SPEEX], [], [ogg speex >= 1.0.5], [Speex support], [auto])
2691 AS_IF([test "${enable_speex}" != "no"], [
2692 PKG_CHECK_MODULES([SPEEXDSP], [speexdsp], [
2695 AC_MSG_WARN([${SPEEXDSP_PKG_ERRORS}.])
2698 AM_CONDITIONAL([HAVE_SPEEXDSP], [test "$have_speexdsp" = "yes"])
2703 PKG_ENABLE_MODULES_VLC([OPUS], [], [ogg opus >= 1.0.3], [Opus support], [auto])
2706 dnl theora decoder plugin
2708 PKG_ENABLE_MODULES_VLC([THEORA], [], [ogg theoradec >= 1.0 theoraenc], [experimental theora codec], [auto])
2711 dnl Daala decoder plugin
2713 PKG_ENABLE_MODULES_VLC([DAALA], [], [ogg daaladec daalaenc], [experimental daala codec], [disabled])
2716 dnl schroedinger decoder plugin (for dirac format video)
2718 PKG_ENABLE_MODULES_VLC([SCHROEDINGER], [], [schroedinger-1.0 >= 1.0.10], [dirac decoder and encoder using schroedinger], [auto])
2721 dnl PNG decoder module
2724 [ --enable-png PNG support (default enabled)])
2725 AS_IF([test "${enable_png}" != "no"], [
2726 AC_CHECK_HEADERS(png.h, [
2728 LDFLAGS="${LDFLAGS} -lz $LIBM"
2729 AC_CHECK_LIB(png, png_set_rows, [
2730 VLC_ADD_PLUGIN([png])
2737 dnl JPEG decoder module
2740 [ --enable-jpeg JPEG support (default enabled)])
2741 AS_IF([test "${enable_jpeg}" != "no"], [
2742 AC_CHECK_HEADERS(jpeglib.h, [
2743 VLC_ADD_PLUGIN([jpeg])
2748 dnl BPG decoder module
2751 [ --enable-bpg BPG support (default disabled)])
2752 AS_IF([test "${enable_bpg}" != "no"], [
2753 AC_CHECK_HEADERS(libbpg.h, [
2754 VLC_ADD_PLUGIN([bpg])
2759 dnl H262 encoder plugin (lib262)
2762 [ --enable-x262 H262 encoding support with static libx262 (default disabled)])
2763 if test "${enable_x262}" != "no"; then
2764 PKG_CHECK_MODULES(X262, x262, [
2765 VLC_ADD_PLUGIN([x262])
2766 VLC_ADD_LDFLAGS([x262],[${X262_LIBS}])
2767 AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2768 VLC_ADD_LIBS([x262],[${av_cv_ld_bsymbolic}])
2770 VLC_ADD_CFLAGS([x262],[${X262_CFLAGS}])
2771 if echo ${X262_LIBS} |grep -q 'pthreadGC2'; then
2772 VLC_ADD_CFLAGS([x262], [-DPTW32_STATIC_LIB])
2775 if test "${enable_x262}" = "yes"; then
2776 AC_MSG_ERROR([x262 module doesn't work without staticly compiled libx262.a])
2782 PKG_ENABLE_MODULES_VLC([X265],, [x265], [HEVC/H.265 encoder], [auto])
2785 dnl H264 encoder plugin (10-bit lib264)
2787 AC_ARG_ENABLE(x26410b,
2788 [ --enable-x26410b H264 10-bit encoding support with static libx264 (default disabled)])
2789 if test "${enable_x26410b}" != "no"; then
2790 PKG_CHECK_MODULES(X26410B, x26410b, [
2791 VLC_ADD_PLUGIN([x26410b])
2792 VLC_ADD_LIBS([x26410b],[${X26410B_LIBS}])
2793 AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2794 VLC_ADD_LDFLAGS([x26410b],[${ac_cv_ld_bsymbolic}])
2796 VLC_ADD_CFLAGS([x26410b],[${X26410B_CFLAGS}])
2797 if echo ${X26410B_LIBS} |grep -q 'pthreadGC2'; then
2798 VLC_ADD_CFLAGS([x26410b], [-DPTW32_STATIC_LIB])
2801 if test "${enable_x26410b}" = "yes"; then
2802 AC_MSG_ERROR([x26410b module doesn't work without staticly compiled libx264.a])
2809 dnl H264 encoder plugin (using libx264)
2812 [ --enable-x264 H264 encoding support with libx264 (default enabled)])
2813 if test "${enable_x264}" != "no"; then
2814 PKG_CHECK_MODULES(X264,x264 >= 0.86, [
2815 VLC_ADD_PLUGIN([x264])
2816 VLC_ADD_LIBS([x264],[${X264_LIBS}])
2818 AS_IF([test -n "${ac_cv_ld_bsymbolic}"], [
2819 VLC_ADD_LDFLAGS([x264],[${ac_cv_ld_bsymbolic}])
2822 VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
2823 if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
2824 VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
2827 if test "${enable_x264}" = "yes"; then
2828 AC_MSG_ERROR([${X264_PKG_ERRORS}: you may get it from http://www.videolan.org/x264.html])
2834 dnl Intel QuickSync (aka MediaSDK) H264/H262 encoder
2836 PKG_ENABLE_MODULES_VLC([MFX], [qsv], [libmfx], [Intel QuickSync MPEG4-Part10/MPEG2 (aka H.264/H.262) encoder], [auto])
2839 dnl libfluidsynth (MIDI synthetizer) plugin
2841 PKG_ENABLE_MODULES_VLC([FLUIDSYNTH], [], [fluidsynth >= 1.1.2], [MIDI synthetiser with libfluidsynth], [auto])
2844 dnl Teletext Modules
2845 dnl vbi decoder plugin (using libzbvi)
2850 AS_HELP_STRING([--enable-zvbi],[VBI (inc. Teletext) decoding support with
2851 libzvbi (default enabled)]))
2853 AS_HELP_STRING([--enable-telx],[Teletext decoding module (conflicting with
2854 zvbi) (default enabled if zvbi is absent)]))
2856 AS_IF( [test "${enable_zvbi}" != "no"],[
2857 PKG_CHECK_MODULES(ZVBI, [zvbi-0.2 >= 0.2.28],
2859 VLC_ADD_PLUGIN([zvbi])
2860 AC_DEFINE(ZVBI_COMPILED, 1, [Define if the zvbi module is built])
2861 AS_IF( [test "${enable_telx}" = "yes"],[
2862 AC_MSG_WARN([The zvbi and telx modules are incompatible. Using zvbi.])
2865 AC_MSG_WARN([${ZVBI_PKG_ERRORS}. Enabling the telx module instead.])
2868 AS_IF( [test "${enable_telx}" != "no" ],[
2869 VLC_ADD_PLUGIN([telx])
2873 dnl libass subtitle rendering module
2875 AC_ARG_ENABLE(libass,
2876 [ --enable-libass Subtitle support using libass (default enabled)])
2877 AS_IF( [test "${enable_libass}" != "no"], [
2878 PKG_CHECK_MODULES(LIBASS, [libass >= 0.9.8],
2880 VLC_ADD_PLUGIN([libass])
2882 AC_CHECK_HEADERS(fontconfig/fontconfig.h,
2883 [VLC_ADD_CPPFLAGS([libass],[-DHAVE_FONTCONFIG])
2884 VLC_ADD_LIBS([libass],[-lfontconfig])
2887 AC_MSG_WARN([${LIBASS_PKG_ERRORS}.])
2892 dnl ARIB subtitles rendering module
2894 AC_ARG_ENABLE(aribsub,
2895 [ --enable-aribsub ARIB Subtitles support (default enabled)])
2896 AS_IF( [test "${enable_aribsub}" != "no" ],[
2897 PKG_CHECK_MODULES(ARIBB24, [aribb24 >= 1.0.1], [
2899 VLC_ADD_PLUGIN([aribsub])
2900 VLC_ADD_LIBS([aribsub],[-laribb24])
2901 AC_DEFINE(HAVE_ARIBB24, 1, [Define if libaribb24 is available.])
2903 AC_MSG_WARN(Library [aribb24] needed for [aribsub] was not found)
2907 AM_CONDITIONAL([HAVE_ARIBB24], [test x"${have_aribb24}" = x"yes"])
2912 PKG_ENABLE_MODULES_VLC([ARIBB25], [aribcam], [aribb25 >= 0.2.6], [ARIB STD-B25], [auto])
2915 dnl kate decoder plugin
2917 PKG_ENABLE_MODULES_VLC([KATE], [], [kate >= 0.3.0], [kate codec], [auto])
2920 dnl tiger rendering for kate decoder plugin
2922 AC_ARG_ENABLE(tiger,
2923 [ --enable-tiger Tiger rendering library for Kate streams (default auto)])
2924 AS_IF([test "${enable_tiger}" != "no"], [
2925 PKG_CHECK_MODULES(TIGER,[tiger >= 0.3.1], [
2926 AC_DEFINE(HAVE_TIGER, 1, [Define if libtiger is available.])],[
2927 AS_IF([test -n "${enable_tiger}"], [
2928 AC_MSG_ERROR([${TIGER_PKG_ERRORS}.])
2938 EXTEND_HELP_STRING([Video plugins:])
2943 PKG_CHECK_MODULES([EGL], [egl], [
2948 AM_CONDITIONAL([HAVE_EGL], [test "${have_egl}" = "yes"])
2951 PKG_CHECK_MODULES([GL], [gl], [
2954 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2956 # include <GL/glew.h>
2960 [int t0 = GL_TEXTURE0;]])
2964 AS_IF([test "${SYS}" != "mingw32"], [
2967 GL_LIBS="-lopengl32"
2971 AM_CONDITIONAL([HAVE_GL], [test "${have_gl}" = "yes"])
2973 dnl OpenGL ES 2: depends on EGL 1.1
2974 PKG_ENABLE_MODULES_VLC([GLES2], [], [glesv2], [OpenGL ES v2 support], [disabled])
2975 dnl OpenGL ES 1: depends on EGL 1.0
2976 PKG_ENABLE_MODULES_VLC([GLES1], [], [glesv1_cm], [OpenGL ES v1 support], [disabled])
2983 AC_CHECK_HEADERS(X11/Xlib.h)
2986 dnl X C Bindings modules
2989 [ --enable-xcb X11 support with XCB (default enabled)],, [
2990 AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "darwin"], [
2996 AC_ARG_ENABLE(xvideo,
2997 [ --enable-xvideo XVideo support (default enabled)],, [
2998 enable_xvideo="$enable_xcb"
3002 have_xcb_keysyms="no"
3004 have_xcb_xvideo="no"
3005 AS_IF([test "${enable_xcb}" != "no"], [
3007 PKG_CHECK_MODULES(XCB, [xcb >= 1.6])
3009 PKG_CHECK_MODULES(XCB_SHM, [xcb-shm])
3010 PKG_CHECK_MODULES(XCB_COMPOSITE, [xcb-composite])
3011 PKG_CHECK_MODULES(XPROTO, [xproto])
3013 AS_IF([test "${enable_xvideo}" != "no"], [
3014 PKG_CHECK_MODULES(XCB_XV, [xcb-xv >= 1.1.90.1], [have_xcb_xvideo="yes"])
3017 PKG_CHECK_MODULES(XCB_RANDR, [xcb-randr >= 1.3], [have_xcb_randr="yes"])
3020 PKG_CHECK_MODULES(XCB_KEYSYMS, [xcb-keysyms >= 0.3.4], [have_xcb_keysyms="yes"], [
3021 AC_MSG_WARN([${XCB_KEYSYMS_PKG_ERRORS}. Hotkeys will not work.])
3024 AM_CONDITIONAL([HAVE_XCB], [test "${have_xcb}" = "yes"])
3025 AM_CONDITIONAL([HAVE_XCB_KEYSYMS], [test "${have_xcb_keysyms}" = "yes"])
3026 AM_CONDITIONAL([HAVE_XCB_RANDR], [test "${have_xcb_randr}" = "yes"])
3027 AM_CONDITIONAL([HAVE_XCB_XVIDEO], [test "${have_xcb_xvideo}" = "yes"])
3033 AC_ARG_ENABLE(vdpau,
3034 [AS_HELP_STRING([--enable-vdpau], [VDPAU hardware support (default auto)])])
3036 AS_IF([test "${enable_vdpau}" != "no"], [
3037 PKG_CHECK_MODULES([VDPAU], [vdpau >= 0.6], [
3039 AS_IF([test "${no_x}" = "yes"], [
3040 AC_MSG_ERROR([VDPAU requires Xlib (X11).])
3043 AS_IF([test -n "${enable_vdpau}"], [
3044 AC_MSG_ERROR([${VDPAU_PKG_ERRORS}.])
3048 AM_CONDITIONAL([HAVE_VDPAU], [test "${have_vdpau}" = "yes"])
3050 have_avcodec_vdpau="no"
3051 AS_IF([test "${have_vdpau}" = "yes" -a "${have_avcodec}" = "yes"], [
3053 libav) av_vdpau_ver="55.26.0" ;;
3054 ffmpeg) av_vdpau_ver="55.42.100" ;;
3056 PKG_CHECK_EXISTS([libavutil >= 52.4.0 libavcodec >= ${av_vdpau_ver}], [
3057 have_avcodec_vdpau="yes"
3058 AC_MSG_NOTICE([VDPAU decoding acceleration activated])
3060 AS_IF([test -n "${enable_vdpau}"], [
3061 AC_MSG_ERROR([libav libavutil >= 52.4.0 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
3063 AC_MSG_WARN([libav libavutil >= 52.4.0 and libavcodec >= 55.26.0 are required for VDPAU decoding.])
3067 AM_CONDITIONAL([HAVE_AVCODEC_VDPAU], [test "${have_avcodec_vdpau}" = "yes"])
3073 AC_ARG_ENABLE(wayland,
3074 [AS_HELP_STRING([--enable-wayland], [Wayland support (default auto)])])
3076 AC_ARG_VAR([WAYLAND_SCANNER], [Wayland scanner utility])
3078 AS_IF([test "${enable_wayland}" != "no"], [
3079 AC_MSG_CHECKING([for the Wayland scanner])
3080 AS_IF([test -z "$WAYLAND_SCANNER"], [
3081 PKG_CHECK_EXISTS([wayland-scanner], [
3082 WAYLAND_SCANNER="$(${PKG_CONFIG} wayland-scanner --variable wayland_scanner)"
3084 WAYLAND_SCANNER="wayland-scanner"
3087 AC_MSG_RESULT([$WAYLAND_SCANNER])
3089 PKG_CHECK_MODULES([WAYLAND_CLIENT], [wayland-client >= 1.5.91], [
3092 AS_IF([test -n "${enable_wayland}"], [
3093 AC_MSG_ERROR([${WAYLAND_CLIENT_PKG_ERRORS}.])
3097 AS_IF([test "${have_egl}" = "yes"], [
3098 PKG_CHECK_MODULES([WAYLAND_EGL], [wayland-egl], [
3099 have_wayland_egl="yes"
3101 AS_IF([test -n "${enable_wayland}"], [
3102 AC_MSG_ERROR([${WAYLAND_EGL_PKG_ERRORS}.])
3107 AM_CONDITIONAL([HAVE_WAYLAND], [test "${have_wayland}" = "yes"])
3108 AM_CONDITIONAL([HAVE_WAYLAND_EGL], [test "${have_wayland_egl}" = "yes"])
3115 [ --enable-sdl SDL support (default enabled)])
3116 AC_ARG_ENABLE(sdl-image,
3117 [ --enable-sdl-image SDL image support (default enabled)])
3118 if test "${enable_sdl}" != "no"
3120 PKG_CHECK_MODULES(SDL, [sdl >= 1.2.10], [
3121 # SDL on Darwin is heavily patched and can only run SDL_image
3122 if test "${SYS}" != "darwin"; then
3123 VLC_ADD_PLUGIN([vout_sdl])
3127 AS_IF([ test "${enable_sdl_image}" != "no"],[
3128 PKG_CHECK_MODULES(SDL_IMAGE, [SDL_image >= 1.2.10], [
3129 VLC_ADD_PLUGIN([sdl_image])],
3130 [ AC_MSG_WARN([${SDL_IMAGE_PKG_ERRORS}. You should install it alongside your SDL package.])
3134 AC_MSG_WARN([${SDL_PKG_ERRORS}.])
3141 AC_ARG_ENABLE(freetype,
3142 [ --enable-freetype freetype support (default auto)])
3143 AC_ARG_ENABLE(fribidi,
3144 [ --enable-fribidi fribidi support (default auto)])
3145 AC_ARG_ENABLE(harfbuzz,
3146 [ --enable-harfbuzz harfbuzz support (default auto)])
3147 AC_ARG_ENABLE(fontconfig,
3148 [ --enable-fontconfig fontconfig support (default auto)])
3150 AC_ARG_WITH([default-font],
3151 AS_HELP_STRING([--with-default-font=PATH],
3152 [Path to the default font]),
3153 [AC_DEFINE_UNQUOTED([DEFAULT_FONT_FILE],
3154 "$withval", [Default font])])
3155 AC_ARG_WITH([default-monospace-font],
3156 AS_HELP_STRING([--with-default-monospace-font=PATH],
3157 [Path to the default font]),
3158 [AC_DEFINE_UNQUOTED([DEFAULT_MONOSPACE_FONT_FILE],
3159 "$withval", [Default monospace font])])
3161 AC_ARG_WITH([default-font-family],
3162 AS_HELP_STRING([--with-default-font-family=NAME],
3163 [Path to the default font family]),
3164 [AC_DEFINE_UNQUOTED([DEFAULT_FAMILY],
3165 "$withval", [Default font family])])
3166 AC_ARG_WITH([default-monospace-font-family],
3167 AS_HELP_STRING([--with-default-monospace-font-family=NAME],
3168 [Path to the default font family]),
3169 [AC_DEFINE_UNQUOTED([DEFAULT_MONOSPACE_FAMILY],
3170 "$withval", [Default monospace font family])])
3173 have_fontconfig="no"
3177 if test "${enable_freetype}" != "no"; then
3178 PKG_CHECK_MODULES(FREETYPE, freetype2, [
3180 VLC_ADD_CPPFLAGS([skins2],[${FREETYPE_CFLAGS}])
3181 VLC_ADD_LIBS([skins2],[${FREETYPE_LIBS}])
3183 dnl fontconfig support
3184 if test "${SYS}" != "mingw32"; then
3185 if test "${enable_fontconfig}" != "no"; then
3186 AC_CHECK_HEADERS(fontconfig/fontconfig.h, [
3187 have_fontconfig="yes"
3188 ],[AC_MSG_WARN([library fontconfig not found. Styles will be disabled in freetype])])
3193 if test "${enable_fribidi}" != "no"; then
3194 PKG_CHECK_MODULES(FRIBIDI, fribidi, [
3196 VLC_ADD_CPPFLAGS([skins2], [${FRIBIDI_CFLAGS} -DHAVE_FRIBIDI])
3197 VLC_ADD_LIBS([skins2], [${FRIBIDI_LIBS}])
3198 ],[AC_MSG_WARN([${FRIBIDI_PKG_ERRORS}. Bidirectional text and complex scripts (Arabic, Farsi, Thai...) will be disabled in FreeType.])])
3201 dnl harfbuzz support
3202 if test "${have_fribidi}" != "no"; then
3203 if test "${enable_harfbuzz}" != "no"; then
3204 PKG_CHECK_MODULES(HARFBUZZ, harfbuzz, [
3206 VLC_ADD_CPPFLAGS([skins2], [${HARFBUZZ_CFLAGS} -DHAVE_HARFBUZZ])
3207 VLC_ADD_LIBS([skins2], [${HARFBUZZ_LIBS}])
3208 ],[AC_MSG_WARN([${HARFBUZZ_PKG_ERRORS}. Support for complex scripts (Arabic, Farsi, Thai...) will be disabled in FreeType.])])
3212 AS_IF([test -n "${enable_freetype}"],[
3213 AC_MSG_ERROR([${FREETYPE_PKG_ERRORS}. Install FreeType2 development or configure with --disable-freetype.])
3218 AM_CONDITIONAL([HAVE_FREETYPE], [test "${have_freetype}" = "yes"])
3219 AM_CONDITIONAL([HAVE_FONTCONFIG], [test "${have_fontconfig}" = "yes"])
3220 AM_CONDITIONAL([HAVE_FRIBIDI], [test "${have_fribidi}" = "yes"])
3221 AM_CONDITIONAL([HAVE_HARFBUZZ], [test "${have_harfbuzz}" = "yes"])
3225 dnl QuartzText vout module (iOS/Mac OS)
3227 AC_ARG_ENABLE(macosx-quartztext,
3228 [ --enable-macosx-quartztext Mac OS X quartz text module (default enabled on Mac OS X)])
3229 if test "x${enable_macosx_quartztext}" != "xno" &&
3230 (test "${SYS}" = "darwin" || test "${enable_macosx_quartztext}" = "yes")
3232 VLC_ADD_PLUGIN([quartztext])
3236 dnl SVG module (text rendering and image decoding)
3238 PKG_ENABLE_MODULES_VLC([SVG], [], [librsvg-2.0 >= 2.9.0], [SVG rendering library],[auto])
3239 PKG_ENABLE_MODULES_VLC([SVGDEC], [], [librsvg-2.0 >= 2.9.0 cairo >= 1.13.1], [SVG image decoder library],[auto])
3242 dnl Windows DirectX module
3245 AC_ARG_ENABLE(directx,
3246 [AS_HELP_STRING([--enable-directx],
3247 [Microsoft DirectX support (default enabled on Windows)])],, [
3248 AS_IF([test "${SYS}" = "mingw32"], [
3249 enable_directx="yes"
3255 AS_IF([test "${enable_directx}" != "no"], [
3257 AC_CHECK_HEADERS(ddraw.h, [
3260 AC_MSG_ERROR([Cannot find DirectX headers!])
3264 AC_CHECK_HEADERS(GL/wglew.h, [
3265 VLC_ADD_PLUGIN([glwin32])
3267 #include <windows.h>
3272 AC_CHECK_HEADERS(d3d11.h, [
3273 VLC_ADD_PLUGIN([direct3d11])
3277 AC_CHECK_HEADERS(d3d9.h, [
3278 VLC_ADD_PLUGIN([direct3d9])
3282 AC_CHECK_HEADERS(d2d1.h, [
3283 VLC_ADD_PLUGIN([direct2d])
3286 AM_CONDITIONAL([HAVE_DIRECTX], [test "$have_directx" = "yes"])
3289 dnl Linux framebuffer module
3291 AC_CHECK_HEADER([linux/fb.h], [
3292 VLC_ADD_PLUGIN([fb])
3298 dnl try to find using: 1 - given location; 2 - directfb-config; 3 - pkg-config
3299 dnl TODO: support for static linking
3301 AC_ARG_ENABLE(directfb,
3302 [ --enable-directfb DirectFB support (default disabled)])
3303 AC_ARG_WITH(directfb,
3304 [ --with-directfb=PATH path to DirectFB headers and libraries])
3306 if test "${enable_directfb}" = "yes"; then
3307 have_directfb="false"
3308 CPPFLAGS_mydirectfb=
3310 if test "${with_directfb}" != "no" -a -n "${with_directfb}"; then
3311 dnl Trying the given location
3314 CPPFLAGS_new="-I${with_directfb}/include -D_REENTRANT -D_GNU_SOURCE"
3315 LIBS_new="-L${with_directfb}/lib/fusion/.libs/ -L${with_directfb}/lib/direct/.libs/ -L${with_directfb}/src/.libs/"
3317 CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_new}"
3318 LIBS="${LIBS} ${LIBS_new}"
3320 dnl FIXME: too obscure
3321 AC_CHECK_HEADER([directfb.h], [
3322 AC_CHECK_LIB([direct],[direct_initialize], [
3323 AC_CHECK_LIB([fusion], [fusion_enter], [
3324 AC_CHECK_LIB([directfb], [DirectFBInit], have_directfb="true", have_directfb="false")
3325 ], have_directfb="false")
3326 ], have_directfb="false")
3327 ], have_directfb="false")
3331 if test "${have_directfb}" = "true"; then
3332 LIBS_mydirectfb="${LIBS_new} -lz $LIBDL -ldirectfb -lfusion -ldirect -lpthread"
3333 CPPFLAGS_mydirectfb="${CPPFLAGS_new}"
3336 dnl Look for directfb-config
3337 AC_PATH_PROG(DIRECTFB_CONFIG, directfb-config, no, ${PATH})
3338 if test "${DIRECTFB_CONFIG}" != "no"; then
3339 CPPFLAGS_mydirectfb="`${DIRECTFB_CONFIG} --cflags`"
3340 LIBS_mydirectfb="`${DIRECTFB_CONFIG} --libs`"
3341 have_directfb="true"
3343 dnl Trying with pkg-config
3344 PKG_CHECK_MODULES(DIRECTFB, directfb, [
3345 CPPFLAGS_mydirectfb="${DIRECTFB_CFLAGS}"
3346 LIBS_mydirectfb="${DIRECTFB_LIBS}"
3347 have_directfb="true"
3348 ], [have_directfb="false"])
3351 if test "${have_directfb}" = "true"; then
3352 VLC_ADD_PLUGIN([directfb])
3353 VLC_ADD_CPPFLAGS([directfb],[${CPPFLAGS_mydirectfb}])
3354 VLC_ADD_LIBS([directfb],[${LIBS_mydirectfb}])
3356 AC_MSG_ERROR([${DIRECTFB_PKG_ERRORS}.])
3364 [ --enable-aa aalib output (default disabled)])
3365 if test "${enable_aa}" = "yes"
3367 AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3368 if test "${have_aa}" = "true"
3370 VLC_ADD_PLUGIN([aa])
3377 PKG_ENABLE_MODULES_VLC([CACA], [], [caca >= 0.99.beta14], [libcaca output],[auto])
3383 [AS_HELP_STRING([--enable-kva],
3384 [support the K Video Accelerator KVA (default enabled on OS/2)])],, [
3385 AS_IF([test "$SYS" = "os2"], [
3391 AS_IF([test "$enable_kva" != "no"], [
3392 AC_CHECK_HEADERS([kva.h], [
3394 AC_CHECK_LIB(kva, main, [
3400 AM_CONDITIONAL([HAVE_KVA], [test "${have_kva}" = "yes"])
3406 AS_HELP_STRING([--enable-mmal],
3407 [Multi-Media Abstraction Layer (MMAL) hardware plugin (default enable)]))
3408 if test "${enable_mmal}" != "no"; then
3410 LDFLAGS="${LDFLAGS} -L/opt/vc/lib -lvchostif"
3411 CPPFLAGS="${CPPFLAGS} -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
3412 AC_CHECK_HEADERS(interface/mmal/mmal.h,
3413 [ AC_CHECK_LIB(bcm_host, vc_tv_unregister_callback_full, [
3415 VLC_ADD_PLUGIN([mmal])
3416 VLC_ADD_LDFLAGS([mmal],[ -L/opt/vc/lib ])
3417 VLC_ADD_CFLAGS([mmal],[ -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux ])
3418 VLC_ADD_LIBS([mmal],[ -lbcm_host -lmmal -lvchostif ]) ], [
3419 AS_IF([test "${enable_mmal}" = "yes"],
3420 [ AC_MSG_ERROR([Cannot find bcm library...]) ],
3421 [ AC_MSG_WARN([Cannot find bcm library...]) ])
3424 ] , [ AS_IF([test "${enable_mmal}" = "yes"],
3425 [ AC_MSG_ERROR([Cannot find development headers for mmal...]) ],
3426 [ AC_MSG_WARN([Cannot find development headers for mmal...]) ]) ])
3429 AM_CONDITIONAL([HAVE_MMAL], [test "${have_mmal}" = "yes"])
3435 EXTEND_HELP_STRING([Audio plugins:])
3438 dnl Pulseaudio module
3440 AC_ARG_ENABLE(pulse,
3441 [AS_HELP_STRING([--enable-pulse],
3442 [use the PulseAudio client library (default auto)])])
3444 AS_IF([test "${enable_pulse}" != "no"], [
3445 PKG_CHECK_MODULES([PULSE], [libpulse >= 1.0], [
3448 AS_IF([test "x${enable_pulse}" != "x"], [
3449 AC_MSG_ERROR([$PULSE_PKG_ERRORS. PulseAudio 1.0 or later required.])
3453 AM_CONDITIONAL([HAVE_PULSE], [test "${have_pulse}" = "yes"])
3459 [AS_HELP_STRING([--enable-alsa],
3460 [support the Advanced Linux Sound Architecture (default auto)])],, [
3461 AS_IF([test "$SYS" = "linux" -a "${have_pulse}" = "no"], [
3466 AS_IF([test "${enable_alsa}" != "no"], [
3467 PKG_CHECK_MODULES([ALSA], [alsa >= 1.0.24], [
3470 AS_IF([test "x${enable_alsa}" != "x"], [
3471 AC_MSG_ERROR([$ALSA_PKG_ERRORS. alsa-lib 1.0.24 or later required.])
3475 AM_CONDITIONAL([HAVE_ALSA], [test "${have_alsa}" = "yes"])
3478 dnl Open Sound System module
3481 [AS_HELP_STRING([--enable-oss],
3482 [support the Open Sound System OSS (default enabled on FreeBSD/NetBSD/DragonFlyBSD)])],, [
3483 AS_IF([test "$SYS" = "mingw32" -o "$SYS" = "linux" -o "$SYS" = "openbsd"], [
3489 AS_IF([test "$enable_oss" != "no"], [
3490 AC_CHECK_HEADERS([soundcard.h sys/soundcard.h], [
3492 AC_CHECK_LIB(ossaudio, main, [
3493 OSS_LIBS="-lossaudio"
3498 AM_CONDITIONAL([HAVE_OSS], [test "${have_oss}" = "yes"])
3501 dnl OpenBSD sndio module
3503 AC_ARG_ENABLE([sndio],
3504 [AS_HELP_STRING([--disable-sndio],
3505 [support the OpenBSD sndio (default auto)])],, [
3506 AS_IF([test "$SYS" = "openbsd"], [
3511 AS_IF([test "$enable_sndio" != "no"], [
3512 AC_CHECK_HEADER([sndio.h], [
3516 AM_CONDITIONAL([HAVE_SNDIO], [test "${have_sndio}" = "yes"])
3519 dnl Windows Audio Session plugin
3521 AC_ARG_ENABLE([wasapi],
3522 [AS_HELP_STRING([--enable-wasapi],
3523 [use the Windows Audio Session API (default auto)])
3526 AS_IF([test "$enable_wasapi" != "no"], [
3527 AC_CHECK_HEADER([audioclient.h], [
3530 AS_IF([test "x${enable_wasapi}" != "x"], [
3531 AC_MSG_ERROR([Windows Audio Session API not found.])
3535 AM_CONDITIONAL([HAVE_WASAPI], [test "${have_wasapi}" = "yes"])
3538 dnl AudioQueue plugin
3540 AC_ARG_ENABLE(audioqueue,
3541 [ --enable-audioqueue AudioQueue audio module (default disabled)])
3542 if test "${enable_audioqueue}" = "yes"
3544 VLC_ADD_PLUGIN([audioqueue])
3551 [AS_HELP_STRING([--disable-jack],
3552 [do not use jack (default auto)])])
3554 AS_IF([test "${enable_jack}" != "no"], [
3555 PKG_CHECK_MODULES(JACK, jack >= 1.9.7,
3558 AC_MSG_WARN([${JACK_PKG_ERRORS}, trying jack1 instead])
3560 PKG_CHECK_MODULES(JACK, jack >= 0.120.1 jack < 1.0,
3563 AS_IF([test -n "${enable_jack}"],
3564 [AC_MSG_ERROR([${JACK_PKG_ERRORS}.])],
3565 [AC_MSG_WARN([${JACK_PKG_ERRORS}.])])
3569 AM_CONDITIONAL([HAVE_JACK], [test "${have_jack}" != "no"])
3572 dnl OpenSLES Android
3574 AC_ARG_ENABLE(opensles,
3575 [ --enable-opensles Android OpenSL ES audio module (default disabled)])
3576 if test "${HAVE_ANDROID}" = "1"; then
3577 if test "${enable_opensles}" = "yes"; then
3578 AC_CHECK_HEADERS(SLES/OpenSLES.h,
3579 [ VLC_ADD_PLUGIN([opensles_android]) ],
3580 [ AC_MSG_ERROR([cannot find OpenSLES headers])] )
3585 dnl libsamplerate plugin
3587 PKG_ENABLE_MODULES_VLC([SAMPLERATE], [], [samplerate], [Resampler with libsamplerate], [auto])
3593 [AS_HELP_STRING([--enable-kai],
3594 [support the K Audio Interface KAI (default enabled on OS/2)])],, [
3595 AS_IF([test "$SYS" = "os2"], [
3601 AS_IF([test "$enable_kai" != "no"], [
3602 AC_CHECK_HEADERS([kai.h], [
3604 AC_CHECK_LIB(kai, main, [
3610 AM_CONDITIONAL([HAVE_KAI], [test "${have_kai}" = "yes"])
3613 dnl chromaprint audio track fingerprinter
3615 m4_pushdef([libchromaprint_version], 0.6.0)
3616 PKG_WITH_MODULES([CHROMAPRINT],[libchromaprint >= libchromaprint_version],
3617 VLC_ADD_PLUGIN([stream_out_chromaprint]),
3618 AS_IF([test "${enable_chromaprint}" = "yes"],
3619 [AC_MSG_ERROR(Library [libchromaprint >= libchromaprint_version] needed for [chromaprint] was not found)],
3620 [AC_MSG_WARN(Library [libchromaprint >= libchromaprint_version] needed for [chromaprint] was not found)]
3622 [(Chromaprint based audio fingerprinter)],[auto])
3623 m4_popdef([libchromaprint_version])
3626 dnl Chromecast streaming support
3628 m4_pushdef([protobuf_lite_version], 2.5.0)
3629 AC_ARG_VAR(PROTOC, [protobuf compiler])
3630 AC_CHECK_PROGS(PROTOC, protoc, no)
3631 PKG_WITH_MODULES([CHROMECAST],[protobuf-lite >= protobuf_lite_version], [
3632 AS_IF([test "x${PROTOC}" != "xno"], [
3633 build_chromecast="yes"
3635 AC_MSG_ERROR(protoc compiler needed for [chromecast] was not found)
3638 AS_IF([test "${enable_chromecast}" = "yes"],
3639 AC_MSG_ERROR(Library [protobuf-lite >= protobuf_lite_version] needed for [chromecast] was not found),
3640 AC_MSG_WARN(Library [protobuf-lite >= protobuf_lite_version] needed for [chromecast] was not found)
3642 enable_chromecast="no"
3643 ], [(Chromecast streaming support)], [auto])
3644 AM_CONDITIONAL([BUILD_CHROMECAST], [test "${build_chromecast}" = "yes"])
3645 m4_popdef([protobuf_lite_version])
3648 dnl Interface plugins
3651 EXTEND_HELP_STRING([Interface plugins:])
3657 AS_HELP_STRING([--disable-qt], [Qt UI support (default enabled)])],, [
3658 AS_IF([test "${SYS}" = "darwin"], [
3662 AS_IF([test "${enable_qt}" != "no"], [
3663 PKG_CHECK_MODULES([QT], [Qt5Core >= 5.1.0 Qt5Widgets Qt5Gui], [
3664 PKG_CHECK_MODULES([QTX11], [Qt5X11Extras], [
3665 VLC_ADD_LIBS([qt4],[${QTX11_LIBS}])
3666 VLC_ADD_CXXFLAGS([qt4],[${QTX11_CFLAGS} -DQT5_HAS_X11])
3668 AC_MSG_WARN([Not building Qt Interface with X11 helpers.])
3670 QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix Qt5Core)"
3671 QT_HOST_PATH="$(eval $PKG_CONFIG --variable=host_bins Qt5Core)"
3672 AC_PATH_PROGS(MOC, [moc-qt5 moc], moc, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3673 AC_PATH_PROGS(RCC, [rcc-qt5 rcc], rcc, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3674 AC_PATH_PROGS(UIC, [uic-qt5 uic], uic, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3676 PKG_CHECK_MODULES([QT], [QtCore QtGui >= 4.6.0],, [
3677 AS_IF([test -n "${enable_qt}"],[
3678 AC_MSG_ERROR([${QT_PKG_ERRORS}.])
3680 AC_MSG_WARN([${QT_PKG_ERRORS}.])
3684 QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix QtCore)"
3685 AC_PATH_PROGS(MOC, [moc-qt4 moc], moc, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3686 AC_PATH_PROG(RCC, rcc, rcc, [${QT_PATH}/bin ${CONTRIB_DIR}/bin])
3687 AC_PATH_PROGS(UIC, [uic-qt4 uic], uic, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
3690 AS_IF([test "${enable_qt}" != "no"], [
3691 VLC_ADD_PLUGIN([qt4])
3692 ALIASES="${ALIASES} qvlc"
3694 AM_CONDITIONAL(ENABLE_QT4, [test "$enable_qt" != "no"])
3697 dnl Simple test for skins2 dependency
3699 AS_IF([test "$enable_qt" = "no"], [
3700 AS_IF([test "${enable_skins2}" = "yes"], [
3701 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.])
3704 AC_MSG_WARN([The skins2 module depends on the Qt4 interface, Qt4 is not built so skins2 is disabled.])
3711 AC_ARG_ENABLE(skins2,
3712 [AS_HELP_STRING([--enable-skins2], [skins interface module (default auto)])])
3713 AS_IF([test "${enable_skins2}" != "no"], [
3714 have_skins_deps="yes"
3717 AS_IF([test "${SYS}" = "mingw32"], [
3718 VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -DWIN32_SKINS])
3719 VLC_ADD_LIBS([skins2],[-lgdi32 -lole32 -luuid -lmsimg32])
3721 ], [test "${SYS}" = "darwin"], [
3722 VLC_ADD_CPPFLAGS([skins2],[ -DMACOSX_SKINS])
3723 VLC_ADD_LIBS([skins2],[-Wl,-framework,Carbon])
3725 ], [test "${SYS}" = "os2"], [
3726 VLC_ADD_CPPFLAGS([skins2],[ -DOS2_SKINS])
3729 PKG_CHECK_MODULES([XPM], [xpm],, [have_skins_deps="no"])
3730 PKG_CHECK_MODULES([XINERAMA], [xinerama],, [have_skins_deps="no"])
3731 PKG_CHECK_MODULES([XEXT], [xext],, [have_skins_deps="no"])
3732 VLC_ADD_CPPFLAGS([skins2],[${X_CFLAGS} ${XEXT_CFLAGS} ${XPM_CFLAGS} -DX11_SKINS])
3733 VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} ${XEXT_LIBS} ${XPM_LIBS} ${XINERAMA_LIBS} -lX11])
3737 VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3739 dnl we need freetype
3740 AS_IF([test "${have_freetype}" != "yes"], [
3741 have_skins_deps="no"
3744 AS_IF([test "${have_skins_deps}" = "no"], [
3745 AS_IF([test "x${enable_skins2}" = "x"], [
3746 AC_MSG_WARN([Skins2 interface disabled due to missing dependencies.])
3748 AC_MSG_ERROR([Skins2 interface requires FreeType, libxpm, libxext and libxinerama])
3752 VLC_ADD_PLUGIN([skins2])
3753 ALIASES="${ALIASES} svlc"
3757 AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes"])
3759 AC_ARG_ENABLE(libtar,
3760 [ --enable-libtar libtar support for skins2 (default auto)])
3761 AS_IF([test "${enable_skins2}" = "yes" && test "${enable_libtar}" != "no"], [
3762 AC_CHECK_HEADERS(libtar.h, [
3763 VLC_ADD_LIBS([skins2],[-ltar])
3768 dnl MacOS X gui module
3770 AC_ARG_ENABLE(macosx,
3771 [ --enable-macosx Mac OS X gui support (default enabled on Mac OS X)])
3772 if test "x${enable_macosx}" != "xno" -a "${SYS}" = "darwin"
3774 VLC_ADD_PLUGIN([macosx])
3776 if test ! -d ${CONTRIB_DIR}/BGHUDAppKit.framework
3778 AC_MSG_ERROR([BGHUDAppKit framework is required and was not found in ${CONTRIB_DIR}])
3781 AM_CONDITIONAL(ENABLE_MACOSX_UI, [test "$enable_macosx" != "no"])
3784 dnl MacOS X sparkle update support
3786 AC_ARG_ENABLE(sparkle,
3787 [ --enable-sparkle Sparkle update support for OS X (default enabled on Mac OS X)])
3788 if test "x${enable_sparkle}" != "xno" -a "${HAVE_OSX}" = "1"
3790 if test ! -d ${CONTRIB_DIR}/Sparkle.framework
3792 AC_MSG_ERROR([Sparkle framework is required and was not found in ${CONTRIB_DIR}])
3795 AC_DEFINE([HAVE_SPARKLE], [1], [Define to 1 if sparkle is enabled.])
3797 AM_CONDITIONAL(HAVE_SPARKLE, [test "$enable_sparkle" != "no"])
3801 dnl Minimal Mac OS X module
3803 AC_ARG_ENABLE(minimal-macosx,
3804 [ --enable-minimal-macosx Minimal Mac OS X support (default disabled)])
3805 if test "${enable_minimal_macosx}" = "yes" -a "${SYS}" = "darwin"
3807 VLC_ADD_PLUGIN([minimal_macosx])
3811 dnl MacOS X dialog provider
3813 AC_ARG_ENABLE(macosx-dialog-provider,
3814 [ --enable-macosx-dialog-provider Mac OS X dialog module (default enabled on Mac OS X)])
3815 if test "x${enable_macosx_dialog_provider}" != "xno" &&
3816 (test "${SYS}" = "darwin" || test "${enable_macosx_dialog_provider}" = "yes")
3818 VLC_ADD_PLUGIN([macosx_dialog_provider])
3824 AC_ARG_ENABLE(ncurses,
3825 [AS_HELP_STRING([--disable-ncurses],[ncurses text-based interface (default auto)])])
3827 AS_IF([test "${enable_ncurses}" != "no"] ,[
3828 PKG_CHECK_MODULES([NCURSES], [ncursesw], [
3830 ALIASES="${ALIASES} nvlc"
3832 AS_IF([test -n "${enable_ncurses}"], [
3833 AC_MSG_ERROR([${NCURSES_PKG_ERRORS}.])
3837 AM_CONDITIONAL([HAVE_NCURSES], [test "${have_ncurses}" = "yes"])
3843 [ --enable-lirc lirc support (default disabled)])
3845 AS_IF([test "${enable_lirc}" = "yes"], [
3846 AC_CHECK_HEADER(lirc/lirc_client.h, [
3847 AC_CHECK_LIB(lirc_client, lirc_init, [
3852 AM_CONDITIONAL([HAVE_LIRC], [test "${have_lirc}" = "yes"])
3854 EXTEND_HELP_STRING([Visualisations and Video filter plugins:])
3856 dnl goom visualization plugin
3858 PKG_ENABLE_MODULES_VLC([GOOM], [], [libgoom2], [goom visualization plugin], [auto])
3861 dnl libprojectM visualization plugin
3863 AC_ARG_ENABLE(projectm,
3864 [ --enable-projectm projectM visualization plugin (default enabled)])
3865 AS_IF([test "${enable_projectm}" != "no"],
3867 PKG_CHECK_MODULES(PROJECTM, libprojectM,
3869 VLC_ADD_PLUGIN([projectm])
3870 PKG_CHECK_EXISTS([libprojectM >= 2.0.0],
3871 [ AC_DEFINE([HAVE_PROJECTM2], 1, [Define to 1 if using libprojectM 2.x]) ],
3872 [ AC_MSG_WARN( [Using libprojectM version 1] )
3875 AC_MSG_WARN([${PROJECTM_PKG_ERRORS}.])
3880 dnl Vovoid VSXu visualization plugin
3883 [ --enable-vsxu Vovoid VSXu visualization plugin (default auto)])
3884 AS_IF([test "${enable_vsxu}" != "no"],
3886 PKG_CHECK_MODULES(VSXU, libvsxu,
3888 VLC_ADD_PLUGIN([vsxu])
3890 AC_MSG_WARN([${VSXU_PKG_ERRORS}.])
3894 EXTEND_HELP_STRING([Service Discovery plugins:])
3896 dnl Bonjour services discovery
3897 PKG_ENABLE_MODULES_VLC([BONJOUR], [], [avahi-client >= 0.6], [Bonjour services discovery], [auto])
3900 dnl libudev services discovery
3901 PKG_ENABLE_MODULES_VLC([UDEV], [], [libudev >= 142], [Linux udev services discovery], [auto])
3904 dnl MTP devices services discovery
3905 PKG_ENABLE_MODULES_VLC([MTP], [mtp access_mtp], [libmtp >= 1.0.0], [MTP devices support], [auto])
3908 dnl UPnP Plugin (Intel SDK)
3910 PKG_ENABLE_MODULES_VLC([UPNP], [upnp], [libupnp], [Intel UPNP SDK],[auto])
3912 EXTEND_HELP_STRING([Misc options:])
3917 PKG_ENABLE_MODULES_VLC([LIBXML2], [xml], [libxml-2.0 >= 2.5], [libxml2 support],[auto])
3923 AC_ARG_ENABLE(libgcrypt,
3924 [ --disable-libgcrypt gcrypt support (default enabled)])
3925 # require libgcrypt >= 1.6.0
3926 AS_IF([test "${enable_libgcrypt}" != "no"], [
3929 #if GCRYPT_VERSION_NUMBER < 0x010600
3933 have_libgcrypt="yes"
3934 AC_DEFINE([HAVE_GCRYPT], 1, [Defined if having gcrypt])
3935 GCRYPT_CFLAGS="`libgcrypt-config --cflags`"
3936 GCRYPT_LIBS="`libgcrypt-config --libs`"
3938 AS_IF([test "${enable_libgcrypt}" == "yes"], [
3939 AC_MSG_ERROR([libgcrypt version 1.6.0 or higher not found. Install libgcrypt or pass --disable-libgcrypt.])
3944 AC_SUBST(GCRYPT_CFLAGS)
3945 AC_SUBST(GCRYPT_LIBS)
3946 AM_CONDITIONAL([HAVE_GCRYPT], [test "${have_libgcrypt}" = "yes"])
3951 AC_ARG_ENABLE(gnutls,
3952 [ --enable-gnutls GNU TLS TLS/SSL support (default enabled)])
3953 AS_IF([test "${enable_gnutls}" != "no"], [
3954 PKG_CHECK_MODULES(GNUTLS, [gnutls >= 3.2.0], [
3955 VLC_ADD_PLUGIN([gnutls])
3957 AS_IF([test -n "${enable_gnutls}"], [
3958 AC_MSG_ERROR([${GNUTLS_PKG_ERRORS}.)])
3967 AC_ARG_ENABLE(taglib,
3968 [AS_HELP_STRING([--disable-taglib],
3969 [do not use TagLib (default enabled)])])
3970 AS_IF([test "${enable_taglib}" != "no"], [
3971 PKG_CHECK_MODULES(TAGLIB, taglib >= 1.9, [
3972 VLC_ADD_PLUGIN([taglib])
3974 AC_MSG_WARN([${TAGLIB_PKG_ERRORS}.])])
3978 dnl Developers helper modules (should be hidden from configure help)
3980 AC_ARG_ENABLE(devtools, [], [], [enable_devtools="no"])
3981 AS_IF([test "${enable_devtools}" != "no"], [
3982 VLC_ADD_PLUGIN([accesstweaks])
3986 dnl update checking system
3988 AC_ARG_ENABLE(update-check,
3989 [ --enable-update-check update checking system (default disabled)])
3990 if test "${enable_update_check}" = "yes"
3992 if test "${have_libgcrypt}" != "yes"
3994 AC_MSG_ERROR([libgcrypt is required for update checking system])
3996 VLC_ADD_LIBS([libvlccore], [${GCRYPT_LIBS}])
3997 VLC_ADD_CFLAGS([libvlccore], [${GCRYPT_CFLAGS}])
3998 AC_DEFINE([UPDATE_CHECK], 1, [Define if you want to use the VLC update mechanism])
4002 dnl Growl notification plugin
4004 AC_ARG_ENABLE(growl,
4005 [ --enable-growl growl notification plugin (default disabled)],,
4007 AS_IF([test "${enable_growl}" != "no"], [
4008 AC_CHECK_HEADERS(${CONTRIB_DIR}/Growl.framework/Versions/A/Headers/Growl.h, [
4009 VLC_ADD_PLUGIN([growl])
4010 VLC_ADD_LIBS([growl], [-F${CONTRIB_DIR} -Wl,-framework,Growl,-framework,Foundation])
4011 VLC_ADD_OBJCFLAGS([growl], [-F${CONTRIB_DIR}])
4012 VLC_ADD_OBJCFLAGS([growl], [-fobjc-exceptions] )
4018 dnl Libnotify notification plugin
4020 PKG_ENABLE_MODULES_VLC([NOTIFY], [], [libnotify gtk+-2.0], [libnotify notification], [auto])
4023 dnl Endianness check
4026 AS_IF([test "${ac_cv_c_bigendian}" = "yes"], [
4027 DEFS_BIGENDIAN="-DWORDS_BIGENDIAN=1"
4031 AC_SUBST(DEFS_BIGENDIAN)
4034 dnl Where to install KDE solid .desktop
4036 AC_ARG_VAR([KDE4_CONFIG], [kde4-config utility])
4037 AS_IF([test "x$KDE4_CONFIG" = "x"], [
4038 KDE4_CONFIG="kde4-config"
4041 AC_ARG_WITH(kde-solid,
4042 AS_HELP_STRING([--with-kde-solid=PATH],
4043 [KDE Solid actions directory (auto)]),, [
4045 if test "${SYS}" != "mingw32" -a "${SYS}" != "darwin" ; then
4046 with_kde_solid="yes"
4050 AS_IF([test "${with_kde_solid}" != "no"], [
4051 AS_IF([test "${with_kde_solid}" = "yes"], [
4052 kde4datadir="`${KDE4_CONFIG} --install data`"
4053 AS_IF([test "x$kde4datadir" = "x"], [kde4datadir='${datadir}/kde4/apps'])
4054 soliddatadir="${kde4datadir}/solid/actions"
4056 soliddatadir="${with_kde_solid}"
4059 AC_SUBST(soliddatadir)
4060 AM_CONDITIONAL(KDE_SOLID, [test "x${soliddatadir}" != "x"])
4062 EXTEND_HELP_STRING([Components:])
4068 [ --enable-vlc build the VLC media player (default enabled)])
4069 AM_CONDITIONAL(BUILD_VLC, [test "${enable_vlc}" != "no"])
4071 AC_ARG_ENABLE(macosx-vlc-app,
4072 [ --enable-macosx-vlc-app build the VLC media player (default enabled on Mac OS X)])
4073 AM_CONDITIONAL(BUILD_MACOSX_VLC_APP, [test "${enable_macosx_vlc_app}" != "no" &&
4074 (test "${SYS}" = "darwin" || test "${enable_macosx_vlc_app}" = "yes") ])
4077 dnl Stuff used by the program
4079 VERSION_MESSAGE="${VERSION} ${CODENAME}"
4080 COPYRIGHT_MESSAGE="Copyright © ${COPYRIGHT_YEARS} the VideoLAN team"
4081 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION_MESSAGE}", [Simple version string])
4082 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "${COPYRIGHT_MESSAGE}", [Copyright string])
4083 AC_DEFINE_UNQUOTED(COPYRIGHT_YEARS, "${COPYRIGHT_YEARS}", [The copyright years])
4084 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4085 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,${VERSION_MAJOR}, [version major number])
4086 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,${VERSION_MINOR}, [version minor number])
4087 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,${VERSION_REVISION}, [version revision number])
4088 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,${VERSION_EXTRA}, [version extra number])
4089 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_DEV,"${VERSION_DEV}", [version development string])
4090 AC_SUBST(COPYRIGHT_MESSAGE)
4091 AC_SUBST(VERSION_MESSAGE)
4092 AC_SUBST(VERSION_MAJOR)
4093 AC_SUBST(VERSION_MINOR)
4094 AC_SUBST(VERSION_REVISION)
4095 AC_SUBST(VERSION_EXTRA)
4096 AC_SUBST(COPYRIGHT_YEARS)
4097 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami|sed -e 's/\\\/\\\\\\\/g'`", [user who ran configure])
4098 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname -f 2>/dev/null || hostname`", [host which ran configure])
4099 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1 | sed -e 's/ *$//'`", [compiler])
4101 dnl Handle substvars that use $(top_srcdir)
4103 CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/include ${CPPFLAGS}"
4106 dnl Configuration is finished
4116 AC_SUBST(WINE_SDK_PATH)
4118 AC_SUBST(AM_CPPFLAGS)
4119 AC_SUBST(MACOSX_DEPLOYMENT_TARGET)
4120 AC_SUBST(FILE_LIBVLCCORE_DLL)
4121 AC_SUBST(FILE_LIBVLC_DLL)
4135 modules/gui/macosx/Makefile
4136 modules/gui/qt4/Makefile
4137 modules/gui/skins2/Makefile
4138 modules/hw/mmal/Makefile
4141 AM_COND_IF([HAVE_WIN32], [
4143 extras/package/win32/NSIS/spad.nsi
4144 extras/package/win32/NSIS/vlc.win32.nsi
4145 extras/package/win32/msi/config.wxi
4149 AM_COND_IF([HAVE_DARWIN], [
4151 extras/package/macosx/Info.plist
4152 extras/package/macosx/Resources/English.lproj/InfoPlist.strings
4156 dnl Generate makefiles
4159 dnl Do we have to use make or gmake ?
4160 if make --version 2>&1|grep -q GNU
4162 # GNU make, all seems good
4165 # Known GNU make alias (on BSD)
4168 dnl Shortcut to nice compile message
4169 if test -n $SHELL; then
4170 SHELL=${CONFIG_SHELL-/bin/sh}
4173 compile_top_srcdir=`sed -ne "s/^top_srcdir *= *//p" < Makefile`
4177 export PATH=\"$PATH\" LANG=C
4178 ($MAKE V=1 \$@ 2>&1 || touch .error\$\$)| $compile_top_srcdir/extras/buildsystem/make.pl
4179 test -f .error\$\$ && ERROR=1
4181 exit \$ERROR" >compile
4185 libvlc configuration
4186 --------------------
4187 version : ${VERSION}
4189 architecture : ${ARCH}
4190 optimizations : ${enable_optimizations}"
4191 if test "${enable_vlc}" != "no"; then
4192 echo "vlc aliases :${ALIASES}"
4194 echo "build vlc executable : no"
4197 To build vlc and its plugins, type \`$MAKE', or \`./compile' if you like nice colors."