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