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