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