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