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