]> git.sesse.net Git - vlc/blob - configure.ac
flac: encoder: remove unused p_sys member.
[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  Special arch tuning
1486 dnl
1487 AC_ARG_WITH(tuning,
1488   [AS_HELP_STRING([--with-tuning=ARCH],
1489     [tune compilation for an architecture (default varies)])])
1490 if test -n "${with_tuning}"; then
1491     if test "${with_tuning}" != "no"; then
1492         CFLAGS_TUNING="-mtune=${with_tuning}"
1493     fi
1494 else
1495     if test "${SYS}" = "darwin" -a "${host_cpu}" = "i686"; then
1496         CFLAGS_TUNING="-march=prescott -mtune=generic"
1497     elif test "${SYS}" = "darwin" -a "${host_cpu}" = "x86_64"; then
1498         CFLAGS_TUNING="-march=core2 -mtune=core2"
1499     elif test "${host_cpu}" = "i686" -o "${host_cpu}" = "i586" -o "${host_cpu}" = "i486" -o "${host_cpu}" = "i386"; then
1500         CFLAGS_TUNING="-mtune=pentium2"
1501     elif test "${host_cpu}" = "x86_64"; then
1502         CFLAGS_TUNING="-mtune=athlon64"
1503     elif test "${host_cpu}" = "powerpc"; then
1504         CFLAGS_TUNING="-mtune=G4";
1505     fi
1506 fi
1507
1508 dnl NOTE: this can't be cached cleanly
1509 AS_IF([test -n "${CFLAGS_TUNING}"], [
1510   VLC_SAVE_FLAGS
1511   CFLAGS="${CFLAGS} ${CFLAGS_TUNING}"
1512   AC_MSG_CHECKING([whether $CC accepts ${CFLAGS_TUNING}])
1513   AC_COMPILE_IFELSE([AC_LANG_SOURCE([])], [
1514     AC_MSG_RESULT([yes])
1515   ], [
1516     VLC_RESTORE_FLAGS
1517     AC_MSG_RESULT([no])
1518     AS_IF([test "${with_tuning}"], [AC_MSG_ERROR([requested tuning not supported])])
1519   ])
1520 ])
1521
1522 dnl
1523 dnl  Memory usage
1524 dnl
1525 AC_ARG_ENABLE(optimize-memory,
1526   [AS_HELP_STRING([--enable-optimize-memory],
1527     [optimize memory usage over performance])])
1528 if test "${enable_optimize_memory}" = "yes"; then
1529   AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1530 fi
1531
1532 dnl
1533 dnl Allow running as root (useful for people running on embedded platforms)
1534 dnl
1535 AC_ARG_ENABLE(run-as-root,
1536   [AS_HELP_STRING([--enable-run-as-root],
1537     [allow running VLC as root (default disabled)])])
1538 AS_IF([test "${enable_run_as_root}" = "yes"],[
1539     AC_DEFINE(ALLOW_RUN_AS_ROOT, 1,
1540               [Define to 1 to allow running VLC as root (uid 0).])
1541 ])
1542
1543 dnl
1544 dnl Stream output
1545 dnl
1546 AC_ARG_ENABLE(sout,
1547   [AS_HELP_STRING([--disable-sout],
1548     [disable streaming output (default enabled)])])
1549 AS_IF([test "${enable_sout}" != "no"], [
1550   AC_DEFINE(ENABLE_SOUT, 1, [Define to 1 for stream output support.])
1551 ])
1552 AM_CONDITIONAL(ENABLE_SOUT, [test "${enable_sout}" != "no"])
1553
1554 dnl Lua modules
1555 AC_ARG_ENABLE(lua,
1556   [AS_HELP_STRING([--disable-lua],
1557     [disable LUA scripting support (default enabled)])])
1558 if test "${enable_lua}" != "no"
1559 then
1560   PKG_CHECK_MODULES(LUA, lua5.1,
1561     [ have_lua=yes ],
1562     [
1563     AC_MSG_WARN([${LUA_PKG_ERRORS}, trying lua >= 5.1 instead])
1564     PKG_CHECK_MODULES(LUA, lua >= 5.1,
1565       [ have_lua=yes ],
1566       [
1567         AC_MSG_WARN([${LUA_PKG_ERRORS}, trying manual detection instead])
1568         have_lua=yes
1569         AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
1570           [],
1571           [ have_lua=no ] )
1572         AC_CHECK_LIB(  lua5.1 , luaL_newstate,
1573           [LUA_LIBS="-llua5.1"],
1574           AC_CHECK_LIB( lua51 , luaL_newstate,
1575             [LUA_LIBS="-llua51"],
1576             AC_CHECK_LIB( lua , luaL_newstate,
1577               [LUA_LIBS="-llua"],
1578               [ have_lua=no
1579               ], [-lm])
1580           )
1581         )
1582       ])
1583     ])
1584   if test "x${have_lua}" = "xyes" ;  then
1585      VLC_ADD_LIBS([lua],[$LUA_LIBS])
1586      VLC_ADD_CFLAGS([lua],[$LUA_CFLAGS])
1587   else
1588       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.])
1589   fi
1590   AC_ARG_VAR([LUAC], [LUA byte compiler])
1591   AC_PATH_PROGS(LUAC,[${LUAC} luac], [false])
1592   AS_IF([test "${LUAC}" = "false"], [
1593     AC_MSG_ERROR([Could not find the LUA byte compiler.])
1594   ])
1595 fi
1596 AM_CONDITIONAL(BUILD_LUA, [test "${have_lua}" = "yes"])
1597
1598
1599 dnl
1600 dnl HTTP daemon
1601 dnl
1602 AC_ARG_ENABLE(httpd,
1603   [AS_HELP_STRING([--disable-httpd],
1604     [disable the built-in HTTP server (default enabled)])])
1605 if test "${enable_httpd}" != "no"
1606 then
1607   AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP daemon support)
1608 fi
1609 AM_CONDITIONAL(BUILD_HTTPD, [test "${enable_httpd}" != "no"])
1610
1611
1612 dnl
1613 dnl VideoLAN manager
1614 dnl
1615 AC_ARG_ENABLE(vlm,
1616   [AS_HELP_STRING([--disable-vlm],
1617     [disable the stream manager (default enabled)])],,
1618   [enable_vlm="${enable_sout}"])
1619 AS_IF([test "${enable_vlm}" != "no"], [
1620   AS_IF([test "${enable_sout}" = "no"], [
1621     AC_MSG_ERROR([VLM requires the stream output. Do not use --disable-sout.])
1622   ])
1623   AC_DEFINE(ENABLE_VLM, 1, [Define if you want the VideoLAN manager support])
1624 ])
1625 AM_CONDITIONAL([ENABLE_VLM], [test "${enable_vlm}" != "no"])
1626
1627
1628 dnl
1629 dnl  Input plugins
1630 dnl
1631
1632 EXTEND_HELP_STRING([Input plugins:])
1633
1634 dnl
1635 dnl libproxy support
1636 dnl
1637 AC_ARG_ENABLE(libproxy,
1638   [AS_HELP_STRING([--enable-libproxy],[support libproxy (default auto)])])
1639 AS_IF([test "${enable_libproxy}" != "no"], [
1640   PKG_CHECK_MODULES(LIBPROXY, libproxy-1.0, [
1641     AC_DEFINE(HAVE_LIBPROXY, 1, [Define if libproxy is available])
1642     VLC_ADD_CFLAGS([access_http],[$LIBPROXY_CFLAGS])
1643     VLC_ADD_LIBS([access_http],[$LIBPROXY_LIBS])
1644   ], [
1645     AS_IF([test -n "${enable_libproxy}"], [
1646       AC_MSG_ERROR([${LIBPROXY_PKG_ERRORS}.])
1647     ])
1648   ])
1649 ])
1650
1651 dnl
1652 dnl  live555 input
1653 dnl
1654 AC_ARG_ENABLE(live555,
1655   [AS_HELP_STRING([--enable-live555],
1656     [enable RTSP input through live555 (default enabled)])])
1657 AS_IF([test "${enable_live555}" != "no" -a -n "${CXX}"], [
1658   AC_LANG_PUSH(C++)
1659   VLC_SAVE_FLAGS
1660   AS_IF([test -z "${CONTRIB_DIR}"], [
1661     CPPFLAGS_live555="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
1662   ], [
1663     CPPFLAGS_live555="-I${CONTRIB_DIR}/include/liveMedia -I${CONTRIB_DIR}/include/groupsock -I${CONTRIB_DIR}/include/BasicUsageEnvironment -I${CONTRIB_DIR}/include/UsageEnvironment"
1664   ])
1665   AS_IF([test "${SYS}" = "solaris"], [
1666     CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS"
1667   ])
1668   CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}"
1669
1670   AC_CACHE_CHECK([for live555 version 1324598400 or later], [ac_cv_live555], [
1671     AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1672 [#include <liveMedia_version.hh>
1673 #if !defined (LIVEMEDIA_LIBRARY_VERSION_INT) || (LIVEMEDIA_LIBRARY_VERSION_INT < 1324598400)
1674 # error BOOM
1675 #endif]])
1676     ], [
1677       ac_cv_live555="yes"
1678     ], [
1679       ac_cv_live555="no"
1680     ])
1681   ])
1682   AS_IF([test "$ac_cv_live555" = "no"], [
1683     AC_MSG_WARN([liveMedia is missing or its installed version is too old:
1684 Version 2011.12.23 or later is required to proceed.
1685 You can get an updated one from http://www.live555.com/liveMedia .])
1686     AS_IF([test -n "${enable_live555}"], [
1687       AC_MSG_ERROR([Update live555 or pass --disable-live555 to disable RTSP input support.])
1688     ])
1689   ], [
1690     other_libs="-lgroupsock -lBasicUsageEnvironment -lUsageEnvironment"
1691     other_libs_pic="-lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic"
1692     AS_IF([test "${SYS}" = "mingw32"], [
1693       # add ws2_32 for closesocket, select, recv
1694       other_libs="$other_libs -lws2_32"
1695     ], [test "${SYS}" = "mingwce"], [
1696       # add ws2 for closesocket, select, recv
1697       other_libs="$other_libs -lws2"
1698     ])
1699
1700     dnl We need to check for pic because live555 don't provide shared libs
1701     dnl and we want to build a plugins so we need -fPIC on some arch.
1702     VLC_ADD_CXXFLAGS([live555], [${CPPFLAGS_live555}])
1703     AC_CHECK_LIB(liveMedia_pic, main, [
1704       VLC_ADD_PLUGIN([live555])
1705       VLC_ADD_LIBS([live555], [-lliveMedia_pic ${other_libs_pic}])
1706     ],[
1707       AC_CHECK_LIB(liveMedia, main, [
1708         VLC_ADD_PLUGIN([live555])
1709         VLC_ADD_LIBS([live555], [-lliveMedia ${other_libs}])
1710       ],[],[${other_libs}])],[${other_libs_pic}])
1711   ])
1712   VLC_RESTORE_FLAGS
1713   AC_LANG_POP(C++)
1714 ])
1715
1716 dnl
1717 dnl - special access module for dc1394 input
1718 dnl - dv module: digital video module check for libraw1394
1719 dnl - linsys modules: access module check for libzvbi
1720 dnl
1721 PKG_ENABLE_MODULES_VLC([DC1394], [], [libraw1394 >= 2.0.1 libdc1394-2 >= 2.1.0], [dc1394 access module], [auto])
1722 PKG_ENABLE_MODULES_VLC([DV], [access_dv], [libraw1394 >= 2.0.1 libavc1394 >= 0.5.3], [DV input module], [auto])
1723
1724 AC_ARG_ENABLE(linsys,
1725   [AS_HELP_STRING([--enable-linsys],
1726     [Linux Linear Systems Ltd. SDI and HD-SDI input cards (default enabled)])])
1727 if test "$SYS" = "linux" -a "${enable_linsys}" != "no"; then
1728   VLC_ADD_PLUGIN([linsys_hdsdi])
1729   PKG_CHECK_MODULES(LINSYS_SDI, [zvbi-0.2 >= 0.2.28],
1730     [ VLC_ADD_LIBS([linsys_sdi],[$LINSYS_SDI_LIBS])
1731       VLC_ADD_CFLAGS([linsys_sdi],[$LINSYS_SDI_CFLAGS])
1732       VLC_ADD_PLUGIN([linsys_sdi]) ],
1733     [AC_MSG_WARN([${LINSYS_SDI_PKG_ERRORS}.])]
1734   )
1735 fi
1736
1737 dnl
1738 dnl dvdread module: check for libdvdread
1739 dnl
1740 PKG_ENABLE_MODULES_VLC([DVDREAD], [], [dvdread], [dvdread input module], [auto])
1741
1742 dnl
1743 dnl libdvdnav plugin
1744 dnl
1745 AC_ARG_ENABLE(dvdnav,
1746   [AS_HELP_STRING([--disable-dvdnav],
1747     [disable DVD navigation with libdvdnav (default auto)])])
1748 if test "${enable_dvdnav}" != "no"
1749 then
1750   PKG_CHECK_MODULES(DVDNAV, dvdnav, [
1751     VLC_ADD_PLUGIN([dvdnav])
1752     VLC_ADD_CFLAGS([dvdnav],[${DVDNAV_CFLAGS}])
1753     VLC_ADD_LIBS([dvdnav],[${DVDNAV_LIBS}])
1754     AC_CHECK_LIB(dvdnav, dvdnav_get_video_resolution,
1755       AC_DEFINE(HAVE_DVDNAV_GET_VIDEO_RESOLUTION, 1, [Define if you have dvdnav_get_video_resolution.]),
1756         [], [${LIBS_dvdnav}])
1757     AC_CHECK_LIB(dvdnav, dvdnav_describe_title_chapters,
1758       AC_DEFINE(HAVE_DVDNAV_DESCRIBE_TITLE_CHAPTERS, 1, [Define if you have dvdnav_describe_title_chapters.]),
1759         [], [${LIBS_dvdnav}])],
1760       [AC_MSG_WARN([${DVDNAV_PKG_ERRORS}.])])
1761 fi
1762
1763 dnl
1764 dnl  Windows DirectShow access module
1765 dnl
1766 AC_ARG_ENABLE(dshow,
1767   [AS_HELP_STRING([--disable-dshow],
1768     [support DirectShow (default auto)])])
1769 if test "${enable_dshow}" != "no"
1770 then
1771   if test "${SYS}" = "mingw32"
1772   then
1773     AC_LANG_PUSH(C++)
1774       AC_CHECK_HEADERS(dshow.h,
1775       [ VLC_ADD_PLUGIN([dshow])
1776         VLC_ADD_CXXFLAGS([dshow],[])
1777         VLC_ADD_LIBS([dshow],[-lole32 -loleaut32 -luuid -lstrmiids -lksuser])])
1778     AC_LANG_POP(C++)
1779   fi
1780 fi
1781
1782 dnl
1783 dnl  Blu-ray Disc Support with libbluray
1784 dnl
1785 PKG_ENABLE_MODULES_VLC([BLURAY], [libbluray], [libbluray >= 0.2.1], (libbluray for Blu-ray disc support ) )
1786
1787 dnl
1788 dnl  OpenCV wrapper and example filters
1789 dnl
1790 PKG_ENABLE_MODULES_VLC([OPENCV], [opencv_example opencv_wrapper], [opencv], (OpenCV (computer vision) filter), [off])
1791
1792
1793 dnl
1794 dnl  libsmbclient plugin
1795 dnl
1796 AC_ARG_ENABLE(smb,
1797   [AS_HELP_STRING([--disable-smb], [disable SMB/CIFS support (default auto)])])
1798 if test "${enable_smb}" != "no"; then
1799   AC_CHECK_HEADERS(libsmbclient.h,
1800     [ VLC_ADD_PLUGIN([access_smb])
1801       VLC_ADD_LIBS([access_smb],[-lsmbclient]) ],
1802     [ if test -n "${enable_smb}"; then
1803         AC_MSG_ERROR([cannot find libsmbclient headers])
1804      fi ])
1805 fi
1806
1807
1808 dnl
1809 dnl sftp access support
1810 dnl
1811 AC_ARG_ENABLE(sftp,
1812   [AS_HELP_STRING([--enable-sftp],
1813     [support SFTP file transfer via libssh2 (default disabled)])])
1814 if test "${enable_sftp}" = "yes"; then
1815   AC_CHECK_HEADERS(libssh2.h, [
1816     VLC_ADD_PLUGIN([access_sftp])
1817     VLC_ADD_LIBS([access_sftp], [-lssh2])
1818   ])
1819 fi
1820
1821 dnl
1822 dnl  Video4Linux 2
1823 dnl
1824 AC_ARG_ENABLE(v4l2, [AS_HELP_STRING([--disable-v4l2],
1825   [disable Video4Linux version 2 (default auto)])])
1826 AC_ARG_ENABLE(pvr, [AS_HELP_STRING([--enable-pvr],
1827   [support PVR V4L2 cards (default disabled)])])
1828 have_v4l2="no"
1829 AS_IF([test "$enable_v4l2" != "no"], [
1830   AC_CHECK_HEADERS([linux/videodev2.h sys/videoio.h], [
1831     have_v4l2="yes"
1832   ])
1833   AC_CHECK_DECLS([V4L2_CTRL_TYPE_BITMASK],,, [
1834 #ifdef HAVE_LINUX_VIDEODEV2_H
1835 # include <linux/videodev2.h>
1836 #endif
1837 #ifdef HAVE_SYS_VIDEOIO_H
1838 # include <sys/videoio.h>
1839 #endif
1840   ])
1841 ])
1842 AS_IF([test "$have_v4l2" = "yes"], [
1843   AS_IF([test "${enable_pvr}" = "yes"], [
1844     VLC_ADD_PLUGIN([pvr])
1845   ])
1846 ])
1847 AM_CONDITIONAL(HAVE_V4L2, [test "${have_v4l2}" != "no"])
1848
1849 dnl
1850 dnl special access module for Blackmagic SDI cards
1851 dnl
1852 AC_ARG_ENABLE(decklink,
1853   [AS_HELP_STRING([--disable-decklink],
1854     [disable Blackmagic DeckLink SDI input (default auto)])])
1855 AC_ARG_WITH(decklink_sdk,
1856   [AS_HELP_STRING[--with-decklink-sdk=DIR],
1857     [                        location of Blackmagic DeckLink SDI SDK])])
1858 if test "${enable_decklink}" != "no"
1859 then
1860   if test "${with_decklink_sdk}" != "no" -a -n "${with_decklink_sdk}"
1861   then
1862     VLC_ADD_CPPFLAGS([decklink],[-I${with_decklink_sdk}/include])
1863   fi
1864   VLC_SAVE_FLAGS
1865   CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_decklink}"
1866   AC_LANG_PUSH(C++)
1867   AC_CHECK_HEADERS(DeckLinkAPIDispatch.cpp, [
1868     VLC_ADD_PLUGIN([decklink])
1869   ],[AC_MSG_WARN(Blackmagic DeckLink SDI include files not found, decklink disabled)])
1870   AC_LANG_POP(C++)
1871   VLC_RESTORE_FLAGS
1872 fi
1873
1874
1875 dnl
1876 dnl  gnomeVFS access module
1877 dnl
1878 PKG_ENABLE_MODULES_VLC([GNOMEVFS], [access_gnomevfs], [gnome-vfs-2.0], [GnomeVFS access module], [auto])
1879
1880 dnl
1881 dnl  VCDX modules
1882 dnl
1883 AC_ARG_ENABLE(vcdx,
1884   [AS_HELP_STRING([--enable-vcdx],
1885     [navigate VCD with libvcdinfo (default disabled)])])
1886 if test "${enable_vcdx}" = "yes"
1887 then
1888     PKG_CHECK_MODULES(LIBCDIO, [libcdio >= 0.78.2 libiso9660 >= 0.72],
1889       [VLC_ADD_LIBS([vcdx],[$LIBCDIO_LIBS])
1890          VLC_ADD_CFLAGS([vcdx],[$LIBCDIO_CFLAGS])],
1891         [AC_MSG_ERROR([${LIBCDIO_PKG_ERRORS} (required for vcdx plugin).])])
1892     PKG_CHECK_MODULES(LIBVCDINFO, libvcdinfo >= 0.7.22,
1893         [VLC_ADD_LIBS([vcdx],[$LIBVCDINFO_LIBS])
1894          VLC_ADD_CFLAGS([vcdx],[$LIBVCDINFO_CFLAGS])],
1895       [AC_MSG_ERROR([${LIBVCDINFO_PKG_ERRORS} (required for vcdx plugin).])])
1896     VLC_ADD_PLUGIN([vcdx])
1897 fi
1898
1899 dnl
1900 dnl  Built-in CD-DA and VCD module
1901 dnl
1902 AC_ARG_ENABLE(vcd,
1903   [AS_HELP_STRING([--disable-vcd],
1904     [disable built-in VCD and CD-DA support (default enabled)])])
1905
1906 AC_ARG_ENABLE(libcddb,
1907   [AS_HELP_STRING([--disable-libcddb],
1908     [disable CDDB for Audio CD (default enabled)])])
1909
1910 if test "${enable_vcd}" != "no"
1911 then
1912   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1913   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1914     AC_MSG_RESULT(yes)
1915     VLC_ADD_PLUGIN([vcd cdda])
1916   ],[
1917     AC_MSG_RESULT(no)
1918   ])
1919
1920   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1921   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1922     AC_MSG_RESULT(yes)
1923     VLC_ADD_PLUGIN([vcd cdda])
1924     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1925   ],[
1926     AC_MSG_RESULT(no)
1927   ])
1928
1929   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1930   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1931     AC_MSG_RESULT(yes)
1932     VLC_ADD_PLUGIN([vcd cdda])
1933     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1934   ],[
1935     AC_MSG_RESULT(no)
1936   ])
1937
1938   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32" -o "${SYS}" = "os2"
1939   then
1940     VLC_ADD_PLUGIN([vcd cdda])
1941   fi
1942
1943   if test "${SYS}" = "darwin"
1944   then
1945     VLC_ADD_PLUGIN([vcd cdda])
1946     VLC_ADD_LIBS([vcd vcdx cdda],[-Wl,-framework,IOKit,-framework,CoreFoundation])
1947     VLC_ADD_LIBS([vcdx cdda],[-liconv])
1948   fi
1949
1950   if test "$enable_libcddb" != "no"; then
1951     PKG_CHECK_MODULES(LIBCDDB, [libcddb >= 0.9.5], [
1952       HAVE_LIBCDDB=yes
1953       AC_DEFINE(HAVE_LIBCDDB, 1, [Define this if you have libcddb installed])
1954       VLC_ADD_LIBS([cdda],[$LIBCDDB_LIBS])
1955       VLC_ADD_CFLAGS([cdda],[$LIBCDDB_CFLAGS])
1956       ],:
1957       [AC_MSG_WARN([${LIBCDDB_PKG_ERRORS}: CDDB access disabled.])
1958       HAVE_LIBCDDB=no])
1959   fi
1960 fi
1961
1962 dnl
1963 dnl Linux DVB
1964 dnl
1965 AC_CACHE_CHECK([for Linux DVB version 5.1], [ac_cv_linux_dvb_5_1], [
1966   AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1967 [#include <linux/dvb/version.h>
1968 #if (DVB_API_VERSION < 5)
1969 # error Linux DVB API v3.2 and older are not supported.
1970 #endif
1971 #if (DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR < 1)
1972 # error Linux DVB API v5.0 is unsupported. Please update.
1973 #endif
1974 ]])], [
1975   ac_cv_linux_dvb_5_1=yes
1976 ], [
1977   ac_cv_linux_dvb_5_1=no
1978 ])])
1979 AM_CONDITIONAL([HAVE_LINUX_DVB], [test "$ac_cv_linux_dvb_5_1" = "yes"])
1980
1981 dnl
1982 dnl  Screen capture module
1983 dnl
1984 AC_ARG_ENABLE(screen,
1985   [AS_HELP_STRING([--enable-screen],
1986     [disable screen capture (default enabled)])])
1987 if test "${enable_screen}" != "no"; then
1988   if test "${SYS}" = "darwin"; then
1989     AC_CHECK_HEADERS(OpenGL/gl.h, [
1990       AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
1991         VLC_ADD_PLUGIN([screen])
1992         VLC_ADD_LIBS([screen],[-Wl,-framework,OpenGL,-framework,ApplicationServices])
1993       ])
1994     ])
1995   elif test "${SYS}" = "mingw32"; then
1996     VLC_ADD_PLUGIN([screen])
1997     VLC_ADD_LIBS([screen],[-lgdi32])
1998   fi
1999 fi
2000
2001 dnl
2002 dnl  Real RTSP plugin
2003 dnl
2004 AC_ARG_ENABLE(realrtsp,
2005   [  --enable-realrtsp       Real RTSP module (default disabled)])
2006 if test "${enable_realrtsp}" = "yes"; then
2007   VLC_ADD_PLUGIN([access_realrtsp])
2008 fi
2009
2010 dnl
2011 dnl MacOS eyeTV
2012 AC_ARG_ENABLE(macosx-eyetv,
2013   [  --enable-macosx-eyetv   Mac OS X EyeTV (TNT Tuner) module (default enabled on Mac OS X)])
2014 if test "x${enable_macosx_eyetv}" != "xno" &&
2015   (test "${SYS}" = "darwin" || test "${enable_macosx_eyetv}" = "yes")
2016 then
2017   VLC_ADD_LIBS([access_eyetv], [-Wl,-framework,Foundation])
2018   VLC_ADD_PLUGIN([access_eyetv])
2019 fi
2020
2021 dnl
2022 dnl QTKit
2023 AC_ARG_ENABLE(macosx-qtkit,
2024   [  --enable-macosx-qtkit Mac OS X qtcapture (video) and qtsound (audio) module (default enabled on Mac OS X)])
2025 if test "x${enable_macosx_qtkit}" != "xno" &&
2026   (test "${SYS}" = "darwin" || test "${enable_macosx_qtkit}" = "yes")
2027 then
2028   VLC_ADD_PLUGIN([qtcapture])
2029   VLC_ADD_PLUGIN([qtsound])
2030 fi
2031 AM_CONDITIONAL(HAVE_QTKIT, [test "${SYS}" = "darwin" -a "x${enable_macosx_qtkit}" != "xno"])
2032
2033
2034 dnl
2035 dnl  Demux plugins
2036 dnl
2037
2038 EXTEND_HELP_STRING([Mux/Demux plugins:])
2039
2040 dnl
2041 dnl  libdvbpsi check for ts mux/demux
2042 dnl
2043 have_dvbpsi="no"
2044 PKG_WITH_MODULES([DVBPSI], [libdvbpsi], [have_dvbpsi="yes"])
2045 AM_CONDITIONAL(HAVE_DVBPSI, [test "${have_dvbpsi}" = "yes"])
2046
2047
2048 dnl
2049 dnl  GME demux plugin
2050 dnl
2051 AC_ARG_ENABLE(gme,
2052   [AS_HELP_STRING([--enable-gme],
2053     [use Game Music Emu (default auto)])])
2054 AS_IF([test "${enable_gme}" != "no"], [
2055   AC_CHECK_HEADER([gme/gme.h], [
2056     VLC_ADD_LIBS([gme], [-lgme])
2057     VLC_ADD_PLUGIN([gme])
2058   ], [
2059     AS_IF([test "x${enable_gme}" != "x"], [
2060       AC_MSG_ERROR([GME cannot be found. Please install the development files.])
2061     ])
2062   ])
2063 ])
2064
2065
2066 dnl
2067 dnl  SIDPlay plugin
2068 dnl
2069 AC_ARG_ENABLE(sid,
2070     [AS_HELP_STRING([--enable-sid],[C64 sid demux support (default auto)])])
2071 AS_IF([test "${enable_sid}" != "no"], [
2072     PKG_CHECK_MODULES(SID, [libsidplay2], [
2073         AC_LANG_PUSH(C++)
2074         oldCPPFLAGS="$CPPFLAGS"
2075         CPPFLAGS="$CPPFLAGS $SID_CFLAGS"
2076         AC_CHECK_HEADER([sidplay/builders/resid.h], [
2077             VLC_ADD_PLUGIN([sid])
2078             VLC_ADD_CFLAGS([sid], [$SID_CFLAGS])
2079             VLC_ADD_LIBS([sid], [$SID_LIBS] [-lresid-builder])
2080         ], [
2081             AS_IF([test -n "${enable_sid}"],
2082                 [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
2083                 [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2084                 )
2085         ])
2086         CPPFLAGS="$oldCPPFLAGS"
2087         AC_LANG_POP(C++)
2088     ], [
2089         AS_IF([test "x${enable_sid}" = "xyes"],
2090             [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
2091             [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2092             )
2093     ])
2094 ])
2095
2096
2097 dnl
2098 dnl  ogg demux plugin
2099 dnl
2100 PKG_ENABLE_MODULES_VLC([OGG], [], [ogg >= 1.0], [Ogg demux support], [auto])
2101 if test "${enable_sout}" != "no"; then
2102     PKG_ENABLE_MODULES_VLC([MUX_OGG], [], [ogg >= 1.0], [Ogg mux support], [auto])
2103 dnl Check for libshout
2104     PKG_ENABLE_MODULES_VLC([SHOUT], [access_output_shout], [shout >= 2.1], [libshout output plugin], [auto])
2105 fi
2106
2107 dnl
2108 dnl  matroska demux plugin
2109 dnl
2110 AC_ARG_ENABLE(mkv,
2111   [AS_HELP_STRING([--disable-mkv],
2112     [do not use libmatroska (default auto)])])
2113 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
2114   AC_LANG_PUSH(C++)
2115   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
2116     AC_MSG_CHECKING(for libebml version >= 1.0.0)
2117     AC_EGREP_CPP(yes,
2118       [#include <ebml/EbmlVersion.h>
2119        #ifdef LIBEBML_VERSION
2120        #if LIBEBML_VERSION >= 0x010000
2121        yes
2122        #endif
2123        #endif],
2124       [AC_MSG_RESULT([yes])
2125         AC_CHECK_HEADERS(matroska/KaxVersion.h, [
2126           AC_MSG_CHECKING(for libmatroska version >= 1.0.0)
2127           AC_EGREP_CPP(yes,
2128             [#include <matroska/KaxVersion.h>
2129              #ifdef LIBMATROSKA_VERSION
2130              #if LIBMATROSKA_VERSION >= 0x010000
2131              yes
2132              #endif
2133              #endif],
2134             [AC_MSG_RESULT([yes])
2135               AC_CHECK_HEADERS(matroska/KaxAttachments.h)
2136               VLC_ADD_CXXFLAGS([mkv],[])
2137               AC_CHECK_LIB(ebml_pic, main, [
2138                 VLC_ADD_PLUGIN([mkv])
2139                 VLC_ADD_LIBS([mkv],[-lmatroska -lebml_pic])
2140               ],[
2141                 AC_CHECK_LIB(ebml, main, [
2142                   VLC_ADD_PLUGIN([mkv])
2143                   VLC_ADD_LIBS([mkv],[-lmatroska -lebml])
2144                 ])
2145               ])
2146             ], [
2147               AC_MSG_RESULT([no])
2148               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.])
2149           ])
2150         ])
2151       ],
2152       [AC_MSG_RESULT([no])
2153         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.])
2154     ])
2155   ])
2156   AC_LANG_POP(C++)
2157 fi
2158
2159 dnl
2160 dnl  modplug demux plugin
2161 dnl
2162 AC_ARG_ENABLE(mod,
2163   [AS_HELP_STRING([--disable-mod],
2164     [do not use libmodplug (default auto)])])
2165 if test "${enable_mod}" != "no" ; then
2166     PKG_CHECK_MODULES(LIBMODPLUG, [libmodplug >= 0.8.4 libmodplug != 0.8.8], [
2167           VLC_ADD_PLUGIN([mod])
2168           VLC_ADD_CXXFLAGS([mod],[$LIBMODPLUG_CFLAGS])
2169           VLC_ADD_LIBS([mod],[$LIBMODPLUG_LIBS])
2170     ],[
2171        AS_IF([test -n "${enable_mod}"],
2172          [AC_MSG_ERROR([${LIBMODPLUG_PKG_ERRORS}.])],
2173          [AC_MSG_WARN([${LIBMODPLUG_PKG_ERRORS}.])])
2174     ])
2175 fi
2176
2177 dnl
2178 dnl  mpc demux plugin
2179 dnl
2180 AC_ARG_ENABLE(mpc,
2181   [AS_HELP_STRING([--disable-mpc], [do not use libmpcdec (default auto)])])
2182 if test "${enable_mpc}" != "no"
2183 then
2184   AC_CHECK_HEADERS([mpc/mpcdec.h], [
2185     VLC_ADD_PLUGIN([mpc])
2186     VLC_ADD_LIBS([mpc],[-lmpcdec])],
2187     [AC_CHECK_HEADERS([mpcdec/mpcdec.h], [
2188     VLC_ADD_PLUGIN([mpc])
2189     VLC_ADD_LIBS([mpc],[-lmpcdec])])])
2190 fi
2191
2192 dnl
2193 dnl  Codec plugins
2194 dnl
2195
2196 EXTEND_HELP_STRING([Codec plugins:])
2197
2198 dnl
2199 dnl wmafixed plugin
2200 dnl
2201 AC_ARG_ENABLE(wma-fixed,
2202   [  --enable-wma-fixed      libwma-fixed module (default disabled)])
2203 if test "${enable_wma_fixed}" = "yes"
2204 then
2205   VLC_ADD_PLUGIN([wma_fixed])
2206 fi
2207
2208 dnl
2209 dnl shine fixed point mp3 encoder
2210 dnl
2211 AC_ARG_ENABLE(shine,
2212   [  --enable-shine          shine mp3 encoding module (default disabled)])
2213 if test "${enable_shine}" = "yes"
2214 then
2215   VLC_ADD_PLUGIN([shine])
2216 fi
2217
2218 dnl
2219 dnl openmax il codec plugin
2220 dnl
2221 AC_ARG_ENABLE(omxil,
2222   [  --enable-omxil          openmax il codec module (default disabled)])
2223 if test "${enable_omxil}" = "yes"
2224 then
2225   VLC_ADD_PLUGIN([omxil])
2226   VLC_ADD_LIBS([omxil], [$LIBDL])
2227 fi
2228
2229 dnl
2230 dnl iomx codec plugin
2231 dnl
2232 AC_ARG_ENABLE(iomx,
2233   [  --enable-iomx           iomx codec module (default disabled)])
2234 if test "${enable_iomx}" = "yes"
2235 then
2236   VLC_ADD_PLUGIN([iomx])
2237 fi
2238
2239 dnl
2240 dnl CrystalHD codec plugin
2241 dnl
2242 AC_ARG_ENABLE(crystalhd,
2243   [  --enable-crystalhd      crystalhd codec plugin (default auto)])
2244 if test "${enable_crystalhd}" != "no"; then
2245     AC_CHECK_HEADER(libcrystalhd/libcrystalhd_if.h, [
2246       VLC_ADD_PLUGIN([crystalhd])
2247       VLC_ADD_LIBS([crystalhd], [-lcrystalhd])
2248     ],[
2249       if test "${SYS}" = "mingw32" ; then
2250         AC_CHECK_HEADERS(libcrystalhd/bc_dts_defs.h, [
2251           VLC_ADD_PLUGIN([crystalhd])
2252           AC_CHECK_HEADERS(libcrystalhd/bc_drv_if.h, [
2253             VLC_ADD_LIBS([crystalhd], [-lbcmDIL])
2254             ])
2255         ],[
2256           AS_IF([test x"${enable_crystalhd}" = "xyes"],
2257                 [AC_MSG_ERROR("Could not find CrystalHD development headers")],
2258                 [AC_MSG_WARN("Could not find CrystalHD development headers")])
2259         ],[#define __LINUX_USER__
2260                #include <libcrystalhd/bc_dts_types.h>
2261         ])
2262       fi
2263     ],[
2264        #include <libcrystalhd/bc_dts_types.h>
2265       ])
2266 fi
2267
2268 dnl
2269 dnl  mad plugin
2270 dnl
2271 AC_ARG_ENABLE(mad,
2272   [  --enable-mad            libmad module (default enabled)])
2273 if test "${enable_mad}" != "no"
2274 then
2275   AC_ARG_WITH(mad,
2276     [  --with-mad=PATH         path to libmad],[],[])
2277   if test "${with_mad}" != "no" -a -n "${with_mad}"
2278   then
2279     VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
2280     VLC_ADD_LIBS([mpgatofixed32],[-L${with_mad}/lib])
2281   fi
2282
2283   AC_ARG_WITH(mad-tree,
2284     [  --with-mad-tree=PATH    mad tree for static linking],[],[])
2285   if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
2286   then
2287     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
2288     if test -z "${real_mad_tree}"
2289     then
2290       dnl  The given directory can't be found
2291       AC_MSG_RESULT(no)
2292       AC_MSG_ERROR([${with_mad_tree} directory does not exist])
2293     fi
2294     dnl  Use a custom libmad
2295     AC_MSG_CHECKING(for mad.h in ${real_mad_tree})
2296     if test -f ${real_mad_tree}/mad.h
2297     then
2298       AC_MSG_RESULT(yes)
2299       VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}])
2300       VLC_ADD_LIBS([mpgatofixed32],[-L${real_mad_tree}/.libs])
2301       VLC_SAVE_FLAGS
2302       LDFLAGS="${LDFLAGS} ${LIBS_mpgatofixed32}"
2303       AC_CHECK_LIB(mad, mad_bit_init, [
2304         VLC_ADD_PLUGIN([mpgatofixed32])
2305         VLC_ADD_LIBS([mpgatofixed32],[-lmad])
2306         ],[ AC_MSG_ERROR([the specified tree has not been compiled ])
2307       ],[])
2308       VLC_RESTORE_FLAGS
2309     else
2310       AC_MSG_RESULT(no)
2311       AC_MSG_ERROR([the specified tree does not have mad.h])
2312     fi
2313   else
2314     VLC_SAVE_FLAGS
2315     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_mpgatofixed32}"
2316     LDFLAGS="${LDFLAGS} ${LIBS_mpgatofixed32}"
2317     AC_CHECK_HEADERS(mad.h, ,
2318       [ 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.]) ])
2319     AC_CHECK_LIB(mad, mad_bit_init, [
2320       VLC_ADD_PLUGIN([mpgatofixed32])
2321       VLC_ADD_LIBS([mpgatofixed32],[-lmad])],
2322       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
2323     VLC_RESTORE_FLAGS
2324   fi
2325 fi
2326
2327
2328 AC_ARG_ENABLE(merge-ffmpeg,
2329 [  --enable-merge-ffmpeg   merge FFmpeg-based plugins (default disabled)],, [
2330   enable_merge_ffmpeg="no"
2331 ])
2332 AM_CONDITIONAL([MERGE_FFMPEG], [test "$enable_merge_ffmpeg" != "no"])
2333
2334 VLC_SAVE_FLAGS
2335 LDFLAGS="${LDFLAGS} -Wl,-Bsymbolic"
2336 AC_CACHE_CHECK([if linker supports -Bsymbolic],
2337   [ac_cv_ld_bsymbolic],
2338   [AC_TRY_LINK([],,ac_cv_ld_bsymbolic=yes,ac_cv_ld_bsymbolic=no)])
2339 VLC_RESTORE_FLAGS
2340
2341 dnl
2342 dnl  avcodec decoder/encoder plugin
2343 dnl
2344 AC_ARG_ENABLE(avcodec,
2345 [  --enable-avcodec        libavcodec codec (default enabled)])
2346 AS_IF([test "${enable_avcodec}" != "no"], [
2347   PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 52.25.0 libavutil],
2348     [
2349       VLC_SAVE_FLAGS
2350       CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2351       CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2352       AC_CHECK_HEADERS(libavcodec/avcodec.h)
2353       AC_CHECK_HEADERS(libavutil/avutil.h)
2354       VLC_ADD_PLUGIN([avcodec])
2355       VLC_ADD_LIBS([avcodec],[$AVCODEC_LIBS])
2356       AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2357         VLC_ADD_LIBS([avcodec],[-Wl,-Bsymbolic])
2358       ])
2359       VLC_ADD_CFLAGS([avcodec],[$AVCODEC_CFLAGS])
2360       VLC_RESTORE_FLAGS
2361       have_avcodec="yes"
2362     ],[
2363       AC_MSG_ERROR([${AVCODEC_PKG_ERRORS}. Pass --disable-avcodec to ignore this error.])
2364   ])
2365 ], [
2366   have_avcodec="no"
2367 ])
2368
2369 dnl
2370 dnl libva needs avcodec
2371 dnl
2372 AC_ARG_ENABLE(libva,
2373   [  --enable-libva          VAAPI GPU decoding support (libVA) (default auto)])
2374
2375 AS_IF([test "${enable_libva}" = "yes" -a "${have_avcodec}" != "yes" ], [
2376   AC_MSG_ERROR([--enable-libva and --disable-avcodec options are mutually exclusive. Use --enable-avcodec.])
2377 ])
2378 AS_IF([test "${enable_libva}" != "no"], [
2379   PKG_CHECK_MODULES(LIBVA, [libva libva-x11], [
2380     VLC_SAVE_FLAGS
2381     CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2382     CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2383     AC_CHECK_HEADERS(libavcodec/vaapi.h, [
2384       VLC_ADD_LIBS([avcodec],[$LIBVA_LIBS ${X_LIBS} ${X_PRE_LIBS} -lX11])
2385       VLC_ADD_CFLAGS([avcodec],[$LIBVA_CFLAGS ${X_CFLAGS}])
2386       AC_DEFINE(HAVE_AVCODEC_VAAPI, 1, [Define if avcodec has to be built with VAAPI support.])
2387       AC_MSG_NOTICE([VAAPI acceleration activated])
2388     ],[
2389       AS_IF([test -n "${enable_libva}"], [
2390         AC_MSG_ERROR([libva is present but libavcodec/vaapi.h is missing])
2391       ], [
2392         AC_MSG_WARN([libva is present but libavcodec/vaapi.h is missing ])
2393       ])
2394     ])
2395     VLC_RESTORE_FLAGS
2396   ],[
2397     AS_IF([test -n "${enable_libva}"], [
2398       AC_MSG_ERROR([${LIBVA_PKG_ERRORS}.])
2399     ], [
2400       AC_MSG_WARN([${LIBVA_PKG_ERRORS}.])
2401     ])
2402   ])
2403 ])
2404
2405 dnl
2406 dnl dxva2 needs avcodec
2407 dnl
2408 AC_ARG_ENABLE(dxva2,
2409   [  --enable-dxva2          DxVA2 GPU decoding support (default auto)])
2410
2411 AS_IF([test "${enable_dxva2}" != "no"], [
2412   if test "${SYS}" = "mingw32"; then
2413   AS_IF([test "x${have_avcodec}" = "xyes"], [
2414     AC_CHECK_HEADERS(dxva2api.h,
2415       [
2416         AC_CHECK_HEADERS(libavcodec/dxva2.h, [
2417            VLC_ADD_LIBS([avcodec],[-lole32 -lshlwapi -luuid])
2418            AC_DEFINE(HAVE_AVCODEC_DXVA2, 1, [Define if avcodec has to be built with DxVA2 support.])
2419            echo "DxVA2 acceleration activated"
2420         ],[
2421     AS_IF([test "${enable_dxva2}" = "yes"],
2422           [AC_MSG_ERROR([dxva2 is present but libavcodec/dxva2.h is missing])],
2423               [AC_MSG_WARN([dxva2 is present but libavcodec/dxva2.h is missing ])])
2424         ], [#undef _WIN32_WINNT
2425             /* DXVA2 is only available in Vista and above */
2426             #define _WIN32_WINNT 0x600])
2427       ],[
2428     AS_IF([test "${enable_dxva2}" = "yes"],
2429               [AC_MSG_ERROR([Could not find required dxva2api.h])],
2430               [AC_MSG_WARN([dxva2api.h not found])])
2431       ])
2432   ],[
2433     AS_IF([test "x${enable_dxva2}" != "x"], [
2434       AC_MSG_ERROR([--enable-dxva2 and --disable-avcodec options are mutually exclusive.])
2435     ])
2436   ])
2437   fi
2438 ])
2439
2440
2441 dnl
2442 dnl stream_out switcher needs libavcodec
2443 dnl
2444 AC_ARG_ENABLE(switcher,
2445   [  --enable-switcher       Stream-out switcher plugin (default disabled)])
2446 AS_IF([test "${enable_switcher}" = "yes"], [
2447   AS_IF([test "x${have_avcodec}" = "xyes"], [
2448     VLC_ADD_PLUGIN([stream_out_switcher])
2449     VLC_ADD_LIBS([stream_out_switcher],[$AVCODEC_LIBS $AVUTIL_LIBS])
2450     VLC_ADD_CFLAGS([stream_out_switcher],[$AVCODEC_CFLAGS $AVUTIL_CFLAGS])
2451   ],[AC_MSG_ERROR([Stream_out switcher depends on avcodec])
2452   ])
2453 ])
2454
2455
2456 dnl
2457 dnl  avformat demuxer/muxer plugin
2458 dnl
2459
2460 AC_ARG_ENABLE(avformat,
2461 [  --enable-avformat       libavformat containers (default enabled)],, [
2462   enable_avformat="${have_avcodec}"
2463 ])
2464 if test "${enable_avformat}" != "no"
2465 then
2466   PKG_CHECK_MODULES(AVFORMAT,[libavformat > 52.30.0 libavcodec libavutil],
2467     [
2468       VLC_SAVE_FLAGS
2469       CPPFLAGS="${CPPFLAGS} ${AVFORMAT_CFLAGS}"
2470       CFLAGS="${CFLAGS} ${AVFORMAT_CFLAGS}"
2471       AC_CHECK_HEADERS(libavformat/avformat.h libavformat/avio.h)
2472       AC_CHECK_HEADERS(libavutil/avutil.h)
2473       AS_IF([test "$enable_merge_ffmpeg" = "no"], [
2474         VLC_ADD_PLUGIN([avformat access_avio])
2475         VLC_ADD_LIBS([avformat access_avio],[$AVFORMAT_LIBS $AVUTIL_LIBS])
2476         VLC_ADD_CFLAGS([avformat access_avio],[$AVFORMAT_CFLAGS $AVUTIL_CFLAGS])
2477         AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2478           VLC_ADD_LIBS([avformat access_avio],[-Wl,-Bsymbolic])
2479         ])
2480       ], [
2481         VLC_ADD_LIBS([avcodec],[$AVFORMAT_LIBS $AVUTIL_LIBS])
2482         VLC_ADD_CFLAGS([avcodec],[$AVFORMAT_CFLAGS $AVUTIL_CFLAGS])
2483       ])
2484       VLC_RESTORE_FLAGS
2485     ],[
2486       AC_MSG_ERROR([${AVFORMAT_PKG_ERRORS}. Pass --disable-avformat to ignore this error.])
2487   ])
2488 fi
2489
2490 dnl
2491 dnl  swscale image scaling and conversion plugin
2492 dnl
2493
2494 AC_ARG_ENABLE(swscale,
2495   AS_HELP_STRING([--enable-swscale],[libswscale image scaling and conversion
2496           (default enabled)]))
2497 if test "${enable_swscale}" != "no"
2498 then
2499   PKG_CHECK_MODULES(SWSCALE,[libswscale],
2500     [
2501       VLC_SAVE_FLAGS
2502       CPPFLAGS="${CPPFLAGS} ${SWSCALE_CFLAGS}"
2503       CFLAGS="${CFLAGS} ${SWSCALE_CFLAGS}"
2504       AC_CHECK_HEADERS(libswscale/swscale.h)
2505       VLC_ADD_PLUGIN([swscale])
2506       VLC_ADD_LIBS([swscale],[$SWSCALE_LIBS])
2507       VLC_ADD_CFLAGS([swscale],[$SWSCALE_CFLAGS])
2508       AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2509         VLC_ADD_LIBS([swscale],[-Wl,-Bsymbolic])
2510       ])
2511       VLC_RESTORE_FLAGS
2512     ],[
2513       AC_MSG_ERROR([${SWSCALE_PKG_ERRORS}. Pass --disable-swscale to ignore this error. Proper software scaling and some video chroma conversion will be missing.])
2514   ])
2515 fi
2516
2517 dnl
2518 dnl  postproc plugin
2519 dnl
2520
2521 AC_ARG_ENABLE(postproc,
2522 [  --enable-postproc       libpostproc image post-processing (default enabled)])
2523 if test "${enable_postproc}" != "no"
2524 then
2525   PKG_CHECK_MODULES(POSTPROC,[libpostproc libavutil],
2526     [
2527       VLC_SAVE_FLAGS
2528       CPPFLAGS="${CPPFLAGS} ${POSTPROC_CFLAGS}"
2529       CFLAGS="${CFLAGS} ${POSTPROC_CFLAGS}"
2530       AC_CHECK_HEADERS(postproc/postprocess.h)
2531       VLC_ADD_PLUGIN([postproc])
2532       VLC_ADD_LIBS([postproc],[$POSTPROC_LIBS $AVUTIL_LIBS])
2533       VLC_ADD_CFLAGS([postproc],[$POSTPROC_CFLAGS $AVUTIL_CFLAGS])
2534       VLC_RESTORE_FLAGS
2535     ],[
2536       AC_MSG_ERROR([${POSTPROC_PKG_ERRORS}. Pass --disable-postproc to ignore this error.])
2537   ])
2538 fi
2539
2540 dnl
2541 dnl  faad decoder plugin
2542 dnl
2543 AC_ARG_ENABLE(faad,
2544 [  --enable-faad           faad codec (default auto)])
2545 if test "${enable_faad}" != "no"; then
2546   AC_ARG_WITH(faad-tree,  [  --with-faad-tree=PATH   faad tree for static linking])
2547   if test -n "${with_faad_tree}"; then
2548     AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
2549     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
2550     if test -z "${real_faad_tree}"; then
2551       dnl  The given directory can't be found
2552       AC_MSG_RESULT(no)
2553       AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
2554     fi
2555     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"; then
2556       dnl  Use the custom faad
2557       AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
2558       VLC_ADD_PLUGIN([faad])
2559       VLC_ADD_LIBS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
2560       VLC_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
2561     else
2562       dnl  The given libfaad wasn't built
2563       AC_MSG_RESULT(no)
2564       AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
2565     fi
2566   else
2567     VLC_SAVE_FLAGS
2568     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_faad}"
2569     LDFLAGS="${LDFLAGS} ${LIBS_faad}"
2570     AC_CHECK_HEADERS(faad.h,
2571       [ AC_CHECK_LIB(faad, faacDecOpen, [
2572           VLC_ADD_PLUGIN([faad])
2573           VLC_ADD_LIBS([faad],[-lfaad]) ], [
2574             AC_CHECK_LIB(faad, NeAACDecOpen, [
2575               VLC_ADD_PLUGIN([faad])
2576               VLC_ADD_LIBS([faad],[-lfaad]) ], [
2577                 AS_IF([test "${enable_faad}" = "yes"],
2578                 [ AC_MSG_ERROR([Cannot find libfaad library...]) ],
2579                 [ AC_MSG_WARN([Cannot find libfaad library...]) ]) ]) ])
2580       ] , [ AS_IF([test "${enable_faad}" = "yes"],
2581         [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ],
2582         [ AC_MSG_WARN([Cannot find development headers for libfaad...]) ]) ])
2583     VLC_RESTORE_FLAGS
2584   fi
2585 fi
2586
2587 dnl
2588 dnl twolame encoder plugin
2589 dnl
2590 PKG_ENABLE_MODULES_VLC([TWOLAME], [], [twolame], [MPEG Audio Layer 2 encoder], [auto], [], [], [ -DLIBTWOLAME_STATIC])
2591
2592 dnl
2593 dnl  QuickTime plugin
2594 dnl
2595 AC_ARG_ENABLE(quicktime,
2596   [  --enable-quicktime      QuickTime module (deprecated)])
2597 if test "${enable_quicktime}" = "yes"; then
2598   if test "${SYS}" = "mingw32"; then
2599     VLC_ADD_PLUGIN([quicktime])
2600   else
2601   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2602     [ VLC_ADD_PLUGIN([quicktime])
2603       VLC_ADD_LIBS([quicktime],[-Wl,-framework,QuickTime,-framework,Carbon])
2604     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2605   fi
2606 fi
2607
2608 dnl
2609 dnl A52/AC3 decoder plugin
2610 dnl
2611 AC_ARG_ENABLE(a52,
2612   [  --enable-a52            A/52 support with liba52 (default enabled)])
2613 if test "${enable_a52}" != "no"
2614 then
2615   AC_ARG_WITH(a52,
2616     [  --with-a52=PATH         a52 headers and libraries])
2617   AC_ARG_WITH(a52-tree,
2618     [  --with-a52-tree=PATH    a52dec tree for static linking ],[],[])
2619   if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
2620   then
2621     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
2622     if test -z "${real_a52_tree}"
2623     then
2624       dnl  The given directory can't be found
2625       AC_MSG_RESULT(no)
2626       AC_MSG_ERROR([${with_a52_tree} directory does not exist])
2627     fi
2628     dnl  Use a custom a52dec
2629     AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
2630     if test -f ${real_a52_tree}/include/a52.h
2631     then
2632       AC_MSG_RESULT(yes)
2633       VLC_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
2634       VLC_ADD_LIBS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
2635       VLC_SAVE_FLAGS
2636       LDFLAGS="${LDFLAGS} ${LIBS_a52tofloat32}"
2637       AC_CHECK_LIB(a52, a52_free, [
2638         VLC_ADD_PLUGIN([a52tofloat32])
2639         VLC_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
2640         VLC_ADD_LIBS([a52tofloat32],[-la52])
2641         ],[
2642         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
2643         then
2644           AC_MSG_ERROR([make sure you have at least a52dec-0.7.3 ($real_a52_tree)])
2645         else
2646           AC_MSG_ERROR([the specified tree has not been compiled])
2647         fi
2648       ])
2649     else
2650       AC_MSG_RESULT(no)
2651       AC_MSG_ERROR([the specified tree does not have a52.h])
2652     fi
2653   else
2654     if test -z "${with_a52}"
2655     then
2656       LDFLAGS_test=""
2657       CPPFLAGS_test=""
2658     else
2659       LDFLAGS_test="-L${with_a52}/lib"
2660       CPPFLAGS_test="-I${with_a52}/include"
2661     fi
2662     VLC_SAVE_FLAGS
2663     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2664     LDFLAGS="${LDFLAGS} ${LDFLAGS_test} ${LIBS_a52tofloat32}"
2665     AC_CHECK_HEADERS(a52dec/a52.h, [
2666       AC_CHECK_LIB(a52, a52_free, [
2667         VLC_ADD_PLUGIN([a52tofloat32])
2668         VLC_ADD_LIBS([a52tofloat32],[${LDFLAGS_test} -la52])
2669         VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2670       ],[
2671         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.])
2672         ], [$LIBM])
2673     ],[
2674       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.])
2675     ])
2676     VLC_RESTORE_FLAGS
2677   fi
2678 fi
2679
2680 AC_ARG_WITH(a52-fixed,
2681       [  --with-a52-fixed        specify if liba52 has been compiled with fixed point support],
2682       [
2683         VLC_ADD_CPPFLAGS([a52tofloat32],[-DLIBA52_FIXED]) ])
2684
2685 dnl
2686 dnl DTS Coherent Acoustics decoder plugin
2687 dnl
2688 PKG_ENABLE_MODULES_VLC([DCA], [dtstofloat32], [libdca >= 0.0.5], [DTS Coherent Acoustics support with libdca], [auto])
2689
2690 dnl
2691 dnl  Flac plugin
2692 dnl
2693 PKG_ENABLE_MODULES_VLC([FLAC], [], [flac], [libflac decoder/encoder support], [auto])
2694
2695 dnl
2696 dnl  Libmpeg2 plugin
2697 dnl
2698 PKG_ENABLE_MODULES_VLC([LIBMPEG2], [], [libmpeg2 > 0.3.2], [libmpeg2 decoder support], [auto])
2699
2700 dnl
2701 dnl  Vorbis plugin
2702 dnl
2703 PKG_ENABLE_MODULES_VLC([VORBIS], [], [ogg vorbis >= 1.1 vorbisenc >= 1.1], [Vorbis decoder and encoder], [auto])
2704
2705 dnl
2706 dnl  Tremor plugin
2707 dnl
2708 AC_ARG_ENABLE(tremor,
2709   [  --enable-tremor         Tremor decoder support (default disabled)])
2710 if test "${enable_tremor}" = "yes"
2711 then
2712   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2713     VLC_ADD_PLUGIN([tremor])
2714     VLC_ADD_LIBS([tremor],[-lvorbisidec -logg])
2715    ],[])
2716 fi
2717
2718 dnl
2719 dnl  Speex plugins
2720 dnl
2721 PKG_ENABLE_MODULES_VLC([SPEEX], [], [ogg speex >= 1.0.5], [Speex support], [auto])
2722 have_speexdsp="no"
2723 AS_IF([test "${enable_speex}" != "no"], [
2724   PKG_CHECK_MODULES([SPEEXDSP], [speexdsp], [
2725     have_speexdsp="yes"
2726   ], [
2727     AC_MSG_WARN([${SPEEXDSP_PKG_ERRORS}.])
2728   ])
2729 ])
2730 AM_CONDITIONAL([HAVE_SPEEXDSP], [test "$have_speexdsp" = "yes"])
2731
2732 dnl
2733 dnl  theora decoder plugin
2734 dnl
2735 PKG_ENABLE_MODULES_VLC([THEORA], [], [ogg theoradec >= 1.0 theoraenc], [experimental theora codec], [auto])
2736
2737 dnl
2738 dnl  dirac encoder plugin
2739 dnl
2740 PKG_ENABLE_MODULES_VLC([DIRAC], [], [dirac >= 0.10.0], [dirac encoder], [auto])
2741
2742 dnl
2743 dnl  schroedinger decoder plugin (for dirac format video)
2744 dnl
2745 PKG_ENABLE_MODULES_VLC([SCHROEDINGER], [], [schroedinger-1.0 >= 1.0.10], [dirac decoder and encoder using schroedinger], [auto])
2746
2747 dnl
2748 dnl  PNG decoder module
2749 dnl
2750 AC_ARG_ENABLE(png,
2751   [  --enable-png            PNG support (default enabled)])
2752 if test "${enable_png}" != "no"; then
2753 AC_CHECK_HEADERS(png.h, [
2754   VLC_SAVE_FLAGS
2755   LDFLAGS="${LDFLAGS} -lz $LIBM"
2756   AC_CHECK_LIB(png, png_set_rows, [
2757     VLC_ADD_LIBS([png],[-lpng -lz $LIBM])
2758     VLC_ADD_PLUGIN([png osdmenu osd_parser])],
2759     [],[-lz $LIBM] )
2760   VLC_RESTORE_FLAGS
2761   ])
2762 fi
2763 AM_CONDITIONAL(BUILD_OSDMENU, [test "${enable_png}" != "no"])
2764
2765 dnl
2766 dnl H264 encoder plugin (10-bit lib264)
2767 dnl
2768 AC_ARG_ENABLE(x26410b,
2769   [  --enable-x26410b           H264 10-bit encoding support with static libx264 (default disabled)])
2770 if test "${enable_x26410b}" != "no"; then
2771 AC_ARG_WITH(x26410b-tree,
2772   [ --with-x26410b-tree=PATH      H264 10-bit encoding module with libx264 (static linking)],[],[])
2773   if test "${with_x26410b_tree}" != "no" -a -n "${with_x26410b_tree}"
2774   then
2775     real_x26410b_tree="̧`cd ${with_x26410b_tree} 2>/dev/null && pwd`"
2776     if test -z "${real_x26410b_tree}"
2777     then
2778       AC_MSG_RESULT(no)
2779       AC_MSG_ERROR([${with_x26410b_tree} directory does not exist])
2780     fi
2781     AC_MSG_CHECKING(for x264.h in ${real_x26410b_tree})
2782     if test -f ${with_x26410b_tree}/x264_config.h
2783     then
2784       AC_MSG_RESULT(yes)
2785       AC_MSG_CHECKING(for 10-bit build of x264)
2786       if grep -q "BIT_DEPTH.*10"  ${with_x26410b_tree}/x264_config.h ;then
2787         AC_MSG_RESULT(yes)
2788         VLC_ADD_PLUGIN([x26410b])
2789         VLC_ADD_CFLAGS([x26410b],[-I${with_x26410b_tree}])
2790         VLC_ADD_LIBS([x26410b],[-L${with_x26410b_tree} -lm -lpthread -lx264])
2791       else
2792         AC_MSG_RESULT(no)
2793         AC_MSG_ERROR([${with_x26410b_tree} isnt build 10-bit])
2794       fi
2795     else
2796       AC_MSG_RESULT(no)
2797       AC_MSG_ERROR([${with_x26410b_tree} doesnt have x264_config.h])
2798     fi
2799   else
2800     PKG_CHECK_MODULES(X26410B, x26410b, [
2801         VLC_ADD_PLUGIN([x26410b])
2802         VLC_ADD_LDFLAGS([x26410b],[${X26410B_LIBS}])
2803         AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2804           VLC_ADD_LIBS([x26410b],[-Wl,-Bsymbolic])
2805         ])
2806         VLC_ADD_CFLAGS([x26410b],[${X26410B_CFLAGS}])
2807         if echo ${X26410B_LIBS} |grep -q 'pthreadGC2'; then
2808           VLC_ADD_CFLAGS([x26410b], [-DPTW32_STATIC_LIB])
2809         fi
2810     ], [
2811        if test "${enable_x26410b}" = "yes"; then
2812         AC_MSG_ERROR([x26410b module doesn't work without staticly compiled libx264.a])
2813        fi
2814     ])
2815   fi
2816 fi
2817
2818
2819 dnl
2820 dnl H264 encoder plugin (using libx264)
2821 dnl
2822 AC_ARG_ENABLE(x264,
2823   [  --enable-x264           H264 encoding support with libx264 (default enabled)])
2824 if test "${enable_x264}" != "no"; then
2825   AC_ARG_WITH(x264-tree,
2826     [  --with-x264-tree=PATH   x264 tree for static linking ],[],[])
2827   if test "${with_x264_tree}" != "no" -a -n "${with_x264_tree}"
2828   then
2829     real_x264_tree="`cd ${with_x264_tree} 2>/dev/null && pwd`"
2830     if test -z "${real_x264_tree}"
2831     then
2832       dnl  The given directory can't be found
2833       AC_MSG_RESULT(no)
2834       AC_MSG_ERROR([${with_x264_tree} directory does not exist])
2835     fi
2836     dnl  Use a custom libx264
2837     AC_MSG_CHECKING(for x264.h in ${real_x264_tree})
2838     if test -f ${real_x264_tree}/x264.h
2839     then
2840       AC_MSG_RESULT(yes)
2841       VLC_ADD_CPPFLAGS([x264],[-I${real_x264_tree}])
2842       VLC_ADD_LIBS([x264],[-L${real_x264_tree}])
2843       PKG_CHECK_MODULES(X264,x264, [
2844         VLC_ADD_PLUGIN([x264])
2845         VLC_ADD_LIBS([x264],[${X264_LIBS}])
2846         VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
2847         if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
2848           VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
2849         fi
2850       ],[
2851         AC_MSG_ERROR([the specified tree has not been compiled])
2852       ])
2853     else
2854       AC_MSG_RESULT(no)
2855       AC_MSG_ERROR([the specified tree does not have x264.h])
2856     fi
2857   else
2858       PKG_CHECK_MODULES(X264,x264 >= 0.86, [
2859         VLC_ADD_PLUGIN([x264])
2860         VLC_ADD_LDFLAGS([x264],[${X264_LIBS}])
2861
2862         AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2863           VLC_ADD_LIBS([x264],[-Wl,-Bsymbolic])
2864         ])
2865
2866         VLC_ADD_CFLAGS([x264],[${X264_CFLAGS}])
2867         if echo ${X264_LIBS} |grep -q 'pthreadGC2'; then
2868           VLC_ADD_CFLAGS([x264], [-DPTW32_STATIC_LIB])
2869         fi
2870       ],[
2871         if test "${enable_x264}" = "yes"; then
2872             AC_MSG_ERROR([${X264_PKG_ERRORS}: you may get it from http://www.videolan.org/x264.html])
2873           fi
2874       ])
2875   fi
2876 fi
2877
2878 dnl
2879 dnl libfluidsynth (MIDI synthetizer) plugin
2880 dnl
2881 PKG_ENABLE_MODULES_VLC([FLUIDSYNTH], [], [fluidsynth >= 1.1.2], [MIDI synthetiser with libfluidsynth], [auto])
2882
2883 dnl
2884 dnl Teletext Modules
2885 dnl vbi decoder plugin (using libzbvi)
2886 dnl telx module
2887 dnl uncompatible
2888 dnl
2889 AC_ARG_ENABLE(zvbi,
2890   AS_HELP_STRING([--enable-zvbi],[VBI (inc. Teletext) decoding support with
2891                   libzvbi (default enabled)]))
2892 AC_ARG_ENABLE(telx,
2893   AS_HELP_STRING([--enable-telx],[Teletext decoding module (conflicting with
2894                   zvbi) (default enabled if zvbi is absent)]))
2895
2896 AS_IF( [test "${enable_zvbi}" != "no"],[
2897     PKG_CHECK_MODULES(ZVBI, [zvbi-0.2 >= 0.2.28],
2898         [
2899           VLC_ADD_LIBS([zvbi],[$ZVBI_LIBS])
2900           if test "${SYS}" = "mingw32"; then
2901               VLC_ADD_LIBS([zvbi],[ -lpthreadGC2])
2902           fi
2903           VLC_ADD_CFLAGS([zvbi],[$ZVBI_CFLAGS])
2904           VLC_ADD_PLUGIN([zvbi])
2905           AC_DEFINE(ZVBI_COMPILED, 1, [Define if the zvbi module is built])
2906           AS_IF( [test "${enable_telx}" = "yes"],[
2907                   AC_MSG_WARN([The zvbi and telx modules are incompatible. Using zvbi.])
2908                   ])
2909         ],[
2910           AC_MSG_WARN([${ZVBI_PKG_ERRORS}. Enabling the telx module instead.])
2911         ])
2912     ])
2913 AS_IF( [test "${enable_telx}" != "no" ],[
2914   VLC_ADD_PLUGIN([telx])
2915   ])
2916
2917 dnl
2918 dnl libass subtitle rendering module
2919 dnl
2920 AC_ARG_ENABLE(libass,
2921   [  --enable-libass         Subtitle support using libass (default enabled)])
2922 AS_IF( [test "${enable_libass}" != "no"], [
2923   PKG_CHECK_MODULES(LIBASS, [libass >= 0.9.8],
2924       [
2925         VLC_ADD_LIBS([libass],[$LIBASS_LIBS])
2926         VLC_ADD_CFLAGS([libass],[$LIBASS_CFLAGS])
2927         VLC_ADD_PLUGIN([libass])
2928
2929         AC_CHECK_HEADERS(fontconfig/fontconfig.h,
2930           [VLC_ADD_CPPFLAGS([libass],[-DHAVE_FONTCONFIG])
2931            VLC_ADD_LIBS([libass],[-lfontconfig])
2932        ])
2933       ],[
2934         AC_MSG_WARN([${LIBASS_PKG_ERRORS}.])
2935       ])
2936   ])
2937
2938 dnl
2939 dnl  kate decoder plugin
2940 dnl
2941 PKG_ENABLE_MODULES_VLC([KATE], [], [kate >= 0.3.0], [kate codec], [auto])
2942
2943 dnl
2944 dnl  tiger rendering for kate decoder plugin
2945 dnl
2946 AC_ARG_ENABLE(tiger,
2947 [  --enable-tiger          Tiger rendering library for Kate streams (default auto)])
2948 AS_IF([test "${enable_tiger}" != "no"], [
2949   PKG_CHECK_MODULES(TIGER,[tiger >= 0.3.1], [
2950       AC_DEFINE(HAVE_TIGER, 1, [Define if libtiger is available.])
2951       VLC_ADD_CFLAGS([kate],[$TIGER_CFLAGS])
2952       VLC_ADD_LIBS([kate],[$TIGER_LIBS]) ],[
2953         AS_IF([test -n "${enable_tiger}"], [
2954           AC_MSG_ERROR([${TIGER_PKG_ERRORS}.])
2955         ])
2956   ])
2957 ])
2958
2959
2960 dnl
2961 dnl  Video plugins
2962 dnl
2963
2964 EXTEND_HELP_STRING([Video plugins:])
2965
2966 dnl
2967 dnl  OpenGL
2968 dnl
2969 PKG_CHECK_MODULES([GL], [gl], [
2970   have_gl="yes"
2971 ], [
2972   AC_CHECK_HEADER([GL/gl.h], [
2973     have_gl="yes"
2974     GL_CFLAGS=""
2975     GL_LIBS="-lGL"
2976   ], [
2977     have_gl="no"
2978   ])
2979 ])
2980
2981 dnl OpenGL ES 2: depends on EGL 1.1 and is currently unfinished
2982 dnl PKG_ENABLE_MODULES_VLC([GLES2], [], [glesv2], [OpenGL ES v2 support], [auto])
2983 dnl OpenGL ES 1: depends on EGL 1.0 and is currently broken
2984 dnl PKG_ENABLE_MODULES_VLC([GLES1], [], [glesv1_cm], [OpenGL ES v1 support], [auto])
2985
2986 AC_ARG_ENABLE(egl,
2987   [  --enable-egl            OpenGL support through EGL (default disabled)],, [
2988   enable_egl="no"
2989 ])
2990 AS_IF([test "$enable_egl" != "no"], [
2991   PKG_CHECK_MODULES([EGL], [egl], [
2992     VLC_ADD_PLUGIN([gl])
2993     VLC_ADD_PLUGIN([egl])
2994   ])
2995 ])
2996
2997 dnl
2998 dnl  Xlib
2999 dnl
3000
3001 AC_PATH_XTRA()
3002 AC_CHECK_HEADERS(X11/Xlib.h)
3003
3004 dnl
3005 dnl  X C Bindings modules
3006 dnl
3007 AC_ARG_ENABLE(xcb,
3008   [  --enable-xcb            X11 support with XCB (default enabled)],, [
3009   AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" -a "${SYS}" != "darwin" -a "${SYS}" != "symbian"], [
3010     enable_xcb="yes"
3011   ], [
3012     enable_xcb="no"
3013   ])
3014 ])
3015 AC_ARG_ENABLE(xvideo,
3016   [  --enable-xvideo         XVideo support (default enabled)],, [
3017     enable_xvideo="$enable_xcb"
3018 ])
3019 AC_ARG_ENABLE(glx,
3020   [  --enable-glx            OpenGL support through GLX (default enabled)],, [
3021   enable_glx="$enable_xcb"
3022 ])
3023
3024 have_xcb="no"
3025 AS_IF([test "${enable_xcb}" != "no"], [
3026   dnl libxcb
3027   PKG_CHECK_MODULES(XCB, [xcb >= 1.6])
3028   have_xcb="yes"
3029   PKG_CHECK_MODULES(XCB_SHM, [xcb-shm])
3030   PKG_CHECK_MODULES(XCB_COMPOSITE, [xcb-composite])
3031
3032   AS_IF([test "${enable_xvideo}" != "no"], [
3033     PKG_CHECK_MODULES(XCB_XV, [xcb-xv >= 1.1.90.1], [
3034       VLC_ADD_PLUGIN([xcb_xv])
3035     ])
3036   ])
3037
3038   PKG_CHECK_MODULES(XCB_RANDR, [xcb-randr >= 1.3], [
3039     VLC_ADD_PLUGIN([panoramix])
3040     VLC_ADD_LIBS([panoramix],[${XCB_RANDR_LIBS} ${XCB_LIBS}])
3041     VLC_ADD_CFLAGS([panoramix],[${XCB_RANDR_CFLAGS} ${XCB_CFLAGS}])
3042   ], [
3043     AC_MSG_WARN([${XCB_RANDR_PKG_ERRORS}. Panoramix filter will not be supported.])
3044   ])
3045
3046   dnl xcb-utils
3047   PKG_CHECK_MODULES(XCB_KEYSYMS, [xcb-keysyms >= 0.3.4], [
3048     PKG_CHECK_MODULES(XPROTO, [xproto])
3049     VLC_ADD_PLUGIN([globalhotkeys])
3050     VLC_ADD_CFLAGS([globalhotkeys], [${XCB_KEYSYMS_CFLAGS} ${XCB_CFLAGS}])
3051     VLC_ADD_LIBS([globalhotkeys], [${XCB_KEYSYMS_LIBS} ${XCB_LIBS}])
3052     VLC_ADD_CFLAGS([xcb_window], [-DHAVE_XCB_KEYSYMS])
3053   ], [
3054     AC_MSG_WARN([${XCB_KEYSYMS_PKG_ERRORS}. Hotkeys will not work.])
3055   ])
3056
3057   AS_IF([test "${enable_glx}" != "no"], [
3058     AS_IF([test "${have_gl}" != "yes"], [
3059       AC_MSG_ERROR([${GL_PKG_ERRORS}. Pass --disable-glx if you do not need OpenGL X11 support.])
3060     ])
3061     VLC_ADD_PLUGIN([xcb_glx])
3062   ])
3063 ])
3064 AM_CONDITIONAL([HAVE_XCB], [test "${have_xcb}" = "yes"])
3065
3066 dnl
3067 dnl  SDL module
3068 dnl
3069 AC_ARG_ENABLE(sdl,
3070   [  --enable-sdl            SDL support (default enabled)])
3071 AC_ARG_ENABLE(sdl-image,
3072   [  --enable-sdl-image      SDL image support (default enabled)])
3073 if test "${enable_sdl}" != "no"
3074 then
3075    PKG_CHECK_MODULES(SDL, [sdl >= 1.2.10], [
3076       # SDL on Darwin is heavily patched and can only run SDL_image
3077       if test "${SYS}" != "darwin"; then
3078         VLC_ADD_PLUGIN([vout_sdl])
3079       fi
3080       if test "${SYS}" != "mingw32" -a "${SYS}" != "os2"; then
3081         VLC_ADD_LIBS([vout_sdl],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3082       fi
3083       VLC_ADD_CFLAGS([vout_sdl],[${SDL_CFLAGS}])
3084       VLC_ADD_LIBS([vout_sdl],[${SDL_LIBS}])
3085
3086       # SDL_image
3087       AS_IF([ test "${enable_sdl_image}" != "no"],[
3088         PKG_CHECK_MODULES(SDL_IMAGE, [SDL_image >= 1.2.10], [
3089           VLC_ADD_PLUGIN([sdl_image])
3090           VLC_ADD_LIBS([sdl_image],[${SDL_IMAGE_LIBS}])
3091           VLC_ADD_CFLAGS([sdl_image], [${SDL_IMAGE_CFLAGS}])],
3092           [ AC_MSG_WARN([${SDL_IMAGE_PKG_ERRORS}. You should install it alongside your SDL package.])
3093           ])
3094       ])
3095    ],[
3096      AC_MSG_WARN([${SDL_PKG_ERRORS}.])
3097    ])
3098 fi
3099
3100
3101 dnl
3102 dnl Mac Vout
3103 AC_ARG_ENABLE(macosx-vout,
3104   [  --enable-macosx-vout    Mac OS X video output module (default enabled on Mac OS X)])
3105 if test "x${enable_macosx_vout}" != "xno" &&
3106   (test "${SYS}" = "darwin" || test "${enable_macosx_vout}" = "yes")
3107 then
3108   VLC_ADD_LIBS([vout_macosx],[-Wl,-framework,Cocoa])
3109   VLC_ADD_LIBS([vout_macosx],[-Wl,-framework,OpenGL])
3110   VLC_ADD_PLUGIN([vout_macosx])
3111 fi
3112
3113
3114 dnl
3115 dnl  freetype module
3116 dnl
3117 AC_ARG_ENABLE(freetype,
3118   [  --enable-freetype       freetype support   (default auto)])
3119 AC_ARG_ENABLE(fribidi,
3120   [  --enable-fribidi        fribidi support    (default auto)])
3121 AC_ARG_ENABLE(fontconfig,
3122   [  --enable-fontconfig     fontconfig support (default auto)])
3123
3124 if test "${enable_freetype}" != "no"; then
3125    PKG_CHECK_MODULES(FREETYPE, freetype2, [
3126       have_freetype=yes
3127       VLC_ADD_PLUGIN([freetype])
3128       VLC_ADD_CPPFLAGS([freetype skins2],[${FREETYPE_CFLAGS}])
3129       if test "${SYS}" = "mingw32"; then
3130         VLC_ADD_LIBS([freetype],[-liconv -lz])
3131       fi
3132       VLC_ADD_LIBS([freetype skins2],[${FREETYPE_LIBS}])
3133
3134       AC_CHECK_HEADERS(Carbon/Carbon.h,
3135                        [VLC_ADD_LIBS([freetype],[-Wl,-framework,Carbon])])
3136
3137       dnl fontconfig support
3138       if test "${SYS}" != "mingw32"; then
3139           if test "${enable_fontconfig}" != "no"; then
3140             AC_CHECK_HEADERS(fontconfig/fontconfig.h, [
3141               VLC_ADD_CPPFLAGS([freetype],[-DHAVE_FONTCONFIG])
3142               VLC_ADD_LIBS([freetype],[-lfontconfig])
3143             ],[AC_MSG_WARN([library fontconfig not found. Styles will be disabled in freetype])])
3144           fi
3145       else
3146           VLC_ADD_LIBS([freetype],[-lgdi32])
3147       fi
3148
3149       dnl fribidi support
3150       if test "${enable_fribidi}" != "no"; then
3151         PKG_CHECK_MODULES(FRIBIDI, fribidi, [
3152           VLC_ADD_CPPFLAGS([freetype skins2], [${FRIBIDI_CFLAGS} -DHAVE_FRIBIDI])
3153           VLC_ADD_LIBS([freetype skins2], [${FRIBIDI_LIBS}])
3154         ],[AC_MSG_WARN([${FRIBIDI_PKG_ERRORS}. Bidirectional support will be disabled in FreeType.])])
3155       fi
3156
3157   ],[
3158   have_freetype=no
3159   AS_IF([test -n "${enable_freetype}"],[
3160     AC_MSG_ERROR([${FREETYPE_PKG_ERRORS}. Install FreeType2 development or configure with --disable-freetype.])
3161     ])
3162   ])
3163 fi
3164
3165
3166 dnl
3167 dnl  QuartzText vout module (iOS/Mac OS)
3168 dnl
3169 AC_ARG_ENABLE(macosx-quartztext,
3170   [  --enable-macosx-quartztext   Mac OS X quartz text module (default enabled on Mac OS X)])
3171 if test "x${enable_macosx_quartztext}" != "xno" &&
3172   (test "${SYS}" = "darwin" || test "${enable_macosx_quartztext}" = "yes")
3173 then
3174   VLC_ADD_PLUGIN([quartztext])
3175   VLC_ADD_LIBS([quartztext],[-Wl,-framework,ApplicationServices])
3176 fi
3177
3178 dnl
3179 dnl  SVG module
3180 dnl
3181 PKG_ENABLE_MODULES_VLC([SVG], [], [librsvg-2.0 >= 2.9.0], [SVG rendering library],[auto])
3182
3183 dnl
3184 dnl  android surface module
3185 dnl
3186 AC_ARG_ENABLE(android-surface,
3187   [  --enable-android-surface   Android Surface video output module (default disabled)])
3188 if test "${enable_android_surface}" = "yes"; then
3189   if test "${HAVE_ANDROID}" = "1"; then
3190      VLC_ADD_PLUGIN([android_surface])
3191      VLC_ADD_LDFLAGS([android_surface], [-ldl])
3192   fi
3193 fi
3194
3195
3196 dnl
3197 dnl  iOS vout module
3198 dnl
3199 AC_ARG_ENABLE(ios-vout,
3200   [  --enable-ios-vout    iOS video output module (default disabled)])
3201 if test "${enable_ios_vout}" = "yes"
3202 then
3203   VLC_ADD_PLUGIN([vout_ios])
3204   VLC_ADD_CFLAGS([vout_ios], [-DUSE_OPENGL_ES=1])
3205   VLC_ADD_LIBS([vout_ios], [-Wl,-framework,OpenGLES,-framework,QuartzCore,-framework,UIKit,-framework,Foundation])
3206 fi
3207
3208 dnl
3209 dnl  Windows DirectX module
3210 dnl
3211
3212 if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"
3213 then
3214   VLC_ADD_PLUGIN([panoramix])
3215 fi
3216
3217 AC_ARG_ENABLE(directx,
3218   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
3219 if test "${enable_directx}" != "no"; then
3220   if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"; then
3221       dnl DDraw
3222       AC_CHECK_HEADERS(ddraw.h,
3223       [ VLC_ADD_PLUGIN([directx aout_directx])
3224         VLC_ADD_LIBS([directx],[-luser32 -lgdi32])
3225       ],[AC_MSG_ERROR([Cannot find DirectX headers!])]
3226       )
3227
3228       dnl OpenGL
3229       AC_CHECK_HEADERS(GL/wglew.h,
3230       [ VLC_ADD_PLUGIN([glwin32])
3231         VLC_ADD_LIBS([glwin32],[-lopengl32 -lgdi32])
3232       ],[],[
3233         #include <windows.h>
3234         #include <GL/gl.h>
3235       ])
3236
3237       dnl Direct3D
3238       AC_CHECK_HEADERS(d3d9.h,
3239       [ VLC_ADD_PLUGIN([direct3d])
3240         VLC_ADD_LIBS([direct3d],[-lgdi32])
3241       ])
3242       VLC_ADD_LIBS([direct3d directx glwin32],[-lole32 -luuid])
3243   fi
3244 fi
3245
3246 dnl
3247 dnl  Windows Direct2D plugin
3248 dnl
3249 AC_ARG_ENABLE(direct2d,
3250   [  --enable-direct2d       Win7/VistaPU Direct2D support (default auto on Win32)],, [
3251   AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"], [
3252     enable_direct2d="no"
3253   ])
3254 ])
3255 AS_IF([test "${enable_direct2d}" != "no"], [
3256   AC_CHECK_HEADERS(d2d1.h, [
3257     VLC_ADD_PLUGIN([direct2d])
3258     VLC_ADD_LIBS([direct2d],[-lgdi32 -lole32 -luuid])
3259   ], [
3260     AC_MSG_WARN([Cannot find Direct2D headers!])
3261   ])
3262 ])
3263
3264 dnl
3265 dnl  win32 GDI plugin
3266 dnl
3267 AC_ARG_ENABLE(wingdi,
3268   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
3269 if test "${enable_wingdi}" != "no"; then
3270   if test "${SYS}" = "mingw32"; then
3271     VLC_ADD_PLUGIN([wingdi])
3272     VLC_ADD_LIBS([wingdi],[-lgdi32 -lole32 -luuid])
3273   fi
3274   if test "${SYS}" = "mingwce"; then
3275     VLC_ADD_PLUGIN([wingdi wingapi])
3276     VLC_ADD_LIBS([wingdi],[-laygshell])
3277     VLC_ADD_LIBS([wingapi],[-laygshell])
3278   fi
3279 fi
3280
3281
3282 dnl
3283 dnl  Linux framebuffer module
3284 dnl
3285 AC_CHECK_HEADER([linux/fb.h], [
3286   VLC_ADD_PLUGIN([fb])
3287 ])
3288
3289
3290 dnl
3291 dnl  DirectFB module
3292 dnl  try to find using: 1 - given location; 2 - directfb-config; 3 - pkg-config
3293 dnl  TODO: support for static linking
3294 dnl
3295 AC_ARG_ENABLE(directfb,
3296   [  --enable-directfb       DirectFB support (default disabled)])
3297 AC_ARG_WITH(directfb,
3298   [  --with-directfb=PATH    path to DirectFB headers and libraries])
3299
3300 if test "${enable_directfb}" = "yes"; then
3301     have_directfb="false"
3302     CPPFLAGS_mydirectfb=
3303     LIBS_mydirectfb=
3304     if test "${with_directfb}" != "no" -a -n "${with_directfb}"; then
3305         dnl Trying the given location
3306         VLC_SAVE_FLAGS
3307
3308         CPPFLAGS_new="-I${with_directfb}/include -D_REENTRANT -D_GNU_SOURCE"
3309         LIBS_new="-L${with_directfb}/lib/fusion/.libs/ -L${with_directfb}/lib/direct/.libs/ -L${with_directfb}/src/.libs/"
3310
3311         CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_new}"
3312         LIBS="${LIBS} ${LIBS_new}"
3313
3314         dnl FIXME: too obscure
3315         AC_CHECK_HEADER([directfb.h], [
3316             AC_CHECK_LIB([direct],[direct_initialize], [
3317                 AC_CHECK_LIB([fusion], [fusion_enter], [
3318                     AC_CHECK_LIB([directfb], [DirectFBInit], have_directfb="true", have_directfb="false")
3319                 ], have_directfb="false")
3320             ], have_directfb="false")
3321         ], have_directfb="false")
3322
3323         VLC_RESTORE_FLAGS
3324
3325         if test "${have_directfb}" = "true"; then
3326             LIBS_mydirectfb="${LIBS_new} -lz $LIBDL -ldirectfb -lfusion -ldirect -lpthread"
3327             CPPFLAGS_mydirectfb="${CPPFLAGS_new}"
3328         fi
3329     else
3330         dnl Look for directfb-config
3331         AC_PATH_PROG(DIRECTFB_CONFIG, directfb-config, no, ${PATH})
3332         if test "${DIRECTFB_CONFIG}" != "no"; then
3333             CPPFLAGS_mydirectfb="`${DIRECTFB_CONFIG} --cflags`"
3334             LIBS_mydirectfb="`${DIRECTFB_CONFIG} --libs`"
3335             have_directfb="true"
3336         else
3337             dnl Trying with pkg-config
3338             PKG_CHECK_MODULES(DIRECTFB, directfb, [
3339                 CPPFLAGS_mydirectfb="${DIRECTFB_CFLAGS}"
3340                 LIBS_mydirectfb="${DIRECTFB_LIBS}"
3341                 have_directfb="true"
3342                 ], [have_directfb="false"])
3343         fi
3344     fi
3345     if test "${have_directfb}" = "true"; then
3346         VLC_ADD_PLUGIN([directfb])
3347         VLC_ADD_CPPFLAGS([directfb],[${CPPFLAGS_mydirectfb}])
3348         VLC_ADD_LIBS([directfb],[${LIBS_mydirectfb}])
3349     else
3350         AC_MSG_ERROR([${DIRECTFB_PKG_ERRORS}.])
3351     fi
3352 fi
3353
3354 dnl
3355 dnl  AA plugin
3356 dnl
3357 AC_ARG_ENABLE(aa,
3358   [  --enable-aa             aalib output (default disabled)])
3359 if test "${enable_aa}" = "yes"
3360 then
3361   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3362   if test "${have_aa}" = "true"
3363   then
3364     VLC_ADD_PLUGIN([aa])
3365     VLC_ADD_LIBS([aa],[-laa])
3366     if test "${SYS}" != "mingw32"; then
3367       VLC_ADD_LIBS([aa],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3368     fi
3369   fi
3370 fi
3371
3372 dnl
3373 dnl  libcaca plugin
3374 dnl
3375 PKG_ENABLE_MODULES_VLC([CACA], [], [caca >= 0.99.beta14], [libcaca output],[auto])
3376
3377 dnl
3378 dnl  OS/2 KVA plugin
3379 dnl
3380 AC_ARG_ENABLE(kva,
3381   [AS_HELP_STRING([--enable-kva],
3382     [support the K Video Accelerator KVA (default enabled on OS/2)])],, [
3383   AS_IF([test "$SYS" = "os2"], [
3384     enable_kva="yes"
3385   ])
3386 ])
3387 have_kva="no"
3388 KVA_LIBS=""
3389 AS_IF([test "$enable_kva" != "no"], [
3390   AC_CHECK_HEADERS([kva.h], [
3391     have_kva="yes"
3392     AC_CHECK_LIB(kva, main, [
3393       KVA_LIBS="-lkva"
3394     ])
3395   ])
3396 ])
3397 AC_SUBST(KVA_LIBS)
3398 AM_CONDITIONAL([HAVE_KVA], [test "${have_kva}" = "yes"])
3399
3400 dnl
3401 dnl  Audio plugins
3402 dnl
3403
3404 EXTEND_HELP_STRING([Audio plugins:])
3405
3406 dnl
3407 dnl  Pulseaudio module
3408 dnl
3409 AC_ARG_ENABLE(pulse,
3410   [AS_HELP_STRING([--enable-pulse],
3411     [use the PulseAudio client library (default auto)])])
3412 have_pulse="no"
3413 AS_IF([test "${enable_pulse}" != "no"], [
3414   PKG_CHECK_MODULES([PULSE], [libpulse >= 0.9.22], [
3415     have_pulse="yes"
3416   ], [
3417     PKG_CHECK_MODULES([PULSE], [libpulse >= 0.9.16], [
3418       AS_IF([test "${no_x}" != "yes"], [
3419         have_pulse="yes"
3420         PULSE_LIBS="$PULSE_LIBS ${X_LIBS} ${X_PRE_LIBS} -lX11"
3421       ], [
3422         AS_IF([test "${enable_pulse}" = "yes"], [
3423           AC_MSG_ERROR([Xlib is required with PulseAudio pre-0.9.22 versions
3424 (see http://www.pulseaudio.org/ticket/799 for further reference).])
3425         ])
3426       ])
3427     ], [
3428       AS_IF([test "x${enable_pulse}" != "x"], [
3429         AC_MSG_ERROR([$PULSE_PKG_ERRORS. PulseAudio 0.9.22 or later required.])
3430       ])
3431     ])
3432   ])
3433 ])
3434 AM_CONDITIONAL([HAVE_PULSE], [test "${have_pulse}" = "yes"])
3435
3436 dnl
3437 dnl  ALSA module
3438 dnl
3439 AC_ARG_ENABLE(alsa,
3440   [AS_HELP_STRING([--enable-alsa],
3441     [support the Advanced Linux Sound Architecture (default auto)])],, [
3442   AS_IF([test "$SYS" = "linux" -a "${have_pulse}" = "no"], [
3443     enable_alsa="yes"
3444   ])
3445 ])
3446 have_alsa="no"
3447 AS_IF([test "${enable_alsa}" != "no"], [
3448   PKG_CHECK_MODULES([ALSA], [alsa >= 1.0.16], [
3449     have_alsa="yes"
3450   ], [
3451     AS_IF([test "x${enable_alsa}" != "x"], [
3452       AC_MSG_ERROR([$ALSA_PKG_ERRORS. alsa-lib 1.0.16 or later required.])
3453     ])
3454   ])
3455 ])
3456 AM_CONDITIONAL([HAVE_ALSA], [test "${have_alsa}" = "yes"])
3457
3458 dnl
3459 dnl  Open Sound System module
3460 dnl
3461 AC_ARG_ENABLE(oss,
3462   [AS_HELP_STRING([--enable-oss],
3463     [support the Open Sound System OSS (default enabled on FreeBSD/NetBSD/DragonFlyBSD)])],, [
3464   AS_IF([test "$SYS" = "mingw32" -o "$SYS" = "mingwce" -o "$SYS" = "linux" -o "$SYS" = "openbsd"], [
3465     enable_oss="no"
3466   ])
3467 ])
3468 have_oss="no"
3469 OSS_LIBS=""
3470 AS_IF([test "$enable_oss" != "no"], [
3471   AC_CHECK_HEADERS([soundcard.h sys/soundcard.h], [
3472     have_oss="yes"
3473     AC_CHECK_LIB(ossaudio, main, [
3474       OSS_LIBS="-lossaudio"
3475     ])
3476   ])
3477 ])
3478 AC_SUBST(OSS_LIBS)
3479 AM_CONDITIONAL([HAVE_OSS], [test "${have_oss}" = "yes"])
3480
3481 dnl
3482 dnl  OpenBSD sndio module
3483 dnl
3484 AC_ARG_ENABLE([sndio],
3485   [AS_HELP_STRING([--disable-sndio],
3486     [support the OpenBSD sndio (default auto)])],, [
3487   AS_IF([test "$SYS" = "opensd"], [
3488     enable_sndio="yes"
3489   ])
3490 ])
3491 have_sndio="no"
3492 AS_IF([test "$enable_sndio" != "no"], [
3493   AC_CHECK_HEADER([sndio.h], [
3494     have_sndio="yes"
3495   ])
3496 ])
3497 AM_CONDITIONAL([HAVE_SNDIO], [test "${have_sndio}" = "yes"])
3498
3499 dnl
3500 dnl  win32 waveOut plugin
3501 dnl
3502 AC_ARG_ENABLE(waveout,
3503   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
3504 if test "${enable_waveout}" != "no"; then
3505   if test "${SYS}" = "mingw32"; then
3506     VLC_ADD_PLUGIN([waveout])
3507     VLC_ADD_LIBS([waveout],[-lwinmm])
3508   fi
3509   if test "${SYS}" = "mingwce"; then
3510     VLC_ADD_PLUGIN([waveout])
3511   fi
3512 fi
3513
3514 dnl
3515 dnl  CoreAudio plugin
3516 dnl
3517 AC_ARG_ENABLE(macosx-audio,
3518   [  --enable-macosx-audio   Mac OS X audio module (default enabled on MacOS X)])
3519 if test "x${enable_macosx_audio}" != "xno" &&
3520   (test "${SYS}" = "darwin" || test "${enable_macosx_audio}" = "yes")
3521 then
3522   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h,
3523     [ VLC_ADD_PLUGIN([auhal])
3524       VLC_ADD_LIBS([auhal],[-Wl,-framework,CoreAudio,-framework,AudioUnit,-framework,AudioToolbox,-framework,Carbon])
3525     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
3526 fi
3527
3528 dnl
3529 dnl  AudioQueue plugin
3530 dnl
3531 AC_ARG_ENABLE(audioqueue,
3532   [  --enable-audioqueue     AudioQueue audio module (default disabled)])
3533 if test "${enable_audioqueue}" = "yes"
3534 then
3535   VLC_ADD_PLUGIN([audioqueue])
3536   VLC_ADD_LIBS([audioqueue], [-Wl,-framework,AudioToolbox,-framework,CoreFoundation])
3537 fi
3538
3539 dnl
3540 dnl  JACK modules
3541 dnl
3542 PKG_ENABLE_MODULES_VLC([JACK], [jack access_jack], [jack], [JACK audio I/O modules],[auto])
3543
3544 dnl
3545 dnl  OpenSLES Android
3546 dnl
3547 AC_ARG_ENABLE(opensles,
3548   [  --enable-opensles       Android OpenSL ES audio module (default disabled)])
3549 if test "${HAVE_ANDROID}" = "1"; then
3550   if test "${enable_opensles}" = "yes"; then
3551       AC_CHECK_HEADERS(SLES/OpenSLES.h,
3552         [ VLC_ADD_PLUGIN([opensles_android]) ],
3553         [ AC_MSG_ERROR([cannot find OpenSLES headers])] )
3554   fi
3555 fi
3556
3557 dnl
3558 dnl libsamplerate plugin
3559 dnl
3560 PKG_ENABLE_MODULES_VLC([SAMPLERATE], [], [samplerate], [Resampler with libsamplerate], [auto])
3561
3562 dnl
3563 dnl  OS/2 KAI plugin
3564 dnl
3565 AC_ARG_ENABLE(kai,
3566   [AS_HELP_STRING([--enable-kai],
3567     [support the K Audio Interface KAI (default enabled on OS/2)])],, [
3568   AS_IF([test "$SYS" = "os2"], [
3569     enable_kai="yes"
3570   ])
3571 ])
3572 have_kai="no"
3573 KAI_LIBS=""
3574 AS_IF([test "$enable_kai" != "no"], [
3575   AC_CHECK_HEADERS([kai.h], [
3576     have_kai="yes"
3577     AC_CHECK_LIB(kai, main, [
3578       KAI_LIBS="-lkai"
3579     ])
3580   ])
3581 ])
3582 AC_SUBST(KAI_LIBS)
3583 AM_CONDITIONAL([HAVE_KAI], [test "${have_kai}" = "yes"])
3584
3585 dnl
3586 dnl  Interface plugins
3587 dnl
3588
3589 EXTEND_HELP_STRING([Interface plugins:])
3590
3591 dnl
3592 dnl Hildon UI
3593 dnl
3594 AC_ARG_ENABLE(hildon,
3595   [  --enable-hildon         Hildon touchscreen UI (default disabled)])
3596 AS_IF([test "${enable_hildon}" = "yes"], [
3597   PKG_CHECK_MODULES(HILDON, [hildon-1], [
3598     PKG_CHECK_MODULES(HILDON_FM, hildon-fm-2, [
3599       VLC_ADD_CFLAGS([hildon],[${HILDON_FM_CFLAGS} -DHAVE_HILDON_FM])
3600       VLC_ADD_LIBS([hildon],[${HILDON_FM_LIBS}])
3601     ], [
3602       AC_MSG_WARN([${HILDON_FM_PKG_ERRORS}.])
3603     ])
3604     VLC_ADD_CFLAGS([hildon],[${HILDON_CFLAGS} ${X_CFLAGS}])
3605     VLC_ADD_LIBS([hildon],[${HILDON_LIBS} ${X_LIBS} ${X_PRE_LIBS} -lX11])
3606     VLC_ADD_PLUGIN([hildon])
3607     ALIASES="${ALIASES} mvlc"
3608   ], [
3609     AS_IF([test "${enable_hildon}" = "yes"],[
3610       AC_MSG_ERROR([${HILDON_PKG_ERRORS}.])
3611     ])
3612     enable_hildon="no"
3613   ])
3614 ])
3615 AM_CONDITIONAL(BUILD_HILDON, [test "${enable_hildon}" = "yes"])
3616
3617 dnl
3618 dnl QT 4
3619 dnl
3620 AC_ARG_ENABLE(qt4,
3621   [  --enable-qt4            Qt 4 support (default enabled) ],, [
3622   AS_IF([test "${SYS}" = "darwin"], [enable_qt4=no])
3623 ])
3624 AS_IF([test "${enable_qt4}" != "no"], [
3625   PKG_CHECK_MODULES(QT4, [QtCore QtGui >= 4.6.0], [
3626     VLC_ADD_PLUGIN([qt4])
3627     VLC_ADD_LIBS([qt4],[${QT4_LIBS}])
3628     VLC_ADD_CXXFLAGS([qt4],[${QT4_CFLAGS}])
3629     ALIASES="${ALIASES} qvlc"
3630
3631     AC_LANG_PUSH([C++])
3632     VLC_SAVE_FLAGS
3633
3634     AC_MSG_CHECKING([whether Qt uses X11])
3635     CPPFLAGS="${CPPFLAGS} ${QT4_CFLAGS}"
3636     AC_PREPROC_IFELSE([AC_LANG_SOURCE([
3637 #include <QWidget>
3638 #if !defined (Q_WS_X11)
3639 # error Fail
3640 #endif
3641     ])], [
3642       AC_MSG_RESULT([yes])
3643       VLC_ADD_LIBS([qt4],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3644       VLC_ADD_CXXFLAGS([qt4],[${X_CFLAGS}])
3645     ], [
3646       AC_MSG_RESULT([no])
3647     ])
3648
3649     VLC_RESTORE_FLAGS
3650     AC_LANG_POP([C++])
3651
3652     AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
3653         VLC_ADD_LIBS([qt4],[-lole32])
3654     ])
3655     AS_IF([test "${SYS}" = "darwin" ],[
3656          VLC_ADD_LIBS([qt4], [-Wl,-framework,Cocoa])
3657     ])
3658     AC_PATH_PROGS(MOC, [moc-qt4 moc], moc,`eval $PKG_CONFIG --variable=exec_prefix QtCore`/bin)
3659     AC_PATH_PROG(RCC, rcc, rcc,`eval $PKG_CONFIG --variable=exec_prefix QtCore`/bin)
3660     AC_PATH_PROGS(UIC, [uic-qt4 uic], uic,`eval $PKG_CONFIG --variable=exec_prefix QtCore`/bin)
3661   ], [
3662     AS_IF([test -n "${enable_qt4}"],[
3663       AC_MSG_ERROR([${QT4_PKG_ERRORS}.])
3664     ],[
3665       AC_MSG_WARN([${QT4_PKG_ERRORS}.])
3666     ])
3667     enable_qt4="no"
3668   ])
3669 ])
3670 AM_CONDITIONAL(ENABLE_QT4, [test "x$enable_qt4" != "xno"])
3671
3672 dnl
3673 dnl Simple test for skins2 dependency
3674 dnl
3675 AS_IF([test "x$enable_qt4" = "xno"], [
3676   AS_IF([test "${enable_skins2}" = "yes"], [
3677     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.])
3678   ], [
3679     enable_skins2="no"
3680     AC_MSG_WARN([The skins2 module depends on the Qt4 interface, Qt4 is not built so skins2 is disabled.])
3681   ])
3682 ])
3683
3684 dnl
3685 dnl Skins2 module
3686 dnl
3687 AC_ARG_ENABLE(skins2,
3688   [AS_HELP_STRING([--enable-skins2], [skins interface module (default auto)])])
3689 AS_IF([test "${enable_skins2}" != "no"], [
3690   have_skins_deps="yes"
3691
3692   dnl Win32
3693   AS_IF([test "${SYS}" = "mingw32"], [
3694     VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -DWIN32_SKINS])
3695     VLC_ADD_LIBS([skins2],[-lgdi32 -lole32 -luuid -lmsimg32])
3696   dnl MacOS
3697   ], [test "${SYS}" = "darwin"], [
3698     VLC_ADD_CPPFLAGS([skins2],[ -DMACOSX_SKINS])
3699     VLC_ADD_LIBS([skins2],[-Wl,-framework,Carbon])
3700   dnl Linux/Unix
3701   ], [
3702     PKG_CHECK_MODULES([XPM], [xpm],, [have_skins_deps="no"])
3703     PKG_CHECK_MODULES([XINERAMA], [xinerama],, [have_skins_deps="no"])
3704     PKG_CHECK_MODULES([XEXT], [xext],, [have_skins_deps="no"])
3705     VLC_ADD_CPPFLAGS([skins2],[${X_CFLAGS} ${XEXT_CFLAGS} ${XPM_CFLAGS} -DX11_SKINS])
3706     VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} ${XEXT_LIBS} ${XPM_LIBS} ${XINERAMA_LIBS} -lX11])
3707   ])
3708
3709   dnl for All OSes
3710   VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3711
3712   dnl we need freetype
3713   AS_IF([test "${have_freetype}" != "yes"], [
3714     have_skins_deps="no"
3715   ])
3716
3717   AS_IF([test "${have_skins_deps}" = "no"], [
3718     AS_IF([test "x${enable_skins2}" = "x"], [
3719       AC_MSG_WARN([Skins2 interface disabled due to missing dependencies.])
3720     ], [
3721       AC_MSG_ERROR([Skins2 interface requires FreeType, libxpm, libxext and libxinerama])
3722     ])
3723     enable_skins2="no"
3724   ], [
3725     VLC_ADD_PLUGIN([skins2])
3726     ALIASES="${ALIASES} svlc"
3727     enable_skins2="yes"
3728   ])
3729 ])
3730 AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes"])
3731
3732 AC_ARG_ENABLE(libtar,
3733   [  --enable-libtar         libtar support for skins2 (default auto)])
3734 AS_IF([test "${enable_skins2}" = "yes" && test "${enable_libtar}" != "no"], [
3735   AC_CHECK_HEADERS(libtar.h, [
3736     VLC_ADD_LIBS([skins2],[-ltar])
3737   ])
3738 ])
3739
3740 dnl
3741 dnl  MacOS X gui module
3742 dnl
3743 AC_ARG_ENABLE(macosx,
3744   [  --enable-macosx         Mac OS X gui support (default enabled on Mac OS X)])
3745 if test "x${enable_macosx}" != "xno" -a "${SYS}" = "darwin"
3746 then
3747   VLC_ADD_LIBS([macosx minimal_macosx], [-Wl,-framework,Cocoa -Wl,-framework,OpenGL -Wl,-framework,Carbon -Wl,-framework,CoreServices -Wl,-framework,AGL])
3748   VLC_ADD_OBJCFLAGS([macosx minimal_macosx], [-fobjc-exceptions] )
3749   VLC_ADD_PLUGIN([macosx minimal_macosx])
3750
3751   VLC_ADD_LIBS([macosx], [-Wl,-framework,QTKit -Wl,-framework,IOKit -Wl,-framework,AddressBook -Wl,-framework,WebKit])
3752
3753   if test ! -d ${CONTRIB_DIR}/Sparkle.framework
3754   then
3755     AC_MSG_ERROR([Sparkle framework is required and was not found in ${CONTRIB_DIR}])
3756   fi
3757   VLC_ADD_LIBS([macosx], [-F${CONTRIB_DIR} -Wl,-framework,Sparkle])
3758   VLC_ADD_OBJCFLAGS([macosx], [-F${CONTRIB_DIR}])
3759
3760   if test ! -d ${CONTRIB_DIR}/BGHUDAppKit.framework
3761   then
3762     AC_MSG_ERROR([BGHUDAppKit framework is required and was not found in ${CONTRIB_DIR}])
3763   fi
3764   VLC_ADD_LIBS([macosx], [-F${CONTRIB_DIR} -Wl,-framework,BGHUDAppKit])
3765   VLC_ADD_OBJCFLAGS([macosx], [-F${CONTRIB_DIR}])
3766
3767 fi
3768
3769 dnl
3770 dnl  MacOS X dialor provider
3771 dnl
3772 AC_ARG_ENABLE(macosx-dialog-provider,
3773   [  --enable-macosx-dialog-provider Mac OS X dialog module (default enabled on Mac OS X)])
3774 if test "x${enable_macosx_dialog_provider}" != "xno" &&
3775   (test "${SYS}" = "darwin" || test "${enable_macosx_dialog_provider}" = "yes")
3776 then
3777   VLC_ADD_LIBS([macosx_dialog_provider],[-Wl,-framework,Cocoa])
3778   VLC_ADD_PLUGIN([macosx_dialog_provider])
3779 fi
3780
3781 dnl
3782 dnl  ncurses module
3783 dnl
3784 AC_ARG_ENABLE(ncurses,
3785 [AS_HELP_STRING([--disable-ncurses],[ncurses text-based interface (default auto)])])
3786 if test "${enable_ncurses}" != "no"; then
3787   VLC_SAVE_FLAGS
3788   LIBS=""
3789   AC_CHECK_HEADER(ncurses.h, [
3790     AC_CHECK_LIB(ncursesw, mvprintw, [
3791       AC_SEARCH_LIBS([tgetent], [ncursesw tinfow tinfo], [
3792         VLC_ADD_PLUGIN([ncurses])
3793         ALIASES="${ALIASES} nvlc"
3794         VLC_ADD_LIBS([ncurses],[-lncursesw ${LIBS}])
3795       ], [
3796         AS_IF([test "${enable_ncurses}" = "yes"], [AC_MSG_ERROR([tgetent not found])])
3797       ])
3798     ], [
3799       AS_IF([test "${enable_ncurses}" = "yes"], [AC_MSG_ERROR([libncursesw not found])])
3800     ])
3801   ], [
3802     AS_IF([test "${enable_ncurses}" = "yes"], [AC_MSG_ERROR([ncurses.h not found])])
3803   ])
3804   VLC_RESTORE_FLAGS
3805 fi
3806
3807 dnl
3808 dnl  XOSD plugin
3809 dnl
3810 AC_ARG_ENABLE(xosd,
3811   [  --enable-xosd           xosd interface support (default disabled)])
3812 if test "${enable_xosd}" = "yes"
3813 then
3814   AC_CHECK_HEADERS(xosd.h,
3815     AC_CHECK_LIB(xosd, xosd_set_horizontal_offset, [
3816       AS_IF([test "${no_x}" != "yes"], [
3817           VLC_ADD_PLUGIN([xosd])
3818           VLC_ADD_LIBS([xosd],[-lxosd ${X_LIBS} ${X_PRE_LIBS} -lX11])
3819           VLC_ADD_CFLAGS([xosd],[${X_CFLAGS}])
3820         ],[
3821           AC_MSG_ERROR([Xlib is required with xosd.])
3822         ])
3823     ])
3824   )
3825 fi
3826
3827 dnl
3828 dnl Framebuffer (overlay) plugin
3829 dnl
3830 AC_ARG_ENABLE(fbosd,
3831   [  --enable-fbosd          fbosd interface support (default disabled)])
3832 if test "${enable_fbosd}" = "yes"
3833 then
3834   AC_CHECK_HEADERS(linux/fb.h, [
3835     VLC_ADD_PLUGIN([fbosd])
3836  ])
3837 fi
3838
3839 dnl
3840 dnl  Lirc plugin
3841 dnl
3842 AC_ARG_ENABLE(lirc,
3843   [  --enable-lirc           lirc support (default disabled)])
3844 if test "${enable_lirc}" = "yes"
3845 then
3846   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
3847   if test "${have_lirc}" = "true"
3848   then
3849     VLC_ADD_PLUGIN([lirc])
3850     VLC_ADD_LIBS([lirc],[-llirc_client])
3851   fi
3852 fi
3853
3854 EXTEND_HELP_STRING([Visualisations and Video filter plugins:])
3855 dnl
3856 dnl Visualisation plugin
3857 dnl
3858 AC_ARG_ENABLE(visual,
3859   [  --enable-visual         visualisation plugin (default enabled)])
3860 if test "${enable_visual}" != "no"
3861 then
3862     VLC_ADD_PLUGIN([visual])
3863 fi
3864
3865 dnl
3866 dnl  goom visualization plugin
3867 dnl
3868 PKG_ENABLE_MODULES_VLC([GOOM], [], [libgoom2], [goom visualization plugin], [auto])
3869
3870 dnl
3871 dnl libprojectM visualization plugin
3872 dnl
3873 AC_ARG_ENABLE(projectm,
3874   [  --enable-projectm       projectM visualization plugin (default enabled)])
3875 AS_IF([test "${enable_projectm}" != "no"],
3876   [
3877     PKG_CHECK_MODULES(PROJECTM, libprojectM,
3878     [
3879       VLC_ADD_PLUGIN([projectm])
3880       VLC_ADD_CXXFLAGS([projectm],[$PROJECTM_CFLAGS])
3881       VLC_ADD_LIBS([projectm],[$PROJECTM_LIBS])
3882       PKG_CHECK_MODULES(PROJECTM2, [libprojectM >= 2.0.0],
3883         [ AC_DEFINE([HAVE_PROJECTM2], 1, [Define to 1 if using libprojectM 2.x]) ],
3884         [ AC_MSG_WARN( [Using libprojectM version 1] )
3885       ])
3886     ],[
3887       AC_MSG_WARN([${PROJECTM_PKG_ERRORS}.])
3888     ])
3889   ])
3890
3891 dnl
3892 dnl Vovoid VSXu visualization plugin
3893 dnl
3894 AC_ARG_ENABLE(vsxu,
3895   [  --enable-vsxu           Vovoid VSXu visualization plugin (default auto)])
3896 AS_IF([test "${enable_vsxu}" != "no"],
3897   [
3898     PKG_CHECK_MODULES(VSXU, libvsxu,
3899     [
3900       VLC_ADD_PLUGIN([vsxu])
3901       VLC_ADD_CXXFLAGS([vsxu],[$VSXU_CFLAGS])
3902       VLC_ADD_LIBS([vsxu],[$VSXU_LIBS])
3903     ],[
3904       AC_MSG_WARN([${VSXU_PKG_ERRORS}.])
3905     ])
3906   ])
3907
3908 dnl
3909 dnl  AtmoLight (homemade Philips Ambilight clone)
3910 dnl
3911 AC_ARG_ENABLE(atmo,
3912 AS_HELP_STRING([--disable-atmo],[AtmoLight (homemade Philips Ambilight clone)
3913                 (default enabled)]),, [enable_atmo="yes"])
3914 AS_IF([test "${enable_atmo}" != no], [
3915   AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "linux"], [
3916     AC_LANG_PUSH(C++)
3917     VLC_ADD_PLUGIN([atmo])
3918     AC_LANG_POP(C++)
3919   ])
3920 ])
3921
3922 EXTEND_HELP_STRING([Service Discovery plugins:])
3923 dnl
3924 dnl  Bonjour services discovery
3925 PKG_ENABLE_MODULES_VLC([BONJOUR], [], [avahi-client >= 0.6], [Bonjour services discovery], [auto])
3926
3927 dnl
3928 dnl  libudev services discovery
3929 PKG_ENABLE_MODULES_VLC([UDEV], [], [libudev >= 142], [Linux udev services discovery], [auto])
3930
3931 dnl
3932 dnl MTP devices services discovery
3933 PKG_ENABLE_MODULES_VLC([MTP], [mtp access_mtp], [libmtp >= 1.0.0], [MTP devices support], [auto])
3934
3935 dnl
3936 dnl UPnP Plugin (Intel SDK)
3937 dnl
3938 PKG_ENABLE_MODULES_VLC([UPNP], [upnp], [libupnp], [Intel UPNP SDK],[auto])
3939 VLC_ADD_CXXFLAGS([upnp],[${UPNP_CFLAGS}])
3940
3941 EXTEND_HELP_STRING([Misc options:])
3942
3943 dnl
3944 dnl  libxml2 module
3945 dnl
3946 PKG_ENABLE_MODULES_VLC([LIBXML2], [xml], [libxml-2.0 >= 2.5], [libxml2 support],[auto])
3947
3948
3949 dnl
3950 dnl libgcrypt
3951 dnl
3952 AC_ARG_ENABLE(libgcrypt,
3953   [  --disable-libgcrypt     gcrypt support (default enabled)])
3954 AS_IF([test "${enable_libgcrypt}" != "no"], [
3955   AC_CHECK_DECL([GCRYCTL_SET_THREAD_CBS], [
3956     libgcrypt-config --version >/dev/null || \
3957         AC_MSG_ERROR([gcrypt.h present but libgcrypt-config could not be found])
3958     AC_CHECK_LIB(gcrypt, gcry_control, [
3959       have_libgcrypt="yes"
3960       GCRYPT_CFLAGS="`libgcrypt-config --cflags`"
3961       GCRYPT_LIBS="`libgcrypt-config --libs`"
3962     ], [
3963       AC_MSG_ERROR([libgcrypt not found. Install libgcrypt or use --disable-libgcrypt. Have a nice day.])
3964     ], [`libgcrypt-config --libs`])
3965   ], [
3966     AC_MSG_ERROR([libgcrypt version 1.1.94 or higher not found. Install libgcrypt or use --disable-libgcrypt. Have a nice day.])
3967   ], [#include <gcrypt.h>]
3968   )
3969 ])
3970
3971 AC_SUBST(GCRYPT_CFLAGS)
3972 AC_SUBST(GCRYPT_LIBS)
3973 AM_CONDITIONAL([HAVE_GCRYPT], [test "${have_libgcrypt}" = "yes"])
3974
3975 dnl
3976 dnl TLS/SSL
3977 dnl
3978 AC_ARG_ENABLE(gnutls,
3979   [  --enable-gnutls         GNU TLS TLS/SSL support (default enabled)])
3980
3981 AS_IF([test "${have_libgcrypt}" != "yes"], [
3982   AS_IF([test "${enable_gnutls}" = "yes"], [
3983     AC_MSG_ERROR([--enable-gnutls and --disable-libgcrypt are mutually exclusive.])
3984   ])
3985   enable_gnutls="no"
3986 ])
3987 AS_IF([test "${enable_gnutls}" != "no"], [
3988   PKG_CHECK_MODULES(GNUTLS, [gnutls >= 2.0.0], [
3989     VLC_ADD_PLUGIN([gnutls])
3990   ], [
3991     AS_IF([test -n "${enable_gnutls}"], [
3992       AC_MSG_ERROR([${GNUTLS_PKG_ERRORS}.)])
3993     ])
3994   ])
3995 ])
3996
3997
3998 dnl
3999 dnl Nokia MCE plugin (Maemo screen unblanking)
4000 dnl
4001 PKG_CHECK_MODULES([MCE], [dbus-1 mce], [VLC_ADD_PLUGIN([mce])], [true])
4002
4003
4004 AS_IF([test -f "/etc/maemo_version"], [
4005   AC_DEFINE([HAVE_MAEMO], 1, [Define to 1 if building for the Maemo platform.])
4006 ])
4007
4008
4009 dnl
4010 dnl Taglib plugin
4011 dnl
4012 AC_ARG_ENABLE(taglib,
4013   [AS_HELP_STRING([--disable-taglib],
4014     [do not use TagLib (default enabled)])])
4015 AS_IF([test "${enable_taglib}" != "no"], [
4016   PKG_CHECK_MODULES(TAGLIB, taglib >= 1.5, [
4017     VLC_ADD_PLUGIN([taglib])
4018     VLC_ADD_LIBS([taglib],[$TAGLIB_LIBS -lz])
4019     VLC_ADD_CXXFLAGS([taglib],[$TAGLIB_CFLAGS])
4020   ], [
4021     AC_MSG_WARN([${TAGLIB_PKG_ERRORS}.])])
4022 ])
4023
4024
4025 dnl
4026 dnl update checking system
4027 dnl
4028 AC_ARG_ENABLE(update-check,
4029   [  --enable-update-check   update checking system (default disabled)])
4030 if test "${enable_update_check}" = "yes"
4031 then
4032   if test "${have_libgcrypt}" != "yes"
4033   then
4034     AC_MSG_ERROR([libgcrypt is required for update checking system])
4035   fi
4036   VLC_ADD_LIBS([libvlccore], [${GCRYPT_LIBS}])
4037   VLC_ADD_CFLAGS([libvlccore], [${GCRYPT_CFLAGS}])
4038   AC_DEFINE([UPDATE_CHECK], 1, [Define if you want to use the VLC update mechanism])
4039 fi
4040
4041 dnl
4042 dnl Growl notification plugin
4043 dnl
4044 AC_ARG_ENABLE(growl,
4045   [  --enable-growl          growl notification plugin (default disabled)],,
4046   [enable_growl=no])
4047 AS_IF([test "${enable_growl}" != "no"], [
4048     AC_CHECK_HEADERS(${CONTRIB_DIR}/Growl.framework/Versions/A/Headers/GrowlDefines.h, [
4049       VLC_ADD_PLUGIN([growl])
4050       VLC_ADD_LIBS([growl], [-F${CONTRIB_DIR} -Wl,-framework,Growl,-framework,CoreFoundation])
4051       VLC_ADD_OBJCFLAGS([growl], [-F${CONTRIB_DIR}])
4052       VLC_ADD_OBJCFLAGS([growl], [-fobjc-exceptions] )
4053     ])
4054   ]
4055 )
4056
4057 dnl
4058 dnl Libnotify notification plugin
4059 dnl
4060 PKG_ENABLE_MODULES_VLC([NOTIFY], [], [libnotify gtk+-2.0], [libnotify notification], [auto])
4061
4062 dnl
4063 dnl media library
4064 dnl
4065 AC_ARG_ENABLE(media-library,
4066     [  --enable-media-library  media library (default disabled)])
4067 AS_IF([test "${enable_media_library}" = "yes"], [
4068   AC_DEFINE([MEDIA_LIBRARY], 1, [Define if you want to use the VLC media library])
4069   VLC_ADD_CPPFLAGS([qt4],"-DMEDIA_LIBRARY")
4070   VLC_ADD_PLUGIN([media_library])
4071
4072 dnl
4073 dnl SQLite
4074 dnl
4075   AS_IF([test "${SYS}" != "darwin"], [
4076     PKG_ENABLE_MODULES_VLC([SQLITE], [], [sqlite3 >= 3.6.0], [sqlite3], [auto])
4077   ], [
4078     AS_IF([test "${enable_sqlite}" != "no"], [
4079       AC_CHECK_HEADERS(sqlite3.h, [
4080         VLC_ADD_PLUGIN([sqlite])
4081         VLC_ADD_LIBS([sqlite], [-lsqlite3])
4082       ], [
4083         AC_MSG_ERROR([sqlite3 is required for the media library])
4084       ])
4085     ])
4086   ])
4087 ])
4088
4089
4090 dnl
4091 dnl  Endianness check
4092 dnl
4093 AC_C_BIGENDIAN
4094 AS_IF([test "${ac_cv_c_bigendian}" = "yes"], [
4095   DEFS_BIGENDIAN="-DWORDS_BIGENDIAN=1"
4096 ], [
4097   DEFS_BIGENDIAN=""
4098 ])
4099 AC_SUBST(DEFS_BIGENDIAN)
4100
4101 dnl
4102 dnl Where to install KDE solid .desktop
4103 dnl
4104 AC_ARG_VAR([KDE4_CONFIG], [kde4-config utility])
4105 AS_IF([test "x$KDE4_CONFIG" = "x"], [
4106   KDE4_CONFIG="kde4-config"
4107 ])
4108
4109 AC_ARG_WITH(kde-solid,
4110   AS_HELP_STRING([--with-kde-solid=PATH],
4111                  [KDE Solid actions directory (auto)]),, [
4112
4113 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" -a "${SYS}" != "darwin" ; then
4114   with_kde_solid="yes"
4115 fi
4116 ])
4117 soliddatadir=""
4118 AS_IF([test "${with_kde_solid}" != "no"], [
4119   AS_IF([test "${with_kde_solid}" = "yes"], [
4120     kde4datadir="`${KDE4_CONFIG} --install data`"
4121     AS_IF([test "x$kde4datadir" = "x"], [kde4datadir='${datadir}/kde4/apps'])
4122     soliddatadir="${kde4datadir}/solid/actions"
4123   ], [
4124     soliddatadir="${with_kde_solid}"
4125   ])
4126 ])
4127 AC_SUBST(soliddatadir)
4128 AM_CONDITIONAL(KDE_SOLID, [test "x${soliddatadir}" != "x"])
4129
4130 dnl
4131 dnl  DLL loader copied from MPlayer copied from somewhere else (WINE ?)
4132 dnl
4133 loader=false
4134 AC_ARG_ENABLE(loader,
4135   AS_HELP_STRING([--enable-loader],[build DLL loader for ELF i386 platforms
4136           (default disabled)]))
4137 AM_CONDITIONAL(LOADER, [test "${enable_loader}" = "yes"])
4138 AS_IF([test "${enable_loader}" = "yes"],
4139   [ VLC_ADD_PLUGIN([dmo])
4140     VLC_ADD_CPPFLAGS([dmo quicktime ],[-I\\\${top_srcdir}/modules/codec/loader])
4141     VLC_ADD_LIBS([dmo quicktime ],[\\\${top_builddir}/modules/codec/loader/libloader.la])
4142     VLC_ADD_LIBS([dmo quicktime], [-lpthread])
4143   ])
4144
4145 EXTEND_HELP_STRING([Components:])
4146
4147 dnl
4148 dnl  the VLC binary
4149 dnl
4150 AC_ARG_ENABLE(vlc,
4151   [  --enable-vlc            build the VLC media player (default enabled)])
4152 AM_CONDITIONAL(BUILD_VLC, [test "${enable_vlc}" != "no"])
4153
4154 AC_ARG_ENABLE(macosx-vlc-app,
4155   [  --enable-macosx-vlc-app build the VLC media player (default enabled on Mac OS X)])
4156 AM_CONDITIONAL(BUILD_MACOSX_VLC_APP, [test "${enable_macosx_vlc_app}" != "no" &&
4157     (test "${SYS}" = "darwin" || test "${enable_macosx_vlc_app}" = "yes") ])
4158
4159 dnl
4160 dnl  Stuff used by the program
4161 dnl
4162 VERSION_MESSAGE="${VERSION} ${CODENAME}"
4163 COPYRIGHT_MESSAGE="Copyright © ${COPYRIGHT_YEARS} the VideoLAN team"
4164 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION_MESSAGE}", [Simple version string])
4165 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "${COPYRIGHT_MESSAGE}", [Copyright string])
4166 AC_DEFINE_UNQUOTED(COPYRIGHT_YEARS, "${COPYRIGHT_YEARS}", [The copyright years])
4167 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4168 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,${VERSION_MAJOR}, [version major number])
4169 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,${VERSION_MINOR}, [version minor number])
4170 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,${VERSION_REVISION}, [version revision number])
4171 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,${VERSION_EXTRA}, [version extra number])
4172 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_DEV,"${VERSION_DEV}", [version development string])
4173 AC_SUBST(COPYRIGHT_MESSAGE)
4174 AC_SUBST(VERSION_MESSAGE)
4175 AC_SUBST(VERSION_MAJOR)
4176 AC_SUBST(VERSION_MINOR)
4177 AC_SUBST(VERSION_REVISION)
4178 AC_SUBST(VERSION_EXTRA)
4179 AC_SUBST(COPYRIGHT_YEARS)
4180 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami`", [user who ran configure])
4181 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname -f 2>/dev/null || hostname`", [host which ran configure])
4182 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1`", [compiler])
4183 dnl
4184 dnl  Handle substvars that use $(top_srcdir)
4185 dnl
4186 CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/include ${CPPFLAGS}"
4187
4188 dnl
4189 dnl  Configuration is finished
4190 dnl
4191 AC_SUBST(SYS)
4192 AC_SUBST(ARCH)
4193 AC_SUBST(ALIASES)
4194 AC_SUBST(ASM)
4195 AC_SUBST(MOC)
4196 AC_SUBST(RCC)
4197 AC_SUBST(UIC)
4198 AC_SUBST(WINDRES)
4199 AC_SUBST(WINE_SDK_PATH)
4200 AC_SUBST(LIBEXT)
4201 AC_SUBST(AM_CPPFLAGS)
4202 AC_SUBST(MACOSX_DEPLOYMENT_TARGET)
4203 AC_SUBST(FILE_LIBVLCCORE_DLL)
4204 AC_SUBST(FILE_LIBVLC_DLL)
4205
4206 AC_CONFIG_FILES([
4207   Makefile
4208   doc/Makefile
4209   modules/Makefile
4210   m4/Makefile
4211   po/Makefile.in
4212   share/Makefile
4213   compat/Makefile
4214   src/Makefile
4215   src/test/Makefile
4216   lib/Makefile
4217   bin/Makefile
4218   test/Makefile
4219   modules/access/Makefile
4220   modules/access/bd/Makefile
4221   modules/access/dshow/Makefile
4222   modules/access/mms/Makefile
4223   modules/access/rtp/Makefile
4224   modules/access/rtsp/Makefile
4225   modules/access/vcd/Makefile
4226   modules/access/vcdx/Makefile
4227   modules/access/screen/Makefile
4228   modules/access/zip/Makefile
4229   modules/access/zip/unzip/Makefile
4230   modules/access_output/Makefile
4231   modules/audio_filter/Makefile
4232   modules/audio_mixer/Makefile
4233   modules/audio_output/Makefile
4234   modules/codec/Makefile
4235   modules/codec/avcodec/Makefile
4236   modules/codec/dmo/Makefile
4237   modules/codec/loader/Makefile
4238   modules/codec/omxil/Makefile
4239   modules/codec/shine/Makefile
4240   modules/codec/spudec/Makefile
4241   modules/codec/wmafixed/Makefile
4242   modules/control/Makefile
4243   modules/control/dbus/Makefile
4244   modules/control/globalhotkeys/Makefile
4245   modules/demux/Makefile
4246   modules/demux/asf/Makefile
4247   modules/demux/avformat/Makefile
4248   modules/demux/avi/Makefile
4249   modules/demux/mkv/Makefile
4250   modules/demux/mp4/Makefile
4251   modules/demux/mpeg/Makefile
4252   modules/demux/playlist/Makefile
4253   modules/gui/Makefile
4254   modules/gui/macosx/Makefile
4255   modules/gui/hildon/Makefile
4256   modules/gui/minimal_macosx/Makefile
4257   modules/gui/macosx_dialog_provider/Makefile
4258   modules/gui/qt4/Makefile
4259   modules/gui/skins2/Makefile
4260   modules/lua/Makefile
4261   modules/meta_engine/Makefile
4262   modules/misc/Makefile
4263   modules/misc/playlist/Makefile
4264   modules/misc/osd/Makefile
4265   modules/misc/stats/Makefile
4266   modules/media_library/Makefile
4267   modules/mux/Makefile
4268   modules/mux/mpeg/Makefile
4269   modules/notify/Makefile
4270   modules/packetizer/Makefile
4271   modules/services_discovery/Makefile
4272   modules/stream_filter/Makefile
4273   modules/stream_filter/dash/Makefile
4274   modules/stream_out/Makefile
4275   modules/stream_out/transcode/Makefile
4276   modules/text_renderer/Makefile
4277   modules/video_chroma/Makefile
4278   modules/video_filter/Makefile
4279   modules/video_filter/dynamicoverlay/Makefile
4280   modules/video_output/Makefile
4281   modules/video_output/msw/Makefile
4282   modules/visualization/Makefile
4283   modules/visualization/visual/Makefile
4284   modules/mmx/Makefile
4285   modules/mmxext/Makefile
4286   modules/3dnow/Makefile
4287   modules/sse2/Makefile
4288   modules/altivec/Makefile
4289   modules/arm_neon/Makefile
4290 ])
4291
4292 AM_COND_IF([HAVE_WIN32], [
4293   AC_CONFIG_FILES([
4294     extras/package/win32/spad.nsi
4295     extras/package/win32/vlc.win32.nsi
4296   ])
4297 ])
4298
4299 AM_COND_IF([HAVE_DARWIN], [
4300   AC_CONFIG_FILES([
4301     extras/package/macosx/Info.plist
4302     extras/package/macosx/Resources/English.lproj/InfoPlist.strings
4303   ])
4304 ])
4305
4306 dnl Generate makefiles
4307 AC_OUTPUT
4308
4309 dnl Do we have to use make or gmake ?
4310 if make --version 2>&1|grep -q GNU
4311 then
4312     # GNU make, all seems good
4313     MAKE=make
4314 else
4315     # Known GNU make alias (on BSD)
4316     MAKE=gmake
4317 fi
4318 dnl Shortcut to nice compile message
4319 if test -n $SHELL; then
4320   SHELL=${CONFIG_SHELL-/bin/sh}
4321 fi
4322 rm -f compile
4323 echo "#! $SHELL
4324 rm -f .error\$\$
4325 ERROR=0
4326 export PATH=\"$PATH\" LANG=C
4327 ($MAKE V=1 \$@ 2>&1 || touch .error\$\$)| `sed -ne \"s/^top_srcdir *= *//p\" < Makefile`/extras/buildsystem/make.pl
4328 test -f .error\$\$ && ERROR=1
4329 rm -f .error\$\$
4330 exit \$ERROR" >compile
4331 chmod a+x compile
4332
4333 echo "
4334 libvlc configuration
4335 --------------------
4336 version               : ${VERSION}
4337 system                : ${SYS}
4338 architecture          : ${ARCH}
4339 optimizations         : ${enable_optimizations}"
4340 if test "${enable_vlc}" != "no"; then
4341 echo "vlc aliases           :${ALIASES}"
4342 else
4343 echo "build vlc executable  : no"
4344 fi
4345 echo "
4346 To build vlc and its plugins, type \`$MAKE', or \`./compile' if you like nice colors."