]> git.sesse.net Git - vlc/blob - configure.ac
Sanitize file path before deletion.
[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],[-lwinmm])
232         VLC_ADD_LDFLAGS([vlc],[-mwindows])
233         VLC_ADD_LIBS([win32text],[-lgdi32])
234         VLC_ADD_LIBS([vcdx],[-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
780 dnl Domain name i18n support via GNU libidn
781 dnl
782 PKG_CHECK_MODULES([IDN], [libidn], [
783   have_libidn="yes"
784   AC_DEFINE([HAVE_IDN], 1, [Define to 1 if you have GNU libidn.])
785 ], [
786   have_libidn="no"
787 ])
788
789
790 dnl Check for dbus
791 AC_ARG_ENABLE(dbus,
792   [AS_HELP_STRING([--enable-dbus],
793     [compile D-Bus message bus support (default enabled)])])
794 case "${SYS}" in
795     linux*|*bsd*)
796 if test "${enable_dbus}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
797 then
798   dnl api stable dbus
799   PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.0.0],
800     [ AC_DEFINE( HAVE_DBUS, 1, [Define if you have the D-BUS library] )
801       VLC_ADD_LIBS([libvlccore],[$DBUS_LIBS])
802       VLC_ADD_CFLAGS([libvlccore],[$DBUS_CFLAGS])
803       dnl Check for dbus control interface
804         AC_ARG_ENABLE(dbus-control,
805           [AS_HELP_STRING([--disable-dbus-control],
806             [D-Bus control interface (default enabled)])])
807         if test "${enable_dbus_control}" != "no"
808         then
809           VLC_ADD_PLUGIN([dbus])
810           VLC_ADD_LIBS([dbus],[$DBUS_LIBS])
811           VLC_ADD_CFLAGS([dbus],[$DBUS_CFLAGS])
812         fi
813         dnl Power Management Inhibiter
814         VLC_ADD_PLUGIN([inhibit])
815         VLC_ADD_LIBS([inhibit],[$DBUS_LIBS])
816         VLC_ADD_CFLAGS([inhibit],[$DBUS_CFLAGS])
817     ],
818     [AC_MSG_ERROR([${DBUS_PKG_ERRORS}.])]
819   )
820 fi
821 ;;
822 esac
823
824 dnl Check for ntohl, etc.
825 VLC_SAVE_FLAGS
826 CFLAGS="${CFLAGS} -Wall -Werror"
827 AC_CACHE_CHECK([for ntohl in sys/param.h],
828     [ac_cv_c_ntohl_sys_param_h],
829     [     AC_TRY_COMPILE([#include <sys/param.h>],
830         [int meuh; ntohl(meuh);],
831         ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
832 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
833     AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
834 fi
835 VLC_RESTORE_FLAGS
836
837 EXTEND_HELP_STRING([Optimization options:])
838 dnl
839 dnl  Compiler warnings
840 dnl
841
842 RDC_PROG_CC_WFLAGS([all extra sign-compare undef pointer-arith bad-function-cast write-strings missing-prototypes volatile-register-var error-implicit-function-declaration])
843 RDC_PROG_CC_FLAGS([-pipe])
844 AC_LANG_PUSH([C++])
845 RDC_PROG_CXX_WFLAGS([all extra sign-compare undef pointer-arith volatile-register-var])
846 AC_LANG_POP([C++])
847
848 dnl
849 dnl  Debugging mode
850 dnl
851 AC_ARG_ENABLE(debug,
852   [AS_HELP_STRING([--enable-debug],
853     [build with run-time assertions (default disabled)])],,
854   [enable_debug="no"])
855 AH_TEMPLATE(NDEBUG,
856             [Define to 1 if debug code should NOT be compiled])
857 AS_IF([test "${enable_debug}" != "no"], [
858   AC_CHECK_HEADERS([valgrind/valgrind.h])
859 ], [
860   AC_DEFINE(NDEBUG)
861 ])
862
863 dnl
864 dnl  Profiling
865 dnl
866 AC_ARG_ENABLE(gprof,
867   [AS_HELP_STRING([--enable-gprof],[profile with gprof (default disabled)])],,
868   [enable_gprof="no"])
869 AS_IF([test "${enable_gprof}" != "no"], [
870   CFLAGS="${CFLAGS} -pg"
871   CXXFLAGS="${CXXFLAGS} -pg"
872   OBJCFLAGS="${OBJCFLAGS} -pg"
873   LDFLAGS="${LDFLAGS} -pg"
874 ])
875
876 AC_ARG_ENABLE(cprof,
877   [AS_HELP_STRING([--enable-cprof],[profile with cprof (default disabled)])],,
878   [enable_cprof="no"])
879 AS_IF([test "${enable_gprof}" != "no"], [
880   CFLAGS="${CFLAGS} -finstrument-functions"
881   CXXFLAGS="${CXXFLAGS} -finstrument-functions"
882   OBJCFLAGS="${OBJCFLAGS} -finstrument-functions"
883   LDFLAGS="${LDFLAGS} -finstrument-functions"
884 ])
885
886 dnl
887 dnl  Test coverage
888 dnl
889 AC_ARG_ENABLE(coverage,
890   [AS_HELP_STRING([--enable-coverage],
891     [build for test coverage (default disabled)])],,
892   [enable_coverage="no"])
893 AS_IF([test "${enable_coverage}" != "no"], [
894   CFLAGS="-fprofile-arcs -ftest-coverage ${CFLAGS}"
895   CXXFLAGS="-fprofile-arcs -ftest-coverage ${CXXFLAGS}"
896   LDFLAGS="-lgcov ${LDFLAGS}"
897 ])
898
899 AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"], [
900   VLC_SAVE_FLAGS
901   CFLAGS="${CFLAGS} -fvisibility=hidden"
902   CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
903   OBJCFLAGS="${OBJCFLAGS} -fvisibility=hidden"
904   AC_CACHE_CHECK([if $CC accepts -fvisibility=hidden],
905                  [ac_cv_c_visibility_hidden], [
906     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
907       ac_cv_c_visibility_hidden=yes
908     ], [
909       ac_cv_c_visibility_hidden=no
910     ])
911   ])
912   AS_IF([test "${ac_cv_c_visibility_hidden}" = "no"], [VLC_RESTORE_FLAGS])
913 ])
914
915
916 dnl
917 dnl  Enable/disable optimizations
918 dnl
919 AC_ARG_ENABLE(optimizations,
920   [AS_HELP_STRING([--disable-optimizations],
921     [disable compiler optimizations (default enabled)])],,
922   [enable_optimizations="yes"])
923
924 dnl Check for various optimization flags
925 AS_IF([test "${enable_optimizations}" != "no"], [
926
927   dnl -O4 and -O3 only in production builds
928   AS_IF([test "{enable_debug}" = "no"], [
929     VLC_SAVE_FLAGS
930     CFLAGS="${CFLAGS} -O4"
931     CXXFLAGS="${CXXFLAGS} -O4"
932     OBJCFLAGS="${OBJCFLAGS} -O4"
933     AC_CACHE_CHECK([if $CC accepts -O4], [ac_cv_c_o4], [
934       AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
935         ac_cv_c_o4=yes
936       ], [
937         ac_cv_c_o4=no
938       ])
939     ])
940     AS_IF([test "${ac_cv_c_o4}" = "no"], [
941       VLC_RESTORE_FLAGS
942       CFLAGS="${CFLAGS} -O3"
943       CXXFLAGS="${CXXFLAGS} -O3"
944       OBJCFLAGS="${OBJCFLAGS} -O3"
945       AC_CACHE_CHECK([if $CC accepts -O3],  [ac_cv_c_o3], [
946         AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
947           ac_cv_c_o3=yes
948         ], [
949           ac_cv_c_o3=no
950         ])
951       ])
952       AS_IF([test "${ac_cv_c_o3}" = "no"], [VLC_RESTORE_FLAGS])
953     ])
954   ])
955
956   dnl Check for -ffast-math
957   VLC_SAVE_FLAGS
958   CFLAGS="${CFLAGS} -ffast-math"
959   CXXFLAGS="${CXXFLAGS} -ffast-math"
960   OBJCFLAGS="${OBJCFLAGS} -ffast-math"
961   AC_CACHE_CHECK([if $CC accepts -ffast-math], [ac_cv_c_fast_math], [
962     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
963       ac_cv_c_fast_math=yes
964     ], [
965       ac_cv_c_fast_math=no
966     ])
967   ])
968   AS_IF([test "${ac_cv_c_fast_math}" = "no"], [VLC_RESTORE_FLAGS])
969   AH_BOTTOM([
970 #ifndef __FAST_MATH__
971 # pragma STDC FENV_ACCESS OFF
972 # pragma STDC FP_CONTRACT ON
973 #endif
974 ])
975
976   dnl Check for -funroll-loops
977   VLC_SAVE_FLAGS
978   CFLAGS="${CFLAGS} -funroll-loops"
979   CXXFLAGS="${CXXFLAGS} -funroll-loops"
980   OBJCFLAGS="${OBJCFLAGS} -funroll-loops"
981   AC_CACHE_CHECK([if $CC accepts -funroll-loops], [ac_cv_c_unroll_loops], [
982     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
983       ac_cv_c_unroll_loops=yes
984     ], [
985       ac_cv_c_unroll_loops=no
986     ])
987   ])
988   AS_IF([test "${ac_cv_c_unroll_loops}" = "no"], [VLC_RESTORE_FLAGS])
989
990   AS_IF([test "$enable_debug" = "no"], [
991     dnl Check for -fomit-frame-pointer
992     VLC_SAVE_FLAGS
993     CFLAGS="${CFLAGS} -fomit-frame-pointer"
994     CXXFLAGS="${CXXFLAGS} -fomit-frame-pointer"
995     OBJCFLAGS="${OBJCFLAGS} -fomit-frame-pointer"
996     AC_CACHE_CHECK([if $CC accepts -fomit-frame-pointer],
997       [ac_cv_c_omit_frame_pointer], [
998       AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
999         ac_cv_c_omit_frame_pointer=yes
1000       ], [
1001         ac_cv_c_omit_frame_pointer=no
1002       ])
1003     ])
1004     AS_IF([test "${ac_cv_c_omit_frame_pointer}" = "no"], [VLC_RESTORE_FLAGS])
1005   ])
1006 ])
1007
1008 dnl Check for Darwin plugin linking flags
1009 AS_IF([test "${SYS}" = "darwin"], [
1010   VLC_SAVE_FLAGS
1011   CFLAGS="${CFLAGS} -bundle -undefined error"
1012   AC_CACHE_CHECK([if $CC accepts -bundle -undefined error],
1013     [ac_cv_ld_darwin], [
1014     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
1015       ac_cv_ld_darwin=yes
1016     ], [
1017       ac_cv_ld_darwin=no
1018     ])
1019   ])
1020   AS_IF([test "${ac_cv_ld_darwin}" != "no"], [
1021     VLC_ADD_LDFLAGS([plugin],[-bundle -undefined error])
1022   ])
1023   VLC_RESTORE_FLAGS
1024 ])
1025
1026 dnl Checks for __attribute__(aligned()) directive
1027 VLC_SAVE_FLAGS
1028 CFLAGS="${CFLAGS} -Werror"
1029 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
1030     [ac_cv_c_attribute_aligned],
1031     [ac_cv_c_attribute_aligned=0
1032     for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
1033         AC_TRY_COMPILE([],
1034         [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
1035         [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
1036     done])
1037 VLC_RESTORE_FLAGS
1038 if test "${ac_cv_c_attribute_aligned}" != "0"; then
1039     AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
1040         [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
1041 fi
1042
1043 dnl Check for __attribute__((packed))
1044 AC_CACHE_CHECK([for __attribute__((packed))],
1045   [ac_cv_c_attribute_packed],
1046   [ac_cv_c_attribute_packed=no
1047    AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b; (void)b;],
1048                     [ac_cv_c_attribute_packed=yes])])
1049 if test "${ac_cv_c_attribute_packed}" != "no"; then
1050   AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
1051 fi
1052
1053 dnl
1054 dnl  Check the CPU
1055 dnl
1056 case "${host_cpu}" in
1057   "")
1058     ARCH=unknown
1059     ;;
1060   *)
1061     ARCH="${host_cpu}"
1062     ;;
1063 esac
1064
1065 dnl Check for backtrace() support
1066 AC_CHECK_HEADERS(execinfo.h)
1067 AC_CHECK_FUNCS(backtrace)
1068
1069 dnl
1070 dnl  default modules
1071 dnl
1072 ALIASES="${ALIASES} cvlc rvlc"
1073
1074 dnl
1075 dnl Some plugins aren't useful on some platforms
1076 dnl
1077 if test "${SYS}" = "os2"; then
1078     VLC_ADD_PLUGIN([dynamicoverlay])
1079 elif test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
1080     VLC_ADD_PLUGIN([dynamicoverlay access_shm])
1081 elif test "${SYS}" != "mingwce"; then
1082     VLC_ADD_PLUGIN([access_smb dmo globalhotkeys])
1083     VLC_ADD_LIBS([dmo],[-lole32 -luuid])
1084 fi
1085 if test "${SYS}" = "darwin"; then
1086     VLC_ADD_LIBS([quartztext],[-Wl,-framework,ApplicationServices])
1087 fi
1088
1089 dnl
1090 dnl  Accelerated modules
1091 dnl
1092
1093 dnl  Check for fully working MMX intrinsics
1094 dnl  We need support for -mmmx, we need <mmintrin.h>, and we also need a
1095 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1096 AC_ARG_ENABLE(mmx,
1097   [AS_HELP_STRING([--disable-mmx],
1098     [disable MMX optimizations (default auto)])],,[
1099   case "${host_cpu}" in
1100     i?86|x86_64)
1101       enable_mmx="yes"
1102       ;;
1103     *)
1104       enable_mmx="no"
1105       ;;
1106   esac
1107 ])
1108 have_mmx="no"
1109 have_mmxext="no"
1110 AS_IF([test "${enable_mmx}" != "no"], [
1111   ARCH="${ARCH} mmx"
1112   VLC_SAVE_FLAGS
1113   CFLAGS="${CFLAGS} -mmmx"
1114   AC_CACHE_CHECK([if $CC groks MMX intrinsics], [ac_cv_c_mmx_intrinsics], [
1115     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1116 [#include <mmintrin.h>
1117 #include <stdint.h>
1118 uint64_t frobzor;]], [
1119 [__m64 a, b, c;
1120 a = b = c = (__m64)frobzor;
1121 a = _mm_slli_pi16(a, 3);
1122 a = _mm_adds_pi16(a, b);
1123 c = _mm_srli_pi16(c, 8);
1124 c = _mm_slli_pi16(c, 3);
1125 b = _mm_adds_pi16(b, c);
1126 a = _mm_unpacklo_pi8(a, b);
1127 frobzor = (uint64_t)a;]])], [
1128       ac_cv_c_mmx_intrinsics=yes
1129     ], [
1130       ac_cv_c_mmx_intrinsics=no
1131     ])
1132   ])
1133   VLC_RESTORE_FLAGS
1134   AS_IF([test "${ac_cv_c_mmx_intrinsics}" != "no"], [
1135     AC_DEFINE(HAVE_MMX_INTRINSICS, 1, [Define to 1 if MMX intrinsics are available.])
1136   ])
1137
1138   VLC_SAVE_FLAGS
1139   CFLAGS="${CFLAGS} -mmmx"
1140   AC_CACHE_CHECK([if $CC groks MMX inline assembly], [ac_cv_mmx_inline], [
1141     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1142 void *p;
1143 asm volatile("packuswb %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1144 ]])
1145     ], [
1146       ac_cv_mmx_inline=yes
1147     ], [
1148       ac_cv_mmx_inline=no
1149     ])
1150   ])
1151   AS_IF([test "${ac_cv_mmx_inline}" != "no"], [
1152     AC_DEFINE(CAN_COMPILE_MMX, 1, [Define to 1 inline MMX assembly is available.])
1153     have_mmx="yes"
1154   ])
1155
1156   AC_CACHE_CHECK([if $CC groks MMX EXT inline assembly],
1157                  [ac_cv_mmxext_inline], [
1158     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1159 void *p;
1160 asm volatile("maskmovq %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1161 ]])
1162     ], [
1163       ac_cv_mmxext_inline=yes
1164     ], [
1165       ac_cv_mmxext_inline=no
1166     ])
1167   ])
1168   VLC_RESTORE_FLAGS
1169   AS_IF([test "${ac_cv_mmxext_inline}" != "no"], [
1170     AC_DEFINE(CAN_COMPILE_MMXEXT, 1, [Define to 1 if MMX EXT inline assembly is available.])
1171     have_mmxext="yes"
1172   ])
1173 ])
1174 AM_CONDITIONAL([HAVE_MMX], [test "${have_mmx}" = "yes"])
1175 AM_CONDITIONAL([HAVE_MMXEXT], [test "${have_mmxext}" = "yes"])
1176
1177 dnl  Check for fully workin SSE2 intrinsics
1178 dnl  We need support for -mmmx, we need <emmintrin.h>, and we also need a
1179 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1180 AC_ARG_ENABLE(sse,
1181   [AS_HELP_STRING([--disable-sse],
1182     [disable SSE (1-4) optimizations (default auto)])],, [
1183   case "${host_cpu}" in
1184     i?86|x86_64)
1185       enable_sse=yes
1186       ;;
1187     *)
1188       enable_sse=no
1189       ;;
1190   esac
1191 ])
1192 have_sse2="no"
1193 AS_IF([test "${enable_sse}" != "no"], [
1194   ARCH="${ARCH} sse sse2"
1195
1196   VLC_SAVE_FLAGS
1197   CFLAGS="${CFLAGS} -msse2"
1198   AC_CACHE_CHECK([if $CC groks SSE2 intrinsics], [ac_cv_c_sse2_intrinsics], [
1199     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1200 [#include <emmintrin.h>
1201 #include <stdint.h>
1202 uint64_t frobzor;]], [
1203 [__m128i a, b, c;
1204 a = b = c = _mm_set1_epi64((__m64)frobzor);
1205 a = _mm_slli_epi16(a, 3);
1206 a = _mm_adds_epi16(a, b);
1207 c = _mm_srli_epi16(c, 8);
1208 c = _mm_slli_epi16(c, 3);
1209 b = _mm_adds_epi16(b, c);
1210 a = _mm_unpacklo_epi8(a, b);
1211 frobzor = (uint64_t)_mm_movepi64_pi64(a);]])], [
1212       ac_cv_c_sse2_intrinsics=yes
1213     ], [
1214       ac_cv_c_sse2_intrinsics=no
1215     ])
1216   ])
1217   VLC_RESTORE_FLAGS
1218   AS_IF([test "${ac_cv_c_sse2_intrinsics}" != "no"], [
1219     AC_DEFINE(HAVE_SSE2_INTRINSICS, 1, [Define to 1 if SSE2 intrinsics are available.])
1220   ])
1221
1222   VLC_SAVE_FLAGS
1223   CFLAGS="${CFLAGS} -msse"
1224   AC_CACHE_CHECK([if $CC groks SSE inline assembly], [ac_cv_sse_inline], [
1225     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1226 void *p;
1227 asm volatile("xorps %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1228 ]])
1229     ], [
1230       ac_cv_sse_inline=yes
1231     ], [
1232       ac_cv_sse_inline=no
1233     ])
1234   ])
1235
1236   AS_IF([test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"], [
1237     AC_DEFINE(CAN_COMPILE_SSE, 1, [Define to 1 if SSE inline assembly is available.])
1238   ])
1239
1240   AC_CACHE_CHECK([if $CC groks SSE2 inline assembly], [ac_cv_sse2_inline], [
1241     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1242 void *p;
1243 asm volatile("punpckhqdq %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1244 ]])
1245     ], [
1246       ac_cv_sse2_inline=yes
1247     ], [
1248       ac_cv_sse2_inline=no
1249     ])
1250   ])
1251   AS_IF([test "${ac_cv_sse2_inline}" != "no" -a "${SYS}" != "solaris"], [
1252     AC_DEFINE(CAN_COMPILE_SSE2, 1, [Define to 1 if SSE2 inline assembly is available.])
1253     have_sse2="yes"
1254   ])
1255
1256   # SSE3
1257   AC_CACHE_CHECK([if $CC groks SSE3 inline assembly], [ac_cv_sse3_inline], [
1258     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1259 void *p;
1260 asm volatile("movsldup %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1261 ]])
1262     ], [
1263       ac_cv_sse3_inline=yes
1264     ], [
1265       ac_cv_sse3_inline=no
1266     ])
1267   ])
1268
1269   AS_IF([test "${ac_cv_sse3_inline}" != "no"], [
1270     AC_DEFINE(CAN_COMPILE_SSE3, 1, [Define to 1 if SSE3 inline assembly is available.]) ])
1271   # SSSE3
1272   AC_CACHE_CHECK([if $CC groks SSSE3 inline assembly], [ac_cv_ssse3_inline], [
1273     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1274 void *p;
1275 asm volatile("pabsw %%xmm0,%%xmm0"::"r"(p):"xmm0");
1276 ]])
1277     ], [
1278       ac_cv_ssse3_inline=yes
1279     ], [
1280       ac_cv_ssse3_inline=no
1281     ])
1282   ])
1283
1284   AS_IF([test "${ac_cv_ssse3_inline}" != "no"], [
1285     AC_DEFINE(CAN_COMPILE_SSSE3, 1, [Define to 1 if SSSE3 inline assembly is available.]) ])
1286
1287   # SSE4.1
1288   AC_CACHE_CHECK([if $CC groks SSE4.1 inline assembly],
1289                  [ac_cv_sse4_1_inline], [
1290     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1291 void *p;
1292 asm volatile("pmaxsb %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1293 ]])
1294     ], [
1295       ac_cv_sse4_1_inline=yes
1296     ], [
1297       ac_cv_sse4_1_inline=no
1298     ])
1299   ])
1300
1301   AS_IF([test "${ac_cv_sse4_1_inline}" != "no"], [
1302     AC_DEFINE(CAN_COMPILE_SSE4_1, 1, [Define to 1 if SSE4_1 inline assembly is available.]) ])
1303
1304   # SSE4.2
1305   AC_CACHE_CHECK([if $CC groks SSE4.2 inline assembly],
1306                  [ac_cv_sse4_2_inline], [
1307     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1308 void *p;
1309 asm volatile("pcmpgtq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1310 ]])
1311     ], [
1312       ac_cv_sse4_2_inline=yes
1313     ], [
1314       ac_cv_sse4_2_inline=no
1315     ])
1316   ])
1317
1318   AS_IF([test "${ac_cv_sse4_2_inline}" != "no"], [
1319     AC_DEFINE(CAN_COMPILE_SSE4_2, 1, [Define to 1 if SSE4_2 inline assembly is available.]) ])
1320
1321   # SSE4A
1322   AC_CACHE_CHECK([if $CC groks SSE4A inline assembly], [ac_cv_sse4a_inline], [
1323     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1324 void *p;
1325 asm volatile("insertq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1326 ]])
1327     ], [
1328       ac_cv_sse4a_inline=yes
1329     ], [
1330       ac_cv_sse4a_inline=no
1331     ])
1332   ])
1333   VLC_RESTORE_FLAGS
1334   AS_IF([test "${ac_cv_sse4a_inline}" != "no"], [
1335     AC_DEFINE(CAN_COMPILE_SSE4A, 1, [Define to 1 if SSE4A inline assembly is available.]) ])
1336 ])
1337 AM_CONDITIONAL([HAVE_SSE2], [test "$have_sse2" = "yes"])
1338
1339 VLC_SAVE_FLAGS
1340 CFLAGS="${CFLAGS} -mmmx"
1341 have_3dnow="no"
1342 AC_CACHE_CHECK([if $CC groks 3D Now! inline assembly], [ac_cv_3dnow_inline], [
1343   AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1344 void *p;
1345 asm volatile("pfadd %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1346 ]])
1347   ], [
1348     ac_cv_3dnow_inline=yes
1349   ], [
1350     ac_cv_3dnow_inline=no
1351   ])
1352 ])
1353 VLC_RESTORE_FLAGS
1354 AS_IF([test "${ac_cv_3dnow_inline}" != "no"], [
1355   AC_DEFINE(CAN_COMPILE_3DNOW, 1,
1356             [Define to 1 if 3D Now! inline assembly is available.])
1357   have_3dnow="yes"
1358 ])
1359 AM_CONDITIONAL([HAVE_3DNOW], [test "$have_3dnow" = "yes"])
1360
1361
1362 AC_ARG_ENABLE(neon,
1363   [AS_HELP_STRING([--disable-neon],
1364     [disable NEON optimizations (default auto)])],, [
1365   AS_IF([test "${host_cpu}" = "arm"], [enable_neon="yes"] ,[enable_neon="no"])
1366 ])
1367 AS_IF([test "${enable_neon}" != "no"], [
1368   VLC_SAVE_FLAGS
1369   CFLAGS="${CFLAGS} -mfpu=neon -mhard-float"
1370   AC_CACHE_CHECK([if $CCAS groks ARM NEON assembly], [ac_cv_arm_neon], [
1371     AC_COMPILE_IFELSE([
1372       AC_LANG_PROGRAM(,[[
1373 asm volatile("vqmovun.s64 d0, q1":::"d0");
1374 ]])
1375     ], [
1376       ac_cv_arm_neon="yes"
1377     ], [
1378       ac_cv_arm_neon="no"
1379     ])
1380   ])
1381   VLC_RESTORE_FLAGS
1382 ])
1383 AM_CONDITIONAL(HAVE_NEON, [test "${ac_cv_arm_neon}" = "yes"])
1384
1385
1386 AC_ARG_ENABLE(altivec,
1387   [AS_HELP_STRING([--disable-altivec],
1388     [disable AltiVec optimizations (default auto)])],, [
1389   AS_IF([test "${host_cpu}" = "powerpc"],
1390         [enable_altivec=yes], [enable_altivec=no])
1391 ])
1392 have_altivec="no"
1393 AS_IF([test "${enable_altivec}" = "yes"], [
1394   ARCH="${ARCH} altivec";
1395   VLC_SAVE_FLAGS
1396   AC_CACHE_CHECK([if $CC groks AltiVec inline assembly],
1397     [ac_cv_altivec_inline],
1398     [AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1399          ac_cv_altivec_inline="yes",
1400          [CFLAGS="${CFLAGS} -Wa,-m7400"
1401           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1402             [ac_cv_altivec_inline="-Wa,-m7400"],
1403             ac_cv_altivec_inline=no)
1404          ])])
1405   VLC_RESTORE_FLAGS
1406   AS_IF([test "${ac_cv_altivec_inline}" != "no"], [
1407     AC_DEFINE(CAN_COMPILE_ALTIVEC, 1,
1408               [Define to 1 if AltiVec inline assembly is available.])
1409     AS_IF([test "${ac_cv_altivec_inline}" != "yes"], [
1410       VLC_ADD_CFLAGS([memcpyaltivec],[${ac_cv_altivec_inline}])
1411       VLC_ADD_CFLAGS([i420_yuy2_altivec],[${ac_cv_altivec_inline}])
1412       VLC_ADD_CFLAGS([libvlccore],[${ac_cv_altivec_inline}])
1413     ])
1414     have_altivec="yes"
1415   ])
1416
1417 dnl The AltiVec C extensions
1418 dnl
1419 dnl There are several possible cases:
1420 dnl - OS X PPC, gcc 4.x: use -mpim-altivec -force_cpusubtype_ALL, don't
1421 dnl                      need <altivec.h>
1422 dnl - OS X PPC, gcc 3.x: need -faltivec, don't need <altivec.h>
1423 dnl - Linux PPC, gcc 3.4, 4.x: need <altivec.h> which requires -maltivec
1424 dnl - Linux PPC, gcc 3.3: need <altivec.h> and -maltivec -mabi=altivec
1425 dnl - Linux PPC, gcc 3.x: need <altivec.h> and -fvec
1426 dnl - Others: test should fail
1427   VLC_SAVE_FLAGS
1428   AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1429   [ac_cv_c_altivec],
1430   [# OS X/PPC test (gcc 4.x)
1431    CFLAGS="${CFLAGS} -mpim-altivec -force_cpusubtype_ALL"
1432    AC_TRY_COMPILE([vector unsigned char foo;],
1433      [vec_ld(0, (unsigned char *)0);],
1434      [ac_cv_c_altivec="-mpim-altivec -force_cpusubtype_ALL"],
1435      [# OS X/PPC test (gcc 3.x)
1436       CFLAGS="${CFLAGS} -faltivec"
1437       AC_TRY_COMPILE([vector unsigned char foo;],
1438         [vec_ld(1 * sizeof(vector float), (unsigned char *)0);],
1439         [ac_cv_c_altivec="-faltivec"],
1440         dnl Below this are the Linux tests
1441         [# Linux/PPC test (gcc 4.x)
1442          CFLAGS="${CFLAGS} -maltivec"
1443          AC_TRY_COMPILE([#include <altivec.h>],
1444            [vec_ld(0, (unsigned char *)0);],
1445            [ac_cv_c_altivec="-maltivec"],
1446            [# Linux/PPC test (gcc 3.3)
1447             CFLAGS="${CFLAGS} -maltivec -mabi=altivec"
1448             AC_TRY_COMPILE([#include <altivec.h>],
1449               [vec_ld(0, (unsigned char *)0);],
1450               [ac_cv_c_altivec=""
1451                ac_cv_c_altivec_abi="-maltivec -mabi=altivec"],
1452               [# Linux/PPC test (gcc 3.3)
1453                CFLAGS="${CFLAGS} -fvec"
1454                AC_TRY_COMPILE([#include <altivec.h>],
1455                  [vec_ld(0, (unsigned char *)0);],
1456                  [ac_cv_c_altivec="-fvec"],
1457                  [ac_cv_c_altivec=no])
1458               ])
1459            ])
1460         ])
1461      ])
1462   ])
1463
1464   VLC_RESTORE_FLAGS
1465   AS_IF([test "${ac_cv_c_altivec}" != "no"], [
1466     CPPFLAGS="${CPPFLAGS} ${ac_cv_c_altivec}"
1467     AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, [Define to 1 if C AltiVec extensions are available.])
1468     VLC_ADD_CFLAGS([libvlccore],[${ac_cv_c_altivec}])
1469     VLC_ADD_CFLAGS([i420_yuy2_altivec memcpyaltivec deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1470     have_altivec="yes"
1471   ])
1472   AC_CHECK_HEADERS(altivec.h)
1473
1474   VLC_SAVE_FLAGS
1475   LDFLAGS="${LDFLAGS} -Wl,-framework,vecLib"
1476   AC_CACHE_CHECK([if linker needs -framework vecLib],
1477     [ac_cv_ld_altivec],
1478     [AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)])
1479   VLC_RESTORE_FLAGS
1480   AS_IF([test "${ac_cv_ld_altivec}" != "no"], [
1481     VLC_ADD_LIBS([libvlccore memcpyaltivec],[-Wl,-framework,vecLib])
1482   ])
1483 ])
1484 AM_CONDITIONAL([HAVE_ALTIVEC], [test "$have_altivec" = "yes"])
1485
1486 dnl
1487 dnl  Memory usage
1488 dnl
1489 AC_ARG_ENABLE(optimize-memory,
1490   [AS_HELP_STRING([--enable-optimize-memory],
1491     [optimize memory usage over performance])])
1492 if test "${enable_optimize_memory}" = "yes"; then
1493   AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1494 fi
1495
1496 dnl
1497 dnl Allow running as root (useful for people running on embedded platforms)
1498 dnl
1499 AC_ARG_ENABLE(run-as-root,
1500   [AS_HELP_STRING([--enable-run-as-root],
1501     [allow running VLC as root (default disabled)])])
1502 AS_IF([test "${enable_run_as_root}" = "yes"],[
1503     AC_DEFINE(ALLOW_RUN_AS_ROOT, 1,
1504               [Define to 1 to allow running VLC as root (uid 0).])
1505 ])
1506
1507 dnl
1508 dnl Stream output
1509 dnl
1510 AC_ARG_ENABLE(sout,
1511   [AS_HELP_STRING([--disable-sout],
1512     [disable streaming output (default enabled)])])
1513 AS_IF([test "${enable_sout}" != "no"], [
1514   AC_DEFINE(ENABLE_SOUT, 1, [Define to 1 for stream output support.])
1515 ])
1516 AM_CONDITIONAL(ENABLE_SOUT, [test "${enable_sout}" != "no"])
1517
1518 dnl Lua modules
1519 AC_ARG_ENABLE(lua,
1520   [AS_HELP_STRING([--disable-lua],
1521     [disable LUA scripting support (default enabled)])])
1522 if test "${enable_lua}" != "no"
1523 then
1524   PKG_CHECK_MODULES(LUA, lua5.1,
1525     [ have_lua=yes ],
1526     [
1527     AC_MSG_WARN([${LUA_PKG_ERRORS}, trying lua >= 5.1 instead])
1528     PKG_CHECK_MODULES(LUA, lua >= 5.1,
1529       [ have_lua=yes ],
1530       [
1531         AC_MSG_WARN([${LUA_PKG_ERRORS}, trying manual detection instead])
1532         have_lua=yes
1533         AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
1534           [],
1535           [ have_lua=no ] )
1536         AC_CHECK_LIB(  lua5.1 , luaL_newstate,
1537           [LUA_LIBS="-llua5.1"],
1538           AC_CHECK_LIB( lua51 , luaL_newstate,
1539             [LUA_LIBS="-llua51"],
1540             AC_CHECK_LIB( lua , luaL_newstate,
1541               [LUA_LIBS="-llua"],
1542               [ have_lua=no
1543               ], [-lm])
1544           )
1545         )
1546       ])
1547     ])
1548   if test "x${have_lua}" = "xyes" ;  then
1549      VLC_ADD_LIBS([lua],[$LUA_LIBS])
1550      VLC_ADD_CFLAGS([lua],[$LUA_CFLAGS])
1551   else
1552       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.])
1553   fi
1554   AC_ARG_VAR([LUAC], [LUA byte compiler])
1555   AC_PATH_PROGS(LUAC,[${LUAC} luac], [false])
1556   AS_IF([test "${LUAC}" = "false"], [
1557     AC_MSG_ERROR([Could not find the LUA byte compiler.])
1558   ])
1559 fi
1560 AM_CONDITIONAL(BUILD_LUA, [test "${have_lua}" = "yes"])
1561
1562
1563 dnl
1564 dnl HTTP daemon
1565 dnl
1566 AC_ARG_ENABLE(httpd,
1567   [AS_HELP_STRING([--disable-httpd],
1568     [disable the built-in HTTP server (default enabled)])])
1569 if test "${enable_httpd}" != "no"
1570 then
1571   AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP daemon support)
1572 fi
1573 AM_CONDITIONAL(BUILD_HTTPD, [test "${enable_httpd}" != "no"])
1574
1575
1576 dnl
1577 dnl VideoLAN manager
1578 dnl
1579 AC_ARG_ENABLE(vlm,
1580   [AS_HELP_STRING([--disable-vlm],
1581     [disable the stream manager (default enabled)])],,
1582   [enable_vlm="${enable_sout}"])
1583 AS_IF([test "${enable_vlm}" != "no"], [
1584   AS_IF([test "${enable_sout}" = "no"], [
1585     AC_MSG_ERROR([VLM requires the stream output. Do not use --disable-sout.])
1586   ])
1587   AC_DEFINE(ENABLE_VLM, 1, [Define if you want the VideoLAN manager support])
1588 ])
1589 AM_CONDITIONAL([ENABLE_VLM], [test "${enable_vlm}" != "no"])
1590
1591
1592 dnl
1593 dnl  Input plugins
1594 dnl
1595
1596 EXTEND_HELP_STRING([Input plugins:])
1597
1598 dnl
1599 dnl libproxy support
1600 dnl
1601 AC_ARG_ENABLE(libproxy,
1602   [AS_HELP_STRING([--enable-libproxy],[support libproxy (default auto)])])
1603 AS_IF([test "${enable_libproxy}" != "no"], [
1604   PKG_CHECK_MODULES(LIBPROXY, libproxy-1.0, [
1605     AC_DEFINE(HAVE_LIBPROXY, 1, [Define if libproxy is available])
1606     VLC_ADD_CFLAGS([access_http],[$LIBPROXY_CFLAGS])
1607     VLC_ADD_LIBS([access_http],[$LIBPROXY_LIBS])
1608   ], [
1609     AS_IF([test -n "${enable_libproxy}"], [
1610       AC_MSG_ERROR([${LIBPROXY_PKG_ERRORS}.])
1611     ])
1612   ])
1613 ])
1614
1615 dnl
1616 dnl  live555 input
1617 dnl
1618 AC_ARG_ENABLE(live555,
1619   [AS_HELP_STRING([--enable-live555],
1620     [enable RTSP input through live555 (default enabled)])])
1621 AS_IF([test "${enable_live555}" != "no" -a -n "${CXX}"], [
1622   AC_LANG_PUSH(C++)
1623   VLC_SAVE_FLAGS
1624   AS_IF([test -z "${CONTRIB_DIR}"], [
1625     AS_IF([test ${SYS} != "os2"], [
1626       LIVE555_PREFIX=${LIVE555_PREFIX-"/usr"}
1627       CPPFLAGS_live555="-I${LIVE555_PREFIX}/include/liveMedia -I${LIVE555_PREFIX}/include/groupsock -I${LIVE555_PREFIX}/include/BasicUsageEnvironment -I${LIVE555_PREFIX}/include/UsageEnvironment"
1628     ], [
1629       LIVE555_PREFIX=${LIVE555_PREFIX-"/usr/lib/live"}
1630       CPPFLAGS_live555="-I${LIVE555_PREFIX}/liveMedia/include -I${LIVE555_PREFIX}/groupsock/include -I${LIVE555_PREFIX}/BasicUsageEnvironment/include -I${LIVE555_PREFIX}/UsageEnvironment/include"
1631       LDFLAGS_live555="-L${LIVE555_PREFIX}/liveMedia -L${LIVE555_PREFIX}/groupsock -L${LIVE555_PREFIX}/BasicUsageEnvironment -L${LIVE555_PREFIX}/UsageEnvironment"
1632     ])
1633   ], [
1634     CPPFLAGS_live555="-I${CONTRIB_DIR}/include/liveMedia -I${CONTRIB_DIR}/include/groupsock -I${CONTRIB_DIR}/include/BasicUsageEnvironment -I${CONTRIB_DIR}/include/UsageEnvironment"
1635   ])
1636   AS_IF([test "${SYS}" = "solaris"], [
1637     CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS"
1638   ])
1639   CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}"
1640   LDFLAGS="${LDFLAGS} ${LDFLAGS_live555}"
1641
1642   AC_CACHE_CHECK([for live555 version 1324598400 or later], [ac_cv_live555], [
1643     AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1644 [#include <liveMedia_version.hh>
1645 #if !defined (LIVEMEDIA_LIBRARY_VERSION_INT) || (LIVEMEDIA_LIBRARY_VERSION_INT < 1324598400)
1646 # error BOOM
1647 #endif]])
1648     ], [
1649       ac_cv_live555="yes"
1650     ], [
1651       ac_cv_live555="no"
1652     ])
1653   ])
1654   AS_IF([test "$ac_cv_live555" = "no"], [
1655     AC_MSG_WARN([liveMedia is missing or its installed version is too old:
1656 Version 2011.12.23 or later is required to proceed.
1657 You can get an updated one from http://www.live555.com/liveMedia .])
1658     AS_IF([test -n "${enable_live555}"], [
1659       AC_MSG_ERROR([Update live555 or pass --disable-live555 to disable RTSP input support.])
1660     ])
1661   ], [
1662     other_libs="-lgroupsock -lBasicUsageEnvironment -lUsageEnvironment"
1663     other_libs_pic="-lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic"
1664     AS_IF([test "${SYS}" = "mingw32"], [
1665       # add ws2_32 for closesocket, select, recv
1666       other_libs="$other_libs -lws2_32"
1667     ], [test "${SYS}" = "mingwce"], [
1668       # add ws2 for closesocket, select, recv
1669       other_libs="$other_libs -lws2"
1670     ])
1671
1672     dnl We need to check for pic because live555 don't provide shared libs
1673     dnl and we want to build a plugins so we need -fPIC on some arch.
1674     VLC_ADD_CXXFLAGS([live555], [${CPPFLAGS_live555}])
1675     VLC_ADD_LDFLAGS([live555], [${LDFLAGS_live555}])
1676     AC_CHECK_LIB(liveMedia_pic, main, [
1677       VLC_ADD_PLUGIN([live555])
1678       VLC_ADD_LIBS([live555], [-lliveMedia_pic ${other_libs_pic}])
1679     ],[
1680       AC_CHECK_LIB(liveMedia, main, [
1681         VLC_ADD_PLUGIN([live555])
1682         VLC_ADD_LIBS([live555], [-lliveMedia ${other_libs}])
1683       ],[],[${other_libs}])],[${other_libs_pic}])
1684   ])
1685   VLC_RESTORE_FLAGS
1686   AC_LANG_POP(C++)
1687 ])
1688
1689 dnl
1690 dnl - special access module for dc1394 input
1691 dnl - dv module: digital video module check for libraw1394
1692 dnl - linsys modules: access module check for libzvbi
1693 dnl
1694 PKG_ENABLE_MODULES_VLC([DC1394], [], [libdc1394-2 >= 2.1.0], [IIDC FireWire input module], [auto])
1695 PKG_ENABLE_MODULES_VLC([DV1394], [], [libraw1394 >= 2.0.1 libavc1394 >= 0.5.3], [DV FireWire input module], [auto])
1696
1697 AC_ARG_ENABLE(linsys,
1698   [AS_HELP_STRING([--enable-linsys],
1699     [Linux Linear Systems Ltd. SDI and HD-SDI input cards (default enabled)])])
1700 if test "$SYS" = "linux" -a "${enable_linsys}" != "no"; then
1701   VLC_ADD_PLUGIN([linsys_hdsdi])
1702   PKG_CHECK_MODULES(LINSYS_SDI, [zvbi-0.2 >= 0.2.28],
1703     [ VLC_ADD_LIBS([linsys_sdi],[$LINSYS_SDI_LIBS])
1704       VLC_ADD_CFLAGS([linsys_sdi],[$LINSYS_SDI_CFLAGS])
1705       VLC_ADD_PLUGIN([linsys_sdi]) ],
1706     [AC_MSG_WARN([${LINSYS_SDI_PKG_ERRORS}.])]
1707   )
1708 fi
1709
1710 dnl
1711 dnl dvdread module: check for libdvdread
1712 dnl
1713 PKG_ENABLE_MODULES_VLC([DVDREAD], [], [dvdread], [dvdread input module], [auto])
1714
1715 dnl
1716 dnl libdvdnav plugin
1717 dnl
1718 AC_ARG_ENABLE(dvdnav,
1719   [AS_HELP_STRING([--disable-dvdnav],
1720     [disable DVD navigation with libdvdnav (default auto)])])
1721 if test "${enable_dvdnav}" != "no"
1722 then
1723   PKG_CHECK_MODULES(DVDNAV, dvdnav, [
1724     VLC_ADD_PLUGIN([dvdnav])
1725     VLC_ADD_CFLAGS([dvdnav],[${DVDNAV_CFLAGS}])
1726     VLC_ADD_LIBS([dvdnav],[${DVDNAV_LIBS}])
1727     AC_CHECK_LIB(dvdnav, dvdnav_get_video_resolution,
1728       AC_DEFINE(HAVE_DVDNAV_GET_VIDEO_RESOLUTION, 1, [Define if you have dvdnav_get_video_resolution.]),
1729         [], [${LIBS_dvdnav}])
1730     AC_CHECK_LIB(dvdnav, dvdnav_describe_title_chapters,
1731       AC_DEFINE(HAVE_DVDNAV_DESCRIBE_TITLE_CHAPTERS, 1, [Define if you have dvdnav_describe_title_chapters.]),
1732         [], [${LIBS_dvdnav}])],
1733       [AC_MSG_WARN([${DVDNAV_PKG_ERRORS}.])])
1734 fi
1735
1736 dnl
1737 dnl  Windows DirectShow access module
1738 dnl
1739 AC_ARG_ENABLE(dshow,
1740   [AS_HELP_STRING([--disable-dshow],
1741     [support DirectShow (default auto)])])
1742 if test "${enable_dshow}" != "no"
1743 then
1744   if test "${SYS}" = "mingw32"
1745   then
1746     AC_LANG_PUSH(C++)
1747       AC_CHECK_HEADERS(dshow.h,
1748       [ VLC_ADD_PLUGIN([dshow])
1749         VLC_ADD_CXXFLAGS([dshow],[])
1750         VLC_ADD_LIBS([dshow],[-lole32 -loleaut32 -luuid -lstrmiids -lksuser])])
1751     AC_LANG_POP(C++)
1752   fi
1753 fi
1754
1755 dnl
1756 dnl  Blu-ray Disc Support with libbluray
1757 dnl
1758 PKG_ENABLE_MODULES_VLC([BLURAY], [libbluray], [libbluray >= 0.2.1], (libbluray for Blu-ray disc support ) )
1759
1760 dnl
1761 dnl  OpenCV wrapper and example filters
1762 dnl
1763 PKG_ENABLE_MODULES_VLC([OPENCV], [opencv_example opencv_wrapper], [opencv > 2.0], (OpenCV (computer vision) filter), [auto])
1764
1765
1766 dnl
1767 dnl  libsmbclient plugin
1768 dnl
1769 AC_ARG_ENABLE(smb,
1770   [AS_HELP_STRING([--disable-smb], [disable SMB/CIFS support (default auto)])])
1771 if test "${enable_smb}" != "no"; then
1772   AC_CHECK_HEADERS(libsmbclient.h,
1773     [ VLC_ADD_PLUGIN([access_smb])
1774       VLC_ADD_LIBS([access_smb],[-lsmbclient]) ],
1775     [ if test -n "${enable_smb}"; then
1776         AC_MSG_ERROR([cannot find libsmbclient headers])
1777      fi ])
1778 fi
1779
1780
1781 dnl
1782 dnl sftp access support
1783 dnl
1784 AC_ARG_ENABLE(sftp,
1785   [AS_HELP_STRING([--enable-sftp],
1786     [support SFTP file transfer via libssh2 (default disabled)])])
1787 if test "${enable_sftp}" = "yes"; then
1788   AC_CHECK_HEADERS(libssh2.h, [
1789     VLC_ADD_PLUGIN([access_sftp])
1790     VLC_ADD_LIBS([access_sftp], [-lssh2])
1791   ])
1792 fi
1793
1794 dnl
1795 dnl  Video4Linux 2
1796 dnl
1797 AC_ARG_ENABLE(v4l2, [AS_HELP_STRING([--disable-v4l2],
1798   [disable Video4Linux version 2 (default auto)])])
1799 AC_ARG_ENABLE(pvr, [AS_HELP_STRING([--enable-pvr],
1800   [support PVR V4L2 cards (default disabled)])])
1801 have_v4l2="no"
1802 AS_IF([test "$enable_v4l2" != "no"], [
1803   AC_CHECK_HEADERS([linux/videodev2.h sys/videoio.h], [
1804     have_v4l2="yes"
1805   ])
1806   AC_CHECK_DECLS([V4L2_CTRL_TYPE_BITMASK,V4L2_CTRL_TYPE_INTEGER_MENU],,, [
1807 #ifdef HAVE_LINUX_VIDEODEV2_H
1808 # include <linux/videodev2.h>
1809 #endif
1810 #ifdef HAVE_SYS_VIDEOIO_H
1811 # include <sys/videoio.h>
1812 #endif
1813   ])
1814 ])
1815 AS_IF([test "$have_v4l2" = "yes"], [
1816   AS_IF([test "${enable_pvr}" = "yes"], [
1817     VLC_ADD_PLUGIN([pvr])
1818   ])
1819 ])
1820 AM_CONDITIONAL(HAVE_V4L2, [test "${have_v4l2}" != "no"])
1821
1822 dnl
1823 dnl special access module for Blackmagic SDI cards
1824 dnl
1825 AC_ARG_ENABLE(decklink,
1826   [AS_HELP_STRING([--disable-decklink],
1827     [disable Blackmagic DeckLink SDI input (default auto)])])
1828 AC_ARG_WITH(decklink_sdk,
1829   [AS_HELP_STRING[--with-decklink-sdk=DIR],
1830     [                        location of Blackmagic DeckLink SDI SDK])])
1831 if test "${enable_decklink}" != "no"
1832 then
1833   if test "${with_decklink_sdk}" != "no" -a -n "${with_decklink_sdk}"
1834   then
1835     VLC_ADD_CPPFLAGS([decklink],[-I${with_decklink_sdk}/include])
1836   fi
1837   VLC_SAVE_FLAGS
1838   CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_decklink}"
1839   AC_LANG_PUSH(C++)
1840   AC_CHECK_HEADERS(DeckLinkAPIDispatch.cpp, [
1841     VLC_ADD_PLUGIN([decklink])
1842   ],[AC_MSG_WARN(Blackmagic DeckLink SDI include files not found, decklink disabled)])
1843   AC_LANG_POP(C++)
1844   VLC_RESTORE_FLAGS
1845 fi
1846
1847
1848 dnl
1849 dnl  gnomeVFS access module
1850 dnl
1851 PKG_ENABLE_MODULES_VLC([GNOMEVFS], [access_gnomevfs], [gnome-vfs-2.0], [GnomeVFS access module], [auto])
1852
1853 dnl
1854 dnl  VCDX modules
1855 dnl
1856 AC_ARG_ENABLE(vcdx,
1857   [AS_HELP_STRING([--enable-vcdx],
1858     [navigate VCD with libvcdinfo (default disabled)])])
1859 if test "${enable_vcdx}" = "yes"
1860 then
1861     PKG_CHECK_MODULES(LIBCDIO, [libcdio >= 0.78.2 libiso9660 >= 0.72],
1862       [VLC_ADD_LIBS([vcdx],[$LIBCDIO_LIBS])
1863          VLC_ADD_CFLAGS([vcdx],[$LIBCDIO_CFLAGS])],
1864         [AC_MSG_ERROR([${LIBCDIO_PKG_ERRORS} (required for vcdx plugin).])])
1865     PKG_CHECK_MODULES(LIBVCDINFO, libvcdinfo >= 0.7.22,
1866         [VLC_ADD_LIBS([vcdx],[$LIBVCDINFO_LIBS])
1867          VLC_ADD_CFLAGS([vcdx],[$LIBVCDINFO_CFLAGS])],
1868       [AC_MSG_ERROR([${LIBVCDINFO_PKG_ERRORS} (required for vcdx plugin).])])
1869     VLC_ADD_PLUGIN([vcdx])
1870 fi
1871
1872 dnl
1873 dnl  Built-in CD-DA and VCD module
1874 dnl
1875 AC_ARG_ENABLE(vcd,
1876   [AS_HELP_STRING([--disable-vcd],
1877     [disable built-in VCD and CD-DA support (default enabled)])])
1878
1879 AC_ARG_ENABLE(libcddb,
1880   [AS_HELP_STRING([--disable-libcddb],
1881     [disable CDDB for Audio CD (default enabled)])])
1882
1883 if test "${enable_vcd}" != "no"
1884 then
1885   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1886   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1887     AC_MSG_RESULT(yes)
1888     VLC_ADD_PLUGIN([vcd cdda])
1889   ],[
1890     AC_MSG_RESULT(no)
1891   ])
1892
1893   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1894   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1895     AC_MSG_RESULT(yes)
1896     VLC_ADD_PLUGIN([vcd cdda])
1897     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1898   ],[
1899     AC_MSG_RESULT(no)
1900   ])
1901
1902   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1903   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1904     AC_MSG_RESULT(yes)
1905     VLC_ADD_PLUGIN([vcd cdda])
1906     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1907   ],[
1908     AC_MSG_RESULT(no)
1909   ])
1910
1911   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32" -o "${SYS}" = "os2"
1912   then
1913     VLC_ADD_PLUGIN([vcd cdda])
1914   fi
1915
1916   if test "${SYS}" = "darwin"
1917   then
1918     VLC_ADD_PLUGIN([vcd cdda])
1919     VLC_ADD_LIBS([vcd vcdx cdda],[-Wl,-framework,IOKit,-framework,CoreFoundation])
1920     VLC_ADD_LIBS([vcdx cdda],[-liconv])
1921   fi
1922
1923   if test "$enable_libcddb" != "no"; then
1924     PKG_CHECK_MODULES(LIBCDDB, [libcddb >= 0.9.5], [
1925       HAVE_LIBCDDB=yes
1926       AC_DEFINE(HAVE_LIBCDDB, 1, [Define this if you have libcddb installed])
1927       VLC_ADD_LIBS([cdda],[$LIBCDDB_LIBS])
1928       VLC_ADD_CFLAGS([cdda],[$LIBCDDB_CFLAGS])
1929       ],:
1930       [AC_MSG_WARN([${LIBCDDB_PKG_ERRORS}: CDDB access disabled.])
1931       HAVE_LIBCDDB=no])
1932   fi
1933 fi
1934
1935 dnl
1936 dnl Linux DVB
1937 dnl
1938 AC_CACHE_CHECK([for Linux DVB version 5.1], [ac_cv_linux_dvb_5_1], [
1939   AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1940 [#include <linux/dvb/version.h>
1941 #if (DVB_API_VERSION < 5)
1942 # error Linux DVB API v3.2 and older are not supported.
1943 #endif
1944 #if (DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR < 1)
1945 # error Linux DVB API v5.0 is unsupported. Please update.
1946 #endif
1947 ]])], [
1948   ac_cv_linux_dvb_5_1=yes
1949 ], [
1950   ac_cv_linux_dvb_5_1=no
1951 ])])
1952 AM_CONDITIONAL([HAVE_LINUX_DVB], [test "$ac_cv_linux_dvb_5_1" = "yes"])
1953
1954 dnl
1955 dnl  Screen capture module
1956 dnl
1957 AC_ARG_ENABLE(screen,
1958   [AS_HELP_STRING([--enable-screen],
1959     [disable screen capture (default enabled)])])
1960 if test "${enable_screen}" != "no"; then
1961   if test "${SYS}" = "darwin"; then
1962     AC_CHECK_HEADERS(OpenGL/gl.h, [
1963       AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
1964         VLC_ADD_PLUGIN([screen])
1965         VLC_ADD_LIBS([screen],[-Wl,-framework,OpenGL,-framework,ApplicationServices])
1966       ])
1967     ])
1968   elif test "${SYS}" = "mingw32"; then
1969     VLC_ADD_PLUGIN([screen])
1970     VLC_ADD_LIBS([screen],[-lgdi32])
1971   fi
1972 fi
1973
1974 dnl
1975 dnl  Real RTSP plugin
1976 dnl
1977 AC_ARG_ENABLE(realrtsp,
1978   [  --enable-realrtsp       Real RTSP module (default disabled)])
1979 if test "${enable_realrtsp}" = "yes"; then
1980   VLC_ADD_PLUGIN([access_realrtsp])
1981 fi
1982
1983 dnl
1984 dnl MacOS eyeTV
1985 AC_ARG_ENABLE(macosx-eyetv,
1986   [  --enable-macosx-eyetv   Mac OS X EyeTV (TNT Tuner) module (default enabled on Mac OS X)])
1987 if test "x${enable_macosx_eyetv}" != "xno" &&
1988   (test "${SYS}" = "darwin" || test "${enable_macosx_eyetv}" = "yes")
1989 then
1990   VLC_ADD_LIBS([access_eyetv], [-Wl,-framework,Foundation])
1991   VLC_ADD_PLUGIN([access_eyetv])
1992 fi
1993
1994 dnl
1995 dnl QTKit
1996 AC_ARG_ENABLE(macosx-qtkit,
1997   [  --enable-macosx-qtkit Mac OS X qtcapture (video) and qtsound (audio) module (default enabled on Mac OS X)])
1998 if test "x${enable_macosx_qtkit}" != "xno" &&
1999   (test "${SYS}" = "darwin" || test "${enable_macosx_qtkit}" = "yes")
2000 then
2001   VLC_ADD_PLUGIN([qtcapture])
2002   VLC_ADD_PLUGIN([qtsound])
2003 fi
2004 AM_CONDITIONAL(HAVE_QTKIT, [test "${SYS}" = "darwin" -a "x${enable_macosx_qtkit}" != "xno"])
2005
2006
2007 dnl
2008 dnl  Demux plugins
2009 dnl
2010
2011 EXTEND_HELP_STRING([Mux/Demux plugins:])
2012
2013 dnl
2014 dnl  libdvbpsi check for ts mux/demux
2015 dnl
2016 have_dvbpsi="no"
2017 PKG_WITH_MODULES([DVBPSI], [libdvbpsi], [have_dvbpsi="yes"])
2018 AM_CONDITIONAL(HAVE_DVBPSI, [test "${have_dvbpsi}" = "yes"])
2019
2020
2021 dnl
2022 dnl  GME demux plugin
2023 dnl
2024 AC_ARG_ENABLE(gme,
2025   [AS_HELP_STRING([--enable-gme],
2026     [use Game Music Emu (default auto)])])
2027 AS_IF([test "${enable_gme}" != "no"], [
2028   AC_CHECK_HEADER([gme/gme.h], [
2029     VLC_ADD_LIBS([gme], [-lgme])
2030     VLC_ADD_PLUGIN([gme])
2031   ], [
2032     AS_IF([test "x${enable_gme}" != "x"], [
2033       AC_MSG_ERROR([GME cannot be found. Please install the development files.])
2034     ])
2035   ])
2036 ])
2037
2038
2039 dnl
2040 dnl  SIDPlay plugin
2041 dnl
2042 AC_ARG_ENABLE(sid,
2043     [AS_HELP_STRING([--enable-sid],[C64 sid demux support (default auto)])])
2044 AS_IF([test "${enable_sid}" != "no"], [
2045     PKG_CHECK_MODULES(SID, [libsidplay2], [
2046         AC_LANG_PUSH(C++)
2047         oldCPPFLAGS="$CPPFLAGS"
2048         CPPFLAGS="$CPPFLAGS $SID_CFLAGS"
2049         AC_CHECK_HEADER([sidplay/builders/resid.h], [
2050             VLC_ADD_PLUGIN([sid])
2051             VLC_ADD_CFLAGS([sid], [$SID_CFLAGS])
2052             VLC_ADD_LIBS([sid], [$SID_LIBS] [-lresid-builder])
2053         ], [
2054             AS_IF([test -n "${enable_sid}"],
2055                 [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
2056                 [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2057                 )
2058         ])
2059         CPPFLAGS="$oldCPPFLAGS"
2060         AC_LANG_POP(C++)
2061     ], [
2062         AS_IF([test "x${enable_sid}" = "xyes"],
2063             [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
2064             [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2065             )
2066     ])
2067 ])
2068
2069
2070 dnl
2071 dnl  ogg demux plugin
2072 dnl
2073 PKG_ENABLE_MODULES_VLC([OGG], [], [ogg >= 1.0], [Ogg demux support], [auto])
2074 if test "${enable_sout}" != "no"; then
2075     PKG_ENABLE_MODULES_VLC([MUX_OGG], [], [ogg >= 1.0], [Ogg mux support], [auto])
2076 dnl Check for libshout
2077     PKG_ENABLE_MODULES_VLC([SHOUT], [access_output_shout], [shout >= 2.1], [libshout output plugin], [auto])
2078 fi
2079
2080 dnl
2081 dnl  matroska demux plugin
2082 dnl
2083 AC_ARG_ENABLE(mkv,
2084   [AS_HELP_STRING([--disable-mkv],
2085     [do not use libmatroska (default auto)])])
2086 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
2087   AC_LANG_PUSH(C++)
2088   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
2089     AC_MSG_CHECKING(for libebml version >= 1.0.0)
2090     AC_EGREP_CPP(yes,
2091       [#include <ebml/EbmlVersion.h>
2092        #ifdef LIBEBML_VERSION
2093        #if LIBEBML_VERSION >= 0x010000
2094        yes
2095        #endif
2096        #endif],
2097       [AC_MSG_RESULT([yes])
2098         AC_CHECK_HEADERS(matroska/KaxVersion.h, [
2099           AC_MSG_CHECKING(for libmatroska version >= 1.0.0)
2100           AC_EGREP_CPP(yes,
2101             [#include <matroska/KaxVersion.h>
2102              #ifdef LIBMATROSKA_VERSION
2103              #if LIBMATROSKA_VERSION >= 0x010000
2104              yes
2105              #endif
2106              #endif],
2107             [AC_MSG_RESULT([yes])
2108               AC_CHECK_HEADERS(matroska/KaxAttachments.h)
2109               VLC_ADD_CXXFLAGS([mkv],[])
2110               AC_CHECK_LIB(ebml_pic, main, [
2111                 VLC_ADD_PLUGIN([mkv])
2112                 VLC_ADD_LIBS([mkv],[-lmatroska -lebml_pic])
2113               ],[
2114                 AC_CHECK_LIB(ebml, main, [
2115                   VLC_ADD_PLUGIN([mkv])
2116                   VLC_ADD_LIBS([mkv],[-lmatroska -lebml])
2117                 ])
2118               ])
2119             ], [
2120               AC_MSG_RESULT([no])
2121               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.])
2122           ])
2123         ])
2124       ],
2125       [AC_MSG_RESULT([no])
2126         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.])
2127     ])
2128   ])
2129   AC_LANG_POP(C++)
2130 fi
2131
2132 dnl
2133 dnl  modplug demux plugin
2134 dnl
2135 AC_ARG_ENABLE(mod,
2136   [AS_HELP_STRING([--disable-mod],
2137     [do not use libmodplug (default auto)])])
2138 if test "${enable_mod}" != "no" ; then
2139     PKG_CHECK_MODULES(LIBMODPLUG, [libmodplug >= 0.8.4 libmodplug != 0.8.8], [
2140           VLC_ADD_PLUGIN([mod])
2141           VLC_ADD_CXXFLAGS([mod],[$LIBMODPLUG_CFLAGS])
2142           VLC_ADD_LIBS([mod],[$LIBMODPLUG_LIBS])
2143     ],[
2144        AS_IF([test -n "${enable_mod}"],
2145          [AC_MSG_ERROR([${LIBMODPLUG_PKG_ERRORS}.])],
2146          [AC_MSG_WARN([${LIBMODPLUG_PKG_ERRORS}.])])
2147     ])
2148 fi
2149
2150 dnl
2151 dnl  mpc demux plugin
2152 dnl
2153 AC_ARG_ENABLE(mpc,
2154   [AS_HELP_STRING([--disable-mpc], [do not use libmpcdec (default auto)])])
2155 if test "${enable_mpc}" != "no"
2156 then
2157   AC_CHECK_HEADERS([mpc/mpcdec.h], [
2158     VLC_ADD_PLUGIN([mpc])
2159     VLC_ADD_LIBS([mpc],[-lmpcdec])],
2160     [AC_CHECK_HEADERS([mpcdec/mpcdec.h], [
2161     VLC_ADD_PLUGIN([mpc])
2162     VLC_ADD_LIBS([mpc],[-lmpcdec])])])
2163 fi
2164
2165 dnl
2166 dnl  Codec plugins
2167 dnl
2168
2169 EXTEND_HELP_STRING([Codec plugins:])
2170
2171 dnl
2172 dnl wmafixed plugin
2173 dnl
2174 AC_ARG_ENABLE(wma-fixed,
2175   [  --enable-wma-fixed      libwma-fixed module (default disabled)])
2176 if test "${enable_wma_fixed}" = "yes"
2177 then
2178   VLC_ADD_PLUGIN([wma_fixed])
2179 fi
2180
2181 dnl
2182 dnl shine fixed point mp3 encoder
2183 dnl
2184 AC_ARG_ENABLE(shine,
2185   [  --enable-shine          shine mp3 encoding module (default disabled)])
2186 if test "${enable_shine}" = "yes"
2187 then
2188   VLC_ADD_PLUGIN([shine])
2189 fi
2190
2191 dnl
2192 dnl openmax il codec plugin
2193 dnl
2194 AC_ARG_ENABLE(omxil,
2195   [  --enable-omxil          openmax il codec module (default disabled)])
2196 if test "${enable_omxil}" = "yes"
2197 then
2198   VLC_ADD_PLUGIN([omxil])
2199   VLC_ADD_LIBS([omxil], [$LIBDL])
2200 fi
2201
2202 dnl
2203 dnl iomx codec plugin
2204 dnl
2205 AC_ARG_ENABLE(iomx,
2206   [  --enable-iomx           iomx codec module (default disabled)])
2207 if test "${enable_iomx}" = "yes"
2208 then
2209   VLC_ADD_PLUGIN([iomx])
2210 fi
2211
2212 dnl
2213 dnl CrystalHD codec plugin
2214 dnl
2215 AC_ARG_ENABLE(crystalhd,
2216   [  --enable-crystalhd      crystalhd codec plugin (default auto)])
2217 if test "${enable_crystalhd}" != "no"; then
2218     AC_CHECK_HEADER(libcrystalhd/libcrystalhd_if.h, [
2219       VLC_ADD_PLUGIN([crystalhd])
2220       VLC_ADD_LIBS([crystalhd], [-lcrystalhd])
2221     ],[
2222       if test "${SYS}" = "mingw32" ; then
2223         AC_CHECK_HEADERS(libcrystalhd/bc_dts_defs.h, [
2224           VLC_ADD_PLUGIN([crystalhd])
2225           AC_CHECK_HEADERS(libcrystalhd/bc_drv_if.h, [
2226             VLC_ADD_LIBS([crystalhd], [-lbcmDIL])
2227             ])
2228         ],[
2229           AS_IF([test x"${enable_crystalhd}" = "xyes"],
2230                 [AC_MSG_ERROR("Could not find CrystalHD development headers")],
2231                 [AC_MSG_WARN("Could not find CrystalHD development headers")])
2232         ],[#define __LINUX_USER__
2233                #include <libcrystalhd/bc_dts_types.h>
2234         ])
2235       fi
2236     ],[
2237        #include <libcrystalhd/bc_dts_types.h>
2238       ])
2239 fi
2240
2241 dnl
2242 dnl  mad plugin
2243 dnl
2244 AC_ARG_ENABLE(mad,
2245   [  --enable-mad            libmad module (default enabled)])
2246 if test "${enable_mad}" != "no"
2247 then
2248   AC_ARG_WITH(mad,
2249     [  --with-mad=PATH         path to libmad],[],[])
2250   if test "${with_mad}" != "no" -a -n "${with_mad}"
2251   then
2252     VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
2253     VLC_ADD_LIBS([mpgatofixed32],[-L${with_mad}/lib])
2254   fi
2255
2256   AC_ARG_WITH(mad-tree,
2257     [  --with-mad-tree=PATH    mad tree for static linking],[],[])
2258   if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
2259   then
2260     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
2261     if test -z "${real_mad_tree}"
2262     then
2263       dnl  The given directory can't be found
2264       AC_MSG_RESULT(no)
2265       AC_MSG_ERROR([${with_mad_tree} directory does not exist])
2266     fi
2267     dnl  Use a custom libmad
2268     AC_MSG_CHECKING(for mad.h in ${real_mad_tree})
2269     if test -f ${real_mad_tree}/mad.h
2270     then
2271       AC_MSG_RESULT(yes)
2272       VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}])
2273       VLC_ADD_LIBS([mpgatofixed32],[-L${real_mad_tree}/.libs])
2274       VLC_SAVE_FLAGS
2275       LDFLAGS="${LDFLAGS} ${LIBS_mpgatofixed32}"
2276       AC_CHECK_LIB(mad, mad_bit_init, [
2277         VLC_ADD_PLUGIN([mpgatofixed32])
2278         VLC_ADD_LIBS([mpgatofixed32],[-lmad])
2279         ],[ AC_MSG_ERROR([the specified tree has not been compiled ])
2280       ],[])
2281       VLC_RESTORE_FLAGS
2282     else
2283       AC_MSG_RESULT(no)
2284       AC_MSG_ERROR([the specified tree does not have mad.h])
2285     fi
2286   else
2287     VLC_SAVE_FLAGS
2288     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_mpgatofixed32}"
2289     LDFLAGS="${LDFLAGS} ${LIBS_mpgatofixed32}"
2290     AC_CHECK_HEADERS(mad.h, ,
2291       [ 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.]) ])
2292     AC_CHECK_LIB(mad, mad_bit_init, [
2293       VLC_ADD_PLUGIN([mpgatofixed32])
2294       VLC_ADD_LIBS([mpgatofixed32],[-lmad])],
2295       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
2296     VLC_RESTORE_FLAGS
2297   fi
2298 fi
2299
2300
2301 AC_ARG_ENABLE(merge-ffmpeg,
2302 [  --enable-merge-ffmpeg   merge FFmpeg-based plugins (default disabled)],, [
2303   enable_merge_ffmpeg="no"
2304 ])
2305 AM_CONDITIONAL([MERGE_FFMPEG], [test "$enable_merge_ffmpeg" != "no"])
2306
2307 VLC_SAVE_FLAGS
2308 LDFLAGS="${LDFLAGS} -Wl,-Bsymbolic"
2309 AC_CACHE_CHECK([if linker supports -Bsymbolic],
2310   [ac_cv_ld_bsymbolic],
2311   [AC_TRY_LINK([],,ac_cv_ld_bsymbolic=yes,ac_cv_ld_bsymbolic=no)])
2312 VLC_RESTORE_FLAGS
2313
2314 dnl
2315 dnl  avcodec decoder/encoder plugin
2316 dnl
2317 AC_ARG_ENABLE(avcodec,
2318 [  --enable-avcodec        libavcodec codec (default enabled)])
2319 AS_IF([test "${enable_avcodec}" != "no"], [
2320   PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 52.25.0 libavutil >= 49.5.0],
2321     [
2322       VLC_SAVE_FLAGS
2323       CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2324       CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2325       AC_CHECK_HEADERS(libavcodec/avcodec.h)
2326       AC_CHECK_HEADERS(libavutil/avutil.h)
2327       VLC_ADD_PLUGIN([avcodec])
2328       VLC_ADD_LIBS([avcodec],[$AVCODEC_LIBS])
2329       AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2330         VLC_ADD_LIBS([avcodec],[-Wl,-Bsymbolic])
2331       ])
2332       VLC_ADD_CFLAGS([avcodec],[$AVCODEC_CFLAGS])
2333       VLC_RESTORE_FLAGS
2334       have_avcodec="yes"
2335     ],[
2336       AC_MSG_ERROR([${AVCODEC_PKG_ERRORS}. Pass --disable-avcodec to ignore this error.])
2337   ])
2338 ], [
2339   have_avcodec="no"
2340 ])
2341
2342 dnl
2343 dnl libva needs avcodec
2344 dnl
2345 AC_ARG_ENABLE(libva,
2346   [  --enable-libva          VAAPI GPU decoding support (libVA) (default auto)])
2347
2348 AS_IF([test "${enable_libva}" = "yes" -a "${have_avcodec}" != "yes" ], [
2349   AC_MSG_ERROR([--enable-libva and --disable-avcodec options are mutually exclusive. Use --enable-avcodec.])
2350 ])
2351 AS_IF([test "${enable_libva}" != "no"], [
2352   PKG_CHECK_MODULES(LIBVA, [libva libva-x11], [
2353     VLC_SAVE_FLAGS
2354     CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2355     CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2356     AC_CHECK_HEADERS(libavcodec/vaapi.h, [
2357       VLC_ADD_LIBS([avcodec],[$LIBVA_LIBS ${X_LIBS} ${X_PRE_LIBS} -lX11])
2358       VLC_ADD_CFLAGS([avcodec],[$LIBVA_CFLAGS ${X_CFLAGS}])
2359       AC_DEFINE(HAVE_AVCODEC_VAAPI, 1, [Define if avcodec has to be built with VAAPI support.])
2360       AC_MSG_NOTICE([VAAPI acceleration activated])
2361     ],[
2362       AS_IF([test -n "${enable_libva}"], [
2363         AC_MSG_ERROR([libva is present but libavcodec/vaapi.h is missing])
2364       ], [
2365         AC_MSG_WARN([libva is present but libavcodec/vaapi.h is missing ])
2366       ])
2367     ])
2368     VLC_RESTORE_FLAGS
2369   ],[
2370     AS_IF([test -n "${enable_libva}"], [
2371       AC_MSG_ERROR([${LIBVA_PKG_ERRORS}.])
2372     ], [
2373       AC_MSG_WARN([${LIBVA_PKG_ERRORS}.])
2374     ])
2375   ])
2376 ])
2377
2378 dnl
2379 dnl dxva2 needs avcodec
2380 dnl
2381 AC_ARG_ENABLE(dxva2,
2382   [  --enable-dxva2          DxVA2 GPU decoding support (default auto)])
2383
2384 AS_IF([test "${enable_dxva2}" != "no"], [
2385   if test "${SYS}" = "mingw32"; then
2386   AS_IF([test "x${have_avcodec}" = "xyes"], [
2387     AC_CHECK_HEADERS(dxva2api.h,
2388       [
2389         AC_CHECK_HEADERS(libavcodec/dxva2.h, [
2390            VLC_ADD_LIBS([avcodec],[-lole32 -lshlwapi -luuid])
2391            AC_DEFINE(HAVE_AVCODEC_DXVA2, 1, [Define if avcodec has to be built with DxVA2 support.])
2392            echo "DxVA2 acceleration activated"
2393         ],[
2394     AS_IF([test "${enable_dxva2}" = "yes"],
2395           [AC_MSG_ERROR([dxva2 is present but libavcodec/dxva2.h is missing])],
2396               [AC_MSG_WARN([dxva2 is present but libavcodec/dxva2.h is missing ])])
2397         ], [#undef _WIN32_WINNT
2398             /* DXVA2 is only available in Vista and above */
2399             #define _WIN32_WINNT 0x600])
2400       ],[
2401     AS_IF([test "${enable_dxva2}" = "yes"],
2402               [AC_MSG_ERROR([Could not find required dxva2api.h])],
2403               [AC_MSG_WARN([dxva2api.h not found])])
2404       ])
2405   ],[
2406     AS_IF([test "x${enable_dxva2}" != "x"], [
2407       AC_MSG_ERROR([--enable-dxva2 and --disable-avcodec options are mutually exclusive.])
2408     ])
2409   ])
2410   fi
2411 ])
2412
2413 dnl
2414 dnl vda needs avcodec
2415 dnl
2416 AC_ARG_ENABLE(vda,
2417   [  --enable-vda          VDA  support (default auto)])
2418
2419 AS_IF([test "${enable_vda}" != "no"], [
2420   if test "${SYS}" = "darwin"; then
2421   AS_IF([test "x${have_avcodec}" = "xyes"], [
2422     AC_CHECK_HEADERS(VideoDecodeAcceleration/VDADecoder.h,
2423       [
2424         AC_CHECK_HEADERS(libavcodec/vda.h, [
2425            VLC_ADD_LIBS([avcodec],[-Wl,-framework,CoreFoundation,-framework,VideoDecodeAcceleration,-framework,QuartzCore])
2426            VLC_ADD_LDFLAGS([vda],[-Wl,-framework,CoreFoundation,-framework,VideoDecodeAcceleration,-framework,QuartzCore])
2427            AC_DEFINE(HAVE_AVCODEC_VDA, 1, [Define if avcodec has to be built with VDA support.])
2428         ],[
2429         AS_IF([test "${enable_vda}" == "yes"],
2430               [AC_MSG_ERROR([vda is present but libavcodec/vda.h is missing])],
2431               [AC_MSG_WARN([vda is present but libavcodec/vda.h is missing ])])
2432         ])
2433   ],[
2434         AS_IF([test "${enable_vda}" == "yes"],
2435               [AC_MSG_ERROR([Could not find required VideoDecodeAcceleration/VDADecoder.h])],
2436               [AC_MSG_WARN([VideoDecodeAcceleration/VDADecoder.h not found])])
2437       ])
2438   ],[
2439     AS_IF([test "x${enable_vda}" != "x"], [
2440       AC_MSG_ERROR([--enable-vda and --disable-avcodec options are mutually exclusive.])
2441     ])
2442  ])
2443   fi
2444 ])
2445
2446 dnl
2447 dnl stream_out switcher needs libavcodec
2448 dnl
2449 AC_ARG_ENABLE(switcher,
2450   [  --enable-switcher       Stream-out switcher plugin (default disabled)])
2451 AS_IF([test "${enable_switcher}" = "yes"], [
2452   AS_IF([test "x${have_avcodec}" = "xyes"], [
2453     VLC_ADD_PLUGIN([stream_out_switcher])
2454     VLC_ADD_LIBS([stream_out_switcher],[$AVCODEC_LIBS $AVUTIL_LIBS $LIBM])
2455     VLC_ADD_CFLAGS([stream_out_switcher],[$AVCODEC_CFLAGS $AVUTIL_CFLAGS])
2456   ],[AC_MSG_ERROR([Stream_out switcher depends on avcodec])
2457   ])
2458 ])
2459
2460
2461 dnl
2462 dnl  avformat demuxer/muxer plugin
2463 dnl
2464
2465 AC_ARG_ENABLE(avformat,
2466 [  --enable-avformat       libavformat containers (default enabled)],, [
2467   enable_avformat="${have_avcodec}"
2468 ])
2469 if test "${enable_avformat}" != "no"
2470 then
2471   PKG_CHECK_MODULES(AVFORMAT,[libavformat > 52.30.0 libavcodec libavutil],
2472     [
2473       VLC_SAVE_FLAGS
2474       CPPFLAGS="${CPPFLAGS} ${AVFORMAT_CFLAGS}"
2475       CFLAGS="${CFLAGS} ${AVFORMAT_CFLAGS}"
2476       AC_CHECK_HEADERS(libavformat/avformat.h libavformat/avio.h)
2477       AC_CHECK_HEADERS(libavutil/avutil.h)
2478       AS_IF([test "$enable_merge_ffmpeg" = "no"], [
2479         VLC_ADD_PLUGIN([avformat access_avio])
2480         VLC_ADD_LIBS([avformat access_avio],[$AVFORMAT_LIBS $AVUTIL_LIBS])
2481         VLC_ADD_CFLAGS([avformat access_avio],[$AVFORMAT_CFLAGS $AVUTIL_CFLAGS])
2482         AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2483           VLC_ADD_LIBS([avformat access_avio],[-Wl,-Bsymbolic])
2484         ])
2485       ], [
2486         VLC_ADD_LIBS([avcodec],[$AVFORMAT_LIBS $AVUTIL_LIBS])
2487         VLC_ADD_CFLAGS([avcodec],[$AVFORMAT_CFLAGS $AVUTIL_CFLAGS])
2488       ])
2489       VLC_RESTORE_FLAGS
2490     ],[
2491       AC_MSG_ERROR([${AVFORMAT_PKG_ERRORS}. Pass --disable-avformat to ignore this error.])
2492   ])
2493 fi
2494
2495 dnl
2496 dnl  swscale image scaling and conversion plugin
2497 dnl
2498
2499 AC_ARG_ENABLE(swscale,
2500   AS_HELP_STRING([--enable-swscale],[libswscale image scaling and conversion
2501           (default enabled)]))
2502 if test "${enable_swscale}" != "no"
2503 then
2504   PKG_CHECK_MODULES(SWSCALE,[libswscale],
2505     [
2506       VLC_SAVE_FLAGS
2507       CPPFLAGS="${CPPFLAGS} ${SWSCALE_CFLAGS}"
2508       CFLAGS="${CFLAGS} ${SWSCALE_CFLAGS}"
2509       AC_CHECK_HEADERS(libswscale/swscale.h)
2510       VLC_ADD_PLUGIN([swscale])
2511       VLC_ADD_LIBS([swscale],[$SWSCALE_LIBS])
2512       VLC_ADD_CFLAGS([swscale],[$SWSCALE_CFLAGS])
2513       AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2514         VLC_ADD_LIBS([swscale],[-Wl,-Bsymbolic])
2515       ])
2516       VLC_RESTORE_FLAGS
2517     ],[
2518       AC_MSG_ERROR([${SWSCALE_PKG_ERRORS}. Pass --disable-swscale to ignore this error. Proper software scaling and some video chroma conversion will be missing.])
2519   ])
2520 fi
2521
2522 dnl
2523 dnl  postproc plugin
2524 dnl
2525
2526 AC_ARG_ENABLE(postproc,
2527 [  --enable-postproc       libpostproc image post-processing (default enabled)])
2528 if test "${enable_postproc}" != "no"
2529 then
2530   PKG_CHECK_MODULES(POSTPROC,[libpostproc libavutil],
2531     [
2532       VLC_SAVE_FLAGS
2533       CPPFLAGS="${CPPFLAGS} ${POSTPROC_CFLAGS}"
2534       CFLAGS="${CFLAGS} ${POSTPROC_CFLAGS}"
2535       AC_CHECK_HEADERS(postproc/postprocess.h)
2536       VLC_ADD_PLUGIN([postproc])
2537       VLC_ADD_LIBS([postproc],[$POSTPROC_LIBS $AVUTIL_LIBS])
2538       VLC_ADD_CFLAGS([postproc],[$POSTPROC_CFLAGS $AVUTIL_CFLAGS])
2539       VLC_RESTORE_FLAGS
2540     ],[
2541       AC_MSG_ERROR([${POSTPROC_PKG_ERRORS}. Pass --disable-postproc to ignore this error.])
2542   ])
2543 fi
2544
2545 dnl
2546 dnl  faad decoder plugin
2547 dnl
2548 AC_ARG_ENABLE(faad,
2549 [  --enable-faad           faad codec (default auto)])
2550 if test "${enable_faad}" != "no"; then
2551   AC_ARG_WITH(faad-tree,  [  --with-faad-tree=PATH   faad tree for static linking])
2552   if test -n "${with_faad_tree}"; then
2553     AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
2554     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
2555     if test -z "${real_faad_tree}"; then
2556       dnl  The given directory can't be found
2557       AC_MSG_RESULT(no)
2558       AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
2559     fi
2560     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"; then
2561       dnl  Use the custom faad
2562       AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
2563       VLC_ADD_PLUGIN([faad])
2564       VLC_ADD_LIBS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
2565       VLC_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
2566     else
2567       dnl  The given libfaad wasn't built
2568       AC_MSG_RESULT(no)
2569       AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
2570     fi
2571   else
2572     VLC_SAVE_FLAGS
2573     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_faad}"
2574     LDFLAGS="${LDFLAGS} ${LIBS_faad}"
2575     AC_CHECK_HEADERS(faad.h,
2576       [ AC_CHECK_LIB(faad, faacDecOpen, [
2577           VLC_ADD_PLUGIN([faad])
2578           VLC_ADD_LIBS([faad],[-lfaad]) ], [
2579             AC_CHECK_LIB(faad, NeAACDecOpen, [
2580               VLC_ADD_PLUGIN([faad])
2581               VLC_ADD_LIBS([faad],[-lfaad]) ], [
2582                 AS_IF([test "${enable_faad}" = "yes"],
2583                 [ AC_MSG_ERROR([Cannot find libfaad library...]) ],
2584                 [ AC_MSG_WARN([Cannot find libfaad library...]) ]) ]) ])
2585       ] , [ AS_IF([test "${enable_faad}" = "yes"],
2586         [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ],
2587         [ AC_MSG_WARN([Cannot find development headers for libfaad...]) ]) ])
2588     VLC_RESTORE_FLAGS
2589   fi
2590 fi
2591
2592 dnl
2593 dnl twolame encoder plugin
2594 dnl
2595 PKG_ENABLE_MODULES_VLC([TWOLAME], [], [twolame], [MPEG Audio Layer 2 encoder], [auto], [], [], [ -DLIBTWOLAME_STATIC])
2596
2597 dnl
2598 dnl  QuickTime plugin
2599 dnl
2600 AC_ARG_ENABLE(quicktime,
2601   [  --enable-quicktime      QuickTime module (deprecated)])
2602 if test "${enable_quicktime}" = "yes"; then
2603   if test "${SYS}" = "mingw32"; then
2604     VLC_ADD_PLUGIN([quicktime])
2605   else
2606   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2607     [ VLC_ADD_PLUGIN([quicktime])
2608       VLC_ADD_LIBS([quicktime],[-Wl,-framework,QuickTime,-framework,Carbon])
2609     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2610   fi
2611 fi
2612
2613 dnl
2614 dnl A52/AC3 decoder plugin
2615 dnl
2616 AC_ARG_ENABLE(a52,
2617   [  --enable-a52            A/52 support with liba52 (default enabled)])
2618 if test "${enable_a52}" != "no"
2619 then
2620   AC_ARG_WITH(a52,
2621     [  --with-a52=PATH         a52 headers and libraries])
2622   AC_ARG_WITH(a52-tree,
2623     [  --with-a52-tree=PATH    a52dec tree for static linking ],[],[])
2624   if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
2625   then
2626     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
2627     if test -z "${real_a52_tree}"
2628     then
2629       dnl  The given directory can't be found
2630       AC_MSG_RESULT(no)
2631       AC_MSG_ERROR([${with_a52_tree} directory does not exist])
2632     fi
2633     dnl  Use a custom a52dec
2634     AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
2635     if test -f ${real_a52_tree}/include/a52.h
2636     then
2637       AC_MSG_RESULT(yes)
2638       VLC_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
2639       VLC_ADD_LIBS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
2640       VLC_SAVE_FLAGS
2641       LDFLAGS="${LDFLAGS} ${LIBS_a52tofloat32}"
2642       AC_CHECK_LIB(a52, a52_free, [
2643         VLC_ADD_PLUGIN([a52tofloat32])
2644         VLC_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
2645         VLC_ADD_LIBS([a52tofloat32],[-la52])
2646         ],[
2647         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
2648         then
2649           AC_MSG_ERROR([make sure you have at least a52dec-0.7.3 ($real_a52_tree)])
2650         else
2651           AC_MSG_ERROR([the specified tree has not been compiled])
2652         fi
2653       ])
2654     else
2655       AC_MSG_RESULT(no)
2656       AC_MSG_ERROR([the specified tree does not have a52.h])
2657     fi
2658   else
2659     if test -z "${with_a52}"
2660     then
2661       LDFLAGS_test=""
2662       CPPFLAGS_test=""
2663     else
2664       LDFLAGS_test="-L${with_a52}/lib"
2665       CPPFLAGS_test="-I${with_a52}/include"
2666     fi
2667     VLC_SAVE_FLAGS
2668     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2669     LDFLAGS="${LDFLAGS} ${LDFLAGS_test} ${LIBS_a52tofloat32}"
2670     AC_CHECK_HEADERS(a52dec/a52.h, [
2671       AC_CHECK_LIB(a52, a52_free, [
2672         VLC_ADD_PLUGIN([a52tofloat32])
2673         VLC_ADD_LIBS([a52tofloat32],[${LDFLAGS_test} -la52])
2674         VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2675       ],[
2676         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.])
2677         ], [$LIBM])
2678     ],[
2679       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.])
2680     ])
2681     VLC_RESTORE_FLAGS
2682   fi
2683 fi
2684
2685 AC_ARG_WITH(a52-fixed,
2686       [  --with-a52-fixed        specify if liba52 has been compiled with fixed point support],
2687       [
2688         VLC_ADD_CPPFLAGS([a52tofloat32],[-DLIBA52_FIXED]) ])
2689
2690 dnl
2691 dnl DTS Coherent Acoustics decoder plugin
2692 dnl
2693 PKG_ENABLE_MODULES_VLC([DCA], [dtstofloat32], [libdca >= 0.0.5], [DTS Coherent Acoustics support with libdca], [auto])
2694
2695 dnl
2696 dnl  Flac plugin
2697 dnl
2698 PKG_ENABLE_MODULES_VLC([FLAC], [], [flac], [libflac decoder/encoder support], [auto])
2699
2700 dnl
2701 dnl  Libmpeg2 plugin
2702 dnl
2703 PKG_ENABLE_MODULES_VLC([LIBMPEG2], [], [libmpeg2 > 0.3.2], [libmpeg2 decoder support], [auto])
2704
2705 dnl
2706 dnl  Vorbis plugin
2707 dnl
2708 PKG_ENABLE_MODULES_VLC([VORBIS], [], [ogg vorbis >= 1.1 vorbisenc >= 1.1], [Vorbis decoder and encoder], [auto])
2709
2710 dnl
2711 dnl  Tremor plugin
2712 dnl
2713 AC_ARG_ENABLE(tremor,
2714   [  --enable-tremor         Tremor decoder support (default disabled)])
2715 if test "${enable_tremor}" = "yes"
2716 then
2717   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2718     VLC_ADD_PLUGIN([tremor])
2719     VLC_ADD_LIBS([tremor],[-lvorbisidec -logg])
2720    ],[])
2721 fi
2722
2723 dnl
2724 dnl  Speex plugins
2725 dnl
2726 PKG_ENABLE_MODULES_VLC([SPEEX], [], [ogg speex >= 1.0.5], [Speex support], [auto])
2727 have_speexdsp="no"
2728 AS_IF([test "${enable_speex}" != "no"], [
2729   PKG_CHECK_MODULES([SPEEXDSP], [speexdsp], [
2730     have_speexdsp="yes"
2731   ], [
2732     AC_MSG_WARN([${SPEEXDSP_PKG_ERRORS}.])
2733   ])
2734 ])
2735 AM_CONDITIONAL([HAVE_SPEEXDSP], [test "$have_speexdsp" = "yes"])
2736
2737 dnl
2738 dnl  theora decoder plugin
2739 dnl
2740 PKG_ENABLE_MODULES_VLC([THEORA], [], [ogg theoradec >= 1.0 theoraenc], [experimental theora codec], [auto])
2741
2742 dnl
2743 dnl  dirac encoder plugin
2744 dnl
2745 PKG_ENABLE_MODULES_VLC([DIRAC], [], [dirac >= 0.10.0], [dirac encoder], [auto])
2746
2747 dnl
2748 dnl  schroedinger decoder plugin (for dirac format video)
2749 dnl
2750 PKG_ENABLE_MODULES_VLC([SCHROEDINGER], [], [schroedinger-1.0 >= 1.0.10], [dirac decoder and encoder using schroedinger], [auto])
2751
2752 dnl
2753 dnl  PNG decoder module
2754 dnl
2755 AC_ARG_ENABLE(png,
2756   [  --enable-png            PNG support (default enabled)])
2757 if test "${enable_png}" != "no"; then
2758 AC_CHECK_HEADERS(png.h, [
2759   VLC_SAVE_FLAGS
2760   LDFLAGS="${LDFLAGS} -lz $LIBM"
2761   AC_CHECK_LIB(png, png_set_rows, [
2762     VLC_ADD_LIBS([png],[-lpng -lz $LIBM])
2763     VLC_ADD_PLUGIN([png osdmenu osd_parser])],
2764     [],[-lz $LIBM] )
2765   VLC_RESTORE_FLAGS
2766   ])
2767 fi
2768 AM_CONDITIONAL(BUILD_OSDMENU, [test "${enable_png}" != "no"])
2769
2770 dnl
2771 dnl H264 encoder plugin (10-bit lib264)
2772 dnl
2773 AC_ARG_ENABLE(x26410b,
2774   [  --enable-x26410b           H264 10-bit encoding support with static libx264 (default disabled)])
2775 if test "${enable_x26410b}" != "no"; then
2776 AC_ARG_WITH(x26410b-tree,
2777   [ --with-x26410b-tree=PATH      H264 10-bit encoding module with libx264 (static linking)],[],[])
2778   if test "${with_x26410b_tree}" != "no" -a -n "${with_x26410b_tree}"
2779   then
2780     real_x26410b_tree="̧`cd ${with_x26410b_tree} 2>/dev/null && pwd`"
2781     if test -z "${real_x26410b_tree}"
2782     then
2783       AC_MSG_RESULT(no)
2784       AC_MSG_ERROR([${with_x26410b_tree} directory does not exist])
2785     fi
2786     AC_MSG_CHECKING(for x264.h in ${real_x26410b_tree})
2787     if test -f ${with_x26410b_tree}/x264_config.h
2788     then
2789       AC_MSG_RESULT(yes)
2790       AC_MSG_CHECKING(for 10-bit build of x264)
2791       if grep -q "BIT_DEPTH.*10"  ${with_x26410b_tree}/x264_config.h ;then
2792         AC_MSG_RESULT(yes)
2793         VLC_ADD_PLUGIN([x26410b])
2794         VLC_ADD_CFLAGS([x26410b],[-I${with_x26410b_tree}])
2795         VLC_ADD_LIBS([x26410b],[-L${with_x26410b_tree} -lm -lpthread -lx264])
2796       else
2797         AC_MSG_RESULT(no)
2798         AC_MSG_ERROR([${with_x26410b_tree} isnt build 10-bit])
2799       fi
2800     else
2801       AC_MSG_RESULT(no)
2802       AC_MSG_ERROR([${with_x26410b_tree} doesnt have x264_config.h])
2803     fi
2804   else
2805     PKG_CHECK_MODULES(X26410B, x26410b, [
2806         VLC_ADD_PLUGIN([x26410b])
2807         VLC_ADD_LDFLAGS([x26410b],[${X26410B_LIBS}])
2808         AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2809           VLC_ADD_LIBS([x26410b],[-Wl,-Bsymbolic])
2810         ])
2811         VLC_ADD_CFLAGS([x26410b],[${X26410B_CFLAGS}])
2812         if echo ${X26410B_LIBS} |grep -q 'pthreadGC2'; then
2813           VLC_ADD_CFLAGS([x26410b], [-DPTW32_STATIC_LIB])
2814         fi
2815     ], [
2816        if test "${enable_x26410b}" = "yes"; then
2817         AC_MSG_ERROR([x26410b module doesn't work without staticly compiled libx264.a])
2818        fi
2819     ])
2820   fi
2821 fi
2822
2823
2824 dnl
2825 dnl H264 encoder plugin (using libx264)
2826 dnl
2827 AC_ARG_ENABLE(x264,
2828   [  --enable-x264           H264 encoding support with libx264 (default enabled)])
2829 if test "${enable_x264}" != "no"; then
2830   AC_ARG_WITH(x264-tree,
2831     [  --with-x264-tree=PATH   x264 tree for static linking ],[],[])
2832   if test "${with_x264_tree}" != "no" -a -n "${with_x264_tree}"
2833   then
2834     real_x264_tree="`cd ${with_x264_tree} 2>/dev/null && pwd`"
2835     if test -z "${real_x264_tree}"
2836     then
2837       dnl  The given directory can't be found
2838       AC_MSG_RESULT(no)
2839       AC_MSG_ERROR([${with_x264_tree} directory does not exist])
2840     fi
2841     dnl  Use a custom libx264
2842     AC_MSG_CHECKING(for x264.h in ${real_x264_tree})
2843     if test -f ${real_x264_tree}/x264.h
2844     then
2845       AC_MSG_RESULT(yes)
2846       VLC_ADD_CPPFLAGS([x264],[-I${real_x264_tree}])
2847       VLC_ADD_LIBS([x264],[-L${real_x264_tree}])
2848       PKG_CHECK_MODULES(X264,x264, [
2849         VLC_ADD_PLUGIN([x264])
2850         VLC_ADD_LIBS([x264],[${X264_LIBS}])
2851         VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
2852         if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
2853           VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
2854         fi
2855       ],[
2856         AC_MSG_ERROR([the specified tree has not been compiled])
2857       ])
2858     else
2859       AC_MSG_RESULT(no)
2860       AC_MSG_ERROR([the specified tree does not have x264.h])
2861     fi
2862   else
2863       PKG_CHECK_MODULES(X264,x264 >= 0.86, [
2864         VLC_ADD_PLUGIN([x264])
2865         VLC_ADD_LDFLAGS([x264],[${X264_LIBS}])
2866
2867         AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2868           VLC_ADD_LIBS([x264],[-Wl,-Bsymbolic])
2869         ])
2870
2871         VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
2872         if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
2873           VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
2874         fi
2875       ],[
2876         if test "${enable_x264}" = "yes"; then
2877             AC_MSG_ERROR([${X264_PKG_ERRORS}: you may get it from http://www.videolan.org/x264.html])
2878           fi
2879       ])
2880   fi
2881 fi
2882
2883 dnl
2884 dnl libfluidsynth (MIDI synthetizer) plugin
2885 dnl
2886 PKG_ENABLE_MODULES_VLC([FLUIDSYNTH], [], [fluidsynth >= 1.1.2], [MIDI synthetiser with libfluidsynth], [auto])
2887
2888 dnl
2889 dnl Teletext Modules
2890 dnl vbi decoder plugin (using libzbvi)
2891 dnl telx module
2892 dnl uncompatible
2893 dnl
2894 AC_ARG_ENABLE(zvbi,
2895   AS_HELP_STRING([--enable-zvbi],[VBI (inc. Teletext) decoding support with
2896                   libzvbi (default enabled)]))
2897 AC_ARG_ENABLE(telx,
2898   AS_HELP_STRING([--enable-telx],[Teletext decoding module (conflicting with
2899                   zvbi) (default enabled if zvbi is absent)]))
2900
2901 AS_IF( [test "${enable_zvbi}" != "no"],[
2902     PKG_CHECK_MODULES(ZVBI, [zvbi-0.2 >= 0.2.28],
2903         [
2904           VLC_ADD_LIBS([zvbi],[$ZVBI_LIBS])
2905           if test "${SYS}" = "mingw32"; then
2906               VLC_ADD_LIBS([zvbi],[ -lpthreadGC2])
2907           fi
2908           VLC_ADD_CFLAGS([zvbi],[$ZVBI_CFLAGS])
2909           VLC_ADD_PLUGIN([zvbi])
2910           AC_DEFINE(ZVBI_COMPILED, 1, [Define if the zvbi module is built])
2911           AS_IF( [test "${enable_telx}" = "yes"],[
2912                   AC_MSG_WARN([The zvbi and telx modules are incompatible. Using zvbi.])
2913                   ])
2914         ],[
2915           AC_MSG_WARN([${ZVBI_PKG_ERRORS}. Enabling the telx module instead.])
2916         ])
2917     ])
2918 AS_IF( [test "${enable_telx}" != "no" ],[
2919   VLC_ADD_PLUGIN([telx])
2920   ])
2921
2922 dnl
2923 dnl libass subtitle rendering module
2924 dnl
2925 AC_ARG_ENABLE(libass,
2926   [  --enable-libass         Subtitle support using libass (default enabled)])
2927 AS_IF( [test "${enable_libass}" != "no"], [
2928   PKG_CHECK_MODULES(LIBASS, [libass >= 0.9.8],
2929       [
2930         VLC_ADD_LIBS([libass],[$LIBASS_LIBS])
2931         VLC_ADD_CFLAGS([libass],[$LIBASS_CFLAGS])
2932         VLC_ADD_PLUGIN([libass])
2933
2934         AC_CHECK_HEADERS(fontconfig/fontconfig.h,
2935           [VLC_ADD_CPPFLAGS([libass],[-DHAVE_FONTCONFIG])
2936            VLC_ADD_LIBS([libass],[-lfontconfig])
2937        ])
2938       ],[
2939         AC_MSG_WARN([${LIBASS_PKG_ERRORS}.])
2940       ])
2941   ])
2942
2943 dnl
2944 dnl  kate decoder plugin
2945 dnl
2946 PKG_ENABLE_MODULES_VLC([KATE], [], [kate >= 0.3.0], [kate codec], [auto])
2947
2948 dnl
2949 dnl  tiger rendering for kate decoder plugin
2950 dnl
2951 AC_ARG_ENABLE(tiger,
2952 [  --enable-tiger          Tiger rendering library for Kate streams (default auto)])
2953 AS_IF([test "${enable_tiger}" != "no"], [
2954   PKG_CHECK_MODULES(TIGER,[tiger >= 0.3.1], [
2955       AC_DEFINE(HAVE_TIGER, 1, [Define if libtiger is available.])
2956       VLC_ADD_CFLAGS([kate],[$TIGER_CFLAGS])
2957       VLC_ADD_LIBS([kate],[$TIGER_LIBS]) ],[
2958         AS_IF([test -n "${enable_tiger}"], [
2959           AC_MSG_ERROR([${TIGER_PKG_ERRORS}.])
2960         ])
2961   ])
2962 ])
2963
2964
2965 dnl
2966 dnl  Video plugins
2967 dnl
2968
2969 EXTEND_HELP_STRING([Video plugins:])
2970
2971 dnl
2972 dnl  OpenGL
2973 dnl
2974 PKG_CHECK_MODULES([GL], [gl], [
2975   have_gl="yes"
2976 ], [
2977   AC_CHECK_HEADER([GL/gl.h], [
2978     have_gl="yes"
2979     GL_CFLAGS=""
2980     GL_LIBS="-lGL"
2981   ], [
2982     have_gl="no"
2983   ])
2984 ])
2985
2986 dnl OpenGL ES 2: depends on EGL 1.1 and is currently unfinished
2987 dnl PKG_ENABLE_MODULES_VLC([GLES2], [], [glesv2], [OpenGL ES v2 support], [auto])
2988 dnl OpenGL ES 1: depends on EGL 1.0 and is currently broken
2989 dnl PKG_ENABLE_MODULES_VLC([GLES1], [], [glesv1_cm], [OpenGL ES v1 support], [auto])
2990
2991 AC_ARG_ENABLE(egl,
2992   [  --enable-egl            OpenGL support through EGL (default disabled)],, [
2993   enable_egl="no"
2994 ])
2995 AS_IF([test "$enable_egl" != "no"], [
2996   PKG_CHECK_MODULES([EGL], [egl], [
2997     VLC_ADD_PLUGIN([gl])
2998     VLC_ADD_PLUGIN([egl])
2999   ])
3000 ])
3001
3002 dnl
3003 dnl  Xlib
3004 dnl
3005
3006 AC_PATH_XTRA()
3007 AC_CHECK_HEADERS(X11/Xlib.h)
3008
3009 dnl
3010 dnl  X C Bindings modules
3011 dnl
3012 AC_ARG_ENABLE(xcb,
3013   [  --enable-xcb            X11 support with XCB (default enabled)],, [
3014   AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" -a "${SYS}" != "darwin" -a "${SYS}" != "symbian"], [
3015     enable_xcb="yes"
3016   ], [
3017     enable_xcb="no"
3018   ])
3019 ])
3020 AC_ARG_ENABLE(xvideo,
3021   [  --enable-xvideo         XVideo support (default enabled)],, [
3022     enable_xvideo="$enable_xcb"
3023 ])
3024 AC_ARG_ENABLE(glx,
3025   [  --enable-glx            OpenGL support through GLX (default enabled)],, [
3026   enable_glx="$enable_xcb"
3027 ])
3028
3029 have_xcb="no"
3030 AS_IF([test "${enable_xcb}" != "no"], [
3031   dnl libxcb
3032   PKG_CHECK_MODULES(XCB, [xcb >= 1.6])
3033   have_xcb="yes"
3034   PKG_CHECK_MODULES(XCB_SHM, [xcb-shm])
3035   PKG_CHECK_MODULES(XCB_COMPOSITE, [xcb-composite])
3036
3037   AS_IF([test "${enable_xvideo}" != "no"], [
3038     PKG_CHECK_MODULES(XCB_XV, [xcb-xv >= 1.1.90.1], [
3039       VLC_ADD_PLUGIN([xcb_xv])
3040     ])
3041   ])
3042
3043   PKG_CHECK_MODULES(XCB_RANDR, [xcb-randr >= 1.3], [
3044     VLC_ADD_PLUGIN([panoramix])
3045     VLC_ADD_LIBS([panoramix],[${XCB_RANDR_LIBS} ${XCB_LIBS}])
3046     VLC_ADD_CFLAGS([panoramix],[${XCB_RANDR_CFLAGS} ${XCB_CFLAGS}])
3047   ], [
3048     AC_MSG_WARN([${XCB_RANDR_PKG_ERRORS}. Panoramix filter will not be supported.])
3049   ])
3050
3051   dnl xcb-utils
3052   PKG_CHECK_MODULES(XCB_KEYSYMS, [xcb-keysyms >= 0.3.4], [
3053     PKG_CHECK_MODULES(XPROTO, [xproto])
3054     VLC_ADD_PLUGIN([globalhotkeys])
3055     VLC_ADD_CFLAGS([globalhotkeys], [${XCB_KEYSYMS_CFLAGS} ${XCB_CFLAGS}])
3056     VLC_ADD_LIBS([globalhotkeys], [${XCB_KEYSYMS_LIBS} ${XCB_LIBS}])
3057     VLC_ADD_CFLAGS([xcb_window], [-DHAVE_XCB_KEYSYMS])
3058   ], [
3059     AC_MSG_WARN([${XCB_KEYSYMS_PKG_ERRORS}. Hotkeys will not work.])
3060   ])
3061
3062   AS_IF([test "${enable_glx}" != "no"], [
3063     AS_IF([test "${have_gl}" != "yes"], [
3064       AC_MSG_ERROR([${GL_PKG_ERRORS}. Pass --disable-glx if you do not need OpenGL X11 support.])
3065     ])
3066     VLC_ADD_PLUGIN([xcb_glx])
3067   ])
3068 ])
3069 AM_CONDITIONAL([HAVE_XCB], [test "${have_xcb}" = "yes"])
3070
3071 dnl
3072 dnl  SDL module
3073 dnl
3074 AC_ARG_ENABLE(sdl,
3075   [  --enable-sdl            SDL support (default enabled)])
3076 AC_ARG_ENABLE(sdl-image,
3077   [  --enable-sdl-image      SDL image support (default enabled)])
3078 if test "${enable_sdl}" != "no"
3079 then
3080    PKG_CHECK_MODULES(SDL, [sdl >= 1.2.10], [
3081       # SDL on Darwin is heavily patched and can only run SDL_image
3082       if test "${SYS}" != "darwin"; then
3083         VLC_ADD_PLUGIN([vout_sdl])
3084       fi
3085       if test "${SYS}" != "mingw32" -a "${SYS}" != "os2"; then
3086         VLC_ADD_LIBS([vout_sdl],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3087       fi
3088       VLC_ADD_CFLAGS([vout_sdl],[${SDL_CFLAGS}])
3089       VLC_ADD_LIBS([vout_sdl],[${SDL_LIBS}])
3090
3091       # SDL_image
3092       AS_IF([ test "${enable_sdl_image}" != "no"],[
3093         PKG_CHECK_MODULES(SDL_IMAGE, [SDL_image >= 1.2.10], [
3094           VLC_ADD_PLUGIN([sdl_image])
3095           VLC_ADD_LIBS([sdl_image],[${SDL_IMAGE_LIBS}])
3096           VLC_ADD_CFLAGS([sdl_image], [${SDL_IMAGE_CFLAGS}])],
3097           [ AC_MSG_WARN([${SDL_IMAGE_PKG_ERRORS}. You should install it alongside your SDL package.])
3098           ])
3099       ])
3100    ],[
3101      AC_MSG_WARN([${SDL_PKG_ERRORS}.])
3102    ])
3103 fi
3104
3105
3106 dnl
3107 dnl Mac Vout
3108 AC_ARG_ENABLE(macosx-vout,
3109   [  --enable-macosx-vout    Mac OS X video output module (default enabled on Mac OS X)])
3110 if test "x${enable_macosx_vout}" != "xno" &&
3111   (test "${SYS}" = "darwin" || test "${enable_macosx_vout}" = "yes")
3112 then
3113   VLC_ADD_LIBS([vout_macosx],[-Wl,-framework,Cocoa])
3114   VLC_ADD_LIBS([vout_macosx],[-Wl,-framework,OpenGL])
3115   VLC_ADD_PLUGIN([vout_macosx])
3116 fi
3117
3118
3119 dnl
3120 dnl  freetype module
3121 dnl
3122 AC_ARG_ENABLE(freetype,
3123   [  --enable-freetype       freetype support   (default auto)])
3124 AC_ARG_ENABLE(fribidi,
3125   [  --enable-fribidi        fribidi support    (default auto)])
3126 AC_ARG_ENABLE(fontconfig,
3127   [  --enable-fontconfig     fontconfig support (default auto)])
3128
3129 if test "${enable_freetype}" != "no"; then
3130    PKG_CHECK_MODULES(FREETYPE, freetype2, [
3131       have_freetype=yes
3132       VLC_ADD_PLUGIN([freetype])
3133       VLC_ADD_CPPFLAGS([freetype skins2],[${FREETYPE_CFLAGS}])
3134       if test "${SYS}" = "mingw32"; then
3135         VLC_ADD_LIBS([freetype],[-liconv -lz])
3136       fi
3137       VLC_ADD_LIBS([freetype skins2],[${FREETYPE_LIBS}])
3138
3139       AC_CHECK_HEADERS(Carbon/Carbon.h,
3140                        [VLC_ADD_LIBS([freetype],[-Wl,-framework,Carbon])])
3141
3142       dnl fontconfig support
3143       if test "${SYS}" != "mingw32"; then
3144           if test "${enable_fontconfig}" != "no"; then
3145             AC_CHECK_HEADERS(fontconfig/fontconfig.h, [
3146               VLC_ADD_CPPFLAGS([freetype],[-DHAVE_FONTCONFIG])
3147               VLC_ADD_LIBS([freetype],[-lfontconfig])
3148             ],[AC_MSG_WARN([library fontconfig not found. Styles will be disabled in freetype])])
3149           fi
3150       else
3151           VLC_ADD_LIBS([freetype],[-lgdi32])
3152       fi
3153
3154       dnl fribidi support
3155       if test "${enable_fribidi}" != "no"; then
3156         PKG_CHECK_MODULES(FRIBIDI, fribidi, [
3157           VLC_ADD_CPPFLAGS([freetype skins2], [${FRIBIDI_CFLAGS} -DHAVE_FRIBIDI])
3158           VLC_ADD_LIBS([freetype skins2], [${FRIBIDI_LIBS}])
3159         ],[AC_MSG_WARN([${FRIBIDI_PKG_ERRORS}. Bidirectional support will be disabled in FreeType.])])
3160       fi
3161
3162   ],[
3163   have_freetype=no
3164   AS_IF([test -n "${enable_freetype}"],[
3165     AC_MSG_ERROR([${FREETYPE_PKG_ERRORS}. Install FreeType2 development or configure with --disable-freetype.])
3166     ])
3167   ])
3168 fi
3169
3170
3171 dnl
3172 dnl  QuartzText vout module (iOS/Mac OS)
3173 dnl
3174 AC_ARG_ENABLE(macosx-quartztext,
3175   [  --enable-macosx-quartztext   Mac OS X quartz text module (default enabled on Mac OS X)])
3176 if test "x${enable_macosx_quartztext}" != "xno" &&
3177   (test "${SYS}" = "darwin" || test "${enable_macosx_quartztext}" = "yes")
3178 then
3179   VLC_ADD_PLUGIN([quartztext])
3180   VLC_ADD_LIBS([quartztext],[-Wl,-framework,ApplicationServices])
3181 fi
3182
3183 dnl
3184 dnl  SVG module
3185 dnl
3186 PKG_ENABLE_MODULES_VLC([SVG], [], [librsvg-2.0 >= 2.9.0], [SVG rendering library],[auto])
3187
3188 dnl
3189 dnl  android surface module
3190 dnl
3191 AC_ARG_ENABLE(android-surface,
3192   [  --enable-android-surface   Android Surface video output module (default disabled)])
3193 if test "${enable_android_surface}" = "yes"; then
3194   if test "${HAVE_ANDROID}" = "1"; then
3195      VLC_ADD_PLUGIN([android_surface])
3196      VLC_ADD_LDFLAGS([android_surface], [-ldl])
3197   fi
3198 fi
3199
3200
3201 dnl
3202 dnl  iOS vout module
3203 dnl
3204 AC_ARG_ENABLE(ios-vout,
3205   [  --enable-ios-vout    iOS video output module (default disabled)])
3206 if test "${enable_ios_vout}" = "yes"
3207 then
3208   VLC_ADD_PLUGIN([vout_ios])
3209   VLC_ADD_CFLAGS([vout_ios], [-DUSE_OPENGL_ES=1])
3210   VLC_ADD_LIBS([vout_ios], [-Wl,-framework,OpenGLES,-framework,QuartzCore,-framework,UIKit,-framework,Foundation])
3211 fi
3212
3213 dnl
3214 dnl  Windows DirectX module
3215 dnl
3216
3217 if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"
3218 then
3219   VLC_ADD_PLUGIN([panoramix])
3220 fi
3221
3222 AC_ARG_ENABLE(directx,
3223   [AS_HELP_STRING([--enable-directx],
3224     [Microsoft DirectX support (default enabled on Windows)])],, [
3225   AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
3226     enable_directx="yes"
3227   ], [
3228     enable_directx="no"
3229   ])
3230 ])
3231 have_directx="no"
3232 AS_IF([test "${enable_directx}" != "no"], [
3233   dnl DirectDraw
3234   AC_CHECK_HEADERS(ddraw.h, [
3235     have_directx="yes"
3236   ], [
3237     AC_MSG_ERROR([Cannot find DirectX headers!])
3238   ])
3239
3240   dnl OpenGL
3241   AC_CHECK_HEADERS(GL/wglew.h, [
3242     VLC_ADD_PLUGIN([glwin32])
3243     VLC_ADD_LIBS([glwin32],[-lopengl32 -lgdi32])
3244    ],, [
3245      #include <windows.h>
3246      #include <GL/gl.h>
3247    ])
3248
3249    dnl Direct3D
3250    AC_CHECK_HEADERS(d3d9.h, [
3251      VLC_ADD_PLUGIN([direct3d])
3252      VLC_ADD_LIBS([direct3d],[-lgdi32])
3253    ])
3254    VLC_ADD_LIBS([direct3d glwin32],[-lole32 -luuid])
3255 ])
3256 AM_CONDITIONAL([HAVE_DIRECTX], [test "$have_directx" = "yes"])
3257
3258 dnl
3259 dnl  Windows Direct2D plugin
3260 dnl
3261 AC_ARG_ENABLE(direct2d,
3262   [  --enable-direct2d       Win7/VistaPU Direct2D support (default auto on Win32)],, [
3263   AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"], [
3264     enable_direct2d="no"
3265   ])
3266 ])
3267 AS_IF([test "${enable_direct2d}" != "no"], [
3268   AC_CHECK_HEADERS(d2d1.h, [
3269     VLC_ADD_PLUGIN([direct2d])
3270     VLC_ADD_LIBS([direct2d],[-lgdi32 -lole32 -luuid])
3271   ], [
3272     AC_MSG_WARN([Cannot find Direct2D headers!])
3273   ])
3274 ])
3275
3276 dnl
3277 dnl  win32 GDI plugin
3278 dnl
3279 AC_ARG_ENABLE(wingdi,
3280   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
3281 if test "${enable_wingdi}" != "no"; then
3282   if test "${SYS}" = "mingw32"; then
3283     VLC_ADD_PLUGIN([wingdi])
3284     VLC_ADD_LIBS([wingdi],[-lgdi32 -lole32 -luuid])
3285   fi
3286   if test "${SYS}" = "mingwce"; then
3287     VLC_ADD_PLUGIN([wingdi wingapi])
3288     VLC_ADD_LIBS([wingdi],[-laygshell])
3289     VLC_ADD_LIBS([wingapi],[-laygshell])
3290   fi
3291 fi
3292
3293
3294 dnl
3295 dnl  Linux framebuffer module
3296 dnl
3297 AC_CHECK_HEADER([linux/fb.h], [
3298   VLC_ADD_PLUGIN([fb])
3299 ])
3300
3301
3302 dnl
3303 dnl  DirectFB module
3304 dnl  try to find using: 1 - given location; 2 - directfb-config; 3 - pkg-config
3305 dnl  TODO: support for static linking
3306 dnl
3307 AC_ARG_ENABLE(directfb,
3308   [  --enable-directfb       DirectFB support (default disabled)])
3309 AC_ARG_WITH(directfb,
3310   [  --with-directfb=PATH    path to DirectFB headers and libraries])
3311
3312 if test "${enable_directfb}" = "yes"; then
3313     have_directfb="false"
3314     CPPFLAGS_mydirectfb=
3315     LIBS_mydirectfb=
3316     if test "${with_directfb}" != "no" -a -n "${with_directfb}"; then
3317         dnl Trying the given location
3318         VLC_SAVE_FLAGS
3319
3320         CPPFLAGS_new="-I${with_directfb}/include -D_REENTRANT -D_GNU_SOURCE"
3321         LIBS_new="-L${with_directfb}/lib/fusion/.libs/ -L${with_directfb}/lib/direct/.libs/ -L${with_directfb}/src/.libs/"
3322
3323         CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_new}"
3324         LIBS="${LIBS} ${LIBS_new}"
3325
3326         dnl FIXME: too obscure
3327         AC_CHECK_HEADER([directfb.h], [
3328             AC_CHECK_LIB([direct],[direct_initialize], [
3329                 AC_CHECK_LIB([fusion], [fusion_enter], [
3330                     AC_CHECK_LIB([directfb], [DirectFBInit], have_directfb="true", have_directfb="false")
3331                 ], have_directfb="false")
3332             ], have_directfb="false")
3333         ], have_directfb="false")
3334
3335         VLC_RESTORE_FLAGS
3336
3337         if test "${have_directfb}" = "true"; then
3338             LIBS_mydirectfb="${LIBS_new} -lz $LIBDL -ldirectfb -lfusion -ldirect -lpthread"
3339             CPPFLAGS_mydirectfb="${CPPFLAGS_new}"
3340         fi
3341     else
3342         dnl Look for directfb-config
3343         AC_PATH_PROG(DIRECTFB_CONFIG, directfb-config, no, ${PATH})
3344         if test "${DIRECTFB_CONFIG}" != "no"; then
3345             CPPFLAGS_mydirectfb="`${DIRECTFB_CONFIG} --cflags`"
3346             LIBS_mydirectfb="`${DIRECTFB_CONFIG} --libs`"
3347             have_directfb="true"
3348         else
3349             dnl Trying with pkg-config
3350             PKG_CHECK_MODULES(DIRECTFB, directfb, [
3351                 CPPFLAGS_mydirectfb="${DIRECTFB_CFLAGS}"
3352                 LIBS_mydirectfb="${DIRECTFB_LIBS}"
3353                 have_directfb="true"
3354                 ], [have_directfb="false"])
3355         fi
3356     fi
3357     if test "${have_directfb}" = "true"; then
3358         VLC_ADD_PLUGIN([directfb])
3359         VLC_ADD_CPPFLAGS([directfb],[${CPPFLAGS_mydirectfb}])
3360         VLC_ADD_LIBS([directfb],[${LIBS_mydirectfb}])
3361     else
3362         AC_MSG_ERROR([${DIRECTFB_PKG_ERRORS}.])
3363     fi
3364 fi
3365
3366 dnl
3367 dnl  AA plugin
3368 dnl
3369 AC_ARG_ENABLE(aa,
3370   [  --enable-aa             aalib output (default disabled)])
3371 if test "${enable_aa}" = "yes"
3372 then
3373   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3374   if test "${have_aa}" = "true"
3375   then
3376     VLC_ADD_PLUGIN([aa])
3377     VLC_ADD_LIBS([aa],[-laa])
3378     if test "${SYS}" != "mingw32"; then
3379       VLC_ADD_LIBS([aa],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3380     fi
3381   fi
3382 fi
3383
3384 dnl
3385 dnl  libcaca plugin
3386 dnl
3387 PKG_ENABLE_MODULES_VLC([CACA], [], [caca >= 0.99.beta14], [libcaca output],[auto])
3388
3389 dnl
3390 dnl  OS/2 KVA plugin
3391 dnl
3392 AC_ARG_ENABLE(kva,
3393   [AS_HELP_STRING([--enable-kva],
3394     [support the K Video Accelerator KVA (default enabled on OS/2)])],, [
3395   AS_IF([test "$SYS" = "os2"], [
3396     enable_kva="yes"
3397   ])
3398 ])
3399 have_kva="no"
3400 KVA_LIBS=""
3401 AS_IF([test "$enable_kva" != "no"], [
3402   AC_CHECK_HEADERS([kva.h], [
3403     have_kva="yes"
3404     AC_CHECK_LIB(kva, main, [
3405       KVA_LIBS="-lkva"
3406     ])
3407   ])
3408 ])
3409 AC_SUBST(KVA_LIBS)
3410 AM_CONDITIONAL([HAVE_KVA], [test "${have_kva}" = "yes"])
3411
3412 dnl
3413 dnl  Audio plugins
3414 dnl
3415
3416 EXTEND_HELP_STRING([Audio plugins:])
3417
3418 dnl
3419 dnl  Pulseaudio module
3420 dnl
3421 AC_ARG_ENABLE(pulse,
3422   [AS_HELP_STRING([--enable-pulse],
3423     [use the PulseAudio client library (default auto)])])
3424 have_pulse="no"
3425 AS_IF([test "${enable_pulse}" != "no"], [
3426   PKG_CHECK_MODULES([PULSE], [libpulse >= 0.9.22], [
3427     have_pulse="yes"
3428   ], [
3429     PKG_CHECK_MODULES([PULSE], [libpulse >= 0.9.16], [
3430       AS_IF([test "${no_x}" != "yes"], [
3431         have_pulse="yes"
3432         PULSE_LIBS="$PULSE_LIBS ${X_LIBS} ${X_PRE_LIBS} -lX11"
3433       ], [
3434         AS_IF([test "${enable_pulse}" = "yes"], [
3435           AC_MSG_ERROR([Xlib is required with PulseAudio pre-0.9.22 versions
3436 (see http://www.pulseaudio.org/ticket/799 for further reference).])
3437         ])
3438       ])
3439     ], [
3440       AS_IF([test "x${enable_pulse}" != "x"], [
3441         AC_MSG_ERROR([$PULSE_PKG_ERRORS. PulseAudio 0.9.22 or later required.])
3442       ])
3443     ])
3444   ])
3445 ])
3446 AM_CONDITIONAL([HAVE_PULSE], [test "${have_pulse}" = "yes"])
3447
3448 dnl
3449 dnl  ALSA module
3450 dnl
3451 AC_ARG_ENABLE(alsa,
3452   [AS_HELP_STRING([--enable-alsa],
3453     [support the Advanced Linux Sound Architecture (default auto)])],, [
3454   AS_IF([test "$SYS" = "linux" -a "${have_pulse}" = "no"], [
3455     enable_alsa="yes"
3456   ])
3457 ])
3458 have_alsa="no"
3459 AS_IF([test "${enable_alsa}" != "no"], [
3460   PKG_CHECK_MODULES([ALSA], [alsa >= 1.0.16], [
3461     have_alsa="yes"
3462   ], [
3463     AS_IF([test "x${enable_alsa}" != "x"], [
3464       AC_MSG_ERROR([$ALSA_PKG_ERRORS. alsa-lib 1.0.16 or later required.])
3465     ])
3466   ])
3467 ])
3468 AM_CONDITIONAL([HAVE_ALSA], [test "${have_alsa}" = "yes"])
3469
3470 dnl
3471 dnl  Open Sound System module
3472 dnl
3473 AC_ARG_ENABLE(oss,
3474   [AS_HELP_STRING([--enable-oss],
3475     [support the Open Sound System OSS (default enabled on FreeBSD/NetBSD/DragonFlyBSD)])],, [
3476   AS_IF([test "$SYS" = "mingw32" -o "$SYS" = "mingwce" -o "$SYS" = "linux" -o "$SYS" = "openbsd"], [
3477     enable_oss="no"
3478   ])
3479 ])
3480 have_oss="no"
3481 OSS_LIBS=""
3482 AS_IF([test "$enable_oss" != "no"], [
3483   AC_CHECK_HEADERS([soundcard.h sys/soundcard.h], [
3484     have_oss="yes"
3485     AC_CHECK_LIB(ossaudio, main, [
3486       OSS_LIBS="-lossaudio"
3487     ])
3488   ])
3489 ])
3490 AC_SUBST(OSS_LIBS)
3491 AM_CONDITIONAL([HAVE_OSS], [test "${have_oss}" = "yes"])
3492
3493 dnl
3494 dnl  OpenBSD sndio module
3495 dnl
3496 AC_ARG_ENABLE([sndio],
3497   [AS_HELP_STRING([--disable-sndio],
3498     [support the OpenBSD sndio (default auto)])],, [
3499   AS_IF([test "$SYS" = "opensd"], [
3500     enable_sndio="yes"
3501   ])
3502 ])
3503 have_sndio="no"
3504 AS_IF([test "$enable_sndio" != "no"], [
3505   AC_CHECK_HEADER([sndio.h], [
3506     have_sndio="yes"
3507   ])
3508 ])
3509 AM_CONDITIONAL([HAVE_SNDIO], [test "${have_sndio}" = "yes"])
3510
3511 dnl
3512 dnl  Windows Audio Session plugin
3513 dnl
3514 AC_ARG_ENABLE([wasapi],
3515   [AS_HELP_STRING([--enable-wasapi],
3516     [use the Windows Audio Session API (default auto)])
3517 ])
3518 have_wasapi="no"
3519 AS_IF([test "$enable_wasapi" != "no"], [
3520   AC_CHECK_HEADER([audioclient.h], [
3521     have_wasapi="yes"
3522   ], [
3523     AS_IF([test "x${enable_wasapi}" != "x"], [
3524       AC_MSG_ERROR([Windows Audio Session API not found.])
3525     ])
3526   ])
3527 ])
3528 AM_CONDITIONAL([HAVE_WASAPI], [test "${have_wasapi}" = "yes"])
3529
3530 dnl
3531 dnl  win32 waveOut plugin
3532 dnl
3533 AC_ARG_ENABLE(waveout,
3534   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
3535 if test "${enable_waveout}" != "no"; then
3536   if test "${SYS}" = "mingw32"; then
3537     VLC_ADD_PLUGIN([waveout])
3538     VLC_ADD_LIBS([waveout],[-lwinmm])
3539   fi
3540   if test "${SYS}" = "mingwce"; then
3541     VLC_ADD_PLUGIN([waveout])
3542   fi
3543 fi
3544
3545 dnl
3546 dnl  CoreAudio plugin
3547 dnl
3548 AC_ARG_ENABLE(macosx-audio,
3549   [  --enable-macosx-audio   Mac OS X audio module (default enabled on MacOS X)])
3550 if test "x${enable_macosx_audio}" != "xno" &&
3551   (test "${SYS}" = "darwin" || test "${enable_macosx_audio}" = "yes")
3552 then
3553   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h,
3554     [ VLC_ADD_PLUGIN([auhal])
3555       VLC_ADD_LIBS([auhal],[-Wl,-framework,CoreAudio,-framework,AudioUnit,-framework,AudioToolbox,-framework,Carbon])
3556     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
3557 fi
3558
3559 dnl
3560 dnl  AudioQueue plugin
3561 dnl
3562 AC_ARG_ENABLE(audioqueue,
3563   [  --enable-audioqueue     AudioQueue audio module (default disabled)])
3564 if test "${enable_audioqueue}" = "yes"
3565 then
3566   VLC_ADD_PLUGIN([audioqueue])
3567   VLC_ADD_LIBS([audioqueue], [-Wl,-framework,AudioToolbox,-framework,CoreFoundation])
3568 fi
3569
3570 dnl
3571 dnl  JACK modules
3572 dnl
3573 PKG_ENABLE_MODULES_VLC([JACK], [jack access_jack], [jack], [JACK audio I/O modules],[auto])
3574
3575 dnl
3576 dnl  OpenSLES Android
3577 dnl
3578 AC_ARG_ENABLE(opensles,
3579   [  --enable-opensles       Android OpenSL ES audio module (default disabled)])
3580 if test "${HAVE_ANDROID}" = "1"; then
3581   if test "${enable_opensles}" = "yes"; then
3582       AC_CHECK_HEADERS(SLES/OpenSLES.h,
3583         [ VLC_ADD_PLUGIN([opensles_android]) ],
3584         [ AC_MSG_ERROR([cannot find OpenSLES headers])] )
3585   fi
3586 fi
3587
3588 dnl
3589 dnl libsamplerate plugin
3590 dnl
3591 PKG_ENABLE_MODULES_VLC([SAMPLERATE], [], [samplerate], [Resampler with libsamplerate], [auto])
3592
3593 dnl
3594 dnl  OS/2 KAI plugin
3595 dnl
3596 AC_ARG_ENABLE(kai,
3597   [AS_HELP_STRING([--enable-kai],
3598     [support the K Audio Interface KAI (default enabled on OS/2)])],, [
3599   AS_IF([test "$SYS" = "os2"], [
3600     enable_kai="yes"
3601   ])
3602 ])
3603 have_kai="no"
3604 KAI_LIBS=""
3605 AS_IF([test "$enable_kai" != "no"], [
3606   AC_CHECK_HEADERS([kai.h], [
3607     have_kai="yes"
3608     AC_CHECK_LIB(kai, main, [
3609       KAI_LIBS="-lkai"
3610     ])
3611   ])
3612 ])
3613 AC_SUBST(KAI_LIBS)
3614 AM_CONDITIONAL([HAVE_KAI], [test "${have_kai}" = "yes"])
3615
3616 dnl
3617 dnl  Interface plugins
3618 dnl
3619
3620 EXTEND_HELP_STRING([Interface plugins:])
3621
3622 dnl
3623 dnl QT
3624 dnl
3625 AC_ARG_ENABLE(qt, [
3626   AS_HELP_STRING([--disable-qt], [Qt UI support (default enabled)])],, [
3627   AS_IF([test "${SYS}" = "darwin"], [
3628     enable_qt="no"
3629   ])
3630 ])
3631 AS_IF([test "${enable_qt}" != "no"], [
3632   PKG_CHECK_MODULES([QT], [QtCore >= 5 QtWidgets QtGui],, [
3633     PKG_CHECK_MODULES([QT], [QtCore QtGui >= 4.6.0],, [
3634       AS_IF([test -n "${enable_qt}"],[
3635         AC_MSG_ERROR([${QT_PKG_ERRORS}.])
3636       ],[
3637         AC_MSG_WARN([${QT_PKG_ERRORS}.])
3638       ])
3639       enable_qt="no"
3640     ])
3641   ])
3642 ])
3643 AS_IF([test "${enable_qt}" != "no"], [
3644   VLC_ADD_PLUGIN([qt4])
3645   VLC_ADD_LIBS([qt4],[${QT_LIBS}])
3646   VLC_ADD_CXXFLAGS([qt4],[${QT_CFLAGS}])
3647   ALIASES="${ALIASES} qvlc"
3648
3649   AC_LANG_PUSH([C++])
3650   VLC_SAVE_FLAGS
3651
3652   AC_MSG_CHECKING([whether Qt uses Xlib])
3653   CPPFLAGS="${CPPFLAGS} ${QT_CFLAGS}"
3654   AC_PREPROC_IFELSE([AC_LANG_SOURCE([
3655 #include <QWidget>
3656 #if !defined (Q_WS_X11)
3657 # error Fail
3658 #endif
3659   ])], [
3660     AC_MSG_RESULT([yes])
3661     VLC_ADD_LIBS([qt4],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3662     VLC_ADD_CXXFLAGS([qt4],[${X_CFLAGS}])
3663   ], [
3664     AC_MSG_RESULT([no])
3665   ])
3666
3667   VLC_RESTORE_FLAGS
3668   AC_LANG_POP([C++])
3669
3670   AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
3671       VLC_ADD_LIBS([qt4],[-lole32])
3672   ])
3673   AS_IF([test "${SYS}" = "darwin" ],[
3674        VLC_ADD_LIBS([qt4], [-Wl,-framework,Cocoa])
3675   ])
3676
3677   QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix QtCore)"
3678   AC_PATH_PROGS(MOC, [moc-qt4 moc], moc, [${QT_PATH}/bin])
3679   AC_PATH_PROG(RCC, rcc, rcc, [${QT_PATH}/bin])
3680   AC_PATH_PROGS(UIC, [uic-qt4 uic], uic, [${QT_PATH}/bin])
3681 ])
3682 AM_CONDITIONAL(ENABLE_QT4, [test "$enable_qt" != "no"])
3683
3684 dnl
3685 dnl Simple test for skins2 dependency
3686 dnl
3687 AS_IF([test "$enable_qt" = "no"], [
3688   AS_IF([test "${enable_skins2}" = "yes"], [
3689     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.])
3690   ], [
3691     enable_skins2="no"
3692     AC_MSG_WARN([The skins2 module depends on the Qt4 interface, Qt4 is not built so skins2 is disabled.])
3693   ])
3694 ])
3695
3696 dnl
3697 dnl Skins2 module
3698 dnl
3699 AC_ARG_ENABLE(skins2,
3700   [AS_HELP_STRING([--enable-skins2], [skins interface module (default auto)])])
3701 AS_IF([test "${enable_skins2}" != "no"], [
3702   have_skins_deps="yes"
3703
3704   dnl Win32
3705   AS_IF([test "${SYS}" = "mingw32"], [
3706     VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -DWIN32_SKINS])
3707     VLC_ADD_LIBS([skins2],[-lgdi32 -lole32 -luuid -lmsimg32])
3708   dnl MacOS
3709   ], [test "${SYS}" = "darwin"], [
3710     VLC_ADD_CPPFLAGS([skins2],[ -DMACOSX_SKINS])
3711     VLC_ADD_LIBS([skins2],[-Wl,-framework,Carbon])
3712   dnl Linux/Unix
3713   ], [
3714     PKG_CHECK_MODULES([XPM], [xpm],, [have_skins_deps="no"])
3715     PKG_CHECK_MODULES([XINERAMA], [xinerama],, [have_skins_deps="no"])
3716     PKG_CHECK_MODULES([XEXT], [xext],, [have_skins_deps="no"])
3717     VLC_ADD_CPPFLAGS([skins2],[${X_CFLAGS} ${XEXT_CFLAGS} ${XPM_CFLAGS} -DX11_SKINS])
3718     VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} ${XEXT_LIBS} ${XPM_LIBS} ${XINERAMA_LIBS} -lX11])
3719   ])
3720
3721   dnl for All OSes
3722   VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3723
3724   dnl we need freetype
3725   AS_IF([test "${have_freetype}" != "yes"], [
3726     have_skins_deps="no"
3727   ])
3728
3729   AS_IF([test "${have_skins_deps}" = "no"], [
3730     AS_IF([test "x${enable_skins2}" = "x"], [
3731       AC_MSG_WARN([Skins2 interface disabled due to missing dependencies.])
3732     ], [
3733       AC_MSG_ERROR([Skins2 interface requires FreeType, libxpm, libxext and libxinerama])
3734     ])
3735     enable_skins2="no"
3736   ], [
3737     VLC_ADD_PLUGIN([skins2])
3738     ALIASES="${ALIASES} svlc"
3739     enable_skins2="yes"
3740   ])
3741 ])
3742 AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes"])
3743
3744 AC_ARG_ENABLE(libtar,
3745   [  --enable-libtar         libtar support for skins2 (default auto)])
3746 AS_IF([test "${enable_skins2}" = "yes" && test "${enable_libtar}" != "no"], [
3747   AC_CHECK_HEADERS(libtar.h, [
3748     VLC_ADD_LIBS([skins2],[-ltar])
3749   ])
3750 ])
3751
3752 dnl
3753 dnl  MacOS X gui module
3754 dnl
3755 AC_ARG_ENABLE(macosx,
3756   [  --enable-macosx         Mac OS X gui support (default enabled on Mac OS X)])
3757 if test "x${enable_macosx}" != "xno" -a "${SYS}" = "darwin"
3758 then
3759   VLC_ADD_LIBS([macosx minimal_macosx], [-Wl,-framework,Cocoa -Wl,-framework,OpenGL -Wl,-framework,Carbon -Wl,-framework,CoreServices -Wl,-framework,AGL])
3760   VLC_ADD_OBJCFLAGS([macosx minimal_macosx], [-fobjc-exceptions] )
3761   VLC_ADD_PLUGIN([macosx minimal_macosx])
3762
3763   VLC_ADD_LIBS([macosx], [-Wl,-framework,QTKit -Wl,-framework,IOKit -Wl,-framework,AddressBook -Wl,-framework,WebKit -Wl,-framework,CoreAudio -Wl,-framework,SystemConfiguration])
3764
3765   if test ! -d ${CONTRIB_DIR}/Sparkle.framework
3766   then
3767     AC_MSG_ERROR([Sparkle framework is required and was not found in ${CONTRIB_DIR}])
3768   fi
3769   VLC_ADD_LIBS([macosx], [-F${CONTRIB_DIR} -Wl,-framework,Sparkle])
3770   VLC_ADD_OBJCFLAGS([macosx], [-F${CONTRIB_DIR}])
3771
3772   if test ! -d ${CONTRIB_DIR}/BGHUDAppKit.framework
3773   then
3774     AC_MSG_ERROR([BGHUDAppKit framework is required and was not found in ${CONTRIB_DIR}])
3775   fi
3776   VLC_ADD_LIBS([macosx], [-F${CONTRIB_DIR} -Wl,-framework,BGHUDAppKit])
3777   VLC_ADD_OBJCFLAGS([macosx], [-F${CONTRIB_DIR}])
3778
3779 fi
3780
3781 dnl
3782 dnl  MacOS X dialor provider
3783 dnl
3784 AC_ARG_ENABLE(macosx-dialog-provider,
3785   [  --enable-macosx-dialog-provider Mac OS X dialog module (default enabled on Mac OS X)])
3786 if test "x${enable_macosx_dialog_provider}" != "xno" &&
3787   (test "${SYS}" = "darwin" || test "${enable_macosx_dialog_provider}" = "yes")
3788 then
3789   VLC_ADD_LIBS([macosx_dialog_provider],[-Wl,-framework,Cocoa])
3790   VLC_ADD_PLUGIN([macosx_dialog_provider])
3791 fi
3792
3793 dnl
3794 dnl  ncurses module
3795 dnl
3796 AC_ARG_ENABLE(ncurses,
3797 [AS_HELP_STRING([--disable-ncurses],[ncurses text-based interface (default auto)])])
3798 AS_IF([test "${enable_ncurses}" != "no"] ,[
3799   PKG_CHECK_MODULES([NCURSES], [ncursesw], [
3800     VLC_ADD_PLUGIN([ncurses])
3801     VLC_ADD_CFLAGS([ncurses],[${NCURSES_CFLAGS}])
3802     VLC_ADD_LIBS([ncurses],[${NCURSES_LIBS}])
3803     ALIASES="${ALIASES} nvlc"
3804   ], [
3805     AS_IF([test -n "${enable_ncurses}"], [
3806       AC_MSG_ERROR([${NCURSES_PKG_ERRORS}.])
3807     ])
3808   ])
3809 ])
3810
3811 dnl
3812 dnl  Lirc plugin
3813 dnl
3814 AC_ARG_ENABLE(lirc,
3815   [  --enable-lirc           lirc support (default disabled)])
3816 if test "${enable_lirc}" = "yes"
3817 then
3818   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
3819   if test "${have_lirc}" = "true"
3820   then
3821     VLC_ADD_PLUGIN([lirc])
3822     VLC_ADD_LIBS([lirc],[-llirc_client])
3823   fi
3824 fi
3825
3826 EXTEND_HELP_STRING([Visualisations and Video filter plugins:])
3827 dnl
3828 dnl Visualisation plugin
3829 dnl
3830 AC_ARG_ENABLE(visual,
3831   [  --enable-visual         visualisation plugin (default enabled)])
3832 if test "${enable_visual}" != "no"
3833 then
3834     VLC_ADD_PLUGIN([visual])
3835 fi
3836
3837 dnl
3838 dnl  goom visualization plugin
3839 dnl
3840 PKG_ENABLE_MODULES_VLC([GOOM], [], [libgoom2], [goom visualization plugin], [auto])
3841
3842 dnl
3843 dnl libprojectM visualization plugin
3844 dnl
3845 AC_ARG_ENABLE(projectm,
3846   [  --enable-projectm       projectM visualization plugin (default enabled)])
3847 AS_IF([test "${enable_projectm}" != "no"],
3848   [
3849     PKG_CHECK_MODULES(PROJECTM, libprojectM,
3850     [
3851       VLC_ADD_PLUGIN([projectm])
3852       VLC_ADD_CXXFLAGS([projectm],[$PROJECTM_CFLAGS])
3853       VLC_ADD_LIBS([projectm],[$PROJECTM_LIBS])
3854       PKG_CHECK_MODULES(PROJECTM2, [libprojectM >= 2.0.0],
3855         [ AC_DEFINE([HAVE_PROJECTM2], 1, [Define to 1 if using libprojectM 2.x]) ],
3856         [ AC_MSG_WARN( [Using libprojectM version 1] )
3857       ])
3858     ],[
3859       AC_MSG_WARN([${PROJECTM_PKG_ERRORS}.])
3860     ])
3861   ])
3862
3863 dnl
3864 dnl Vovoid VSXu visualization plugin
3865 dnl
3866 AC_ARG_ENABLE(vsxu,
3867   [  --enable-vsxu           Vovoid VSXu visualization plugin (default auto)])
3868 AS_IF([test "${enable_vsxu}" != "no"],
3869   [
3870     PKG_CHECK_MODULES(VSXU, libvsxu,
3871     [
3872       VLC_ADD_PLUGIN([vsxu])
3873       VLC_ADD_CXXFLAGS([vsxu],[$VSXU_CFLAGS])
3874       VLC_ADD_LIBS([vsxu],[$VSXU_LIBS])
3875     ],[
3876       AC_MSG_WARN([${VSXU_PKG_ERRORS}.])
3877     ])
3878   ])
3879
3880 dnl
3881 dnl  AtmoLight (homemade Philips Ambilight clone)
3882 dnl
3883 AC_ARG_ENABLE(atmo,
3884 AS_HELP_STRING([--disable-atmo],[AtmoLight (homemade Philips Ambilight clone)
3885                 (default enabled)]),, [enable_atmo="yes"])
3886 AS_IF([test "${enable_atmo}" != no], [
3887   AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "linux"], [
3888     AC_LANG_PUSH(C++)
3889     VLC_ADD_PLUGIN([atmo])
3890     AC_LANG_POP(C++)
3891   ])
3892 ])
3893
3894 EXTEND_HELP_STRING([Service Discovery plugins:])
3895 dnl
3896 dnl  Bonjour services discovery
3897 PKG_ENABLE_MODULES_VLC([BONJOUR], [], [avahi-client >= 0.6], [Bonjour services discovery], [auto])
3898
3899 dnl
3900 dnl  libudev services discovery
3901 PKG_ENABLE_MODULES_VLC([UDEV], [], [libudev >= 142], [Linux udev services discovery], [auto])
3902
3903 dnl
3904 dnl MTP devices services discovery
3905 PKG_ENABLE_MODULES_VLC([MTP], [mtp access_mtp], [libmtp >= 1.0.0], [MTP devices support], [auto])
3906
3907 dnl
3908 dnl UPnP Plugin (Intel SDK)
3909 dnl
3910 PKG_ENABLE_MODULES_VLC([UPNP], [upnp], [libupnp], [Intel UPNP SDK],[auto])
3911 VLC_ADD_CXXFLAGS([upnp],[${UPNP_CFLAGS}])
3912
3913 EXTEND_HELP_STRING([Misc options:])
3914
3915 dnl
3916 dnl  libxml2 module
3917 dnl
3918 PKG_ENABLE_MODULES_VLC([LIBXML2], [xml], [libxml-2.0 >= 2.5], [libxml2 support],[auto])
3919
3920
3921 dnl
3922 dnl libgcrypt
3923 dnl
3924 AC_ARG_ENABLE(libgcrypt,
3925   [  --disable-libgcrypt     gcrypt support (default enabled)])
3926 AS_IF([test "${enable_libgcrypt}" != "no"], [
3927   AC_CHECK_DECL([GCRYCTL_SET_THREAD_CBS], [
3928     libgcrypt-config --version >/dev/null || \
3929         AC_MSG_ERROR([gcrypt.h present but libgcrypt-config could not be found])
3930     AC_CHECK_LIB(gcrypt, gcry_control, [
3931       have_libgcrypt="yes"
3932       GCRYPT_CFLAGS="`libgcrypt-config --cflags`"
3933       GCRYPT_LIBS="`libgcrypt-config --libs`"
3934     ], [
3935       AC_MSG_ERROR([libgcrypt not found. Install libgcrypt or use --disable-libgcrypt. Have a nice day.])
3936     ], [`libgcrypt-config --libs`])
3937   ], [
3938     AC_MSG_ERROR([libgcrypt version 1.1.94 or higher not found. Install libgcrypt or use --disable-libgcrypt. Have a nice day.])
3939   ], [#include <gcrypt.h>]
3940   )
3941 ])
3942
3943 AC_SUBST(GCRYPT_CFLAGS)
3944 AC_SUBST(GCRYPT_LIBS)
3945 AM_CONDITIONAL([HAVE_GCRYPT], [test "${have_libgcrypt}" = "yes"])
3946
3947 dnl
3948 dnl TLS/SSL
3949 dnl
3950 AC_ARG_ENABLE(gnutls,
3951   [  --enable-gnutls         GNU TLS TLS/SSL support (default enabled)])
3952
3953 AS_IF([test "${have_libgcrypt}" != "yes"], [
3954   AS_IF([test "${enable_gnutls}" = "yes"], [
3955     AC_MSG_ERROR([--enable-gnutls and --disable-libgcrypt are mutually exclusive.])
3956   ])
3957   enable_gnutls="no"
3958 ])
3959 AS_IF([test "${enable_gnutls}" != "no"], [
3960   PKG_CHECK_MODULES(GNUTLS, [gnutls >= 2.6.6], [
3961     VLC_ADD_PLUGIN([gnutls])
3962   ], [
3963     AS_IF([test -n "${enable_gnutls}"], [
3964       AC_MSG_ERROR([${GNUTLS_PKG_ERRORS}.)])
3965     ])
3966   ])
3967 ])
3968
3969
3970 dnl
3971 dnl Nokia MCE plugin (Maemo screen unblanking)
3972 dnl
3973 PKG_CHECK_MODULES([MCE], [dbus-1 mce], [VLC_ADD_PLUGIN([mce])], [true])
3974
3975
3976 AS_IF([test -f "/etc/maemo_version"], [
3977   AC_DEFINE([HAVE_MAEMO], 1, [Define to 1 if building for the Maemo platform.])
3978 ])
3979
3980
3981 dnl
3982 dnl Taglib plugin
3983 dnl
3984 AC_ARG_ENABLE(taglib,
3985   [AS_HELP_STRING([--disable-taglib],
3986     [do not use TagLib (default enabled)])])
3987 AS_IF([test "${enable_taglib}" != "no"], [
3988   PKG_CHECK_MODULES(TAGLIB, taglib >= 1.6.1, [
3989     VLC_ADD_PLUGIN([taglib])
3990     VLC_ADD_LIBS([taglib],[$TAGLIB_LIBS -lz])
3991     VLC_ADD_CXXFLAGS([taglib],[$TAGLIB_CFLAGS])
3992   ], [
3993     AC_MSG_WARN([${TAGLIB_PKG_ERRORS}.])])
3994 ])
3995
3996
3997 dnl
3998 dnl update checking system
3999 dnl
4000 AC_ARG_ENABLE(update-check,
4001   [  --enable-update-check   update checking system (default disabled)])
4002 if test "${enable_update_check}" = "yes"
4003 then
4004   if test "${have_libgcrypt}" != "yes"
4005   then
4006     AC_MSG_ERROR([libgcrypt is required for update checking system])
4007   fi
4008   VLC_ADD_LIBS([libvlccore], [${GCRYPT_LIBS}])
4009   VLC_ADD_CFLAGS([libvlccore], [${GCRYPT_CFLAGS}])
4010   AC_DEFINE([UPDATE_CHECK], 1, [Define if you want to use the VLC update mechanism])
4011 fi
4012
4013 dnl
4014 dnl Growl notification plugin
4015 dnl
4016 AC_ARG_ENABLE(growl,
4017   [  --enable-growl          growl notification plugin (default disabled)],,
4018   [enable_growl=no])
4019 AS_IF([test "${enable_growl}" != "no"], [
4020     AC_CHECK_HEADERS(${CONTRIB_DIR}/Growl.framework/Versions/A/Headers/Growl.h, [
4021       VLC_ADD_PLUGIN([growl])
4022       VLC_ADD_LIBS([growl], [-F${CONTRIB_DIR} -Wl,-framework,Growl,-framework,Foundation])
4023       VLC_ADD_OBJCFLAGS([growl], [-F${CONTRIB_DIR}])
4024       VLC_ADD_OBJCFLAGS([growl], [-fobjc-exceptions] )
4025     ])
4026   ]
4027 )
4028
4029 dnl
4030 dnl Libnotify notification plugin
4031 dnl
4032 PKG_ENABLE_MODULES_VLC([NOTIFY], [], [libnotify gtk+-2.0], [libnotify notification], [auto])
4033
4034 dnl
4035 dnl media library
4036 dnl
4037 AC_ARG_ENABLE(media-library,
4038     [  --enable-media-library  media library (default disabled)])
4039 AS_IF([test "${enable_media_library}" = "yes"], [
4040   AC_DEFINE([MEDIA_LIBRARY], 1, [Define if you want to use the VLC media library])
4041   VLC_ADD_CPPFLAGS([qt4],"-DMEDIA_LIBRARY")
4042   VLC_ADD_PLUGIN([media_library])
4043
4044 dnl
4045 dnl SQLite
4046 dnl
4047   AS_IF([test "${SYS}" != "darwin"], [
4048     PKG_ENABLE_MODULES_VLC([SQLITE], [], [sqlite3 >= 3.6.0], [sqlite3], [auto])
4049   ], [
4050     AS_IF([test "${enable_sqlite}" != "no"], [
4051       AC_CHECK_HEADERS(sqlite3.h, [
4052         VLC_ADD_PLUGIN([sqlite])
4053         VLC_ADD_LIBS([sqlite], [-lsqlite3])
4054       ], [
4055         AC_MSG_ERROR([sqlite3 is required for the media library])
4056       ])
4057     ])
4058   ])
4059 ])
4060
4061
4062 dnl
4063 dnl  Endianness check
4064 dnl
4065 AC_C_BIGENDIAN
4066 AS_IF([test "${ac_cv_c_bigendian}" = "yes"], [
4067   DEFS_BIGENDIAN="-DWORDS_BIGENDIAN=1"
4068 ], [
4069   DEFS_BIGENDIAN=""
4070 ])
4071 AC_SUBST(DEFS_BIGENDIAN)
4072
4073 dnl
4074 dnl Where to install KDE solid .desktop
4075 dnl
4076 AC_ARG_VAR([KDE4_CONFIG], [kde4-config utility])
4077 AS_IF([test "x$KDE4_CONFIG" = "x"], [
4078   KDE4_CONFIG="kde4-config"
4079 ])
4080
4081 AC_ARG_WITH(kde-solid,
4082   AS_HELP_STRING([--with-kde-solid=PATH],
4083                  [KDE Solid actions directory (auto)]),, [
4084
4085 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" -a "${SYS}" != "darwin" ; then
4086   with_kde_solid="yes"
4087 fi
4088 ])
4089 soliddatadir=""
4090 AS_IF([test "${with_kde_solid}" != "no"], [
4091   AS_IF([test "${with_kde_solid}" = "yes"], [
4092     kde4datadir="`${KDE4_CONFIG} --install data`"
4093     AS_IF([test "x$kde4datadir" = "x"], [kde4datadir='${datadir}/kde4/apps'])
4094     soliddatadir="${kde4datadir}/solid/actions"
4095   ], [
4096     soliddatadir="${with_kde_solid}"
4097   ])
4098 ])
4099 AC_SUBST(soliddatadir)
4100 AM_CONDITIONAL(KDE_SOLID, [test "x${soliddatadir}" != "x"])
4101
4102 dnl
4103 dnl  DLL loader copied from MPlayer copied from somewhere else (WINE ?)
4104 dnl
4105 loader=false
4106 AC_ARG_ENABLE(loader,
4107   AS_HELP_STRING([--enable-loader],[build DLL loader for ELF i386 platforms
4108           (default disabled)]))
4109 AM_CONDITIONAL(LOADER, [test "${enable_loader}" = "yes"])
4110 AS_IF([test "${enable_loader}" = "yes"],
4111   [ VLC_ADD_PLUGIN([dmo])
4112     VLC_ADD_CPPFLAGS([dmo quicktime ],[-I\\\${top_srcdir}/modules/codec/loader])
4113     VLC_ADD_LIBS([dmo quicktime ],[\\\${top_builddir}/modules/codec/loader/libloader.la])
4114     VLC_ADD_LIBS([dmo quicktime], [-lpthread])
4115   ])
4116
4117 EXTEND_HELP_STRING([Components:])
4118
4119 dnl
4120 dnl  the VLC binary
4121 dnl
4122 AC_ARG_ENABLE(vlc,
4123   [  --enable-vlc            build the VLC media player (default enabled)])
4124 AM_CONDITIONAL(BUILD_VLC, [test "${enable_vlc}" != "no"])
4125
4126 AC_ARG_ENABLE(macosx-vlc-app,
4127   [  --enable-macosx-vlc-app build the VLC media player (default enabled on Mac OS X)])
4128 AM_CONDITIONAL(BUILD_MACOSX_VLC_APP, [test "${enable_macosx_vlc_app}" != "no" &&
4129     (test "${SYS}" = "darwin" || test "${enable_macosx_vlc_app}" = "yes") ])
4130
4131 dnl
4132 dnl  Stuff used by the program
4133 dnl
4134 VERSION_MESSAGE="${VERSION} ${CODENAME}"
4135 COPYRIGHT_MESSAGE="Copyright © ${COPYRIGHT_YEARS} the VideoLAN team"
4136 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION_MESSAGE}", [Simple version string])
4137 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "${COPYRIGHT_MESSAGE}", [Copyright string])
4138 AC_DEFINE_UNQUOTED(COPYRIGHT_YEARS, "${COPYRIGHT_YEARS}", [The copyright years])
4139 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4140 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,${VERSION_MAJOR}, [version major number])
4141 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,${VERSION_MINOR}, [version minor number])
4142 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,${VERSION_REVISION}, [version revision number])
4143 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,${VERSION_EXTRA}, [version extra number])
4144 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_DEV,"${VERSION_DEV}", [version development string])
4145 AC_SUBST(COPYRIGHT_MESSAGE)
4146 AC_SUBST(VERSION_MESSAGE)
4147 AC_SUBST(VERSION_MAJOR)
4148 AC_SUBST(VERSION_MINOR)
4149 AC_SUBST(VERSION_REVISION)
4150 AC_SUBST(VERSION_EXTRA)
4151 AC_SUBST(COPYRIGHT_YEARS)
4152 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami|sed -e 's/\\\/\\\\\\\/g'`", [user who ran configure])
4153 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname -f 2>/dev/null || hostname`", [host which ran configure])
4154 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1 | sed -e 's/ *$//'`", [compiler])
4155 dnl
4156 dnl  Handle substvars that use $(top_srcdir)
4157 dnl
4158 CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/include ${CPPFLAGS}"
4159
4160 dnl
4161 dnl  Configuration is finished
4162 dnl
4163 AC_SUBST(SYS)
4164 AC_SUBST(ARCH)
4165 AC_SUBST(ALIASES)
4166 AC_SUBST(ASM)
4167 AC_SUBST(MOC)
4168 AC_SUBST(RCC)
4169 AC_SUBST(UIC)
4170 AC_SUBST(WINDRES)
4171 AC_SUBST(WINE_SDK_PATH)
4172 AC_SUBST(LIBEXT)
4173 AC_SUBST(AM_CPPFLAGS)
4174 AC_SUBST(MACOSX_DEPLOYMENT_TARGET)
4175 AC_SUBST(FILE_LIBVLCCORE_DLL)
4176 AC_SUBST(FILE_LIBVLC_DLL)
4177
4178 AC_CONFIG_FILES([
4179   Makefile
4180   doc/Makefile
4181   modules/Makefile
4182   m4/Makefile
4183   po/Makefile.in
4184   share/Makefile
4185   compat/Makefile
4186   src/Makefile
4187   src/test/Makefile
4188   lib/Makefile
4189   bin/Makefile
4190   test/Makefile
4191   modules/access/Makefile
4192   modules/access/bd/Makefile
4193   modules/access/dshow/Makefile
4194   modules/access/mms/Makefile
4195   modules/access/rtp/Makefile
4196   modules/access/rtsp/Makefile
4197   modules/access/vcd/Makefile
4198   modules/access/vcdx/Makefile
4199   modules/access/screen/Makefile
4200   modules/access/zip/Makefile
4201   modules/access/zip/unzip/Makefile
4202   modules/access_output/Makefile
4203   modules/audio_filter/Makefile
4204   modules/audio_mixer/Makefile
4205   modules/audio_output/Makefile
4206   modules/codec/Makefile
4207   modules/codec/avcodec/Makefile
4208   modules/codec/dmo/Makefile
4209   modules/codec/loader/Makefile
4210   modules/codec/omxil/Makefile
4211   modules/codec/shine/Makefile
4212   modules/codec/spudec/Makefile
4213   modules/codec/wmafixed/Makefile
4214   modules/control/Makefile
4215   modules/control/dbus/Makefile
4216   modules/control/globalhotkeys/Makefile
4217   modules/demux/Makefile
4218   modules/demux/asf/Makefile
4219   modules/demux/avformat/Makefile
4220   modules/demux/avi/Makefile
4221   modules/demux/mkv/Makefile
4222   modules/demux/mp4/Makefile
4223   modules/demux/mpeg/Makefile
4224   modules/demux/playlist/Makefile
4225   modules/gui/Makefile
4226   modules/gui/macosx/Makefile
4227   modules/gui/minimal_macosx/Makefile
4228   modules/gui/macosx_dialog_provider/Makefile
4229   modules/gui/qt4/Makefile
4230   modules/gui/skins2/Makefile
4231   modules/lua/Makefile
4232   modules/meta_engine/Makefile
4233   modules/misc/Makefile
4234   modules/misc/playlist/Makefile
4235   modules/misc/osd/Makefile
4236   modules/misc/stats/Makefile
4237   modules/media_library/Makefile
4238   modules/mux/Makefile
4239   modules/mux/mpeg/Makefile
4240   modules/notify/Makefile
4241   modules/packetizer/Makefile
4242   modules/services_discovery/Makefile
4243   modules/stream_filter/Makefile
4244   modules/stream_filter/dash/Makefile
4245   modules/stream_out/Makefile
4246   modules/stream_out/transcode/Makefile
4247   modules/text_renderer/Makefile
4248   modules/video_chroma/Makefile
4249   modules/video_filter/Makefile
4250   modules/video_filter/dynamicoverlay/Makefile
4251   modules/video_output/Makefile
4252   modules/video_output/msw/Makefile
4253   modules/visualization/Makefile
4254   modules/visualization/visual/Makefile
4255   modules/mmx/Makefile
4256   modules/sse2/Makefile
4257   modules/altivec/Makefile
4258   modules/arm_neon/Makefile
4259 ])
4260
4261 AM_COND_IF([HAVE_WIN32], [
4262   AC_CONFIG_FILES([
4263     extras/package/win32/spad.nsi
4264     extras/package/win32/vlc.win32.nsi
4265   ])
4266 ])
4267
4268 AM_COND_IF([HAVE_DARWIN], [
4269   AC_CONFIG_FILES([
4270     extras/package/macosx/Info.plist
4271     extras/package/macosx/Resources/English.lproj/InfoPlist.strings
4272   ])
4273 ])
4274
4275 dnl Generate makefiles
4276 AC_OUTPUT
4277
4278 dnl Do we have to use make or gmake ?
4279 if make --version 2>&1|grep -q GNU
4280 then
4281     # GNU make, all seems good
4282     MAKE=make
4283 else
4284     # Known GNU make alias (on BSD)
4285     MAKE=gmake
4286 fi
4287 dnl Shortcut to nice compile message
4288 if test -n $SHELL; then
4289   SHELL=${CONFIG_SHELL-/bin/sh}
4290 fi
4291 rm -f compile
4292 echo "#! $SHELL
4293 rm -f .error\$\$
4294 ERROR=0
4295 export PATH=\"$PATH\" LANG=C
4296 ($MAKE V=1 \$@ 2>&1 || touch .error\$\$)| `sed -ne \"s/^top_srcdir *= *//p\" < Makefile`/extras/buildsystem/make.pl
4297 test -f .error\$\$ && ERROR=1
4298 rm -f .error\$\$
4299 exit \$ERROR" >compile
4300 chmod a+x compile
4301
4302 echo "
4303 libvlc configuration
4304 --------------------
4305 version               : ${VERSION}
4306 system                : ${SYS}
4307 architecture          : ${ARCH}
4308 optimizations         : ${enable_optimizations}"
4309 if test "${enable_vlc}" != "no"; then
4310 echo "vlc aliases           :${ALIASES}"
4311 else
4312 echo "build vlc executable  : no"
4313 fi
4314 echo "
4315 To build vlc and its plugins, type \`$MAKE', or \`./compile' if you like nice colors."