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