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