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