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