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