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