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