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