Qt: don't show Ml button if it does nothing
[vlc/solaris.git] / configure.ac
blob52d8cf7222d10c62aec1aee109822f56fdd5a47d
1 dnl Autoconf settings for vlc
3 AC_COPYRIGHT([Copyright 2002-2012 VLC authors and VideoLAN])
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
12 PKGDIR="vlc"
13 AC_SUBST(PKGDIR)
15 CONFIGURE_LINE="`echo "$0 $ac_configure_args" | sed -e 's/\\\/\\\\\\\/g'`"
16 CODENAME="Rincewind"
17 COPYRIGHT_YEARS="1996-2012"
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
27 AM_INIT_AUTOMAKE(tar-ustar color-tests)
28 AM_CONFIG_HEADER(config.h)
30 # Disable with "./configure --disable-silent-rules" or "make V=1"
31 AM_SILENT_RULES([yes])
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
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)
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.])
63 AM_PROG_CC_C_O
64 AC_PROG_CXX
65 AC_PROG_CPP
66 AC_PROG_OBJC
67 _AM_DEPENDENCIES([OBJC])
68 AC_PROG_EGREP
69 AC_PROG_MAKE_SET
70 AC_PROG_INSTALL
71 AM_PROG_AS
73 AC_ARG_VAR([DESKTOP_FILE_VALIDATE], [Validator for desktop entry files])
74 AC_CHECK_PROGS(DESKTOP_FILE_VALIDATE, [${DESKTOP_FILE_VALIDATE} desktop-file-validate], :)
76 dnl Check for compiler properties
77 AC_C_CONST
78 AC_C_INLINE
79 AC_C_RESTRICT
81 dnl Extend the --help string at the current spot.
82 AC_DEFUN([EXTEND_HELP_STRING], [m4_divert_once([HELP_ENABLE], [$1])])
84 dnl Allow binary package maintainer to pass a custom string to avoid
85 dnl cache problem
86 AC_ARG_WITH(binary-version,
87     AS_HELP_STRING([--with-binary-version=STRING],
88          [To avoid plugins cache problem between binary version]),[],[])
89 AS_IF([test -n "${with_binary_version}"],[
90     AC_DEFINE_UNQUOTED([DISTRO_VERSION],["${with_binary_version}"],
91          [Binary specific version])
94 dnl
95 dnl  Check the operating system
96 dnl
97 HAVE_WIN64="0"
98 case "${host_os}" in
99   "")
100     SYS=unknown
101     ;;
102   linux*)
103     SYS=linux
104     ;;
105   bsdi*)
106     SYS=bsdi
107     CFLAGS="${CFLAGS} -pthread"
108     VLC_ADD_LIBS([vcd cdda vcdx],[-ldvd])
109     ;;
110   *bsd*)
111     SYS="${host_os}"
112     CFLAGS="${CFLAGS} -pthread"
113     case "${host_os}" in
114       freebsd*)
115         CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
116         LDFLAGS="${LDFLAGS} -L/usr/local/lib"
117         ;;
118       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     esac
123     ;;
124   darwin*)
126     dnl Force gcc "-arch" flag
127     ARCH_flag=""
128     case "${host}" in
129       i?86*)
130         ARCH_flag="-arch i386"
131       ;;
132       ppc64*)
133         ARCH_flag="-arch ppc64"
134       ;;
135       ppc*)
136         ARCH_flag="-arch ppc"
137       ;;
138       x86_64*)
139         ARCH_flag="-arch x86_64"
140       ;;
141     esac
143     SYS=darwin
144     CFLAGS="${CFLAGS} -D_INTL_REDIRECT_MACROS ${ARCH_flag}"
145     CXXFLAGS="${CXXFLAGS} -D_INTL_REDIRECT_MACROS ${ARCH_flag}"
146     CPPFLAGS="${CPPFLAGS} ${ARCH_flag}"
147     OBJCFLAGS="${OBJCFLAGS} -D_INTL_REDIRECT_MACROS -std=gnu99 ${ARCH_flag}"
148     LDFLAGS="${LDFLAGS} -Wl,-headerpad_max_install_names ${ARCH_flag}"
149     VLC_ADD_LIBS([mkv mp4 motion], [-Wl,-framework,IOKit,-framework,CoreFoundation])
150     VLC_ADD_LIBS([libvlc vlc],[-Wl,-undefined,dynamic_lookup])
151     VLC_ADD_LIBS([avcodec avformat access_avio swscale postproc i420_rgb_mmx x264],[-Wl,-read_only_relocs,suppress])
152     VLC_ADD_CFLAGS([motion],[-fconstant-cfstrings])
153     VLC_ADD_LIBS([libvlccore],[-Wl,-framework,CoreFoundation])
155     dnl Allow binaries created on Lion to run on earlier releases
156     AC_LIBOBJ([getdelim])
158     dnl
159     dnl  Check for Mac OS X SDK settings
160     dnl
161     AC_ARG_WITH(macosx-sdk,
162       [AS_HELP_STRING([--with-macosx-sdk=DIR],
163         [compile using the SDK in DIR])])
164     test "${with_macosx_sdk}" = "" && with_macosx_sdk=/Developer/SDKs/MacOSX10.6.sdk
165     ! test -d "${with_macosx_sdk}" && AC_MSG_ERROR([SDK "${with_macosx_sdk}" not found])
166     AC_ARG_WITH(macosx-version-min,
167       [AS_HELP_STRING([--with-macosx-version-min=VERSION],
168         [compile for MacOS X VERSION and above])])
169     if test "${with_macosx_version_min}" = "" ; then
170        with_macosx_version_min=10.5
171     fi
172     MACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}
173     CPP="${CPP} -isysroot ${with_macosx_sdk} -mmacosx-version-min=${with_macosx_version_min}"
174     CC="${CC} -isysroot ${with_macosx_sdk} -mmacosx-version-min=${with_macosx_version_min}"
175     CXX="${CXX} -isysroot ${with_macosx_sdk} -mmacosx-version-min=${with_macosx_version_min}"
176     OBJC="${OBJC} -isysroot ${with_macosx_sdk} -mmacosx-version-min=${with_macosx_version_min}"
177     LD="${LD} -syslibroot ${with_macosx_sdk} -mmacosx_version_min=${with_macosx_version_min}"
178     CFLAGS="${CFLAGS} -DMACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}"
179     CXXFLAGS="${CXXFLAGS} -DMACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}"
180     OBJCFLAGS="${OBJCFLAGS} -DMACOSX_DEPLOYMENT_TARGET=${with_macosx_version_min}"
181     export MACOSX_DEPLOYMENT_TARGET
182     ;;
183   *mingw32* | *cygwin* | *wince* | *mingwce*)
184     AC_CHECK_TOOL(WINDRES, windres, :)
185     AC_CHECK_TOOL(OBJCOPY, objcopy, :)
186     AC_DEFINE([_WIN32_WINNT], 0x0502, [Define to '0x0502' for Windows XP SP2 APIs.])
187     AC_DEFINE([_WIN32_IE], 0x0600, [Define to '0x0600' for IE 6.0 (and shell) APIs.])
189     case "${host_os}" in
190       *wince* | *mingwce* | *mingw32ce*)
191         SYS=mingwce
192         dnl Sadly CeGCC still needs non-wince macros
193         ;;
194       *mingw32*)
195         SYS=mingw32
196         ;;
197       *cygwin*)
198         dnl Check if we are using the mno-cygwin mode in which case we are
199         dnl actually dealing with a mingw32 compiler.
200         AC_EGREP_CPP(yes,
201             [#ifdef WIN32
202              yes
203              #endif],
204             SYS=mingw32, AC_MSG_ERROR([VLC requires -mno-cygwin]))
205         ;;
206     esac
208     if test "${SYS}" = "mingw32"; then
209         VLC_ADD_LIBS([libvlccore],[-lnetapi32 -lwinmm])
210         VLC_ADD_LDFLAGS([vlc],[-mwindows])
211         VLC_ADD_LIBS([win32text],[-lgdi32])
212         VLC_ADD_LIBS([cdda vcdx sdl_image vout_sdl],[-lwinmm])
213         AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos)
214         ac_default_prefix="`pwd`/_win32"
215         DESTDIR="`pwd`/_win32/"
217         dnl
218         dnl NSIS Installer prefix and WIN64
219         dnl
220         case "${host}" in
221             amd64*|x86_64*)
222                 HAVE_WIN64="1"
223                 PROGRAMFILES="PROGRAMFILES64"
224             ;;
225             *)
226                 PROGRAMFILES="PROGRAMFILES"
227             ;;
228         esac
229         AC_SUBST(PROGRAMFILES)
231     fi
232     if test "${SYS}" = "mingwce"; then
233         VLC_ADD_LIBS([libvlccore],[-lmmtimer])
234         AC_CHECK_PROGS(U2D, [unix2dos todos], unix2dos)
235         ac_default_prefix="`pwd`/_wince"
236         DESTDIR="`pwd`/_wince/"
237     fi
238     ;;
239   *nto*)
240     SYS=nto
241     ;;
242   solaris*)
243     SYS=solaris
244     ;;
245   hpux*)
246     SYS=hpux
247     ;;
248   symbian*)
249     SYS=symbian
250     ;;
251   *os2*)
252     SYS=os2
253     LDFLAGS="${LDFLAGS} -Zomf -Zbin-files -Zargs-wild"
254     ;;
255   *)
256     SYS="${host_os}"
257     ;;
258 esac
259 AM_CONDITIONAL(HAVE_DARWIN,  test "${SYS}" = "darwin")
260 AM_CONDITIONAL(HAVE_LINUX,   test "${SYS}" = "linux")
261 AM_CONDITIONAL(HAVE_OS2,     test "${SYS}" = "os2")
262 AM_CONDITIONAL(HAVE_WIN32,   test "${SYS}" = "mingw32")
263 AM_CONDITIONAL(HAVE_WIN64,   test "${HAVE_WIN64}" = "1")
264 AM_CONDITIONAL(HAVE_WINCE,   test "${SYS}" = "mingwce")
265 AM_CONDITIONAL(HAVE_SYMBIAN, test "${SYS}" = "symbian")
268 dnl  Check for the contrib directory
270 AC_ARG_WITH(contrib,
271   [AS_HELP_STRING([--with-contrib[=DIR]],
272     [search for 3rd party libraries in DIR/include and DIR/lib])
274 AC_MSG_CHECKING([for 3rd party libraries path])
275 AS_IF([test -z "${with_contrib}" || test "${with_contrib}" = "yes"], [
276   CONTRIB_DIR="${srcdir}/contrib/${host}"
277   AS_IF([test ! -d "${CONTRIB_DIR}"], [
278     echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
279     CONTRIB_DIR="${srcdir}/contrib/`$CC -dumpmachine`"
280     AS_IF([test ! -d "${CONTRIB_DIR}"], [
281       echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
282       CONTRIB_DIR="${srcdir}/extras/contrib/hosts/${host}"
283       AS_IF([test ! -d "${CONTRIB_DIR}"], [
284         echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
285         CONTRIB_DIR="${srcdir}/extras/contrib/hosts/`$CC -dumpmachine`"
286         AS_IF([test ! -d "${CONTRIB_DIR}"], [
287           echo "${CONTRIB_DIR} not found" >&AS_MESSAGE_LOG_FD
288           CONTRIB_DIR=""
289           AC_MSG_RESULT([not found])
290         ])
291       ])
292     ])
293   ])
294 ], [
295   AS_IF([test "${with_contrib}" != "no"], [
296     CONTRIB_DIR="${with_contrib}"
297   ], [
298     CONTRIB_DIR=""
299     AC_MSG_RESULT([disabled])
300   ])
302 AS_IF([test -n "${CONTRIB_DIR}"], [
303   AS_IF([test -d "${CONTRIB_DIR}/lib"],[
304     CONTRIB_DIR=`cd "${CONTRIB_DIR}" && pwd`
305   ], [
306     echo "${CONTRIB_DIR}/lib not found" >&AS_MESSAGE_LOG_FD
307     CONTRIB_DIR=""
308     AC_MSG_RESULT([not usable])
309   ])
312 AS_IF([test -n "${CONTRIB_DIR}"], [
313   AC_MSG_RESULT([${CONTRIB_DIR}])
314   export PATH=${CONTRIB_DIR}/bin:$PATH
315   CPPFLAGS="${CPPFLAGS} -I${CONTRIB_DIR}/include"
316   CFLAGS="${CFLAGS} -I${CONTRIB_DIR}/include"
317   CXXFLAGS="${CXXFLAGS} -I${CONTRIB_DIR}/include"
318   OBJCFLAGS="${OBJCFLAGS} -I${CONTRIB_DIR}/include"
319   AS_IF([test "$build" = "$host" -o "$PKG_CONFIG_LIBDIR"], [
320     export PKG_CONFIG_PATH="${CONTRIB_DIR}/lib/pkgconfig:$PKG_CONFIG_PATH"
321   ], [
322     export PKG_CONFIG_LIBDIR="${CONTRIB_DIR}/lib/pkgconfig"
323   ])
324   LDFLAGS="${LDFLAGS} -L${CONTRIB_DIR}/lib"
326   AS_IF([test "${SYS}" = "darwin"], [
327     export LD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$LD_LIBRARY_PATH"
328     export DYLD_LIBRARY_PATH="${CONTRIB_DIR}/lib:$DYLD_LIBRARY_PATH"
329   ])
330 ], [
331   AS_IF([test -n "${with_contrib}" && test "${with_contrib}" != "no"], [
332     AC_MSG_ERROR([Third party libraries not found!])
333   ])
335 AC_SUBST(CONTRIB_DIR)
338 dnl Sadly autoconf does not think about testing foo.exe when ask to test
339 dnl for program foo on win32
341 case "${build_os}" in
342     cygwin|msys)
343         ac_executable_extensions=".exe"
344     ;;
345     *)
346     ;;
347 esac
349 dnl Android is linux, but a bit different
350 AS_IF([test "$SYS" = linux],[
351     AC_MSG_CHECKING([for an Android system])
352     AC_PREPROC_IFELSE([AC_LANG_PROGRAM(
353         [[#ifndef __ANDROID__
354          # error Not Android
355          #endif
356         ]],[[;]])
357     ],[
358       HAVE_ANDROID="1"
359       AC_MSG_RESULT([yes])
360     ],[
361       AC_MSG_RESULT([no])
362     ])
364 AM_CONDITIONAL(HAVE_ANDROID, test "${HAVE_ANDROID}" = "1")
367 dnl  Libtool
368 dnl  It's very bad, but our former custom system was worst
369 dnl  -- Courmisch
372 dnl override platform specific check for dependent libraries
373 dnl otherwise libtool linking of shared libraries will
374 dnl fail on anything other than pass_all.
375 AC_CACHE_VAL(lt_cv_deplibs_check_method,
376     [lt_cv_deplibs_check_method=pass_all])
378 LT_INIT([dlopen win32-dll shared disable-static])
379 LT_LANG([C++])
380 LT_LANG([Windows Resource])
382 m4_undefine([AC_DEPLIBS_CHECK_METHOD])
383 m4_defun([AC_DEPLIBS_CHECK_METHOD],[])
385 lt_cv_deplibs_check_method=pass_all
387 AS_IF([test "${enable_shared}" = "no" -a "${enable_vlc}" != "no"], [
388   AC_MSG_ERROR([VLC is based on plugins. Shared libraries cannot be disabled.])
392 dnl Gettext stuff
394 AM_GNU_GETTEXT_VERSION([0.18.1])
395 AM_GNU_GETTEXT([external])
398 dnl Iconv stuff
400 AM_ICONV
402 dnl Check for broken versions of mingw-runtime compatability library
403 AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
404     AC_MSG_CHECKING(for broken mingw-runtime)
405     AC_PREPROC_IFELSE([AC_LANG_SOURCE([
406 #include <_mingw.h>
407 #if (__MINGW32_MAJOR_VERSION == 3) && (__MINGW32_MINOR_VERSION < 15)
408 #ifndef __MINGW64_VERSION_MAJOR
409 # error Attempting to use mingw-runtime with broken vsnprintf support
410 #endif
411 #endif
412     ])], [
413         AC_MSG_RESULT([ok])
414     ], [
415         AC_MSG_RESULT([present])
416         AC_MSG_ERROR([LibVLC requires mingw-runtime version 3.15 or higher!])
417     ])
418     dnl force use of mingw provided c99 *printf over msvcrt
419     CPPFLAGS="${CPPFLAGS} -D__USE_MINGW_ANSI_STDIO=1"
422 dnl Check for the need to include the mingwex lib for mingw32
423 if test "${SYS}" = "mingw32" ; then
424     AC_CHECK_LIB(mingwex,opendir,
425         AC_CHECK_LIB(mingw32,opendir,,
426             [VLC_ADD_LIBS([libvlccore],[-lmingwex])])
427     )
430 dnl Check for fnative-struct or mms-bitfields support for mingw32
431 if test "${SYS}" = "mingw32" ; then
432     VLC_SAVE_FLAGS
433     CFLAGS="${CFLAGS} -mms-bitfields"
434     CXXFLAGS="${CXXFLAGS} -mms-bitfields"
435     AC_CACHE_CHECK([if \$CC accepts -mms-bitfields],
436         [ac_cv_c_mms_bitfields],
437         [AC_TRY_COMPILE([],,ac_cv_c_mms_bitfields=yes, ac_cv_c_mms_bitfields=no)])
438     if test "${ac_cv_c_mms_bitfields}" = "no"; then
439         VLC_RESTORE_FLAGS
440         CFLAGS="${CFLAGS} -fnative-struct"
441         CXXFLAGS="${CXXFLAGS} -fnative-struct"
442         AC_CACHE_CHECK([if \$CC accepts -fnative-struct],
443             [ac_cv_c_fnative_struct],
444             [AC_TRY_COMPILE([],,ac_cv_c_fnative_struct=yes, ac_cv_c_fnative_struct=no)])
445         "${ac_cv_c_fnative_struct}" = "no" && VLC_RESTORE_FLAGS
446     fi
450 dnl Buggy glibc prevention. Purposedly not cached.
451 dnl See sourceware.org bugs 5058 and 5443.
452 dnl Ubuntu alone has 20 bug numbers for this...
454 AC_MSG_CHECKING(for buggy GNU/libc versions)
455 AC_PREPROC_IFELSE([AC_LANG_SOURCE([
456 #include <limits.h>
457 #if defined (__GLIBC__) && (__GLIBC__ == 2) \
458   && (__GLIBC_MINOR__ >= 5) && (__GLIBC_MINOR__ <= 7)
459 # error GNU/libc with dcgettext killer bug!
460 #endif
461 ])], [
462   AC_MSG_RESULT([not present])
463 ], [
464   AC_MSG_RESULT([found])
465   AS_IF([test "x${enable_nls}" != "xno"], [
466     AC_MSG_ERROR([Buggy GNU/libc (version 2.5 - 2.7) present. VLC would crash; there is no viable
467 work-around for this. Check with your distribution vendor on how to update the
468 glibc run-time. Alternatively, build with --disable-nls.])
469   ])
472 dnl Plugin compilation stuff
474 VLC_LIBRARY_SUFFIX
476 dnl Check for system libs needed
477 need_libc=false
479 dnl Check for usual libc functions
480 AC_CHECK_DECLS([nanosleep],,,[#include <time.h>])
481 AC_CHECK_FUNCS([daemon fcntl fstatvfs fork getenv getpwuid_r if_nameindex if_nametoindex isatty lstat memalign mmap openat pread posix_fadvise posix_madvise setlocale stricmp strnicmp strptime uselocale])
482 AC_REPLACE_FUNCS([atof atoll dirfd fdopendir flockfile fsync getdelim getpid gmtime_r inet_pton lldiv localtime_r nrand48 poll rewind setenv strcasecmp strcasestr strdup strlcpy strncasecmp strndup strnlen strsep strtof strtok_r strtoll swab tdestroy])
483 AC_CHECK_FUNCS(fdatasync,,
484   [AC_DEFINE(fdatasync, fsync, [Alias fdatasync() to fsync() if missing.])
487 dnl mingw64 implements those as static inline, not functions with C linkage
488 AC_LINK_IFELSE([
489     AC_LANG_PROGRAM([#include <stdio.h>], [
490         char *c;
491         if (asprintf(&c, "%s %d", "string", 1) == -1)
492             c = NULL;
493     ])],[AC_DEFINE([HAVE_ASPRINTF],[1],[Define to 1 if you have asprintf function])],[AC_LIBOBJ([asprintf])])
494 AC_LINK_IFELSE([
495     AC_LANG_PROGRAM([#include <stdio.h>], [
496         char *c;
497         va_list ap;
498         if (vasprintf(&c, "%s %d", ap) == -1)
499             c = NULL;
500     ])],[AC_DEFINE([HAVE_VASPRINTF],[1],[Define to 1 if you have asprintf function])],[AC_LIBOBJ([vasprintf])])
502 # Windows CE does not have strcoll()
503 AC_FUNC_STRCOLL
505 dnl Check for non-standard system calls
506 AC_CHECK_FUNCS([accept4 pipe2 eventfd vmsplice sched_getaffinity])
508 AH_BOTTOM([#include <vlc_fixups.h>])
510 dnl Check for struct pollfd
511 AC_CHECK_TYPES([struct pollfd],,,
512 [#include <sys/types.h>
513 #if HAVE_POLL
514 # include <poll.h>
515 #elif defined (WIN32)
516 # include <winsock2.h>
517 #endif
520 dnl Check for connect
521 VLC_SAVE_FLAGS
522 SOCKET_LIBS=""
523 AC_SEARCH_LIBS(connect, [socket], [
524   AS_IF([test "$ac_cv_search_connect" != "none required"], [
525     SOCKET_LIBS="$ac_cv_search_connect"
526   ])
527 ], [
528   AS_IF([test "${SYS}" = "mingw32"], [
529     SOCKET_LIBS="-lws2_32"
530   ])
531   AS_IF([test "${SYS}" = "mingwce"], [
532     SOCKET_LIBS="-lws2"
533   ])
535 VLC_RESTORE_FLAGS
536 AS_IF([test -n "$SOCKET_LIBS"], [
537   VLC_ADD_LIBS([access_http access_mms access_udp access_tcp access_ftp access_rtmp access_output_udp access_output_shout sap stream_out_select stream_out_standard stream_out_rtp stream_out_raop vod_rtsp access_realrtsp rtp oldrc netsync gnutls flac ts audioscrobbler lua remoteosd zvbi audiobargraph_a netsync],[${SOCKET_LIBS}])
539 AC_SUBST(SOCKET_LIBS)
541 dnl Check for socklen_t
542 AH_TEMPLATE(socklen_t, [Define to `int' if <sys/socket.h> does not define.])
543 AC_CACHE_CHECK([for socklen_t in sys/socket.h], dnl ` (fix VIM syntax highlight
544 ac_cv_type_socklen_t,
545 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
546 [#include <sys/types.h>
547 #ifdef WIN32
548 # include <winsock2.h>
549 # include <ws2tcpip.h>
550 #else
551 # include <sys/socket.h>
552 #endif]], [[socklen_t len; len = 0;]])],
553 ac_cv_type_socklen_t=yes,
554 ac_cv_type_socklen_t=no)])
555 AS_IF([test "$ac_cv_type_socklen_t" = no],
556  [AC_DEFINE(socklen_t, int)])
558 dnl Check for struct sockaddr_storage
559 AH_TEMPLATE(sockaddr_storage, [Define to `sockaddr' if <sys/socket.h> does not define.]) dnl ` (fix VIM syntax highlight
560 AH_TEMPLATE(ss_family, [Define to `sa_family' if <sys/socket.h> does not define.]) dnl ` (fix VIM syntax highlight
561 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_struct_sockaddr_storage,
562   [AC_TRY_COMPILE(
563     [#include <sys/types.h>
564      #if defined( UNDER_CE )
565      # include <winsock2.h>
566      #elif defined( WIN32 )
567      # include <winsock2.h>
568      #else
569      # include <sys/socket.h>
570      #endif], [struct sockaddr_storage addr;],
571      ac_cv_struct_sockaddr_storage=yes,
572      ac_cv_struct_sockaddr_storage=no)])
573 AS_IF([test "${ac_cv_struct_sockaddr_storage}" = no], [
574   AC_DEFINE(sockaddr_storage, sockaddr)
575   AC_DEFINE(ss_family, sa_family)
578 dnl getaddrinfo, getnameinfo and gai_strerror check
579 dnl  -lnsl and -lsocket are needed on Solaris;
580 dnl  we purposedly make the test fail on Windows
581 VLC_SAVE_FLAGS
582 AC_SEARCH_LIBS([getaddrinfo], [nsl],,, [${SOCKET_LIBS}])
583 VLC_RESTORE_FLAGS
585 dnl FreeBSD has a gnugetopt library for this:
586 GNUGETOPT_LIBS=""
587 AC_CHECK_FUNC(getopt_long,, [
588   AC_CHECK_LIB([gnugetopt],[getopt_long], [
589     GNUGETOPT_LIBS="-lgnugetopt"
590   ])
592 AC_SUBST(GNUGETOPT_LIBS)
594 AC_CHECK_LIB(m,cos,[
595   VLC_ADD_LIBS([adjust wave ripple psychedelic gradient a52tofloat32 dtstofloat32 x264 goom visual panoramix rotate noise grain scene kate flac lua chorus_flanger freetype avcodec avformat access_avio swscale postproc i420_rgb faad twolame equalizer spatializer param_eq samplerate freetype mod mpc dmo mp4 quicktime realvideo qt4 compressor headphone_channel_mixer normvol audiobargraph_a speex mono colorthres extract ball access_imem hotkeys mosaic gaussianblur dbus x264 hqdn3d],[-lm])
596   LIBM="-lm"
597 ], [
598   LIBM=""
600 AC_SUBST(LIBM)
602 AC_CHECK_LIB(m,lrintf, [
603   AC_DEFINE(HAVE_LRINTF, 1, [Define to 1 if you have the lrintf function])
604   VLC_ADD_LIBS([skins2],[-lm])
607 dnl Check for dynamic plugins
608 LIBDL=""
609 have_dynamic_objects="no"
610 VLC_SAVE_FLAGS
611 AC_SEARCH_LIBS(dlopen, [dl svld], [
612   AS_IF([test "$ac_cv_search_dlopen" != "none required"], [
613     LIBDL="$ac_cv_search_dlopen"
614   ])
615   have_dynamic_objects="yes"
617 VLC_RESTORE_FLAGS
619 # Windows
620 AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
621   LIBDL=""
622   have_dynamic_objects="yes" #assume we can use shared objects
625 test "${enable_shared}" = "no" && have_dynamic_objects=no
627 AS_IF([test "${have_dynamic_objects}" != "no"], [
628   AC_DEFINE(HAVE_DYNAMIC_PLUGINS, 1,
629             [Define to 1 if dynamic plugins are supported.])
630 ], [
631   dnl Clear $LIBDL so as not to break linking
632   LIBDL=""
634 AM_CONDITIONAL(HAVE_DYNAMIC_PLUGINS, [test "${have_dynamic_objects}" != "no"])
636 AC_SUBST(LIBDL)
637 VLC_ADD_LIBS([realvideo lua],[$LIBDL])
639 dnl Check for thread library
640 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
642   VLC_SAVE_FLAGS
643   LIBS=""
644   AC_SEARCH_LIBS(pthread_rwlock_init, pthread pthreads c_r, [
645     VLC_ADD_LIBS([libvlccore libvlc vlc plugin],[${LIBS}])
646   ])
647   VLC_RESTORE_FLAGS
649   AC_CHECK_LIB(rt, clock_nanosleep, [
650     VLC_ADD_LIBS([libvlccore],[-lrt])
651   ], [
652     AC_CHECK_FUNC(nanosleep,,[
653       AC_CHECK_LIB(rt,nanosleep, [
654         VLC_ADD_LIBS([libvlccore],[-lrt])
655       ], [
656         AC_CHECK_LIB(posix4,nanosleep, [
657           VLC_ADD_LIBS([libvlccore],[-lposix4])
658         ])
659       ])
660     ])
661     dnl HP/UX port
662     AC_CHECK_LIB(rt,sem_init, [VLC_ADD_LIBS([libvlccore],[-lrt])])
663   ])
664 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
666 dnl Check for misc headers
667 AC_MSG_CHECKING(for strncasecmp in strings.h)
668 AC_EGREP_HEADER(strncasecmp,strings.h,[
669   AC_MSG_RESULT(yes)
670   AC_DEFINE(STRNCASECMP_IN_STRINGS_H, 1,
671             Define if <strings.h> defines strncasecmp.)],[
672   AC_MSG_RESULT(no)])
674 dnl Check for headers
675 AC_CHECK_HEADERS([search.h])
676 AC_CHECK_HEADERS(getopt.h strings.h locale.h xlocale.h)
677 AC_CHECK_HEADERS(fcntl.h sys/time.h sys/ioctl.h sys/stat.h)
678 AC_CHECK_HEADERS([arpa/inet.h netinet/udplite.h sys/eventfd.h])
679 AC_CHECK_HEADERS([net/if.h], [], [],
680   [
681     #include <sys/types.h>
682     #include <sys/socket.h>
683   ])
684 AC_CHECK_HEADERS([sys/mount.h], [], [],
685   [
686     #include <sys/param.h>
687   ])
689 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
690   AC_CHECK_HEADERS(machine/param.h sys/shm.h)
691   AC_CHECK_HEADERS([linux/version.h linux/dccp.h scsi/scsi.h linux/magic.h])
692   AC_CHECK_HEADERS(syslog.h)
693 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
695 dnl LP64 and LLP64 architectures had better define ssize_t by themselves...
696 AH_TEMPLATE(ssize_t, [Define to `int' if <stddef.h> does not define.]) dnl ` (fix VIM syntax highlight
697 AC_CHECK_TYPE(ssize_t,, [
698   AC_DEFINE(ssize_t, int)
701 dnl Check for threads library
702 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
703   AC_CHECK_HEADERS(pthread.h)
704 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
706 dnl It seems that autoconf detects pkg-config only during the first
707 dnl PKG_CHECK_MODULES from configure.ac - which makes sense. But in our case,
708 dnl it is nested within a conditional block, so it was not working right.
709 dnl Make PKG_CONFIG_PATH precious so that it appears in the help and get saved
710 AC_ARG_VAR(PKG_CONFIG_PATH,
711        [Paths where to find .pc not at the default location])
712 PKG_PROG_PKG_CONFIG()
714 dnl On some OS we need static linking
715 AS_IF([test -n "${PKG_CONFIG}" ],[
716     AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "darwin" -o "${SYS}" = "os2" ],[
717         PKG_CONFIG="${PKG_CONFIG} --static"
718     ])
723 dnl Check for zlib.h and -lz along with system -lminizip if available
725 AC_CHECK_HEADERS(zlib.h, [ have_zlib=yes ], [ have_zlib=no ])
726 AM_CONDITIONAL(HAVE_ZLIB, [ test "${have_zlib}" = "yes" ])
727 if test "${have_zlib}" = "yes"
728 then
729   VLC_ADD_LIBS([access_http mp4 skins2 sap mkv unzip zip],[-lz])
730   PKG_CHECK_MODULES([MINIZIP], [minizip] , [ have_minizip=yes ], [
731     AC_CHECK_HEADERS([unzip.h], [
732       have_minizip=yes
733       MINIZIP_LIBS="-lminizip -lz"
734     ], [
735       have_minizip=no
736       MINIZIP_CFLAGS="-I\\\${top_srcdir}/modules/access/zip/unzip"
737       MINIZIP_LIBS="\\\${top_builddir}/modules/access/zip/unzip/libunzip.la"
738     ])
739   ])
740   VLC_ADD_CPPFLAGS([skins2],[$MINIZIP_CFLAGS])
741   VLC_ADD_LIBS([skins2],[$MINIZIP_LIBS])
743 AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
746 dnl Manual switch for UTF-8
747 AC_ARG_ENABLE(non-utf8,
748   [AS_HELP_STRING([--enable-non-utf8],
749     [support legacy non-UTF-8 systems (default disabled)])],, [
750   AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "os2"], [
751     enable_non_utf8="no"
752   ])
754 AS_IF([test "${enable_non_utf8}" != "no"], [
755   AC_DEFINE([ASSUME_UTF8], [1],
756             [Define to 1 if the operating system uses UTF-8 internally])
760 dnl Check for dbus
761 AC_ARG_ENABLE(dbus,
762   [AS_HELP_STRING([--enable-dbus],
763     [compile D-Bus message bus support (default enabled)])])
764 case "${SYS}" in
765     linux*|*bsd*)
766 if test "${enable_dbus}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
767 then
768   dnl api stable dbus
769   PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.0.0],
770     [ AC_DEFINE( HAVE_DBUS, 1, [Define if you have the D-BUS library] )
771       VLC_ADD_LIBS([libvlccore],[$DBUS_LIBS])
772       VLC_ADD_CFLAGS([libvlccore],[$DBUS_CFLAGS])
773       dnl Check for dbus control interface
774         AC_ARG_ENABLE(dbus-control,
775           [AS_HELP_STRING([--disable-dbus-control],
776             [D-Bus control interface (default enabled)])])
777         if test "${enable_dbus_control}" != "no"
778         then
779           VLC_ADD_PLUGIN([dbus])
780           VLC_ADD_LIBS([dbus],[$DBUS_LIBS])
781           VLC_ADD_CFLAGS([dbus],[$DBUS_CFLAGS])
782         fi
783       dnl Check for Telepathy
784         AC_ARG_ENABLE(telepathy,
785           AS_HELP_STRING([--enable-telepathy],[Telepathy Presence plugin through DBus(default enabled)]))
786         if test "${enable_telepathy}" != "no"; then
787           VLC_ADD_PLUGIN([telepathy])
788           VLC_ADD_LIBS([telepathy],[$DBUS_LIBS])
789           VLC_ADD_CFLAGS([telepathy],[$DBUS_CFLAGS])
790         fi
791         dnl Power Management Inhibiter
792         VLC_ADD_PLUGIN([inhibit])
793         VLC_ADD_LIBS([inhibit],[$DBUS_LIBS])
794         VLC_ADD_CFLAGS([inhibit],[$DBUS_CFLAGS])
795     ],
796     [AC_MSG_ERROR([${DBUS_PKG_ERRORS}.])]
797   )
800 esac
802 dnl Check for ntohl, etc.
803 VLC_SAVE_FLAGS
804 CFLAGS="${CFLAGS} -Wall -Werror"
805 AC_CACHE_CHECK([for ntohl in sys/param.h],
806     [ac_cv_c_ntohl_sys_param_h],
807     [     AC_TRY_COMPILE([#include <sys/param.h>],
808         [int meuh; ntohl(meuh);],
809         ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
810 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
811     AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
813 VLC_RESTORE_FLAGS
815 EXTEND_HELP_STRING([Optimization options:])
817 dnl  Compiler warnings
820 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])
821 RDC_PROG_CC_FLAGS([-pipe])
822 AC_LANG_PUSH([C++])
823 RDC_PROG_CXX_WFLAGS([all extra sign-compare undef pointer-arith volatile-register-var])
824 AC_LANG_POP([C++])
827 dnl  Debugging mode
829 AC_ARG_ENABLE(debug,
830   [AS_HELP_STRING([--enable-debug],
831     [build with run-time assertions (default disabled)])],,
832   [enable_debug="no"])
833 AH_TEMPLATE(NDEBUG,
834             [Define to 1 if debug code should NOT be compiled])
835 AS_IF([test "${enable_debug}" != "no"], [
836   AC_CHECK_HEADERS([valgrind/valgrind.h])
837 ], [
838   AC_DEFINE(NDEBUG)
842 dnl  Profiling
844 AC_ARG_ENABLE(gprof,
845   [AS_HELP_STRING([--enable-gprof],[profile with gprof (default disabled)])],,
846   [enable_gprof="no"])
847 AS_IF([test "${enable_gprof}" != "no"], [
848   CFLAGS="${CFLAGS} -pg"
849   CXXFLAGS="${CXXFLAGS} -pg"
850   OBJCFLAGS="${OBJCFLAGS} -pg"
851   LDFLAGS="${LDFLAGS} -pg"
854 AC_ARG_ENABLE(cprof,
855   [AS_HELP_STRING([--enable-cprof],[profile with cprof (default disabled)])],,
856   [enable_cprof="no"])
857 AS_IF([test "${enable_gprof}" != "no"], [
858   CFLAGS="${CFLAGS} -finstrument-functions"
859   CXXFLAGS="${CXXFLAGS} -finstrument-functions"
860   OBJCFLAGS="${OBJCFLAGS} -finstrument-functions"
861   LDFLAGS="${LDFLAGS} -finstrument-functions"
865 dnl  Test coverage
867 AC_ARG_ENABLE(coverage,
868   [AS_HELP_STRING([--enable-coverage],
869     [build for test coverage (default disabled)])],,
870   [enable_coverage="no"])
871 AS_IF([test "${enable_coverage}" != "no"], [
872   CFLAGS="-fprofile-arcs -ftest-coverage ${CFLAGS}"
873   CXXFLAGS="-fprofile-arcs -ftest-coverage ${CXXFLAGS}"
874   LDFLAGS="-lgcov ${LDFLAGS}"
877 AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"], [
878   VLC_SAVE_FLAGS
879   CFLAGS="${CFLAGS} -fvisibility=hidden"
880   CXXFLAGS="${CXXFLAGS} -fvisibility=hidden"
881   OBJCFLAGS="${OBJCFLAGS} -fvisibility=hidden"
882   AC_CACHE_CHECK([if $CC accepts -fvisibility=hidden],
883                  [ac_cv_c_visibility_hidden], [
884     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
885       ac_cv_c_visibility_hidden=yes
886     ], [
887       ac_cv_c_visibility_hidden=no
888     ])
889   ])
890   AS_IF([test "${ac_cv_c_visibility_hidden}" = "no"], [VLC_RESTORE_FLAGS])
895 dnl  Enable/disable optimizations
897 AC_ARG_ENABLE(optimizations,
898   [AS_HELP_STRING([--disable-optimizations],
899     [disable compiler optimizations (default enabled)])],,
900   [enable_optimizations="yes"])
902 dnl Check for various optimization flags
903 AS_IF([test "${enable_optimizations}" != "no"], [
905   dnl -O4 and -O3 only in production builds
906   AS_IF([test "{enable_debug}" = "no"], [
907     VLC_SAVE_FLAGS
908     CFLAGS="${CFLAGS} -O4"
909     CXXFLAGS="${CXXFLAGS} -O4"
910     OBJCFLAGS="${OBJCFLAGS} -O4"
911     AC_CACHE_CHECK([if $CC accepts -O4], [ac_cv_c_o4], [
912       AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
913         ac_cv_c_o4=yes
914       ], [
915         ac_cv_c_o4=no
916       ])
917     ])
918     AS_IF([test "${ac_cv_c_o4}" = "no"], [
919       VLC_RESTORE_FLAGS
920       CFLAGS="${CFLAGS} -O3"
921       CXXFLAGS="${CXXFLAGS} -O3"
922       OBJCFLAGS="${OBJCFLAGS} -O3"
923       AC_CACHE_CHECK([if $CC accepts -O3],  [ac_cv_c_o3], [
924         AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
925           ac_cv_c_o3=yes
926         ], [
927           ac_cv_c_o3=no
928         ])
929       ])
930       AS_IF([test "${ac_cv_c_o3}" = "no"], [VLC_RESTORE_FLAGS])
931     ])
932   ])
934   dnl Check for -ffast-math
935   VLC_SAVE_FLAGS
936   CFLAGS="${CFLAGS} -ffast-math"
937   CXXFLAGS="${CXXFLAGS} -ffast-math"
938   OBJCFLAGS="${OBJCFLAGS} -ffast-math"
939   AC_CACHE_CHECK([if $CC accepts -ffast-math], [ac_cv_c_fast_math], [
940     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
941       ac_cv_c_fast_math=yes
942     ], [
943       ac_cv_c_fast_math=no
944     ])
945   ])
946   AS_IF([test "${ac_cv_c_fast_math}" = "no"], [VLC_RESTORE_FLAGS])
948   dnl Check for -funroll-loops
949   VLC_SAVE_FLAGS
950   CFLAGS="${CFLAGS} -funroll-loops"
951   CXXFLAGS="${CXXFLAGS} -funroll-loops"
952   OBJCFLAGS="${OBJCFLAGS} -funroll-loops"
953   AC_CACHE_CHECK([if $CC accepts -funroll-loops], [ac_cv_c_unroll_loops], [
954     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
955       ac_cv_c_unroll_loops=yes
956     ], [
957       ac_cv_c_unroll_loops=no
958     ])
959   ])
960   AS_IF([test "${ac_cv_c_unroll_loops}" = "no"], [VLC_RESTORE_FLAGS])
962   AS_IF([test "$enable_debug" = "no"], [
963     dnl Check for -fomit-frame-pointer
964     VLC_SAVE_FLAGS
965     CFLAGS="${CFLAGS} -fomit-frame-pointer"
966     CXXFLAGS="${CXXFLAGS} -fomit-frame-pointer"
967     OBJCFLAGS="${OBJCFLAGS} -fomit-frame-pointer"
968     AC_CACHE_CHECK([if $CC accepts -fomit-frame-pointer],
969       [ac_cv_c_omit_frame_pointer], [
970       AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
971         ac_cv_c_omit_frame_pointer=yes
972       ], [
973         ac_cv_c_omit_frame_pointer=no
974       ])
975     ])
976     AS_IF([test "${ac_cv_c_omit_frame_pointer}" = "no"], [VLC_RESTORE_FLAGS])
977   ])
980 dnl Check for Darwin plugin linking flags
981 AS_IF([test "${SYS}" = "darwin"], [
982   VLC_SAVE_FLAGS
983   CFLAGS="${CFLAGS} -bundle -undefined error"
984   AC_CACHE_CHECK([if $CC accepts -bundle -undefined error],
985     [ac_cv_ld_darwin], [
986     AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
987       ac_cv_ld_darwin=yes
988     ], [
989       ac_cv_ld_darwin=no
990     ])
991   ])
992   AS_IF([test "${ac_cv_ld_darwin}" != "no"], [
993     VLC_ADD_LDFLAGS([plugin],[-bundle -undefined error])
994   ])
995   VLC_RESTORE_FLAGS
998 dnl Checks for __attribute__(aligned()) directive
999 VLC_SAVE_FLAGS
1000 CFLAGS="${CFLAGS} -Werror"
1001 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
1002     [ac_cv_c_attribute_aligned],
1003     [ac_cv_c_attribute_aligned=0
1004     for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
1005         AC_TRY_COMPILE([],
1006         [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
1007         [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
1008     done])
1009 VLC_RESTORE_FLAGS
1010 if test "${ac_cv_c_attribute_aligned}" != "0"; then
1011     AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
1012         [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
1015 dnl Check for __attribute__((packed))
1016 AC_CACHE_CHECK([for __attribute__((packed))],
1017   [ac_cv_c_attribute_packed],
1018   [ac_cv_c_attribute_packed=no
1019    AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b; (void)b;],
1020                     [ac_cv_c_attribute_packed=yes])])
1021 if test "${ac_cv_c_attribute_packed}" != "no"; then
1022   AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
1026 dnl  Check the CPU
1028 case "${host_cpu}" in
1029   "")
1030     ARCH=unknown
1031     ;;
1032   *)
1033     ARCH="${host_cpu}"
1034     ;;
1035 esac
1037 dnl Check for backtrace() support
1038 AC_CHECK_HEADERS(execinfo.h)
1039 AC_CHECK_FUNCS(backtrace)
1042 dnl  default modules
1044 ALIASES="${ALIASES} cvlc rvlc"
1047 dnl Some plugins aren't useful on some platforms
1049 if test "${SYS}" = "os2"; then
1050     VLC_ADD_PLUGIN([dynamicoverlay])
1051 elif test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
1052     VLC_ADD_PLUGIN([dynamicoverlay access_shm])
1053 elif test "${SYS}" != "mingwce"; then
1054     VLC_ADD_PLUGIN([access_smb dmo globalhotkeys])
1055     VLC_ADD_LIBS([dmo],[-lole32 -luuid])
1057 if test "${SYS}" = "darwin"; then
1058     VLC_ADD_LIBS([quartztext],[-Wl,-framework,ApplicationServices])
1062 dnl  Accelerated modules
1065 dnl  Check for fully working MMX intrinsics
1066 dnl  We need support for -mmmx, we need <mmintrin.h>, and we also need a
1067 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1068 AC_ARG_ENABLE(mmx,
1069   [AS_HELP_STRING([--disable-mmx],
1070     [disable MMX optimizations (default auto)])],,[
1071   case "${host_cpu}" in
1072     i?86|x86_64)
1073       enable_mmx="yes"
1074       ;;
1075     *)
1076       enable_mmx="no"
1077       ;;
1078   esac
1080 have_mmx="no"
1081 have_mmxext="no"
1082 AS_IF([test "${enable_mmx}" != "no"], [
1083   ARCH="${ARCH} mmx"
1084   VLC_SAVE_FLAGS
1085   CFLAGS="${CFLAGS} -O -mmmx"
1086   AC_CACHE_CHECK([if $CC groks MMX intrinsics], [ac_cv_c_mmx_intrinsics], [
1087     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1088 [#include <mmintrin.h>
1089 #include <stdint.h>
1090 uint64_t frobzor;]], [
1091 [__m64 a, b, c;
1092 a = b = c = (__m64)frobzor;
1093 a = _mm_slli_pi16(a, 3);
1094 a = _mm_adds_pi16(a, b);
1095 c = _mm_srli_pi16(c, 8);
1096 c = _mm_slli_pi16(c, 3);
1097 b = _mm_adds_pi16(b, c);
1098 a = _mm_unpacklo_pi8(a, b);
1099 frobzor = (uint64_t)a;]])], [
1100       ac_cv_c_mmx_intrinsics=yes
1101     ], [
1102       ac_cv_c_mmx_intrinsics=no
1103     ])
1104   ])
1105   VLC_RESTORE_FLAGS
1106   AS_IF([test "${ac_cv_c_mmx_intrinsics}" != "no"], [
1107     AC_DEFINE(HAVE_MMX_INTRINSICS, 1, [Define to 1 if MMX intrinsics are available.])
1108   ])
1110   VLC_SAVE_FLAGS
1111   CFLAGS="${CFLAGS} -mmmx"
1112   AC_CACHE_CHECK([if $CC groks MMX inline assembly], [ac_cv_mmx_inline], [
1113     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1114 void *p;
1115 asm volatile("packuswb %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1117     ], [
1118       ac_cv_mmx_inline=yes
1119     ], [
1120       ac_cv_mmx_inline=no
1121     ])
1122   ])
1123   AS_IF([test "${ac_cv_mmx_inline}" != "no"], [
1124     AC_DEFINE(CAN_COMPILE_MMX, 1, [Define to 1 inline MMX assembly is available.])
1125     have_mmx="yes"
1126   ])
1128   AC_CACHE_CHECK([if $CC groks MMX EXT inline assembly],
1129                  [ac_cv_mmxext_inline], [
1130     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1131 void *p;
1132 asm volatile("maskmovq %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1134     ], [
1135       ac_cv_mmxext_inline=yes
1136     ], [
1137       ac_cv_mmxext_inline=no
1138     ])
1139   ])
1140   VLC_RESTORE_FLAGS
1141   AS_IF([test "${ac_cv_mmxext_inline}" != "no"], [
1142     AC_DEFINE(CAN_COMPILE_MMXEXT, 1, [Define to 1 if MMX EXT inline assembly is available.])
1143     have_mmxext="yes"
1144   ])
1146 AM_CONDITIONAL([HAVE_MMX], [test "${have_mmx}" = "yes"])
1147 AM_CONDITIONAL([HAVE_MMXEXT], [test "${have_mmxext}" = "yes"])
1149 dnl  Check for fully workin SSE2 intrinsics
1150 dnl  We need support for -mmmx, we need <emmintrin.h>, and we also need a
1151 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1152 AC_ARG_ENABLE(sse,
1153   [AS_HELP_STRING([--disable-sse],
1154     [disable SSE (1-4) optimizations (default auto)])],, [
1155   case "${host_cpu}" in
1156     i?86|x86_64)
1157       enable_sse=yes
1158       ;;
1159     *)
1160       enable_sse=no
1161       ;;
1162   esac
1164 have_sse2="no"
1165 AS_IF([test "${enable_sse}" != "no"], [
1166   ARCH="${ARCH} sse sse2"
1168   VLC_SAVE_FLAGS
1169   CFLAGS="${CFLAGS} -O -msse2"
1170   AC_CACHE_CHECK([if $CC groks SSE2 intrinsics], [ac_cv_c_sse2_intrinsics], [
1171     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
1172 [#include <emmintrin.h>
1173 #include <stdint.h>
1174 uint64_t frobzor;]], [
1175 [__m128i a, b, c;
1176 a = b = c = _mm_set1_epi64((__m64)frobzor);
1177 a = _mm_slli_epi16(a, 3);
1178 a = _mm_adds_epi16(a, b);
1179 c = _mm_srli_epi16(c, 8);
1180 c = _mm_slli_epi16(c, 3);
1181 b = _mm_adds_epi16(b, c);
1182 a = _mm_unpacklo_epi8(a, b);
1183 frobzor = (uint64_t)_mm_movepi64_pi64(a);]])], [
1184       ac_cv_c_sse2_intrinsics=yes
1185     ], [
1186       ac_cv_c_sse2_intrinsics=no
1187     ])
1188   ])
1189   VLC_RESTORE_FLAGS
1190   AS_IF([test "${ac_cv_c_sse2_intrinsics}" != "no"], [
1191     AC_DEFINE(HAVE_SSE2_INTRINSICS, 1, [Define to 1 if SSE2 intrinsics are available.])
1192   ])
1194   VLC_SAVE_FLAGS
1195   CFLAGS="${CFLAGS} -msse"
1196   AC_CACHE_CHECK([if $CC groks SSE inline assembly], [ac_cv_sse_inline], [
1197     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1198 void *p;
1199 asm volatile("xorps %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1201     ], [
1202       ac_cv_sse_inline=yes
1203     ], [
1204       ac_cv_sse_inline=no
1205     ])
1206   ])
1208   AS_IF([test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"], [
1209     AC_DEFINE(CAN_COMPILE_SSE, 1, [Define to 1 if SSE inline assembly is available.])
1210   ])
1212   AC_CACHE_CHECK([if $CC groks SSE2 inline assembly], [ac_cv_sse2_inline], [
1213     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1214 void *p;
1215 asm volatile("punpckhqdq %%xmm1,%%xmm2"::"r"(p):"xmm1", "xmm2");
1217     ], [
1218       ac_cv_sse2_inline=yes
1219     ], [
1220       ac_cv_sse2_inline=no
1221     ])
1222   ])
1223   AS_IF([test "${ac_cv_sse2_inline}" != "no" -a "${SYS}" != "solaris"], [
1224     AC_DEFINE(CAN_COMPILE_SSE2, 1, [Define to 1 if SSE2 inline assembly is available.])
1225     have_sse2="yes"
1226   ])
1228   # SSE3
1229   AC_CACHE_CHECK([if $CC groks SSE3 inline assembly], [ac_cv_sse3_inline], [
1230     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1231 void *p;
1232 asm volatile("movsldup %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1234     ], [
1235       ac_cv_sse3_inline=yes
1236     ], [
1237       ac_cv_sse3_inline=no
1238     ])
1239   ])
1241   AS_IF([test "${ac_cv_sse3_inline}" != "no"], [
1242     AC_DEFINE(CAN_COMPILE_SSE3, 1, [Define to 1 if SSE3 inline assembly is available.]) ])
1243   # SSSE3
1244   AC_CACHE_CHECK([if $CC groks SSSE3 inline assembly], [ac_cv_ssse3_inline], [
1245     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1246 void *p;
1247 asm volatile("pabsw %%xmm0,%%xmm0"::"r"(p):"xmm0");
1249     ], [
1250       ac_cv_ssse3_inline=yes
1251     ], [
1252       ac_cv_ssse3_inline=no
1253     ])
1254   ])
1256   AS_IF([test "${ac_cv_ssse3_inline}" != "no"], [
1257     AC_DEFINE(CAN_COMPILE_SSSE3, 1, [Define to 1 if SSSE3 inline assembly is available.]) ])
1259   # SSE4.1
1260   AC_CACHE_CHECK([if $CC groks SSE4.1 inline assembly],
1261                  [ac_cv_sse4_1_inline], [
1262     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1263 void *p;
1264 asm volatile("pmaxsb %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1266     ], [
1267       ac_cv_sse4_1_inline=yes
1268     ], [
1269       ac_cv_sse4_1_inline=no
1270     ])
1271   ])
1273   AS_IF([test "${ac_cv_sse4_1_inline}" != "no"], [
1274     AC_DEFINE(CAN_COMPILE_SSE4_1, 1, [Define to 1 if SSE4_1 inline assembly is available.]) ])
1276   # SSE4.2
1277   AC_CACHE_CHECK([if $CC groks SSE4.2 inline assembly],
1278                  [ac_cv_sse4_2_inline], [
1279     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1280 void *p;
1281 asm volatile("pcmpgtq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1283     ], [
1284       ac_cv_sse4_2_inline=yes
1285     ], [
1286       ac_cv_sse4_2_inline=no
1287     ])
1288   ])
1290   AS_IF([test "${ac_cv_sse4_2_inline}" != "no"], [
1291     AC_DEFINE(CAN_COMPILE_SSE4_2, 1, [Define to 1 if SSE4_2 inline assembly is available.]) ])
1293   # SSE4A
1294   AC_CACHE_CHECK([if $CC groks SSE4A inline assembly], [ac_cv_sse4a_inline], [
1295     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1296 void *p;
1297 asm volatile("insertq %%xmm1,%%xmm0"::"r"(p):"xmm0", "xmm1");
1299     ], [
1300       ac_cv_sse4a_inline=yes
1301     ], [
1302       ac_cv_sse4a_inline=no
1303     ])
1304   ])
1305   VLC_RESTORE_FLAGS
1306   AS_IF([test "${ac_cv_sse4a_inline}" != "no"], [
1307     AC_DEFINE(CAN_COMPILE_SSE4A, 1, [Define to 1 if SSE4A inline assembly is available.]) ])
1309 AM_CONDITIONAL([HAVE_SSE2], [test "$have_sse2" = "yes"])
1311 VLC_SAVE_FLAGS
1312 CFLAGS="${CFLAGS} -mmmx"
1313 have_3dnow="no"
1314 AC_CACHE_CHECK([if $CC groks 3D Now! inline assembly], [ac_cv_3dnow_inline], [
1315   AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[[
1316 void *p;
1317 asm volatile("pfadd %%mm1,%%mm2"::"r"(p):"mm1", "mm2");
1319   ], [
1320     ac_cv_3dnow_inline=yes
1321   ], [
1322     ac_cv_3dnow_inline=no
1323   ])
1325 VLC_RESTORE_FLAGS
1326 AS_IF([test "${ac_cv_3dnow_inline}" != "no"], [
1327   AC_DEFINE(CAN_COMPILE_3DNOW, 1,
1328             [Define to 1 if 3D Now! inline assembly is available.])
1329   have_3dnow="yes"
1331 AM_CONDITIONAL([HAVE_3DNOW], [test "$have_3dnow" = "yes"])
1334 AC_ARG_ENABLE(neon,
1335   [AS_HELP_STRING([--disable-neon],
1336     [disable NEON optimizations (default auto)])],, [
1337   AS_IF([test "${host_cpu}" = "arm"], [enable_neon="yes"] ,[enable_neon="no"])
1339 AS_IF([test "${enable_neon}" != "no"], [
1340   VLC_SAVE_FLAGS
1341   CFLAGS="${CFLAGS} -mfpu=neon"
1342   AC_CACHE_CHECK([if $CC groks NEON inline assembly], [ac_cv_neon_inline], [
1343     AC_COMPILE_IFELSE([
1344       AC_LANG_PROGRAM(,[[
1345 asm volatile("vqmovun.s64 d0, q1":::"d0");
1346 asm volatile("ssat r0, #1, r0":::"r0"); /* assume ARMv6 */
1348     ], [
1349       ac_cv_neon_inline="-mfpu=neon"
1350     ], [
1351       ac_cv_neon_inline="no"
1352     ])
1353   ])
1354   VLC_RESTORE_FLAGS
1355   AS_IF([test "$ac_cv_neon_inline" != "no"], [
1356     NEON_CFLAGS="$ac_cv_neon_inline"
1357     AC_DEFINE([CAN_COMPILE_NEON], 1, [Define to 1 if NEON (and ARMv6) assembly is available with NEON_CFLAGS.])
1358   ])
1359 ], [
1360   ac_cv_neon_inline="no"
1362 AC_SUBST(NEON_CFLAGS)
1363 AM_CONDITIONAL(HAVE_NEON, [test "${ac_cv_neon_inline}" != "no"])
1366 AC_ARG_ENABLE(altivec,
1367   [AS_HELP_STRING([--disable-altivec],
1368     [disable AltiVec optimizations (default auto)])],, [
1369   AS_IF([test "${host_cpu}" = "powerpc"],
1370         [enable_altivec=yes], [enable_altivec=no])
1372 have_altivec="no"
1373 AS_IF([test "${enable_altivec}" = "yes"], [
1374   ARCH="${ARCH} altivec";
1375   VLC_SAVE_FLAGS
1376   AC_CACHE_CHECK([if $CC groks AltiVec inline assembly],
1377     [ac_cv_altivec_inline],
1378     [AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1379          ac_cv_altivec_inline="yes",
1380          [CFLAGS="${CFLAGS} -Wa,-m7400"
1381           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1382             [ac_cv_altivec_inline="-Wa,-m7400"],
1383             ac_cv_altivec_inline=no)
1384          ])])
1385   VLC_RESTORE_FLAGS
1386   AS_IF([test "${ac_cv_altivec_inline}" != "no"], [
1387     AC_DEFINE(CAN_COMPILE_ALTIVEC, 1,
1388               [Define to 1 if AltiVec inline assembly is available.])
1389     AS_IF([test "${ac_cv_altivec_inline}" != "yes"], [
1390       VLC_ADD_CFLAGS([memcpyaltivec],[${ac_cv_altivec_inline}])
1391       VLC_ADD_CFLAGS([i420_yuy2_altivec],[${ac_cv_altivec_inline}])
1392       VLC_ADD_CFLAGS([libvlccore],[${ac_cv_altivec_inline}])
1393     ])
1394     have_altivec="yes"
1395   ])
1397 dnl The AltiVec C extensions
1399 dnl There are several possible cases:
1400 dnl - OS X PPC, gcc 4.x: use -mpim-altivec -force_cpusubtype_ALL, don't
1401 dnl                      need <altivec.h>
1402 dnl - OS X PPC, gcc 3.x: need -faltivec, don't need <altivec.h>
1403 dnl - Linux PPC, gcc 3.4, 4.x: need <altivec.h> which requires -maltivec
1404 dnl - Linux PPC, gcc 3.3: need <altivec.h> and -maltivec -mabi=altivec
1405 dnl - Linux PPC, gcc 3.x: need <altivec.h> and -fvec
1406 dnl - Others: test should fail
1407   VLC_SAVE_FLAGS
1408   AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1409   [ac_cv_c_altivec],
1410   [# OS X/PPC test (gcc 4.x)
1411    CFLAGS="${CFLAGS} -mpim-altivec -force_cpusubtype_ALL"
1412    AC_TRY_COMPILE([vector unsigned char foo;],
1413      [vec_ld(0, (unsigned char *)0);],
1414      [ac_cv_c_altivec="-mpim-altivec -force_cpusubtype_ALL"],
1415      [# OS X/PPC test (gcc 3.x)
1416       CFLAGS="${CFLAGS} -faltivec"
1417       AC_TRY_COMPILE([vector unsigned char foo;],
1418         [vec_ld(1 * sizeof(vector float), (unsigned char *)0);],
1419         [ac_cv_c_altivec="-faltivec"],
1420         dnl Below this are the Linux tests
1421         [# Linux/PPC test (gcc 4.x)
1422          CFLAGS="${CFLAGS} -maltivec"
1423          AC_TRY_COMPILE([#include <altivec.h>],
1424            [vec_ld(0, (unsigned char *)0);],
1425            [ac_cv_c_altivec="-maltivec"],
1426            [# Linux/PPC test (gcc 3.3)
1427             CFLAGS="${CFLAGS} -maltivec -mabi=altivec"
1428             AC_TRY_COMPILE([#include <altivec.h>],
1429               [vec_ld(0, (unsigned char *)0);],
1430               [ac_cv_c_altivec=""
1431                ac_cv_c_altivec_abi="-maltivec -mabi=altivec"],
1432               [# Linux/PPC test (gcc 3.3)
1433                CFLAGS="${CFLAGS} -fvec"
1434                AC_TRY_COMPILE([#include <altivec.h>],
1435                  [vec_ld(0, (unsigned char *)0);],
1436                  [ac_cv_c_altivec="-fvec"],
1437                  [ac_cv_c_altivec=no])
1438               ])
1439            ])
1440         ])
1441      ])
1442   ])
1444   VLC_RESTORE_FLAGS
1445   AS_IF([test "${ac_cv_c_altivec}" != "no"], [
1446     CPPFLAGS="${CPPFLAGS} ${ac_cv_c_altivec}"
1447     AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, [Define to 1 if C AltiVec extensions are available.])
1448     VLC_ADD_CFLAGS([libvlccore],[${ac_cv_c_altivec}])
1449     VLC_ADD_CFLAGS([i420_yuy2_altivec memcpyaltivec deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1450     have_altivec="yes"
1451   ])
1452   AC_CHECK_HEADERS(altivec.h)
1454   VLC_SAVE_FLAGS
1455   LDFLAGS="${LDFLAGS} -Wl,-framework,vecLib"
1456   AC_CACHE_CHECK([if linker needs -framework vecLib],
1457     [ac_cv_ld_altivec],
1458     [AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)])
1459   VLC_RESTORE_FLAGS
1460   AS_IF([test "${ac_cv_ld_altivec}" != "no"], [
1461     VLC_ADD_LIBS([libvlccore memcpyaltivec],[-Wl,-framework,vecLib])
1462   ])
1464 AM_CONDITIONAL([HAVE_ALTIVEC], [test "$have_altivec" = "yes"])
1467 dnl  Special arch tuning
1469 AC_ARG_WITH(tuning,
1470   [AS_HELP_STRING([--with-tuning=ARCH],
1471     [tune compilation for an architecture (default varies)])])
1472 if test -n "${with_tuning}"; then
1473     if test "${with_tuning}" != "no"; then
1474         CFLAGS_TUNING="-mtune=${with_tuning}"
1475     fi
1476 else
1477     if test "${SYS}" = "darwin" -a "${host_cpu}" = "i686"; then
1478         CFLAGS_TUNING="-march=prescott -mtune=generic"
1479     elif test "${SYS}" = "darwin" -a "${host_cpu}" = "x86_64"; then
1480         CFLAGS_TUNING="-march=core2 -mtune=core2"
1481     elif test "${host_cpu}" = "i686" -o "${host_cpu}" = "i586" -o "${host_cpu}" = "i486" -o "${host_cpu}" = "i386"; then
1482         CFLAGS_TUNING="-mtune=pentium2"
1483     elif test "${host_cpu}" = "x86_64"; then
1484         CFLAGS_TUNING="-mtune=athlon64"
1485     elif test "${host_cpu}" = "powerpc"; then
1486         CFLAGS_TUNING="-mtune=G4";
1487     fi
1490 dnl NOTE: this can't be cached cleanly
1491 AS_IF([test -n "${CFLAGS_TUNING}"], [
1492   VLC_SAVE_FLAGS
1493   CFLAGS="${CFLAGS} ${CFLAGS_TUNING}"
1494   AC_MSG_CHECKING([whether $CC accepts ${CFLAGS_TUNING}])
1495   AC_COMPILE_IFELSE([AC_LANG_SOURCE([])], [
1496     AC_MSG_RESULT([yes])
1497   ], [
1498     VLC_RESTORE_FLAGS
1499     AC_MSG_RESULT([no])
1500     AS_IF([test "${with_tuning}"], [AC_MSG_ERROR([requested tuning not supported])])
1501   ])
1505 dnl  Memory usage
1507 AC_ARG_ENABLE(optimize-memory,
1508   [AS_HELP_STRING([--enable-optimize-memory],
1509     [optimize memory usage over performance])])
1510 if test "${enable_optimize_memory}" = "yes"; then
1511   AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1515 dnl Allow running as root (useful for people running on embedded platforms)
1517 AC_ARG_ENABLE(run-as-root,
1518   [AS_HELP_STRING([--enable-run-as-root],
1519     [allow running VLC as root (default disabled)])])
1520 AS_IF([test "${enable_run_as_root}" = "yes"],[
1521     AC_DEFINE(ALLOW_RUN_AS_ROOT, 1,
1522               [Define to 1 to allow running VLC as root (uid 0).])
1526 dnl Stream output
1528 AC_ARG_ENABLE(sout,
1529   [AS_HELP_STRING([--disable-sout],
1530     [disable streaming output (default enabled)])])
1531 AS_IF([test "${enable_sout}" != "no"], [
1532   AC_DEFINE(ENABLE_SOUT, 1, [Define to 1 for stream output support.])
1534 AM_CONDITIONAL(ENABLE_SOUT, [test "${enable_sout}" != "no"])
1536 dnl Lua modules
1537 AC_ARG_ENABLE(lua,
1538   [AS_HELP_STRING([--disable-lua],
1539     [disable LUA scripting support (default enabled)])])
1540 if test "${enable_lua}" != "no"
1541 then
1542   PKG_CHECK_MODULES(LUA, lua5.1,
1543     [ have_lua=yes ],
1544     [
1545     AC_MSG_WARN([${LUA_PKG_ERRORS}, trying lua >= 5.1 instead])
1546     PKG_CHECK_MODULES(LUA, lua >= 5.1,
1547       [ have_lua=yes ],
1548       [
1549         AC_MSG_WARN([${LUA_PKG_ERRORS}, trying manual detection instead])
1550         have_lua=yes
1551         AC_CHECK_HEADERS([lua.h lauxlib.h lualib.h],
1552           [],
1553           [ have_lua=no ] )
1554         AC_CHECK_LIB(  lua5.1 , luaL_newstate,
1555           [LUA_LIBS="-llua5.1"],
1556           AC_CHECK_LIB( lua51 , luaL_newstate,
1557             [LUA_LIBS="-llua51"],
1558             AC_CHECK_LIB( lua , luaL_newstate,
1559               [LUA_LIBS="-llua"],
1560               [ have_lua=no
1561               ], [-lm])
1562           )
1563         )
1564       ])
1565     ])
1566   if test "x${have_lua}" = "xyes" ;  then
1567      VLC_ADD_LIBS([lua],[$LUA_LIBS])
1568      VLC_ADD_CFLAGS([lua],[$LUA_CFLAGS])
1569   else
1570       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.])
1571   fi
1572   AC_ARG_VAR([LUAC], [LUA byte compiler])
1573   AC_PATH_PROGS(LUAC,[${LUAC} luac], [false])
1574   AS_IF([test "${LUAC}" = "false"], [
1575     AC_MSG_ERROR([Could not find the LUA byte compiler.])
1576   ])
1578 AM_CONDITIONAL(BUILD_LUA, [test "${have_lua}" = "yes"])
1582 dnl HTTP daemon
1584 AC_ARG_ENABLE(httpd,
1585   [AS_HELP_STRING([--disable-httpd],
1586     [disable the built-in HTTP server (default enabled)])])
1587 if test "${enable_httpd}" != "no"
1588 then
1589   AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP daemon support)
1591 AM_CONDITIONAL(BUILD_HTTPD, [test "${enable_httpd}" != "no"])
1595 dnl VideoLAN manager
1597 AC_ARG_ENABLE(vlm,
1598   [AS_HELP_STRING([--disable-vlm],
1599     [disable the stream manager (default enabled)])],,
1600   [enable_vlm="${enable_sout}"])
1601 AS_IF([test "${enable_vlm}" != "no"], [
1602   AS_IF([test "${enable_sout}" = "no"], [
1603     AC_MSG_ERROR([VLM requires the stream output. Do not use --disable-sout.])
1604   ])
1605   AC_DEFINE(ENABLE_VLM, 1, [Define if you want the VideoLAN manager support])
1607 AM_CONDITIONAL([ENABLE_VLM], [test "${enable_vlm}" != "no"])
1611 dnl  Input plugins
1614 EXTEND_HELP_STRING([Input plugins:])
1617 dnl libproxy support
1619 AC_ARG_ENABLE(libproxy,
1620   [AS_HELP_STRING([--enable-libproxy],[support libproxy (default auto)])])
1621 AS_IF([test "${enable_libproxy}" != "no"], [
1622   PKG_CHECK_MODULES(LIBPROXY, libproxy-1.0, [
1623     AC_DEFINE(HAVE_LIBPROXY, 1, [Define if libproxy is available])
1624     VLC_ADD_CFLAGS([access_http],[$LIBPROXY_CFLAGS])
1625     VLC_ADD_LIBS([access_http],[$LIBPROXY_LIBS])
1626   ], [
1627     AS_IF([test -n "${enable_libproxy}"], [
1628       AC_MSG_ERROR([${LIBPROXY_PKG_ERRORS}.])
1629     ])
1630   ])
1634 dnl  live555 input
1636 AC_ARG_ENABLE(live555,
1637   [AS_HELP_STRING([--enable-live555],
1638     [enable RTSP input through live555 (default enabled)])])
1639 AS_IF([test "${enable_live555}" != "no" -a -n "${CXX}"], [
1640   AC_LANG_PUSH(C++)
1641   VLC_SAVE_FLAGS
1642   AS_IF([test -z "${CONTRIB_DIR}"], [
1643     CPPFLAGS_live555="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
1644   ], [
1645     CPPFLAGS_live555="-I${CONTRIB_DIR}/include/liveMedia -I${CONTRIB_DIR}/include/groupsock -I${CONTRIB_DIR}/include/BasicUsageEnvironment -I${CONTRIB_DIR}/include/UsageEnvironment"
1646   ])
1647   AS_IF([test "${SYS}" = "solaris"], [
1648     CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS"
1649   ])
1650   CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}"
1652   AC_CACHE_CHECK([for live555 version 1324598400 or later], [ac_cv_live555], [
1653     AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1654 [#include <liveMedia_version.hh>
1655 #if !defined (LIVEMEDIA_LIBRARY_VERSION_INT) || (LIVEMEDIA_LIBRARY_VERSION_INT < 1324598400)
1656 # error BOOM
1657 #endif]])
1658     ], [
1659       ac_cv_live555="yes"
1660     ], [
1661       ac_cv_live555="no"
1662     ])
1663   ])
1664   AS_IF([test "$ac_cv_live555" = "no"], [
1665     AC_MSG_WARN([liveMedia is missing or its installed version is too old:
1666 Version 2011.12.23 or later is required to proceed.
1667 You can get an updated one from http://www.live555.com/liveMedia .])
1668     AS_IF([test -n "${enable_live555}"], [
1669       AC_MSG_ERROR([Update live555 or pass --disable-live555 to disable RTSP input support.])
1670     ])
1671   ], [
1672     other_libs="-lgroupsock -lBasicUsageEnvironment -lUsageEnvironment"
1673     other_libs_pic="-lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic"
1674     AS_IF([test "${SYS}" = "mingw32"], [
1675       # add ws2_32 for closesocket, select, recv
1676       other_libs="$other_libs -lws2_32"
1677     ], [test "${SYS}" = "mingwce"], [
1678       # add ws2 for closesocket, select, recv
1679       other_libs="$other_libs -lws2"
1680     ])
1682     dnl We need to check for pic because live555 don't provide shared libs
1683     dnl and we want to build a plugins so we need -fPIC on some arch.
1684     VLC_ADD_CXXFLAGS([live555], [${CPPFLAGS_live555}])
1685     AC_CHECK_LIB(liveMedia_pic, main, [
1686       VLC_ADD_PLUGIN([live555])
1687       VLC_ADD_LIBS([live555], [-lliveMedia_pic ${other_libs_pic}])
1688     ],[
1689       AC_CHECK_LIB(liveMedia, main, [
1690         VLC_ADD_PLUGIN([live555])
1691         VLC_ADD_LIBS([live555], [-lliveMedia ${other_libs}])
1692       ],[],[${other_libs}])],[${other_libs_pic}])
1693   ])
1694   VLC_RESTORE_FLAGS
1695   AC_LANG_POP(C++)
1699 dnl - special access module for dc1394 input
1700 dnl - dv module: digital video module check for libraw1394
1701 dnl - linsys modules: access module check for libzvbi
1703 PKG_ENABLE_MODULES_VLC([DC1394], [], [libraw1394 >= 2.0.1 libdc1394-2 >= 2.1.0], [dc1394 access module], [auto])
1704 PKG_ENABLE_MODULES_VLC([DV], [access_dv], [libraw1394 >= 2.0.1 libavc1394 >= 0.5.3], [DV input module], [auto])
1706 AC_ARG_ENABLE(linsys,
1707   [AS_HELP_STRING([--enable-linsys],
1708     [Linux Linear Systems Ltd. SDI and HD-SDI input cards (default enabled)])])
1709 if test "$SYS" = "linux" -a "${enable_linsys}" != "no"; then
1710   VLC_ADD_PLUGIN([linsys_hdsdi])
1711   PKG_CHECK_MODULES(LINSYS_SDI, [zvbi-0.2 >= 0.2.28],
1712     [ VLC_ADD_LIBS([linsys_sdi],[$LINSYS_SDI_LIBS])
1713       VLC_ADD_CFLAGS([linsys_sdi],[$LINSYS_SDI_CFLAGS])
1714       VLC_ADD_PLUGIN([linsys_sdi]) ],
1715     [AC_MSG_WARN([${LINSYS_SDI_PKG_ERRORS}.])]
1716   )
1720 dnl dvdread module: check for libdvdread
1722 PKG_ENABLE_MODULES_VLC([DVDREAD], [], [dvdread], [dvdread input module], [auto])
1725 dnl libdvdnav plugin
1727 AC_ARG_ENABLE(dvdnav,
1728   [AS_HELP_STRING([--disable-dvdnav],
1729     [disable DVD navigation with libdvdnav (default auto)])])
1730 if test "${enable_dvdnav}" != "no"
1731 then
1732   PKG_CHECK_MODULES(DVDNAV, dvdnav, [
1733     VLC_ADD_PLUGIN([dvdnav])
1734     VLC_ADD_CFLAGS([dvdnav],[${DVDNAV_CFLAGS}])
1735     VLC_ADD_LIBS([dvdnav],[${DVDNAV_LIBS}])
1736     AC_CHECK_LIB(dvdnav, dvdnav_get_video_resolution,
1737       AC_DEFINE(HAVE_DVDNAV_GET_VIDEO_RESOLUTION, 1, [Define if you have dvdnav_get_video_resolution.]),
1738         [], [${LIBS_dvdnav}])
1739     AC_CHECK_LIB(dvdnav, dvdnav_describe_title_chapters,
1740       AC_DEFINE(HAVE_DVDNAV_DESCRIBE_TITLE_CHAPTERS, 1, [Define if you have dvdnav_describe_title_chapters.]),
1741         [], [${LIBS_dvdnav}])],
1742       [AC_MSG_WARN([${DVDNAV_PKG_ERRORS}.])])
1746 dnl  Windows DirectShow access module
1748 AC_ARG_ENABLE(dshow,
1749   [AS_HELP_STRING([--disable-dshow],
1750     [support DirectShow (default auto)])])
1751 if test "${enable_dshow}" != "no"
1752 then
1753   if test "${SYS}" = "mingw32"
1754   then
1755     AC_LANG_PUSH(C++)
1756       AC_CHECK_HEADERS(dshow.h,
1757       [ VLC_ADD_PLUGIN([dshow])
1758         VLC_ADD_CXXFLAGS([dshow],[])
1759         VLC_ADD_LIBS([dshow],[-lole32 -loleaut32 -luuid]) ])
1760     AC_LANG_POP(C++)
1761   fi
1765 dnl  Blu-ray Disc Support with libbluray
1767 PKG_ENABLE_MODULES_VLC([BLURAY], [libbluray], [libbluray >= 0.2.1], (libbluray for Blu-ray disc support ) )
1770 dnl  OpenCV wrapper and example filters
1772 PKG_ENABLE_MODULES_VLC([OPENCV], [opencv_example opencv_wrapper], [opencv], (OpenCV (computer vision) filter), [off])
1776 dnl  libsmbclient plugin
1778 AC_ARG_ENABLE(smb,
1779   [AS_HELP_STRING([--disable-smb], [disable SMB/CIFS support (default auto)])])
1780 if test "${enable_smb}" != "no"; then
1781   AC_CHECK_HEADERS(libsmbclient.h,
1782     [ VLC_ADD_PLUGIN([access_smb])
1783       VLC_ADD_LIBS([access_smb],[-lsmbclient]) ],
1784     [ if test -n "${enable_smb}"; then
1785         AC_MSG_ERROR([cannot find libsmbclient headers])
1786      fi ])
1791 dnl sftp access support
1793 AC_ARG_ENABLE(sftp,
1794   [AS_HELP_STRING([--enable-sftp],
1795     [support SFTP file transfer via libssh2 (default disabled)])])
1796 if test "${enable_sftp}" = "yes"; then
1797   AC_CHECK_HEADERS(libssh2.h, [
1798     VLC_ADD_PLUGIN([access_sftp])
1799     VLC_ADD_LIBS([access_sftp], [-lssh2])
1800   ])
1804 dnl  Video4Linux 2
1806 AC_ARG_ENABLE(libv4l2, [AS_HELP_STRING([--disable-libv4l2],
1807   [disable userspace V4L2 library (default auto)])])
1808 AC_ARG_ENABLE(pvr, [AS_HELP_STRING([--enable-pvr],
1809   [support PVR V4L2 cards (default disabled)])])
1810 have_v4l2="no"
1811 AC_CHECK_HEADERS([linux/videodev2.h sys/videoio.h], [
1812   AC_PREPROC_IFELSE([
1813   #ifdef __linux__
1814   # include <linux/version.h>
1815   # if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,32)
1816   #  error Kernel headers too old
1817   # endif
1818   #endif
1819     ], [
1820       have_v4l2="yes"
1821       ], [
1822       AC_MSG_WARN([Kernel headers too old for V4L2 module. You need at least 2.6.32])
1823   ])
1825 AS_IF([test "$have_v4l2" = "yes"], [
1826   AS_IF([test "${enable_libv4l2}" != "no"], [
1827     PKG_CHECK_MODULES(LIBV4L2, libv4l2, [
1828       AC_DEFINE(HAVE_LIBV4L2, 1, [Define to 1 if libv4l2 is available])
1829     ], [
1830       AC_MSG_WARN([${LIBV4L2_PKG_ERRORS}.])
1831     ])
1832   ])
1833   AS_IF([test "${enable_pvr}" = "yes"], [
1834     VLC_ADD_PLUGIN([pvr])
1835   ])
1837 AM_CONDITIONAL(HAVE_V4L2, [test "${have_v4l2}" != "no"])
1840 dnl special access module for Blackmagic SDI cards
1842 AC_ARG_ENABLE(decklink,
1843   [AS_HELP_STRING([--disable-decklink],
1844     [disable Blackmagic DeckLink SDI input (default auto)])])
1845 AC_ARG_WITH(decklink_sdk,
1846   [AS_HELP_STRING[--with-decklink-sdk=DIR],
1847     [                        location of Blackmagic DeckLink SDI SDK])])
1848 if test "${enable_decklink}" != "no"
1849 then
1850   if test "${with_decklink_sdk}" != "no" -a -n "${with_decklink_sdk}"
1851   then
1852     VLC_ADD_CPPFLAGS([decklink],[-I${with_decklink_sdk}/include])
1853   fi
1854   VLC_SAVE_FLAGS
1855   CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_decklink}"
1856   AC_LANG_PUSH(C++)
1857   AC_CHECK_HEADERS(DeckLinkAPIDispatch.cpp, [
1858     VLC_ADD_PLUGIN([decklink])
1859   ],[AC_MSG_WARN(Blackmagic DeckLink SDI include files not found, decklink disabled)])
1860   AC_LANG_POP(C++)
1861   VLC_RESTORE_FLAGS
1866 dnl  gnomeVFS access module
1868 PKG_ENABLE_MODULES_VLC([GNOMEVFS], [access_gnomevfs], [gnome-vfs-2.0], [GnomeVFS access module], [auto])
1871 dnl  VCDX modules
1873 AC_ARG_ENABLE(vcdx,
1874   [AS_HELP_STRING([--enable-vcdx],
1875     [navigate VCD with libvcdinfo (default disabled)])])
1876 if test "${enable_vcdx}" = "yes"
1877 then
1878     PKG_CHECK_MODULES(LIBCDIO, [libcdio >= 0.78.2 libiso9660 >= 0.72],
1879       [VLC_ADD_LIBS([vcdx],[$LIBCDIO_LIBS])
1880          VLC_ADD_CFLAGS([vcdx],[$LIBCDIO_CFLAGS])],
1881         [AC_MSG_ERROR([${LIBCDIO_PKG_ERRORS} (required for vcdx plugin).])])
1882     PKG_CHECK_MODULES(LIBVCDINFO, libvcdinfo >= 0.7.22,
1883         [VLC_ADD_LIBS([vcdx],[$LIBVCDINFO_LIBS])
1884          VLC_ADD_CFLAGS([vcdx],[$LIBVCDINFO_CFLAGS])],
1885       [AC_MSG_ERROR([${LIBVCDINFO_PKG_ERRORS} (required for vcdx plugin).])])
1886     VLC_ADD_PLUGIN([vcdx])
1890 dnl  Built-in CD-DA and VCD module
1892 AC_ARG_ENABLE(vcd,
1893   [AS_HELP_STRING([--disable-vcd],
1894     [disable built-in VCD and CD-DA support (default enabled)])])
1896 AC_ARG_ENABLE(libcddb,
1897   [AS_HELP_STRING([--disable-libcddb],
1898     [disable CDDB for Audio CD (default enabled)])])
1900 if test "${enable_vcd}" != "no"
1901 then
1902   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1903   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1904     AC_MSG_RESULT(yes)
1905     VLC_ADD_PLUGIN([vcd cdda])
1906   ],[
1907     AC_MSG_RESULT(no)
1908   ])
1910   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1911   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1912     AC_MSG_RESULT(yes)
1913     VLC_ADD_PLUGIN([vcd cdda])
1914     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1915   ],[
1916     AC_MSG_RESULT(no)
1917   ])
1919   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1920   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1921     AC_MSG_RESULT(yes)
1922     VLC_ADD_PLUGIN([vcd cdda])
1923     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1924   ],[
1925     AC_MSG_RESULT(no)
1926   ])
1928   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32" -o "${SYS}" = "os2"
1929   then
1930     VLC_ADD_PLUGIN([vcd cdda])
1931   fi
1933   if test "${SYS}" = "darwin"
1934   then
1935     VLC_ADD_PLUGIN([vcd cdda])
1936     VLC_ADD_LIBS([vcd vcdx cdda],[-Wl,-framework,IOKit,-framework,CoreFoundation])
1937     VLC_ADD_LIBS([vcdx cdda],[-liconv])
1938   fi
1940   if test "$enable_libcddb" != "no"; then
1941     PKG_CHECK_MODULES(LIBCDDB, [libcddb >= 0.9.5], [
1942       HAVE_LIBCDDB=yes
1943       AC_DEFINE(HAVE_LIBCDDB, 1, [Define this if you have libcddb installed])
1944       VLC_ADD_LIBS([cdda],[$LIBCDDB_LIBS])
1945       VLC_ADD_CFLAGS([cdda],[$LIBCDDB_CFLAGS])
1946       ],:
1947       [AC_MSG_WARN([${LIBCDDB_PKG_ERRORS}: CDDB access disabled.])
1948       HAVE_LIBCDDB=no])
1949   fi
1953 dnl Linux DVB
1955 AC_CACHE_CHECK([for Linux DVB version 5], [ac_cv_linux_s2api], [
1956   AC_PREPROC_IFELSE([AC_LANG_PROGRAM([
1957 [#include <linux/dvb/version.h>
1958 #if (DVB_API_VERSION < 5)
1959 EXPLODE
1960 #endif]])], [
1961   ac_cv_linux_s2api=yes
1962 ], [
1963   ac_cv_linux_s2api=no
1964 ])])
1965 AM_CONDITIONAL([HAVE_LINUX_DVB], [test "$ac_cv_linux_s2api" = "yes"])
1968 dnl  Screen capture module
1970 AC_ARG_ENABLE(screen,
1971   [AS_HELP_STRING([--enable-screen],
1972     [disable screen capture (default enabled)])])
1973 if test "${enable_screen}" != "no"; then
1974   if test "${SYS}" = "darwin"; then
1975     AC_CHECK_HEADERS(OpenGL/gl.h, [
1976       AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
1977         VLC_ADD_PLUGIN([screen])
1978         VLC_ADD_LIBS([screen],[-Wl,-framework,OpenGL,-framework,ApplicationServices])
1979       ])
1980     ])
1981   elif test "${SYS}" = "mingw32"; then
1982     VLC_ADD_PLUGIN([screen])
1983     VLC_ADD_LIBS([screen],[-lgdi32])
1984   fi
1988 dnl  Real RTSP plugin
1990 AC_ARG_ENABLE(realrtsp,
1991   [  --enable-realrtsp       Real RTSP module (default disabled)])
1992 if test "${enable_realrtsp}" = "yes"; then
1993   VLC_ADD_PLUGIN([access_realrtsp])
1997 dnl MacOS eyeTV
1998 AC_ARG_ENABLE(macosx-eyetv,
1999   [  --enable-macosx-eyetv   Mac OS X EyeTV (TNT Tuner) module (default enabled on Mac OS X)])
2000 if test "x${enable_macosx_eyetv}" != "xno" &&
2001   (test "${SYS}" = "darwin" || test "${enable_macosx_eyetv}" = "yes")
2002 then
2003   VLC_ADD_LIBS([access_eyetv], [-Wl,-framework,Foundation])
2004   VLC_ADD_PLUGIN([access_eyetv])
2008 dnl QTKit
2009 AC_ARG_ENABLE(macosx-qtkit,
2010   [  --enable-macosx-qtkit Mac OS X qtcapture (video) and qtsound (audio) module (default enabled on Mac OS X)])
2011 if test "x${enable_macosx_qtkit}" != "xno" &&
2012   (test "${SYS}" = "darwin" || test "${enable_macosx_qtkit}" = "yes")
2013 then
2014   VLC_ADD_PLUGIN([qtcapture])
2015   VLC_ADD_PLUGIN([qtsound])
2017 AM_CONDITIONAL(HAVE_QTKIT, [test "${SYS}" = "darwin" -a "x${enable_macosx_qtkit}" != "xno"])
2021 dnl  Demux plugins
2024 EXTEND_HELP_STRING([Mux/Demux plugins:])
2027 dnl  libdvbpsi check for ts mux/demux
2029 have_dvbpsi="no"
2030 PKG_WITH_MODULES([DVBPSI], [libdvbpsi], [have_dvbpsi="yes"])
2031 AM_CONDITIONAL(HAVE_DVBPSI, [test "${have_dvbpsi}" = "yes"])
2035 dnl  GME demux plugin
2037 AC_ARG_ENABLE(gme,
2038   [AS_HELP_STRING([--enable-gme],
2039     [use Game Music Emu (default auto)])])
2040 AS_IF([test "${enable_gme}" != "no"], [
2041   AC_CHECK_HEADER([gme/gme.h], [
2042     VLC_ADD_LIBS([gme], [-lgme])
2043     VLC_ADD_PLUGIN([gme])
2044   ], [
2045     AS_IF([test "x${enable_gme}" != "x"], [
2046       AC_MSG_ERROR([GME cannot be found. Please install the development files.])
2047     ])
2048   ])
2053 dnl  SIDPlay plugin
2055 AC_ARG_ENABLE(sid,
2056     [AS_HELP_STRING([--enable-sid],[C64 sid demux support (default auto)])])
2057 AS_IF([test "${enable_sid}" != "no"], [
2058     PKG_CHECK_MODULES(SID, [libsidplay2], [
2059         AC_LANG_PUSH(C++)
2060         oldCPPFLAGS="$CPPFLAGS"
2061         CPPFLAGS="$CPPFLAGS $SID_CFLAGS"
2062         AC_CHECK_HEADER([sidplay/builders/resid.h], [
2063             VLC_ADD_PLUGIN([sid])
2064             VLC_ADD_CFLAGS([sid], [$SID_CFLAGS])
2065             VLC_ADD_LIBS([sid], [$SID_LIBS] [-lresid-builder])
2066         ], [
2067             AS_IF([test -n "${enable_sid}"],
2068                 [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
2069                 [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2070                 )
2071         ])
2072         CPPFLAGS="$oldCPPFLAGS"
2073         AC_LANG_POP(C++)
2074     ], [
2075         AS_IF([test "x${enable_sid}" = "xyes"],
2076             [AC_MSG_ERROR([${SID_PKG_ERRORS} (required for sid).])],
2077             [AC_MSG_WARN([${SID_PKG_ERRORS} (required for sid).])]
2078             )
2079     ])
2084 dnl  ogg demux plugin
2086 PKG_ENABLE_MODULES_VLC([OGG], [], [ogg >= 1.0], [Ogg demux support], [auto])
2087 if test "${enable_sout}" != "no"; then
2088     PKG_ENABLE_MODULES_VLC([MUX_OGG], [], [ogg >= 1.0], [Ogg mux support], [auto])
2089 dnl Check for libshout
2090     PKG_ENABLE_MODULES_VLC([SHOUT], [access_output_shout], [shout >= 2.1], [libshout output plugin], [auto])
2094 dnl  matroska demux plugin
2096 AC_ARG_ENABLE(mkv,
2097   [AS_HELP_STRING([--disable-mkv],
2098     [do not use libmatroska (default auto)])])
2099 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
2100   AC_LANG_PUSH(C++)
2101   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
2102     AC_MSG_CHECKING(for libebml version >= 1.0.0)
2103     AC_EGREP_CPP(yes,
2104       [#include <ebml/EbmlVersion.h>
2105        #ifdef LIBEBML_VERSION
2106        #if LIBEBML_VERSION >= 0x010000
2107        yes
2108        #endif
2109        #endif],
2110       [AC_MSG_RESULT([yes])
2111         AC_CHECK_HEADERS(matroska/KaxVersion.h, [
2112           AC_MSG_CHECKING(for libmatroska version >= 1.0.0)
2113           AC_EGREP_CPP(yes,
2114             [#include <matroska/KaxVersion.h>
2115              #ifdef LIBMATROSKA_VERSION
2116              #if LIBMATROSKA_VERSION >= 0x010000
2117              yes
2118              #endif
2119              #endif],
2120             [AC_MSG_RESULT([yes])
2121               AC_CHECK_HEADERS(matroska/KaxAttachments.h)
2122               VLC_ADD_CXXFLAGS([mkv],[])
2123               if test "${SYS}" = "darwin"; then
2124                 VLC_ADD_CXXFLAGS([mkv],[-O1])
2125               fi
2126               AC_CHECK_LIB(ebml_pic, main, [
2127                 VLC_ADD_PLUGIN([mkv])
2128                 VLC_ADD_LIBS([mkv],[-lmatroska -lebml_pic])
2129               ],[
2130                 AC_CHECK_LIB(ebml, main, [
2131                   VLC_ADD_PLUGIN([mkv])
2132                   VLC_ADD_LIBS([mkv],[-lmatroska -lebml])
2133                 ])
2134               ])
2135             ], [
2136               AC_MSG_RESULT([no])
2137               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.])
2138           ])
2139         ])
2140       ],
2141       [AC_MSG_RESULT([no])
2142         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.])
2143     ])
2144   ])
2145   AC_LANG_POP(C++)
2149 dnl  modplug demux plugin
2151 AC_ARG_ENABLE(mod,
2152   [AS_HELP_STRING([--disable-mod],
2153     [do not use libmodplug (default auto)])])
2154 if test "${enable_mod}" != "no" ; then
2155     PKG_CHECK_MODULES(LIBMODPLUG, [libmodplug >= 0.8.4 libmodplug != 0.8.8], [
2156           VLC_ADD_PLUGIN([mod])
2157           VLC_ADD_CXXFLAGS([mod],[$LIBMODPLUG_CFLAGS])
2158           VLC_ADD_LIBS([mod],[$LIBMODPLUG_LIBS])
2159     ],[
2160        AS_IF([test -n "${enable_mod}"],
2161          [AC_MSG_ERROR([${LIBMODPLUG_PKG_ERRORS}.])],
2162          [AC_MSG_WARN([${LIBMODPLUG_PKG_ERRORS}.])])
2163     ])
2167 dnl  mpc demux plugin
2169 AC_ARG_ENABLE(mpc,
2170   [AS_HELP_STRING([--disable-mpc], [do not use libmpcdec (default auto)])])
2171 if test "${enable_mpc}" != "no"
2172 then
2173   AC_CHECK_HEADERS([mpc/mpcdec.h], [
2174     VLC_ADD_PLUGIN([mpc])
2175     VLC_ADD_LIBS([mpc],[-lmpcdec])],
2176     [AC_CHECK_HEADERS([mpcdec/mpcdec.h], [
2177     VLC_ADD_PLUGIN([mpc])
2178     VLC_ADD_LIBS([mpc],[-lmpcdec])])])
2182 dnl  Codec plugins
2185 EXTEND_HELP_STRING([Codec plugins:])
2188 dnl wmafixed plugin
2190 AC_ARG_ENABLE(wma-fixed,
2191   [  --enable-wma-fixed      libwma-fixed module (default disabled)])
2192 if test "${enable_wma_fixed}" = "yes"
2193 then
2194   VLC_ADD_PLUGIN([wma_fixed])
2198 dnl shine fixed point mp3 encoder
2200 AC_ARG_ENABLE(shine,
2201   [  --enable-shine          shine mp3 encoding module (default disabled)])
2202 if test "${enable_shine}" = "yes"
2203 then
2204   VLC_ADD_PLUGIN([shine])
2208 dnl openmax il codec plugin
2210 AC_ARG_ENABLE(omxil,
2211   [  --enable-omxil          openmax il codec module (default disabled)])
2212 if test "${enable_omxil}" = "yes"
2213 then
2214   VLC_ADD_PLUGIN([omxil])
2215   VLC_ADD_LIBS([omxil], [$LIBDL])
2219 dnl iomx codec plugin
2221 AC_ARG_ENABLE(iomx,
2222   [  --enable-iomx           iomx codec module (default disabled)])
2223 if test "${enable_iomx}" = "yes"
2224 then
2225   VLC_ADD_PLUGIN([iomx])
2229 dnl CrystalHD codec plugin
2231 AC_ARG_ENABLE(crystalhd,
2232   [  --enable-crystalhd      crystalhd codec plugin (default auto)])
2233 if test "${enable_crystalhd}" != "no"; then
2234     AC_CHECK_HEADER(libcrystalhd/libcrystalhd_if.h, [
2235       VLC_ADD_PLUGIN([crystalhd])
2236       VLC_ADD_LIBS([crystalhd], [-lcrystalhd])
2237     ],[
2238       if test "${SYS}" = "mingw32" ; then
2239         AC_CHECK_HEADERS(libcrystalhd/bc_dts_defs.h, [
2240           VLC_ADD_PLUGIN([crystalhd])
2241           AC_CHECK_HEADERS(libcrystalhd/bc_drv_if.h, [
2242             VLC_ADD_LIBS([crystalhd], [-lbcmDIL])
2243             ])
2244         ],[
2245           AS_IF([test x"${enable_crystalhd}" = "xyes"],
2246                 [AC_MSG_ERROR("Could not find CrystalHD development headers")],
2247                 [AC_MSG_WARN("Could not find CrystalHD development headers")])
2248         ],[#define __LINUX_USER__
2249                #include <libcrystalhd/bc_dts_types.h>
2250         ])
2251       fi
2252     ],[
2253        #include <libcrystalhd/bc_dts_types.h>
2254       ])
2258 dnl  mad plugin
2260 AC_ARG_ENABLE(mad,
2261   [  --enable-mad            libmad module (default enabled)])
2262 if test "${enable_mad}" != "no"
2263 then
2264   AC_ARG_WITH(mad,
2265     [  --with-mad=PATH         path to libmad],[],[])
2266   if test "${with_mad}" != "no" -a -n "${with_mad}"
2267   then
2268     VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
2269     VLC_ADD_LIBS([mpgatofixed32],[-L${with_mad}/lib])
2270   fi
2272   AC_ARG_WITH(mad-tree,
2273     [  --with-mad-tree=PATH    mad tree for static linking],[],[])
2274   if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
2275   then
2276     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
2277     if test -z "${real_mad_tree}"
2278     then
2279       dnl  The given directory can't be found
2280       AC_MSG_RESULT(no)
2281       AC_MSG_ERROR([${with_mad_tree} directory does not exist])
2282     fi
2283     dnl  Use a custom libmad
2284     AC_MSG_CHECKING(for mad.h in ${real_mad_tree})
2285     if test -f ${real_mad_tree}/mad.h
2286     then
2287       AC_MSG_RESULT(yes)
2288       VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}])
2289       VLC_ADD_LIBS([mpgatofixed32],[-L${real_mad_tree}/.libs])
2290       VLC_SAVE_FLAGS
2291       LDFLAGS="${LDFLAGS} ${LIBS_mpgatofixed32}"
2292       AC_CHECK_LIB(mad, mad_bit_init, [
2293         VLC_ADD_PLUGIN([mpgatofixed32])
2294         VLC_ADD_LIBS([mpgatofixed32],[-lmad])
2295         ],[ AC_MSG_ERROR([the specified tree has not been compiled ])
2296       ],[])
2297       VLC_RESTORE_FLAGS
2298     else
2299       AC_MSG_RESULT(no)
2300       AC_MSG_ERROR([the specified tree does not have mad.h])
2301     fi
2302   else
2303     VLC_SAVE_FLAGS
2304     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_mpgatofixed32}"
2305     LDFLAGS="${LDFLAGS} ${LIBS_mpgatofixed32}"
2306     AC_CHECK_HEADERS(mad.h, ,
2307       [ 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.]) ])
2308     AC_CHECK_LIB(mad, mad_bit_init, [
2309       VLC_ADD_PLUGIN([mpgatofixed32])
2310       VLC_ADD_LIBS([mpgatofixed32],[-lmad])],
2311       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
2312     VLC_RESTORE_FLAGS
2313   fi
2317 AC_ARG_ENABLE(merge-ffmpeg,
2318 [  --enable-merge-ffmpeg   merge FFmpeg-based plugins (default disabled)],, [
2319   enable_merge_ffmpeg="no"
2321 AM_CONDITIONAL([MERGE_FFMPEG], [test "$enable_merge_ffmpeg" != "no"])
2323 VLC_SAVE_FLAGS
2324 LDFLAGS="${LDFLAGS} -Wl,-Bsymbolic"
2325 AC_CACHE_CHECK([if linker supports -Bsymbolic],
2326   [ac_cv_ld_bsymbolic],
2327   [AC_TRY_LINK([],,ac_cv_ld_bsymbolic=yes,ac_cv_ld_bsymbolic=no)])
2328 VLC_RESTORE_FLAGS
2331 dnl  avcodec decoder/encoder plugin
2333 AC_ARG_ENABLE(avcodec,
2334 [  --enable-avcodec        libavcodec codec (default enabled)])
2335 AS_IF([test "${enable_avcodec}" != "no"], [
2336   PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 52.25.0 libavutil],
2337     [
2338       VLC_SAVE_FLAGS
2339       CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2340       CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2341       AC_CHECK_HEADERS(libavcodec/avcodec.h)
2342       AC_CHECK_HEADERS(libavutil/avutil.h)
2343       VLC_ADD_PLUGIN([avcodec])
2344       VLC_ADD_LIBS([avcodec],[$AVCODEC_LIBS])
2345       AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2346         VLC_ADD_LIBS([avcodec],[-Wl,-Bsymbolic])
2347       ])
2348       VLC_ADD_CFLAGS([avcodec],[$AVCODEC_CFLAGS])
2349       VLC_RESTORE_FLAGS
2350       have_avcodec="yes"
2351     ],[
2352       AC_MSG_ERROR([${AVCODEC_PKG_ERRORS}. Pass --disable-avcodec to ignore this error.])
2353   ])
2354 ], [
2355   have_avcodec="no"
2359 dnl libva needs avcodec
2361 AC_ARG_ENABLE(libva,
2362   [  --enable-libva          VAAPI GPU decoding support (libVA) (default auto)])
2364 AS_IF([test "${enable_libva}" = "yes" -a "${have_avcodec}" != "yes" ], [
2365   AC_MSG_ERROR([--enable-libva and --disable-avcodec options are mutually exclusive. Use --enable-avcodec.])
2367 AS_IF([test "${enable_libva}" != "no"], [
2368   PKG_CHECK_MODULES(LIBVA, [libva libva-x11], [
2369     VLC_SAVE_FLAGS
2370     CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
2371     CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"
2372     AC_CHECK_HEADERS(libavcodec/vaapi.h, [
2373       VLC_ADD_LIBS([avcodec],[$LIBVA_LIBS ${X_LIBS} ${X_PRE_LIBS} -lX11])
2374       VLC_ADD_CFLAGS([avcodec],[$LIBVA_CFLAGS ${X_CFLAGS}])
2375       AC_DEFINE(HAVE_AVCODEC_VAAPI, 1, [Define if avcodec has to be built with VAAPI support.])
2376       AC_MSG_NOTICE([VAAPI acceleration activated])
2377     ],[
2378       AS_IF([test -n "${enable_libva}"], [
2379         AC_MSG_ERROR([libva is present but libavcodec/vaapi.h is missing])
2380       ], [
2381         AC_MSG_WARN([libva is present but libavcodec/vaapi.h is missing ])
2382       ])
2383     ])
2384     VLC_RESTORE_FLAGS
2385   ],[
2386     AS_IF([test -n "${enable_libva}"], [
2387       AC_MSG_ERROR([${LIBVA_PKG_ERRORS}.])
2388     ], [
2389       AC_MSG_WARN([${LIBVA_PKG_ERRORS}.])
2390     ])
2391   ])
2395 dnl dxva2 needs avcodec
2397 AC_ARG_ENABLE(dxva2,
2398   [  --enable-dxva2          DxVA2 GPU decoding support (default auto)])
2400 AS_IF([test "${enable_dxva2}" != "no"], [
2401   if test "${SYS}" = "mingw32"; then
2402   AS_IF([test "x${have_avcodec}" = "xyes"], [
2403     AC_CHECK_HEADERS(dxva2api.h,
2404       [
2405         AC_CHECK_HEADERS(libavcodec/dxva2.h, [
2406            VLC_ADD_LIBS([avcodec],[-lole32 -lshlwapi -luuid])
2407            AC_DEFINE(HAVE_AVCODEC_DXVA2, 1, [Define if avcodec has to be built with DxVA2 support.])
2408            echo "DxVA2 acceleration activated"
2409         ],[
2410     AS_IF([test "${enable_dxva2}" = "yes"],
2411           [AC_MSG_ERROR([dxva2 is present but libavcodec/dxva2.h is missing])],
2412               [AC_MSG_WARN([dxva2 is present but libavcodec/dxva2.h is missing ])])
2413         ], [#undef _WIN32_WINNT
2414             /* DXVA2 is only available in Vista and above */
2415             #define _WIN32_WINNT 0x600])
2416       ],[
2417     AS_IF([test "${enable_dxva2}" = "yes"],
2418               [AC_MSG_ERROR([Could not find required dxva2api.h])],
2419               [AC_MSG_WARN([dxva2api.h not found])])
2420       ])
2421   ],[
2422     AS_IF([test "x${enable_dxva2}" != "x"], [
2423       AC_MSG_ERROR([--enable-dxva2 and --disable-avcodec options are mutually exclusive.])
2424     ])
2425   ])
2426   fi
2431 dnl stream_out switcher needs libavcodec
2433 AC_ARG_ENABLE(switcher,
2434   [  --enable-switcher       Stream-out switcher plugin (default disabled)])
2435 AS_IF([test "${enable_switcher}" = "yes"], [
2436   AS_IF([test "x${have_avcodec}" = "xyes"], [
2437     VLC_ADD_PLUGIN([stream_out_switcher])
2438     VLC_ADD_LIBS([stream_out_switcher],[$AVCODEC_LIBS $AVUTIL_LIBS])
2439     VLC_ADD_CFLAGS([stream_out_switcher],[$AVCODEC_CFLAGS $AVUTIL_CFLAGS])
2440   ],[AC_MSG_ERROR([Stream_out switcher depends on avcodec])
2441   ])
2446 dnl  avformat demuxer/muxer plugin
2449 AC_ARG_ENABLE(avformat,
2450 [  --enable-avformat       libavformat containers (default enabled)],, [
2451   enable_avformat="${have_avcodec}"
2453 if test "${enable_avformat}" != "no"
2454 then
2455   PKG_CHECK_MODULES(AVFORMAT,[libavformat > 52.30.0 libavcodec libavutil],
2456     [
2457       VLC_SAVE_FLAGS
2458       CPPFLAGS="${CPPFLAGS} ${AVFORMAT_CFLAGS}"
2459       CFLAGS="${CFLAGS} ${AVFORMAT_CFLAGS}"
2460       AC_CHECK_HEADERS(libavformat/avformat.h libavformat/avio.h)
2461       AC_CHECK_HEADERS(libavutil/avutil.h)
2462       AS_IF([test "$enable_merge_ffmpeg" = "no"], [
2463         VLC_ADD_PLUGIN([avformat access_avio])
2464         VLC_ADD_LIBS([avformat access_avio],[$AVFORMAT_LIBS $AVUTIL_LIBS])
2465         VLC_ADD_CFLAGS([avformat access_avio],[$AVFORMAT_CFLAGS $AVUTIL_CFLAGS])
2466         AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2467           VLC_ADD_LIBS([avformat access_avio],[-Wl,-Bsymbolic])
2468         ])
2469       ], [
2470         VLC_ADD_LIBS([avcodec],[$AVFORMAT_LIBS $AVUTIL_LIBS])
2471         VLC_ADD_CFLAGS([avcodec],[$AVFORMAT_CFLAGS $AVUTIL_CFLAGS])
2472       ])
2473       VLC_RESTORE_FLAGS
2474     ],[
2475       AC_MSG_ERROR([${AVFORMAT_PKG_ERRORS}. Pass --disable-avformat to ignore this error.])
2476   ])
2480 dnl  swscale image scaling and conversion plugin
2483 AC_ARG_ENABLE(swscale,
2484   AS_HELP_STRING([--enable-swscale],[libswscale image scaling and conversion
2485           (default enabled)]))
2486 if test "${enable_swscale}" != "no"
2487 then
2488   PKG_CHECK_MODULES(SWSCALE,[libswscale],
2489     [
2490       VLC_SAVE_FLAGS
2491       CPPFLAGS="${CPPFLAGS} ${SWSCALE_CFLAGS}"
2492       CFLAGS="${CFLAGS} ${SWSCALE_CFLAGS}"
2493       AC_CHECK_HEADERS(libswscale/swscale.h)
2494       VLC_ADD_PLUGIN([swscale])
2495       VLC_ADD_LIBS([swscale],[$SWSCALE_LIBS])
2496       VLC_ADD_CFLAGS([swscale],[$SWSCALE_CFLAGS])
2497       AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2498         VLC_ADD_LIBS([swscale],[-Wl,-Bsymbolic])
2499       ])
2500       VLC_RESTORE_FLAGS
2501     ],[
2502       AC_MSG_ERROR([${SWSCALE_PKG_ERRORS}. Pass --disable-swscale to ignore this error. Proper software scaling and some video chroma conversion will be missing.])
2503   ])
2507 dnl  postproc plugin
2510 AC_ARG_ENABLE(postproc,
2511 [  --enable-postproc       libpostproc image post-processing (default enabled)])
2512 if test "${enable_postproc}" != "no"
2513 then
2514   PKG_CHECK_MODULES(POSTPROC,[libpostproc libavutil],
2515     [
2516       VLC_SAVE_FLAGS
2517       CPPFLAGS="${CPPFLAGS} ${POSTPROC_CFLAGS}"
2518       CFLAGS="${CFLAGS} ${POSTPROC_CFLAGS}"
2519       AC_CHECK_HEADERS(postproc/postprocess.h)
2520       VLC_ADD_PLUGIN([postproc])
2521       VLC_ADD_LIBS([postproc],[$POSTPROC_LIBS $AVUTIL_LIBS])
2522       VLC_ADD_CFLAGS([postproc],[$POSTPROC_CFLAGS $AVUTIL_CFLAGS])
2523       VLC_RESTORE_FLAGS
2524     ],[
2525       AC_MSG_ERROR([${POSTPROC_PKG_ERRORS}. Pass --disable-postproc to ignore this error.])
2526   ])
2530 dnl  faad decoder plugin
2532 AC_ARG_ENABLE(faad,
2533 [  --enable-faad           faad codec (default disabled)])
2534 if test "${enable_faad}" = "yes"
2535 then
2536   AC_ARG_WITH(faad-tree,
2537   [  --with-faad-tree=PATH   faad tree for static linking])
2538   if test -n "${with_faad_tree}"
2539   then
2540     AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
2541     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
2542     if test -z "${real_faad_tree}"
2543     then
2544       dnl  The given directory can't be found
2545       AC_MSG_RESULT(no)
2546       AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
2547     fi
2548     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
2549     then
2550       dnl  Use a custom faad
2551       AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
2552       VLC_ADD_PLUGIN([faad])
2553       VLC_ADD_LIBS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
2554       VLC_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
2555     else
2556       dnl  The given libfaad wasn't built
2557       AC_MSG_RESULT(no)
2558       AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
2559     fi
2560   else
2561     VLC_SAVE_FLAGS
2562     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_faad}"
2563     LDFLAGS="${LDFLAGS} ${LIBS_faad}"
2564     AC_CHECK_HEADERS(faad.h, ,
2565       [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ])
2566     AC_CHECK_LIB(faad, faacDecOpen, [
2567       VLC_ADD_PLUGIN([faad])
2568       VLC_ADD_LIBS([faad],[-lfaad]) ],
2569       AC_CHECK_LIB(faad, NeAACDecOpen, [
2570         VLC_ADD_PLUGIN([faad])
2571         VLC_ADD_LIBS([faad],[-lfaad]) ],
2572         [ AC_MSG_ERROR([Cannot find libfaad library...]) ]))
2573     VLC_RESTORE_FLAGS
2574   fi
2578 dnl twolame encoder plugin
2580 PKG_ENABLE_MODULES_VLC([TWOLAME], [], [twolame], [MPEG Audio Layer 2 encoder], [auto], [], [], [ -DLIBTWOLAME_STATIC])
2583 dnl  QuickTime plugin
2585 AC_ARG_ENABLE(quicktime,
2586   [  --enable-quicktime      QuickTime module (deprecated)])
2587 if test "${enable_quicktime}" = "yes"; then
2588   if test "${SYS}" = "mingw32"; then
2589     VLC_ADD_PLUGIN([quicktime])
2590   else
2591   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2592     [ VLC_ADD_PLUGIN([quicktime])
2593       VLC_ADD_LIBS([quicktime],[-Wl,-framework,QuickTime,-framework,Carbon])
2594     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2595   fi
2599 dnl  Real plugin
2601 AC_ARG_ENABLE(real,
2602   [  --enable-real           Real video decoder module (default disabled)])
2603 if test "${enable_real}" = "yes"; then
2604   VLC_ADD_PLUGIN([realvideo])
2608 dnl A52/AC3 decoder plugin
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
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]) ])
2685 dnl DTS Coherent Acoustics decoder plugin
2687 PKG_ENABLE_MODULES_VLC([DCA], [dtstofloat32], [libdca >= 0.0.5], [DTS Coherent Acoustics support with libdca], [auto])
2690 dnl  Flac plugin
2692 PKG_ENABLE_MODULES_VLC([FLAC], [], [flac], [libflac decoder/encoder support], [auto])
2695 dnl  Libmpeg2 plugin
2697 PKG_ENABLE_MODULES_VLC([LIBMPEG2], [], [libmpeg2 > 0.3.2], [libmpeg2 decoder support], [auto])
2700 dnl  Vorbis plugin
2702 PKG_ENABLE_MODULES_VLC([VORBIS], [], [ogg vorbis >= 1.1 vorbisenc >= 1.1], [Vorbis decoder and encoder], [auto])
2705 dnl  Tremor plugin
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    ],[])
2718 dnl  Speex plugins
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   ])
2729 AM_CONDITIONAL([HAVE_SPEEXDSP], [test "$have_speexdsp" = "yes"])
2732 dnl  theora decoder plugin
2734 PKG_ENABLE_MODULES_VLC([THEORA], [], [ogg theora >= 1.0], [experimental theora codec], [auto])
2737 dnl  dirac encoder plugin
2739 PKG_ENABLE_MODULES_VLC([DIRAC], [], [dirac >= 0.10.0], [dirac encoder], [auto])
2742 dnl  schroedinger decoder plugin (for dirac format video)
2744 PKG_ENABLE_MODULES_VLC([SCHROEDINGER], [], [schroedinger-1.0 >= 1.0.10], [dirac decoder and encoder using schroedinger], [auto])
2747 dnl  PNG decoder module
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"
2755   AC_CHECK_LIB(png, png_set_rows, [
2756     VLC_ADD_LIBS([png],[-lpng -lz -lm])
2757     VLC_ADD_PLUGIN([png osdmenu osd_parser])],
2758     [],[-lz])
2759   VLC_RESTORE_FLAGS
2760   ])
2762 AM_CONDITIONAL(BUILD_OSDMENU, [test "${enable_png}" != "no"])
2765 dnl H264 encoder plugin (using libx264)
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}])
2807         AS_IF([test "${ac_cv_ld_bsymbolic}" != "no"], [
2808           VLC_ADD_LIBS([x264],[-Wl,-Bsymbolic])
2809         ])
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
2824 dnl libfluidsynth (MIDI synthetizer) plugin
2826 PKG_ENABLE_MODULES_VLC([FLUIDSYNTH], [], [fluidsynth], [MIDI synthetiser with libfluidsynth], [auto])
2829 dnl Teletext Modules
2830 dnl vbi decoder plugin (using libzbvi)
2831 dnl telx module
2832 dnl uncompatible
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)]))
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   ])
2863 dnl libass subtitle rendering module
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])
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   ])
2884 dnl  kate decoder plugin
2886 PKG_ENABLE_MODULES_VLC([KATE], [], [kate >= 0.3.0], [kate codec], [auto])
2889 dnl  tiger rendering for kate decoder plugin
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   ])
2906 dnl  Video plugins
2909 EXTEND_HELP_STRING([Video plugins:])
2912 dnl  OpenGL
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   ])
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])
2931 AC_ARG_ENABLE(egl,
2932   [  --enable-egl            OpenGL support through EGL (default disabled)],, [
2933   enable_egl="no"
2935 AS_IF([test "$enable_egl" != "no"], [
2936   PKG_CHECK_MODULES([EGL], [egl], [
2937     VLC_ADD_PLUGIN([gl])
2938     VLC_ADD_PLUGIN([egl])
2939   ])
2943 dnl  Xlib
2946 AC_PATH_XTRA()
2947 AC_CHECK_HEADERS(X11/Xlib.h)
2950 dnl  X C Bindings modules
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   ])
2960 AC_ARG_ENABLE(xvideo,
2961   [  --enable-xvideo         XVideo support (default enabled)],, [
2962     enable_xvideo="$enable_xcb"
2964 AC_ARG_ENABLE(glx,
2965   [  --enable-glx            OpenGL support through GLX (default enabled)],, [
2966   enable_glx="$enable_xcb"
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])
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   ])
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   ])
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   ])
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     PKG_CHECK_MODULES(XLIB_XCB, [x11-xcb], [
3007       VLC_ADD_PLUGIN([xcb_glx])
3008     ], [
3009       AC_MSG_ERROR([${XLIB_XCB_PKG_ERRORS}. Pass --disable-glx if you do not need OpenGL X11 support.])
3010     ])
3011   ])
3013 AM_CONDITIONAL([HAVE_XCB], [test "${have_xcb}" = "yes"])
3016 dnl  SDL module
3018 AC_ARG_ENABLE(sdl,
3019   [  --enable-sdl            SDL support (default enabled)])
3020 AC_ARG_ENABLE(sdl-image,
3021   [  --enable-sdl-image      SDL image support (default enabled)])
3022 if test "${enable_sdl}" != "no"
3023 then
3024    PKG_CHECK_MODULES(SDL, [sdl >= 1.2.10], [
3025       # SDL on Darwin is heavily patched and can only run SDL_image
3026       if test "${SYS}" != "darwin"; then
3027         VLC_ADD_PLUGIN([vout_sdl])
3028       fi
3029       if test "${SYS}" != "mingw32" -a "${SYS}" != "os2"; then
3030         VLC_ADD_LIBS([vout_sdl],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3031       fi
3032       VLC_ADD_CFLAGS([vout_sdl],[${SDL_CFLAGS}])
3033       VLC_ADD_LIBS([vout_sdl],[${SDL_LIBS}])
3035       # SDL_image
3036       AS_IF([ test "${enable_sdl_image}" != "no"],[
3037         PKG_CHECK_MODULES(SDL_IMAGE, [SDL_image >= 1.2.10], [
3038           VLC_ADD_PLUGIN([sdl_image])
3039           VLC_ADD_LIBS([sdl_image],[${SDL_IMAGE_LIBS}])
3040           VLC_ADD_CFLAGS([sdl_image], [${SDL_IMAGE_CFLAGS}])],
3041           [ AC_MSG_WARN([${SDL_IMAGE_PKG_ERRORS}. You should install it alongside your SDL package.])
3042           ])
3043       ])
3044    ],[
3045      AC_MSG_WARN([${SDL_PKG_ERRORS}.])
3046    ])
3051 dnl Mac Vout
3052 AC_ARG_ENABLE(macosx-vout,
3053   [  --enable-macosx-vout    Mac OS X video output module (default enabled on Mac OS X)])
3054 if test "x${enable_macosx_vout}" != "xno" &&
3055   (test "${SYS}" = "darwin" || test "${enable_macosx_vout}" = "yes")
3056 then
3057   VLC_ADD_LIBS([vout_macosx],[-Wl,-framework,Cocoa])
3058   VLC_ADD_LIBS([vout_macosx],[-Wl,-framework,OpenGL])
3059   VLC_ADD_PLUGIN([vout_macosx])
3064 dnl  freetype module
3066 AC_ARG_ENABLE(freetype,
3067   [  --enable-freetype       freetype support   (default auto)])
3068 AC_ARG_ENABLE(fribidi,
3069   [  --enable-fribidi        fribidi support    (default auto)])
3070 AC_ARG_ENABLE(fontconfig,
3071   [  --enable-fontconfig     fontconfig support (default auto)])
3073 if test "${enable_freetype}" != "no"; then
3074    PKG_CHECK_MODULES(FREETYPE, freetype2, [
3075       have_freetype=yes
3076       VLC_ADD_PLUGIN([freetype])
3077       VLC_ADD_CPPFLAGS([freetype skins2],[${FREETYPE_CFLAGS}])
3078       if test "${SYS}" = "mingw32"; then
3079         VLC_ADD_LIBS([freetype],[-liconv -lz])
3080       fi
3081       VLC_ADD_LIBS([freetype skins2],[${FREETYPE_LIBS}])
3083       AC_CHECK_HEADERS(Carbon/Carbon.h,
3084                        [VLC_ADD_LIBS([freetype],[-Wl,-framework,Carbon])])
3086       dnl fontconfig support
3087       if test "${SYS}" != "mingw32"; then
3088           if test "${enable_fontconfig}" != "no"; then
3089             AC_CHECK_HEADERS(fontconfig/fontconfig.h, [
3090               VLC_ADD_CPPFLAGS([freetype],[-DHAVE_FONTCONFIG])
3091               VLC_ADD_LIBS([freetype],[-lfontconfig])
3092             ],[AC_MSG_WARN([library fontconfig not found. Styles will be disabled in freetype])])
3093           fi
3094       else
3095           VLC_ADD_LIBS([freetype],[-lgdi32])
3096       fi
3098       dnl fribidi support
3099       if test "${enable_fribidi}" != "no"; then
3100         PKG_CHECK_MODULES(FRIBIDI, fribidi, [
3101           VLC_ADD_CPPFLAGS([freetype skins2], [${FRIBIDI_CFLAGS} -DHAVE_FRIBIDI])
3102           VLC_ADD_LIBS([freetype skins2], [${FRIBIDI_LIBS}])
3103         ],[AC_MSG_WARN([${FRIBIDI_PKG_ERRORS}. Bidirectional support will be disabled in FreeType.])])
3104       fi
3106   ],[
3107   have_freetype=no
3108   AS_IF([test -n "${enable_freetype}"],[
3109     AC_MSG_ERROR([${FREETYPE_PKG_ERRORS}. Install FreeType2 development or configure with --disable-freetype.])
3110     ])
3111   ])
3116 dnl  QuartzText vout module (iOS/Mac OS)
3118 AC_ARG_ENABLE(macosx-quartztext,
3119   [  --enable-macosx-quartztext   Mac OS X quartz text module (default enabled on Mac OS X)])
3120 if test "x${enable_macosx_quartztext}" != "xno" &&
3121   (test "${SYS}" = "darwin" || test "${enable_macosx_quartztext}" = "yes")
3122 then
3123   VLC_ADD_PLUGIN([quartztext])
3124   VLC_ADD_LIBS([quartztext],[-Wl,-framework,ApplicationServices])
3128 dnl  SVG module
3130 PKG_ENABLE_MODULES_VLC([SVG], [], [librsvg-2.0 >= 2.9.0], [SVG rendering library],[auto])
3133 dnl  android surface module
3135 AC_ARG_ENABLE(android-surface,
3136   [  --enable-android-surface   Android Surface video output module (default disabled)])
3137 if test "${enable_android_surface}" = "yes"; then
3138   if test "${HAVE_ANDROID}" = "1"; then
3139      VLC_ADD_PLUGIN([android_surface])
3140      VLC_ADD_LDFLAGS([android_surface], [-ldl])
3141   fi
3146 dnl  iOS vout module
3148 AC_ARG_ENABLE(ios-vout,
3149   [  --enable-ios-vout    iOS video output module (default disabled)])
3150 if test "${enable_ios_vout}" = "yes"
3151 then
3152   VLC_ADD_PLUGIN([vout_ios])
3153   VLC_ADD_CFLAGS([vout_ios], [-DUSE_OPENGL_ES=1])
3154   VLC_ADD_LIBS([vout_ios], [-Wl,-framework,OpenGLES,-framework,QuartzCore,-framework,UIKit,-framework,Foundation])
3158 dnl  Windows DirectX module
3161 if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"
3162 then
3163   VLC_ADD_PLUGIN([panoramix])
3166 AC_ARG_ENABLE(directx,
3167   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
3168 if test "${enable_directx}" != "no"; then
3169   if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"; then
3170       dnl DDraw
3171       AC_CHECK_HEADERS(ddraw.h,
3172       [ VLC_ADD_PLUGIN([directx aout_directx])
3173         VLC_ADD_LIBS([directx],[-luser32 -lgdi32])
3174       ],[AC_MSG_ERROR([Cannot find DirectX headers!])]
3175       )
3177       dnl OpenGL
3178       AC_CHECK_HEADERS(GL/wglew.h,
3179       [ VLC_ADD_PLUGIN([glwin32])
3180         VLC_ADD_LIBS([glwin32],[-lopengl32 -lgdi32])
3181       ],[],[
3182         #include <windows.h>
3183         #include <GL/gl.h>
3184       ])
3186       dnl Direct3D
3187       AC_CHECK_HEADERS(d3d9.h,
3188       [ VLC_ADD_PLUGIN([direct3d])
3189         VLC_ADD_LIBS([direct3d],[-lgdi32])
3190       ])
3191       VLC_ADD_LIBS([direct3d directx glwin32],[-lole32])
3192   fi
3196 dnl  Windows Direct2D plugin
3198 AC_ARG_ENABLE(direct2d,
3199   [  --enable-direct2d       Win7/VistaPU Direct2D support (default auto on Win32)],, [
3200   AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"], [
3201     enable_direct2d="no"
3202   ])
3204 AS_IF([test "${enable_direct2d}" != "no"], [
3205   AC_CHECK_HEADERS(d2d1.h, [
3206     VLC_ADD_PLUGIN([direct2d])
3207     VLC_ADD_LIBS([direct2d],[-lgdi32 -lole32])
3208   ], [
3209     AC_MSG_WARN([Cannot find Direct2D headers!])
3210   ])
3214 dnl  win32 GDI plugin
3216 AC_ARG_ENABLE(wingdi,
3217   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
3218 if test "${enable_wingdi}" != "no"; then
3219   if test "${SYS}" = "mingw32"; then
3220     VLC_ADD_PLUGIN([wingdi])
3221     VLC_ADD_LIBS([wingdi],[-lgdi32 -lole32])
3222   fi
3223   if test "${SYS}" = "mingwce"; then
3224     VLC_ADD_PLUGIN([wingdi wingapi])
3225     VLC_ADD_LIBS([wingdi],[-laygshell])
3226     VLC_ADD_LIBS([wingapi],[-laygshell])
3227   fi
3232 dnl  Linux framebuffer module
3234 AC_CHECK_HEADER([linux/fb.h], [
3235   VLC_ADD_PLUGIN([fb])
3240 dnl  DirectFB module
3241 dnl  try to find using: 1 - given location; 2 - directfb-config; 3 - pkg-config
3242 dnl  TODO: support for static linking
3244 AC_ARG_ENABLE(directfb,
3245   [  --enable-directfb       DirectFB support (default disabled)])
3246 AC_ARG_WITH(directfb,
3247   [  --with-directfb=PATH    path to DirectFB headers and libraries])
3249 if test "${enable_directfb}" = "yes"; then
3250     have_directfb="false"
3251     CPPFLAGS_mydirectfb=
3252     LIBS_mydirectfb=
3253     if test "${with_directfb}" != "no" -a -n "${with_directfb}"; then
3254         dnl Trying the given location
3255         VLC_SAVE_FLAGS
3257         CPPFLAGS_new="-I${with_directfb}/include -D_REENTRANT -D_GNU_SOURCE"
3258         LIBS_new="-L${with_directfb}/lib/fusion/.libs/ -L${with_directfb}/lib/direct/.libs/ -L${with_directfb}/src/.libs/"
3260         CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_new}"
3261         LIBS="${LIBS} ${LIBS_new}"
3263         dnl FIXME: too obscure
3264         AC_CHECK_HEADER([directfb.h], [
3265             AC_CHECK_LIB([direct],[direct_initialize], [
3266                 AC_CHECK_LIB([fusion], [fusion_enter], [
3267                     AC_CHECK_LIB([directfb], [DirectFBInit], have_directfb="true", have_directfb="false")
3268                 ], have_directfb="false")
3269             ], have_directfb="false")
3270         ], have_directfb="false")
3272         VLC_RESTORE_FLAGS
3274         if test "${have_directfb}" = "true"; then
3275             LIBS_mydirectfb="${LIBS_new} -lz $LIBDL -ldirectfb -lfusion -ldirect -lpthread"
3276             CPPFLAGS_mydirectfb="${CPPFLAGS_new}"
3277         fi
3278     else
3279         dnl Look for directfb-config
3280         AC_PATH_PROG(DIRECTFB_CONFIG, directfb-config, no, ${PATH})
3281         if test "${DIRECTFB_CONFIG}" != "no"; then
3282             CPPFLAGS_mydirectfb="`${DIRECTFB_CONFIG} --cflags`"
3283             LIBS_mydirectfb="`${DIRECTFB_CONFIG} --libs`"
3284             have_directfb="true"
3285         else
3286             dnl Trying with pkg-config
3287             PKG_CHECK_MODULES(DIRECTFB, directfb, [
3288                 CPPFLAGS_mydirectfb="${DIRECTFB_CFLAGS}"
3289                 LIBS_mydirectfb="${DIRECTFB_LIBS}"
3290                 have_directfb="true"
3291                 ], [have_directfb="false"])
3292         fi
3293     fi
3294     if test "${have_directfb}" = "true"; then
3295         VLC_ADD_PLUGIN([directfb])
3296         VLC_ADD_CPPFLAGS([directfb],[${CPPFLAGS_mydirectfb}])
3297         VLC_ADD_LIBS([directfb],[${LIBS_mydirectfb}])
3298     else
3299         AC_MSG_ERROR([${DIRECTFB_PKG_ERRORS}.])
3300     fi
3304 dnl  AA plugin
3306 AC_ARG_ENABLE(aa,
3307   [  --enable-aa             aalib output (default disabled)])
3308 if test "${enable_aa}" = "yes"
3309 then
3310   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3311   if test "${have_aa}" = "true"
3312   then
3313     VLC_ADD_PLUGIN([aa])
3314     VLC_ADD_LIBS([aa],[-laa])
3315     if test "${SYS}" != "mingw32"; then
3316       VLC_ADD_LIBS([aa],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3317     fi
3318   fi
3322 dnl  libcaca plugin
3324 PKG_ENABLE_MODULES_VLC([CACA], [], [caca >= 0.99.beta14], [libcaca output],[auto])
3327 dnl  OS/2 KVA plugin
3329 AC_ARG_ENABLE(kva,
3330   [AS_HELP_STRING([--enable-kva],
3331     [support the K Video Accelerator KVA (default enabled on OS/2)])],, [
3332   AS_IF([test "$SYS" = "os2"], [
3333     enable_kva="yes"
3334   ])
3336 have_kva="no"
3337 KVA_LIBS=""
3338 AS_IF([test "$enable_kva" != "no"], [
3339   AC_CHECK_HEADERS([kva.h], [
3340     have_kva="yes"
3341     AC_CHECK_LIB(kva, main, [
3342       KVA_LIBS="-lkva"
3343     ])
3344   ])
3346 AC_SUBST(KVA_LIBS)
3347 AM_CONDITIONAL([HAVE_KVA], [test "${have_kva}" = "yes"])
3350 dnl  Audio plugins
3353 EXTEND_HELP_STRING([Audio plugins:])
3356 dnl  Pulseaudio module
3358 AC_ARG_ENABLE(pulse,
3359   [AS_HELP_STRING([--enable-pulse],
3360     [use the PulseAudio client library (default auto)])])
3361 have_pulse="no"
3362 AS_IF([test "${enable_pulse}" != "no"], [
3363   PKG_CHECK_MODULES([PULSE], [libpulse >= 0.9.22], [
3364     have_pulse="yes"
3365   ], [
3366     PKG_CHECK_MODULES([PULSE], [libpulse >= 0.9.16], [
3367       AS_IF([test "${no_x}" != "yes"], [
3368         have_pulse="yes"
3369         PULSE_LIBS="$PULSE_LIBS ${X_LIBS} ${X_PRE_LIBS} -lX11"
3370       ], [
3371         AS_IF([test "${enable_pulse}" = "yes"], [
3372           AC_MSG_ERROR([Xlib is required with PulseAudio pre-0.9.22 versions
3373 (see http://www.pulseaudio.org/ticket/799 for further reference).])
3374         ])
3375       ])
3376     ], [
3377       AS_IF([test "x${enable_pulse}" != "x"], [
3378         AC_MSG_ERROR([$PULSE_PKG_ERRORS. PulseAudio 0.9.22 or later required.])
3379       ])
3380     ])
3381   ])
3383 AM_CONDITIONAL([HAVE_PULSE], [test "${have_pulse}" = "yes"])
3386 dnl  ALSA module
3388 AC_ARG_ENABLE(alsa,
3389   [AS_HELP_STRING([--enable-alsa],
3390     [support the Advanced Linux Sound Architecture (default auto)])],, [
3391   AS_IF([test "$SYS" = "linux" -a "${have_pulse}" = "no"], [
3392     enable_alsa="yes"
3393   ])
3395 have_alsa="no"
3396 AS_IF([test "${enable_alsa}" != "no"], [
3397   PKG_CHECK_MODULES([ALSA], [alsa >= 1.0.16], [
3398     have_alsa="yes"
3399   ], [
3400     AS_IF([test "x${enable_alsa}" != "x"], [
3401       AC_MSG_ERROR([$ALSA_PKG_ERRORS. alsa-lib 1.0.16 or later required.])
3402     ])
3403   ])
3405 AM_CONDITIONAL([HAVE_ALSA], [test "${have_alsa}" = "yes"])
3408 dnl  Open Sound System module
3410 AC_ARG_ENABLE(oss,
3411   [AS_HELP_STRING([--enable-oss],
3412     [support the Open Sound System OSS (default enabled on BSD)])],, [
3413   AS_IF([test "$SYS" = "mingw32" -o "$SYS" = "mingwce" -o "$SYS" = "linux"], [
3414     enable_oss="no"
3415   ])
3417 have_oss="no"
3418 OSS_LIBS=""
3419 AS_IF([test "$enable_oss" != "no"], [
3420   AC_CHECK_HEADERS([soundcard.h sys/soundcard.h], [
3421     have_oss="yes"
3422     AC_CHECK_LIB(ossaudio, main, [
3423       OSS_LIBS="-lossaudio"
3424     ])
3425   ])
3427 AC_SUBST(OSS_LIBS)
3428 AM_CONDITIONAL([HAVE_OSS], [test "${have_oss}" = "yes"])
3431 dnl  Portaudio module
3433 PKG_ENABLE_MODULES_VLC([PORTAUDIO], [], [portaudio-2.0], [Portaudio library support], [auto])
3436 dnl  win32 waveOut plugin
3438 AC_ARG_ENABLE(waveout,
3439   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
3440 if test "${enable_waveout}" != "no"; then
3441   if test "${SYS}" = "mingw32"; then
3442     VLC_ADD_PLUGIN([waveout])
3443     VLC_ADD_LIBS([waveout],[-lwinmm])
3444   fi
3445   if test "${SYS}" = "mingwce"; then
3446     VLC_ADD_PLUGIN([waveout])
3447   fi
3451 dnl  CoreAudio plugin
3453 AC_ARG_ENABLE(macosx-audio,
3454   [  --enable-macosx-audio   Mac OS X audio module (default enabled on MacOS X)])
3455 if test "x${enable_macosx_audio}" != "xno" &&
3456   (test "${SYS}" = "darwin" || test "${enable_macosx_audio}" = "yes")
3457 then
3458   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h,
3459     [ VLC_ADD_PLUGIN([auhal])
3460       VLC_ADD_LIBS([auhal],[-Wl,-framework,CoreAudio,-framework,AudioUnit,-framework,AudioToolbox,-framework,Carbon])
3461     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
3465 dnl  AudioQueue plugin
3467 AC_ARG_ENABLE(audioqueue,
3468   [  --enable-audioqueue     AudioQueue audio module (default disabled)])
3469 if test "${enable_audioqueue}" = "yes"
3470 then
3471   VLC_ADD_PLUGIN([audioqueue])
3472   VLC_ADD_LIBS([audioqueue], [-Wl,-framework,AudioToolbox,-framework,CoreFoundation])
3476 dnl  JACK modules
3478 PKG_ENABLE_MODULES_VLC([JACK], [jack access_jack], [jack], [JACK audio I/O modules],[auto])
3481 dnl  OpenSLES Android
3483 AC_ARG_ENABLE(opensles,
3484   [  --enable-opensles       Android OpenSL ES audio module (default disabled)])
3485 if test "${HAVE_ANDROID}" = "1"; then
3486   if test "${enable_opensles}" = "yes"; then
3487       AC_CHECK_HEADERS(SLES/OpenSLES.h,
3488         [ VLC_ADD_PLUGIN([opensles_android]) ],
3489         [ AC_MSG_ERROR([cannot find OpenSLES headers])] )
3490   fi
3494 dnl libsamplerate plugin
3496 PKG_ENABLE_MODULES_VLC([SAMPLERATE], [], [samplerate], [Resampler with libsamplerate], [auto])
3499 dnl  OS/2 KAI plugin
3501 AC_ARG_ENABLE(kai,
3502   [AS_HELP_STRING([--enable-kai],
3503     [support the K Audio Interface KAI (default enabled on OS/2)])],, [
3504   AS_IF([test "$SYS" = "os2"], [
3505     enable_kai="yes"
3506   ])
3508 have_kai="no"
3509 KAI_LIBS=""
3510 AS_IF([test "$enable_kai" != "no"], [
3511   AC_CHECK_HEADERS([kai.h], [
3512     have_kai="yes"
3513     AC_CHECK_LIB(kai, main, [
3514       KAI_LIBS="-lkai"
3515     ])
3516   ])
3518 AC_SUBST(KAI_LIBS)
3519 AM_CONDITIONAL([HAVE_KAI], [test "${have_kai}" = "yes"])
3522 dnl  Interface plugins
3525 EXTEND_HELP_STRING([Interface plugins:])
3528 dnl Hildon UI
3530 AC_ARG_ENABLE(hildon,
3531   [  --enable-hildon         Hildon touchscreen UI (default disabled)])
3532 AS_IF([test "${enable_hildon}" = "yes"], [
3533   PKG_CHECK_MODULES(HILDON, [hildon-1], [
3534     PKG_CHECK_MODULES(HILDON_FM, hildon-fm-2, [
3535       VLC_ADD_CFLAGS([hildon],[${HILDON_FM_CFLAGS} -DHAVE_HILDON_FM])
3536       VLC_ADD_LIBS([hildon],[${HILDON_FM_LIBS}])
3537     ], [
3538       AC_MSG_WARN([${HILDON_FM_PKG_ERRORS}.])
3539     ])
3540     VLC_ADD_CFLAGS([hildon],[${HILDON_CFLAGS} ${X_CFLAGS}])
3541     VLC_ADD_LIBS([hildon],[${HILDON_LIBS} ${X_LIBS} ${X_PRE_LIBS} -lX11])
3542     VLC_ADD_PLUGIN([hildon])
3543     ALIASES="${ALIASES} mvlc"
3544   ], [
3545     AS_IF([test "${enable_hildon}" = "yes"],[
3546       AC_MSG_ERROR([${HILDON_PKG_ERRORS}.])
3547     ])
3548     enable_hildon="no"
3549   ])
3551 AM_CONDITIONAL(BUILD_HILDON, [test "${enable_hildon}" = "yes"])
3554 dnl QT 4
3556 AC_ARG_ENABLE(qt4,
3557   [  --enable-qt4            Qt 4 support (default enabled) ],, [
3558   AS_IF([test "${SYS}" = "darwin"], [enable_qt4=no])
3560 AS_IF([test "${enable_qt4}" != "no"], [
3561   PKG_CHECK_MODULES(QT4, [QtCore QtGui >= 4.6.0], [
3562     VLC_ADD_PLUGIN([qt4])
3563     VLC_ADD_LIBS([qt4],[${QT4_LIBS}])
3564     VLC_ADD_CXXFLAGS([qt4],[${QT4_CFLAGS}])
3565     ALIASES="${ALIASES} qvlc"
3567     AC_LANG_PUSH([C++])
3568     VLC_SAVE_FLAGS
3570     AC_MSG_CHECKING([whether Qt uses X11])
3571     CPPFLAGS="${CPPFLAGS} ${QT4_CFLAGS}"
3572     AC_PREPROC_IFELSE([AC_LANG_SOURCE([
3573 #include <QWidget>
3574 #if !defined (Q_WS_X11)
3575 # error Fail
3576 #endif
3577     ])], [
3578       AC_MSG_RESULT([yes])
3579       VLC_ADD_LIBS([qt4],[${X_LIBS} ${X_PRE_LIBS} -lX11])
3580       VLC_ADD_CXXFLAGS([qt4],[${X_CFLAGS}])
3581     ], [
3582       AC_MSG_RESULT([no])
3583     ])
3585     VLC_RESTORE_FLAGS
3586     AC_LANG_POP([C++])
3588     AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"], [
3589         VLC_ADD_LIBS([qt4],[-lole32])
3590     ])
3591     AS_IF([test "${SYS}" = "darwin" ],[
3592          VLC_ADD_LIBS([qt4], [-Wl,-framework,Cocoa])
3593     ])
3594     AC_PATH_PROGS(MOC, [moc-qt4 moc], moc,`eval $PKG_CONFIG --variable=exec_prefix QtCore`/bin)
3595     AC_PATH_PROG(RCC, rcc, rcc,`eval $PKG_CONFIG --variable=exec_prefix QtCore`/bin)
3596     AC_PATH_PROGS(UIC, [uic-qt4 uic], uic,`eval $PKG_CONFIG --variable=exec_prefix QtCore`/bin)
3597   ], [
3598     AS_IF([test -n "${enable_qt4}"],[
3599       AC_MSG_ERROR([${QT4_PKG_ERRORS}.])
3600     ],[
3601       AC_MSG_WARN([${QT4_PKG_ERRORS}.])
3602     ])
3603     enable_qt4="no"
3604   ])
3606 AM_CONDITIONAL(ENABLE_QT4, [test "x$enable_qt4" != "xno"])
3609 dnl Simple test for skins2 dependency
3611 AS_IF([test "x$enable_qt4" = "xno"], [
3612   AS_IF([test "${enable_skins2}" = "yes"], [
3613     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.])
3614   ], [
3615     enable_skins2="no"
3616     AC_MSG_WARN([The skins2 module depends on the Qt4 interface, Qt4 is not built so skins2 is disabled.])
3617   ])
3621 dnl Skins2 module
3623 AC_ARG_ENABLE(skins2,
3624   [AS_HELP_STRING([--enable-skins2], [skins interface module (default auto)])])
3625 AS_IF([test "${enable_skins2}" != "no"], [
3626   have_skins_deps="yes"
3628   dnl Win32
3629   AS_IF([test "${SYS}" = "mingw32"], [
3630     VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -Imodules/gui/skins2 -DWIN32_SKINS])
3631     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3632     VLC_ADD_LIBS([skins2],[-lgdi32 -lole32 -luuid -lmsimg32])
3633   dnl MacOS
3634   ], [test "${SYS}" = "darwin"], [
3635     VLC_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 -DMACOSX_SKINS])
3636     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3637     VLC_ADD_LIBS([skins2],[-Wl,-framework,Carbon])
3638   dnl Linux/Unix
3639   ], [
3640     PKG_CHECK_MODULES([XPM], [xpm],, [have_skins_deps="no"])
3641     PKG_CHECK_MODULES([XINERAMA], [xinerama],, [have_skins_deps="no"])
3642     PKG_CHECK_MODULES([XEXT], [xext],, [have_skins_deps="no"])
3643     VLC_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 ${X_CFLAGS} ${XEXT_CFLAGS} ${XPM_CFLAGS} -DX11_SKINS])
3644     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3645     VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} ${XEXT_LIBS} ${XPM_LIBS} ${XINERAMA_LIBS} -lX11])
3646   ])
3648   dnl we need freetype
3649   AS_IF([test "${have_freetype}" != "yes"], [
3650     have_skins_deps="no"
3651   ])
3653   AS_IF([test "${have_skins_deps}" = "no"], [
3654     AS_IF([test "x${enable_skins2}" = "x"], [
3655       AC_MSG_WARN([Skins2 interface disabled due to missing dependencies.])
3656     ], [
3657       AC_MSG_ERROR([Skins2 interface requires FreeType, libxpm, libxext and libxinerama])
3658     ])
3659     enable_skins2="no"
3660   ], [
3661     VLC_ADD_PLUGIN([skins2])
3662     ALIASES="${ALIASES} svlc"
3663     enable_skins2="yes"
3664   ])
3666 AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes"])
3668 AC_ARG_ENABLE(libtar,
3669   [  --enable-libtar         libtar support for skins2 (default auto)])
3670 AS_IF([test "${enable_skins2}" = "yes" && test "${enable_libtar}" != "no"], [
3671   AC_CHECK_HEADERS(libtar.h, [
3672     VLC_ADD_LIBS([skins2],[-ltar])
3673   ])
3677 dnl  MacOS X gui module
3679 AC_ARG_ENABLE(macosx,
3680   [  --enable-macosx         Mac OS X gui support (default enabled on Mac OS X)])
3681 if test "x${enable_macosx}" != "xno" -a "${SYS}" = "darwin"
3682 then
3683   VLC_ADD_LIBS([macosx minimal_macosx], [-Wl,-framework,Cocoa -Wl,-framework,OpenGL -Wl,-framework,Carbon -Wl,-framework,CoreServices -Wl,-framework,AGL])
3684   VLC_ADD_OBJCFLAGS([macosx minimal_macosx], [-fobjc-exceptions] )
3685   VLC_ADD_PLUGIN([macosx minimal_macosx])
3687   VLC_ADD_LIBS([macosx], [-Wl,-framework,QTKit -Wl,-framework,IOKit -Wl,-framework,AddressBook -Wl,-framework,WebKit])
3689   if ! test -d ${CONTRIB_DIR}/Sparkle.framework
3690   then
3691     AC_MSG_ERROR([Sparkle framework is required and was not found in ${CONTRIB_DIR}])
3692   fi
3693   VLC_ADD_LIBS([macosx], [-F${CONTRIB_DIR} -Wl,-framework,Sparkle])
3694   VLC_ADD_OBJCFLAGS([macosx], [-F${CONTRIB_DIR}])
3696   if ! test -d ${CONTRIB_DIR}/BGHUDAppKit.framework
3697   then
3698     AC_MSG_ERROR([BGHUDAppKit framework is required and was not found in ${CONTRIB_DIR}])
3699   fi
3700   VLC_ADD_LIBS([macosx], [-F${CONTRIB_DIR} -Wl,-framework,BGHUDAppKit])
3701   VLC_ADD_OBJCFLAGS([macosx], [-F${CONTRIB_DIR}])
3706 dnl  MacOS X dialor provider
3708 AC_ARG_ENABLE(macosx-dialog-provider,
3709   [  --enable-macosx-dialog-provider Mac OS X dialog module (default enabled on Mac OS X)])
3710 if test "x${enable_macosx_dialog_provider}" != "xno" &&
3711   (test "${SYS}" = "darwin" || test "${enable_macosx_dialog_provider}" = "yes")
3712 then
3713   VLC_ADD_LIBS([macosx_dialog_provider],[-Wl,-framework,Cocoa])
3714   VLC_ADD_PLUGIN([macosx_dialog_provider])
3718 dnl  ncurses module
3720 AC_ARG_ENABLE(ncurses,
3721 [AS_HELP_STRING([--disable-ncurses],[ncurses text-based interface (default auto)])])
3722 if test "${enable_ncurses}" != "no"; then
3723   VLC_SAVE_FLAGS
3724   LIBS=""
3725   AC_CHECK_HEADER(ncurses.h, [
3726     AC_CHECK_LIB(ncursesw, mvprintw, [
3727       AC_SEARCH_LIBS([tgetent], [ncursesw tinfow tinfo], [
3728         VLC_ADD_PLUGIN([ncurses])
3729         ALIASES="${ALIASES} nvlc"
3730         VLC_ADD_LIBS([ncurses],[-lncursesw ${LIBS}])
3731       ], [
3732         AS_IF([test "${enable_ncurses}" = "yes"], [AC_MSG_ERROR([tgetent not found])])
3733       ])
3734     ], [
3735       AS_IF([test "${enable_ncurses}" = "yes"], [AC_MSG_ERROR([libncursesw not found])])
3736     ])
3737   ], [
3738     AS_IF([test "${enable_ncurses}" = "yes"], [AC_MSG_ERROR([ncurses.h not found])])
3739   ])
3740   VLC_RESTORE_FLAGS
3744 dnl  XOSD plugin
3746 AC_ARG_ENABLE(xosd,
3747   [  --enable-xosd           xosd interface support (default disabled)])
3748 if test "${enable_xosd}" = "yes"
3749 then
3750   AC_CHECK_HEADERS(xosd.h,
3751     AC_CHECK_LIB(xosd, xosd_set_horizontal_offset, [
3752       AS_IF([test "${no_x}" != "yes"], [
3753           VLC_ADD_PLUGIN([xosd])
3754           VLC_ADD_LIBS([xosd],[-lxosd ${X_LIBS} ${X_PRE_LIBS} -lX11])
3755           VLC_ADD_CFLAGS([xosd],[${X_CFLAGS}])
3756         ],[
3757           AC_MSG_ERROR([Xlib is required with xosd.])
3758         ])
3759     ])
3760   )
3764 dnl Framebuffer (overlay) plugin
3766 AC_ARG_ENABLE(fbosd,
3767   [  --enable-fbosd          fbosd interface support (default disabled)])
3768 if test "${enable_fbosd}" = "yes"
3769 then
3770   AC_CHECK_HEADERS(linux/fb.h, [
3771     VLC_ADD_PLUGIN([fbosd])
3772  ])
3776 dnl  Lirc plugin
3778 AC_ARG_ENABLE(lirc,
3779   [  --enable-lirc           lirc support (default disabled)])
3780 if test "${enable_lirc}" = "yes"
3781 then
3782   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
3783   if test "${have_lirc}" = "true"
3784   then
3785     VLC_ADD_PLUGIN([lirc])
3786     VLC_ADD_LIBS([lirc],[-llirc_client])
3787   fi
3790 EXTEND_HELP_STRING([Visualisations and Video filter plugins:])
3792 dnl Visualisation plugin
3794 AC_ARG_ENABLE(visual,
3795   [  --enable-visual         visualisation plugin (default enabled)])
3796 if test "${enable_visual}" != "no"
3797 then
3798     VLC_ADD_PLUGIN([visual])
3802 dnl  goom visualization plugin
3804 PKG_ENABLE_MODULES_VLC([GOOM], [], [libgoom2], [goom visualization plugin], [auto])
3807 dnl libprojectM visualization plugin
3809 AC_ARG_ENABLE(projectm,
3810   [  --enable-projectm       projectM visualization plugin (default enabled)])
3811 AS_IF([test "${enable_projectm}" != "no"],
3812   [
3813     PKG_CHECK_MODULES(PROJECTM, libprojectM,
3814     [
3815       VLC_ADD_PLUGIN([projectm])
3816       VLC_ADD_CXXFLAGS([projectm],[$PROJECTM_CFLAGS])
3817       VLC_ADD_LIBS([projectm],[$PROJECTM_LIBS])
3818       PKG_CHECK_MODULES(PROJECTM2, [libprojectM >= 2.0.0],
3819         [ AC_DEFINE([HAVE_PROJECTM2], 1, [Define to 1 if using libprojectM 2.x]) ],
3820         [ AC_MSG_WARN( [Using libprojectM version 1] )
3821       ])
3822     ],[
3823       AC_MSG_WARN([${PROJECTM_PKG_ERRORS}.])
3824     ])
3825   ])
3828 dnl  AtmoLight (homemade Philips Ambilight clone)
3830 AC_ARG_ENABLE(atmo,
3831 AS_HELP_STRING([--disable-atmo],[AtmoLight (homemade Philips Ambilight clone)
3832                 (default enabled)]),, [enable_atmo="yes"])
3833 AS_IF([test "${enable_atmo}" != no], [
3834   AS_IF([test "${SYS}" = "mingw32" -o "${SYS}" = "linux"], [
3835     AC_LANG_PUSH(C++)
3836     VLC_ADD_PLUGIN([atmo])
3837     AC_LANG_POP(C++)
3838   ])
3841 EXTEND_HELP_STRING([Service Discovery plugins:])
3843 dnl  Bonjour services discovery
3844 PKG_ENABLE_MODULES_VLC([BONJOUR], [], [avahi-client >= 0.6], [Bonjour services discovery], [auto])
3847 dnl  libudev services discovery
3848 PKG_ENABLE_MODULES_VLC([UDEV], [], [libudev >= 142], [Linux udev services discovery], [auto])
3851 dnl MTP devices services discovery
3852 PKG_ENABLE_MODULES_VLC([MTP], [mtp access_mtp], [libmtp >= 1.0.0], [MTP devices support], [auto])
3855 dnl UPnP Plugin (Intel SDK)
3857 PKG_ENABLE_MODULES_VLC([UPNP], [upnp], [libupnp], [Intel UPNP SDK],[auto])
3858 VLC_ADD_CXXFLAGS([upnp],[${UPNP_CFLAGS}])
3860 EXTEND_HELP_STRING([Misc options:])
3863 dnl  libxml2 module
3865 PKG_ENABLE_MODULES_VLC([LIBXML2], [xml], [libxml-2.0 >= 2.5], [libxml2 support],[auto])
3869 dnl libgcrypt
3871 AC_ARG_ENABLE(libgcrypt,
3872   [  --disable-libgcrypt     gcrypt support (default enabled)])
3873 AS_IF([test "${enable_libgcrypt}" != "no"], [
3874   AC_CHECK_DECL([GCRYCTL_SET_THREAD_CBS], [
3875     libgcrypt-config --version >/dev/null || \
3876         AC_MSG_ERROR([gcrypt.h present but libgcrypt-config could not be found])
3877     AC_CHECK_LIB(gcrypt, gcry_control, [
3878       have_libgcrypt="yes"
3879       GCRYPT_CFLAGS="`libgcrypt-config --cflags`"
3880       GCRYPT_LIBS="`libgcrypt-config --libs`"
3881     ], [
3882       AC_MSG_ERROR([libgcrypt not found. Install libgcrypt or use --disable-libgcrypt. Have a nice day.])
3883     ], [`libgcrypt-config --libs`])
3884   ], [
3885     AC_MSG_ERROR([libgcrypt version 1.1.94 or higher not found. Install libgcrypt or use --disable-libgcrypt. Have a nice day.])
3886   ], [#include <gcrypt.h>]
3887   )
3890 AC_SUBST(GCRYPT_CFLAGS)
3891 AC_SUBST(GCRYPT_LIBS)
3892 AM_CONDITIONAL([HAVE_GCRYPT], [test "${have_libgcrypt}" = "yes"])
3895 dnl TLS/SSL
3897 AC_ARG_ENABLE(gnutls,
3898   [  --enable-gnutls         GNU TLS TLS/SSL support (default enabled)])
3900 AS_IF([test "${have_libgcrypt}" != "yes"], [
3901   AS_IF([test "${enable_gnutls}" = "yes"], [
3902     AC_MSG_ERROR([--enable-gnutls and --disable-libgcrypt are mutually exclusive.])
3903   ])
3904   enable_gnutls="no"
3906 AS_IF([test "${enable_gnutls}" != "no"], [
3907   PKG_CHECK_MODULES(GNUTLS, [gnutls >= 2.0.0], [
3908     VLC_ADD_PLUGIN([gnutls])
3909   ], [
3910     AS_IF([test -n "${enable_gnutls}"], [
3911       AC_MSG_ERROR([${GNUTLS_PKG_ERRORS}.)])
3912     ])
3913   ])
3918 dnl Nokia MCE plugin (Maemo screen unblanking)
3920 PKG_CHECK_MODULES([MCE], [dbus-1 mce], [VLC_ADD_PLUGIN([mce])], [true])
3923 AS_IF([test -f "/etc/maemo_version"], [
3924   AC_DEFINE([HAVE_MAEMO], 1, [Define to 1 if building for the Maemo platform.])
3929 dnl Taglib plugin
3931 AC_ARG_ENABLE(taglib,
3932   [AS_HELP_STRING([--disable-taglib],
3933     [do not use TagLib (default enabled)])])
3934 AS_IF([test "${enable_taglib}" != "no"], [
3935   PKG_CHECK_MODULES(TAGLIB, taglib >= 1.5, [
3936     VLC_ADD_PLUGIN([taglib])
3937     VLC_ADD_LIBS([taglib],[$TAGLIB_LIBS -lz])
3938     VLC_ADD_CXXFLAGS([taglib],[$TAGLIB_CFLAGS])
3939   ], [
3940     AC_MSG_WARN([${TAGLIB_PKG_ERRORS}.])])
3945 dnl update checking system
3947 AC_ARG_ENABLE(update-check,
3948   [  --enable-update-check   update checking system (default disabled)])
3949 if test "${enable_update_check}" = "yes"
3950 then
3951   if test "${have_libgcrypt}" != "yes"
3952   then
3953     AC_MSG_ERROR([libgcrypt is required for update checking system])
3954   fi
3955   VLC_ADD_LIBS([libvlccore], [${GCRYPT_LIBS}])
3956   VLC_ADD_CFLAGS([libvlccore], [${GCRYPT_CFLAGS}])
3957   AC_DEFINE([UPDATE_CHECK], 1, [Define if you want to use the VLC update mechanism])
3961 dnl Growl notification plugin
3963 AC_ARG_ENABLE(growl,
3964   [  --enable-growl          growl notification plugin (default disabled)],,
3965   [enable_growl=no])
3966 AS_IF([test "${enable_growl}" != "no"], [
3967     AC_CHECK_HEADERS(${CONTRIB_DIR}/Growl.framework/Versions/A/Headers/GrowlDefines.h, [
3968       VLC_ADD_PLUGIN([growl])
3969       VLC_ADD_LIBS([growl], [-F${CONTRIB_DIR} -Wl,-framework,Growl,-framework,CoreFoundation])
3970       VLC_ADD_OBJCFLAGS([growl], [-F${CONTRIB_DIR}])
3971       VLC_ADD_OBJCFLAGS([growl], [-fobjc-exceptions] )
3972     ])
3973   ]
3977 dnl Libnotify notification plugin
3979 PKG_ENABLE_MODULES_VLC([NOTIFY], [], [libnotify gtk+-2.0], [libnotify notification], [auto])
3982 dnl media library
3984 AC_ARG_ENABLE(media-library,
3985     [  --enable-media-library  media library (default disabled)])
3986 AS_IF([test "${enable_media_library}" = "yes"], [
3987   AC_DEFINE([MEDIA_LIBRARY], 1, [Define if you want to use the VLC media library])
3988   VLC_ADD_CPPFLAGS([qt4],"-DMEDIA_LIBRARY")
3989   VLC_ADD_PLUGIN([media_library])
3992 dnl SQLite
3994   AS_IF([test "${SYS}" != "darwin"], [
3995     PKG_ENABLE_MODULES_VLC([SQLITE], [], [sqlite3 >= 3.6.0], [sqlite3], [auto])
3996   ], [
3997     AS_IF([test "${enable_sqlite}" != "no"], [
3998       AC_CHECK_HEADERS(sqlite3.h, [
3999         VLC_ADD_PLUGIN([sqlite])
4000         VLC_ADD_LIBS([sqlite], [-lsqlite3])
4001       ], [
4002         AC_MSG_ERROR([sqlite3 is required for the media library])
4003       ])
4004     ])
4005   ])
4010 dnl  Endianness check
4012 AC_C_BIGENDIAN
4013 AS_IF([test "${ac_cv_c_bigendian}" = "yes"], [
4014   DEFS_BIGENDIAN="-DWORDS_BIGENDIAN=1"
4015 ], [
4016   DEFS_BIGENDIAN=""
4018 AC_SUBST(DEFS_BIGENDIAN)
4021 dnl Where to install KDE solid .desktop
4023 AC_ARG_VAR([KDE4_CONFIG], [kde4-config utility])
4024 AS_IF([test "x$KDE4_CONFIG" = "x"], [
4025   KDE4_CONFIG="kde4-config"
4028 AC_ARG_WITH(kde-solid,
4029   AS_HELP_STRING([--with-kde-solid=PATH],
4030                  [KDE Solid actions directory (auto)]),, [
4032 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" -a "${SYS}" != "darwin" ; then
4033   with_kde_solid="yes"
4036 soliddatadir=""
4037 AS_IF([test "${with_kde_solid}" != "no"], [
4038   AS_IF([test "${with_kde_solid}" = "yes"], [
4039     kde4datadir="`${KDE4_CONFIG} --install data`"
4040     AS_IF([test "x$kde4datadir" = "x"], [kde4datadir='${datadir}/kde4/apps'])
4041     soliddatadir="${kde4datadir}/solid/actions"
4042   ], [
4043     soliddatadir="${with_kde_solid}"
4044   ])
4046 AC_SUBST(soliddatadir)
4047 AM_CONDITIONAL(KDE_SOLID, [test "x${soliddatadir}" != "x"])
4050 dnl  DLL loader copied from MPlayer copied from somewhere else (WINE ?)
4052 loader=false
4053 AC_ARG_ENABLE(loader,
4054   AS_HELP_STRING([--enable-loader],[build DLL loader for ELF i386 platforms
4055           (default disabled)]))
4056 AM_CONDITIONAL(LOADER, [test "${enable_loader}" = "yes"])
4057 AS_IF([test "${enable_loader}" = "yes"],
4058   [ VLC_ADD_PLUGIN([dmo])
4059     VLC_ADD_CPPFLAGS([dmo quicktime realvideo],[-I\\\${top_srcdir}/modules/codec/loader])
4060     VLC_ADD_LIBS([dmo quicktime realvideo],[\\\${top_builddir}/modules/codec/loader/libloader.la])
4061     VLC_ADD_CPPFLAGS([realvideo], [-DLOADER])
4062     VLC_ADD_LIBS([dmo quicktime], [-lpthread])
4063   ])
4065 EXTEND_HELP_STRING([Components:])
4068 dnl  the VLC binary
4070 AC_ARG_ENABLE(vlc,
4071   [  --enable-vlc            build the VLC media player (default enabled)])
4072 AM_CONDITIONAL(BUILD_VLC, [test "${enable_vlc}" != "no"])
4074 AC_ARG_ENABLE(macosx-vlc-app,
4075   [  --enable-macosx-vlc-app build the VLC media player (default enabled on Mac OS X)])
4076 AM_CONDITIONAL(BUILD_MACOSX_VLC_APP, [test "${enable_macosx_vlc_app}" != "no" &&
4077     (test "${SYS}" = "darwin" || test "${enable_macosx_vlc_app}" = "yes") ])
4080 dnl  Stuff used by the program
4082 VERSION_MESSAGE="${VERSION} ${CODENAME}"
4083 COPYRIGHT_MESSAGE="Copyright © ${COPYRIGHT_YEARS} the VideoLAN team"
4084 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION_MESSAGE}", [Simple version string])
4085 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "${COPYRIGHT_MESSAGE}", [Copyright string])
4086 AC_DEFINE_UNQUOTED(COPYRIGHT_YEARS, "${COPYRIGHT_YEARS}", [The copyright years])
4087 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4088 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,${VERSION_MAJOR}, [version major number])
4089 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,${VERSION_MINOR}, [version minor number])
4090 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,${VERSION_REVISION}, [version revision number])
4091 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,${VERSION_EXTRA}, [version extra number])
4092 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_DEV,"${VERSION_DEV}", [version development string])
4093 AC_SUBST(COPYRIGHT_MESSAGE)
4094 AC_SUBST(VERSION_MESSAGE)
4095 AC_SUBST(VERSION_MAJOR)
4096 AC_SUBST(VERSION_MINOR)
4097 AC_SUBST(VERSION_REVISION)
4098 AC_SUBST(VERSION_EXTRA)
4099 AC_SUBST(COPYRIGHT_YEARS)
4100 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami`", [user who ran configure])
4101 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname -f 2>/dev/null || hostname`", [host which ran configure])
4102 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1`", [compiler])
4104 dnl  Handle substvars that use $(top_srcdir)
4106 CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/include ${CPPFLAGS}"
4109 dnl Sort the modules list
4111 PLUGINS=$( (for i in `echo $PLUGINS`; do echo $i; done)|sort|xargs )
4114 dnl  Configuration is finished
4116 AC_SUBST(SYS)
4117 AC_SUBST(ARCH)
4118 AC_SUBST(ALIASES)
4119 AC_SUBST(ASM)
4120 AC_SUBST(MOC)
4121 AC_SUBST(RCC)
4122 AC_SUBST(UIC)
4123 AC_SUBST(WINDRES)
4124 AC_SUBST(WINE_SDK_PATH)
4125 AC_SUBST(LIBEXT)
4126 AC_SUBST(AM_CPPFLAGS)
4127 AC_SUBST(MACOSX_DEPLOYMENT_TARGET)
4128 AC_SUBST(FILE_LIBVLCCORE_DLL)
4129 AC_SUBST(FILE_LIBVLC_DLL)
4131 AC_CONFIG_FILES([
4132   Makefile
4133   doc/Makefile
4134   modules/Makefile
4135   m4/Makefile
4136   po/Makefile.in
4137   share/Makefile
4138   compat/Makefile
4139   src/Makefile
4140   src/test/Makefile
4141   lib/Makefile
4142   bin/Makefile
4143   test/Makefile
4144   modules/access/Makefile
4145   modules/access/bd/Makefile
4146   modules/access/dshow/Makefile
4147   modules/access/dvb/Makefile
4148   modules/access/mms/Makefile
4149   modules/access/rtp/Makefile
4150   modules/access/rtsp/Makefile
4151   modules/access/vcd/Makefile
4152   modules/access/vcdx/Makefile
4153   modules/access/screen/Makefile
4154   modules/access/zip/Makefile
4155   modules/access/zip/unzip/Makefile
4156   modules/access_output/Makefile
4157   modules/audio_filter/Makefile
4158   modules/audio_mixer/Makefile
4159   modules/audio_output/Makefile
4160   modules/codec/Makefile
4161   modules/codec/avcodec/Makefile
4162   modules/codec/dmo/Makefile
4163   modules/codec/loader/Makefile
4164   modules/codec/omxil/Makefile
4165   modules/codec/shine/Makefile
4166   modules/codec/spudec/Makefile
4167   modules/codec/wmafixed/Makefile
4168   modules/control/Makefile
4169   modules/control/dbus/Makefile
4170   modules/control/globalhotkeys/Makefile
4171   modules/demux/Makefile
4172   modules/demux/asf/Makefile
4173   modules/demux/avformat/Makefile
4174   modules/demux/avi/Makefile
4175   modules/demux/mkv/Makefile
4176   modules/demux/mp4/Makefile
4177   modules/demux/mpeg/Makefile
4178   modules/demux/playlist/Makefile
4179   modules/gui/Makefile
4180   modules/gui/macosx/Makefile
4181   modules/gui/hildon/Makefile
4182   modules/gui/minimal_macosx/Makefile
4183   modules/gui/macosx_dialog_provider/Makefile
4184   modules/gui/qt4/Makefile
4185   modules/gui/skins2/Makefile
4186   modules/lua/Makefile
4187   modules/meta_engine/Makefile
4188   modules/misc/Makefile
4189   modules/misc/playlist/Makefile
4190   modules/misc/osd/Makefile
4191   modules/misc/stats/Makefile
4192   modules/media_library/Makefile
4193   modules/mux/Makefile
4194   modules/mux/mpeg/Makefile
4195   modules/notify/Makefile
4196   modules/packetizer/Makefile
4197   modules/services_discovery/Makefile
4198   modules/stream_filter/Makefile
4199   modules/stream_filter/dash/Makefile
4200   modules/stream_out/Makefile
4201   modules/stream_out/transcode/Makefile
4202   modules/text_renderer/Makefile
4203   modules/video_chroma/Makefile
4204   modules/video_filter/Makefile
4205   modules/video_filter/dynamicoverlay/Makefile
4206   modules/video_output/Makefile
4207   modules/video_output/msw/Makefile
4208   modules/visualization/Makefile
4209   modules/visualization/visual/Makefile
4210   modules/mmx/Makefile
4211   modules/mmxext/Makefile
4212   modules/3dnow/Makefile
4213   modules/sse2/Makefile
4214   modules/altivec/Makefile
4215   modules/arm_neon/Makefile
4218 AM_COND_IF([HAVE_WIN32], [
4219   AC_CONFIG_FILES([
4220     extras/package/win32/spad.nsi
4221     extras/package/win32/vlc.win32.nsi
4222   ])
4225 AM_COND_IF([HAVE_DARWIN], [
4226   AC_CONFIG_FILES([
4227     extras/package/macosx/Info.plist
4228     extras/package/macosx/Resources/English.lproj/InfoPlist.strings
4229   ])
4232 dnl Generate makefiles
4233 AC_OUTPUT
4235 dnl Do we have to use make or gmake ?
4236 if make --version 2>&1|grep -q GNU
4237 then
4238     # GNU make, all seems good
4239     MAKE=make
4240 else
4241     # Known GNU make alias (on BSD)
4242     MAKE=gmake
4244 dnl Shortcut to nice compile message
4245 if test -n $SHELL; then
4246   SHELL=${CONFIG_SHELL-/bin/sh}
4248 rm -f compile
4249 echo "#! $SHELL
4250 rm -f .error\$\$
4251 ERROR=0
4252 export PATH=\"$PATH\" LANG=C
4253 ($MAKE V=1 \$@ 2>&1 || touch .error\$\$)| `sed -ne "s/^top_srcdir *= *//p" < Makefile`/extras/buildsystem/make.pl
4254 test -f .error\$\$ && ERROR=1
4255 rm -f .error\$\$
4256 exit \$ERROR" >compile
4257 chmod a+x compile
4259 echo "
4260 libvlc configuration
4261 --------------------
4262 version               : ${VERSION}
4263 system                : ${SYS}
4264 architecture          : ${ARCH}
4265 optimizations         : ${enable_optimizations}"
4266 if test "${enable_vlc}" != "no"; then
4267 echo "vlc aliases           :${ALIASES}"
4268 else
4269 echo "build vlc executable  : no"
4271 echo "
4272 To build vlc and its plugins, type \`$MAKE', or \`./compile' if you like nice colors."