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