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