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