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