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