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