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