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