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