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