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