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