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