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