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