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