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