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