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