1 dnl Autoconf settings for vlc
3 AC_COPYRIGHT([Copyright 2002-2009 the VideoLAN team])
5 AC_INIT(vlc, 1.1.0-git)
13 CONFIGURE_LINE="`echo "$0 $ac_configure_args" | sed -e 's/\\\/\\\\\\\/g'`"
15 COPYRIGHT_YEARS="1996-2009"
18 AC_CONFIG_SRCDIR(src/libvlc.c)
19 AC_CONFIG_AUX_DIR(autotools)
20 AC_CONFIG_MACRO_DIR(m4)
21 AC_CONFIG_LIBOBJ_DIR(compat)
25 AM_INIT_AUTOMAKE(tar-ustar)
26 AM_CONFIG_HEADER(config.h)
28 dnl Too many people are not aware of maintainer mode:
29 dnl If you want to use it, you definitely know what you are doing, so
30 dnl you can specify "--disable-maintainer-mode". But if you want the default
31 dnl automake behavior, you've likely never heard of maintainer mode, so we
32 dnl can't expect you to enable it manually.
34 AS_IF([test "x${enable_maintainer_mode}" != "xno"],
35 [enable_maintainer_mode="yes"])
41 dnl vlcincludedir="\${includedir}/\${PKGDIR}"
42 dnl AC_SUBST(vlcincludedir)
43 vlcdatadir="\${datadir}/\${PKGDIR}"
45 vlclibdir="\${libdir}/\${PKGDIR}"
49 dnl Deprecated options
50 dnl to notify packagers that stuff has changed
52 AC_ARG_ENABLE(python-bindings,
53 [ --enable-python-bindings Always fails for historical reasons)],,
54 [enable_python_bindings="no"])
55 AS_IF([test "${enable_python_bindings}" != "no"], [
56 AC_MSG_ERROR([Python bindings are now built from a separate source package])
59 AC_ARG_ENABLE(java-bindings,
60 [ --enable-java-bindings Always fails for historical reasons],,
61 [enable_java_bindings="no"])
62 AS_IF([test "${enable_java_bindings}" != "no"], [
63 AC_MSG_ERROR([Java bindings are now built from a separate source package])
75 AC_USE_SYSTEM_EXTENSIONS
76 AC_DEFINE([_FORTIFY_SOURCE], 2, [Define to '2' to get glibc warnings.])
82 _AM_DEPENDENCIES([OBJC])
88 dnl Find the right ranlib, even when cross-compiling
89 AC_CHECK_TOOL(RANLIB, ranlib, :)
90 AC_CHECK_TOOL(STRIP, strip, :)
91 AC_CHECK_TOOL(AR, ar, :)
92 AC_CHECK_TOOL(LD, ld, :)
93 AC_CHECK_TOOL(DLLTOOL, dlltool, :)
95 dnl Check for compiler properties
100 dnl Allow binary package maintainer to pass a custom string to avoid
102 AC_ARG_WITH(binary-version,
103 AS_HELP_STRING([--with-binary-version=STRING],
104 [To avoid plugins cache problem between binary version]),[],[])
105 AS_IF([test -n "${with_binary_version}"],[
106 AC_DEFINE_UNQUOTED([DISTRO_VERSION],["${with_binary_version}"],
107 [Binary specific version])
112 dnl Check for the contrib directory
115 [ --without-contrib do not use the libraries in CONTRIB_DIR],[],[])
116 AS_IF([test "${with_contrib}" != "no"],[
117 AC_ARG_VAR([CONTRIB_DIR], [directory containing pre-built contrib, overriding extras/contrib])
118 if test -z "$CONTRIB_DIR"
120 topdir="`dirname $0`"
121 if test "`echo \"$topdir\" | cut -c 1`" != "/"; then
122 topdir="`pwd`/$topdir"
124 CONTRIB_DIR=${topdir}/extras/contrib
126 AC_MSG_CHECKING([for libs in ${CONTRIB_DIR}])
127 AS_IF([test -d ${CONTRIB_DIR}/lib],[
128 AS_IF([test "`grep HOST ${CONTRIB_DIR}/config.mak 2>/dev/null|awk '{print $3}'`" != "`$CC -dumpmachine`"],[
129 if test "${with_contrib}" = "yes"; then
131 AC_MSG_ERROR([ not using the libs in extras/contrib as it is not the same host])
134 AC_MSG_WARN([ not using the libs in extras/contrib as it is not the same host])
138 export PATH=${CONTRIB_DIR}/bin:$PATH
139 CPPFLAGS="${CPPFLAGS} -I${CONTRIB_DIR}/include"
140 CPPFLAGS_save="${CPPFLAGS_save} -I${CONTRIB_DIR}/include"
141 CFLAGS="${CFLAGS} -I${CONTRIB_DIR}/include"
142 CFLAGS_save="${CFLAGS_save} -I${CONTRIB_DIR}/include"
143 CXXFLAGS="${CXXFLAGS} -I${CONTRIB_DIR}/include"
144 CXXFLAGS_save="${CXXFLAGS_save} -I${CONTRIB_DIR}/include"
145 OBJCFLAGS="${OBJCFLAGS} -I${CONTRIB_DIR}/include"
146 OBJCFLAGS_save="${OBJCFLAGS_save} -I${CONTRIB_DIR}/include"
147 if test $build = $host -o "$PKG_CONFIG_LIBDIR"; then
148 export PKG_CONFIG_PATH=${CONTRIB_DIR}/lib/pkgconfig:$PKG_CONFIG_PATH
150 export PKG_CONFIG_LIBDIR=${CONTRIB_DIR}/lib/pkgconfig
152 LDFLAGS="${LDFLAGS} -L${CONTRIB_DIR}/lib"
153 LDFLAGS_save="${LDFLAGS_save} -L${CONTRIB_DIR}/lib"
155 if test -z $with_mozilla_sdk_path; then
156 with_mozilla_sdk_path=${CONTRIB_DIR}/gecko-sdk
158 if test -z $with_cyberlink_tree; then
159 with_cyberlink_tree=${CONTRIB_DIR}/src/clinkcc
162 if test ".`uname -s`" = ".Darwin"; then
163 export LD_LIBRARY_PATH=${CONTRIB_DIR}/lib:$LD_LIBRARY_PATH
164 export DYLD_LIBRARY_PATH=${CONTRIB_DIR}/lib:$DYLD_LIBRARY_PATH
165 elif test ".`uname -s`" = ".BeOS"; then
166 export LIBRARY_PATH=${CONTRIB_DIR}/lib:$LIBRARY_PATH
167 export BELIBRARIES=${CONTRIB_DIR}/lib:$BELIBRARIES
175 dnl Set default values
177 LDFLAGS_vlc="${LDFLAGS}"
180 dnl Check the operating system
191 CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
192 VLC_ADD_LIBS([dvd dvdcss vcd cdda vcdx cddax],[-ldvd])
196 CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
199 CPPFLAGS_save="${CPPFLAGS_save} -I/usr/local/include"
200 CPPFLAGS="${CPPFLAGS_save}"
201 LDFLAGS_save="${LDFLAGS_save} -L/usr/local/lib"
202 LDFLAGS="${LDFLAGS_save}"
208 CFLAGS_save="${CFLAGS_save} -D_INTL_REDIRECT_MACROS"; CFLAGS="${CFLAGS_save}"
209 CXXFLAGS_save="${CXXFLAGS_save} -D_INTL_REDIRECT_MACROS"; CXXFLAGS="${CXXFLAGS_save}"
210 OBJCFLAGS_save="${OBJCFLAGS_save} -D_INTL_REDIRECT_MACROS -std=gnu99"; OBJCFLAGS="${OBJCFLAGS_save}"
211 LDFLAGS_save="${LDFLAGS_save} -Wl,-headerpad_max_install_names"; LDFLAGS="${LDFLAGS_save}"
212 VLC_ADD_LDFLAGS([mp4], [-Wl,-framework,IOKit,-framework,CoreFoundation])
213 VLC_ADD_LDFLAGS([mkv mp4], [-Wl,-framework,IOKit,-framework,CoreFoundation])
214 VLC_ADD_LDFLAGS([vlc],[-Wl,-undefined,dynamic_lookup])
215 VLC_ADD_LDFLAGS([libvlc],[-Wl,-undefined,dynamic_lookup])
216 VLC_ADD_LDFLAGS([avcodec avformat swscale postproc i420_rgb_mmx x264],[-Wl,-read_only_relocs,suppress])
217 VLC_ADD_CFLAGS([motion],[-fconstant-cfstrings])
218 VLC_ADD_LDFLAGS([libvlccore],[-Wl,-framework,CoreFoundation])
219 VLC_ADD_LDFLAGS([motion],[-Wl,-framework,IOKit,-framework,CoreFoundation])
220 AC_ARG_ENABLE(macosx-defaults,
221 AS_HELP_STRING([--enable-macosx-defaults],[Build the default configuration on Mac OS X (default enabled)]))
222 if test "x${enable_macosx_defaults}" != "xno"
225 echo "Building with Mac OS X defaults:"
226 with_macosx_version_min="10.5"
227 echo " Assuming --with-macosx-version-min=10.5"
228 with_macosx_sdk="/Developer/SDKs/MacOSX${with_macosx_version_min}.sdk"
229 echo " Assuming --with-macosx-sdk=/Developer/SDKs/MacOSX${with_macosx_version_min}.sdk"
231 echo " Assuming --prefix=${build_dir}/vlc_install_dir"
232 ac_default_prefix="${build_dir}/vlc_install_dir"
234 echo " Assuming --enable-macosx"
236 echo " Assuming --enable-faad"
238 echo " Assuming --enable-flac"
240 echo " Assuming --enable-theora"
242 echo " Assuming --enable-shout"
244 echo " Assuming --enable-cddax"
246 echo " Assuming --enable-vcdx"
248 echo " Assuming --enable-caca"
250 echo " Assuming --enable-goom"
252 echo " Assuming --enable-ncurses"
254 echo " Assuming --enable-twolame"
255 enable_realrtsp="yes"
256 echo " Assuming --enable-realrtsp"
257 enable_update_check="yes"
258 echo " Assuming --enable-update-check"
260 echo " Assuming --enable-libass"
261 enable_asademux="yes"
262 echo " Assuming --enable-asademux"
265 echo " Assuming --disable-skins2"
267 echo " Assuming --disable-x11"
269 echo " Assuming --disable-glx"
271 echo " Assuming --disable-xvideo"
274 dnl Check for Mac OS X SDK settings
276 AC_ARG_WITH(macosx-sdk,
277 [ --with-macosx-sdk=DIR compile using the SDK in DIR])
278 if test "${with_macosx_sdk}" != "" ; then
279 CPP="${CPP} -isysroot ${with_macosx_sdk}"
280 CC="${CC} -isysroot ${with_macosx_sdk}"
281 CXX="${CXX} -isysroot ${with_macosx_sdk}"
282 OBJC="${OBJC} -isysroot ${with_macosx_sdk}"
283 LD="${LD} -syslibroot ${with_macosx_sdk}"
285 if test "${host_cpu}" = "powerpc"; then
286 CPP="${CPP} -arch ppc"
288 CXX="${CXX} -arch ppc"
289 OBJC="${OBJC} -arch ppc"
292 if test "${host_cpu}" = "i386"; then
293 CPP="${CPP} -arch i386"
294 CC="${CC} -arch i386"
295 CXX="${CXX} -arch i386"
296 OBJC="${OBJC} -arch i386"
297 LD="${LD} -arch i386"
299 AC_ARG_WITH(macosx-version-min,
300 [ --with-macosx-version-min=VERSION compile for MacOSX VERSION and above])
301 if test "${with_macosx_version_min}" != "" ; then
302 CPP="${CPP} -mmacosx-version-min=${with_macosx_version_min}"
303 CC="${CC} -mmacosx-version-min=${with_macosx_version_min}"
304 CXX="${CXX} -mmacosx-version-min=${with_macosx_version_min}"
305 OBJC="${OBJC} -mmacosx-version-min=${with_macosx_version_min}"
306 LD="${LD} -macosx_version_min=${with_macosx_version_min}"
307 CFLAGS_save="${CFLAGS_save} -DMACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}"; CFLAGS="${CFLAGS_save}"
308 CXXFLAGS_save="${CXXFLAGS_save} -DMACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}"; CXXFLAGS="${CXXFLAGS_save}"
309 OBJCFLAGS_save="${OBJCFLAGS_save} -DMACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}"; OBJCFLAGS="${OBJCFLAGS_save}"
310 MACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}
311 export MACOSX_DEPLOYMENT_TARGET
315 if (test ".`uname -p`" = ".i386"); then
316 dnl Due to a ld(64) bug in 10.5 we cannot use our mmx code
317 dnl without hacking it a lot, we disable mmx and sse.
318 dnl (that bug is about ld being unable to handle
320 save_cflags="$CFLAGS"
321 CFLAGS="$CFLAGS -dynamiclib -single_module -read_only_relocs suppress"
323 [int a;], [asm("movq _a,%mm0\n");],
324 ac_ld_does_not_support_text_reloc=no,
325 ac_ld_does_not_support_text_reloc=yes)
326 CFLAGS="$save_cflags"
328 if test "x$ac_ld_does_not_support_text_reloc" = "xyes"; then
330 echo " Assuming --disable-mmx (due to a bug in ld)"
332 echo " Assuming --disable-sse (due to a bug in ld)"
336 *mingw32* | *cygwin* | *wince* | *mingwce* | *pe*)
337 AC_CHECK_TOOL(WINDRES, windres, :)
338 AC_CHECK_TOOL(OBJCOPY, objcopy, :)
341 *wince* | *mingwce* | *mingw32ce* | *pe*)
343 dnl Sadly CeGCC still needs non-wince macros
344 AC_DEFINE([_WIN32_WINNT], 0x0501, [Define to '0x0500' for Windows 2000 APIs.])
348 AC_DEFINE([_WIN32_WINNT], 0x0500, [Define to '0x0500' for Windows 2000 APIs.])
351 dnl Check if we are using the mno-cygwin mode in which case we are
352 dnl actually dealing with a mingw32 compiler.
353 AC_DEFINE([_WIN32_WINNT], 0x0500, [Define to '0x0500' for Windows 2000 APIs.])
358 SYS=mingw32, SYS=cygwin)
362 if test "${SYS}" = "mingw32"; then
363 # add ws2_32 for closesocket, select, recv
364 VLC_ADD_LIBS([libvlccore],[-lws2_32 -lnetapi32 -lwinmm])
365 VLC_ADD_LDFLAGS([vlc],[-mwindows])
366 VLC_ADD_LIBS([activex mozilla],[-lgdi32])
367 VLC_ADD_LIBS([cdda vcdx cddax sdl_image],[-lwinmm])
368 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 slp http stream_out_standard stream_out_rtp stream_out_raop vod_rtsp access_realrtsp rtp telnet rc netsync gnutls growl_udp flac ts audioscrobbler lua remoteosd],[-lws2_32])
370 if test "${SYS}" = "mingwce"; then
371 # add ws2 for closesocket, select, recv
372 VLC_ADD_LIBS([libvlccore access_http access_mms access_udp access_tcp access_ftp access_rtmp access_output_udp sap http netsync audioscrobbler growl rtp stream_out_rtp remoteosd],[-lws2])
373 VLC_ADD_LIBS([libvlccore],[-lmmtimer])
378 VLC_ADD_LIBS([x11 xvideo],[-lsocket])
382 # _POSIX_PTHREAD_SEMANTICS is needed to get the POSIX ctime_r
383 # Perhaps it is useful other places as well?
384 CFLAGS_save="${CFLAGS_save} -D_POSIX_PTHREAD_SEMANTICS"; CFLAGS="${CFLAGS_save}"
391 CFLAGS_save="${CFLAGS_save} -Wno-multichar"; CFLAGS="${CFLAGS_save}"
392 CXXFLAGS_save="${CXXFLAGS_save} -Wno-multichar"; CXXFLAGS="${CXXFLAGS_save}"
393 VLC_ADD_CXXFLAGS([beos],[])
394 VLC_ADD_LIBS([vlc libvlccore logger],[-lbe])
395 VLC_ADD_LIBS([beos],[-lbe -lmedia -ltranslation -ltracker -lgame])
396 VLC_ADD_LIBS([dvdnav dvdread],[-ldl])
397 VLC_ADD_LIBS([access_file],[-lpoll])
398 LDFLAGS_save="${LDFLAGS_save} -lintl"; LDFLAGS="${LDFLAGS_save}"
400 if test -f /boot/beos/system/lib/libbind.so; then
401 VLC_ADD_LIBS([access_file access_ftp access_mms access_output_udp telnet netsync sap libvlccore growl_udp],[-lbind -lsocket])
403 VLC_ADD_LIBS([access_file access_ftp access_mms access_output_udp telnet netsync sap libvlccore growl_udp],[-lnet])
406 dnl Ugly check for Zeta
407 if test -f /boot/beos/system/lib/libzeta.so; then
408 VLC_ADD_LIBS([beos],[-lzeta])
415 AM_CONDITIONAL(HAVE_BEOS, test "${SYS}" = "beos")
416 AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin")
417 AM_CONDITIONAL(HAVE_LINUX, [test "${SYS}" = "linux"])
418 AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32")
419 AM_CONDITIONAL(HAVE_WINCE, test "${SYS}" = "mingwce")
422 dnl Sadly autoconf doesn't think about testing foo.exe when ask to test
423 dnl for program foo on win32
425 case "${build_os}" in
427 ac_executable_extensions=".exe"
435 dnl It's very bad, but our former custom system was worst
439 dnl override platform specific check for dependent libraries
440 dnl otherwise libtool linking of shared libraries will
441 dnl fail on anything other than pass_all.
442 AC_CACHE_VAL(lt_cv_deplibs_check_method,
443 [lt_cv_deplibs_check_method=pass_all])
446 dnl AC_DISABLE_FAST_INSTALL
449 m4_undefine([AC_PROG_F77])
450 m4_defun([AC_PROG_F77],[])
453 m4_undefine([AC_DEPLIBS_CHECK_METHOD])
454 m4_defun([AC_DEPLIBS_CHECK_METHOD],[])
456 lt_cv_deplibs_check_method=pass_all
462 AM_GNU_GETTEXT_VERSION([0.17])
463 AM_GNU_GETTEXT([external])
464 VLC_ADD_LIBS([libvlccore vlc], [${LTLIBINTL}])
470 VLC_ADD_CFLAGS([libvlccore],[${INCICONV}])
471 VLC_ADD_LIBS([libvlccore],[${LTLIBICONV}])
473 dnl Check for broken versions of mingw-runtime compatability library
474 AS_IF([test "${SYS}" = "mingw32"], [
475 AC_MSG_CHECKING(for broken mingw-runtime)
478 #if (__MINGW32_MAJOR_VERSION == 3) && (__MINGW32_MINOR_VERSION < 15)
479 # error Attempting to use mingw-runtime with broken vsnprintf support
484 AC_MSG_RESULT([present])
485 AC_MSG_ERROR([LibVLC requires mingw-runtime version 3.15 or higher!])
487 dnl force use of mingw provided c99 *printf over msvcrt
488 CPPFLAGS="${CPPFLAGS} -D__USE_MINGW_ANSI_STDIO=1"
489 CPPFLAGS_save="${CPPFLAGS_save} -D__USE_MINGW_ANSI_STDIO=1"
492 dnl Check for the need to include the mingwex lib for mingw32
493 if test "${SYS}" = "mingw32"
495 AC_CHECK_LIB(mingwex,opendir,
496 AC_CHECK_LIB(mingw32,opendir,,
497 [VLC_ADD_LIBS([libvlccore gtk],[-lmingwex])])
501 dnl Check for fnative-struct or mms-bitfields support for mingw32
502 if test "${SYS}" = "mingw32"
504 AC_CACHE_CHECK([if \$CC accepts -mms-bitfields],
505 [ac_cv_c_mms_bitfields],
506 [CFLAGS="${CFLAGS_save} -mms-bitfields"
507 AC_TRY_COMPILE([],,ac_cv_c_mms_bitfields=yes, ac_cv_c_mms_bitfields=no)])
508 if test "${ac_cv_c_mms_bitfields}" != "no"; then
509 CFLAGS_save="${CFLAGS_save} -mms-bitfields";
510 CXXFLAGS_save="${CXXFLAGS_save} -mms-bitfields";
512 AC_CACHE_CHECK([if \$CC accepts -fnative-struct],
513 [ac_cv_c_fnative_struct],
514 [CFLAGS="${CFLAGS_save} -fnative-struct"
515 AC_TRY_COMPILE([],,ac_cv_c_fnative_struct=yes, ac_cv_c_fnative_struct=no)])
516 if test "${ac_cv_c_fnative_struct}" != "no"; then
517 CFLAGS_save="${CFLAGS_save} -fnative-struct";
518 CXXFLAGS_save="${CXXFLAGS_save} -fnative-struct";
522 CFLAGS="${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
525 dnl Check for fvtable-thunks support for mingw32
526 if test "${SYS}" = "mingw32" -a "${CXX}" != ""
529 AC_CACHE_CHECK([if \$CXX accepts -fvtable-thunks],
530 [ac_cv_cxx_fvtable_thunks],
531 [CXXFLAGS="${CXXFLAGS_save} -Wall -Werror -fvtable-thunks"
532 AC_TRY_COMPILE([],,ac_cv_cxx_fvtable_thunks=yes,
533 ac_cv_cxx_fvtable_thunks=no)])
534 if test "${ac_cv_cxx_fvtable_thunks}" = "yes"; then
535 CXXFLAGS_mingw32_special="-fvtable-thunks"
538 CXXFLAGS_save="${CXXFLAGS_save} ${CXXFLAGS_mingw32_special}"; CXXFLAGS="${CXXFLAGS_save}"
543 dnl Buggy glibc prevention. Purposedly not cached.
544 dnl Ubuntu alone has 20 bug numbers for this...
546 AC_MSG_CHECKING(for buggy GNU/libc versions)
549 #if defined (__GLIBC__) && (__GLIBC__ == 2) \
550 && (__GLIBC_MINOR__ >= 5) && (__GLIBC_MINOR__ <= 7)
551 # error GNU/libc with dcgettext killer bug!
554 AC_MSG_RESULT([not present])
556 AC_MSG_RESULT([found])
557 AS_IF([test "x${enable_nls}" != "xno" || test "x${enable_mozilla}" != "xno"], [
558 AC_MSG_ERROR([Buggy GNU/libc (version 2.5 - 2.7) present. VLC would crash; there is no viable
559 work-around for this. Check with your distribution vendor on how to update the
560 glibc run-time. Alternatively, build with --disable-nls --disable-mozilla and
561 be sure to not use LibVLC from other applications/wrappers.])
563 AC_DEFINE(DISABLE_BUGGY_GLIBC_CHECK, 1, [Disables runtime check for buggy glibc.])
567 dnl Plugin compilation stuff
571 dnl The -DSYS_FOO flag
572 CPPFLAGS_save="${CPPFLAGS_save} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcdefghijklmnopqrstuvwxyz.' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`"; CPPFLAGS="${CPPFLAGS_save}"
574 dnl Check for system libs needed
577 dnl Check for usual libc functions
578 AC_CHECK_FUNCS([gettimeofday isatty sigrelse getpwuid_r memalign posix_memalign if_nametoindex getenv putenv setenv ctime_r lrintf daemon fork lstat posix_fadvise posix_madvise uselocale])
580 AC_CHECK_FUNCS(fcntl)
581 AC_REPLACE_FUNCS([asprintf atof atoll gmtime_r lldiv localtime_r rewind strcasecmp strcasestr strdup strlcpy strncasecmp strndup strnlen strsep strtof strtoll vasprintf swab])
582 AC_CHECK_FUNCS([stricmp strnicmp])
583 AC_CHECK_FUNCS(fdatasync,,
584 [AC_DEFINE(fdatasync, fsync, [Alias fdatasync() to fsync() if missing.])
587 dnl Check for Linux system calls
588 AC_CHECK_FUNCS([vmsplice])
590 AH_BOTTOM([#include <vlc_fixups.h>])
592 AC_CHECK_FUNCS(mmap, [VLC_ADD_PLUGIN([access_mmap])])
594 dnl Check for setlocal and langinfo
595 AC_CHECK_FUNCS(setlocale)
596 AC_CHECK_HEADERS(langinfo.h)
597 AC_CHECK_FUNCS(nl_langinfo)
599 AC_CACHE_CHECK([for nl_langinfo and CODESET], ac_cv_langinfo_codeset,
600 [AC_TRY_LINK([#include <langinfo.h>],
601 [char* cs = nl_langinfo(CODESET);],
602 ac_cv_langinfo_codeset=yes,
603 ac_cv_langinfo_codeset=no)
605 if test ${ac_cv_langinfo_codeset} = yes; then
606 AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
607 [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
610 AC_CHECK_FUNCS(connect,,[
611 AC_CHECK_LIB(socket,connect,[
612 VLC_ADD_LIBS([libvlccore cdda cddax],-lsocket)
613 LIBS_socket="-lsocket"
617 AC_CHECK_FUNCS(send,,[
618 AC_CHECK_LIB(socket,send,[
619 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],[-lsocket])
624 dnl Check for socklen_t
625 AH_TEMPLATE(socklen_t, [Define to `int' if <sys/socket.h> does not define.])
626 AC_CACHE_CHECK([for socklen_t in sys/socket.h],
627 ac_cv_type_socklen_t,
628 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
629 [#include <sys/types.h>
631 # include <winsock2.h>
632 # include <ws2tcpip.h>
634 # include <sys/socket.h>
635 #endif]], [[socklen_t len; len = 0;]])],
636 ac_cv_type_socklen_t=yes,
637 ac_cv_type_socklen_t=no)])
638 AS_IF([test "$ac_cv_type_socklen_t" = no],
639 [AC_DEFINE(socklen_t, int)])
641 dnl Check for struct sockaddr_storage
642 AH_TEMPLATE(sockaddr_storage, [Define to `sockaddr' if <sys/socket.h> does not define.])
643 AH_TEMPLATE(ss_family, [Define to `sa_family' if <sys/socket.h> does not define.])
644 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_struct_sockaddr_storage,
646 [#include <sys/types.h>
647 #if defined( UNDER_CE )
648 # include <winsock2.h>
649 #elif defined( WIN32 )
650 # include <winsock2.h>
652 # include <sys/socket.h>
653 #endif], [struct sockaddr_storage addr;],
654 ac_cv_struct_sockaddr_storage=yes,
655 ac_cv_struct_sockaddr_storage=no)])
656 AS_IF([test "${ac_cv_struct_sockaddr_storage}" = no], [
657 AC_DEFINE(sockaddr_storage, sockaddr)
658 AC_DEFINE(ss_family, sa_family)
661 dnl getaddrinfo, getnameinfo and gai_strerror check
662 dnl -lnsl and -lsocket are needed on Solaris;
663 dnl we purposedly make the test fail on Windows
665 AH_TEMPLATE(HAVE_GETADDRINFO, [Define to 1 if you have the `getaddrinfo' function.])
666 AC_SEARCH_LIBS([getaddrinfo], [nsl], [AC_DEFINE(HAVE_GETADDRINFO)],, [${LIBS_socket}])
668 dnl NOTE: we assume getaddrinfo will be present if getnameinfo or gai_strerro
671 AC_CHECK_FUNCS([getnameinfo gai_strerror])
674 AH_TEMPLATE(HAVE_ADDRINFO, [Define to 1 if <netdb.h> defines `struct addrinfo'.])
675 AC_CHECK_TYPES([struct addrinfo],[AC_DEFINE(HAVE_ADDRINFO)],,
676 [#include <sys/types.h>
677 #if defined( WIN32 ) || defined( UNDER_CE )
678 # if defined(UNDER_CE) && defined(sockaddr_storage)
679 # undef sockaddr_storage
681 # include <winsock2.h>
682 # include <ws2tcpip.h>
687 dnl Check for va_copy
688 AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
690 [#include <stdarg.h>],
691 [va_list ap1, ap2; va_copy(ap1,ap2);],
692 [ac_cv_c_va_copy="yes"],
693 [ac_cv_c_va_copy="no"]))
694 if test "${ac_cv_c_va_copy}" = "yes"; then
695 AC_DEFINE(HAVE_VA_COPY, 1, [Define if <stdarg.h> defines va_copy.])
697 AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy,
699 [#include <stdarg.h>],
700 [va_list ap1, ap2; __va_copy(ap1,ap2);],
701 [ac_cv_c___va_copy="yes"],
702 [ac_cv_c___va_copy="no"]))
703 if test "${ac_cv_c___va_copy}" = "yes"; then
704 AC_DEFINE(HAVE___VA_COPY, 1, [Define if <stdarg.h> defines __va_copy.])
707 AC_CHECK_FUNCS(inet_aton,,[
708 AC_CHECK_LIB(resolv,inet_aton,[
709 VLC_ADD_LIBS([libvlccore],[-lresolv])
713 dnl Check for getopt (always use builtin one on win32)
714 if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"; then
718 AC_CHECK_FUNCS(getopt_long,[AC_DEFINE(HAVE_GETOPT_LONG,1,long getopt support)],
719 [ # FreeBSD has a gnugetopt library for this:
720 AC_CHECK_LIB([gnugetopt],[getopt_long],
721 [AC_DEFINE(HAVE_GETOPT_LONG,1,getopt support)
722 VLC_ADD_LIBS([libvlccore],[-lgnugetopt])],
725 AM_CONDITIONAL(BUILD_GETOPT, ${need_getopt})
727 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
730 VLC_ADD_LIBS([adjust wave ripple psychedelic gradient a52tofloat32 dtstofloat32 x264 goom visual panoramix rotate noise grain scene],[-lm])
733 VLC_ADD_LIBS([avcodec avformat swscale postproc ffmpegaltivec stream_out_transrate i420_rgb faad twolame equalizer spatializer param_eq libvlccore vorbis freetype mod mpc dmo quicktime realaudio realvideo galaktos opengl],[-lm])
735 AC_CHECK_LIB(m,sqrt,[
736 VLC_ADD_LIBS([headphone_channel_mixer normvol speex mono colorthres extract],[-lm])
738 AC_CHECK_LIB(m,ceil,[
739 VLC_ADD_LIBS([hotkeys mosaic],[-lm])
742 VLC_ADD_LIBS([gaussianblur],[-lm])
744 AC_CHECK_LIB(m,round,[
745 VLC_ADD_LIBS([dbus],[-lm])
747 AC_CHECK_LIB(mx,sqrtf,[
748 VLC_ADD_LIBS([x264],[-lmx])
750 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
752 dnl Check for dynamic plugins
753 ac_cv_have_plugins=no
756 AC_CHECK_HEADERS(mach-o/dyld.h,
757 [AC_CHECK_FUNCS(NSLinkModule,
758 [AC_DEFINE(HAVE_DL_DYLD, 1, [Define if you have the Darwin dyld API])
759 ac_cv_have_plugins=yes])])
762 if test "${ac_cv_have_plugins}" = "no"; then
763 AC_CHECK_HEADERS(dl.h)
764 ac_cv_my_have_shl_load=no
765 AC_CHECK_FUNC(shl_load,
766 [ac_cv_my_have_shl_load=yes,
767 AC_CHECK_LIB(dld, shl_load,
768 [ac_cv_my_have_shl_load=yes
769 VLC_ADD_LIBS([libvlccore],[-ldld])])])
770 if test "${ac_cv_my_have_shl_load}" = "yes"; then
771 AC_DEFINE(HAVE_DL_SHL_LOAD, 1, [Define if you have the shl_load API])
772 ac_cv_have_plugins=yes
777 if test "${ac_cv_have_plugins}" = "no"; then
778 AC_CHECK_LIB(dld, dld_link,
779 [VLC_ADD_LIBS([libvlccore],[-ldld])
780 AC_DEFINE(HAVE_DL_DLD_LINK, 1, [Define if you have the GNU dld library])
781 ac_cv_have_plugins=yes])
785 if test "${ac_cv_have_plugins}" = "no"; then
786 if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
787 AC_CHECK_LIB(kernel32, main,
788 [VLC_ADD_LIBS([libvlccore],[-lkernel32])
789 AC_DEFINE(HAVE_DL_WINDOWS, 1, [Define if you have Windows' LoadLibrary])
790 ac_cv_have_plugins=yes])
795 if test "${ac_cv_have_plugins}" = "no"; then
796 if test "${SYS}" = "mingwce"; then
797 AC_DEFINE(HAVE_DL_WINDOWS, 1, [Define if you have Windows' LoadLibrary])
798 ac_cv_have_plugins=yes
803 if test "${ac_cv_have_plugins}" = "no"; then
804 AC_CHECK_HEADERS(image.h)
805 AC_CHECK_FUNCS(load_add_on,
806 [AC_DEFINE(HAVE_DL_BEOS, 1, [Define if you have the BeOS dl])
807 ac_cv_have_plugins=yes])
810 # Only test for dlopen() if the others didn't work
811 if test "${ac_cv_have_plugins}" = "no"; then
812 AC_CHECK_HEADERS(dlfcn.h sys/dl.h)
813 ac_cv_my_have_dlopen=no
814 AC_CHECK_FUNC(dlopen,
815 ac_cv_my_have_dlopen=yes,
816 AC_CHECK_LIB(dl, dlopen,
817 ac_cv_my_have_dlopen=yes
818 VLC_ADD_LIBS([libvlccore realaudio realvideo],[-ldl]),
819 AC_CHECK_LIB(svld, dlopen,
820 ac_cv_my_have_dlopen=yes
821 VLC_ADD_LIBS([libvlccore],[-lsvld]))))
822 if test "${ac_cv_my_have_dlopen}" = "yes"; then
823 AC_DEFINE(HAVE_DL_DLOPEN, 1, [Define if you have the dlopen API])
824 ac_cv_have_plugins=yes
828 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
829 dnl Check for pthreads - borrowed from XMMS
831 if test "${THREAD_LIB}" = "error"; then
832 AC_CHECK_LIB(pthread,main,THREAD_LIB="-lpthread")
834 if test "${THREAD_LIB}" = "error"; then
835 AC_CHECK_LIB(pthreads,main,THREAD_LIB="-lpthreads")
837 if test "${THREAD_LIB}" = "error"; then
838 AC_CHECK_LIB(c_r,main,THREAD_LIB="-lc_r")
840 if test "${THREAD_LIB}" = "error"; then
841 AC_CHECK_FUNCS(pthread_mutex_lock)
845 VLC_ADD_LIBS([libvlccore libvlc plugin],[${THREAD_LIB}])
847 AC_CHECK_LIB(rt, clock_nanosleep, [
848 VLC_ADD_LIBS([libvlccore],[-lrt])
849 AC_DEFINE(HAVE_CLOCK_NANOSLEEP, 1, [Define to 1 if you have clock_nanosleep.])
852 AC_CHECK_LIB(rt,sem_init, [VLC_ADD_LIBS([libvlccore],[-lrt])])
856 AC_CHECK_FUNCS(nanosleep,have_nanosleep=:,[
857 AC_CHECK_LIB(rt,nanosleep,
858 [VLC_ADD_LIBS([libvlccore],[-lrt]) have_nanosleep=:],
859 [AC_CHECK_LIB(posix4,nanosleep,
860 [VLC_ADD_LIBS([libvlccore],[-lposix4]) have_nanosleep=:])]
863 if ${have_nanosleep}; then
864 AC_DEFINE(HAVE_NANOSLEEP, 1, [Define if nanosleep is available.])
866 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
868 dnl Check for misc headers
869 AC_MSG_CHECKING(for strncasecmp in strings.h)
870 AC_EGREP_HEADER(strncasecmp,strings.h,[
872 AC_DEFINE(STRNCASECMP_IN_STRINGS_H, 1,
873 Define if <strings.h> defines strncasecmp.)],[
876 dnl Check for headers
877 AC_CHECK_HEADERS(getopt.h strings.h locale.h)
878 AC_CHECK_HEADERS(fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h xlocale.h)
879 AC_CHECK_HEADERS([arpa/inet.h netinet/in.h netinet/udplite.h sys/eventfd.h])
880 AC_CHECK_HEADERS([net/if.h], [], [],
882 #include <sys/types.h>
883 #include <sys/socket.h>
885 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
886 AC_CHECK_HEADERS(machine/param.h sys/shm.h)
887 AC_CHECK_HEADERS([linux/version.h linux/dccp.h])
888 AC_CHECK_HEADERS(syslog.h)
889 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
893 dnl LP64 adn LLP64 architectures had better define ssize_t by themselves...
894 AH_TEMPLATE(ssize_t, [Define to `int' if <stddef.h> does not define.])
895 AC_CHECK_TYPE(ssize_t,, [
896 AC_DEFINE(ssize_t, int)
900 AC_SEARCH_LIBS(poll, [poll], [AC_DEFINE(HAVE_POLL, 1, [Define to 1 if the OS is usabl... err, has poll().])], [
901 if test ${SYS} != "mingw32"
903 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])
909 AC_CHECK_HEADERS(dirent.h,,[need_dirent=:])
910 AM_CONDITIONAL(BUILD_DIRENT, ${need_dirent})
912 dnl Mac OS X and other OSes don't have declaration for nanosleep
913 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
914 AC_MSG_CHECKING(for nanosleep in time.h)
915 AC_EGREP_HEADER(nanosleep,time.h,[
917 AC_DEFINE(HAVE_DECL_NANOSLEEP, 1,
918 Define if <time.h> defines nanosleep.)
922 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
924 dnl Make sure we have timespecs
925 AC_MSG_CHECKING(for timespec in sys/time.h)
926 AC_EGREP_HEADER(timespec,sys/time.h,[
928 AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1,
929 Define if <sys/time.h> defines struct timespec.)
934 dnl Check for threads library
935 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
936 AC_CHECK_HEADERS(pthread.h)
937 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
939 dnl it seems that autoconf do the pkg-config detection only for the first PKG_CHECK_MODULES in the configure.ac ( which is logical) but in our case it is nested in a if so it was not working if you're not on linux or have disable hal.
940 dnl Make PKG_CONFIG_PATH precious so that it appears in the help and get saved
941 AC_ARG_VAR(PKG_CONFIG_PATH,
942 [Paths where to find .pc not at the default location])
943 PKG_PROG_PKG_CONFIG()
946 dnl Check for zlib.h and -lz along with system -lminizip if available
948 AC_CHECK_HEADERS(zlib.h, [ have_zlib=yes ], [ have_zlib=no ])
949 AM_CONDITIONAL(HAVE_ZLIB, [ test "${have_zlib}" = "yes" ])
950 if test "${have_zlib}" = "yes"
952 VLC_ADD_LIBS([access_http gme mp4 skins2 sap mkv unzip zip],[-lz])
953 PKG_CHECK_MODULES([MINIZIP], [minizip] , [ have_minizip=yes ], [
954 AC_CHECK_HEADERS([unzip.h], [
956 MINIZIP_LIBS="-lminizip -lz"
959 MINIZIP_CFLAGS="-I\\\${top_srcdir}/libs/unzip"
960 MINIZIP_LIBS="\\\${top_builddir}/libs/unzip/libunzip.la"
963 VLC_ADD_CPPFLAGS([skins2],[$MINIZIP_CFLAGS])
964 VLC_ADD_CFLAGS([zip],[$MINIZIP_CFLAGS])
965 VLC_ADD_LIBS([skins2 zip],[$MINIZIP_LIBS])
966 VLC_ADD_PLUGIN([unzip])
967 VLC_ADD_PLUGIN([zip])
969 AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
974 [ --enable-hal Linux HAL services discovery (default enabled)])
976 if test "${enable_hal}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
978 PKG_CHECK_MODULES(HAL, hal >= 0.5.0,
980 AC_DEFINE( HAVE_HAL, 1, [Define if you have the HAL library] )
981 VLC_ADD_PLUGIN([hal])
982 VLC_ADD_PLUGIN([probe_hal])
983 VLC_ADD_LIBS([libvlccore hal probe_hal],[$HAL_LIBS])
984 VLC_ADD_CFLAGS([libvlccore hal probe_hal],[$HAL_CFLAGS])],
985 [AC_MSG_WARN([libhal >= 0.5.0 was not found. Install libhal-dev ?])]
991 [ --enable-mtp MTP devices support (default enabled)])
993 if test "${enable_mtp}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
995 PKG_CHECK_MODULES(MTP, libmtp >= 0.3.0,
996 [ VLC_ADD_PLUGIN([mtp])
997 VLC_ADD_PLUGIN([access_mtp])
998 VLC_ADD_LIBS([mtp access_mtp],[$MTP_LIBS])
999 VLC_ADD_CFLAGS([mtp access_mtp],[$MTP_CFLAGS])],
1000 [AC_MSG_WARN(MTP library not found)]
1006 [ --enable-dbus Linux D-BUS message bus system (default enabled)])
1009 if test "${enable_dbus}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
1012 PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0.0,
1013 [ AC_DEFINE( HAVE_DBUS, 1, [Define if you have the D-BUS library] )
1014 VLC_ADD_LIBS([screensaver libvlccore],[$DBUS_LIBS])
1015 VLC_ADD_CFLAGS([screensaver libvlccore],[$DBUS_CFLAGS])
1016 dnl Check for dbus control interface
1017 AC_ARG_ENABLE(dbus-control, [ --disable-dbus-control D-BUS control interface (default enabled)])
1018 if test "${enable_dbus_control}" != "no"
1020 VLC_ADD_PLUGIN([dbus])
1021 VLC_ADD_LIBS([dbus],[$DBUS_LIBS])
1022 VLC_ADD_CFLAGS([dbus],[$DBUS_CFLAGS])
1024 dnl Check for Telepathy
1025 AC_ARG_ENABLE(telepathy,
1026 AS_HELP_STRING([--enable-telepathy],[Telepathy Presence plugin through DBus(default enabled)]))
1027 if test "${enable_telepathy}" != "no"; then
1028 VLC_ADD_PLUGIN([telepathy])
1029 VLC_ADD_LIBS([telepathy],[$DBUS_LIBS])
1030 VLC_ADD_CFLAGS([telepathy],[$DBUS_CFLAGS])
1032 dnl Power Management Inhibiter
1033 VLC_ADD_PLUGIN([inhibit])
1034 VLC_ADD_LIBS([inhibit],[$DBUS_LIBS])
1035 VLC_ADD_CFLAGS([inhibit],[$DBUS_CFLAGS])
1037 [AC_MSG_ERROR([Couldn't find DBus >= 1.0.0, install libdbus-dev ?])]
1043 dnl Build the gtk_main plugins?
1049 dnl build the qte plugin ?
1052 dnl Check for ntohl, etc.
1053 AC_CACHE_CHECK([for ntohl in sys/param.h],
1054 [ac_cv_c_ntohl_sys_param_h],
1055 [CFLAGS="${CFLAGS_save} -Wall -Werror"
1056 AC_TRY_COMPILE([#include <sys/param.h>],
1057 [int meuh; ntohl(meuh);],
1058 ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
1059 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
1060 AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
1062 CFLAGS="${CFLAGS_save}"
1064 RDC_PROG_CC_WFLAGS([all extra sign-compare undef pointer-arith bad-function-cast cast-align write-strings missing-prototypes volatile-register-var error-implicit-function-declaration])
1065 RDC_PROG_CC_FLAGS_IFELSE([-pipe])
1067 dnl Check for various optimization flags
1068 AC_CACHE_CHECK([if \$CC accepts -Os],
1070 [CFLAGS="${CFLAGS_save} -Os"
1071 AC_TRY_COMPILE([],,ac_cv_c_os=yes, ac_cv_c_os=no)])
1072 if test "${ac_cv_c_os}" != "no"; then
1073 CFLAGS_OPTIM_SIZE="${CFLAGS_OPTIM_SIZE} -Os"
1075 AC_CACHE_CHECK([if \$CC accepts -O],
1077 [CFLAGS="${CFLAGS_save} -O"
1078 AC_TRY_COMPILE([],,ac_cv_c_o=yes, ac_cv_c_o=no)])
1079 if test "${ac_cv_c_o}" != "no"; then
1080 if test "${ac_cv_c_o3}" = "no"; then
1081 CFLAGS_OPTIM_SIZE="${CFLAGS_OPTIM_SIZE} -O"
1086 AC_CACHE_CHECK([if \$CC accepts -O4],
1088 [CFLAGS="${CFLAGS_save} -O4"
1089 AC_TRY_COMPILE([],,ac_cv_c_o4=yes, ac_cv_c_o4=no)])
1090 if test "${ac_cv_c_o4}" != "no" -a "x${enable_debug}" = "xno"; then
1091 CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -O4"
1093 AC_CACHE_CHECK([if \$CC accepts -O3],
1095 [CFLAGS="${CFLAGS_save} -O3"
1096 AC_TRY_COMPILE([],,ac_cv_c_o3=yes, ac_cv_c_o3=no)])
1097 if test "${ac_cv_c_o3}" != "no" -a "x${enable_debug}" = "xno"; then
1098 CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -O3"
1100 AC_CACHE_CHECK([if \$CC accepts -O2],
1102 [CFLAGS="${CFLAGS_save} -O2"
1103 AC_TRY_COMPILE([],,ac_cv_c_o2=yes, ac_cv_c_o2=no)])
1104 if test "${ac_cv_c_o2}" != "no"; then
1105 CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -O2"
1107 AC_CACHE_CHECK([if \$CC accepts -O],
1109 [CFLAGS="${CFLAGS_save} -O"
1110 AC_TRY_COMPILE([],,ac_cv_c_o=yes, ac_cv_c_o=no)])
1111 if test "${ac_cv_c_o}" != "no"; then
1112 CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -O"
1118 AC_CACHE_CHECK([if \$CC accepts -O0],
1120 [CFLAGS="${CFLAGS_save} -O0"
1121 AC_TRY_COMPILE([],,ac_cv_c_o0=yes, ac_cv_c_o0=no)])
1122 if test "${ac_cv_c_o0}" != "no"; then
1123 CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O0"
1126 dnl Check for -ffast-math
1127 AC_CACHE_CHECK([if \$CC accepts -ffast-math],
1128 [ac_cv_c_fast_math],
1129 [CFLAGS="${CFLAGS_save} -ffast-math"
1130 AC_TRY_COMPILE([],,ac_cv_c_fast_math=yes, ac_cv_c_fast_math=no)])
1131 if test "${ac_cv_c_fast_math}" != "no"; then
1132 CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -ffast-math"
1135 dnl Check for -funroll-loops
1136 dnl Disabled on BeOS because BeOS' gcc is buggy and may crash with it
1137 if test "${SYS}" != "beos"
1139 AC_CACHE_CHECK([if \$CC accepts -funroll-loops],
1140 [ac_cv_c_unroll_loops],
1141 [CFLAGS="${CFLAGS_save} -funroll-loops"
1142 AC_TRY_COMPILE([],,ac_cv_c_unroll_loops=yes, ac_cv_c_unroll_loops=no)])
1143 if test "${ac_cv_c_unroll_loops}" != "no"; then
1144 CFLAGS_OPTIM_SPEED="${CFLAGS_OPTIM_SPEED} -funroll-loops"
1148 dnl Check for -fomit-frame-pointer
1149 AC_CACHE_CHECK([if \$CC accepts -fomit-frame-pointer],
1150 [ac_cv_c_omit_frame_pointer],
1151 [CFLAGS="${CFLAGS_save} -fomit-frame-pointer"
1152 AC_TRY_COMPILE([],,ac_cv_c_omit_frame_pointer=yes, ac_cv_c_omit_frame_pointer=no)])
1153 if test "${ac_cv_c_omit_frame_pointer}" != "no"; then
1154 if test "${SYS}" != "darwin"; then
1155 CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fomit-frame-pointer"
1157 dnl On darwin we explicitely disable it.
1158 CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fno-omit-frame-pointer"
1162 dnl Check for Darwin plugin linking flags
1163 AC_CACHE_CHECK([if \$CC accepts -bundle -undefined error],
1165 [CFLAGS="${CFLAGS_save} -bundle -undefined error"
1166 AC_TRY_COMPILE([],,ac_cv_ld_darwin=yes, ac_cv_ld_darwin=no)])
1167 if test "${ac_cv_ld_darwin}" != "no"; then
1168 VLC_ADD_LDFLAGS([plugin],[-bundle -undefined error])
1171 dnl Checks for __attribute__(aligned()) directive
1172 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
1173 [ac_cv_c_attribute_aligned],
1174 [ac_cv_c_attribute_aligned=0
1175 CFLAGS="${CFLAGS_save} -Werror"
1176 for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
1178 [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
1179 [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
1181 CFLAGS="${CFLAGS_save}"])
1182 if test "${ac_cv_c_attribute_aligned}" != "0"; then
1183 AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
1184 [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
1187 dnl Check for __attribute__((packed))
1188 AC_CACHE_CHECK([for __attribute__((packed))],
1189 [ac_cv_c_attribute_packed],
1190 [ac_cv_c_attribute_packed=no
1191 AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b;],
1192 [ac_cv_c_attribute_packed=yes])])
1193 if test "${ac_cv_c_attribute_packed}" != "no"; then
1194 AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
1200 case "${host_cpu}" in
1209 dnl Check for backtrace() support
1210 AC_CHECK_HEADERS(execinfo.h)
1211 AC_CHECK_FUNCS(backtrace)
1214 dnl Enable profiling
1216 AC_ARG_ENABLE(gprof,
1217 [ --enable-gprof gprof profiling (default disabled)])
1218 AC_ARG_ENABLE(cprof,
1219 [ --enable-cprof cprof profiling (default disabled)])
1220 test "${enable_gprof}" != "yes" && enable_gprof="no"
1221 test "${enable_cprof}" != "yes" && enable_cprof="no"
1227 VLC_ADD_PLUGIN([deinterlace])
1228 VLC_ADD_PLUGIN([yuvp])
1229 VLC_ADD_PLUGIN([invert])
1230 VLC_ADD_PLUGIN([adjust])
1231 VLC_ADD_PLUGIN([transform])
1232 VLC_ADD_PLUGIN([wave])
1233 VLC_ADD_PLUGIN([ripple])
1234 VLC_ADD_PLUGIN([psychedelic])
1235 VLC_ADD_PLUGIN([gradient])
1236 VLC_ADD_PLUGIN([motionblur])
1237 VLC_ADD_PLUGIN([rv32])
1238 VLC_ADD_PLUGIN([rotate])
1239 VLC_ADD_PLUGIN([noise])
1240 VLC_ADD_PLUGIN([grain])
1241 VLC_ADD_PLUGIN([extract])
1242 VLC_ADD_PLUGIN([sharpen])
1243 VLC_ADD_PLUGIN([croppadd])
1244 VLC_ADD_PLUGIN([canvas])
1245 VLC_ADD_PLUGIN([blendbench])
1246 VLC_ADD_PLUGIN([blend])
1247 VLC_ADD_PLUGIN([scale])
1248 VLC_ADD_PLUGIN([vmem])
1249 VLC_ADD_PLUGIN([logo])
1250 VLC_ADD_PLUGIN([magnify])
1251 VLC_ADD_PLUGIN([puzzle])
1252 VLC_ADD_PLUGIN([colorthres])
1253 VLC_ADD_PLUGIN([scene])
1254 VLC_ADD_PLUGIN([yuv])
1256 ALIASES="${ALIASES} cvlc"
1259 dnl default modules that need g++
1262 VLC_ADD_PLUGIN([spatializer])
1265 if test "${SYS}" != "mingwce"; then
1266 VLC_ADD_PLUGIN([gestures])
1267 VLC_ADD_PLUGIN([rc])
1268 VLC_ADD_PLUGIN([hotkeys])
1269 VLC_ADD_PLUGIN([showintf])
1270 VLC_ADD_PLUGIN([marq])
1271 VLC_ADD_PLUGIN([podcast])
1272 VLC_ADD_PLUGIN([shout])
1273 VLC_ADD_PLUGIN([sap])
1274 VLC_ADD_PLUGIN([fake])
1275 VLC_ADD_PLUGIN([folder])
1276 VLC_ADD_PLUGIN([rss])
1277 VLC_ADD_PLUGIN([mosaic])
1278 VLC_ADD_PLUGIN([wall])
1279 VLC_ADD_PLUGIN([motiondetect])
1280 VLC_ADD_PLUGIN([clone])
1281 VLC_ADD_PLUGIN([crop])
1282 VLC_ADD_PLUGIN([erase])
1283 VLC_ADD_PLUGIN([bluescreen])
1284 VLC_ADD_PLUGIN([alphamask])
1285 VLC_ADD_PLUGIN([gaussianblur])
1286 VLC_ADD_PLUGIN([i420_yuy2])
1287 VLC_ADD_PLUGIN([i422_yuy2])
1288 VLC_ADD_PLUGIN([i420_ymga])
1289 VLC_ADD_PLUGIN([i422_i420])
1290 VLC_ADD_PLUGIN([yuy2_i422])
1291 VLC_ADD_PLUGIN([yuy2_i420])
1292 VLC_ADD_PLUGIN([chain])
1293 VLC_ADD_PLUGIN([aout_file])
1294 VLC_ADD_PLUGIN([linear_resampler])
1295 VLC_ADD_PLUGIN([bandlimited_resampler])
1296 VLC_ADD_PLUGIN([float32_mixer])
1297 VLC_ADD_PLUGIN([spdif_mixer])
1298 VLC_ADD_PLUGIN([simple_channel_mixer])
1299 VLC_ADD_PLUGIN([dolby_surround_decoder])
1300 VLC_ADD_PLUGIN([headphone_channel_mixer])
1301 VLC_ADD_PLUGIN([normvol])
1302 VLC_ADD_PLUGIN([equalizer])
1303 VLC_ADD_PLUGIN([param_eq])
1304 VLC_ADD_PLUGIN([scaletempo])
1305 VLC_ADD_PLUGIN([converter_float])
1306 VLC_ADD_PLUGIN([a52tospdif])
1307 VLC_ADD_PLUGIN([dtstospdif])
1308 VLC_ADD_PLUGIN([audio_format])
1309 ALIASES="${ALIASES} rvlc"
1312 if test "${SYS}" = "mingwce"; then
1313 VLC_ADD_PLUGIN([chain])
1314 VLC_ADD_PLUGIN([aout_file])
1315 VLC_ADD_PLUGIN([linear_resampler])
1316 VLC_ADD_PLUGIN([bandlimited_resampler])
1317 VLC_ADD_PLUGIN([float32_mixer])
1318 VLC_ADD_PLUGIN([spdif_mixer])
1319 VLC_ADD_PLUGIN([simple_channel_mixer])
1320 VLC_ADD_PLUGIN([headphone_channel_mixer])
1321 VLC_ADD_PLUGIN([normvol])
1322 VLC_ADD_PLUGIN([converter_float])
1323 VLC_ADD_PLUGIN([a52tospdif])
1324 VLC_ADD_PLUGIN([dtstospdif])
1325 VLC_ADD_PLUGIN([audio_format])
1326 VLC_ADD_PLUGIN([i420_yuy2])
1327 VLC_ADD_PLUGIN([i422_yuy2])
1328 VLC_ADD_PLUGIN([i420_ymga])
1329 VLC_ADD_PLUGIN([i422_i420])
1330 VLC_ADD_PLUGIN([yuy2_i422])
1331 VLC_ADD_PLUGIN([yuy2_i420])
1335 dnl Some plugins aren't useful on some platforms
1337 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
1338 VLC_ADD_PLUGIN([screensaver])
1339 VLC_ADD_PLUGIN([motion])
1340 VLC_ADD_PLUGIN([dynamicoverlay])
1341 VLC_ADD_PLUGIN([signals])
1342 elif test "${SYS}" != "mingwce"; then
1343 VLC_ADD_PLUGIN([ntservice])
1344 VLC_ADD_PLUGIN([access_smb])
1345 VLC_ADD_PLUGIN([dmo])
1346 VLC_ADD_PLUGIN([msn])
1347 VLC_ADD_LIBS([dmo],[-lole32 -luuid])
1348 VLC_ADD_PLUGIN([globalhotkeys])
1350 VLC_ADD_PLUGIN([win32text])
1352 if test "${SYS}" = "darwin"; then
1353 VLC_ADD_PLUGIN([quartztext])
1354 VLC_ADD_LDFLAGS([quartztext],[-Wl,-framework,Carbon,-framework,ApplicationServices])
1358 dnl Accelerated modules
1361 AC_ARG_WITH(,[Optimization options:])
1363 dnl Check for fully working MMX intrinsics
1364 dnl We need support for -mmmx, we need <mmintrin.h>, and we also need a
1365 dnl working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1367 [ --disable-mmx disable MMX optimizations (default auto)],,[
1368 case "${host_cpu}" in
1377 AS_IF([test "${enable_mmx}" != "no"], [
1380 AC_CACHE_CHECK([if $CC groks MMX intrinsics],
1381 [ac_cv_c_mmx_intrinsics],
1382 [CFLAGS="${CFLAGS_save} -O -mmmx"
1383 AC_TRY_COMPILE([#include <mmintrin.h>
1387 a = b = c = (__m64)frobzor;
1388 a = _mm_slli_pi16(a, 3);
1389 a = _mm_adds_pi16(a, b);
1390 c = _mm_srli_pi16(c, 8);
1391 c = _mm_slli_pi16(c, 3);
1392 b = _mm_adds_pi16(b, c);
1393 a = _mm_unpacklo_pi8(a, b);
1394 frobzor = (uint64_t)a;],
1395 [ac_cv_c_mmx_intrinsics=yes],
1396 [ac_cv_c_mmx_intrinsics=no])])
1397 AS_IF([test "${ac_cv_c_mmx_intrinsics}" != "no"], [
1398 AC_DEFINE(HAVE_MMX_INTRINSICS, 1,
1399 [Define to 1 if MMX intrinsics are available.])
1400 VLC_ADD_CFLAGS([memcpymmx i420_rgb_mmx i420_yuy2_mmx i422_yuy2_mmx i420_ymga_mmx],[-mmmx])
1403 AC_CACHE_CHECK([if $CC groks MMX inline assembly],
1405 [CFLAGS="${CFLAGS_save}"
1406 AC_TRY_COMPILE(,[void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p));],
1407 ac_cv_mmx_inline=yes, ac_cv_mmx_inline=no)])
1408 AS_IF([test "${ac_cv_mmx_inline}" != "no"], [
1409 AC_DEFINE(CAN_COMPILE_MMX, 1,
1410 [Define to 1 inline MMX assembly is available.])
1411 VLC_ADD_PLUGIN([memcpymmx])
1412 VLC_ADD_PLUGIN([i420_rgb_mmx])
1413 VLC_ADD_PLUGIN([i420_yuy2_mmx])
1414 VLC_ADD_PLUGIN([i422_yuy2_mmx])
1415 VLC_ADD_PLUGIN([i420_ymga_mmx])
1418 AC_CACHE_CHECK([if $CC groks MMX EXT inline assembly],
1419 [ac_cv_mmxext_inline],
1420 [CFLAGS="${CFLAGS_save}"
1421 AC_TRY_COMPILE(,[void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p));],
1422 ac_cv_mmxext_inline=yes, ac_cv_mmxext_inline=no)])
1423 AS_IF([test "${ac_cv_mmxext_inline}" != "no"], [
1424 AC_DEFINE(CAN_COMPILE_MMXEXT, 1,
1425 [Define to 1 if MMX EXT inline assembly is available.])
1426 VLC_ADD_PLUGIN([memcpymmxext])
1430 dnl Check for fully workin SSE2 intrinsics
1431 dnl We need support for -mmmx, we need <emmintrin.h>, and we also need a
1432 dnl working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1434 [ --disable-sse disable SSE (1 and 2) optimizations (default auto)]
1436 case "${host_cpu}" in
1445 AS_IF([test "${enable_sse}" != "no"], [
1446 ARCH="${ARCH} sse sse2"
1448 AC_CACHE_CHECK([if $CC groks SSE2 intrinsics],
1449 [ac_cv_c_sse2_intrinsics],
1450 [CFLAGS="${CFLAGS_save} -O -msse2"
1451 AC_TRY_COMPILE([#include <emmintrin.h>
1455 a = b = c = _mm_set1_epi64((__m64)frobzor);
1456 a = _mm_slli_epi16(a, 3);
1457 a = _mm_adds_epi16(a, b);
1458 c = _mm_srli_epi16(c, 8);
1459 c = _mm_slli_epi16(c, 3);
1460 b = _mm_adds_epi16(b, c);
1461 a = _mm_unpacklo_epi8(a, b);
1462 frobzor = (uint64_t)_mm_movepi64_pi64(a);],
1463 [ac_cv_c_sse2_intrinsics=yes],
1464 [ac_cv_c_sse2_intrinsics=no])])
1465 AS_IF([test "${ac_cv_c_sse2_intrinsics}" != "no"], [
1466 AC_DEFINE(HAVE_SSE2_INTRINSICS, 1,
1467 [Define to 1 if SSE2 intrinsics are available.])
1468 VLC_ADD_CFLAGS([i420_rgb_sse2 i420_yuy2_sse2 i422_yuy2_sse2],[-msse2])
1471 AC_CACHE_CHECK([if $CC groks SSE inline assembly],
1473 [CFLAGS="${CFLAGS_save}"
1474 AC_TRY_COMPILE(,[void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p));],
1475 ac_cv_sse_inline=yes, ac_cv_sse_inline=no)])
1476 AS_IF([test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"], [
1477 AC_DEFINE(CAN_COMPILE_SSE, 1,
1478 [Define to 1 if SSE inline assembly is available.])
1481 AC_CACHE_CHECK([if $CC groks SSE2 inline assembly],
1482 [ac_cv_sse2_inline],
1483 [CFLAGS="${CFLAGS_save}"
1484 AC_TRY_COMPILE(,[void *p;asm volatile("punpckhqdq %%xmm1,%%xmm2"::"r"(p));],
1485 ac_cv_sse2_inline=yes, ac_cv_sse2_inline=no)])
1486 AS_IF([test "${ac_cv_sse2_inline}" != "no" -a "${SYS}" != "solaris"], [
1487 AC_DEFINE(CAN_COMPILE_SSE2, 1,
1488 [Define to 1 if SSE2 inline assembly is available.])
1489 VLC_ADD_PLUGIN([i420_rgb_sse2])
1490 VLC_ADD_PLUGIN([i420_yuy2_sse2])
1491 VLC_ADD_PLUGIN([i422_yuy2_sse2])
1495 AC_CACHE_CHECK([if $CC groks 3D Now! inline assembly],
1496 [ac_cv_3dnow_inline],
1497 [CFLAGS="${CFLAGS_save}"
1498 AC_TRY_COMPILE(,[void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p));],
1499 ac_cv_3dnow_inline=yes, ac_cv_3dnow_inline=no)])
1500 AS_IF([test "${ac_cv_3dnow_inline}" != "no"], [
1501 AC_DEFINE(CAN_COMPILE_3DNOW, 1,
1502 [Define to 1 if 3D Now! inline assembly is available.])
1503 VLC_ADD_PLUGIN([memcpy3dn])
1506 AC_ARG_ENABLE(altivec,
1507 [ --disable-altivec disable AltiVec optimizations (default auto)],, [
1508 AS_IF([test "${host_cpu}" = "powerpc"],
1509 [enable_altivec=yes], [enable_altivec=no])
1511 AS_IF([test "${enable_altivec}" = "yes"], [
1512 ARCH="${ARCH} altivec";
1513 AC_CACHE_CHECK([if $CC groks AltiVec inline assembly],
1514 [ac_cv_altivec_inline],
1515 [CFLAGS="${CFLAGS_save}"
1516 AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1517 ac_cv_altivec_inline="yes",
1518 [CFLAGS="${CFLAGS_save} -Wa,-m7400"
1519 AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1520 [ac_cv_altivec_inline="-Wa,-m7400"],
1521 ac_cv_altivec_inline=no)
1523 AS_IF([test "${ac_cv_altivec_inline}" != "no"], [
1524 AC_DEFINE(CAN_COMPILE_ALTIVEC, 1,
1525 [Define to 1 if AltiVec inline assembly is available.])
1526 AS_IF([test "${ac_cv_altivec_inline}" != "yes"], [
1527 VLC_ADD_CFLAGS([idctaltivec],[${ac_cv_altivec_inline}])
1528 VLC_ADD_CFLAGS([motionaltivec],[${ac_cv_altivec_inline}])
1529 VLC_ADD_CFLAGS([memcpyaltivec],[${ac_cv_altivec_inline}])
1530 VLC_ADD_CFLAGS([i420_yuy2_altivec],[${ac_cv_altivec_inline}])
1531 VLC_ADD_CFLAGS([libvlccore],[${ac_cv_altivec_inline}])
1533 VLC_ADD_PLUGIN([memcpyaltivec])
1534 VLC_ADD_PLUGIN([i420_yuy2_altivec])
1537 dnl The AltiVec C extensions
1539 dnl There are several possible cases:
1540 dnl - OS X PPC, gcc 4.x: use -mpim-altivec -force_cpusubtype_ALL, don't
1541 dnl need <altivec.h>
1542 dnl - OS X PPC, gcc 3.x: need -faltivec, don't need <altivec.h>
1543 dnl - Linux PPC, gcc 3.4, 4.x: need <altivec.h> which requires -maltivec
1544 dnl - Linux PPC, gcc 3.3: need <altivec.h> and -maltivec -mabi=altivec
1545 dnl - Linux PPC, gcc 3.x: need <altivec.h> and -fvec
1546 dnl - Others: test should fail
1547 AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1549 [# OS X/PPC test (gcc 4.x)
1550 CFLAGS="${CFLAGS_save} -mpim-altivec -force_cpusubtype_ALL"
1551 AC_TRY_COMPILE([vector unsigned char foo;],
1552 [vec_ld(0, (unsigned char *)0);],
1553 [ac_cv_c_altivec="-mpim-altivec -force_cpusubtype_ALL"],
1554 [# OS X/PPC test (gcc 3.x)
1555 CFLAGS="${CFLAGS_save} -faltivec"
1556 AC_TRY_COMPILE([vector unsigned char foo;],
1557 [vec_ld(1 * sizeof(vector float), (unsigned char *)0);],
1558 [ac_cv_c_altivec="-faltivec"],
1559 dnl Below this are the Linux tests
1560 [# Linux/PPC test (gcc 4.x)
1561 CFLAGS="${CFLAGS_save} -maltivec"
1562 AC_TRY_COMPILE([#include <altivec.h>],
1563 [vec_ld(0, (unsigned char *)0);],
1564 [ac_cv_c_altivec="-maltivec"],
1565 [# Linux/PPC test (gcc 3.3)
1566 CFLAGS="${CFLAGS_save} -maltivec -mabi=altivec"
1567 AC_TRY_COMPILE([#include <altivec.h>],
1568 [vec_ld(0, (unsigned char *)0);],
1570 ac_cv_c_altivec_abi="-maltivec -mabi=altivec"],
1571 [# Linux/PPC test (gcc 3.3)
1572 CFLAGS="${CFLAGS_save} -fvec"
1573 AC_TRY_COMPILE([#include <altivec.h>],
1574 [vec_ld(0, (unsigned char *)0);],
1575 [ac_cv_c_altivec="-fvec"],
1576 [ac_cv_c_altivec=no])
1581 CFLAGS="${CFLAGS_save}"
1583 AS_IF([test "${ac_cv_c_altivec}" != "no"], [
1584 CPPFLAGS="${CPPFLAGS_save} ${ac_cv_c_altivec}"
1587 AC_CHECK_HEADERS(altivec.h)
1588 CPPFLAGS="${CPPFLAGS_save}"
1590 AS_IF([test "${ac_cv_c_altivec}" != "no"], [
1591 AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1,
1592 [Define to 1 if C AltiVec extensions are available.])
1593 VLC_ADD_CFLAGS([libvlccore],[${ac_cv_c_altivec}])
1594 VLC_ADD_CFLAGS([idctaltivec motionaltivec],[${ac_cv_c_altivec}])
1595 VLC_ADD_CFLAGS([i420_yuy2_altivec memcpyaltivec deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1596 VLC_ADD_PLUGIN([memcpyaltivec])
1597 VLC_ADD_PLUGIN([i420_yuy2_altivec])
1600 AC_CACHE_CHECK([if linker needs -framework vecLib],
1602 [LDFLAGS="${LDFLAGS_vlc} -Wl,-framework,vecLib"
1603 AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)
1604 LDFLAGS="${LDFLAGS_save}"
1606 AS_IF([test "${ac_cv_ld_altivec}" != "no"], [
1607 VLC_ADD_LDFLAGS([libvlccore idctaltivec motionaltivec memcpyaltivec],[-Wl,-framework,vecLib])
1612 dnl Special arch tuning
1615 [ --with-tuning=ARCH enable special tuning for an architecture
1616 (default Pentium 2 on IA-32 and G4 on PPC)])
1617 if test -n "${with_tuning}"; then
1618 if test "${with_tuning}" != "no"; then
1619 CFLAGS_TUNING="-mtune=${with_tuning}"
1622 if test "${SYS}" = "darwin" -a "${host_cpu}" != "powerpc"; then
1623 CFLAGS_TUNING="-march=pentium-m -mtune=prescott"
1624 elif test "${host_cpu}" = "i686" -o "${host_cpu}" = "i586" -o "${host_cpu}" = "i486" -o "${host_cpu}" = "i386"; then
1625 CFLAGS_TUNING="-mtune=pentium2"
1626 elif test "${host_cpu}" = "x86_64"; then
1627 CFLAGS_TUNING="-mtune=athlon64"
1628 elif test "${host_cpu}" = "powerpc"; then
1629 CFLAGS_TUNING="-mtune=G4";
1633 dnl NOTE: this can't be cached cleanly
1634 AS_IF([test "${CFLAGS_TUNING}"],
1635 [CFLAGS_save="${CFLAGS}"
1636 CFLAGS="${CFLAGS} ${CFLAGS_TUNING}"
1638 AC_MSG_CHECKING([whether $CC accepts ${CFLAGS_TUNING}])
1639 AC_COMPILE_IFELSE([ ],
1641 [CFLAGS_TUNING=""; tuning="no"
1642 AS_IF([test "${with_tuning}"],
1643 [AC_MSG_ERROR([requested tuning not supported])])])
1645 AC_MSG_RESULT([$tuning])
1646 CFLAGS="${CFLAGS_save}"
1652 AC_ARG_ENABLE(optimize-memory,
1653 [ --enable-optimize-memory optimize memory usage over performance])
1654 if test "${enable_optimize_memory}" = "yes"; then
1655 AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1659 dnl Enable/disable optimizations
1661 AC_ARG_ENABLE(optimizations,
1662 [ --disable-optimizations disable compiler optimizations (default enabled)])
1663 if test "${enable_optimizations}" != "no"; then
1664 if test "${enable_optimize_memory}" = "yes"; then
1665 enable_optimizations="size"
1667 enable_optimizations="speed"
1674 AC_ARG_ENABLE(debug,
1675 [ --enable-debug debug mode (default disabled)])
1676 test "${enable_debug}" != "yes" && enable_debug="no"
1678 [Define to 1 if debug code should NOT be compiled])
1679 AS_IF([test "x${enable_debug}" = "xno"], [
1682 AC_CHECK_HEADERS([valgrind/valgrind.h])
1686 dnl Allow runing as root (usefull for people runing on embedded platforms)
1688 AC_ARG_ENABLE(run-as-root,
1689 [ --enable-run-as-root allow runing VLC as root (default disabled)])
1690 AS_IF([test "${enable_run_as_root}" = "yes"],[
1691 AC_DEFINE(ALLOW_RUN_AS_ROOT, 1,
1692 [Define to 1 to allow runing VLC as root (uid 0).])
1698 AC_ARG_ENABLE(coverage,
1699 [ --enable-coverage build for test coverage (default disabled)],,
1700 [enable_coverage="no"])
1701 AS_IF([test "${enable_coverage}" != "no"], [
1702 CFLAGS="-fprofile-arcs -ftest-coverage ${CFLAGS}"
1703 CXXFLAGS="-fprofile-arcs -ftest-coverage ${CXXFLAGS}"
1704 LDFLAGS="-lgcov ${LDFLAGS}"
1706 CFLAGS_save="${CFLAGS}"
1707 CXXFLAGS_save="${CXXFLAGS}"
1708 LDFLAGS_save="${LDFLAGS}"
1712 dnl Enable release-specific flags
1714 AC_ARG_ENABLE(release,
1715 [ --enable-release activate extra optimizations (default disabled)])
1716 test "${enable_release}" != "yes" && enable_release="no"
1722 [ --enable-sout Stream output modules (default enabled)])
1723 AS_IF([test "${enable_sout}" != "no"], [
1724 AC_DEFINE(ENABLE_SOUT, 1, [Define to 1 for stream output support.])
1726 AM_CONDITIONAL(ENABLE_SOUT, [test "${enable_sout}" != "no"])
1728 AC_ARG_ENABLE(switcher,
1729 [ --enable-switcher Stream-out switcher plugin (default disabled)])
1731 dnl Check for libshout
1732 AC_ARG_ENABLE(shout,
1733 [ --enable-shout libshout output plugin (default disabled)])
1734 if test "${enable_shout}" = "yes"; then
1735 PKG_CHECK_MODULES(SHOUT, shout >= 2.1,
1736 [AC_DEFINE(HAVE_SHOUT, 1, [Define if you have the libshout library])
1737 VLC_ADD_PLUGIN([access_output_shout])
1738 VLC_ADD_LIBS([access_output_shout],[$SHOUT_LIBS])
1739 VLC_ADD_CFLAGS([access_output_shout],[$SHOUT_CFLAGS])],
1740 [AC_MSG_WARN(libshout library not found)])
1745 AS_HELP_STRING([--enable-lua],[lua playlist, metafetcher and interface
1746 plugins (default enabled)]))
1747 if test "${enable_lua}" != "no"
1749 PKG_CHECK_MODULES(LUA, lua5.1,
1752 AC_MSG_WARN([lua5.1 not found, trying lua >= 5.1 instead])
1753 PKG_CHECK_MODULES(LUA, lua >= 5.1,
1757 AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
1760 AC_CHECK_LIB( lua5.1 , luaL_newstate,
1761 [LUA_LIBS="-llua5.1"],
1762 AC_CHECK_LIB( lua51 , luaL_newstate,
1763 [LUA_LIBS="-llua51"],
1764 AC_CHECK_LIB( lua , luaL_newstate,
1767 AC_MSG_WARN([lua >= 5.1 not found!])
1773 if test "x${have_lua}" = "xyes" ; then
1774 AC_DEFINE(HAVE_LUA, 1, [Define if you have the lua library])
1775 VLC_ADD_LIBS([lua],[$LUA_LIBS])
1776 VLC_ADD_CFLAGS([lua],[$LUA_CFLAGS])
1779 AM_CONDITIONAL(BUILD_LUA, [test "${have_lua}" = "yes"])
1784 AC_ARG_ENABLE(httpd,
1785 [ --enable-httpd HTTP daemon (default enabled)])
1786 if test "${enable_httpd}" != "no"
1788 VLC_ADD_PLUGIN([http])
1789 AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP dameon support)
1791 AM_CONDITIONAL(BUILD_HTTPD, [test "${enable_httpd}" != "no"])
1794 dnl libproxy support
1796 AC_ARG_ENABLE(libproxy,
1797 [ --enable-libproxy libproxy support (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])
1804 AS_IF([test "x${enable_libproxy}" != "x"], [
1805 AC_MSG_ERROR([libproxy could not be found on your system])
1811 dnl VideoLAN manager
1814 [ --enable-vlm VideoLAN manager (default enabled)],,
1815 [enable_vlm="${enable_sout}"])
1816 AS_IF([test "${enable_vlm}" != "no"], [
1817 AS_IF([test "${enable_sout}" = "no"], [
1818 AC_MSG_ERROR([VLM requires the stream output. Do not use --disable-sout.])
1820 AC_DEFINE(ENABLE_VLM, 1, [Define if you want the VideoLAN manager support])
1821 VLC_ADD_PLUGIN([telnet])
1823 AM_CONDITIONAL([ENABLE_VLM], [test "${enable_vlm}" != "no"])
1826 dnl Growl notification plugin
1828 AC_ARG_ENABLE(growl,
1829 [ --enable-growl growl notification plugin (default disabled)],,
1831 AS_IF([test "${enable_growl}" != "no"], [
1832 VLC_ADD_PLUGIN([growl_udp])
1833 AC_CHECK_HEADERS(Growl/GrowlDefines.h, [
1834 VLC_ADD_PLUGIN([growl])
1835 VLC_ADD_LDFLAGS([growl], [-Wl,-framework,Growl,-framework,AppKit])
1841 dnl Libnotify notification plugin
1844 AC_ARG_ENABLE(notify,
1845 [ --enable-notify libnotify notification plugin (default enabled)])
1846 AS_IF([test "${enable_notify}" != "no" -a "${SYS}" != "mingw32"], [
1847 PKG_CHECK_MODULES(NOTIFY, libnotify,
1849 VLC_ADD_PLUGIN([notify])
1850 VLC_ADD_CFLAGS(notify, [$NOTIFY_CFLAGS])
1851 VLC_ADD_LIBS(notify, [$NOTIFY_LIBS])
1853 AS_IF([test "${enable_notify}" = "yes"],[
1854 AC_MSG_WARN( libnotify not found) ])
1859 dnl Audioscrobbler plugin
1862 AC_ARG_ENABLE(audioscrobbler,
1863 [ --disable-audioscrobbler Last.fm submission plugin (default enabled)])
1864 AS_IF([test "${enable_audioscrobbler}" != "no"], [
1865 VLC_ADD_PLUGIN([audioscrobbler])
1871 AC_ARG_ENABLE(taglib,
1872 [ --disable-taglib Taglib support (default enabled) ])
1873 AS_IF([test "${enable_taglib}" != "no"],[
1874 PKG_CHECK_MODULES(TAGLIB, taglib >= 1.5,
1875 [ AC_DEFINE( HAVE_TAGLIB, 1, [Define if you have taglib plugin built] )
1876 VLC_ADD_PLUGIN([taglib])
1877 VLC_ADD_LIBS([taglib],[$TAGLIB_LIBS -lz])
1878 VLC_ADD_CXXFLAGS([taglib],[$TAGLIB_CFLAGS]) ],
1879 [AC_MSG_WARN(TagLib library not found)])
1887 AC_ARG_WITH(,[Input plugins:])
1891 if test "${enable_livedotcom}"
1893 AC_MSG_WARN(--{en|dis}able-livedotcom is deprecated. Use --{en|dis}able-live555 instead.)
1895 if test "${enable_livedotcom}" = "no"
1900 AC_ARG_ENABLE(live555,
1901 [ --enable-live555 live555 RTSP input plugin (default enabled)])
1902 if test "${enable_live555}" != "no"; then
1903 AC_ARG_WITH(live555-tree,
1904 [ --with-live555-tree=PATH live.com tree for static linking])
1907 dnl test for --with-live555-tree
1909 if test "${with_livedotcom_tree}"
1911 AC_MSG_WARN(--with-livedotcom-tree is deprecated. Use --with-live555-tree instead.)
1912 with_live555_tree="${with_livedotcom_tree}"
1915 if test -z "${with_live555_tree}" -a "${CXX}" != ""; then
1917 CPPFLAGS_save="${CPPFLAGS}"
1918 CPPFLAGS_live555="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
1919 if test "${SYS}" = "solaris"; then
1920 CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS"
1922 CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}"
1924 AC_CHECK_HEADERS(liveMedia_version.hh, [
1925 AC_MSG_CHECKING(for liveMedia version >= 1214895600 )
1927 [#include <liveMedia_version.hh>
1928 #ifdef LIVEMEDIA_LIBRARY_VERSION_INT
1929 #if LIVEMEDIA_LIBRARY_VERSION_INT < 1214895600
1933 [AC_MSG_RESULT([no])
1934 AC_MSG_ERROR([Your version of liveMedia is too old: you may get a more recent one from http://www.live555.com/liveMedia.
1935 lternatively you can use --disable-live555 to disable the liveMedia plugin.])
1937 AC_MSG_RESULT([yes])
1940 other_libs="-lgroupsock -lBasicUsageEnvironment -lUsageEnvironment"
1941 other_libs_pic="-lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic"
1942 if test "${SYS}" = "mingw32"; then
1943 # add ws2_32 for closesocket, select, recv
1944 other_libs="$other_libs -lws2_32"
1946 dnl We need to check for pic because live555 don't provide shared libs
1947 dnl and we want to build a plugins so we need -fPIC on some arch.
1948 AC_CHECK_HEADERS(liveMedia.hh, [
1949 VLC_ADD_CXXFLAGS([live555], [${CPPFLAGS_live555}])
1950 AC_CHECK_LIB(liveMedia_pic, main, [
1951 VLC_ADD_PLUGIN([live555])
1952 VLC_ADD_LIBS([live555], [-lliveMedia_pic ${other_libs_pic}])
1954 AC_CHECK_LIB(liveMedia, main, [
1955 VLC_ADD_PLUGIN([live555])
1956 VLC_ADD_LIBS([live555], [-lliveMedia ${other_libs}])
1957 ],[],[${other_libs}]) ],[${other_libs_pic}])
1959 AC_MSG_WARN([The development files for liveMedia (live555) can't be found])
1961 CPPFLAGS="${CPPFLAGS_save}"
1964 AC_MSG_CHECKING(for liveMedia/libliveMedia.a in ${with_live555_tree})
1965 real_live555_tree="`cd ${with_live555_tree} 2>/dev/null && pwd`"
1966 if test -z "${real_live555_tree}"; then
1967 dnl The given directory can't be found
1969 AC_MSG_ERROR([cannot cd to ${with_live555_tree}])
1971 if test -f "${real_live555_tree}/liveMedia/libliveMedia.a"; then
1972 AC_MSG_RESULT(${real_live555_tree}/liveMedia/libliveMedia.a)
1974 AC_CHECK_HEADERS(${real_live555_tree}/liveMedia/include/liveMedia_version.hh,[
1975 AC_MSG_CHECKING(for liveMedia version >= 1214895600 )
1977 [#include "${real_live555_tree}/liveMedia/include/liveMedia_version.hh"
1978 #ifdef LIVEMEDIA_LIBRARY_VERSION_INT
1979 #if LIVEMEDIA_LIBRARY_VERSION_INT < 1214895600
1983 [AC_MSG_RESULT([no])
1984 AC_MSG_ERROR([Your version of liveMedia is too old: you may get a more recent one from http://www.live555.com/liveMedia.
1985 lternatively you can use --disable-live555 to disable the liveMedia plugin.])
1987 AC_MSG_RESULT([yes])
1991 VLC_ADD_PLUGIN([live555])
1993 if test "${SYS}" = "mingw32"; then
1994 # add ws2_32 for closesocket, select, recv
1995 VLC_ADD_LIBS([live555],[-lws2_32])
1998 VLC_ADD_LIBS([live555],[-L${real_live555_tree}/liveMedia -lliveMedia])
1999 VLC_ADD_LIBS([live555],[-L${real_live555_tree}/BasicUsageEnvironment -lBasicUsageEnvironment])
2000 VLC_ADD_LIBS([live555],[-L${real_live555_tree}/groupsock -lgroupsock])
2001 VLC_ADD_LIBS([live555],[-L${real_live555_tree}/UsageEnvironment -lUsageEnvironment])
2003 VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/BasicUsageEnvironment/include])
2004 VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/groupsock/include])
2005 VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/liveMedia/include])
2006 VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/UsageEnvironment/include ])
2007 if test "${SYS}" = "solaris"; then
2008 VLC_ADD_CXXFLAGS([live555],[-DSOLARIS])
2011 dnl The given live555 wasn't built
2013 if test "${enable_live555}" = "yes"; then
2014 AC_MSG_ERROR([cannot find ${real_live555_tree}/liveMedia/libliveMedia.a, make sure you compiled live555 in ${with_live555_tree}])
2021 dnl special access module for dc1394 input
2023 AC_ARG_ENABLE(dc1394,
2024 [ --enable-dc1394 dc1394 access module (default disabled)])
2025 if test "${enable_dc1394}" = "yes"
2028 dnl Check for libraw1394
2030 PKG_CHECK_MODULES(LIBRAW1394, libraw1394 >= 2.0.1,
2032 VLC_ADD_LIBS([dc1394],[`${PKG_CONFIG} --libs libraw1394`])
2033 VLC_ADD_CPPFLAGS([dc1394],[`${PKG_CONFIG} --cflags libraw1394`])
2035 [AC_MSG_ERROR([Couldn't find libraw1394 >= 2.0.1, install libraw1394 development package])]
2039 dnl Check for libdc1394
2041 PKG_CHECK_MODULES(LIBDC1394, libdc1394-2 >= 2.0.2,
2043 VLC_ADD_PLUGIN([dc1394])
2044 VLC_ADD_LIBS([dc1394],[`${PKG_CONFIG} --libs libdc1394-2`])
2045 VLC_ADD_CPPFLAGS([access_dv],[`${PKG_CONFIG} --cflags libdc1394-2`])
2047 [AC_MSG_ERROR([Couldn't find libdc1394 >= 2.0.2, install libdc1394 development package])]
2052 dnl dv module: digital video module check for libraw1394
2055 [ --enable-dv dv input module (default disabled)])
2056 if test "${enable_dv}" = "yes"
2059 dnl Check for libraw1394
2061 PKG_CHECK_MODULES(LIBRAW1394, libraw1394 >= 2.0.1,
2063 VLC_ADD_LIBS([access_dv],[`${PKG_CONFIG} --libs libraw1394`])
2064 VLC_ADD_CPPFLAGS([access_dv],[`${PKG_CONFIG} --cflags libraw1394`])
2066 [AC_MSG_ERROR([Couldn't find libraw1394 >= 2.0.1, install libraw1394 development package])]
2070 dnl Check for libavc1394
2072 PKG_CHECK_MODULES(LIBAVC1394, libavc1394 >= 0.5.3,
2074 VLC_ADD_PLUGIN([access_dv])
2075 VLC_ADD_LIBS([access_dv],[`${PKG_CONFIG} --libs libavc1394`])
2076 VLC_ADD_CPPFLAGS([access_dv],[`${PKG_CONFIG} --cflags libavc1394`])
2078 [AC_MSG_ERROR([Couldn't find libavc1394 >= 0.5.1, install libavc1394 development package])]
2083 dnl dvdread module: check for libdvdread
2085 AC_ARG_ENABLE(dvdread,
2086 [ --enable-dvdread dvdread input module (default disabled)])
2087 if test "${enable_dvdread}" != "no"
2089 AC_ARG_WITH(dvdread,
2090 [ --with-dvdread=PATH libdvdread headers and libraries])
2091 AC_ARG_WITH(dvdread-tree,
2092 [ --with-dvdread-tree=PATH libdvdread tree for static linking])
2094 dnl Temporary hack (yeah, sure ;)
2095 if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
2096 VLC_ADD_LIBS([dvdread],[-ldvdcss])
2099 if test -z "${with_dvdread}"
2101 if test -z "${with_dvdread_tree}"
2103 AC_CHECK_HEADERS(dvdread/dvd_reader.h,
2104 [ VLC_ADD_PLUGIN([dvdread])
2105 VLC_ADD_LIBS([dvdread],[-ldvdread ${LIBS_dvdcss}])
2107 AC_CHECK_HEADERS(libdvdread/dvd_reader.h,
2108 [ VLC_ADD_PLUGIN([dvdread])
2109 VLC_ADD_LIBS([dvdread],[-ldvdread ${LIBS_dvdcss}])
2111 if test -n "${enable_dvdread}"
2113 AC_MSG_ERROR([cannot find libdvdread headers])
2118 AC_MSG_CHECKING(for libdvdread.a in ${with_dvdread_tree})
2119 real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`"
2120 if test -z "${real_dvdread_tree}"
2122 dnl The given directory can't be found
2124 AC_MSG_ERROR([cannot cd to ${with_dvdread_tree}])
2126 if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a"
2128 dnl Use a custom libdvdread
2129 AC_MSG_RESULT(${real_dvdread_tree}/dvdread/.libs/libdvdread.a)
2130 VLC_ADD_PLUGIN([dvdread])
2131 VLC_ADD_LIBS([dvdread],[-L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LIBS_dvdcss}])
2132 VLC_ADD_CPPFLAGS([dvdread],[-I${real_dvdread_tree}])
2134 dnl The given libdvdread wasn't built
2136 AC_MSG_ERROR([cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}])
2140 AC_MSG_CHECKING(for dvdread headers in ${with_dvdread})
2141 if test -f ${with_dvdread}/include/dvdread/dvd_reader.h
2143 dnl Use ${with_dvdread}/include/dvdread/dvd_reader.h
2145 VLC_ADD_PLUGIN([dvdread])
2146 VLC_ADD_LIBS([dvdread],[-L${with_dvdread}/lib -ldvdread ${LIBS_dvdcss}])
2147 VLC_ADD_CPPFLAGS([dvdread],[-I${with_dvdread}/include])
2149 dnl No libdvdread could be found, sorry
2151 AC_MSG_ERROR([cannot find ${with_dvdread}/include/dvdread/dvd_reader.h])
2157 dnl libdvdnav plugin
2159 AC_ARG_ENABLE(dvdnav,
2160 [ --enable-dvdnav dvdnav input module (default enabled)])
2161 if test "${enable_dvdnav}" != "no"
2163 dnl Same hack than dvdread
2164 if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
2165 VLC_ADD_LIBS([dvdnav],[-ldvdcss])
2168 DVDNAV_PATH="${PATH}"
2169 AC_ARG_WITH(dvdnav-config-path,
2170 [ --with-dvdnav-config-path=PATH dvdnav-config path (default search in \$PATH)],
2171 [ if test "${with_dvdnav_config_path}" != "no"
2173 DVDNAV_PATH="${with_dvdnav_config_path}:${PATH}"
2175 AC_PATH_PROG(DVDNAV_CONFIG, dvdnav-config, no, ${DVDNAV_PATH})
2176 if test "${DVDNAV_CONFIG}" != "no"
2178 VLC_ADD_PLUGIN([dvdnav])
2179 VLC_ADD_CFLAGS([dvdnav],[`${DVDNAV_CONFIG} --cflags`])
2180 VLC_ADD_LIBS([dvdnav],[`${DVDNAV_CONFIG} --libs`])
2185 dnl Windows DirectShow access module
2187 AC_ARG_ENABLE(dshow,
2188 [ --enable-dshow Win32 DirectShow support (default enabled on Win32)])
2189 if test "${enable_dshow}" != "no"
2191 if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
2194 AC_CHECK_HEADERS(dshow.h,
2195 [ VLC_ADD_PLUGIN([dshow])
2196 VLC_ADD_CXXFLAGS([dshow],[])
2197 VLC_ADD_LIBS([dshow],[-lole32 -loleaut32 -luuid]) ])
2203 dnl Windows DirectShow BDA access module
2206 AS_HELP_STRING([--enable-bda],[Win32 DirectShow BDA support (default
2207 enabled on Win32)]))
2208 if test "${enable_bda}" != "no"
2210 if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
2212 AC_CHECK_HEADERS(dshow.h,
2213 [ VLC_ADD_PLUGIN([bda])
2214 VLC_ADD_CXXFLAGS([bda],[])
2215 VLC_ADD_LIBS([bda],[-lstrmiids -lole32 -loleaut32 -luuid]) ])
2221 dnl OpenCV wrapper and example filters
2223 AC_ARG_ENABLE(opencv,
2224 [ --enable-opencv OpenCV (computer vision) filter (default disabled)])
2225 if test "${enable_opencv}" = "yes" -a "${CXX}" != "";
2227 AC_ARG_WITH(opencv-tree,
2228 [ --with-opencv-tree=PATH opencv tree for linking])
2229 if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
2231 test -z "${with_opencv_tree}" && AC_MSG_ERROR([You have to specify --with-opencv-tree])
2232 AC_MSG_CHECKING(for opencv in ${with_opencv_tree})
2233 if test -f ${with_opencv_tree}/cv/include/cv.h -a -f ${with_opencv_tree}/cxcore/include/cxcore.h \
2234 -a -f ${with_opencv_tree}/cvaux/include/cvaux.h -a -f ${with_opencv_tree}/otherlibs/highgui/highgui.h
2237 VLC_ADD_PLUGIN([opencv_wrapper])
2238 VLC_ADD_LIBS([opencv_wrapper],[-L${with_opencv_tree}/lib -lcv -lcxcore -lcvaux -lhighgui])
2239 VLC_ADD_CFLAGS([opencv_wrapper],[-I${with_opencv_tree}/cv/include -I${with_opencv_tree}/cxcore/include -I${with_opencv_tree}/cvaux/include -I${with_opencv_tree}/otherlibs/highgui])
2241 VLC_ADD_PLUGIN([opencv_example])
2242 VLC_ADD_LIBS([opencv_example],[-L${with_opencv_tree}/lib -lcv -lcxcore -lcvaux -lhighgui])
2243 VLC_ADD_CXXFLAGS([opencv_example],[-I${with_opencv_tree}/cv/include -I${with_opencv_tree}/cxcore/include -I${with_opencv_tree}/cvaux/include -I${with_opencv_tree}/otherlibs/highgui])
2246 dnl No opencv could be found, sorry
2248 AC_MSG_ERROR([cannot find opencv in ${with_opencv_tree}])
2251 PKG_CHECK_MODULES(OPENCV, opencv,
2253 VLC_ADD_PLUGIN([opencv_example])
2254 VLC_ADD_PLUGIN([opencv_wrapper])
2255 VLC_ADD_LIBS([opencv_example opencv_wrapper],[${OPENCV_LIBS}])
2256 VLC_ADD_CFLAGS([opencv_wrapper],[${OPENCV_CFLAGS}])
2257 VLC_ADD_CXXFLAGS([opencv_example],[${OPENCV_CFLAGS}])
2259 [AC_MSG_ERROR([libopencv not found!])]
2266 dnl libsmbclient plugin
2269 [ --enable-smb smb input module (default enabled)])
2270 if test "${enable_smb}" != "no"; then
2271 AC_CHECK_HEADERS(libsmbclient.h,
2272 [ VLC_ADD_PLUGIN([access_smb])
2273 VLC_ADD_LIBS([access_smb],[-lsmbclient]) ],
2274 [ if test -n "${enable_smb}"; then
2275 AC_MSG_ERROR([cannot find libsmbclient headers])
2277 AC_CHECK_MEMBER([struct _SMBCCTX.close_fn],
2278 AC_DEFINE([HAVE__SMBCCTX_CLOSE_FN], 1, [Define if samba has _SMBCCTX.close_fn]),,
2279 [#include <libsmbclient.h>])
2283 dnl libdvbpsi ts demux/mux
2285 AC_ARG_ENABLE(dvbpsi,
2286 [ --enable-dvbpsi dvbpsi ts mux and demux module (default enabled)])
2288 if test "${enable_dvbpsi}" != "no"
2291 [ --with-dvbpsi=PATH libdvbpsi headers and libraries])
2293 [ --with-dvbpsi-tree=PATH libdvbpsi tree for static linking])
2294 case "${with_dvbpsi}" in
2296 if test -z "${with_dvbpsi_tree}"
2298 AC_CHECK_HEADERS(dvbpsi/dr.h,
2299 [ VLC_ADD_PLUGIN([ts])
2300 if test "${enable_sout}" != "no"; then
2301 VLC_ADD_PLUGIN([mux_ts])
2303 VLC_ADD_LIBS([mux_ts ts dvb],[-ldvbpsi])
2305 [ AC_MSG_WARN([cannot find libdvbpsi headers]) ],
2306 [#if defined( HAVE_STDINT_H )
2307 # include <stdint.h>
2308 #elif defined( HAVE_INTTYPES_H )
2309 # include <inttypes.h>
2311 #include <dvbpsi/dvbpsi.h>
2312 #include <dvbpsi/descriptor.h>
2313 #include <dvbpsi/pat.h>
2314 #include <dvbpsi/pmt.h>])
2316 AC_MSG_CHECKING(for libdvbpsi.a in ${with_dvbpsi_tree})
2317 real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
2318 if test -z "${real_dvbpsi_tree}"
2320 dnl The given directory can't be found
2322 AC_MSG_ERROR([cannot cd to ${with_dvbpsi_tree}])
2324 if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
2326 dnl Use a custom libdvbpsi
2327 AC_MSG_RESULT(${real_dvbpsi_tree}/src/.libs/libdvbpsi.a)
2328 VLC_ADD_PLUGIN([ts])
2329 if test "${enable_sout}" != "no"; then
2330 VLC_ADD_PLUGIN([mux_ts])
2332 VLC_ADD_CPPFLAGS([mux_ts ts dvb],[-I${real_dvbpsi_tree}/src])
2333 VLC_ADD_LIBS([mux_ts ts dvb],[${real_dvbpsi_tree}/src/.libs/libdvbpsi.a])
2336 dnl The given libdvbpsi wasn't built
2338 AC_MSG_ERROR([cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}])
2343 dnl Compile without dvbpsi
2346 AC_MSG_CHECKING(for dvbpsi headers in ${with_dvbpsi})
2347 if test -z "${with_dvbpsi}"
2352 LDFLAGS_test="-L${with_dvbpsi}/lib"
2353 CPPFLAGS_test="-I${with_dvbpsi}/include"
2355 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}"
2356 AC_CHECK_HEADERS([dvbpsi/dr.h],[
2357 VLC_ADD_PLUGIN([ts])
2358 if test "${enable_sout}" != "no"; then
2359 VLC_ADD_PLUGIN([mux_ts])
2361 VLC_ADD_CPPFLAGS([mux_ts ts dvb],[${CPPFLAGS_test}])
2362 VLC_ADD_LIBS([mux_ts ts dvb],[${LDFLAGS_test} -ldvbpsi])
2365 if test -n "${enable_dvbpsi}"
2367 AC_MSG_ERROR([Could not find libdvbpsi on your system: you may get it from www.videolan.org, you'll need at least version 0.1.1])
2370 CPPFLAGS="${CPPFLAGS_save}"
2373 AC_CHECK_LIB(dvbpsi, dvbpsi_GenSDTSections, [
2374 AC_DEFINE(HAVE_DVBPSI_SDT, 1, [Define if you have dvbpsi_GenSDTSections.])
2375 ], [], [${LIBS_ts}])
2380 dnl Video4Linux plugin
2383 [ --enable-v4l Video4Linux input support (default disabled)])
2384 if test "${enable_v4l}" = "yes"
2387 [ --with-v4l=PATH path to a v4l-enabled kernel tree],[],[])
2388 if test "${with_v4l}" != "no" -a -n "${with_v4l}"
2390 VLC_ADD_CPPFLAGS([v4l],[-I${with_v4l}/include])
2393 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l}"
2394 AC_CHECK_HEADERS(linux/videodev.h, [
2395 VLC_ADD_PLUGIN([v4l])
2397 CPPFLAGS="${CPPFLAGS_save}"
2401 dnl Video4Linux2 plugin
2404 [ --enable-v4l2 Video4Linux2 input support (default enabled)])
2405 if test "${enable_v4l2}" != "no"
2408 [ --with-v4l2=PATH path to a v4l2-enabled kernel tree],[],[])
2409 if test "${with_v4l2}" != "no" -a -n "${with_v4l2}"
2411 VLC_ADD_CPPFLAGS([v4l2],[-I${with_v4l2}/include])
2414 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l2}"
2415 AC_CHECK_HEADERS(linux/videodev2.h, [
2416 VLC_ADD_PLUGIN([v4l2])
2418 CPPFLAGS="${CPPFLAGS_save}"
2422 dnl libv4l2 support for video4linux.
2424 AC_ARG_ENABLE( libv4l2,
2425 [ --enable-libv4l2 Libv4l2 Video4Linux2 support (default enabled)])
2426 if test "${enable_libv4l2}" != "no" -a "${enable_v4l2}" != "no"
2428 PKG_CHECK_MODULES( LIBV4L2, libv4l2, [
2429 VLC_ADD_LDFLAGS([v4l2],[${LIBV4L2_LIBS}])
2430 VLC_ADD_CFLAGS([v4l2],[${LIBV4L2_CFLAGS}])
2431 AC_DEFINE(HAVE_LIBV4L2, 1, Define if libv4l is available)],
2432 AC_MSG_WARN([LibV4L2 support disabled because libv4l2 development headers were not found])
2437 dnl special access module for Hauppauge PVR cards
2440 [ --enable-pvr PVR cards access module (default disabled)])
2441 if test "${enable_pvr}" = "yes"
2443 VLC_ADD_PLUGIN([pvr])
2444 AC_ARG_WITH(videodev2,
2445 [ --with-videodev2=FILE Location of videodev2.h file (default /usr/include/linux/videodev2.h)],[],[])
2446 if test "${with_videodev2}" != "no" -a -n "${with_videodev2}"
2448 AC_DEFINE_UNQUOTED(VIDEODEV2_H_FILE, "${with_videodev2}", [Location of videodev2.h])
2451 AC_CACHE_CHECK([for new linux/videodev2.h],
2452 [ac_cv_new_linux_videodev2_h],
2454 #include <sys/types.h>
2455 # ifdef VIDEODEV2_H_FILE
2456 # include VIDEODEV2_H_FILE
2458 # include <linux/videodev2.h>
2461 [struct v4l2_ext_controls ctrls; ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG; ],
2462 ac_cv_new_linux_videodev2_h=yes,
2463 ac_cv_new_linux_videodev2_h=no)])
2464 if test "${ac_cv_new_linux_videodev2_h}" != "no"; then
2465 AC_DEFINE(HAVE_NEW_LINUX_VIDEODEV2_H, 1, [Define if new linux/videodev2.h present])
2470 dnl gnomeVFS access module
2472 AC_ARG_ENABLE(gnomevfs,
2473 [ --enable-gnomevfs GnomeVFS access module (default disabled)])
2474 if test "${enable_gnomevfs}" = "yes"
2476 PKG_CHECK_MODULES(GNOMEVFS, gnome-vfs-2.0,
2477 VLC_ADD_LIBS([access_gnomevfs],[$GNOMEVFS_LIBS])
2478 VLC_ADD_CPPFLAGS([access_gnomevfs],[$GNOMEVFS_CPPFLAGS])
2479 VLC_ADD_CFLAGS([access_gnomevfs],[$GNOMEVFS_CFLAGS])
2480 VLC_ADD_PLUGIN([access_gnomevfs]),
2481 AC_MSG_WARN([GnomeVFS support disabled because GnomeVFS development headers not found]))
2484 dnl Need to test libcdio and libvcdinfo for a number of things. Do it now.
2485 AC_ARG_ENABLE(libcdio,
2486 [ --enable-libcdio CD input and control library support (default enabled)])
2488 AC_ARG_ENABLE(vcdinfo,
2489 [ --enable-libvcdinfo VCD information library support (default enabled)])
2493 if test "${enable_libcdio}" != "no"
2495 PKG_CHECK_MODULES(LIBCDIO, libcdio >= 0.78.2,
2497 AC_DEFINE(HAVE_LIBCDIO, 1,
2498 [Define if you have libcdio 0.78.2 or greater installed]),
2499 [AC_MSG_WARN(CD Reading and information library not found)])
2501 if test "${enable_vcdinfo}" != "no"
2503 PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.22,
2504 [have_libvcdinfo=yes
2505 AC_DEFINE(HAVE_VCDINFO, 1,
2506 [Define if you have libvcdinfo 0.7.22 or greater installed])],
2507 [AC_MSG_WARN(VCD information library not found)])
2512 dnl VCDX and CDDAX modules
2514 AC_ARG_ENABLE(cddax,
2515 AS_HELP_STRING([--enable-cddax],[audio CD plugin with CD Text and CD paranoia
2516 via libcdio (default disabled)]))
2518 AC_ARG_ENABLE(libcddb,
2519 [ --enable-libcddb CDDB support for libcdio audio CD (default enabled)])
2521 if test "${enable_cddax}" = "yes"
2523 if test "$have_libcdio" = "yes"
2525 AC_DEFINE(HAVE_CDDAX, 1, [Define for the audio CD plugin using libcdio])
2526 VLC_ADD_LIBS([cddax],[$LIBCDIO_LIBS])
2527 VLC_ADD_CFLAGS([cddax],[$LIBCDIO_CFLAGS])
2528 VLC_ADD_PLUGIN([cddax])
2529 PKG_CHECK_MODULES(LIBCDIO_PARANOIA, libcdio_paranoia >= 0.72, [
2530 VLC_ADD_LIBS([cddax],[$LIBCDIO_CDDA_LIBS $LIBCDIO_CDDA_LIBS $LIBCDIO_PARANOIA_LIBS])],
2531 AC_MSG_WARN([CD Paranoia support disabled because no libcdio >= 0.72 found]))
2533 AC_MSG_WARN([cddax plugin disabled because ok libcdio library not found or disabled])
2537 if test "$enable_libcddb" != "no"; then
2538 PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.5, [
2540 AC_DEFINE(HAVE_LIBCDDB, 1, [Define this if you have libcddb installed])
2541 VLC_ADD_LIBS([cddax],[$LIBCDDB_LIBS])
2542 VLC_ADD_CFLAGS([cddax],[$LIBCDDB_CFLAGS])
2544 [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled)
2551 [ --enable-vcdx VCD with navigation via libvcdinfo (default disabled)])
2553 if test "${enable_vcdx}" = "yes"
2555 if test "${have_libvcdinfo}" = "yes"
2557 VLC_ADD_LIBS([vcdx],[$VCDINFO_LIBS])
2558 VLC_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
2560 AC_MSG_WARN([vcdx plugin disabled because ok libvcdinfo library not found or disabled])
2564 PKG_CHECK_MODULES(LIBCDIO, libiso9660 >= 0.72,
2565 [VLC_ADD_LIBS([vcdx],[$LIBISO9660_LIBS])
2566 VLC_ADD_CFLAGS([vcdx],[$LIBISO9660_CFLAGS])],
2567 [AC_MSG_WARN([vcdx plugin disabled because ok libiso9660 library not found])
2570 if test "$have_libvcdinfo" = "yes"
2572 AC_DEFINE(HAVE_VCDX, 1,
2573 [Define for the VCD plugin using libcdio/libvcdinfo])
2574 VLC_ADD_LIBS([vcdx],[$VCDINFO_LIBS])
2575 VLC_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
2576 VLC_ADD_PLUGIN([vcdx])
2578 AC_MSG_WARN([vcdx plugin disabled because ok libvcdinfo library not found])
2584 dnl Built-in CD-DA and VCD module
2587 [ --enable-cdda audio CD via built-in VCD (default enabled)])
2590 [ --enable-vcd built-in VCD (default enabled)])
2592 if test "${enable_vcd}" != "no"
2594 AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
2595 AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
2597 VLC_ADD_PLUGIN([vcd])
2598 VLC_ADD_PLUGIN([cdda])
2603 AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
2604 AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
2606 VLC_ADD_PLUGIN([vcd])
2607 VLC_ADD_PLUGIN([cdda])
2608 AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
2613 AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
2614 AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
2616 VLC_ADD_PLUGIN([vcd])
2617 VLC_ADD_PLUGIN([cdda])
2618 AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
2623 if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32"
2625 VLC_ADD_PLUGIN([vcd])
2626 VLC_ADD_PLUGIN([cdda])
2629 if test "${SYS}" = "darwin"
2631 VLC_ADD_PLUGIN([vcd])
2632 VLC_ADD_PLUGIN([cdda])
2633 VLC_ADD_LDFLAGS([vcd vcdx cdda cddax],[-Wl,-framework,IOKit,-framework,CoreFoundation])
2634 VLC_ADD_LIBS([vcdx cddax cdda],[-liconv])
2637 if test "$enable_libcddb" != "no"; then
2638 PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.5, [
2640 AC_DEFINE(HAVE_LIBCDDB, 1, [Define this if you have libcddb installed])
2641 VLC_ADD_LIBS([cdda],[$LIBCDDB_LIBS])
2642 VLC_ADD_CFLAGS([cdda],[$LIBCDDB_CFLAGS])
2644 [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled)
2650 dnl DVB-S/DVB-T/DVB-C satellite/teresterial/cable input using v4l2
2653 [ --enable-dvb DVB-S/T/C card support (default enabled)])
2655 if test "${enable_dvb}" != "no"
2657 AS_IF([test "${have_dvbpsi}" = "yes" ],[
2659 [ --with-dvb=PATH path to a dvb- and v4l2-enabled kernel tree],[],[])
2660 if test "${with_dvb}" != "no" -a -n "${with_dvb}"
2662 VLC_ADD_CFLAGS([dvb],[-I${with_dvb}/include])
2664 CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include"
2665 AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [
2666 VLC_ADD_PLUGIN([dvb])
2667 ],[AC_MSG_WARN(linux-dvb headers not found, dvb disabled)])
2668 CPPFLAGS="${CPPFLAGS_save}"
2670 AC_MSG_WARN([the dvb access module requires libdvbpsi])
2675 dnl Screen capture module
2677 AC_ARG_ENABLE(screen,
2678 [ --enable-screen Screen capture support (default enabled)])
2679 if test "${enable_screen}" != "no"; then
2680 if test "${SYS}" = "darwin"; then
2681 AC_CHECK_HEADERS(OpenGL/gl.h, [
2682 AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
2683 VLC_ADD_PLUGIN([screen])
2684 VLC_ADD_LDFLAGS([screen],[-Wl,-framework,OpenGL,-framework,ApplicationServices])
2687 elif test "${SYS}" = "mingw32"; then
2688 VLC_ADD_PLUGIN([screen])
2689 VLC_ADD_LIBS([screen],[-lgdi32])
2690 elif test "${SYS}" = "mingwce"; then
2691 CPPFLAGS="${CPPFLAGS_save}"
2692 elif test "${SYS}" = "beos"; then
2693 VLC_ADD_PLUGIN([screen])
2694 VLC_ADD_CXXFLAGS([screen],[])
2695 VLC_ADD_LIBS([screen],[-lbe])
2700 dnl ipv6 plugin - not for QNX yet
2703 AC_CHECK_FUNCS(inet_pton,[have_ipv6=yes],[
2704 AC_CHECK_LIB(nsl,inet_pton, [have_ipv6=yes])
2707 AS_IF([test "${have_ipv6}" = "yes"], [
2708 AC_DEFINE(HAVE_INET_PTON, 1, [Define to 1 if you have inet_pton().])])
2711 AC_CHECK_FUNCS(inet_ntop,[
2712 AC_DEFINE(HAVE_INET_NTOP, 1, [Define to 1 if you have inet_ntop().])])
2716 dnl ogg demux plugin
2719 [ --enable-ogg Ogg demux support (default enabled)])
2720 if test "${enable_ogg}" != "no"
2722 AC_ARG_WITH(ogg-tree,
2723 [ --with-ogg-tree=PATH ogg tree for static linking])
2724 if test -n "${with_ogg_tree}"
2726 AC_MSG_CHECKING(for libogg.a in ${with_ogg_tree})
2727 real_ogg_tree="`cd ${with_ogg_tree} 2>/dev/null && pwd`"
2728 if test -z "${real_ogg_tree}"
2730 dnl The given directory can't be found
2732 AC_MSG_ERROR([cannot cd to ${with_ogg_tree}])
2734 if test -f "${real_ogg_tree}/src/.libs/libogg.a"
2736 dnl Use a custom ogg
2737 AC_MSG_RESULT(${real_ogg_tree}/src/.libs/libogg.a)
2738 VLC_ADD_PLUGIN([ogg])
2739 if test "${enable_sout}" != "no"; then
2740 VLC_ADD_PLUGIN([mux_ogg])
2742 VLC_ADD_LIBS([ogg mux_ogg speex vorbis],[${real_ogg_tree}/src/.libs/libogg.a])
2743 VLC_ADD_CFLAGS([ogg mux_ogg speex vorbis],[-I${real_ogg_tree}/include])
2745 dnl The given ogg wasn't built
2747 AC_MSG_ERROR([cannot find ${real_ogg_tree}/src/.libs/libogg.a, make sure you compiled ogg in ${with_ogg_tree}])
2750 AC_CHECK_HEADERS(ogg/ogg.h, [
2751 AC_CHECK_LIB( ogg, oggpack_read, [
2752 VLC_ADD_PLUGIN([ogg])
2753 if test "${enable_sout}" != "no"; then
2754 VLC_ADD_PLUGIN([mux_ogg])
2756 VLC_ADD_LIBS([ogg mux_ogg],[-logg])])
2762 dnl matroska demux plugin
2765 [ --enable-mkv Matroska demux support (default enabled)])
2766 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
2768 AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
2769 AC_MSG_CHECKING(for libebml version >= 0.7.7)
2771 [#include <ebml/EbmlVersion.h>
2772 #ifdef LIBEBML_VERSION
2773 #if LIBEBML_VERSION >= 0x000706
2777 [AC_MSG_RESULT([yes])
2778 AC_CHECK_HEADERS(matroska/KaxVersion.h, [
2779 AC_MSG_CHECKING(for libmatroska version >= 0.8.0)
2781 [#include <matroska/KaxVersion.h>
2782 #ifdef LIBMATROSKA_VERSION
2783 #if LIBMATROSKA_VERSION >= 0x000705
2787 [AC_MSG_RESULT([yes])
2788 AC_CHECK_HEADERS(matroska/KaxAttachments.h)
2789 VLC_ADD_CXXFLAGS([mkv],[])
2790 if test "${SYS}" = "darwin"; then
2791 VLC_ADD_CXXFLAGS([mkv],[-O1])
2793 AC_CHECK_LIB(ebml_pic, main, [
2794 VLC_ADD_PLUGIN([mkv])
2795 VLC_ADD_LIBS([mkv],[-lmatroska -lebml_pic])
2797 AC_CHECK_LIB(ebml, main, [
2798 VLC_ADD_PLUGIN([mkv])
2799 VLC_ADD_LIBS([mkv],[-lmatroska -lebml])
2803 [AC_MSG_RESULT([no])
2804 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.])
2808 [AC_MSG_RESULT([no])
2809 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.])
2816 dnl modplug demux plugin
2819 [ --enable-mod Mod demux support (default enabled)])
2820 if test "${enable_mod}" != "no"
2822 AC_ARG_WITH(mod-tree,
2823 [ --with-mod-tree=PATH mod tree for static linking])
2824 if test -n "${with_mod_tree}"
2826 AC_MSG_CHECKING(for libmodplug.a in ${with_mod_tree})
2827 real_mod_tree="`cd ${with_mod_tree} 2>/dev/null && pwd`"
2828 if test -z "${real_mod_tree}"
2830 dnl The given directory can't be found
2832 AC_MSG_ERROR([cannot cd to ${with_mod_tree}])
2834 if test -f "${real_mod_tree}/src/.libs/libmodplug.a"
2836 dnl Use a custom mod
2837 AC_MSG_RESULT(${real_mod_tree}/src/.libs/libmodplug.a)
2838 VLC_ADD_PLUGIN([mod])
2839 VLC_ADD_LIBS([mod],[${real_mod_tree}/src/.libs/libmodplug.a -lstdc++])
2840 VLC_ADD_CXXFLAGS([mod],[-I${real_mod_tree}/include])
2842 dnl The given mod wasn't built
2844 AC_MSG_ERROR([cannot find ${real_mod_tree}/src/.libs/libmodplug.a, make sure you compiled mod in ${with_mod_tree}])
2847 AC_CHECK_HEADERS(libmodplug/modplug.h, [
2848 VLC_ADD_PLUGIN([mod])
2849 VLC_ADD_CXXFLAGS([mod],[])
2850 VLC_ADD_LIBS([mod],[-lmodplug -lstdc++])])
2855 dnl mpc demux plugin
2858 [ --enable-mpc Mpc demux support (default enabled)])
2859 if test "${enable_mpc}" != "no"
2861 AC_CHECK_HEADERS(mpcdec/mpcdec.h, [
2862 VLC_ADD_PLUGIN([mpc])
2863 VLC_ADD_LIBS([mpc],[-lmpcdec])])
2867 dnl game music emu demux plugin
2870 [ --enable-gme Game Music Emu demux support (default enabled)])
2871 if test "${enable_gme}" != "no" -a "${CXX}" != "";
2874 AC_ARG_WITH(gme-tree,
2875 [ --with-gme-tree=PATH gme tree for static linking])
2876 if test -n "${with_gme_tree}"
2878 AC_MSG_CHECKING(for libgme.a in ${with_mod_tree})
2879 real_gme_tree="`cd ${with_gme_tree} 2>/dev/null && pwd`"
2880 if test -z "${real_gme_tree}"
2882 dnl The given directory can't be found
2884 AC_MSG_ERROR([cannot cd to ${with_gme_tree}])
2886 if test -f "${real_gme_tree}/gme/libgme.a"
2888 dnl Use a custom gme
2889 AC_MSG_RESULT(${real_gme_tree}/gme/libgme.a)
2890 VLC_ADD_PLUGIN([gme])
2891 VLC_ADD_LIBS([gme],[${real_gme_tree}/gme/libgme.a])
2892 VLC_ADD_CXXFLAGS([gme],[-I${real_gme_tree}/gme])
2894 dnl The given gme wasn't built
2896 AC_MSG_ERROR([cannot find ${real_mod_tree}/gme/libgme.a, make sure you compiled gme in ${with_gme_tree}])
2899 AC_MSG_WARN([only static linking is available, you must provide a gme-tree])
2908 AC_ARG_WITH(,[Codec plugins:])
2913 AC_ARG_ENABLE(wma-fixed,
2914 [ --enable-wma-fixed libwma-fixed module (default disabled)])
2915 if test "${enable_wma_fixed}" = "yes"
2917 VLC_ADD_PLUGIN([wma_fixed])
2921 dnl shine fixed point mp3 encoder
2923 AC_ARG_ENABLE(shine,
2924 [ --enable-shine shine mp3 encoding module (default disabled)])
2925 if test "${enable_shine}" = "yes"
2927 VLC_ADD_PLUGIN([shine])
2934 [ --enable-mad libmad module (default enabled)])
2935 if test "${enable_mad}" != "no"
2938 [ --with-mad=PATH path to libmad],[],[])
2939 if test "${with_mad}" != "no" -a -n "${with_mad}"
2941 VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
2942 VLC_ADD_LIBS([mpgatofixed32],[-L${with_mad}/lib])
2945 AC_ARG_WITH(mad-tree,
2946 [ --with-mad-tree=PATH mad tree for static linking],[],[])
2947 if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
2949 real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
2950 if test -z "${real_mad_tree}"
2952 dnl The given directory can't be found
2954 AC_MSG_ERROR([${with_mad_tree} directory doesn't exist])
2956 dnl Use a custom libmad
2957 AC_MSG_CHECKING(for mad.h in ${real_mad_tree})
2958 if test -f ${real_mad_tree}/mad.h
2961 VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}])
2962 VLC_ADD_LIBS([mpgatofixed32],[-L${real_mad_tree}/.libs])
2963 LDFLAGS="${LDFLAGS_save} ${LIBS_mpgatofixed32}"
2964 AC_CHECK_LIB(mad, mad_bit_init, [
2965 VLC_ADD_PLUGIN([mpgatofixed32])
2966 VLC_ADD_LIBS([mpgatofixed32],[-lmad])
2967 ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ])
2969 LDFLAGS="${LDFLAGS_save}"
2972 AC_MSG_ERROR([the specified tree doesn't have mad.h])
2975 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}"
2976 LDFLAGS="${LDFLAGS_save} ${LIBS_mpgatofixed32}"
2977 AC_CHECK_HEADERS(mad.h, ,
2978 [ 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.]) ])
2979 AC_CHECK_LIB(mad, mad_bit_init, [
2980 VLC_ADD_PLUGIN([mpgatofixed32])
2981 VLC_ADD_LIBS([mpgatofixed32],[-lmad])],
2982 [ AC_MSG_ERROR([Cannot find libmad library...]) ])
2983 CPPFLAGS="${CPPFLAGS_save}"
2984 LDFLAGS="${LDFLAGS_save}"
2989 dnl libid3tag support (FIXME!!! doesn't work with new input)
2991 AC_ARG_ENABLE( id3tag,
2992 [ --disable-id3tag id3tag metadata reader plugin (default disabled)])
2993 AS_IF([test "${enable_id3tag}" = "yes"], [
2994 AC_CHECK_HEADERS(id3tag.h, [
2995 AS_IF([test "${have_zlib}" = "yes"],[
2996 VLC_ADD_LIBS([id3tag],[-lid3tag -lz])
2997 VLC_ADD_PLUGIN([id3tag])
3003 dnl avcodec decoder/encoder plugin
3006 if test "${with_ffmpeg_tree}"
3008 AC_MSG_WARN([--with-ffmpeg-tree is deprecated. Use PKG_CONFIG_PATH instead.])
3011 AC_ARG_ENABLE(avcodec,
3012 [ --enable-avcodec libavcodec codec (default enabled)])
3013 if test "${enable_avcodec}" != "no"
3015 PKG_CHECK_MODULES(AVCODEC,[libavcodec libavutil],
3018 CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
3019 CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
3020 AC_CHECK_HEADERS(libavcodec/avcodec.h ffmpeg/avcodec.h)
3021 AC_CHECK_HEADERS(libavutil/avutil.h ffmpeg/avutil.h)
3022 VLC_ADD_PLUGIN([avcodec])
3023 VLC_ADD_LIBS([avcodec],[$AVCODEC_LIBS])
3024 VLC_ADD_CFLAGS([avcodec],[$AVCODEC_CFLAGS])
3027 AC_MSG_ERROR([Could not find libavcodec or libavutil. Use --disable-avcodec to ignore this error.])
3032 dnl avformat demuxer/muxer plugin
3035 AC_ARG_ENABLE(avformat,
3036 [ --enable-avformat libavformat containers (default enabled)])
3037 if test "${enable_avformat}" != "no"
3039 PKG_CHECK_MODULES(AVFORMAT,[libavformat libavutil],
3042 CPPFLAGS="${CPPFLAGS} ${AVFORMAT_CFLAGS}"
3043 CFLAGS="${CFLAGS} ${AVFORMAT_CFLAGS}"
3044 AC_CHECK_HEADERS(libavformat/avformat.h ffmpeg/avformat.h)
3045 AC_CHECK_HEADERS(libavutil/avutil.h ffmpeg/avutil.h)
3046 VLC_ADD_PLUGIN([avformat])
3047 VLC_ADD_LIBS([avformat],[$AVFORMAT_LIBS])
3048 VLC_ADD_CFLAGS([avformat],[$AVFORMAT_CFLAGS])
3051 AC_MSG_ERROR([Could not find libavformat or libavutil. Use --disable-avformat to ignore this error.])
3056 dnl swscale image scaling and conversion plugin
3059 AC_ARG_ENABLE(swscale,
3060 AS_HELP_STRING([--enable-swscale],[libswscale image scaling and conversion
3061 (default enabled)]))
3062 if test "${enable_swscale}" != "no"
3064 PKG_CHECK_MODULES(SWSCALE,[libswscale],
3067 CPPFLAGS="${CPPFLAGS} ${SWSCALE_CFLAGS}"
3068 CFLAGS="${CFLAGS} ${SWSCALE_CFLAGS}"
3069 AC_CHECK_HEADERS(libswscale/swscale.h ffmpeg/swscale.h)
3070 VLC_ADD_PLUGIN([swscale])
3071 VLC_ADD_LIBS([swscale],[$SWSCALE_LIBS])
3072 VLC_ADD_CFLAGS([swscale],[$SWSCALE_CFLAGS])
3075 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.])
3083 AC_ARG_ENABLE(postproc,
3084 [ --enable-postproc libpostproc image post-processing (default enabled)])
3085 if test "${enable_postproc}" != "no"
3087 PKG_CHECK_MODULES(POSTPROC,[libpostproc libavutil],
3090 CPPFLAGS="${CPPFLAGS} ${POSTPROC_CFLAGS}"
3091 CFLAGS="${CFLAGS} ${POSTPROC_CFLAGS}"
3092 AC_CHECK_HEADERS(libpostproc/postproc.h postproc/postprocess.h)
3093 VLC_ADD_PLUGIN([postproc])
3094 VLC_ADD_LIBS([postproc],[$POSTPROC_LIBS])
3095 VLC_ADD_CFLAGS([postproc],[$POSTPROC_CFLAGS])
3098 AC_MSG_ERROR([Could not find libpostproc. Use --disable-postproc to ignore this error.])
3103 dnl faad decoder plugin
3106 [ --enable-faad faad codec (default disabled)])
3107 if test "${enable_faad}" = "yes"
3109 AC_ARG_WITH(faad-tree,
3110 [ --with-faad-tree=PATH faad tree for static linking])
3111 if test -n "${with_faad_tree}"
3113 AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
3114 real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
3115 if test -z "${real_faad_tree}"
3117 dnl The given directory can't be found
3119 AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
3121 if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
3123 dnl Use a custom faad
3124 AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
3125 VLC_ADD_PLUGIN([faad])
3126 VLC_ADD_LIBS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
3127 VLC_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
3129 dnl The given libfaad wasn't built
3131 AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
3134 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
3135 LDFLAGS="${LDFLAGS_save} ${LIBS_faad}"
3136 AC_CHECK_HEADERS(faad.h, ,
3137 [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ])
3138 AC_CHECK_LIB(faad, faacDecOpen, [
3139 VLC_ADD_PLUGIN([faad])
3140 VLC_ADD_LIBS([faad],[-lfaad]) ],
3141 AC_CHECK_LIB(faad, NeAACDecOpen, [
3142 VLC_ADD_PLUGIN([faad])
3143 VLC_ADD_LIBS([faad],[-lfaad]) ],
3144 [ AC_MSG_ERROR([Cannot find libfaad library...]) ]))
3145 LDFLAGS="${LDFLAGS_save}"
3146 CPPFLAGS="${CPPFLAGS_save}"
3151 dnl twolame encoder plugin
3153 AC_ARG_ENABLE(twolame,
3154 [ --enable-twolame twolame codec (default disabled)])
3155 if test "${enable_twolame}" = "yes"
3157 AC_ARG_WITH(twolame-tree,
3158 [ --with-twolame-tree=PATH twolame tree for static linking])
3159 if test -n "${with_twolame_tree}"
3161 AC_MSG_CHECKING(for libtwolame.a in ${with_twolame_tree})
3162 real_twolame_tree="`cd ${with_twolame_tree} 2>/dev/null && pwd`"
3163 if test -z "${real_twolame_tree}"
3165 dnl The given directory can't be found
3167 AC_MSG_ERROR([cannot cd to ${with_twolame_tree}])
3169 if test -f "${real_twolame_tree}/libtwolame/.libs/libtwolame.a"
3171 dnl Use a custom twolame
3172 AC_MSG_RESULT(${real_twolame_tree}/libtwolame/.libs/libtwolame.a)
3173 VLC_ADD_PLUGIN([twolame])
3174 VLC_ADD_LIBS([twolame],[${real_twolame_tree}/libtwolame/.libs/libtwolame.a])
3175 VLC_ADD_CPPFLAGS([twolame],[-I${real_twolame_tree}/libtwolame -DLIBTWOLAME_STATIC])
3177 dnl The given libtwolame wasn't built
3179 AC_MSG_ERROR([cannot find ${real_twolame_tree}/libtwolame/.libs/libtwolame.a, make sure you compiled libtwolame in ${with_twolame_tree}])
3182 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_twolame} -DLIBTWOLAME_STATIC"
3183 LDFLAGS="${LDFLAGS_save} ${LIBS_twolame}"
3184 AC_CHECK_HEADERS(twolame.h, ,
3185 [ AC_MSG_ERROR([Cannot find development header for libtwolame...]) ])
3186 AC_CHECK_LIB(twolame, twolame_init, [
3187 VLC_ADD_PLUGIN([twolame])
3188 VLC_ADD_CPPFLAGS([twolame],[-DLIBTWOLAME_STATIC])
3189 VLC_ADD_LIBS([twolame],[-ltwolame]) ],
3190 [ AC_MSG_ERROR([Cannot find libtwolame library...]) ])
3191 LDFLAGS="${LDFLAGS_save}"
3192 CPPFLAGS="${CPPFLAGS_save}"
3197 dnl QuickTime plugin
3199 AC_ARG_ENABLE(quicktime,
3200 [ --enable-quicktime QuickTime module (deprecated)])
3201 if test "${enable_quicktime}" = "yes"; then
3202 if test "${SYS}" = "mingw32"; then
3203 VLC_ADD_PLUGIN([quicktime])
3205 AC_CHECK_HEADERS(QuickTime/QuickTime.h,
3206 [ VLC_ADD_PLUGIN([quicktime])
3207 VLC_ADD_LDFLAGS([quicktime],[-Wl,-framework,QuickTime,-framework,Carbon])
3208 ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
3216 [ --enable-real Real media module (default disabled)])
3217 if test "${enable_real}" = "yes"; then
3218 VLC_ADD_PLUGIN([realaudio])
3219 VLC_ADD_PLUGIN([realvideo])
3223 dnl Real RTSP plugin
3225 AC_ARG_ENABLE(realrtsp,
3226 [ --enable-realrtsp Real RTSP module (default disabled)])
3227 if test "${enable_realrtsp}" = "yes"; then
3228 VLC_ADD_PLUGIN([access_realrtsp])
3231 AC_ARG_ENABLE(libsysfs,
3232 [ --enable-libsysfs Get user key from firewire connected iPod via libsysfs (default enabled)])
3234 AS_IF([test "${enable_libsysfs}" != "no"],[
3235 AC_CHECK_HEADERS(sysfs/libsysfs.h, [
3236 VLC_ADD_LIBS([mp4 mkv],[-lsysfs])
3243 AC_ARG_ENABLE(libtar,
3244 [ --enable-libtar libtar support for skins2 (default enabled)])
3246 AS_IF([test "${enable_libtar}" != "no"],[
3247 AC_CHECK_HEADERS(libtar.h, [
3248 VLC_ADD_LIBS([skins2],[-ltar])
3253 dnl A52/AC3 decoder plugin
3256 [ --enable-a52 A/52 support with liba52 (default enabled)])
3257 if test "${enable_a52}" != "no"
3260 [ --with-a52=PATH a52 headers and libraries])
3261 AC_ARG_WITH(a52-tree,
3262 [ --with-a52-tree=PATH a52dec tree for static linking ],[],[])
3263 if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
3265 real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
3266 if test -z "${real_a52_tree}"
3268 dnl The given directory can't be found
3270 AC_MSG_ERROR([${with_a52_tree} directory doesn't exist])
3272 dnl Use a custom a52dec
3273 AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
3274 if test -f ${real_a52_tree}/include/a52.h
3277 VLC_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
3278 VLC_ADD_LIBS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
3279 LDFLAGS="${LDFLAGS_save} ${LIBS_a52tofloat32}"
3280 AC_CHECK_LIB(a52, a52_free, [
3281 VLC_ADD_PLUGIN([a52tofloat32])
3282 VLC_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
3283 VLC_ADD_LIBS([a52tofloat32],[-la52])
3285 if test -f ${real_a52_tree}/liba52/.libs/liba52.a
3287 AC_MSG_ERROR([make sure you have at least a52dec-0.7.3 ($real_a52_tree)])
3289 AC_MSG_ERROR([the specified tree hasn't been compiled])
3292 LDFLAGS="${LDFLAGS_save}"
3295 AC_MSG_ERROR([the specified tree doesn't have a52.h])
3298 if test -z "${with_a52}"
3303 LDFLAGS_test="-L${with_a52}/lib"
3304 CPPFLAGS_test="-I${with_a52}/include"
3306 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
3307 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LIBS_a52tofloat32}"
3308 AC_CHECK_HEADERS(a52dec/a52.h, [
3309 AC_CHECK_LIB(a52, a52_free, [
3310 VLC_ADD_PLUGIN([a52tofloat32])
3311 VLC_ADD_LIBS([a52tofloat32],[${LDFLAGS_test} -la52])
3312 VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
3314 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.])
3317 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.])
3319 CPPFLAGS="${CPPFLAGS_save}"
3320 LDFLAGS="${LDFLAGS_save}"
3324 AC_ARG_WITH(a52-fixed,
3325 [ --with-a52-fixed specify if liba52 has been compiled with fixed point support],
3327 VLC_ADD_CPPFLAGS([a52tofloat32],[-DLIBA52_FIXED]) ])
3330 dnl DTS Coherent Acoustics decoder plugin
3332 AS_IF([test "x${enable_dts}" != "x"], [
3333 AC_MSG_ERROR([--enable-dts is obsolete. Please use libdca and --enable-dca.])
3335 AS_IF([test "x${with_dts_tree}" != "x"], [
3336 AC_MSG_ERROR([--with-dts-tree is obsolete. Please use libdca and --with-dca-tree.])
3340 AS_HELP_STRING([--enable-dca],[DTS Coherent Acoustics support with libdca
3341 (default enabled)]))
3342 AS_IF([test "${enable_dca}" != "no"], [
3343 AC_ARG_WITH(dca-tree,
3344 [ --with-dca-tree=PATH libdca tree for static linking],,
3345 [with_dca_tree="no"])
3346 AS_IF([test "${with_dca_tree}" != "no"], [
3347 real_dca_tree="`cd ${with_dca_tree} 2>/dev/null && pwd`"
3348 AS_IF([test -z "${real_dca_tree}"], [
3349 dnl The given directory can't be found
3351 AC_MSG_ERROR([${with_dca_tree} directory doesn't exist])
3353 dnl Use a custom libdca
3354 AC_MSG_CHECKING(for libdca in ${real_dca_tree})
3355 AS_IF([test -f "${real_dca_tree}/libdca/.libs/libdca.a"], [
3357 VLC_ADD_LIBS([dtstofloat32],[${real_dca_tree}/libdca/.libs/libdca.a])
3358 AS_IF([test -f "${real_dca_tree}/include/dca.h"], [
3359 VLC_ADD_CPPFLAGS([dtstofloat32],[-I${real_dca_tree}/include])
3361 VLC_ADD_CPPFLAGS([dtstofloat32],[-I${real_dca_tree}/../include])
3365 AC_MSG_ERROR([the specified tree doesn't have libdca/.libs/libdca.a])
3368 PKG_CHECK_MODULES([DCA], [libdca >= 0.0.5], [
3369 VLC_ADD_PLUGIN([dtstofloat32])
3370 VLC_ADD_CPPFLAGS([dtstofloat32], [${DCA_CFLAGS}])
3371 VLC_ADD_LIBS([dtstofloat32], [${DCA_LIBS}])
3373 AS_IF([test "x${enable_dca}" != "x"], [
3374 AC_MSG_ERROR([${DCA_PKG_ERRORS}])
3384 [ --enable-flac libflac decoder/encoder support (default disabled)])
3385 if test "${enable_flac}" = "yes"
3387 AC_ARG_WITH(flac-tree,
3388 [ --with-flac-tree=PATH flac tree for static linking])
3389 if test -n "${with_flac_tree}"
3391 AC_MSG_CHECKING(for libFLAC.a in ${with_flac_tree})
3392 real_flac_tree="`cd ${with_flac_tree} 2>/dev/null && pwd`"
3393 if test -z "${real_flac_tree}"
3395 dnl The given directory can't be found
3397 AC_MSG_ERROR([cannot cd to ${with_flac_tree}])
3399 if test -f "${real_flac_tree}/src/libFLAC/.libs/libFLAC.a"
3401 dnl Use a custom flac
3402 AC_MSG_RESULT(${real_flac_tree}/src/libFLAC/.libs/libFLAC.a)
3403 VLC_ADD_LIBS([flac],[${real_flac_tree}/src/libFLAC/.libs/libFLAC.a])
3404 VLC_ADD_CFLAGS([flac],[-I${real_flac_tree}/include])
3405 AC_DEFINE(HAVE_FLAC_STREAM_DECODER_H, 1, [Define if you have FLAC])
3407 dnl The given flac wasn't built
3409 AC_MSG_ERROR([cannot find ${real_flac_tree}/src/libFLAC/.libs/libFLAC.a, make sure you compiled flac in ${with_flac_tree}])
3412 AC_CHECK_HEADERS(FLAC/stream_decoder.h, [
3413 VLC_ADD_LIBS([flac],[-lFLAC -logg])
3421 AC_ARG_ENABLE(libmpeg2,
3422 [ --enable-libmpeg2 libmpeg2 decoder support (default enabled)])
3423 if test "${enable_libmpeg2}" != "no"
3425 AC_ARG_WITH(libmpeg2-tree,
3426 [ --with-libmpeg2-tree=PATH libmpeg2 tree for static linking])
3427 AS_IF([test -n "${with_libmpeg2_tree}"],[
3428 AC_MSG_CHECKING(for libmpeg2.a in ${with_libmpeg2_tree})
3429 real_libmpeg2_tree="`cd ${with_libmpeg2_tree} 2>/dev/null && pwd`"
3430 if test -z "${real_libmpeg2_tree}"
3432 dnl The given directory can't be found
3434 AC_MSG_ERROR([cannot cd to ${with_libmpeg2_tree}])
3436 if test -f "${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a"
3438 dnl Use a custom libmpeg2
3439 AC_MSG_RESULT(${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a)
3440 VLC_ADD_PLUGIN([libmpeg2])
3441 VLC_ADD_LIBS([libmpeg2],[-L${real_libmpeg2_tree}/libmpeg2/.libs -lmpeg2])
3442 VLC_ADD_CFLAGS([libmpeg2],[-I${real_libmpeg2_tree}/include])
3444 dnl The given libmpeg2 wasn't built
3446 AC_MSG_ERROR([cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}])
3449 PKG_CHECK_MODULES(LIBMPEG2,[libmpeg2 > 0.3.2],[
3450 VLC_ADD_PLUGIN([libmpeg2])
3451 VLC_ADD_LIBS([libmpeg2], $LIBMPEG2_LIBS)
3452 VLC_ADD_CFLAGS([libmpeg2], $LIBMPEG2_CFLAGS)
3454 AC_MSG_WARN([Could not find libmpeg2 on your system: you may get it from http://libmpeg2.sf.net/ . Alternatively you can use --disable-libmpeg2 to disable the libmpeg2 plugin.]))
3461 AC_ARG_ENABLE(vorbis,
3462 [ --enable-vorbis Vorbis decoder support (default enabled)])
3463 if test "${enable_vorbis}" != "no"
3465 AC_ARG_WITH(vorbis-tree,
3466 [ --with-vorbis-tree=PATH vorbis tree for static linking])
3467 if test -n "${with_vorbis_tree}"
3469 AC_MSG_CHECKING(for libvorbis.a in ${with_vorbis_tree})
3470 real_vorbis_tree="`cd ${with_vorbis_tree} 2>/dev/null && pwd`"
3471 if test -z "${real_vorbis_tree}"
3473 dnl The given directory can't be found
3475 AC_MSG_ERROR([cannot cd to ${with_vorbis_tree}])
3477 if test -f "${real_vorbis_tree}/lib/.libs/libvorbis.a"
3479 dnl Use a custom vorbis
3480 AC_MSG_RESULT(${real_vorbis_tree}/lib/.libs/libvorbis.a)
3481 VLC_ADD_PLUGIN([vorbis])
3482 VLC_ADD_LIBS([vorbis],[${real_vorbis_tree}/lib/.libs/libvorbis.a ${real_vorbis_tree}/lib/.libs/libvorbisenc.a])
3483 VLC_ADD_CFLAGS([vorbis],[-I${real_vorbis_tree}/include])
3485 dnl The given vorbis wasn't built
3487 AC_MSG_ERROR([cannot find ${real_vorbis_tree}/lib/.libs/libvorbis.a, make sure you compiled vorbis in ${with_vorbis_tree}])
3490 AC_CHECK_HEADERS(vorbis/codec.h, [
3491 VLC_ADD_PLUGIN([vorbis])
3492 VLC_ADD_LIBS([vorbis],[-lvorbis -logg -lm]) ],[])
3494 AC_CHECK_HEADERS(vorbis/vorbisenc.h, [
3495 VLC_ADD_LIBS([vorbis],[-lvorbisenc -lm]) ],[])
3502 AC_ARG_ENABLE(tremor,
3503 [ --enable-tremor Tremor decoder support (default disabled)])
3504 if test "${enable_tremor}" = "yes"
3506 AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
3507 VLC_ADD_PLUGIN([tremor])
3508 VLC_ADD_LIBS([tremor],[-lvorbisidec -logg])
3515 AC_ARG_ENABLE(speex,
3516 [ --enable-speex Speex decoder support (default enabled)])
3517 if test "${enable_speex}" != "no"
3519 AC_ARG_WITH(speex-tree,
3520 [ --with-speex-tree=PATH speex tree for static linking])
3521 if test -n "${with_speex_tree}"
3523 AC_MSG_CHECKING(for libspeex.a in ${with_speex_tree})
3524 real_speex_tree="`cd ${with_speex_tree} 2>/dev/null && pwd`"
3525 if test -z "${real_speex_tree}"
3527 dnl The given directory can't be found
3529 AC_MSG_ERROR([cannot cd to ${with_speex_tree}])
3531 if test -f "${real_speex_tree}/libspeex/.libs/libspeex.a"
3533 dnl Use a custom speex
3534 AC_MSG_RESULT(${real_speex_tree}/libspeex/.libs/libspeex.a)
3535 VLC_ADD_PLUGIN([speex])
3536 VLC_ADD_LIBS([speex],[${real_speex_tree}/libspeex/.libs/libspeex.a])
3537 VLC_ADD_CFLAGS([speex],[-I${real_speex_tree}/include])
3539 dnl The given speex wasn't built
3541 AC_MSG_ERROR([cannot find ${real_speex_tree}/libspeex/.libs/libspeex.a, make sure you compiled speex in ${with_speex_tree}])
3544 AC_CHECK_HEADERS(speex/speex.h, [
3545 LDFLAGS="${LDFLAGS_save} ${LIBS_speex}"
3546 AC_CHECK_LIB(speex, speex_decode_int, [
3547 VLC_ADD_PLUGIN([speex])
3548 VLC_ADD_LIBS([speex],[-lspeex]) ],
3549 [ AC_MSG_RESULT([no])
3550 AC_MSG_WARN([Your libspeex is too old, please get the development
3552 LDFLAGS="${LDFLAGS_save}"
3558 dnl tarkin decoder plugin
3560 AC_ARG_ENABLE(tarkin,
3561 [ --enable-tarkin experimental tarkin codec (default disabled)])
3562 if test "${enable_tarkin}" = "yes"
3564 AC_ARG_WITH(tarkin-tree,
3565 [ --with-tarkin-tree=PATH tarkin tree for static linking])
3566 if test -n "${with_tarkin_tree}"
3568 AC_MSG_CHECKING(for tarkin.o in ${with_tarkin_tree})
3569 real_tarkin_tree="`cd ${with_tarkin_tree} 2>/dev/null && pwd`"
3570 if test -f "${real_tarkin_tree}/tarkin.o"
3572 VLC_ADD_PLUGIN([tarkin])
3573 VLC_ADD_CPPFLAGS([tarkin],[-I${real_tarkin_tree}])
3574 VLC_ADD_LIBS([tarkin],[${real_tarkin_tree}/mem.o ${real_tarkin_tree}/pnm.o ${real_tarkin_tree}/wavelet.o ${real_tarkin_tree}/wavelet_xform.o ${real_tarkin_tree}/wavelet_coeff.o ${real_tarkin_tree}/yuv.o ${real_tarkin_tree}/tarkin.o ${real_tarkin_tree}/info.o -logg])
3577 dnl The given tarkin tree wasn't built
3579 AC_MSG_ERROR([cannot find ${real_tarkin_tree}/tarkin.o,
3580 make sure you compiled tarkin in ${with_tarkin_tree}])
3586 dnl theora decoder plugin
3588 AC_ARG_ENABLE(theora,
3589 [ --enable-theora experimental theora codec (default disabled)])
3590 if test "${enable_theora}" = "yes"
3592 AC_CHECK_HEADERS(theora/theora.h, [
3593 AC_CHECK_LIB(theora, theora_granule_time, [
3594 VLC_ADD_PLUGIN([theora])
3595 theora_libs="-ltheora -logg"
3596 VLC_ADD_LIBS([theora],[${theora_libs}]) ],[
3597 AC_MSG_ERROR([libtheora doesn't appear to be installed on your system.
3598 You also need to check that you have a libogg posterior to the 1.0 release.])],
3604 dnl dirac decoder plugin
3606 AC_ARG_ENABLE(dirac,
3607 [ --enable-dirac experimental dirac codec (default disabled)])
3608 if test "${enable_dirac}" = "yes"; then
3609 PKG_CHECK_MODULES(DIRAC,[dirac >= 0.10.0], [
3610 VLC_ADD_PLUGIN([dirac])
3611 VLC_ADD_CFLAGS([dirac],[$DIRAC_CFLAGS])
3612 VLC_ADD_LIBS([dirac],[$DIRAC_LIBS -lstdc++]) ],[
3613 AC_MSG_ERROR([libdirac >= 0.10.0 doesn't appear to be installed on your system.])
3618 dnl schroedinger decoder plugin (for dirac format video)
3620 AC_ARG_ENABLE(schroedinger,
3621 [ --disable-schroedinger high performance dirac codec (default enabled)])
3622 if test "${enable_schroedinger}" != "no"; then
3623 PKG_CHECK_MODULES(SCHROEDINGER,[schroedinger-1.0 >= 1.0.6], [
3624 VLC_ADD_PLUGIN([schroedinger])
3625 VLC_ADD_CFLAGS([schroedinger],[$SCHROEDINGER_CFLAGS])
3626 VLC_ADD_LIBS([schroedinger],[$SCHROEDINGER_LIBS]) ], [
3627 AS_IF([test "x${enable_schroedinger}" != "x"], [
3628 AC_MSG_ERROR([${SCHROEDINGER_PKG_ERRORS}])
3634 dnl PNG decoder module
3637 [ --enable-png PNG support (default enabled)])
3638 if test "${enable_png}" != "no"; then
3639 AC_CHECK_HEADERS(png.h, [
3640 LDFLAGS="${LDFLAGS_save} -lz"
3641 AC_CHECK_LIB(png, png_set_rows, [
3642 VLC_ADD_LIBS([png],[-lpng -lz])
3643 VLC_ADD_PLUGIN([png])
3644 VLC_ADD_PLUGIN([osdmenu])
3645 VLC_ADD_PLUGIN([osd_parser])
3646 AC_DEFINE(HAVE_LIBPNG, 1, [Define if you have the PNG library: libpng])],
3648 LDFLAGS="${LDFLAGS_save}"
3651 AM_CONDITIONAL(BUILD_OSDMENU, [test "${enable_png}" != "no"])
3654 dnl H264 encoder plugin (using libx264)
3657 [ --enable-x264 H264 encoding support with libx264 (default enabled)])
3658 if test "${enable_x264}" != "no"; then
3659 AC_ARG_WITH(x264-tree,
3660 [ --with-x264-tree=PATH x264 tree for static linking ],[],[])
3661 if test "${with_x264_tree}" != "no" -a -n "${with_x264_tree}"
3663 real_x264_tree="`cd ${with_x264_tree} 2>/dev/null && pwd`"
3664 if test -z "${real_x264_tree}"
3666 dnl The given directory can't be found
3668 AC_MSG_ERROR([${with_x264_tree} directory doesn't exist])
3670 dnl Use a custom libx264
3671 AC_MSG_CHECKING(for x264.h in ${real_x264_tree})
3672 if test -f ${real_x264_tree}/x264.h
3675 VLC_ADD_CPPFLAGS([x264],[-I${real_x264_tree}])
3676 VLC_ADD_LIBS([x264],[-L${real_x264_tree}])
3677 PKG_CHECK_MODULES(X264,x264, [
3678 VLC_ADD_PLUGIN([x264])
3679 VLC_ADD_LDFLAGS([x264],[${X264_LIBS}])
3680 VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
3681 if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
3682 VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
3685 AC_MSG_ERROR([the specified tree hasn't been compiled])
3687 LDFLAGS="${LDFLAGS_save}"
3690 AC_MSG_ERROR([the specified tree doesn't have x264.h])
3693 PKG_CHECK_MODULES(X264,x264, [
3694 VLC_ADD_PLUGIN([x264])
3695 VLC_ADD_LDFLAGS([x264],[${X264_LIBS}])
3697 AC_CACHE_CHECK([if linker supports -Bsymbolic],
3698 [ac_cv_ld_bsymbolic],
3699 [LDFLAGS="${LDFLAGS_vlc} -Wl,-Bsymbolic"
3700 AC_TRY_LINK([],,ac_cv_ld_bsymbolic=yes,ac_cv_ld_bsymbolic=no)
3701 LDFLAGS="${LDFLAGS_save}"
3703 AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
3704 VLC_ADD_LDFLAGS([x264],[-Wl,-Bsymbolic])
3707 VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
3708 if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
3709 VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
3712 if test "${enable_x264}" = "yes"; then
3713 AC_MSG_ERROR([Could not find libx264 on your system: you may get it from http://www.videolan.org/x264.html])
3716 LDFLAGS="${LDFLAGS_save}"
3721 dnl libfluidsynth (MIDI synthetizer) plugin
3723 AC_ARG_ENABLE(fluidsynth,
3724 [ --enable-fluidsynth MIDI synthesisr with libfluidsynth (default enabled)])
3725 AS_IF([test "x${enable_fluidsynth}" != "xno"], [
3726 PKG_CHECK_MODULES(FLUIDSYNTH, fluidsynth, [
3727 VLC_ADD_PLUGIN(fluidsynth)
3728 VLC_ADD_CFLAGS(fluidsynth, [${FLUIDSYNTH_CFLAGS}])
3729 VLC_ADD_LIBS(fluidsynth, [${FLUIDSYNTH_LIBS}])
3731 AS_IF([test "x${enable_fluidsynth}" != "x"], [
3732 AC_MSG_ERROR([${FLUIDSYNTH_PKG_ERRORS}])
3738 dnl Teletext Modules
3739 dnl vbi decoder plugin (using libzbvi)
3744 AS_HELP_STRING([--enable-zvbi],[VBI (inc. Teletext) decoding support with
3745 libzvbi (default enabled)]))
3747 AS_HELP_STRING([--enable-telx],[Teletext decoding module (conflicting with
3748 zvbi) (default enabled if zvbi is absent)]))
3750 AS_IF( [test "${enable_zvbi}" != "no"],[
3751 PKG_CHECK_MODULES(ZVBI,
3754 VLC_ADD_LIBS([zvbi],[$ZVBI_LIBS])
3755 VLC_ADD_CFLAGS([zvbi],[$ZVBI_CFLAGS])
3756 VLC_ADD_PLUGIN([zvbi])
3757 AC_DEFINE(ZVBI_COMPILED, 1, [Define if the zvbi module is built])
3758 AS_IF( [test "${enable_telx}" = "yes"],[
3759 AC_MSG_WARN([The zvbi and telx modules are uncompatibles.