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