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