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