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