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