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