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