]> git.sesse.net Git - vlc/blob - configure.ac
* Improve duration calculation
[vlc] / configure.ac
1 dnl Autoconf settings for vlc
2
3 AC_INIT(vlc,0.8.6-svn)
4 VERSION_MAJOR="0"
5 VERSION_MINOR="8"
6 VERSION_REVISION="6"
7 VERSION_EXTRA="svn"
8
9 CONFIGURE_LINE="$0 $*"
10 CODENAME="Janus"
11
12 AC_PREREQ(2.59c)
13 AC_CONFIG_SRCDIR(src/libvlc.c)
14 AC_CONFIG_AUX_DIR(autotools)
15 AC_CANONICAL_SYSTEM
16
17 AM_INIT_AUTOMAKE([1.7 check-news dist-bzip2])
18 AM_CONFIG_HEADER(config.h)
19
20 dnl Too many people are not aware of maintainer mode:
21 dnl If you want to use it, you definitely know what you are doing, so
22 dnl you can specify "--disable-maintainer-mode". But if you want the default
23 dnl automake behavior, you've likely never heard of maintainer mode, so we
24 dnl can't expect you to enable it manually.
25
26 AS_IF([test "x${enable_maintainer_mode}" != "xno"],
27         [enable_maintainer_mode="yes"])
28
29 dnl HA! HA!
30 AM_MAINTAINER_MODE
31
32 dnl
33 dnl  Save *FLAGS
34 dnl
35 VLC_SAVE_FLAGS
36
37 dnl
38 dnl Check for tools
39 dnl
40 AC_PROG_CC_C99
41 AM_PROG_CC_C_O
42 AC_PROG_CPP
43 AC_PROG_CXX
44 eval "${CXX} --version" >/dev/null 2>&1 || CXX=""
45 if test "${CXX}" != ""; then
46   AC_PROG_CXXCPP
47 fi
48 AC_PROG_MAKE_SET
49 AC_PROG_INSTALL
50 AM_PROG_AS
51
52 dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right
53 dnl now otherwise it might be set in an obscure if statement.
54 AC_EGREP_CPP(foo,foo)
55
56 dnl AC_PROG_OBJC doesn't seem to exist, this is the KDE workaround
57 AC_MSG_CHECKING(for an Objective-C compiler)
58 OBJC="${CXX}"
59 AC_SUBST(OBJC)
60 OBJCFLAGS="${CXXFLAGS} -fgnu-runtime -fconstant-string-class=NSConstantString"
61 AC_SUBST(OBJCFLAGS)
62 dnl _AM_DEPENDENCIES(OBJC) doesn't work, so hard code OBJCDEPMODE here
63 #OBJCDEPMODE="depmode=gcc3"
64 #AC_SUBST(OBJCDEPMODE)
65 _AM_DEPENDENCIES(OBJC)
66 AC_MSG_RESULT(not implemented yet)
67
68 dnl Find the right ranlib, even when cross-compiling
69 AC_CHECK_TOOL(RANLIB, ranlib, :)
70 AC_CHECK_TOOL(STRIP, strip, :)
71 AC_CHECK_TOOL(AR, ar, :)
72 AC_CHECK_TOOL(LD, ld, :)
73
74 dnl Check for compiler properties
75 AC_C_CONST
76 AC_C_INLINE
77
78 dnl
79 dnl  Check for the contrib directory
80 dnl
81 AC_ARG_WITH(contrib,
82     [  --without-contrib       do not use the libraries in extras/contrib],[],[])
83   if test "${with_contrib}" != "no"; then 
84     AC_MSG_CHECKING([for libs in extras/contrib])
85     topdir="`dirname $0`"
86     if test "`echo \"$topdir\" | cut -c 1`" != "/"; then
87        topdir="`pwd`/$topdir"
88     fi
89    if test "`grep HOST ${topdir}/extras/contrib/config.mak 2>/dev/null|awk '{print $3}'`" != "`$CC -dumpmachine`"; then
90       if test "${with_contrib}" = "yes"; then
91         AC_MSG_RESULT([no])
92         AC_MSG_ERROR([ not using the libs in extras/contrib as it is not the same host])
93       else
94         AC_MSG_RESULT([no])
95         AC_MSG_WARN([ not using the libs in extras/contrib as it is not the same host])
96       fi
97      else
98   if test -d ${topdir}/extras/contrib/lib; then
99     AC_MSG_RESULT([yes])
100     export PATH=${topdir}/extras/contrib/bin:$PATH
101     CPPFLAGS="${CPPFLAGS} -I${topdir}/extras/contrib/include"
102     CPPFLAGS_save="${CPPFLAGS_save} -I${topdir}/extras/contrib/include"
103     CFLAGS="${CFLAGS} -I${topdir}/extras/contrib/include"
104     CFLAGS_save="${CFLAGS_save} -I${topdir}/extras/contrib/include"
105     CXXFLAGS="${CXXFLAGS} -I${topdir}/extras/contrib/include"
106     CXXFLAGS_save="${CXXFLAGS_save} -I${topdir}/extras/contrib/include"
107     OBJCFLAGS="${OBJCFLAGS} -I${topdir}/extras/contrib/include"
108     OBJCFLAGS_save="${OBJCFLAGS_save} -I${topdir}/extras/contrib/include"
109     if test $build = $host -o "$PKG_CONFIG_LIBDIR"; then
110         export PKG_CONFIG_PATH=${topdir}/extras/contrib/lib/pkgconfig:$PKG_CONFIG_PATH
111     else
112         export PKG_CONFIG_LIBDIR=${topdir}/extras/contrib/lib/pkgconfig
113     fi
114     LDFLAGS="${LDFLAGS} -L${topdir}/extras/contrib/lib"
115     LDFLAGS_save="${LDFLAGS_save} -L${topdir}/extras/contrib/lib"
116
117 dnl kludge because only the debian package provides a ffmpeg-config
118     if test -z $with_ffmpeg_config_path; then 
119        with_ffmpeg_config_path=${topdir}/extras/contrib/bin;
120     fi
121     if test -z $with_live555_tree; then
122        with_live555_tree=${topdir}/extras/contrib/src/live
123     fi
124     if test -z $with_goom_tree; then
125       with_goom_tree=${topdir}/extras/contrib/src/goom
126     fi
127     if test -z $with_mozilla_sdk_path; then
128        with_mozilla_sdk_path=${topdir}/extras/contrib/gecko-sdk
129     fi
130     if test -z $with_cyberlink_tree; then
131        with_cyberlink_tree=${topdir}/extras/contrib/src/clinkcc
132     fi
133
134     if test ".`uname -s`" = ".Darwin"; then
135       export LD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$LD_LIBRARY_PATH
136       export DYLD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$DYLD_LIBRARY_PATH
137     elif test ".`uname -s`" = ".BeOS"; then
138       export LIBRARY_PATH=${topdir}/extras/contrib/lib:$LIBRARY_PATH
139       export BELIBRARIES=${topdir}/extras/contrib/lib:$BELIBRARIES
140     fi
141   else
142      AC_MSG_RESULT([no])
143   fi
144   fi
145 fi
146 dnl
147 dnl  Set default values
148 dnl
149 LDFLAGS_vlc="${LDFLAGS}"
150
151 dnl
152 dnl  Check the operating system
153 dnl
154 case "${target_os}" in
155   "")
156     SYS=unknown
157     ;;
158   linux*)
159     SYS=linux
160     ;;
161   bsdi*)
162     SYS=bsdi
163     CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
164     VLC_ADD_LDFLAGS([dvd dvdcss vcd cdda vcdx cddax],[-ldvd])
165     ;;
166   *bsd*)
167     SYS="${target_os}"
168     CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
169     case "${target_os}" in
170       freebsd*)
171         CPPFLAGS_save="${CPPFLAGS_save} -I/usr/local/include"
172         CPPFLAGS="${CPPFLAGS_save}"
173         LDFLAGS_save="${LDFLAGS_save} -L/usr/local/lib"
174         LDFLAGS="${LDLFAGS_save}"
175         ;;
176     esac
177     ;;
178   darwin1.[0123])
179     dnl Mac OS X < 10.3
180     SYS=darwin
181     CFLAGS_save="${CFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; CFLAGS="${CFLAGS_save}"
182     CXXFLAGS_save="${CXXFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; CXXFLAGS="${CXXFLAGS_save}"
183     OBJCFLAGS_save="${OBJCFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; OBJCFLAGS="${OBJCFLAGS_save}"
184     VLC_ADD_LDFLAGS([vlc ffmpeg ffmpegaltivec],[-all_load])
185     VLC_ADD_LDFLAGS([mp4], [-framework IOKit -framework CoreFoundation])
186     VLC_ADD_CFLAGS([libvlc],[-x objective-c])
187     VLC_ADD_CFLAGS([vlc],[-x objective-c])
188     VLC_ADD_LDFLAGS([vlc],[-Wl,-m -Wl,-multiply_defined -Wl,suppress])
189     ;;
190   darwin*)
191     SYS=darwin
192     CFLAGS_save="${CFLAGS_save} -D_INTL_REDIRECT_MACROS"; CFLAGS="${CFLAGS_save}"
193     CXXFLAGS_save="${CXXFLAGS_save} -D_INTL_REDIRECT_MACROS"; CXXFLAGS="${CXXFLAGS_save}"
194     OBJCFLAGS_save="${OBJCFLAGS_save} -D_INTL_REDIRECT_MACROS"; OBJCFLAGS="${OBJCFLAGS_save}"
195     VLC_ADD_LDFLAGS([mp4], [-framework IOKit -framework CoreFoundation])
196     VLC_ADD_CFLAGS([libvlc],[-x objective-c])
197     VLC_ADD_CFLAGS([vlc],[-x objective-c])
198     ;;
199   *mingw32* | *cygwin* | *wince* | *mingwce* | *pe*)
200     AC_CHECK_TOOL(WINDRES, windres, :)
201     enable_libtool="no"
202
203     case "${target_os}" in
204       *mingw32*)
205         SYS=mingw32
206         ;;
207       *cygwin*)
208         dnl Check if we are using the mno-cygwin mode in which case we are
209         dnl actually dealing with a mingw32 compiler.
210         AC_EGREP_CPP(yes,
211             [#ifdef WIN32
212              yes
213              #endif],
214             SYS=mingw32, SYS=cygwin)
215         ;;
216       *wince* | *mingwce* | *pe*)
217         SYS=mingwce
218         ;;
219     esac
220
221     if test "${SYS}" = "mingw32"; then
222         # add ws2_32 for closesocket, select, recv
223         CPPFLAGS_save="${CPPFLAGS_save} -D_OFF_T_ -D_off_t=long"; CPPFLAGS="${CPPFLAGS_save}"
224         VLC_ADD_LDFLAGS([vlc],[-lws2_32 -lnetapi32 -lwinmm -mwindows])
225         VLC_ADD_LDFLAGS([cdda vcdx cddax],[-lwinmm])
226         VLC_ADD_LDFLAGS([ipv4 ipv6 access_http access_mms access_udp access_tcp access_ftp access_output_udp sap slp http stream_out_standard stream_out_rtp vod_rtsp telnet netsync growl],[-lws2_32])
227     fi
228     if test "${SYS}" = "mingwce"; then
229         # add ws2 for closesocket, select, recv
230         CPPFLAGS_save="${CPPFLAGS_save} -D_OFF_T_ -D_off_t=long"; CPPFLAGS="${CPPFLAGS_save}"
231         VLC_ADD_CPPFLAGS([vlc],[-Dmain(a,b)=maince(a,b)])
232         VLC_ADD_LDFLAGS([vlc],[-lws2 -e WinMainCRTStartup])
233         VLC_ADD_LDFLAGS([ipv4 ipv6 access_http access_mms access_udp access_tcp access_ftp access_output_udp sap http netsync],[-lws2])
234    fi
235     ;;
236   *nto*)
237     SYS=nto
238     VLC_ADD_LDFLAGS([x11 xvideo],[-lsocket])
239     ;;
240   solaris*)
241     SYS=solaris
242     # _POSIX_PTHREAD_SEMANTICS is needed to get the POSIX ctime_r
243     # Perhaps it is useful other places as well? 
244     CFLAGS_save="${CFLAGS_save} -D_POSIX_PTHREAD_SEMANTICS"; CFLAGS="${CFLAGS_save}"
245     ;;
246   hpux*)
247     SYS=hpux
248     ;;
249   beos)
250     SYS=beos
251     CFLAGS_save="${CFLAGS_save} -Wno-multichar"; CFLAGS="${CFLAGS_save}"
252     CXXFLAGS_save="${CXXFLAGS_save} -Wno-multichar"; CXXFLAGS="${CXXFLAGS_save}"
253     VLC_ADD_CXXFLAGS([beos],[])
254     VLC_ADD_LDFLAGS([vlc logger],[-lbe])
255     VLC_ADD_LDFLAGS([beos],[-lbe -lmedia -ltranslation -ltracker -lgame])
256     VLC_ADD_LDFLAGS([dvdnav dvdread],[-ldl])
257     VLC_ADD_LDFLAGS([access_file],[-lpoll])
258     LDFLAGS_save="${LDFLAGS_save} -lintl"; LDFLAGS="${CFLAGS_save}"
259     dnl Check for BONE
260     if test -f /boot/beos/system/lib/libbind.so; then
261         VLC_ADD_LDFLAGS([access_file access_ftp access_mms access_output_udp telnet netsync sap ipv4 vlc growl],[-lbind -lsocket])
262     else
263         VLC_ADD_LDFLAGS([access_file access_ftp access_mms access_output_udp telnet netsync sap ipv4 vlc growl],[-lnet])
264     fi
265
266     dnl Ugly check for Zeta
267     if test -f /boot/beos/system/lib/libzeta.so; then
268         VLC_ADD_LDFLAGS([beos],[-lzeta])
269     fi
270     ;;
271   *)
272     SYS="${target_os}"
273     ;;
274 esac
275 AM_CONDITIONAL(HAVE_BEOS, test "${SYS}" = "beos")
276 AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin")
277 AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32")
278 AM_CONDITIONAL(HAVE_WINCE, test "${SYS}" = "mingwce")
279
280 dnl
281 dnl  Libtool
282 dnl  It's very bad, but our former custom system was worst
283 dnl  -- Courmisch
284 dnl
285 AC_DISABLE_STATIC
286 AC_LIBTOOL_DLOPEN
287 dnl AC_LIBTOOL_WIN32_DLL - couldn't get libtool to work on Win32 so far
288 AC_PROG_LIBTOOL
289
290 AC_ARG_ENABLE(libtool,
291     [  --enable-libtool        use libtool (default disabled)])
292 AM_CONDITIONAL(USE_LIBTOOL, [test "x${enable_libtool}" != "xno"])
293
294
295 dnl
296 dnl  Check for Mac OS X SDK settings
297 dnl
298 AC_ARG_WITH(macosx-sdk,
299    [  --with-macosx-sdk       compile for Mac OS X 10.3 SDK],[], with_macosx_sdk=no)
300 if test "${with_macosx_sdk}" != "no" ; then
301   CFLAGS_save="${CFLAGS_save} -DMACOSX_DEPLOYMENT_TARGET=10.3 -isysroot /Developer/SDKs/MacOSX10.3.9.sdk"; CFLAGS="${CFLAGS_save}"
302   CXXFLAGS_save="${CXXFLAGS_save} -DMACOSX_DEPLOYMENT_TARGET=10.3 -isysroot /Developer/SDKs/MacOSX10.3.9.sdk"; CXXFLAGS="${CXXFLAGS_save}"
303   OBJCFLAGS_save="${OBJCFLAGS_save} -DMACOSX_DEPLOYMENT_TARGET=10.3 -isysroot /Developer/SDKs/MacOSX10.3.9.sdk"; OBJCFLAGS="${OBJCFLAGS_save}"
304   LDFLAGS_save="${LDFLAGS_save} -isysroot /Developer/SDKs/MacOSX10.3.9.sdk -Wl,-syslibroot,/Developer/SDKs/MacOSX10.3.9.sdk"; LDFLAGS="${LDFLAGS_save}"
305   export MACOSX_DEPLOYMENT_TARGET=10.3
306   MACOSX_DEPLOYMENT_TARGET="10.3"
307 fi
308
309 dnl
310 dnl Gettext stuff
311 dnl
312 ALL_LINGUAS="ca cs da de en_GB es fr gl he hi hu it ja ka ko nl oc pt_BR ro ru sv tr zh_CN zh_TW"
313 AM_GNU_GETTEXT_VERSION(0.11.5)
314 AM_GNU_GETTEXT
315 AS_IF([test "${nls_cv_force_use_gnu_gettext}" = "yes"], [
316   AC_DEFINE(HAVE_INCLUDED_GETTEXT, 1, [Define if we use the local libintl])
317   AM_CPPFLAGS="${AM_CPPFLAGS} -I\$(top_builddir)/intl"
318   AS_IF([test "${enable_libtool}" != "no"], [
319     INCLUDED_LIBINTL="${LTLIBINTL}"
320   ],[
321     INCLUDED_LIBINTL="${LIBINTL}"
322   ])
323 ], [
324   AS_IF([test "${enable_libtool}" != "no"], [
325     VLC_ADD_LDFLAGS([vlc], [${LTLIBINTL}])
326   ], [
327     VLC_ADD_LDFLAGS([vlc], [${LIBINTL}])
328   ])
329 ])
330 AC_SUBST(INCLUDED_LIBINTL)
331 XGETTEXT="${XGETTEXT} --keyword=_NS --keyword=_ANS" 
332
333 dnl
334 dnl Iconv stuff
335 dnl
336 if test "${SYS}" != "mingwce"; then
337 AS_IF([test "$am_cv_func_iconv" != "yes"],
338         [AC_MSG_ERROR([libiconv is needed for VLC to work properly])])
339 fi
340 VLC_ADD_CFLAGS([vlc],[${INCICONV}])
341 AS_IF([test "${enable_libtool}" != "no"], [
342   VLC_ADD_LDFLAGS([vlc],[${LIBICONV}])
343 ],[
344   VLC_ADD_LDFLAGS([vlc],[${LTLIBICONV}])
345 ])
346
347 dnl Check for the need to include the mingwex lib for mingw32
348 if test "${SYS}" = "mingw32"
349 then
350     AC_CHECK_LIB(mingwex,opendir,
351         AC_CHECK_LIB(mingw32,opendir,VLC_ADD_LDFLAGS([vlc],[]),
352             [VLC_ADD_LDFLAGS([vlc gtk],[-lmingwex])])
353     )
354 fi
355
356 dnl Check for fnative-struct or mms-bitfields support for mingw32
357 if test "${SYS}" = "mingw32"
358 then
359     AC_CACHE_CHECK([if \$CC accepts -mms-bitfields],
360         [ac_cv_c_mms_bitfields],
361         [CFLAGS="${CFLAGS_save} -mms-bitfields"
362          AC_TRY_COMPILE([],,ac_cv_c_mms_bitfields=yes, ac_cv_c_mms_bitfields=no)])
363     if test "${ac_cv_c_mms_bitfields}" != "no"; then
364         CFLAGS_save="${CFLAGS_save} -mms-bitfields";
365         CXXFLAGS_save="${CXXFLAGS_save} -mms-bitfields";
366     else
367         AC_CACHE_CHECK([if \$CC accepts -fnative-struct],
368             [ac_cv_c_fnative_struct],
369             [CFLAGS="${CFLAGS_save} -fnative-struct"
370              AC_TRY_COMPILE([],,ac_cv_c_fnative_struct=yes, ac_cv_c_fnative_struct=no)])
371         if test "${ac_cv_c_fnative_struct}" != "no"; then
372             CFLAGS_save="${CFLAGS_save} -fnative-struct";
373             CXXFLAGS_save="${CXXFLAGS_save} -fnative-struct";
374         fi
375     fi
376
377     CFLAGS="${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
378 fi
379
380 dnl Check for fvtable-thunks support for mingw32
381 if test "${SYS}" = "mingw32" -a "${CXX}" != ""
382 then
383 AC_LANG_PUSH(C++)
384     AC_CACHE_CHECK([if \$CXX accepts -fvtable-thunks],
385         [ac_cv_cxx_fvtable_thunks],
386         [CXXFLAGS="${CXXFLAGS_save} -Wall -Werror -fvtable-thunks"
387          AC_TRY_COMPILE([],,ac_cv_cxx_fvtable_thunks=yes,
388                         ac_cv_cxx_fvtable_thunks=no)])
389     if test "${ac_cv_cxx_fvtable_thunks}" = "yes"; then
390         CXXFLAGS_mingw32_special="-fvtable-thunks"
391     fi
392
393     CXXFLAGS_save="${CXXFLAGS_save} ${CXXFLAGS_mingw32_special}"; CXXFLAGS="${CXXFLAGS_save}"
394 AC_LANG_POP(C++)
395 fi
396
397 dnl Plugin compilation stuff
398
399 VLC_LIBRARY_SUFFIX
400
401 VLC_SYMBOL_PREFIX
402 AC_SUBST(SYMPREF)
403
404 AS_IF([test "${enable_libtool}" = "no"], [
405 case "${SYS}" in
406   mingw32|cygwin)
407     VLC_ADD_CFLAGS([pic plugin mozilla activex],[${CFLAGS_mingw32_special}])
408     VLC_ADD_CXXFLAGS([pic plugin mozilla activex],[${CFLAGS_mingw32_special} ${CXXFLAGS_mingw32_special}])
409     VLC_ADD_OBJCFLAGS([pic plugin mozilla activex],[${CFLAGS_mingw32_special}])
410     ;;
411   mingwce)
412     ;;
413   *)
414     VLC_ADD_CFLAGS([pic plugin mozilla],[-fpic -fPIC])
415     VLC_ADD_CXXFLAGS([pic plugin mozilla],[-fpic -fPIC])
416     VLC_ADD_OBJCFLAGS([pic plugin mozilla],[-fpic -fPIC])
417     VLC_ADD_LDFLAGS([plugin mozilla],[-fpic -fPIC])
418     ;;
419 esac
420 ])
421
422 dnl The -DSYS_FOO flag
423 CPPFLAGS_save="${CPPFLAGS_save} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcdefghijklmnopqrstuvwxyz.' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`"; CPPFLAGS="${CPPFLAGS_save}"
424
425 dnl Check for system libs needed
426 need_libc=false
427
428 AC_CHECK_FUNCS(gettimeofday strtod strtol strtof strtoll strtoull strsep isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf daemon scandir fork bsearch lstat strlcpy)
429
430 dnl Check for usual libc functions
431 AC_CHECK_FUNCS(strdup strndup atof)
432 AC_CHECK_FUNCS(strcasecmp,,[AC_CHECK_FUNCS(stricmp)])
433 AC_CHECK_FUNCS(strncasecmp,,[AC_CHECK_FUNCS(strnicmp)])
434 AC_CHECK_FUNCS(strcasestr,,[AC_CHECK_FUNCS(stristr)])
435
436 dnl Check for setlocal and langinfo
437 AC_CHECK_FUNCS(setlocale)
438 AC_CHECK_HEADERS(langinfo.h)
439 AC_CHECK_FUNCS(nl_langinfo)
440
441 AC_CACHE_CHECK([for nl_langinfo and CODESET], ac_cv_langinfo_codeset,
442   [AC_TRY_LINK([#include <langinfo.h>],
443     [char* cs = nl_langinfo(CODESET);],
444     ac_cv_langinfo_codeset=yes,
445     ac_cv_langinfo_codeset=no)
446   ])
447 if test ${ac_cv_langinfo_codeset} = yes; then
448   AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
449     [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
450 fi
451
452 AC_CHECK_FUNCS(connect,,[
453   AC_CHECK_LIB(socket,connect,[
454     VLC_ADD_LDFLAGS([vlc ipv4 ipv6 cdda cddax],-lsocket)
455     LIBS_socket="-lsocket"
456   ])
457 ])
458
459 AC_CHECK_FUNCS(send,,[
460   AC_CHECK_LIB(socket,send,[
461     VLC_ADD_LDFLAGS([access_http access_mms access_udp access_tcp access_ftp sap access_output_udp stream_out_standard growl],[-lsocket])
462   ])
463 ])
464
465 AC_CHECK_FUNCS(gethostbyname,,[
466   AC_CHECK_LIB(nsl,gethostbyname,[
467     VLC_ADD_LDFLAGS([cdda cddax ipv4 ipv6 vlc],[-lnsl])
468   ],[
469     AC_CHECK_LIB(bind,gethostbyname,[
470       VLC_ADD_LDFLAGS([ipv4 access_mms],[-lbind])
471     ])
472   ])
473 ])
474
475 dnl Check for socklen_t
476 AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
477   [AC_TRY_COMPILE(
478      [#include <sys/types.h>
479       #include <sys/socket.h>],
480      [socklen_t len = 42; return len;],
481      ac_cv_type_socklen_t=yes,
482      ac_cv_type_socklen_t=no)])
483 if test "${ac_cv_type_socklen_t}" != "no"; then
484   AC_DEFINE(HAVE_SOCKLEN_T, 1, [Define if <sys/socket.h> defines socklen_t.])
485 fi
486
487 dnl Check for struct sockaddr_storage
488 AH_TEMPLATE(sockaddr_storage, [Define to `sockaddr' if <sys/socket.h> does not define.])
489 AH_TEMPLATE(ss_family, [Define to `sa_family' if <sys/socket.h> does not define.])
490 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_struct_sockaddr_storage,
491   [AC_TRY_COMPILE(
492     [#include <sys/types.h>
493      #if defined( UNDER_CE )
494      # include <winsock.h>
495      #elif defined( WIN32 )
496      # include <winsock2.h>
497      #else
498      # include <sys/socket.h>
499      #endif], [struct sockaddr_storage addr;],
500      ac_cv_struct_sockaddr_storage=yes,
501      ac_cv_struct_sockaddr_storage=no)])
502 AS_IF([test "${ac_cv_struct_sockaddr_storage}" = no], [
503   AC_DEFINE(sockaddr_storage, sockaddr)
504   AC_DEFINE(ss_family, sa_family)
505 ])
506
507 dnl getaddrinfo, getnameinfo and gai_strerror check
508 dnl  -lnsl and -lsocket are needed on Solaris;
509 dnl  we purposedly make the test fail on Windows
510 LIBS_save="${LIBS}"
511 AH_TEMPLATE(HAVE_GETADDRINFO, [Define to 1 if you have the `getaddrinfo' function.])
512 AC_SEARCH_LIBS([getaddrinfo], [nsl], [AC_DEFINE(HAVE_GETADDRINFO)],, [${LIBS_socket}])
513
514 dnl NOTE: we assume getaddrinfo will be present if getnameinfo or gai_strerro
515 dnl are
516 LIBS="${LIBS_gai}"
517 AC_CHECK_FUNCS([getnameinfo gai_strerror])
518 LIBS="${LIBS_save}"
519
520 AH_TEMPLATE(HAVE_ADDRINFO, [Define to 1 if <netdb.h> defines `struct addrinfo'.])
521 AC_CHECK_TYPES([struct addrinfo],[AC_DEFINE(HAVE_ADDRINFO)],,
522 [#include <sys/types.h>
523 #if defined( WIN32 ) || defined( UNDER_CE )
524 # if defined(UNDER_CE) && defined(sockaddr_storage)
525 #  undef sockaddr_storage
526 # endif
527 # include <winsock2.h>
528 # include <ws2tcpip.h>
529 #else
530 # include <netdb.h>
531 #endif])
532
533 dnl Check for va_copy
534 AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
535   AC_TRY_LINK(
536     [#include <stdarg.h>],
537     [va_list ap1, ap2; va_copy(ap1,ap2);],
538     [ac_cv_c_va_copy="yes"],
539     [ac_cv_c_va_copy="no"]))
540 if test "${ac_cv_c_va_copy}" = "yes"; then
541   AC_DEFINE(HAVE_VA_COPY, 1, [Define if <stdarg.h> defines va_copy.])
542 fi
543 AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy,
544   AC_TRY_LINK(
545     [#include <stdarg.h>],
546     [va_list ap1, ap2; __va_copy(ap1,ap2);],
547     [ac_cv_c___va_copy="yes"],
548     [ac_cv_c___va_copy="no"]))
549 if test "${ac_cv_c___va_copy}" = "yes"; then
550   AC_DEFINE(HAVE___VA_COPY, 1, [Define if <stdarg.h> defines __va_copy.])
551 fi
552
553 AC_CHECK_FUNCS(inet_aton,,[
554   AC_CHECK_LIB(resolv,inet_aton,[
555     VLC_ADD_LDFLAGS([ipv4 vlc],[-lresolv])
556   ])
557 ])
558
559 dnl Check for getopt (always use builtin one on win32)
560 if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"; then
561 need_getopt=:
562 else
563 need_getopt=false
564 AC_CHECK_FUNCS(getopt_long,[AC_DEFINE(HAVE_GETOPT_LONG,1,long getopt support)],
565 [ # FreeBSD has a gnugetopt library for this:
566   AC_CHECK_LIB([gnugetopt],[getopt_long],
567     [AC_DEFINE(HAVE_GETOPT_LONG,1,getopt support)
568      VLC_ADD_LDFLAGS([vlc],[-lgnugetopt])],
569     [need_getopt=:])])
570 fi
571 AM_CONDITIONAL(BUILD_GETOPT, ${need_getopt})
572
573 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
574 AC_TYPE_SIGNAL
575 AC_CHECK_LIB(m,cos,[
576   VLC_ADD_LDFLAGS([adjust wave ripple psychedelic gradient a52tofloat32 dtstofloat32 x264 goom visual],[-lm])
577 ])
578 AC_CHECK_LIB(m,pow,[
579   VLC_ADD_LDFLAGS([ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad twolame equalizer param_eq vlc freetype mpc dmo quicktime realaudio galaktos],[-lm])
580 ])
581 AC_CHECK_LIB(m,sqrt,[
582   VLC_ADD_LDFLAGS([headphone_channel_mixer normvol speex],[-lm])
583 ])
584 AC_CHECK_LIB(m,ceil,[
585   VLC_ADD_LDFLAGS([mosaic],[-lm])
586 ])
587 AC_CHECK_LIB(mx,sqrtf,[
588   VLC_ADD_LDFLAGS([x264],[-lmx])
589 ])
590 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
591
592 dnl Check for dynamic plugins
593 ac_cv_have_plugins=no
594
595 # OS X style
596 AC_CHECK_HEADERS(mach-o/dyld.h,
597   [AC_CHECK_FUNCS(NSLinkModule,
598     [AC_DEFINE(HAVE_DL_DYLD, 1, [Define if you have the Darwin dyld API])
599      ac_cv_have_plugins=yes])])
600
601 # HP-UX style
602 if test "${ac_cv_have_plugins}" = "no"; then
603   AC_CHECK_HEADERS(dl.h)
604   ac_cv_my_have_shl_load=no
605   AC_CHECK_FUNC(shl_load,
606    [ac_cv_my_have_shl_load=yes,
607     AC_CHECK_LIB(dld, shl_load,
608      [ac_cv_my_have_shl_load=yes
609       VLC_ADD_LDFLAGS([vlc],[-ldld])])])
610   if test "${ac_cv_my_have_shl_load}" = "yes"; then
611     AC_DEFINE(HAVE_DL_SHL_LOAD, 1, [Define if you have the shl_load API])
612     ac_cv_have_plugins=yes
613   fi
614 fi
615
616 # Whatever style
617 if test "${ac_cv_have_plugins}" = "no"; then
618   AC_CHECK_LIB(dld, dld_link,
619    [VLC_ADD_LDFLAGS([vlc],[-ldld])
620     AC_DEFINE(HAVE_DL_DLD_LINK, 1, [Define if you have the GNU dld library])
621     ac_cv_have_plugins=yes])
622 fi
623
624 # Win32 style
625 if test "${ac_cv_have_plugins}" = "no"; then
626   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
627     AC_CHECK_LIB(kernel32, main,
628      [VLC_ADD_LDFLAGS([vlc],[-lkernel32])
629       AC_DEFINE(HAVE_DL_WINDOWS, 1, [Define if you have Windows' LoadLibrary])
630       ac_cv_have_plugins=yes])
631   fi
632 fi
633
634 # WinCE style
635 if test "${ac_cv_have_plugins}" = "no"; then
636   if test "${SYS}" = "mingwce"; then
637     AC_DEFINE(HAVE_DL_WINDOWS, 1, [Define if you have Windows' LoadLibrary])
638     ac_cv_have_plugins=yes
639   fi
640 fi
641
642 # BeOS style
643 if test "${ac_cv_have_plugins}" = "no"; then
644   AC_CHECK_HEADERS(image.h)
645   AC_CHECK_FUNCS(load_add_on,
646    [AC_DEFINE(HAVE_DL_BEOS, 1, [Define if you have the BeOS dl])
647     ac_cv_have_plugins=yes])
648 fi
649
650 # Only test for dlopen() if the others didn't work
651 if test "${ac_cv_have_plugins}" = "no"; then
652   AC_CHECK_HEADERS(dlfcn.h sys/dl.h)
653   ac_cv_my_have_dlopen=no
654   AC_CHECK_FUNC(dlopen,
655     ac_cv_my_have_dlopen=yes,
656     AC_CHECK_LIB(dl, dlopen,
657       ac_cv_my_have_dlopen=yes
658       VLC_ADD_LDFLAGS([vlc],[-ldl]),
659       AC_CHECK_LIB(svld, dlopen,
660         ac_cv_my_have_dlopen=yes
661         VLC_ADD_LDFLAGS([vlc],[-lsvld]))))
662   if test "${ac_cv_my_have_dlopen}" = "yes"; then
663     AC_DEFINE(HAVE_DL_DLOPEN, 1, [Define if you have the dlopen API])
664     ac_cv_have_plugins=yes
665   fi
666 fi
667
668 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
669 dnl Check for pthreads - borrowed from XMMS
670 THREAD_LIB=error
671 if test "${THREAD_LIB}" = "error"; then
672   AC_CHECK_LIB(pthread,main,THREAD_LIB="-lpthread")
673 fi
674 if test "${THREAD_LIB}" = "error"; then
675   AC_CHECK_LIB(pthreads,main,THREAD_LIB="-lpthreads")
676 fi
677 if test "${THREAD_LIB}" = "error"; then
678   AC_CHECK_LIB(c_r,main,THREAD_LIB="-lc_r")
679 fi
680 if test "${THREAD_LIB}" = "error"; then
681   AC_CHECK_FUNCS(pthread_mutex_lock)
682   THREAD_LIB=""
683 fi
684
685 dnl Check for cthreads under GNU/Hurd for instance
686 AC_CHECK_LIB(threads,cthread_fork,THREAD_LIB="-lthreads")
687
688 dnl
689 dnl  GNU portable threads
690 dnl
691 AC_ARG_ENABLE(pth,
692   [  --enable-pth            GNU Pth support (default disabled)],
693   [ if test "${enable_pth}" = "yes"; then
694     AC_CHECK_LIB(pth,pth_init)
695     AC_MSG_CHECKING(for pth_init in pth.h)
696     AC_EGREP_HEADER(pth_init,pth.h,[
697       AC_MSG_RESULT(yes)
698       AC_DEFINE(PTH_INIT_IN_PTH_H, 1,
699                 Define if <pth.h> defines pth_init)
700       THREAD_LIB="-lpth"
701     ],[
702       AC_MSG_RESULT(no)
703     ])
704     fi
705 ])
706
707 dnl
708 dnl  State Threads
709 dnl
710 AC_ARG_ENABLE(st,
711   [  --enable-st             State Threads (default disabled)],
712   [ if test "${enable_st}" = "yes"; then
713     AC_CHECK_LIB(st,st_init)
714     AC_MSG_CHECKING(for st_init in st.h)
715     AC_EGREP_HEADER(st_init,st.h,[
716       AC_MSG_RESULT(yes)
717       AC_DEFINE(ST_INIT_IN_ST_H, 1,
718                 Define if <st.h> defines st_init)
719       THREAD_LIB="-lst"
720     ],[
721       AC_MSG_RESULT(yes)
722     ])
723     fi
724 ])
725
726 VLC_ADD_LDFLAGS([vlc plugin],[${THREAD_LIB}])
727
728 dnl Don't link with rt when using GNU-pth
729 if test "${THREAD_LIB}" != "-lpth" && test "${THREAD_LIB}" != "-lst"; then
730   AC_CHECK_LIB(rt, clock_nanosleep, [
731     VLC_ADD_LDFLAGS([vlc],[-lrt])
732     AC_DEFINE(HAVE_CLOCK_NANOSLEEP, 1, [Define to 1 if you have clock_nanosleep.])
733   ], [
734     dnl HP/UX port
735     AC_CHECK_LIB(rt,sem_init, [VLC_ADD_LDFLAGS([vlc],[-lrt])])
736   ])
737
738   have_nanosleep=false
739   AC_CHECK_FUNCS(nanosleep,have_nanosleep=:,[
740     AC_CHECK_LIB(rt,nanosleep,
741       [VLC_ADD_LDFLAGS([vlc],[-lrt]) have_nanosleep=:],
742       [AC_CHECK_LIB(posix4,nanosleep,
743           [VLC_ADD_LDFLAGS([vlc],[-lposix4]) have_nanosleep=:])]
744     )
745   ])
746   if ${have_nanosleep}; then
747     AC_DEFINE(HAVE_NANOSLEEP, 1,
748               Define if nanosleep is available.)
749   fi
750 fi
751
752 dnl Check for misc headers
753 AC_MSG_CHECKING(for pthread_cond_t in pthread.h)
754 AC_EGREP_HEADER(pthread_cond_t,pthread.h,[
755   AC_MSG_RESULT(yes)
756   AC_DEFINE(PTHREAD_COND_T_IN_PTHREAD_H, 1,
757             Define if <pthread.h> defines pthread_cond_t.)],[
758   AC_MSG_RESULT(no)])
759
760 AC_MSG_CHECKING(for pthread_once in pthread.h)
761 AC_EGREP_HEADER(pthread_once,pthread.h,[
762   AC_MSG_RESULT(yes)
763   AC_DEFINE(PTHREAD_ONCE_IN_PTHREAD_H, 1,
764             Define if <pthread.h> defines pthread_once.)],[
765   AC_MSG_RESULT(no)])
766 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
767
768 AC_MSG_CHECKING(for strncasecmp in strings.h)
769 AC_EGREP_HEADER(strncasecmp,strings.h,[
770   AC_MSG_RESULT(yes)
771   AC_DEFINE(STRNCASECMP_IN_STRINGS_H, 1,
772             Define if <strings.h> defines strncasecmp.)],[
773   AC_MSG_RESULT(no)])
774
775 dnl Check for headers
776 AC_CHECK_HEADERS(signal.h time.h errno.h stdint.h stdbool.h getopt.h strings.h inttypes.h sys/int_types.h wchar.h)
777 AC_CHECK_HEADERS(sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h)
778 AC_CHECK_HEADERS(arpa/inet.h net/if.h netinet/in.h sys/socket.h)
779 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
780 AC_CHECK_HEADERS(machine/param.h sys/shm.h)
781 AC_CHECK_HEADERS(linux/version.h)
782 AC_CHECK_HEADERS(syslog.h)
783 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
784
785 AC_HEADER_TIME
786
787 dnl Check for dirent
788 need_dirent=false
789 AC_CHECK_HEADERS(dirent.h,,[need_dirent=:])
790 AM_CONDITIONAL(BUILD_DIRENT, ${need_dirent})
791
792 dnl Mac OS X and other OSes don't have declaration for nanosleep
793 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
794 AC_MSG_CHECKING(for nanosleep in time.h)
795 AC_EGREP_HEADER(nanosleep,time.h,[
796   AC_MSG_RESULT(yes)
797   AC_DEFINE(HAVE_DECL_NANOSLEEP, 1,
798             Define if <time.h> defines nanosleep.)
799 ],[
800   AC_MSG_RESULT(no)
801 ])
802 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
803
804 dnl Make sure we have timespecs
805 AC_MSG_CHECKING(for timespec in sys/time.h)
806 AC_EGREP_HEADER(timespec,sys/time.h,[
807   AC_MSG_RESULT(yes)
808   AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1,
809             Define if <sys/time.h> defines struct timespec.)
810 ],[
811   AC_MSG_RESULT(no)
812 ])
813
814 dnl Check for threads library
815 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
816 AC_CHECK_HEADERS(cthreads.h pthread.h kernel/scheduler.h kernel/OS.h)
817 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
818
819 dnl Find where are the X headers and libraries
820 AC_PATH_XTRA()
821
822 dnl it seems that autoconf do the pkg-config detection only for the first PKG_CHECK_MODULES in the configure.ac ( which is logical) but in our case it is nested in a if so it was not working if you're not on linux or have disable hal.
823
824 PKG_PROG_PKG_CONFIG()
825
826 dnl Check for hal
827 AC_ARG_ENABLE(hal,
828   [  --enable-hal            Linux HAL services discovery (default enabled)])
829  
830 if test "${enable_hal}" != "no"
831 then
832   PKG_CHECK_MODULES(HAL, hal >= 0.5.0,
833     [ AC_DEFINE( HAVE_HAL_1, [] , [Define if you have the new HAL library API])
834       AC_DEFINE( HAVE_HAL, [], [Define if you have the HAL library] )
835       VLC_ADD_PLUGINS([hal probe_hal]) 
836       VLC_ADD_LDFLAGS([vlc hal probe_hal],[$HAL_LIBS])
837       VLC_ADD_CFLAGS([vlc hal probe_hal],[$HAL_CFLAGS])],   
838     dnl No hal 0.5 Test for 0.2
839     [ PKG_CHECK_MODULES( HAL, hal >= 0.2.97, 
840        [AC_DEFINE(HAVE_HAL, [], [Define if you have the HAL library])
841         VLC_ADD_PLUGINS([hal])
842         VLC_ADD_LDFLAGS([vlc hal],[$HAL_LIBS])
843         VLC_ADD_CFLAGS([vlc hal],[$HAL_CFLAGS])],
844        [AC_MSG_WARN(HAL library not found)])
845     ]
846   )
847 fi
848
849 dnl Check for dbus
850 AC_ARG_ENABLE(dbus,
851   [  --enable-dbus           Linux D-BUS message bus system (default enabled)])
852  
853 if test "${enable_dbus}" != "no"
854 then
855   PKG_CHECK_MODULES(DBUS, dbus-1 >= 0.30,
856     [ AC_DEFINE( HAVE_DBUS_1, 1, [Define if you have the new D-BUS library API])
857       AC_DEFINE( HAVE_DBUS, 1, [Define if you have the D-BUS library] )
858       VLC_ADD_LDFLAGS([screensaver],[$DBUS_LIBS])
859       VLC_ADD_CFLAGS([screensaver],[$DBUS_CFLAGS])],   
860     dnl older dbus
861     [ PKG_CHECK_MODULES( DBUS, dbus-1, 
862        [AC_DEFINE(HAVE_DBUS, 1, [Define if you have the D-BUS library])
863         VLC_ADD_LDFLAGS([screensaver],[$DBUS_LIBS])
864         VLC_ADD_CFLAGS([screensaver],[$DBUS_CFLAGS])],
865        [AC_MSG_WARN(DBUS library not found)])
866     ]
867   )
868 fi
869
870 dnl Build the gtk_main plugins?
871 NEED_GTK_MAIN=no
872 NEED_GNOME_MAIN=no
873 NEED_GTK2_MAIN=no
874 NEED_GNOME2_MAIN=no
875
876 dnl build the qte plugin ?
877 NEED_QTE_MAIN=no
878
879 dnl Check for ntohl, etc.
880 AC_CACHE_CHECK([for ntohl in sys/param.h],
881     [ac_cv_c_ntohl_sys_param_h],
882     [CFLAGS="${CFLAGS_save} -Wall -Werror"
883      AC_TRY_COMPILE([#include <sys/param.h>],
884         [void foo() { int meuh; ntohl(meuh); }],
885         ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
886 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
887     AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
888 fi
889
890 # XXX: do this with an M4 macro?
891 #dnl Check for various -W flags
892 #for flag in "" all unreachable-code conversion sign-compare disabled-optimization
893 #do
894 #    AC_CACHE_CHECK([if \$CC accepts -W${flag}],
895 #        [ac_cv_c_W${flag}],
896 #        [CFLAGS="-W${flag} ${CFLAGS_save}"
897 #         AC_TRY_COMPILE([],,ac_cv_c_W${flag}=yes, ac_cv_c_W${flag}=no)])
898 #    if test "${ac_cv_c_W${flag}}" != "no"; then
899 #        CFLAGS_save="-W${flag} ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
900 #        CXXFLAGS_save="-W${flag} ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
901 #        OBJCFLAGS_save="-W${flag} ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
902 #    fi
903 #done
904
905 AC_CACHE_CHECK([if \$CC accepts -Wall],
906     [ac_cv_c_Wall],
907     [CFLAGS="-Wall ${CFLAGS_save}"
908      AC_TRY_COMPILE([],,ac_cv_c_Wall=yes, ac_cv_c_Wall=no)])
909
910 AC_CACHE_CHECK([if \$CC accepts -Wconversion],
911     [ac_cv_c_Wconversion],
912     [CFLAGS="-Wconversion ${CFLAGS_save}"
913      AC_TRY_COMPILE([],,ac_cv_c_Wconversion=yes, ac_cv_c_Wconversion=no)])
914
915 AC_CACHE_CHECK([if \$CC accepts -Wunreachable-code],
916     [ac_cv_c_Wunreachable_code],
917     [CFLAGS="-Wunreachable-code ${CFLAGS_save}"
918      AC_TRY_COMPILE([],,ac_cv_c_Wunreachable_code=yes, ac_cv_c_Wunreachable_code=no)])
919
920 AC_CACHE_CHECK([if \$CC accepts -Wsign-compare],
921     [ac_cv_c_Wsign_compare],
922     [CFLAGS="-Wsign-compare ${CFLAGS_save}"
923      AC_TRY_COMPILE([],,ac_cv_c_Wsign_compare=yes, ac_cv_c_Wsign_compare=no)])
924
925 if test "${ac_cv_c_Wall}" != "no"; then
926     CFLAGS_save="-Wall ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
927     CXXFLAGS_save="-Wall ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
928     OBJCFLAGS_save="-Wall ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
929 fi
930
931 if test "${ac_cv_c_Wsign_compare}" != "no"; then
932     CFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
933     CXXFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
934     OBJCFLAGS_save="-Wsign-compare ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
935 fi
936
937 dnl Check for -pipe
938 AC_CACHE_CHECK([if \$CC accepts -pipe],
939     [ac_cv_c_pipe],
940     [CFLAGS="${CFLAGS_save} -pipe"
941      AC_TRY_COMPILE([],,ac_cv_c_pipe=yes, ac_cv_c_pipe=no)])
942 if test "${ac_cv_c_pipe}" != "no"; then
943     CFLAGS_save="${CFLAGS_save} -pipe"; CFLAGS="${CFLAGS_save}"
944     CXXFLAGS_save="${CXXFLAGS_save} -pipe"; CXXFLAGS="${CXXFLAGS_save}"
945     OBJCFLAGS_save="${OBJCFLAGS_save} -pipe"; OBJCFLAGS="${OBJCFLAGS_save}"
946 fi
947
948 dnl Check for various optimization flags
949 AC_CACHE_CHECK([if \$CC accepts -Os],
950     [ac_cv_c_os],
951     [CFLAGS="${CFLAGS_save} -Os"
952      AC_TRY_COMPILE([],,ac_cv_c_os=yes, ac_cv_c_os=no)])
953 if test "${ac_cv_c_os}" != "no" -a "${target_cpu}" = "mipsel"; then
954     CFLAGS_OPTIM="${CFLAGS_OPTIM} -Os"
955 fi
956
957 AC_CACHE_CHECK([if \$CC accepts -O3],
958     [ac_cv_c_o3],
959     [CFLAGS="${CFLAGS_save} -O3"
960      AC_TRY_COMPILE([],,ac_cv_c_o3=yes, ac_cv_c_o3=no)])
961 if test "${ac_cv_c_o3}" != "no" -a "${target_cpu}" != "mipsel"; then
962     CFLAGS_OPTIM="${CFLAGS_OPTIM} -O3"
963 fi
964
965 AC_CACHE_CHECK([if \$CC accepts -O2],
966     [ac_cv_c_o2],
967     [CFLAGS="${CFLAGS_save} -O2"
968      AC_TRY_COMPILE([],,ac_cv_c_o2=yes, ac_cv_c_o2=no)])
969 if test "${ac_cv_c_o2}" != "no" -a "${target_cpu}" != "mipsel"; then
970     if test "${ac_cv_c_o3}" = "no"; then
971         CFLAGS_OPTIM="${CFLAGS_OPTIM} -O2"
972     fi
973     CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O2"
974 else 
975     AC_CACHE_CHECK([if \$CC accepts -O],
976         [ac_cv_c_o],
977         [CFLAGS="${CFLAGS_save} -O"
978          AC_TRY_COMPILE([],,ac_cv_c_o=yes, ac_cv_c_o=no)])
979     if test "${ac_cv_c_o}" != "no" -a "${target_cpu}" != "mipsel"; then
980         if test "${ac_cv_c_o3}" = "no"; then
981             CFLAGS_OPTIM="${CFLAGS_OPTIM} -O"
982         fi
983         CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O"
984     fi
985 fi
986
987 dnl Check for -ffast-math
988 AC_CACHE_CHECK([if \$CC accepts -ffast-math],
989     [ac_cv_c_fast_math],
990     [CFLAGS="${CFLAGS_save} -ffast-math"
991      AC_TRY_COMPILE([],,ac_cv_c_fast_math=yes, ac_cv_c_fast_math=no)])
992 if test "${ac_cv_c_fast_math}" != "no"; then
993     CFLAGS_OPTIM="${CFLAGS_OPTIM} -ffast-math"
994 fi
995
996 dnl Check for -funroll-loops
997 dnl Disabled on BeOS because BeOS' gcc is buggy and may crash with it
998 if test "${SYS}" != "beos"
999 then
1000   AC_CACHE_CHECK([if \$CC accepts -funroll-loops],
1001       [ac_cv_c_unroll_loops],
1002       [CFLAGS="${CFLAGS_save} -funroll-loops"
1003        AC_TRY_COMPILE([],,ac_cv_c_unroll_loops=yes, ac_cv_c_unroll_loops=no)])
1004   if test "${ac_cv_c_unroll_loops}" != "no"; then
1005       CFLAGS_OPTIM="${CFLAGS_OPTIM} -funroll-loops"
1006   fi
1007 fi
1008
1009 dnl Check for -fomit-frame-pointer
1010 AC_CACHE_CHECK([if \$CC accepts -fomit-frame-pointer],
1011     [ac_cv_c_omit_frame_pointer],
1012     [CFLAGS="${CFLAGS_save} -fomit-frame-pointer"
1013      AC_TRY_COMPILE([],,ac_cv_c_omit_frame_pointer=yes, ac_cv_c_omit_frame_pointer=no)])
1014 if test "${ac_cv_c_omit_frame_pointer}" != "no"; then
1015     CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fomit-frame-pointer"
1016     # this plugin does not compile without -fomit-frame-pointer, damn gcc!
1017     VLC_ADD_CFLAGS([i420_yuy2_mmx],[-fomit-frame-pointer])
1018 fi
1019
1020 dnl Check for -mdynamic-no-pic
1021 AC_CACHE_CHECK([if \$CC accepts -mdynamic-no-pic],
1022     [ac_cv_c_dynamic_no_pic],
1023     [CFLAGS="${CFLAGS_save} -mdynamic-no-pic"
1024      AC_TRY_COMPILE([],,ac_cv_c_dynamic_no_pic=yes, ac_cv_c_dynamic_no_pic=no)])
1025 AS_IF([test "${enable_libtool}" = "no" && test "${ac_cv_c_dynamic_no_pic}" != "no"], [
1026     VLC_ADD_CFLAGS([builtin],[-mdynamic-no-pic])
1027     VLC_ADD_CFLAGS([libvlc],[-mdynamic-no-pic])
1028 ])
1029
1030 dnl Check for Darwin plugin linking flags
1031 AC_CACHE_CHECK([if \$CC accepts -bundle -undefined error],
1032     [ac_cv_ld_darwin],
1033     [CFLAGS="${CFLAGS_save} -bundle -undefined error"
1034      AC_TRY_COMPILE([],,ac_cv_ld_darwin=yes, ac_cv_ld_darwin=no)])
1035 if test "${ac_cv_ld_darwin}" != "no"; then
1036     VLC_ADD_LDFLAGS([plugin],[-bundle -undefined error])
1037 fi
1038
1039 dnl Check for standard plugin linking flags
1040 dnl BeOS' gcc needs -nostart instead of -shared, even if -shared isn't harmful (just a warning)
1041 if test "${SYS}" = "beos"; then
1042   VLC_ADD_LDFLAGS([plugin mozilla],[-nostart])
1043 else
1044   AC_CACHE_CHECK([if \$CC accepts -shared],
1045       [ac_cv_ld_plugins],
1046       [CFLAGS="${CFLAGS_save} -shared"
1047        AC_TRY_COMPILE([],, ac_cv_ld_plugins=yes, ac_cv_ld_plugins=no)])
1048   if test "${ac_cv_ld_plugins}" != "no"; then
1049     VLC_ADD_LDFLAGS([plugin mozilla],[-shared])
1050   fi
1051 fi
1052
1053 dnl Check for variadic macros
1054 AC_CACHE_CHECK([for variadic cpp macros],
1055     [ac_cv_cpp_variadic_macros],
1056     [CFLAGS="${CFLAGS_save}"
1057      AC_TRY_COMPILE(
1058          [#include <stdio.h>
1059           #define a(b,c...) printf(b,##c)],
1060          [a("foo");a("%s","bar");a("%s%s","baz","quux");],
1061          ac_cv_cpp_variadic_macros=yes,
1062          ac_cv_cpp_variadic_macros=no)])
1063 if test "${ac_cv_cpp_variadic_macros}" != "no"; then
1064     AC_DEFINE(HAVE_VARIADIC_MACROS, 1, Support for variadic macros)
1065 fi
1066
1067 dnl Checks for __attribute__(aligned()) directive
1068 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
1069     [ac_cv_c_attribute_aligned],
1070     [ac_cv_c_attribute_aligned=0
1071         CFLAGS="${CFLAGS_save} -Werror"
1072     for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
1073         AC_TRY_COMPILE([],
1074         [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
1075         [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
1076     done
1077         CFLAGS="${CFLAGS_save}"])
1078 if test "${ac_cv_c_attribute_aligned}" != "0"; then
1079     AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
1080         [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
1081 fi
1082
1083 dnl Checks for __attribute__(format()) directive
1084 AC_CACHE_CHECK([__attribute__ ((format ())) support with function pointers],
1085     [ac_cv_c_attribute_format],
1086     [ac_cv_c_attribute_format=no
1087         CFLAGS="${CFLAGS_save} -Werror"
1088         AC_TRY_COMPILE([],
1089         [static void (*pf_printf)(const char *, ...) __attribute__ ((format(printf,1,2)));(void)pf_printf;],
1090         [ac_cv_c_attribute_format=yes])
1091         CFLAGS="${CFLAGS_save}"])
1092 if test "${ac_cv_c_attribute_format}" != "no"; then
1093     AC_DEFINE(HAVE_ATTRIBUTE_FORMAT, 1, Support for __attribute__((format())) with function pointers)
1094 fi
1095
1096 dnl Check for __attribute__(())
1097 AC_CACHE_CHECK([for __attribute__((packed))],
1098   [ac_cv_c_attribute_packed],
1099   [ac_cv_c_attribute_packed=no
1100    AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b;],
1101                     [ac_cv_c_attribute_packed=yes])])
1102 if test "${ac_cv_c_attribute_packed}" != "no"; then
1103   AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
1104 fi
1105
1106 dnl
1107 dnl  Check the CPU
1108 dnl
1109 case "${target_cpu}" in
1110   "")
1111     ARCH=unknown
1112     ;;
1113   *)
1114     ARCH="${target_cpu}"
1115     ;;
1116 esac
1117
1118 dnl
1119 dnl  Enable profiling
1120 dnl
1121 AC_ARG_ENABLE(gprof,
1122 [  --enable-gprof          gprof profiling (default disabled)])
1123 AC_ARG_ENABLE(cprof,
1124 [  --enable-cprof          cprof profiling (default disabled)])
1125 test "${enable_gprof}" != "yes" && enable_gprof="no"
1126 test "${enable_cprof}" != "yes" && enable_cprof="no"
1127
1128 dnl
1129 dnl  default modules
1130 dnl
1131 VLC_ADD_PLUGINS([dummy logger memcpy])
1132 VLC_ADD_PLUGINS([mpgv mpga m4v m4a h264 ps pva avi asf mp4 rawdv nsv real aiff mjpeg demuxdump flac])
1133 VLC_ADD_PLUGINS([cvdsub svcdsub spudec subsdec dvbsub mpeg_audio lpcm a52 dts cinepak flacdec])
1134 VLC_ADD_PLUGINS([deinterlace invert adjust transform wave ripple psychedelic gradient motionblur rv32])
1135 VLC_ADD_PLUGINS([fixed32tos16 s16tofixed32 u8tofixed32 mono])
1136 VLC_ADD_PLUGINS([trivial_resampler ugly_resampler])
1137 VLC_ADD_PLUGINS([trivial_channel_mixer trivial_mixer])
1138 VLC_ADD_PLUGINS([playlist export sgimb nsc xtag])
1139 VLC_ADD_PLUGINS([i420_rgb rawvideo blend scale image logo magnify])
1140 VLC_ADD_PLUGINS([wav araw subtitle vobsub adpcm a52sys dtssys au ty voc xa nuv])
1141 VLC_ADD_PLUGINS([access_directory access_file access_udp access_tcp])
1142 VLC_ADD_PLUGINS([access_http access_mms access_ftp ipv4])
1143 VLC_ADD_PLUGINS([packetizer_mpegvideo packetizer_h264])
1144 VLC_ADD_PLUGINS([packetizer_mpeg4video packetizer_mpeg4audio])
1145
1146
1147 if test "${SYS}" != "mingwce"; then
1148 dnl  VLC_ADD_PLUGINS([externrun])
1149   VLC_ADD_PLUGINS([access_fake access_filter_timeshift access_filter_record])
1150   VLC_ADD_PLUGINS([gestures rc telnet hotkeys netsync showintf time marq podcast shout sap fake])
1151   VLC_ADD_PLUGINS([rss mosaic wall motiondetect clone crop])
1152   VLC_ADD_PLUGINS([i420_yuy2 i422_yuy2 i420_ymga])
1153   VLC_ADD_PLUGINS([aout_file linear_resampler bandlimited_resampler])
1154   VLC_ADD_PLUGINS([float32_mixer spdif_mixer simple_channel_mixer])
1155   VLC_ADD_PLUGINS([dolby_surround_decoder headphone_channel_mixer normvol equalizer param_eq])
1156   VLC_ADD_PLUGINS([fixed32tofloat32 float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif s16tofloat32 s16tofloat32swab s8tofloat32 u8tofloat32 audio_format])
1157 fi
1158
1159 dnl
1160 dnl  Switch to enable a version of VLC where most modules will be builtin
1161 dnl
1162 AC_ARG_ENABLE(mostly-builtin,
1163 [  --enable-mostly-builtin most modules will be built-in (default disabled)])
1164 if test "${enable_mostly_builtin}" = "yes"; then
1165   VLC_ADD_BUILTINS([${PLUGINS}])
1166   PLUGINS=""
1167 fi
1168
1169 dnl
1170 dnl Some plugins aren't useful on some platforms
1171 dnl
1172 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
1173     VLC_ADD_PLUGINS([screensaver motion])
1174 elif test "${SYS}" != "mingwce"; then
1175     VLC_ADD_PLUGINS([ntservice access_smb dmo msn])
1176     VLC_ADD_LDFLAGS([dmo],[-lole32])
1177 else
1178     VLC_ADD_PLUGINS([win32text])
1179 fi
1180
1181 dnl
1182 dnl  Accelerated modules
1183 dnl
1184 MMX_MODULES="memcpymmx i420_rgb_mmx i422_yuy2_mmx i420_ymga_mmx"
1185 #MMX_MODULES="${MMX_MODULES} idctmmx motionmmx"
1186 MMXEXT_MODULES="memcpymmxext"
1187 #MMXEXT_MODULES="${MMXEXT_MODULES} idctmmxext motionmmxext"
1188 THREEDNOW_MODULES="memcpy3dn"
1189 SSE_MODULES=""
1190 ALTIVEC_MODULES="memcpyaltivec i420_yuy2_altivec"
1191 #ALTIVEC_MODULES="${ALTIVEC_MODULES} idctaltivec motionaltivec"
1192
1193 if test "${enable_gprof}" != "yes"
1194 then
1195   MMX_MODULES="${MMX_MODULES} i420_yuy2_mmx"
1196 fi
1197
1198 AC_CACHE_CHECK([if \$CC groks MMX inline assembly],
1199     [ac_cv_mmx_inline],
1200     [CFLAGS="${CFLAGS_save}"
1201      AC_TRY_COMPILE(,[void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p));],
1202                     ac_cv_mmx_inline=yes, ac_cv_mmx_inline=no)])
1203 if test "${ac_cv_mmx_inline}" != "no"; then
1204   AC_DEFINE(CAN_COMPILE_MMX, 1, Define if \$CC groks MMX inline assembly.)
1205   ACCEL_MODULES="${ACCEL_MODULES} ${MMX_MODULES}"
1206 fi
1207
1208 dnl  Check for fully workin MMX intrinsics
1209 dnl  We need support for -mmmx, we need <mmintrin.h>, and we also need a
1210 dnl  working compiler (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23963)
1211 AC_CACHE_CHECK([if \$CC groks MMX intrinsics],
1212     [ac_cv_c_mmx_intrinsics],
1213     [CFLAGS="${CFLAGS_save} -O -mmmx"
1214      AC_TRY_COMPILE([#include <mmintrin.h>
1215                      #include <stdint.h>
1216                      uint64_t frobzor;],
1217                     [__m64 a, b, c;
1218                      a = b = c = (__m64)frobzor;
1219                      a = _mm_slli_pi16(a, 3);
1220                      a = _mm_adds_pi16(a, b);
1221                      c = _mm_srli_pi16(c, 8);
1222                      c = _mm_slli_pi16(c, 3);
1223                      b = _mm_adds_pi16(b, c);
1224                      a = _mm_unpacklo_pi8(a, b);
1225                      frobzor = (uint64_t)a;],
1226                     [ac_cv_c_mmx_intrinsics=yes],
1227                     [ac_cv_c_mmx_intrinsics=no])])
1228 if test "${ac_cv_c_mmx_intrinsics}" != "no"; then
1229   AC_DEFINE(HAVE_MMX_INTRINSICS, 1, Define if MMX intrinsics are available.)
1230   VLC_ADD_CFLAGS([i420_rgb_mmx],[-mmmx])
1231 fi
1232
1233 AC_CACHE_CHECK([if \$CC groks MMX EXT inline assembly],
1234     [ac_cv_mmxext_inline],
1235     [CFLAGS="${CFLAGS_save}"
1236      AC_TRY_COMPILE(,[void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p));],
1237                     ac_cv_mmxext_inline=yes, ac_cv_mmxext_inline=no)])
1238 if test "${ac_cv_mmxext_inline}" != "no"; then
1239   AC_DEFINE(CAN_COMPILE_MMXEXT, 1, Define if \$CC groks MMX EXT inline assembly.)
1240   ACCEL_MODULES="${ACCEL_MODULES} ${MMXEXT_MODULES}"
1241 fi
1242
1243 AC_CACHE_CHECK([if \$CC groks 3D Now! inline assembly],
1244     [ac_cv_3dnow_inline],
1245     [CFLAGS="${CFLAGS_save}"
1246      AC_TRY_COMPILE(,[void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p));],
1247                     ac_cv_3dnow_inline=yes, ac_cv_3dnow_inline=no)])
1248 if test "${ac_cv_3dnow_inline}" != "no"; then
1249   AC_DEFINE(CAN_COMPILE_3DNOW, 1, Define if \$CC groks 3D Now! inline assembly.)
1250   ACCEL_MODULES="${ACCEL_MODULES} ${THREEDNOW_MODULES}"
1251 fi
1252
1253 AC_CACHE_CHECK([if \$CC groks SSE inline assembly],
1254     [ac_cv_sse_inline],
1255     [CFLAGS="${CFLAGS_save}"
1256      AC_TRY_COMPILE(,[void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p));],
1257                     ac_cv_sse_inline=yes, ac_cv_sse_inline=no)])
1258 if test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "solaris"; then
1259   AC_DEFINE(CAN_COMPILE_SSE, 1, Define if \$CC groks SSE inline assembly.)
1260   ACCEL_MODULES="${ACCEL_MODULES} ${SSE_MODULES}"
1261 fi
1262
1263 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
1264 AC_CACHE_CHECK([if \$CC groks AltiVec inline assembly],
1265     [ac_cv_altivec_inline],
1266     [CFLAGS="${CFLAGS_save}"
1267      AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1268          ac_cv_altivec_inline=yes,
1269          [CFLAGS="${CFLAGS_save} -Wa,-m7400"
1270           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1271             [ac_cv_altivec_inline="-Wa,-m7400"],
1272             ac_cv_altivec_inline=no)
1273          ])])
1274 if test "${ac_cv_altivec_inline}" != "no"; then
1275   AC_DEFINE(CAN_COMPILE_ALTIVEC, 1, Define if \$CC groks AltiVec inline assembly.)
1276   if test "${ac_cv_altivec_inline}" != "yes"; then
1277     VLC_ADD_CFLAGS([idctaltivec],[${ac_cv_altivec_inline}])
1278     VLC_ADD_CFLAGS([motionaltivec],[${ac_cv_altivec_inline}])
1279     VLC_ADD_CFLAGS([memcpyaltivec],[${ac_cv_altivec_inline}])
1280     VLC_ADD_CFLAGS([i420_yuy2_altivec],[${ac_cv_altivec_inline}])
1281     VLC_ADD_CFLAGS([vlc],[${ac_cv_altivec_inline}])
1282   fi
1283   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
1284 fi
1285
1286 dnl The AltiVec C extensions
1287 dnl
1288 dnl There are several possible cases:
1289 dnl - OS X PPC, gcc 4.x: use -mpim-altivec -force_cpusubtype_ALL, don't
1290 dnl                      need <altivec.h>
1291 dnl - OS X PPC, gcc 3.x: need -faltivec, don't need <altivec.h>
1292 dnl - Linux PPC, gcc 3.4, 4.x: need <altivec.h> which requires -maltivec
1293 dnl - Linux PPC, gcc 3.3: need <altivec.h> and -maltivec -mabi=altivec
1294 dnl - Linux PPC, gcc 3.x: need <altivec.h> and -fvec
1295 dnl - Others: test should fail
1296 AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1297   [ac_cv_c_altivec],
1298   [# OS X/PPC test (gcc 4.x)
1299    CFLAGS="${CFLAGS_save} -mpim-altivec -force_cpusubtype_ALL"
1300    AC_TRY_COMPILE([],
1301      [vec_ld(0, (unsigned char *)0);],
1302      [ac_cv_c_altivec="-mpim-altivec -force_cpusubtype_ALL"],
1303      [# OS X/PPC test (gcc 3.x)
1304       CFLAGS="${CFLAGS_save} -faltivec"
1305       AC_TRY_COMPILE([],
1306         [vec_ld(1 * sizeof(vector float), (unsigned char *)0);],
1307         [ac_cv_c_altivec="-faltivec"],
1308         dnl Below this are the Linux tests
1309         [# Linux/PPC test (gcc 4.x)
1310          CFLAGS="${CFLAGS_save} -maltivec"
1311          AC_TRY_COMPILE([#include <altivec.h>],
1312            [vec_ld(0, (unsigned char *)0);],
1313            [ac_cv_c_altivec="-maltivec"],
1314            [# Linux/PPC test (gcc 3.3)
1315             CFLAGS="${CFLAGS_save} -maltivec -mabi=altivec"
1316             AC_TRY_COMPILE([#include <altivec.h>],
1317               [vec_ld(0, (unsigned char *)0);],
1318               [ac_cv_c_altivec=""
1319                ac_cv_c_altivec_abi="-maltivec -mabi=altivec"],
1320               [# Linux/PPC test (gcc 3.3)
1321                CFLAGS="${CFLAGS_save} -fvec"
1322                AC_TRY_COMPILE([#include <altivec.h>],
1323                  [vec_ld(0, (unsigned char *)0);],
1324                  [ac_cv_c_altivec="-fvec"],
1325                  [ac_cv_c_altivec=no])
1326               ])
1327            ])
1328         ])
1329      ])
1330    CFLAGS="${CFLAGS_save}"
1331   ])
1332
1333 if test "${ac_cv_c_altivec}" != "no"; then
1334   CPPFLAGS="${CPPFLAGS_save} ${ac_cv_c_altivec}"
1335 fi
1336 AC_CHECK_HEADERS(altivec.h)
1337 CPPFLAGS="${CPPFLAGS_save}"
1338
1339 if test "${ac_cv_c_altivec}" != "no"; then
1340   AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, Define if your compiler groks C AltiVec extensions.)
1341   VLC_ADD_CFLAGS([vlc],[${ac_cv_c_altivec}])
1342   VLC_ADD_CFLAGS([idctaltivec motionaltivec],[${ac_cv_c_altivec}])
1343   VLC_ADD_CFLAGS([i420_yuy2_altivec memcpyaltivec deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1344   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
1345 fi
1346
1347 AC_CACHE_CHECK([if linker needs -framework vecLib],
1348     [ac_cv_ld_altivec],
1349     [LDFLAGS="${LDFLAGS_vlc} -framework vecLib"
1350      AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)
1351      LDFLAGS="${LDFLAGS_save}"
1352     ])
1353 if test "${ac_cv_ld_altivec}" != "no"; then
1354   VLC_ADD_LDFLAGS([vlc idctaltivec motionaltivec memcpyaltivec],[-framework vecLib])
1355 fi
1356 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
1357
1358 AC_ARG_WITH(,[])
1359 AC_ARG_WITH(,[Optimization options:])
1360
1361 dnl
1362 dnl  Special arch tuning
1363 dnl
1364 AC_ARG_WITH(tuning,
1365 [  --with-tuning=ARCH      enable special tuning for an architecture
1366                           (default Pentium 2 on IA-32 and G4 on PPC)])
1367 if test -n "${with_tuning}"; then
1368     if test "${with_tuning}" != "no"; then
1369         CFLAGS_TUNING="-mtune=${with_tuning}"
1370     fi
1371 else
1372     if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "i486" -o "${target_cpu}" = "i386"; then
1373         CFLAGS_TUNING="-mtune=pentium2"
1374     elif test "${target_cpu}" = "x86_64"; then
1375         CFLAGS_TUNING="-mtune=athlon64"
1376     elif test "${target_cpu}" = "powerpc"; then
1377         CFLAGS_TUNING="-mtune=G4";
1378     fi
1379 fi
1380
1381 dnl NOTE: this can't be cached cleanly
1382 AS_IF([test "${CFLAGS_TUNING}"],
1383    [CFLAGS_save="${CFLAGS}"
1384     CFLAGS="${CFLAGS} ${CFLAGS_TUNING}"
1385
1386     AC_MSG_CHECKING([whether $CC accepts ${CFLAGS_TUNING}])
1387     AC_COMPILE_IFELSE([ ],
1388                       [tuning="yes"],
1389                       [CFLAGS_TUNING=""; tuning="no"
1390                        AS_IF([test "${with_tuning}"],
1391                              [AC_MSG_ERROR([requested tuning not supported])])])
1392
1393     AC_MSG_RESULT([$tuning])
1394     CFLAGS="${CFLAGS_save}"
1395 ])
1396
1397 dnl
1398 dnl  x86 accelerations
1399 dnl
1400 if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "x86" -o "${target_cpu}" = "i386" -o "${target_cpu}" = "x86_64"
1401 then
1402     ARCH="${ARCH} mmx"
1403     VLC_ADD_BUILTINS([${ACCEL_MODULES}])
1404 fi
1405
1406 dnl
1407 dnl  Memory usage
1408 dnl
1409 AC_ARG_ENABLE(optimize-memory,
1410 [  --enable-optimize-memory      optimize memory usage over performance])
1411 if test "${enable_optimize_memory}" = "yes"; then
1412   AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1413 fi
1414
1415 dnl
1416 dnl  Enable/disable optimizations
1417 dnl
1418 AC_ARG_ENABLE(optimizations,
1419 [  --disable-optimizations disable compiler optimizations (default enabled)])
1420 test "${enable_optimizations}" != "no" && enable_optimizations="yes"
1421
1422 dnl
1423 dnl  AltiVec acceleration
1424 dnl
1425 AC_ARG_ENABLE(altivec,
1426 [  --disable-altivec       disable AltiVec optimizations (default enabled on PPC)],
1427 [ if test "${enable_altivec}" = "yes"; then ARCH="${ARCH} altivec";
1428     VLC_ADD_BUILTINS([${ACCEL_MODULES}]) fi ],
1429 [ if test "${target_cpu}" = "powerpc"; then ARCH="${ARCH} altivec";
1430     VLC_ADD_BUILTINS([${ACCEL_MODULES}]) fi ])
1431
1432 dnl
1433 dnl  Debugging mode
1434 dnl
1435 AC_ARG_ENABLE(debug,
1436 [  --enable-debug          debug mode (default disabled)])
1437 test "${enable_debug}" != "yes" && enable_debug="no"
1438 AH_TEMPLATE(NDEBUG,
1439             [Define to 1 if debug code should NOT be compiled])
1440 AS_IF([test "x${enable_debug}" = "xno"], [AC_DEFINE(NDEBUG)])
1441
1442 dnl
1443 dnl  Enable release-specific flags
1444 dnl
1445 AC_ARG_ENABLE(release,
1446 [  --enable-release        activate extra optimizations (default disabled)])
1447 test "${enable_release}" != "yes" && enable_release="no"
1448
1449 dnl
1450 dnl  Is the shared libvlc forced ?
1451 dnl
1452 AC_ARG_ENABLE(shared-libvlc,
1453   [  --enable-shared-libvlc  Win32 libvlc.dll build (default disabled)])
1454 AS_IF([test "${enable_libtool}" != "no" && test "${enable_shared_libvlc}"], [
1455   AC_MSG_ERROR([--enable-shared-libvlc and --enable-libtool are mutually exclusive])
1456 ])
1457
1458 dnl
1459 dnl Stream output
1460 dnl
1461 AC_ARG_ENABLE(sout,
1462   [  --enable-sout           Stream output modules (default enabled)])
1463 if test "${enable_sout}" != "no"
1464 then
1465   VLC_ADD_PLUGINS([access_output_dummy access_output_udp access_output_file access_output_http])
1466   VLC_ADD_PLUGINS([mux_ps mux_avi mux_mp4 mux_asf mux_dummy mux_wav mux_mpjpeg])
1467   VLC_ADD_PLUGINS([packetizer_copy])
1468
1469   VLC_ADD_PLUGINS([stream_out_dummy stream_out_standard stream_out_es stream_out_rtp stream_out_description vod_rtsp])
1470   VLC_ADD_PLUGINS([stream_out_duplicate stream_out_gather stream_out_display stream_out_transcode stream_out_bridge stream_out_mosaic_bridge])
1471 #  VLC_ADD_PLUGINS([stream_out_transrate])
1472   VLC_ADD_PLUGINS([profile_parser])
1473
1474   AC_DEFINE(ENABLE_SOUT, 1, Define if you want the stream output support)
1475 fi
1476
1477 dnl Check for libshout
1478 AC_ARG_ENABLE(shout,
1479   [  --enable-shout          libshout output plugin (default disabled)])
1480 if test "${enable_shout}" = "yes"; then
1481   PKG_CHECK_MODULES(SHOUT, shout >= 2.1,
1482     [AC_DEFINE(HAVE_SHOUT, [], [Define if you have the libshout library])
1483      VLC_ADD_PLUGINS([access_output_shout])
1484      VLC_ADD_LDFLAGS([access_output_shout],[$SHOUT_LIBS])
1485      VLC_ADD_CFLAGS([access_output_shout],[$SHOUT_CFLAGS])],
1486     [AC_MSG_WARN(libshout library not found)])
1487 fi
1488
1489 dnl
1490 dnl HTTP daemon
1491 dnl
1492 AC_ARG_ENABLE(httpd,
1493   [  --enable-httpd          HTTP daemon (default enabled)])
1494 if test "${enable_httpd}" != "no"
1495 then
1496   VLC_ADD_PLUGINS([http])
1497   AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP dameon support)
1498 fi
1499
1500 dnl
1501 dnl VideoLAN manager
1502 dnl
1503 AC_ARG_ENABLE(vlm,
1504   [  --enable-vlm            VideoLAN manager (default enabled)])
1505 if test "${enable_vlm}" != "no"
1506 then
1507   AC_DEFINE(ENABLE_VLM, 1, Define if you want the VideoLAN manager support)
1508 fi
1509
1510 dnl
1511 dnl Growl notification plugin
1512 dnl
1513 AC_ARG_ENABLE(growl,
1514   [  --enable-growl          growl notification plugin (default enabled)])
1515 AS_IF([test "${enable_growl}" != "no"], [
1516     VLC_ADD_PLUGINS([growl])
1517   ]
1518 )
1519
1520 dnl
1521 dnl Libnotify notification plugin
1522 dnl
1523
1524 AC_ARG_ENABLE(notify,
1525   [  --enable-notify         libnotify notification plugin (default enabled)])
1526 AS_IF([test "${enable_notify}" != "no"], [
1527     PKG_CHECK_MODULES(NOTIFY, libnotify,
1528       [
1529         VLC_ADD_PLUGINS([notify])
1530         VLC_ADD_CFLAGS(notify, [$NOTIFY_CFLAGS])
1531         VLC_ADD_LDFLAGS(notify, [$NOTIFY_LIBS])
1532       ],[
1533         AS_IF([test "${enable_notify}" = "yes"],[
1534                AC_MSG_WARN( libnotify not found) ])
1535       ])
1536   ])
1537
1538
1539
1540
1541 dnl
1542 dnl  Input plugins
1543 dnl
1544
1545 AC_ARG_WITH(,[Input plugins:])
1546
1547 dnl  live555 input
1548 dnl
1549 if test "${enable_livedotcom}" 
1550 then
1551   AC_MSG_WARN(--{en|dis}able-livedotcom is deprecated. Use --{en|dis}able-live555 instead.)
1552 fi
1553
1554 if test "${enable_livedotcom}" = "yes"
1555 then
1556   enable_live555="yes"
1557 fi
1558 AC_ARG_ENABLE(live555,
1559 [  --enable-live555        live555 RTSP input plugin (default disabled)])
1560 if test "${enable_live555}" = "yes"; then
1561   AC_ARG_WITH(live555-tree,
1562     [    --with-live555-tree=PATH live.com tree for static linking])
1563
1564   dnl
1565   dnl test for --with-live555-tree
1566   dnl
1567   if test "${with_livedotcom_tree}" 
1568   then
1569     AC_MSG_WARN(--with-livedotcom-tree is deprecated. Use --with-live555-tree instead.)
1570   with_live555_tree="${with_livedotcom_tree}"
1571   fi
1572   
1573   if test -z "${with_live555_tree}" -a "${CXX}" != ""; then
1574     AC_LANG_PUSH(C++)
1575     CPPFLAGS_save="${CPPFLAGS}"
1576     CPPFLAGS_live555="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
1577     if test "${SYS}" = "solaris"; then
1578       CPPFLAGS_live555="${CPPFLAGS_live555} -DSOLARIS"
1579     fi
1580     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_live555}"
1581     AC_CHECK_HEADERS(liveMedia.hh, [
1582       VLC_ADD_CXXFLAGS([live555], [${CPPFLAGS_live555}])
1583       AC_CHECK_LIB(liveMedia_pic, main, [
1584         # We have -lliveMedia_pic, build plugins
1585         VLC_ADD_PLUGINS([live555])
1586         VLC_ADD_LDFLAGS([live555], [-lliveMedia_pic -lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic])
1587       ], [
1588         AC_CHECK_LIB(liveMedia, main, [
1589           # We only have -lliveMedia, do builtins
1590           VLC_ADD_BUILTINS([live555])
1591           VLC_ADD_LDFLAGS([live555], [-lliveMedia -lgroupsock -lBasicUsageEnvironment -lUsageEnvironment])
1592         ])
1593       ])
1594       if test "${SYS}" = "mingw32"; then
1595         # add ws2_32 for closesocket, select, recv
1596         VLC_ADD_LDFLAGS([live555],[-lws2_32])
1597       fi
1598     ])
1599     CPPFLAGS="${CPPFLAGS_save}"
1600     AC_LANG_POP(C++)
1601   else
1602     AC_MSG_CHECKING(for liveMedia/libliveMedia.a in ${with_live555_tree})
1603     real_live555_tree="`cd ${with_live555_tree} 2>/dev/null && pwd`"
1604     if test -z "${real_live555_tree}"; then
1605       dnl  The given directory can't be found
1606       AC_MSG_RESULT(no)
1607       AC_MSG_ERROR([cannot cd to ${with_live555_tree}])
1608     fi
1609     if test -f "${real_live555_tree}/liveMedia/libliveMedia.a"; then
1610       AC_MSG_RESULT(${real_live555_tree}/liveMedia/libliveMedia.a)
1611
1612       VLC_ADD_BUILTINS([live555])
1613
1614       if test "${SYS}" = "mingw32"; then
1615         # add ws2_32 for closesocket, select, recv
1616         VLC_ADD_LDFLAGS([live555],[-lws2_32])
1617       fi
1618
1619       VLC_ADD_LDFLAGS([live555],[-L${real_live555_tree}/liveMedia -lliveMedia])
1620       VLC_ADD_LDFLAGS([live555],[-L${real_live555_tree}/BasicUsageEnvironment -lBasicUsageEnvironment])
1621       VLC_ADD_LDFLAGS([live555],[-L${real_live555_tree}/groupsock -lgroupsock])
1622       VLC_ADD_LDFLAGS([live555],[-L${real_live555_tree}/UsageEnvironment -lUsageEnvironment])
1623
1624       VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/BasicUsageEnvironment/include])
1625       VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/groupsock/include])
1626       VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/liveMedia/include])
1627       VLC_ADD_CXXFLAGS([live555],[-I${real_live555_tree}/UsageEnvironment/include ])
1628       if test "${SYS}" = "solaris"; then
1629         VLC_ADD_CXXFLAGS([live555],[-DSOLARIS])
1630       fi
1631     else
1632       dnl  The given live555 wasn't built
1633       AC_MSG_RESULT(no)
1634       AC_MSG_ERROR([cannot find ${real_live555_tree}/liveMedia/libliveMedia.a, make sure you compiled live555 in ${with_live555_tree}])
1635     fi
1636   fi
1637 fi
1638
1639 dnl
1640 dnl dv module: digital video module check for libraw1394
1641 dnl
1642 AC_ARG_ENABLE(dv,
1643 [  --enable-dv             dv input module (default disabled)])
1644 if test "${enable_dv}" = "yes"
1645 then
1646   AC_ARG_WITH(dv-raw1394,
1647   [    --with-dv-raw1394=PATH   libraw1394 headers and libraries])
1648   AC_ARG_WITH(dv-raw1394-tree,
1649   [    --with-dv-raw1394=PATH   libraw1394 tree for static linking])
1650
1651   if test -z "${with_dv_raw1394}" -a "${with_dv_raw1394}" != ""
1652   then
1653     AC_MSG_CHECKING(for raw1394 headers in ${with_dv_raw1394})
1654     if test -f ${with_dv_raw1394}/include/libraw1394/raw1394.h
1655     then
1656       dnl  Use ${with_dv_raw1394}/include/libraw1394/raw1394.h
1657       AC_MSG_RESULT(yes)
1658       VLC_ADD_PLUGINS([access_dv])
1659       VLC_ADD_LDFLAGS([access_dv],[-L${with_dv_raw1394}/lib -lraw1394 -lpthread])
1660       VLC_ADD_CPPFLAGS([access_dv],[-I${with_dv_raw1394}/include])
1661     else
1662       dnl  No libraw1394 could be found, sorry
1663       AC_MSG_RESULT(no)
1664       AC_MSG_ERROR([cannot find ${with_dv_raw1394}/include/libraw1394/raw1394.h])
1665     fi
1666   else
1667     AC_CHECK_HEADERS(libraw1394/raw1394.h,
1668     [ VLC_ADD_PLUGINS([access_dv])
1669         VLC_ADD_LDFLAGS([access_dv],[-lraw1394 -lavc1394])
1670     ],[
1671         if test -n "${enable_dv}"
1672         then
1673           AC_MSG_ERROR([cannot find libraw1394 headers])
1674         fi
1675     ])
1676   fi
1677
1678   dnl Check for static linking of libraw1394
1679   if test -z "${with_dv_raw1394_tree}" -a "${with_dv_raw1394_tree}" != ""
1680   then
1681     AC_MSG_CHECKING(for libraw1394.a in ${with_dv_raw1394_tree})
1682     real_dv_raw1394_tree="`cd ${with_dv_raw1394_tree} 2>/dev/null && pwd`"
1683     if test -z "${real_dv_raw1394_tree}"
1684     then
1685       dnl  The given directory can't be found
1686       AC_MSG_RESULT(no)
1687       AC_MSG_ERROR([cannot cd to ${real_dv_raw1394_tree}])
1688     fi
1689     if test -f "${real_dv_raw1394_tree}/src/.libs/libraw1394.a"
1690     then
1691       dnl  Use a custom libraw1394
1692       AC_MSG_RESULT(${real_dv_raw1394_tree}/src/.libs/libraw1394.a)
1693       VLC_ADD_BUILTINS([access_dv])
1694       VLC_ADD_LDFLAGS([access_dv],[-L${real_dv_raw1394_tree}/src/.libs -lraw1394])
1695       VLC_ADD_CPPFLAGS([access_dv],[-I${real_dv_raw1394_tree}])
1696     else
1697       dnl  The given libraw1394 wasn't built
1698       AC_MSG_RESULT(no)
1699       AC_MSG_ERROR([cannot find ${real_dv_raw1394_tree}/src/.libs/libraw1394.a, make sure you compiled libraw1394 in ${with_dv_raw1394_tree}])
1700     fi
1701   fi
1702
1703   dnl
1704   dnl Check for libavc1394
1705   dnl
1706
1707   AC_ARG_WITH(dv-avc1394,
1708   [    --with-dv-avc1394=PATH   libavc1394 headers and libraries])
1709   AC_ARG_WITH(dv-avc1394-tree,
1710   [    --with-dv-avc1394=PATH   libavc1394 tree for static linking])
1711
1712   if test -z "${with_dv_avc1394}" -a "${with_dv_avc1394}" != ""
1713   then
1714     AC_MSG_CHECKING(for avc1394 headers in ${with_dv_avc1394})
1715     if test -f ${with_dv_avc1394}/include/libavc1394/avc1394.h
1716     then
1717       dnl  Use ${with_dv_avc1394}/include/libavc1394/avc1394.h
1718       AC_MSG_RESULT(yes)
1719       VLC_ADD_LDFLAGS([access_dv],[-L${with_dv_avc1394}/lib -lavc1394 -lrom1394 -lpthread])
1720       VLC_ADD_CPPFLAGS([access_dv],[-I${with_avc1394}/include])
1721     else
1722       dnl  No libavc1394 could be found, sorry
1723       AC_MSG_RESULT(no)
1724       AC_MSG_ERROR([cannot find ${with_dv_avc1394}/include/libavc1394/avc1394.h])
1725     fi
1726   else
1727     AC_CHECK_HEADERS(libavc1394/avc1394.h,
1728     [ VLC_ADD_LDFLAGS([access_dv],[-lavc1394 -lrom1394 -lpthread])
1729     ],[
1730         if test -n "${enable_dv}"
1731         then
1732           AC_MSG_ERROR([cannot find libavc1394 headers])
1733         fi
1734     ])
1735   fi
1736
1737   dnl Check for static linking of libavc1394
1738   if test -z "${with_dv_avc1394_tree}" -a "${with_dv_avc1394_tree}" != ""
1739   then
1740     AC_MSG_CHECKING(for libavc1394.a in ${with_dv_avc1394_tree})
1741     real_dv_avc1394_tree="`cd ${with_dv_avc1394_tree} 2>/dev/null && pwd`"
1742     if test -z "${real_dv_avc1394_tree}"
1743     then
1744       dnl  The given directory can't be found
1745       AC_MSG_RESULT(no)
1746       AC_MSG_ERROR([cannot cd to ${real_dv_avc1394_tree}])
1747     fi
1748     if test -f "${real_dv_avc1394_tree}/src/.libs/libavc1394.a"
1749     then
1750       dnl  Use a custom libavc1394
1751       AC_MSG_RESULT(${real_dv_avc1394_tree}/src/.libs/libavc1394.a)
1752       VLC_ADD_LDFLAGS([access_dv],[-L${real_dv_avc1394_tree}/src/.libs -lavc1394 -lrom1394 -lpthread])
1753       VLC_ADD_CPPFLAGS([access_dv],[-I${real_dv_avc1394_tree}])
1754     else
1755       dnl  The given libavc1394 wasn't built
1756       AC_MSG_RESULT(no)
1757       AC_MSG_ERROR([cannot find ${real_dv_avc1394_tree}/src/.libs/libavc1394.a, make sure you compiled libavc1394 in ${with_dv_avc1394_tree}])
1758     fi
1759   fi
1760 fi
1761
1762 dnl
1763 dnl dvdread module: check for libdvdread
1764 dnl
1765 AC_ARG_ENABLE(dvdread,
1766 [  --enable-dvdread        dvdread input module (default disabled)])
1767 if test "${enable_dvdread}" != "no"
1768 then
1769   AC_ARG_WITH(dvdread,
1770   [    --with-dvdread=PATH   libdvdread headers and libraries])
1771   AC_ARG_WITH(dvdread-tree,
1772   [    --with-dvdread-tree=PATH libdvdread tree for static linking])
1773
1774   dnl Temporary hack (yeah, sure ;)
1775   if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
1776       VLC_ADD_LDFLAGS([dvdread],[-ldvdcss])
1777   fi
1778
1779   if test -z "${with_dvdread}"
1780   then
1781     if test -z "${with_dvdread_tree}"
1782     then
1783       AC_CHECK_HEADERS(dvdread/dvd_reader.h,
1784         [ VLC_ADD_PLUGINS([dvdread])
1785           VLC_ADD_LDFLAGS([dvdread],[-ldvdread ${LDFLAGS_dvdcss}])
1786         ],[
1787           if test -n "${enable_dvdread}"
1788           then
1789             AC_MSG_ERROR([cannot find libdvdread headers])
1790           fi
1791         ])
1792     else
1793       AC_MSG_CHECKING(for libdvdread.a in ${with_dvdread_tree})
1794       real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`"
1795       if test -z "${real_dvdread_tree}"
1796       then
1797         dnl  The given directory can't be found
1798         AC_MSG_RESULT(no)
1799         AC_MSG_ERROR([cannot cd to ${with_dvdread_tree}])
1800       fi
1801       if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a"
1802       then
1803         dnl  Use a custom libdvdread
1804         AC_MSG_RESULT(${real_dvdread_tree}/dvdread/.libs/libdvdread.a)
1805         VLC_ADD_BUILTINS([dvdread])
1806         VLC_ADD_LDFLAGS([dvdread],[-L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LDFLAGS_dvdcss}])
1807         VLC_ADD_CPPFLAGS([dvdread],[-I${real_dvdread_tree}])
1808       else
1809         dnl  The given libdvdread wasn't built
1810         AC_MSG_RESULT(no)
1811         AC_MSG_ERROR([cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}])
1812       fi
1813     fi
1814   else
1815     AC_MSG_CHECKING(for dvdread headers in ${with_dvdread})
1816     if test -f ${with_dvdread}/include/dvdread/dvd_reader.h
1817     then
1818       dnl  Use ${with_dvdread}/include/dvdread/dvd_reader.h
1819       AC_MSG_RESULT(yes)
1820       VLC_ADD_PLUGINS([dvdread])
1821       VLC_ADD_LDFLAGS([dvdread],[-L${with_dvdread}/lib -ldvdread ${LDFLAGS_dvdcss}])
1822       VLC_ADD_CPPFLAGS([dvdread],[-I${with_dvdread}/include])
1823     else
1824       dnl  No libdvdread could be found, sorry
1825       AC_MSG_RESULT(no)
1826       AC_MSG_ERROR([cannot find ${with_dvdread}/include/dvdread/dvd_reader.h])
1827     fi
1828   fi
1829 fi
1830
1831 dnl
1832 dnl  libdvdnav plugin
1833 dnl
1834 AC_ARG_ENABLE(dvdnav,
1835   [  --enable-dvdnav         dvdnav input module (default enabled)])
1836 if test "${enable_dvdnav}" != "no"
1837 then
1838   dnl Same hack than dvdread
1839   if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
1840       VLC_ADD_LDFLAGS([dvdnav],[-ldvdcss])
1841   fi
1842
1843   DVDNAV_PATH="${PATH}"
1844   AC_ARG_WITH(dvdnav-config-path,
1845     [    --with-dvdnav-config-path=PATH dvdnav-config path (default search in \$PATH)],
1846     [ if test "${with_dvdnav_config_path}" != "no"
1847       then
1848         DVDNAV_PATH="${with_dvdnav_config_path}:${PATH}"
1849       fi ])
1850   AC_PATH_PROG(DVDNAV_CONFIG, dvdnav-config, no, ${DVDNAV_PATH})
1851   if test "${DVDNAV_CONFIG}" != "no"
1852   then
1853     VLC_ADD_PLUGINS([dvdnav])
1854     VLC_ADD_CFLAGS([dvdnav],[`${DVDNAV_CONFIG} --cflags`])
1855     VLC_ADD_LDFLAGS([dvdnav],[`${DVDNAV_CONFIG} --libs`])
1856   fi
1857 fi
1858
1859 dnl
1860 dnl  Windows DirectShow access module
1861 dnl
1862 AC_ARG_ENABLE(dshow,
1863   [  --enable-dshow          Win32 DirectShow support (default enabled on Win32)])
1864 if test "${enable_dshow}" != "no"
1865 then
1866   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
1867   then
1868     AC_LANG_PUSH(C++)
1869       AC_CHECK_HEADERS(dshow.h,
1870       [ VLC_ADD_PLUGINS([dshow])
1871         VLC_ADD_CXXFLAGS([dshow],[])
1872         VLC_ADD_LDFLAGS([dshow],[-lole32 -loleaut32 -luuid]) ])
1873     AC_LANG_POP(C++)
1874   fi
1875 fi
1876
1877
1878 dnl
1879 dnl  OpenCV wrapper and example filters
1880 dnl
1881 AC_ARG_ENABLE(opencv,
1882   [  --enable-opencv            OpenCV (computer vision) filter (default disabled)])
1883 if test "${enable_opencv}" = "yes" -a "${CXX}" != "";
1884 then
1885   AC_ARG_WITH(opencv-tree,
1886   [    --with-opencv-tree=PATH opencv tree for linking])
1887   if test -n "${with_opencv_tree}"
1888   then
1889     if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
1890     then
1891           AC_MSG_CHECKING(for opencv in ${with_opencv_tree})
1892           if test -f ${with_opencv_tree}/cv/include/cv.h -a -f ${with_opencv_tree}/cxcore/include/cxcore.h \
1893             -a -f ${with_opencv_tree}/cvaux/include/cvaux.h -a -f ${with_opencv_tree}/otherlibs/highgui/highgui.h
1894       then
1895         AC_MSG_RESULT(yes)
1896         VLC_ADD_PLUGINS([opencv_wrapper])
1897         VLC_ADD_LDFLAGS([opencv_wrapper],[-L${with_opencv_tree}/lib -lcv -lcxcore -lcvaux -lhighgui])
1898         VLC_ADD_CFLAGS([opencv_wrapper],[-I${with_opencv_tree}/cv/include -I${with_opencv_tree}/cxcore/include -I${with_opencv_tree}/cvaux/include -I${with_opencv_tree}/otherlibs/highgui])
1899         AC_LANG_PUSH(C++)
1900         VLC_ADD_PLUGINS([opencv_example])
1901         VLC_ADD_LDFLAGS([opencv_example],[-L${with_opencv_tree}/lib -lcv -lcxcore -lcvaux -lhighgui])
1902         VLC_ADD_CXXFLAGS([opencv_example],[-I${with_opencv_tree}/cv/include -I${with_opencv_tree}/cxcore/include -I${with_opencv_tree}/cvaux/include -I${with_opencv_tree}/otherlibs/highgui])
1903         AC_LANG_POP(C++)        
1904           else
1905         dnl  No opencv could be found, sorry
1906         AC_MSG_RESULT(no)
1907         AC_MSG_ERROR([cannot find opencv in ${with_opencv_tree}])
1908           fi
1909     else
1910           AC_MSG_WARN([--enable-opencv currently only works on windows])
1911     fi
1912   fi  
1913 fi
1914
1915
1916 dnl
1917 dnl  libsmbclient plugin
1918 dnl
1919 AC_ARG_ENABLE(smb,
1920   [  --enable-smb            smb input module (default enabled)])
1921 if test "${enable_smb}" != "no"; then
1922   AC_CHECK_HEADERS(libsmbclient.h,
1923     [ VLC_ADD_PLUGINS([access_smb])
1924       VLC_ADD_LDFLAGS([access_smb],[-lsmbclient]) ],
1925     [ if test -n "${enable_smb}"; then
1926         AC_MSG_ERROR([cannot find libsmbclient headers])
1927      fi ])
1928   AC_CHECK_MEMBER([struct _SMBCCTX.close_fn],
1929     AC_DEFINE([HAVE__SMBCCTX_CLOSE_FN], [1], [Define if samba has _SMBCCTX.close_fn]),,
1930     [#include <libsmbclient.h>])
1931 fi
1932
1933 dnl
1934 dnl  libdvbpsi ts demux/mux
1935 dnl
1936 AC_ARG_ENABLE(dvbpsi,
1937   [  --enable-dvbpsi         dvbpsi ts mux and demux module (default enabled)])
1938 if test "${enable_dvbpsi}" != "no"
1939 then
1940   AC_ARG_WITH(dvbpsi,
1941   [    --with-dvbpsi=PATH    libdvbpsi headers and libraries])
1942   AC_ARG_WITH(dvbpsi,
1943   [    --with-dvbpsi-tree=PATH libdvbpsi tree for static linking])
1944   case "${with_dvbpsi}" in
1945   ""|yes)
1946     if test -z "${with_dvbpsi_tree}"
1947     then
1948       AC_CHECK_HEADERS(dvbpsi/dr.h,
1949         [ VLC_ADD_PLUGINS([ts])
1950           if test "${enable_sout}" != "no"; then
1951             VLC_ADD_PLUGINS([mux_ts])
1952           fi
1953           VLC_ADD_LDFLAGS([mux_ts ts dvb],[-ldvbpsi]) ],
1954         [  AC_MSG_WARN([cannot find libdvbpsi headers]) ],
1955         [#if defined( HAVE_STDINT_H )
1956 #   include <stdint.h>
1957 #elif defined( HAVE_INTTYPES_H )
1958 #   include <inttypes.h>
1959 #endif
1960 #include <dvbpsi/dvbpsi.h>
1961 #include <dvbpsi/descriptor.h>
1962 #include <dvbpsi/pat.h>
1963 #include <dvbpsi/pmt.h>])
1964     else
1965       AC_MSG_CHECKING(for libdvbpsi.a in ${with_dvbpsi_tree})
1966       real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
1967       if test -z "${real_dvbpsi_tree}"
1968       then
1969         dnl  The given directory can't be found
1970         AC_MSG_RESULT(no)
1971         AC_MSG_ERROR([cannot cd to ${with_dvbpsi_tree}])
1972       fi
1973       if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
1974       then
1975         dnl  Use a custom libdvbpsi
1976         AC_MSG_RESULT(${real_dvbpsi_tree}/src/.libs/libdvbpsi.a)
1977         VLC_ADD_BUILTINS([ts])
1978         if test "${enable_sout}" != "no"; then
1979           VLC_ADD_BUILTINS([mux_ts])
1980         fi
1981         VLC_ADD_CPPFLAGS([mux_ts ts dvb],[-I${real_dvbpsi_tree}/src])
1982         VLC_ADD_LDFLAGS([mux_ts ts dvb],[${real_dvbpsi_tree}/src/.libs/libdvbpsi.a])
1983       else
1984         dnl  The given libdvbpsi wasn't built
1985         AC_MSG_RESULT(no)
1986         AC_MSG_ERROR([cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}])
1987       fi
1988     fi
1989   ;;
1990   no)
1991     dnl  Compile without dvbpsi
1992   ;;
1993   *)
1994     AC_MSG_CHECKING(for dvbpsi headers in ${with_dvbpsi})
1995     if test -z "${with_dvbpsi}"
1996     then
1997       LDFLAGS_test=""
1998       CPPFLAGS_test=""
1999     else
2000       LDFLAGS_test="-L${with_dvbpsi}/lib"
2001       CPPFLAGS_test="-I${with_dvbpsi}/include"
2002     fi
2003     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}"
2004     AC_CHECK_HEADERS([dvbpsi/dr.h],[
2005       VLC_ADD_PLUGINS([ts])
2006       if test "${enable_sout}" != "no"; then
2007         VLC_ADD_PLUGINS([mux_ts])
2008       fi
2009       VLC_ADD_CPPFLAGS([mux_ts ts dvb],[${CPPFLAGS_test}])
2010       VLC_ADD_LDFLAGS([mux_ts ts dvb],[${LDFLAGS_test} -ldvbpsi])
2011
2012     ],[
2013       if test -n "${enable_dvbpsi}"
2014       then
2015         AC_MSG_ERROR([Could not find libdvbpsi on your system: you may get it from www.videolan.org, you'll need at least version 0.1.1])
2016       fi
2017     ])
2018     CPPFLAGS="${CPPFLAGS_save}"
2019   ;;
2020   esac
2021   AC_CHECK_LIB(dvbpsi, dvbpsi_GenSDTSections, [
2022     AC_DEFINE(HAVE_DVBPSI_SDT, 1, [Define if you have dvbpsi_GenSDTSections.])
2023   ], [], [${LDFLAGS_ts}])
2024
2025 fi
2026
2027 dnl
2028 dnl  Video4Linux plugin
2029 dnl
2030 AC_ARG_ENABLE(v4l,
2031   [  --enable-v4l            Video4Linux input support (default disabled)])
2032 if test "${enable_v4l}" = "yes"
2033 then
2034   AC_ARG_WITH(v4l,
2035     [    --with-v4l=PATH       path to a v4l-enabled kernel tree],[],[])
2036   if test "${with_v4l}" != "no" -a -n "${with_v4l}"
2037   then
2038     VLC_ADD_CPPFLAGS([v4l],[-I${with_v4l}/include])
2039   fi
2040
2041   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l}"
2042   AC_CHECK_HEADERS(linux/videodev.h, [
2043     VLC_ADD_PLUGINS([v4l])
2044   ],[])
2045   CPPFLAGS="${CPPFLAGS_save}"
2046 fi
2047
2048 dnl
2049 dnl  Video4Linux plugin
2050 dnl
2051 AC_ARG_ENABLE(v4l2,
2052   [  --enable-v4l2            Video4Linux2 input support (default disabled)])
2053 if test "${enable_v4l2}" = "yes"
2054 then
2055   AC_ARG_WITH(v4l2,
2056     [    --with-v4l2=PATH       path to a v4l2-enabled kernel tree],[],[])
2057   if test "${with_v4l2}" != "no" -a -n "${with_v4l2}"
2058   then
2059     VLC_ADD_CPPFLAGS([v4l2],[-I${with_v4l2}/include])
2060   fi
2061
2062   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l2}"
2063   AC_CHECK_HEADERS(linux/videodev2.h, [
2064     VLC_ADD_PLUGINS([v4l2])
2065   ],[])
2066   CPPFLAGS="${CPPFLAGS_save}"
2067 fi
2068
2069
2070 dnl
2071 dnl  special access module for Hauppauge PVR cards
2072 dnl
2073 AC_ARG_ENABLE(pvr,
2074   [  --enable-pvr            PVR cards access module (default disabled)])
2075 if test "${enable_pvr}" = "yes"
2076 then
2077   VLC_ADD_PLUGINS([pvr])
2078 fi
2079
2080 dnl
2081 dnl  gnomeVFS access module
2082 dnl
2083 AC_ARG_ENABLE(gnomevfs,
2084   [  --enable-gnomevfs       GnomeVFS access module (default enabled)])
2085 if test "${enable_gnomevfs}" != "no" 
2086 then
2087   PKG_CHECK_MODULES(GNOMEVFS, gnome-vfs-2.0,
2088     VLC_ADD_LDFLAGS([access_gnomevfs],[$GNOMEVFS_LIBS])
2089     VLC_ADD_CPPFLAGS([access_gnomevfs],[$GNOMEVFS_CPPFLAGS])
2090     VLC_ADD_CFLAGS([access_gnomevfs],[$GNOMEVFS_CFLAGS])
2091     VLC_ADD_PLUGINS([access_gnomevfs]),
2092     AC_MSG_WARN([GnomeVFS support disabled because GnomeVFS development headers not found]))
2093 fi
2094
2095 dnl Need to test libcdio and libvcdinfo for a number of things. Do it now.
2096 AC_ARG_ENABLE(libcdio,
2097   [  --enable-libcdio        CD input and control library support (default enabled)])
2098
2099
2100 have_libcdio=no
2101 have_libvcdinfo=no
2102 if test "${enable_libcdio}" != "no"
2103 then
2104   PKG_CHECK_MODULES(LIBCDIO, libcdio >= 0.72,
2105      have_libcdio=yes
2106      AC_DEFINE(HAVE_LIBCDIO, [], 
2107      [Define if you have libcdio 0.72 or greater installed]),
2108      [AC_MSG_WARN(CD Reading and information library not found)])
2109
2110   PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.21,
2111      [have_libvcdinfo=yes
2112      AC_DEFINE(HAVE_VCDINFO, [], 
2113      [Define if you have libvcdinfo 0.7.21 or greater installed])],
2114      [AC_MSG_WARN(VCD information library not found)])
2115 fi
2116
2117 dnl
2118 dnl  VCDX and CDDAX modules
2119 dnl
2120 AC_ARG_ENABLE(cddax,
2121   [  --enable-cddax          audio CD plugin with CD Text and CD paranoia via libcdio (default disabled)])
2122  
2123 AC_ARG_ENABLE(libcddb,
2124   [  --enable-libcddb        CDDB support for libcdio audio CD (default enabled)])
2125  
2126 if test "${enable_cddax}" = "yes"
2127 then
2128   if test "$have_libcdio" = "yes"
2129   then
2130     AC_DEFINE(HAVE_CDDAX, [], [Define for the audio CD plugin using libcdio])
2131     VLC_ADD_LDFLAGS([cddax],[$LIBCDIO_LIBS])
2132     VLC_ADD_CFLAGS([cddax],[$LIBCDIO_CFLAGS])
2133     VLC_ADD_PLUGINS([cddax])
2134     PKG_CHECK_MODULES(LIBCDIO_PARANOIA, libcdio_paranoia >= 0.72, [
2135     VLC_ADD_LDFLAGS([cddax],[$LIBCDIO_CDDA_LIBS $LIBCDIO_CDDA_LIBS $LIBCDIO_PARANOIA_LIBS])],
2136     AC_MSG_WARN([CD Paranoia support disabled because no libcdio >= 0.72 found]))
2137   else 
2138     AC_MSG_WARN([cddax plugin disabled because ok libcdio library not found or disabled])
2139     HAVE_CDDAX=no
2140   fi
2141
2142   if test "$enable_libcddb" != "no"; then
2143     PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.5, [
2144       HAVE_LIBCDDB=yes 
2145       AC_DEFINE(HAVE_LIBCDDB, [], [Define this if you have libcddb installed])
2146       VLC_ADD_LDFLAGS([cddax],[$LIBCDDB_LIBS])
2147       VLC_ADD_CFLAGS([cddax],[$LIBCDDB_CFLAGS])
2148       ],
2149       [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled) 
2150       HAVE_LIBCDDB=no])
2151   fi
2152  
2153 fi
2154
2155 AC_ARG_ENABLE(vcdx,
2156   [  --enable-vcdx           VCD with navigation via libvcdinfo (default disabled)])
2157  
2158 if test "${enable_vcdx}" = "yes"
2159 then
2160   if test "${have_libvcdinfo}" = "yes"
2161   then
2162     VLC_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
2163     VLC_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
2164   else 
2165     AC_MSG_WARN([vcdx plugin disabled because ok libvcdinfo library not found or disabled])
2166     HAVE_VCDX=no
2167   fi
2168
2169   PKG_CHECK_MODULES(LIBCDIO, libiso9660 >= 0.72,
2170    [VLC_ADD_LDFLAGS([vcdx],[$LIBISO9660_LIBS])
2171     VLC_ADD_CFLAGS([vcdx],[$LIBISO9660_CFLAGS])],
2172     [AC_MSG_WARN([vcdx plugin disabled because ok libiso9660 library not found])
2173     HAVE_VCDX=no])
2174
2175   if test "$have_libvcdinfo" = "yes"
2176   then
2177     AC_DEFINE(HAVE_VCDX, [], 
2178     [Define for the VCD plugin using libcdio/libvcdinfo])
2179     VLC_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
2180     VLC_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
2181     VLC_ADD_PLUGINS([vcdx])
2182   else 
2183     AC_MSG_WARN([vcdx plugin disabled because ok libvcdinfo library not found])
2184     HAVE_VCDX=no
2185   fi
2186 fi
2187
2188 dnl
2189 dnl  Built-in CD-DA and VCD module
2190 dnl
2191 AC_ARG_ENABLE(cdda,           
2192   [  --enable-cdda           audio CD via built-in VCD (default enabled)])
2193  
2194 AC_ARG_ENABLE(vcd,
2195   [  --enable-vcd            built-in VCD (default enabled)])
2196
2197 if test "${enable_vcd}" != "no"
2198 then
2199   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
2200   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
2201     AC_MSG_RESULT(yes)
2202     VLC_ADD_PLUGINS([vcd cdda])
2203   ],[
2204     AC_MSG_RESULT(no)
2205   ])
2206
2207   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
2208   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
2209     AC_MSG_RESULT(yes)
2210     VLC_ADD_PLUGINS([vcd cdda])
2211     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
2212   ],[
2213     AC_MSG_RESULT(no)
2214   ])
2215
2216   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
2217   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
2218     AC_MSG_RESULT(yes)
2219     VLC_ADD_PLUGINS([vcd cdda])
2220     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
2221   ],[
2222     AC_MSG_RESULT(no)
2223   ])
2224
2225   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32"
2226   then
2227     VLC_ADD_PLUGINS([vcd cdda])
2228   fi
2229
2230   if test "${SYS}" = "darwin"
2231   then
2232     VLC_ADD_PLUGINS([vcd cdda])
2233     VLC_ADD_LDFLAGS([vcd vcdx cdda cddax],[-framework IOKit -framework CoreFoundation])
2234     VLC_ADD_LDFLAGS([vcdx cddax cdda],[-liconv])
2235   fi
2236
2237   if test "$enable_libcddb" != "no"; then
2238     PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.5, [
2239       HAVE_LIBCDDB=yes 
2240       AC_DEFINE(HAVE_LIBCDDB, [], [Define this if you have libcddb installed])
2241       VLC_ADD_LDFLAGS([cdda],[$LIBCDDB_LIBS])
2242       VLC_ADD_CFLAGS([cdda],[$LIBCDDB_CFLAGS])
2243       ],:
2244       [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled) 
2245       HAVE_LIBCDDB=no])
2246   fi
2247 fi
2248
2249 dnl
2250 dnl  DVB-S/DVB-T/DVB-C satellite/teresterial/cable input using v4l2
2251 dnl
2252 AC_ARG_ENABLE(dvb,
2253   [  --enable-dvb            DVB-S/T/C card support (default disabled)])
2254
2255 if test "${enable_dvb}" = "yes"
2256 then
2257   AC_ARG_WITH(dvb,
2258   [    --with-dvb=PATH       path to a dvb- and v4l2-enabled kernel tree],[],[])
2259   if test "${with_dvb}" != "no" -a -n "${with_dvb}"
2260   then
2261     VLC_ADD_CFLAGS([dvb],[-I${with_dvb}/include])
2262   fi
2263   CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include"
2264   AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [
2265     if test -z "${with_dvbpsi_tree}"
2266     then
2267       VLC_ADD_PLUGINS([dvb])
2268     else
2269       VLC_ADD_BUILTINS([dvb])
2270     fi
2271   ],[AC_MSG_WARN(linux-dvb headers not found, dvb disabled)])
2272   CPPFLAGS="${CPPFLAGS_save}"
2273 fi
2274
2275 dnl
2276 dnl  Screen capture module
2277 dnl
2278 AC_ARG_ENABLE(screen,
2279   [  --enable-screen         Screen capture support (default enabled)])
2280 if test "${enable_screen}" != "no"; then
2281   if test "${SYS}" = "darwin"; then
2282     AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
2283       VLC_ADD_PLUGINS([screen])
2284       VLC_ADD_LDFLAGS([screen],[-framework ApplicationServices])
2285     ])
2286   elif test "${SYS}" = "mingw32"; then
2287     VLC_ADD_PLUGINS([screen])
2288     VLC_ADD_LDFLAGS([screen],[-lgdi32])
2289   elif test "${SYS}" = "mingwce"; then
2290     CPPFLAGS="${CPPFLAGS_save}"
2291   elif test "${SYS}" = "beos"; then
2292     VLC_ADD_PLUGINS([screen])
2293     VLC_ADD_CXXFLAGS([screen],[])
2294     VLC_ADD_LDFLAGS([screen],[-lbe])
2295   else
2296     CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
2297     AC_CHECK_HEADERS(X11/Xlib.h, [
2298       VLC_ADD_PLUGINS([screen])
2299       VLC_ADD_LDFLAGS([screen],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext])
2300       VLC_ADD_CPPFLAGS([screen],[${X_CFLAGS}])
2301     ])
2302     CPPFLAGS="${CPPFLAGS_save}"
2303   fi
2304 fi
2305
2306 dnl
2307 dnl  ipv6 plugin - not for QNX yet
2308 dnl
2309 have_ipv6=no
2310 AC_CHECK_FUNCS(inet_pton,[have_ipv6=yes],[
2311   AC_CHECK_LIB(nsl,inet_pton, [have_ipv6=yes])
2312 ])
2313
2314 AS_IF([test "${have_ipv6}" = "yes"], [
2315   AC_DEFINE(HAVE_INET_PTON, 1, [Define to 1 if you have inet_pton().])])
2316
2317 if test "${SYS}" != "nto" &&
2318    test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
2319 then
2320   AC_MSG_CHECKING(for sockaddr_in6 in netinet/in.h)
2321   AC_EGREP_HEADER(sockaddr_in6,netinet/in.h,
2322     [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no); have_ipv6=no])
2323   AS_IF([test "${have_ipv6}" != "no"], [
2324     VLC_ADD_PLUGINS([ipv6])])
2325 fi
2326 if test "${SYS}" = "mingw32"
2327 then
2328   AC_MSG_CHECKING(for getaddrinfo in ws2tcpip.h)
2329   AC_EGREP_HEADER(addrinfo,ws2tcpip.h,[AC_MSG_RESULT(yes)
2330     VLC_ADD_PLUGINS([ipv6])],[AC_MSG_RESULT(no)])
2331 fi
2332
2333 dnl
2334 dnl  ogg demux plugin
2335 dnl
2336 AC_ARG_ENABLE(ogg,
2337   [  --enable-ogg            Ogg demux support (default enabled)])
2338 if test "${enable_ogg}" != "no"
2339 then
2340   AC_ARG_WITH(ogg-tree,
2341   [    --with-ogg-tree=PATH  ogg tree for static linking])
2342   if test -n "${with_ogg_tree}"
2343   then
2344     AC_MSG_CHECKING(for libogg.a in ${with_ogg_tree})
2345     real_ogg_tree="`cd ${with_ogg_tree} 2>/dev/null && pwd`"
2346     if test -z "${real_ogg_tree}"
2347     then
2348       dnl  The given directory can't be found
2349       AC_MSG_RESULT(no)
2350       AC_MSG_ERROR([cannot cd to ${with_ogg_tree}])
2351     fi
2352     if test -f "${real_ogg_tree}/src/.libs/libogg.a"
2353     then
2354       dnl  Use a custom ogg
2355       AC_MSG_RESULT(${real_ogg_tree}/src/.libs/libogg.a)
2356       VLC_ADD_PLUGINS([ogg])
2357       if test "${enable_sout}" != "no"; then
2358         VLC_ADD_PLUGINS([mux_ogg])
2359       fi
2360       VLC_ADD_LDFLAGS([ogg mux_ogg speex vorbis],[${real_ogg_tree}/src/.libs/libogg.a])
2361       VLC_ADD_CFLAGS([ogg mux_ogg speex vorbis],[-I${real_ogg_tree}/include])
2362     else
2363       dnl  The given ogg wasn't built
2364       AC_MSG_RESULT(no)
2365       AC_MSG_ERROR([cannot find ${real_ogg_tree}/src/.libs/libogg.a, make sure you compiled ogg in ${with_ogg_tree}])
2366     fi
2367   else
2368     AC_CHECK_HEADERS(ogg/ogg.h, [
2369       AC_CHECK_LIB( ogg, oggpack_read, [
2370         VLC_ADD_PLUGINS([ogg])
2371         if test "${enable_sout}" != "no"; then
2372           VLC_ADD_PLUGINS([mux_ogg])
2373         fi
2374         VLC_ADD_LDFLAGS([ogg mux_ogg],[-logg])])
2375      ],[])
2376   fi
2377 fi
2378
2379 dnl
2380 dnl  matroska demux plugin
2381 dnl
2382 AC_ARG_ENABLE(mkv,
2383   [  --enable-mkv            Matroska demux support (default enabled)])
2384 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
2385   AC_LANG_PUSH(C++)
2386   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
2387     AC_MSG_CHECKING(for libebml version >= 0.7.6)
2388     AC_EGREP_CPP(yes,
2389       [#include <ebml/EbmlVersion.h>
2390        #ifdef LIBEBML_VERSION
2391        #if LIBEBML_VERSION >= 0x000706
2392        yes
2393        #endif
2394        #endif],
2395       [AC_MSG_RESULT([yes])
2396         AC_CHECK_HEADERS(matroska/KaxVersion.h, [
2397           AC_MSG_CHECKING(for libmatroska version >= 0.7.5)
2398           AC_EGREP_CPP(yes,
2399             [#include <matroska/KaxVersion.h>
2400              #ifdef LIBMATROSKA_VERSION
2401              #if LIBMATROSKA_VERSION >= 0x000705
2402              yes
2403              #endif
2404              #endif],
2405             [AC_MSG_RESULT([yes])
2406               AC_CHECK_HEADERS(matroska/KaxAttachments.h)
2407               VLC_ADD_CXXFLAGS([mkv],[])
2408               if test "${SYS}" = "darwin"; then
2409                 VLC_ADD_CXXFLAGS([mkv],[-O1])
2410               fi
2411               AC_CHECK_LIB(ebml_pic, main, [
2412                 # We have ebml_pic, that's good, we can build an mkv.so plugin !
2413                 VLC_ADD_PLUGINS([mkv])
2414                 VLC_ADD_LDFLAGS([mkv],[-lmatroska_pic -lebml_pic])
2415               ], [
2416                 AC_CHECK_LIB(ebml, main, [
2417                   # We only have libebml, make mkv.a a builtin
2418                   VLC_ADD_BUILTINS([mkv])
2419                   VLC_ADD_LDFLAGS([mkv],[-lmatroska -lebml])
2420                 ])
2421               ])
2422             ],
2423             [AC_MSG_RESULT([no])
2424               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.])
2425           ])
2426         ])
2427       ],
2428       [AC_MSG_RESULT([no])
2429         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.])
2430     ])
2431   ])
2432   AC_LANG_POP(C++)
2433 fi
2434
2435 dnl
2436 dnl  modplug demux plugin
2437 dnl
2438 AC_ARG_ENABLE(mod,
2439   [  --enable-mod            Mod demux support (default enabled)])
2440 if test "${enable_mod}" != "no"
2441 then
2442   AC_ARG_WITH(mod-tree,
2443   [    --with-mod-tree=PATH mod tree for static linking])
2444   if test -n "${with_mod_tree}"
2445   then
2446     AC_MSG_CHECKING(for libmodplug.a in ${with_mod_tree})
2447     real_mod_tree="`cd ${with_mod_tree} 2>/dev/null && pwd`"
2448     if test -z "${real_mod_tree}"
2449     then
2450       dnl  The given directory can't be found
2451       AC_MSG_RESULT(no)
2452       AC_MSG_ERROR([cannot cd to ${with_mod_tree}])
2453     fi
2454     if test -f "${real_mod_tree}/src/.libs/libmodplug.a"
2455     then
2456       dnl  Use a custom mod
2457       AC_MSG_RESULT(${real_mod_tree}/src/.libs/libmodplug.a)
2458       VLC_ADD_PLUGINS([mod])
2459       VLC_ADD_LDFLAGS([mod],[${real_mod_tree}/src/.libs/libmodplug.a])
2460       VLC_ADD_CFLAGS([mod],[-I${real_mod_tree}/include])
2461     else
2462       dnl  The given mod wasn't built
2463       AC_MSG_RESULT(no)
2464       AC_MSG_ERROR([cannot find ${real_mod_tree}/src/.libs/libmodplug.a, make sure you compiled mod in ${with_mod_tree}])
2465     fi
2466   else
2467     AC_CHECK_HEADERS(libmodplug/modplug.h, [
2468       VLC_ADD_PLUGINS([mod])
2469       VLC_ADD_CXXFLAGS([mod],[])
2470       VLC_ADD_LDFLAGS([mod],[-lmodplug])])
2471   fi
2472 fi
2473
2474 dnl
2475 dnl  mpc demux plugin
2476 dnl
2477 AC_ARG_ENABLE(mpc,
2478   [  --enable-mpc            Mpc demux support (default enabled)])
2479 if test "${enable_mpc}" != "no"
2480 then
2481   AC_CHECK_HEADERS(mpcdec/mpcdec.h, [
2482     VLC_ADD_PLUGINS([mpc])
2483     VLC_ADD_LDFLAGS([mpc],[-lmpcdec])])
2484 fi
2485
2486 dnl
2487 dnl  game music emu demux plugin
2488 dnl
2489 AC_ARG_ENABLE(gme,
2490   [  --enable-gme            Game Music Emu demux support (default enabled)])
2491 if test "${enable_gme}" != "no" -a "${CXX}" != "";
2492 then
2493   AC_LANG_PUSH(C++)
2494   AC_ARG_WITH(gme-tree,
2495   [    --with-gme-tree=PATH gme tree for static linking])
2496   if test -n "${with_gme_tree}"
2497   then
2498     AC_MSG_CHECKING(for libgme.a in ${with_mod_tree})
2499     real_gme_tree="`cd ${with_gme_tree} 2>/dev/null && pwd`"
2500     if test -z "${real_gme_tree}"
2501     then
2502       dnl  The given directory can't be found
2503       AC_MSG_RESULT(no)
2504       AC_MSG_ERROR([cannot cd to ${with_gme_tree}])
2505     fi
2506     if test -f "${real_gme_tree}/gme/libgme.a"
2507     then
2508       dnl  Use a custom gme
2509       AC_MSG_RESULT(${real_gme_tree}/gme/libgme.a)
2510       VLC_ADD_PLUGINS([gme])
2511       VLC_ADD_LDFLAGS([gme],[${real_gme_tree}/gme/libgme.a])
2512       VLC_ADD_CXXFLAGS([gme],[-I${real_gme_tree}/gme])
2513     else
2514       dnl  The given gme wasn't built
2515       AC_MSG_RESULT(no)
2516       AC_MSG_ERROR([cannot find ${real_mod_tree}/gme/libgme.a, make sure you compiled gme in ${with_gme_tree}])
2517     fi
2518   else
2519       AC_MSG_WARN([only static linking is available, you must provide a gme-tree])
2520   fi
2521   AC_LANG_POP(C++)
2522 fi
2523
2524 dnl
2525 dnl  Codec plugins
2526 dnl
2527
2528 AC_ARG_WITH(,[Codec plugins:])
2529
2530 dnl
2531 dnl  mad plugin
2532 dnl
2533 AC_ARG_ENABLE(mad,
2534   [  --enable-mad            libmad module (default enabled)])
2535 if test "${enable_mad}" != "no"
2536 then
2537   AC_ARG_WITH(mad,
2538     [    --with-mad=PATH       path to libmad],[],[])
2539   if test "${with_mad}" != "no" -a -n "${with_mad}"
2540   then
2541     VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
2542     VLC_ADD_LDFLAGS([mpgatofixed32],[-L${with_mad}/lib])
2543   fi
2544
2545   AC_ARG_WITH(mad-tree,
2546     [    --with-mad-tree=PATH   mad tree for static linking],[],[])
2547   if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
2548   then
2549     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
2550     if test -z "${real_mad_tree}"
2551     then
2552       dnl  The given directory can't be found
2553       AC_MSG_RESULT(no)
2554       AC_MSG_ERROR([${with_mad_tree} directory doesn't exist])
2555     fi
2556     dnl  Use a custom libmad
2557     AC_MSG_CHECKING(for mad.h in ${real_mad_tree})
2558     if test -f ${real_mad_tree}/mad.h
2559     then
2560       AC_MSG_RESULT(yes)
2561       VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}])
2562       VLC_ADD_LDFLAGS([mpgatofixed32],[-L${real_mad_tree}/.libs])
2563       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
2564       AC_CHECK_LIB(mad, mad_bit_init, [
2565         VLC_ADD_BUILTINS([mpgatofixed32])
2566         VLC_ADD_LDFLAGS([mpgatofixed32],[-lmad])
2567         ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ])
2568       ],[])
2569       LDFLAGS="${LDFLAGS_save}"
2570     else
2571       AC_MSG_RESULT(no)
2572       AC_MSG_ERROR([the specified tree doesn't have mad.h])
2573     fi
2574   else
2575     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}"
2576     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
2577     AC_CHECK_HEADERS(mad.h, ,
2578       [ 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.]) ])
2579     AC_CHECK_LIB(mad, mad_bit_init, [
2580       VLC_ADD_PLUGINS([mpgatofixed32])
2581       VLC_ADD_LDFLAGS([mpgatofixed32],[-lmad])],
2582       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
2583     CPPFLAGS="${CPPFLAGS_save}"
2584     LDFLAGS="${LDFLAGS_save}"
2585   fi
2586 fi
2587
2588 dnl
2589 dnl   libid3tag support (FIXME!!! doesn't work with new input)
2590 dnl
2591 AC_CHECK_HEADERS(id3tag.h, [
2592   AC_CHECK_HEADERS(zlib.h, [
2593     VLC_ADD_LDFLAGS([id3tag],[-lid3tag -lz])
2594     VLC_ADD_PLUGINS([id3tag])]) ])
2595
2596 dnl
2597 dnl  ffmpeg decoder/demuxer plugin
2598 dnl
2599 dnl we try to find ffmpeg using : 1- given tree 2- ffmpeg-config, 3- pkg-config
2600 dnl                             4- default place, 
2601
2602 AC_ARG_ENABLE(ffmpeg,
2603 [  --enable-ffmpeg         ffmpeg codec (default enabled)])
2604 if test "${enable_ffmpeg}" != "no"
2605 then
2606
2607 dnl Those options have to be here because the .pc can be bogus for ffmpeg previous nov 05
2608
2609  AC_ARG_WITH(ffmpeg-mp3lame,
2610    [    --with-ffmpeg-mp3lame specify if ffmpeg has been compiled with mp3lame support],
2611    [
2612      if test "$with_ffmpeg_mp3lame" = "yes";    then
2613         VLC_ADD_LDFLAGS([ffmpeg],[-lmp3lame])
2614      fi])
2615
2616  AC_ARG_WITH(ffmpeg-faac,
2617    [    --with-ffmpeg-faac    specify if ffmpeg has been compiled with faac support],
2618    [
2619      if test "$with_ffmpeg_faac" = "yes"; then
2620         VLC_ADD_LDFLAGS([ffmpeg],[-lfaac])
2621      fi])
2622
2623  AC_ARG_WITH(ffmpeg-dts,
2624    [    --with-ffmpeg-dts     specify if ffmpeg has been compiled with dts support],
2625    [
2626      if test "$with_ffmpeg_dts" = "yes"; then
2627              LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
2628              AC_CHECK_LIB(dts_pic, dts_free, 
2629                [ VLC_ADD_LDFLAGS([ffmpeg],[-ldts_pic]) ],
2630                [ VLC_ADD_LDFLAGS([ffmpeg],[-ldts]) ])
2631              LDFLAGS="${LDFLAGS_save}"
2632      fi])
2633
2634  AC_ARG_WITH(ffmpeg-vorbis,
2635    [    --with-ffmpeg-vorbis    specify if ffmpeg has been compiled with vorbis support],
2636    [
2637      if test "$with_ffmpeg_vorbis" = "yes"; then
2638         VLC_ADD_LDFLAGS([ffmpeg],[-lvorbisenc -lvorbis])
2639      fi])
2640
2641  AC_ARG_WITH(ffmpeg-theora,
2642    [    --with-ffmpeg-theora    specify if ffmpeg has been compiled with theora support],
2643    [
2644      if test "$with_ffmpeg_theora" = "yes"; then
2645         VLC_ADD_LDFLAGS([ffmpeg],[-ltheora])
2646      fi])
2647
2648  AC_ARG_WITH(ffmpeg-ogg,
2649    [    --with-ffmpeg-ogg    specify if ffmpeg has been compiled with ogg support],
2650    [
2651      if test "$with_ffmpeg_ogg" = "yes"; then
2652         VLC_ADD_LDFLAGS([ffmpeg],[-logg])
2653      fi])
2654
2655  AC_ARG_WITH(ffmpeg-zlib,
2656    [    --with-ffmpeg-zlib    specify if ffmpeg has been compiled with zlib support],
2657    [
2658      if test "$with_ffmpeg_zlib" = "yes"; then
2659                 VLC_ADD_LDFLAGS([ffmpeg],[-lz])
2660      fi])
2661
2662  dnl
2663  dnl test for --with-ffmpeg-tree
2664  dnl
2665  AC_ARG_WITH(ffmpeg-tree,
2666    [    --with-ffmpeg-tree=PATH ffmpeg tree for static linking])
2667
2668  if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
2669    AC_MSG_CHECKING(for libavcodec.a in ${with_ffmpeg_tree})
2670    real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
2671    if test -z "${real_ffmpeg_tree}"; then
2672      dnl  The given directory can't be found
2673      AC_MSG_RESULT(no)
2674      AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
2675    fi
2676    if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
2677      dnl  The given libavcodec wasn't built
2678      AC_MSG_RESULT(no)
2679      AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}])
2680    fi
2681    if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
2682      if test -f "${real_ffmpeg_tree}/libavcodec/libpostproc/libpostproc.a"; then
2683        VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavcodec/libpostproc ${real_ffmpeg_tree}/libavcodec/libpostproc/libpostproc.a])        
2684      elif test -f "${real_ffmpeg_tree}/libpostproc/libpostproc.a"; then 
2685         VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libpostproc ${real_ffmpeg_tree}/libpostproc/libpostproc.a])
2686         VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}])
2687      else
2688        dnl  The given libavcodec wasn't built with --enable-pp
2689        AC_MSG_RESULT(no)
2690        AC_MSG_ERROR([cannot find libpostproc.a in ${real_ffmpeg_tree}/[libavcodec/]libpostproc/. Make sure you configured ffmpeg with --enable-pp])
2691      fi
2692    fi
2693    dnl  Use a custom libffmpeg
2694    AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodec.a)
2695
2696    if fgrep -s "CONFIG_ZLIB=yes" "${real_ffmpeg_tree}/config.mak"; then
2697      if test "${with_ffmpeg_zlib}" != "yes"; then
2698        VLC_ADD_LDFLAGS([ffmpeg],[-lz])
2699      fi
2700    fi
2701    if fgrep -s "CONFIG_MP3LAME=yes" "${real_ffmpeg_tree}/config.mak"; then
2702      if test "${with_ffmpeg_mp3lame}" != "yes"; then
2703        VLC_ADD_LDFLAGS([ffmpeg],[-lmp3lame])
2704      fi
2705    fi
2706    if fgrep -s "CONFIG_FAAC=yes" "${real_ffmpeg_tree}/config.mak"; then
2707      if test "${with_ffmpeg_faac}" != "yes"; then
2708        VLC_ADD_LDFLAGS([ffmpeg],[-lfaac])
2709      fi
2710    fi
2711    if fgrep -s "CONFIG_DTS=yes" "${real_ffmpeg_tree}/config.mak"; then
2712      if test "${with_ffmpeg_dts}" != "yes"; then
2713        LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
2714        AC_CHECK_LIB(dts_pic, dts_free, 
2715          [ VLC_ADD_LDFLAGS([ffmpeg],[-ldts_pic]) ],
2716          [ VLC_ADD_LDFLAGS([ffmpeg],[-ldts]) ])
2717        LDFLAGS="${LDFLAGS_save}"
2718      fi
2719    fi
2720    if fgrep -s "CONFIG_VORBIS=yes" "${real_ffmpeg_tree}/config.mak"; then
2721      VLC_ADD_LDFLAGS([ffmpeg],[-lvorbis -lvorbisenc])
2722    fi
2723    if fgrep -s "CONFIG_FAAD=yes" "${real_ffmpeg_tree}/config.mak"; then
2724      VLC_ADD_LDFLAGS([ffmpeg],[-lfaad])
2725    fi
2726    if fgrep -s "CONFIG_XVID=yes" "${real_ffmpeg_tree}/config.mak"; then
2727      VLC_ADD_LDFLAGS([ffmpeg],[-lxvidcore])
2728    fi
2729
2730    VLC_ADD_BUILTINS([ffmpeg])
2731    if test "${enable_sout}" != "no"; then
2732      VLC_ADD_BUILTINS([stream_out_switcher])
2733    fi
2734
2735    if test -f "${real_ffmpeg_tree}/libavutil/libavutil.a"; then
2736      VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavutil ${real_ffmpeg_tree}/libavutil/libavutil.a])
2737      VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavutil])
2738    fi
2739
2740    VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavcodec ${real_ffmpeg_tree}/libavcodec/libavcodec.a])
2741    VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavcodec])
2742
2743    if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
2744      AC_DEFINE(HAVE_LIBAVFORMAT_TREE, 1, [Define if you have ffmpeg's libavformat.])
2745      VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavformat ${real_ffmpeg_tree}/libavformat/libavformat.a])
2746      VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavformat])
2747    fi
2748 else    
2749     
2750 dnl Look for a ffmpeg-config (we are on debian )
2751  
2752   FFMPEG_PATH="${PATH}"
2753   AC_ARG_WITH(ffmpeg-config-path,
2754     [    --with-ffmpeg-config-path=PATH ffmpeg-config path (default search in \$PATH)],
2755     [ if test "${with_ffmpeg_config_path}" != "no"
2756       then
2757         FFMPEG_PATH="${with_ffmpeg_config_path}"
2758       fi ])
2759   AC_PATH_PROG(FFMPEG_CONFIG, ffmpeg-config, no, ${FFMPEG_PATH})
2760   if test "${FFMPEG_CONFIG}" != "no"
2761   then
2762     AC_CHECK_HEADERS(ffmpeg/avcodec.h)
2763     AC_CHECK_HEADERS(ffmpeg/avformat.h)
2764     AC_CHECK_HEADERS(ffmpeg/avutil.h)
2765     AC_CHECK_HEADERS(postproc/postprocess.h)
2766     VLC_ADD_PLUGINS([ffmpeg])
2767     if test "${enable_sout}" != "no"; then
2768         VLC_ADD_PLUGINS([stream_out_switcher])
2769     fi
2770     VLC_ADD_CFLAGS([ffmpeg stream_out_switcher],[`${FFMPEG_CONFIG} --cflags`])
2771     VLC_ADD_LDFLAGS([ffmpeg stream_out_switcher],[`${FFMPEG_CONFIG} --plugin-libs avcodec avformat postproc`])
2772  
2773  else
2774
2775 dnl Trying with pkg-config
2776    PKG_CHECK_MODULES(FFMPEG,[libavcodec, libavformat],
2777     [
2778      AC_CHECK_HEADERS(ffmpeg/avcodec.h)
2779      AC_CHECK_HEADERS(ffmpeg/avformat.h)
2780      AC_CHECK_HEADERS(ffmpeg/avutil.h)
2781      AC_CHECK_HEADERS(postproc/postprocess.h)
2782      if test "${SYS}" = "darwin"; then
2783         VLC_ADD_BUILTINS([ffmpeg])
2784      else
2785         VLC_ADD_PLUGINS([ffmpeg])
2786      fi
2787      if test "${enable_sout}" != "no"; then
2788         if test "${SYS}" = "darwin"; then
2789             VLC_ADD_BUILTINS([stream_out_switcher])
2790         else
2791             VLC_ADD_PLUGINS([stream_out_switcher])
2792         fi
2793      fi
2794      VLC_ADD_CFLAGS([ffmpeg stream_out_switcher],[${FFMPEG_CFLAGS}])
2795      VLC_ADD_LDFLAGS([ffmpeg stream_out_switcher],[${FFMPEG_LIBS}])
2796      dnl newer ffmpeg have a separate libpostproc
2797      PKG_CHECK_MODULES(POSTPROC, libpostproc,[
2798        VLC_ADD_LDFLAGS([ffmpeg],[${POSTPROC_LIBS}]) 
2799        ],[ true ])
2800     ],[
2801      
2802     dnl
2803     dnl last chance: at the default place
2804     dnl
2805       CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}"
2806       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
2807       AC_CHECK_HEADERS(ffmpeg/avcodec.h, [], [AC_MSG_ERROR([Missing header file ffmpeg/avcodec.h.])] )
2808       AC_CHECK_HEADERS(ffmpeg/avformat.h)
2809       AC_CHECK_HEADERS(ffmpeg/avutil.h)
2810       AC_CHECK_HEADERS(postproc/postprocess.h, [], [AC_MSG_ERROR([Missing header file postproc/postprocess.h.])] )
2811
2812       AC_CHECK_LIB(avutil, av_crc_init, [
2813         VLC_ADD_LDFLAGS([ffmpeg],[-lavutil])
2814         LDAVUTIL="-lavutil"])
2815
2816       AC_CHECK_LIB(postproc, pp_postprocess, [
2817         VLC_ADD_LDFLAGS([ffmpeg],[-lpostproc])])
2818
2819       AC_CHECK_LIB(avcodec, avcodec_init, [
2820         VLC_ADD_BUILTINS([ffmpeg])
2821         VLC_ADD_LDFLAGS([ffmpeg],[-lavcodec])
2822         if test "${enable_sout}" != "no"; then
2823             VLC_ADD_BUILTINS([stream_out_switcher])
2824         fi],
2825          [ AC_MSG_ERROR([Could not find ffmpeg on your system: you may get it from http://ffmpeg.sf.net/ (svn version is recommended). Alternatively you can use --disable-ffmpeg to disable the ffmpeg plugins.]) ], [$LDAVUTIL])
2826
2827       
2828       AC_CHECK_LIB(avformat, av_open_input_stream, [
2829         VLC_ADD_LDFLAGS([ffmpeg],[-lavformat -lz]) ], [], [-lavcodec -lz $LDAVUTIL])
2830       LDFLAGS="${LDFLAGS_save}"
2831       CPPFLAGS="${CPPFLAGS_save}"
2832     ])
2833   fi
2834  fi 
2835 fi
2836
2837 dnl
2838 dnl  ffmpegaltivec plugin
2839 dnl
2840 AC_ARG_ENABLE(ffmpegaltivec,
2841 [  --enable-ffmpegaltivec  ffmpegaltivec codec (DO NOT USE)])
2842 if test "${enable_ffmpegaltivec}" = "yes"
2843 then
2844   if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
2845     AC_MSG_CHECKING(for libavcodecaltivec.a in ${with_ffmpeg_tree})
2846     real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
2847     if test -z "${real_ffmpeg_tree}"; then
2848       dnl  The given directory can't be found
2849       AC_MSG_RESULT(no)
2850       AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
2851     fi
2852     if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then
2853       dnl  The given libavcodecaltivec wasn't built
2854       AC_MSG_RESULT(no)
2855       AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a, make sure you compiled libavcodecaltivec in ${with_ffmpeg_tree}])
2856     fi
2857     if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then
2858       dnl  The given libavcodecaltivec wasn't built with --enable-pp
2859       AC_MSG_RESULT(no)
2860       AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
2861     fi
2862     dnl  Use a custom libffmpeg
2863     AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a)
2864     VLC_ADD_BUILTINS([ffmpegaltivec])
2865     VLC_ADD_LDFLAGS([ffmpegaltivec],[-L${real_ffmpeg_tree}/libavcodec -lavcodecaltivec])
2866     VLC_ADD_CPPFLAGS([ffmpeg],[-DNO_ALTIVEC_IN_FFMPEG])
2867     VLC_ADD_CPPFLAGS([ffmpegaltivec],[-I${real_ffmpeg_tree}/libavcodec -I${real_ffmpeg_tree}/libavformat])
2868
2869     if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
2870       AC_DEFINE(HAVE_LIBAVFORMAT_TREE, 1, [Define if you have ffmpeg's libavformat.])
2871       VLC_ADD_LDFLAGS([ffmpegaltivec],[-L${real_ffmpeg_tree}/libavformat -lavformataltivec -lz])
2872       VLC_ADD_CPPFLAGS([ffmpegaltivec],[-I${real_ffmpeg_tree}/libavformat])
2873     fi
2874     VLC_ADD_LDFLAGS([stream_out_switcher],[-L${real_ffmpeg_tree}/libavcodec])
2875     VLC_ADD_CPPFLAGS([stream_out_switcher],[-I${real_ffmpeg_tree}/libavcodec -I${real_ffmpeg_tree}/libavformat])
2876   fi
2877 fi
2878
2879 dnl
2880 dnl  faad decoder plugin
2881 dnl
2882 AC_ARG_ENABLE(faad,
2883 [  --enable-faad           faad codec (default disabled)])
2884 if test "${enable_faad}" = "yes"
2885 then
2886   AC_ARG_WITH(faad-tree,
2887   [    --with-faad-tree=PATH faad tree for static linking])
2888   if test -n "${with_faad_tree}"
2889   then
2890     AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
2891     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
2892     if test -z "${real_faad_tree}"
2893     then
2894       dnl  The given directory can't be found
2895       AC_MSG_RESULT(no)
2896       AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
2897     fi
2898     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
2899     then
2900       dnl  Use a custom faad
2901       AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
2902       VLC_ADD_BUILTINS([faad])
2903       VLC_ADD_LDFLAGS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
2904       VLC_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
2905     else
2906       dnl  The given libfaad wasn't built
2907       AC_MSG_RESULT(no)
2908       AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
2909     fi
2910   else
2911     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
2912     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_faad}"
2913     AC_CHECK_HEADERS(faad.h, ,
2914       [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ])
2915     AC_CHECK_LIB(faad, faacDecOpen, [
2916       VLC_ADD_PLUGINS([faad])
2917       VLC_ADD_LDFLAGS([faad],[-lfaad]) ],
2918       AC_CHECK_LIB(faad, NeAACDecOpen, [
2919         VLC_ADD_PLUGINS([faad])
2920         VLC_ADD_LDFLAGS([faad],[-lfaad]) ],
2921         [ AC_MSG_ERROR([Cannot find libfaad library...]) ]))
2922     LDFLAGS="${LDFLAGS_save}"
2923     CPPFLAGS="${CPPFLAGS_save}"
2924   fi
2925 fi
2926
2927 dnl
2928 dnl twolame encoder plugin
2929 dnl
2930 AC_ARG_ENABLE(twolame,
2931 [  --enable-twolame        twolame codec (default disabled)])
2932 if test "${enable_twolame}" = "yes"
2933 then
2934   AC_ARG_WITH(twolame-tree,
2935   [    --with-twolame-tree=PATH twolame tree for static linking])
2936   if test -n "${with_twolame_tree}"
2937   then
2938     AC_MSG_CHECKING(for libtwolame.a in ${with_twolame_tree})
2939     real_twolame_tree="`cd ${with_twolame_tree} 2>/dev/null && pwd`"
2940     if test -z "${real_twolame_tree}"
2941     then
2942       dnl  The given directory can't be found
2943       AC_MSG_RESULT(no)
2944       AC_MSG_ERROR([cannot cd to ${with_twolame_tree}])
2945     fi
2946     if test -f "${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a"
2947     then
2948       dnl  Use a custom twolame
2949       AC_MSG_RESULT(${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a)
2950       VLC_ADD_BUILTINS([twolame])
2951       VLC_ADD_LDFLAGS([twolame],[${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a])
2952       VLC_ADD_CPPFLAGS([twolame],[-I${real_twolame_tree}/src/libtwolame])
2953     else
2954       dnl  The given libtwolame wasn't built
2955       AC_MSG_RESULT(no)
2956       AC_MSG_ERROR([cannot find ${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a, make sure you compiled libtwolame in ${with_twolame_tree}])
2957     fi
2958   else
2959     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_twolame}"
2960     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_twolame}"
2961     AC_CHECK_HEADERS(twolame.h, ,
2962       [ AC_MSG_ERROR([Cannot find development header for libtwolame...]) ])
2963     AC_CHECK_LIB(twolame, twolame_init, [
2964       VLC_ADD_PLUGINS([twolame])
2965       VLC_ADD_LDFLAGS([twolame],[-ltwolame]) ],
2966         [ AC_MSG_ERROR([Cannot find libtwolame library...]) ])
2967     LDFLAGS="${LDFLAGS_save}"  
2968     CPPFLAGS="${CPPFLAGS_save}"
2969   fi
2970 fi
2971
2972 dnl
2973 dnl  QuickTime plugin
2974 dnl
2975 AC_ARG_ENABLE(quicktime,
2976   [  --enable-quicktime      QuickTime module (default enabled on MacOS X)])
2977 if test "${enable_quicktime}" != "no" &&
2978   (test "${SYS}" = "darwin" || test "${enable_quicktime}" = "yes")
2979 then
2980   if test "${SYS}" = "mingw32"; then
2981     VLC_ADD_BUILTINS([quicktime])
2982   else
2983   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2984     [ VLC_ADD_BUILTINS([quicktime])
2985       VLC_ADD_LDFLAGS([quicktime],[-framework QuickTime -framework Carbon])
2986     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2987   fi
2988 fi
2989
2990 dnl
2991 dnl  Real plugin
2992 dnl
2993 AC_ARG_ENABLE(real,
2994   [  --enable-real           Real audio module (default disabled)])
2995 if test "${enable_real}" = "yes"; then
2996   VLC_ADD_PLUGINS([realaudio])
2997 fi
2998
2999 dnl
3000 dnl  Real RTSP plugin
3001 dnl
3002 AC_ARG_ENABLE(realrtsp,
3003   [  --enable-realrtsp       Real RTSP module (default disabled)])
3004 if test "${enable_realrtsp}" = "yes"; then
3005   VLC_ADD_PLUGINS([access_realrtsp])
3006 fi
3007
3008 dnl
3009 dnl MP4 module
3010 dnl
3011 AC_CHECK_HEADERS(zlib.h, [
3012   VLC_ADD_LDFLAGS([mp4 skins2 sap mkv gme],[-lz])
3013 ] )
3014
3015 AC_CHECK_HEADERS(sysfs/libsysfs.h, [
3016   VLC_ADD_LDFLAGS([mp4 mkv],[-lsysfs])
3017 ] )
3018
3019 dnl
3020 dnl skins2 module
3021 dnl
3022 AC_CHECK_HEADERS(libtar.h, [
3023   VLC_ADD_LDFLAGS([skins2],[-ltar])
3024 ] )
3025
3026
3027
3028 dnl
3029 dnl A52/AC3 decoder plugin
3030 dnl
3031 AC_ARG_ENABLE(a52,
3032   [  --enable-a52            A/52 support with liba52 (default enabled)])
3033 if test "${enable_a52}" != "no"
3034 then
3035   AC_ARG_WITH(a52,
3036     [    --with-a52=PATH       a52 headers and libraries])
3037   AC_ARG_WITH(a52-tree,
3038     [    --with-a52-tree=PATH  a52dec tree for static linking ],[],[])
3039   if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
3040   then
3041     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
3042     if test -z "${real_a52_tree}"
3043     then
3044       dnl  The given directory can't be found
3045       AC_MSG_RESULT(no)
3046       AC_MSG_ERROR([${with_a52_tree} directory doesn't exist])
3047     fi
3048     dnl  Use a custom a52dec
3049     AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
3050     if test -f ${real_a52_tree}/include/a52.h
3051     then
3052       AC_MSG_RESULT(yes)
3053       VLC_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
3054       VLC_ADD_LDFLAGS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
3055       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_a52tofloat32}"
3056       AC_CHECK_LIB(a52, a52_free, [
3057         VLC_ADD_BUILTINS([a52tofloat32])
3058         VLC_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
3059         VLC_ADD_LDFLAGS([a52tofloat32],[-la52])
3060         ],[
3061         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
3062         then
3063           AC_MSG_ERROR([make sure you have at least a52dec-0.7.3])
3064         else
3065           AC_MSG_ERROR([the specified tree hasn't been compiled])
3066         fi
3067       ])
3068       LDFLAGS="${LDFLAGS_save}"
3069     else
3070       AC_MSG_RESULT(no)
3071       AC_MSG_ERROR([the specified tree doesn't have a52.h])
3072     fi
3073   else
3074     if test -z "${with_a52}"
3075     then
3076       LDFLAGS_test=""
3077       CPPFLAGS_test=""
3078     else
3079       LDFLAGS_test="-L${with_a52}/lib"
3080       CPPFLAGS_test="-I${with_a52}/include"
3081     fi
3082     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
3083     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LDFLAGS_a52tofloat32}"
3084     AC_CHECK_HEADERS(a52dec/a52.h, [
3085       AC_CHECK_LIB(a52, a52_free, [
3086         VLC_ADD_PLUGINS([a52tofloat32])
3087         VLC_ADD_LDFLAGS([a52tofloat32],[${LDFLAGS_test} -la52])
3088         VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
3089       ],[
3090         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.])
3091       ])
3092     ])
3093     CPPFLAGS="${CPPFLAGS_save}"
3094     LDFLAGS="${LDFLAGS_save}"
3095   fi
3096 fi
3097
3098 AC_ARG_WITH(a52-fixed,
3099       [    --with-a52-fixed      specify if liba52 has been compiled with fixed point support],
3100       [
3101         VLC_ADD_CPPFLAGS([a52tofloat32],[-DLIBA52_FIXED]) ])
3102
3103 dnl
3104 dnl DTS Coherent Acoustics decoder plugin
3105 dnl
3106 AC_ARG_ENABLE(dts,
3107   [  --enable-dts            DTS Coherent Acoustics support with libdca (default enabled)])
3108 if test "${enable_dts}" != "no"; then
3109   AC_ARG_WITH(dts-tree,
3110     [    --with-dts-tree=PATH  libdts tree for static linking ],[],[])
3111   if test "${with_dts_tree}" != "no" -a -n "${with_dts_tree}"
3112   then
3113     real_dts_tree="`cd ${with_dts_tree} 2>/dev/null && pwd`"
3114     if test -z "${real_dts_tree}"
3115     then
3116       dnl  The given directory can't be found
3117       AC_MSG_RESULT(no)
3118       AC_MSG_ERROR([${with_dts_tree} directory doesn't exist])
3119     fi
3120     dnl  Use a custom libdts
3121     AC_MSG_CHECKING(for dts.h in ${real_dts_tree}/include)
3122     if test -f ${real_dts_tree}/include/dts.h
3123     then
3124       AC_MSG_RESULT(yes)
3125       VLC_ADD_CPPFLAGS([dtstofloat32],[-I${real_dts_tree}/include])
3126       VLC_ADD_LDFLAGS([dtstofloat32],[-L${real_dts_tree}/libdts])
3127       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
3128       AC_CHECK_LIB(dts_pic, dts_free, [
3129         VLC_ADD_PLUGINS([dtstofloat32])
3130         VLC_ADD_LDFLAGS([dtstofloat32],[-ldts_pic])
3131         ],[
3132         AC_CHECK_LIB(dts, dts_free, [
3133           VLC_ADD_BUILTINS([dtstofloat32])
3134           VLC_ADD_LDFLAGS([dtstofloat32],[-ldts])
3135           ],[
3136           if test -f ${real_dts_tree}/libdts/libdts.a
3137           then
3138             AC_MSG_ERROR([make sure you have at least libdts-0.0.2])
3139           else
3140             AC_MSG_ERROR([the specified tree hasn't been compiled])
3141           fi
3142         ])
3143       ])
3144       LDFLAGS="${LDFLAGS_save}"
3145     else
3146       AC_MSG_RESULT(no)
3147       AC_MSG_ERROR([the specified tree doesn't have dts.h])
3148     fi
3149   else
3150     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
3151     AC_CHECK_HEADERS(dts.h, [
3152       AC_CHECK_LIB(dts_pic, dts_free, [
3153         VLC_ADD_PLUGINS([dtstofloat32])
3154         VLC_ADD_LDFLAGS([dtstofloat32],[-ldts_pic])
3155       ],[
3156         AC_CHECK_LIB(dts, dts_free, [
3157           VLC_ADD_BUILTINS([dtstofloat32])
3158           VLC_ADD_LDFLAGS([dtstofloat32],[-ldts])
3159         ],[
3160           if test "${enable_dts}" = "yes"; then
3161             AC_MSG_ERROR([Could not find libdts on your system: you may get it from http://www.videolan.org/dtsdec.html])
3162           fi
3163         ])
3164       ])
3165     ])
3166     LDFLAGS="${LDFLAGS_save}"
3167   fi
3168 fi
3169
3170 dnl
3171 dnl  Flac plugin
3172 dnl
3173 AC_ARG_ENABLE(flac,
3174   [  --enable-flac           flac decoder support (default disabled)])
3175 if test "${enable_flac}" = "yes"
3176 then
3177   AC_ARG_WITH(flac-tree,
3178   [    --with-flac-tree=PATH flac tree for static linking])
3179   if test -n "${with_flac_tree}"
3180   then
3181     AC_MSG_CHECKING(for libFLAC.a in ${with_flac_tree})
3182     real_flac_tree="`cd ${with_flac_tree} 2>/dev/null && pwd`"
3183     if test -z "${real_flac_tree}"
3184     then
3185       dnl  The given directory can't be found
3186       AC_MSG_RESULT(no)
3187       AC_MSG_ERROR([cannot cd to ${with_flac_tree}])
3188     fi
3189     if test -f "${real_flac_tree}/src/libFLAC/.libs/libFLAC.a"
3190     then
3191       dnl  Use a custom flac
3192       AC_MSG_RESULT(${real_flac_tree}/src/libFLAC/.libs/libFLAC.a)
3193       VLC_ADD_LDFLAGS([flacdec],[${real_flac_tree}/src/libFLAC/.libs/libFLAC.a])
3194       VLC_ADD_CFLAGS([flacdec],[-I${real_flac_tree}/include])
3195       AC_DEFINE(HAVE_FLAC_STREAM_DECODER_H, 1, [Define if you have FLAC])
3196     else
3197       dnl  The given flac wasn't built
3198       AC_MSG_RESULT(no)
3199       AC_MSG_ERROR([cannot find ${real_flac_tree}/src/libFLAC/.libs/libFLAC.a, make sure you compiled flac in ${with_flac_tree}])
3200     fi
3201   else
3202     AC_CHECK_HEADERS(FLAC/stream_decoder.h, [
3203       VLC_ADD_LDFLAGS([flacdec],[-lFLAC])
3204      ],[])
3205   fi
3206 fi
3207
3208 dnl
3209 dnl  Libmpeg2 plugin
3210 dnl
3211 AC_ARG_ENABLE(libmpeg2,
3212   [  --enable-libmpeg2       libmpeg2 decoder support (default enabled)])
3213 if test "${enable_libmpeg2}" != "no"
3214 then
3215   AC_ARG_WITH(libmpeg2-tree,
3216   [    --with-libmpeg2-tree=PATH libmpeg2 tree for static linking])
3217   if test -n "${with_libmpeg2_tree}"
3218   then
3219     AC_MSG_CHECKING(for libmpeg2.a in ${with_libmpeg2_tree})
3220     real_libmpeg2_tree="`cd ${with_libmpeg2_tree} 2>/dev/null && pwd`"
3221     if test -z "${real_libmpeg2_tree}"
3222     then
3223       dnl  The given directory can't be found
3224       AC_MSG_RESULT(no)
3225       AC_MSG_ERROR([cannot cd to ${with_libmpeg2_tree}])
3226     fi
3227     if test -f "${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a"
3228     then
3229       dnl  Use a custom libmpeg2
3230       AC_MSG_RESULT(${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a)
3231       VLC_ADD_BUILTINS([libmpeg2])
3232       VLC_ADD_LDFLAGS([libmpeg2],[-L${real_libmpeg2_tree}/libmpeg2/.libs -lmpeg2])
3233       VLC_ADD_CFLAGS([libmpeg2],[-I${real_libmpeg2_tree}/include])
3234       eval "`cd ${real_libmpeg2_tree}/include && ln -sf . mpeg2dec 2>/dev/null`"
3235     else
3236       dnl  The given libmpeg2 wasn't built
3237       AC_MSG_RESULT(no)
3238       AC_MSG_ERROR([cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}])
3239     fi
3240   else
3241     AC_CHECK_HEADERS(mpeg2dec/mpeg2.h, [
3242       AC_MSG_CHECKING(for libmpeg2 version >= 0.3.2)
3243       AC_EGREP_CPP(yes,
3244         [#include <mpeg2dec/mpeg2.h>
3245          #ifdef MPEG2_RELEASE
3246          #if MPEG2_RELEASE >= MPEG2_VERSION(0,3,2)
3247          yes
3248          #endif
3249          #endif],
3250         [AC_MSG_RESULT([yes])
3251           VLC_ADD_PLUGINS([libmpeg2])
3252           VLC_ADD_LDFLAGS([libmpeg2],[-lmpeg2])],
3253         [AC_MSG_RESULT([no])
3254           AC_MSG_ERROR([Your libmpeg2 is too old (you need the cvs version): you may get a more recent one from http://libmpeg2.sf.net/. Alternatively you can use --disable-libmpeg2 to disable the libmpeg2 plugin.])])],
3255
3256       [AC_MSG_ERROR([Could not find libmpeg2 on your system: you may get it from http://libmpeg2.sf.net/ (you need the cvs version). Alternatively you can use --disable-libmpeg2 to disable the libmpeg2 plugin.])]
3257     )
3258   fi
3259 fi
3260
3261 dnl
3262 dnl  Vorbis plugin
3263 dnl
3264 AC_ARG_ENABLE(vorbis,
3265   [  --enable-vorbis         Vorbis decoder support (default enabled)])
3266 if test "${enable_vorbis}" != "no"
3267 then
3268   AC_ARG_WITH(vorbis-tree,
3269   [    --with-vorbis-tree=PATH vorbis tree for static linking])
3270   if test -n "${with_vorbis_tree}"
3271   then
3272     AC_MSG_CHECKING(for libvorbis.a in ${with_vorbis_tree})
3273     real_vorbis_tree="`cd ${with_vorbis_tree} 2>/dev/null && pwd`"
3274     if test -z "${real_vorbis_tree}"
3275     then
3276       dnl  The given directory can't be found
3277       AC_MSG_RESULT(no)
3278       AC_MSG_ERROR([cannot cd to ${with_vorbis_tree}])
3279     fi
3280     if test -f "${real_vorbis_tree}/lib/.libs/libvorbis.a"
3281     then
3282       dnl  Use a custom vorbis 
3283       AC_MSG_RESULT(${real_vorbis_tree}/lib/.libs/libvorbis.a)
3284       VLC_ADD_PLUGINS([vorbis])
3285       VLC_ADD_LDFLAGS([vorbis],[${real_vorbis_tree}/lib/.libs/libvorbis.a ${real_vorbis_tree}/lib/.libs/libvorbisenc.a])
3286       VLC_ADD_CFLAGS([vorbis],[-I${real_vorbis_tree}/include])
3287     else
3288       dnl  The given vorbis wasn't built
3289       AC_MSG_RESULT(no)
3290       AC_MSG_ERROR([cannot find ${real_vorbis_tree}/lib/.libs/libvorbis.a, make sure you compiled vorbis in ${with_vorbis_tree}])
3291     fi
3292   else
3293     AC_CHECK_HEADERS(vorbis/codec.h, [
3294       VLC_ADD_PLUGINS([vorbis])
3295       VLC_ADD_LDFLAGS([vorbis],[-lvorbis -logg]) ],[])
3296
3297     AC_CHECK_HEADERS(vorbis/vorbisenc.h, [
3298       VLC_ADD_LDFLAGS([vorbis],[-lvorbisenc]) ],[])
3299   fi
3300 fi
3301
3302 dnl
3303 dnl  Tremor plugin
3304 dnl
3305 AC_ARG_ENABLE(tremor,
3306   [  --enable-tremor         Tremor decoder support (default disabled)])
3307 if test "${enable_tremor}" = "yes"
3308 then
3309   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
3310     VLC_ADD_PLUGINS([tremor])
3311     VLC_ADD_LDFLAGS([tremor],[-lvorbisidec -logg])
3312    ],[])
3313 fi
3314
3315 dnl
3316 dnl  Speex plugin
3317 dnl
3318 AC_ARG_ENABLE(speex,
3319   [  --enable-speex          Speex decoder support (default enabled)])
3320 if test "${enable_speex}" != "no"
3321 then
3322   AC_ARG_WITH(speex-tree,
3323   [    --with-speex-tree=PATH speex tree for static linking])
3324   if test -n "${with_speex_tree}"
3325   then
3326     AC_MSG_CHECKING(for libspeex.a in ${with_speex_tree})
3327     real_speex_tree="`cd ${with_speex_tree} 2>/dev/null && pwd`"
3328     if test -z "${real_speex_tree}"
3329     then
3330       dnl  The given directory can't be found
3331       AC_MSG_RESULT(no)
3332       AC_MSG_ERROR([cannot cd to ${with_speex_tree}])
3333     fi
3334     if test -f "${real_speex_tree}/libspeex/.libs/libspeex.a"
3335     then
3336       dnl  Use a custom speex
3337       AC_MSG_RESULT(${real_speex_tree}/libspeex/.libs/libspeex.a)
3338       VLC_ADD_PLUGINS([speex])
3339       VLC_ADD_LDFLAGS([speex],[${real_speex_tree}/libspeex/.libs/libspeex.a])
3340       VLC_ADD_CFLAGS([speex],[-I${real_speex_tree}/include])
3341     else
3342       dnl  The given speex wasn't built
3343       AC_MSG_RESULT(no)
3344       AC_MSG_ERROR([cannot find ${real_speex_tree}/libspeex/.libs/libspeex.a, make sure you compiled speex in ${with_speex_tree}])
3345     fi
3346   else
3347     AC_CHECK_HEADERS(speex/speex.h, [
3348       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_speex}"
3349       AC_CHECK_LIB(speex, speex_decode_int, [
3350         VLC_ADD_PLUGINS([speex])
3351         VLC_ADD_LDFLAGS([speex],[-lspeex]) ],
3352         [ AC_MSG_RESULT([no])
3353           AC_MSG_WARN([Your libspeex is too old, please get the development
3354                        version.]) ],[])
3355       LDFLAGS="${LDFLAGS_save}"
3356       ],[])
3357   fi
3358 fi
3359
3360 dnl
3361 dnl  tarkin decoder plugin
3362 dnl
3363 AC_ARG_ENABLE(tarkin,
3364 [  --enable-tarkin         experimental tarkin codec (default disabled)])
3365 if test "${enable_tarkin}" = "yes"
3366 then
3367   AC_ARG_WITH(tarkin-tree,
3368   [    --with-tarkin-tree=PATH tarkin tree for static linking])
3369   if test -n "${with_tarkin_tree}"
3370   then
3371     AC_MSG_CHECKING(for tarkin.o in ${with_tarkin_tree})
3372     real_tarkin_tree="`cd ${with_tarkin_tree} 2>/dev/null && pwd`"
3373     if test -f "${real_tarkin_tree}/tarkin.o"
3374     then
3375       VLC_ADD_BUILTINS([tarkin])
3376       VLC_ADD_CPPFLAGS([tarkin],[-I${real_tarkin_tree}])
3377       VLC_ADD_LDFLAGS([tarkin],[${real_tarkin_tree}/mem.o ${real_tarkin_tree}/pnm.o ${real_tarkin_tree}/wavelet.o ${real_tarkin_tree}/wavelet_xform.o ${real_tarkin_tree}/wavelet_coeff.o ${real_tarkin_tree}/yuv.o ${real_tarkin_tree}/tarkin.o ${real_tarkin_tree}/info.o -logg])
3378       AC_MSG_RESULT(yes)
3379     else
3380       dnl  The given tarkin tree wasn't built
3381       AC_MSG_RESULT(no)
3382       AC_MSG_ERROR([cannot find ${real_tarkin_tree}/tarkin.o,
3383                     make sure you compiled tarkin in ${with_tarkin_tree}])
3384     fi
3385   fi
3386 fi
3387
3388 dnl
3389 dnl  theora decoder plugin
3390 dnl
3391 AC_ARG_ENABLE(theora,
3392 [  --enable-theora         experimental theora codec (default disabled)])
3393 if test "${enable_theora}" = "yes"
3394 then
3395   AC_CHECK_HEADERS(theora/theora.h, [
3396     AC_CHECK_LIB(theora, theora_granule_time, [
3397       VLC_ADD_PLUGINS([theora])
3398       theora_libs="-ltheora -logg"
3399       VLC_ADD_LDFLAGS([theora],[${theora_libs}]) ],[
3400       AC_MSG_ERROR([libtheora doesn't appear to be installed on your system.
3401 You also need to check that you have a libogg posterior to the 1.0 release.])],
3402       [-logg])
3403   ])
3404 fi
3405
3406 dnl
3407 dnl  dirac decoder plugin
3408 dnl
3409 AC_ARG_ENABLE(dirac,
3410 [  --enable-dirac          experimental dirac codec (default disabled)])
3411 if test "${enable_dirac}" = "yes"; then
3412   PKG_CHECK_MODULES(DIRAC,dirac, [
3413       VLC_ADD_PLUGINS([dirac])
3414       VLC_ADD_CFLAGS([dirac],[$DIRAC_CFLAGS])
3415       VLC_ADD_LDFLAGS([dirac],[$DIRAC_LIBS -lstdc++]) ],[
3416       AC_MSG_ERROR([libdirac doesn't appear to be installed on you system.])
3417   ])
3418 fi
3419
3420 dnl
3421 dnl  PNG decoder module
3422 dnl
3423 AC_ARG_ENABLE(png,
3424   [  --enable-png            PNG support (default enabled)])
3425 if test "${enable_png}" != "no"; then
3426 AC_CHECK_HEADERS(png.h, [
3427   LDFLAGS="${LDFLAGS_save} -lz"
3428   AC_CHECK_LIB(png, png_set_rows, [
3429     VLC_ADD_LDFLAGS([png],[-lpng -lz])
3430     VLC_ADD_PLUGINS([png])
3431     VLC_ADD_PLUGINS([osdmenu])
3432     AC_DEFINE(HAVE_LIBPNG, [], [Define if you have the PNG library: libpng])],
3433     [],[-lz])
3434   LDFLAGS="${LDFLAGS_save}"
3435   ])
3436 fi
3437
3438 dnl
3439 dnl H264 encoder plugin (using libx264)
3440 dnl
3441 AC_ARG_ENABLE(x264,
3442   [  --enable-x264           H264 encoding support with libx264 (default enabled)])
3443 if test "${enable_x264}" != "no"; then
3444   AC_ARG_WITH(x264-tree,
3445     [    --with-x264-tree=PATH x264 tree for static linking ],[],[])
3446   if test "${with_x264_tree}" != "no" -a -n "${with_x264_tree}"
3447   then
3448     real_x264_tree="`cd ${with_x264_tree} 2>/dev/null && pwd`"
3449     if test -z "${real_x264_tree}"
3450     then
3451       dnl  The given directory can't be found
3452       AC_MSG_RESULT(no)
3453       AC_MSG_ERROR([${with_x264_tree} directory doesn't exist])
3454     fi
3455     dnl  Use a custom libx264
3456     AC_MSG_CHECKING(for x264.h in ${real_x264_tree})
3457     if test -f ${real_x264_tree}/x264.h
3458     then
3459       AC_MSG_RESULT(yes)
3460       VLC_ADD_CPPFLAGS([x264],[-I${real_x264_tree}])
3461       VLC_ADD_LDFLAGS([x264],[-L${real_x264_tree}])
3462       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264} ${THREAD_LIB}"
3463       AC_CHECK_LIB(x264, x264_encoder_open, [
3464         VLC_ADD_BUILTINS([x264])
3465         VLC_ADD_LDFLAGS([x264],[-lx264])
3466       ],[
3467         AC_MSG_ERROR([the specified tree hasn't been compiled])
3468       ])
3469       LDFLAGS="${LDFLAGS_save}"
3470     else
3471       AC_MSG_RESULT(no)
3472       AC_MSG_ERROR([the specified tree doesn't have x264.h])
3473     fi
3474   else
3475     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264} ${THREAD_LIB}"
3476     AC_CHECK_HEADERS(x264.h, [
3477       AC_CHECK_LIB(x264, x264_encoder_open, [
3478         VLC_ADD_PLUGINS([x264])
3479         VLC_ADD_LDFLAGS([x264],[-lx264])
3480       ],[
3481         if test "${enable_x264}" = "yes"; then
3482             AC_MSG_ERROR([Could not find libx264 on your system: you may get it from http://www.videolan.org/x264.html])
3483           fi
3484       ])
3485     ])
3486     LDFLAGS="${LDFLAGS_save}"
3487   fi
3488 fi
3489
3490 dnl
3491 dnl  CMML plugin
3492 dnl
3493 AC_ARG_ENABLE(cmml,
3494   [  --enable-cmml           CMML support (default enabled)])
3495 if test "${enable_cmml}" != "no"
3496 then
3497   VLC_ADD_PLUGINS([cmml])
3498 fi
3499
3500
3501 dnl
3502 dnl  Video plugins
3503 dnl
3504
3505 AC_ARG_WITH(,[Video plugins:])
3506
3507 dnl Check for DPMS
3508 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
3509   CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
3510   AC_CHECK_HEADERS(X11/extensions/dpms.h, [
3511     AC_MSG_CHECKING(for DPMSInfo in X11/extensions/dpms.h)
3512     AC_EGREP_HEADER(DPMSInfo,X11/extensions/dpms.h,[
3513       AC_MSG_RESULT(yes)
3514       AC_DEFINE(DPMSINFO_IN_DPMS_H, 1,
3515                 Define if <X11/extensions/dpms.h> defines DPMSInfo.)
3516     ],[
3517       AC_MSG_RESULT(no)
3518     ])
3519   ],,[
3520     #include <X11/Xlib.h>
3521   ])
3522   CPPFLAGS="${CPPFLAGS_save}"
3523 fi
3524
3525 dnl
3526 dnl  X11 module
3527 dnl  (enabled by default except on win32)
3528 dnl
3529 AC_ARG_ENABLE(x11,
3530   [  --enable-x11            X11 support (default enabled)])
3531 if test "${enable_x11}" != "no" &&
3532   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3533    test "${enable_x11}" = "yes"); then
3534   CPPFLAGS="${CPPFLAGS_save} ${X_FLAGS}"
3535   AC_CHECK_HEADERS(X11/Xlib.h, [
3536     VLC_ADD_PLUGINS([x11])
3537     VLC_ADD_LDFLAGS([x11],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext])
3538     VLC_ADD_CPPFLAGS([x11],[${X_CFLAGS}])
3539   ])
3540   CPPFLAGS="${CPPFLAGS_save}"
3541 fi
3542
3543 dnl
3544 dnl  XVideo module
3545 dnl  (enabled by default except on win32)
3546 dnl
3547 AC_ARG_ENABLE(xvideo,
3548   [  --enable-xvideo         XVideo support (default enabled)])
3549 if test "${enable_xvideo}" != "no" &&
3550   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3551    test "${enable_xvideo}" = "yes"); then
3552   CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
3553   AC_CHECK_HEADERS(X11/extensions/Xv.h, [
3554     CFLAGS="${CFLAGS_save} ${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext"
3555     AC_CHECK_LIB(Xv,XvPutImage,[
3556       # If libXv.so is available, xvideo can be a plugin. Otherwise, we
3557       # test for libXv_pic.
3558       if test -f /usr/X11R6/lib/libXv.so -o -f /usr/lib/libXv.so -o -f "${x_libraries}"/libXv.so; then
3559         VLC_ADD_PLUGINS([xvideo])
3560         VLC_ADD_CPPFLAGS([xvideo],[${X_CFLAGS}])
3561         VLC_ADD_LDFLAGS([xvideo],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext -lXv])
3562       else
3563         AC_CHECK_LIB(Xv_pic,XvPutImage,[
3564           VLC_ADD_PLUGINS([xvideo])
3565           VLC_ADD_CPPFLAGS([xvideo],[${X_CFLAGS}])
3566           VLC_ADD_LDFLAGS([xvideo],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext -lXv_pic])
3567         ],[
3568           VLC_ADD_BUILTINS([xvideo])
3569           VLC_ADD_LDFLAGS([xvideo],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext -lXv])
3570           VLC_ADD_CPPFLAGS([xvideo],[${X_CFLAGS}])
3571         ])
3572       fi
3573     ])
3574     CFLAGS="${CFLAGS_save}"
3575   ]
3576   CPPFLAGS="${CPPFLAGS_save}")
3577 fi
3578
3579 dnl
3580 dnl  GLX module
3581 dnl  (enabled by default except on win32)
3582 dnl
3583 AC_ARG_ENABLE(glx,
3584   [  --enable-glx            X11 OpenGL (GLX) support (default enabled)])
3585 if test "${enable_glx}" != "no" &&
3586   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3587    test "${enable_glx}" = "yes"); then
3588   CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
3589   AC_CHECK_HEADERS(X11/Xlib.h GL/glu.h GL/glx.h, [
3590       VLC_ADD_PLUGINS([glx])
3591       VLC_ADD_LDFLAGS([glx],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext -lGL -lGLU])
3592       VLC_ADD_CPPFLAGS([glx],[${X_CFLAGS}])
3593    ])
3594   CPPFLAGS="${CPPFLAGS_save}"
3595 fi
3596
3597 dnl
3598 dnl  Check for the Xinerama extension
3599 dnl
3600 AC_ARG_ENABLE(xinerama,
3601   [  --enable-xinerama       Xinerama support (default enabled)])
3602 if test "${enable_xvideo}" != "no" && test "${enable_xinerama}" != "no" &&
3603   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3604    test "${enable_xvideo}" = "yes"); then
3605   ac_cv_have_xinerama="no"
3606   CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
3607   CFLAGS="${CFLAGS_save} ${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext"
3608   AC_CHECK_HEADERS(X11/extensions/Xinerama.h,[
3609     AC_CHECK_LIB(Xinerama_pic, XineramaQueryExtension,[
3610       VLC_ADD_LDFLAGS([xvideo],[-lXinerama_pic])
3611       VLC_ADD_LDFLAGS([x11],[-lXinerama_pic])
3612       VLC_ADD_LDFLAGS([glx],[-lXinerama_pic])
3613       ac_cv_have_xinerama="yes"
3614     ],[
3615       AC_CHECK_LIB(Xinerama, XineramaQueryExtension,[
3616         VLC_ADD_LDFLAGS([xvideo],[-lXinerama])
3617         VLC_ADD_LDFLAGS([x11],[-lXinerama])
3618         VLC_ADD_LDFLAGS([glx],[-lXinerama])
3619         ac_cv_have_xinerama="yes"
3620       ])
3621     ])
3622   ])
3623   if test "${ac_cv_have_xinerama}" = "yes"; then
3624     AC_DEFINE(HAVE_XINERAMA, 1, [Define this if you have libXinerama installed])
3625   fi
3626   CFLAGS="${CFLAGS_save}"
3627   CPPFLAGS="${CPPFLAGS_save}"
3628
3629 dnl
3630 dnl  Check for XF86VidMode extension
3631 dnl
3632   ac_cv_have_xf86vidmode="no"
3633   CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
3634   CFLAGS="${CFLAGS_save} ${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext"
3635   AC_CHECK_HEADERS(X11/extensions/xf86vmode.h,[
3636     AC_CHECK_LIB(Xxf86vm_pic, XF86VidModeGetViewPort,[
3637       VLC_ADD_LDFLAGS([xvideo],[-lXxf86vm_pic])
3638       VLC_ADD_LDFLAGS([x11],[-lXxf86vm_pic])
3639       VLC_ADD_LDFLAGS([glx],[-lXxf86vm_pic])
3640       ac_cv_have_xf86vidmode="yes"
3641     ],[
3642       AC_CHECK_LIB(Xxf86vm, XF86VidModeGetViewPort,[
3643         VLC_ADD_LDFLAGS([xvideo],[-lXxf86vm])
3644         VLC_ADD_LDFLAGS([x11],[-lXxf86vm])
3645         VLC_ADD_LDFLAGS([glx],[-lXxf86vm])
3646         ac_cv_have_xf86vidmode="yes"
3647       ])
3648     ])
3649   ],[true],
3650 [#ifdef HAVE_X11_XLIB_H
3651 # include <X11/Xlib.h>
3652 #endif]
3653    )
3654   AS_IF([test "${ac_cv_have_xf86vidmode}" = "yes"],
3655     [AC_DEFINE(HAVE_XF86VIDMODE, 1, [Define this if you have libXxf86vm installed])
3656   ])
3657   CFLAGS="${CFLAGS_save}"
3658   CPPFLAGS="${CPPFLAGS_save}"
3659
3660 fi
3661
3662 dnl
3663 dnl  OpenGL module
3664 dnl  (enabled by default except on beos)
3665 dnl
3666 AC_ARG_ENABLE(opengl,
3667   [  --enable-opengl         OpenGL support (default enabled)])
3668 if test "${enable_opengl}" != "no" &&
3669    test "${SYS}" != "beos" -a "${SYS}" != "mingwce"; then
3670   if test "${SYS}" != "darwin"; then
3671     AC_CHECK_HEADERS(GL/gl.h GL/glu.h, [
3672       VLC_ADD_PLUGINS([opengl])
3673       if test "${SYS}" != "mingw32"; then
3674         VLC_ADD_LDFLAGS([opengl],[${X_LIBS} -lGL -lGLU])
3675       else
3676         VLC_ADD_LDFLAGS([opengl],[-lopengl32 -lglu32])
3677       fi
3678     ])
3679   else
3680     dnl OS X special case (no GL/gl.h but OpenGL/gl.h)
3681     VLC_ADD_PLUGINS([opengl])
3682     VLC_ADD_LDFLAGS([opengl],[-framework OpenGL])
3683   fi
3684 fi
3685
3686 dnl
3687 dnl  SDL module
3688 dnl
3689 AC_ARG_ENABLE(sdl,
3690   [  --enable-sdl            SDL support (default enabled)])
3691 if test "${enable_sdl}" != "no"
3692 then
3693   SDL_PATH="${PATH}"
3694   AC_ARG_WITH(sdl-config-path,
3695     [    --with-sdl-config-path=PATH sdl-config path (default search in \$PATH)],
3696     [ if test "${with_sdl_config_path}" != "no"
3697       then
3698         SDL_PATH="${with_sdl_config_path}:${PATH}"
3699       fi ])
3700   AC_PATH_PROG(SDL12_CONFIG, sdl12-config, no, ${SDL_PATH})
3701   SDL_CONFIG="${SDL12_CONFIG}"
3702   SDL_HEADER="SDL12/SDL.h"
3703   SDL_IMAGE="SDL12/SDL_image.h"
3704   if test "${SDL_CONFIG}" = "no"
3705   then
3706     AC_PATH_PROG(SDL11_CONFIG, sdl11-config, no, ${SDL_PATH})
3707     SDL_CONFIG=${SDL11_CONFIG}
3708     SDL_HEADER="SDL11/SDL.h"
3709     SDL_IMAGE="SDL11/SDL_image.h"
3710   fi
3711   if test "${SDL_CONFIG}" = "no"
3712   then
3713     AC_PATH_PROG(SDL_CONFIG, sdl-config, no, ${SDL_PATH})
3714     SDL_HEADER="SDL/SDL.h"
3715     SDL_IMAGE="SDL/SDL_image.h"
3716   fi
3717   # check for cross-compiling
3718   SDL_PREFIX=
3719   AC_ARG_WITH(sdl-prefix,
3720     [    --with-sdl-prefix=PATH path to libsdl (needed for cross-compiling),
3721                                e.g use as:
3722                                --with-sdl-prefix=/usr/local/arm/2.95.3/arm-linux/usr)],[],[])
3723   if test "${with_sdl_prefix}" != "no" -a -n "${with_sdl_prefix}"
3724   then
3725     SDL_PREFIX="--prefix=${with_sdl_prefix}"
3726   fi
3727   if test "${SDL_CONFIG}" != "no"
3728   then
3729     # SDL on Darwin is heavily patched and can only run SDL_image
3730     if test "${SYS}" != "darwin" -a "${SYS}" != "mingw32"; then
3731       VLC_ADD_PLUGINS([vout_sdl aout_sdl])
3732     fi
3733     VLC_ADD_CFLAGS([vout_sdl aout_sdl sdl_image],[`${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`])
3734     VLC_ADD_LDFLAGS([vout_sdl aout_sdl sdl_image],[`${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'`])
3735     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}"
3736     AC_CHECK_HEADERS(${SDL_HEADER}, AC_DEFINE_UNQUOTED(SDL_INCLUDE_FILE,
3737       <${SDL_HEADER}>, Indicate whether we should use SDL/SDL.h or SDL11/SDL.h),
3738       [ AC_CHECK_HEADERS(SDL.h, AC_DEFINE(SDL_INCLUDE_FILE, <SDL.h>,
3739           As a last resort we also test for SDL.h presence),
3740       [ AC_MSG_ERROR([The development package for SDL is not installed.
3741 Please install it and try again. Alternatively you can also configure with
3742 --disable-sdl.])
3743       ])])
3744     AC_CHECK_HEADERS(${SDL_IMAGE}, [AC_DEFINE_UNQUOTED(SDL_IMAGE_INCLUDE_FILE,
3745       <${SDL_IMAGE}>, Indicate the path of SDL_image.h)
3746       VLC_ADD_PLUGINS([sdl_image])
3747       AC_CHECK_LIB(png, png_set_rows,
3748         [VLC_ADD_LDFLAGS([sdl_image],[-lpng -lz])],[],[-lz])
3749       AC_CHECK_LIB(jpeg, jpeg_start_decompress,
3750         [VLC_ADD_LDFLAGS([sdl_image],[-ljpeg])])
3751       AC_CHECK_LIB(tiff, TIFFClientOpen,
3752         [VLC_ADD_LDFLAGS([sdl_image],[-ltiff])])
3753       VLC_ADD_LDFLAGS([sdl_image], [-lSDL_image])],
3754       [ AC_CHECK_HEADERS(SDL_image.h, AC_DEFINE(SDL_IMAGE_INCLUDE_FILE, <SDL_image.h>,
3755           As a last resort we also test for SDL_image.h presence),
3756       [ AC_MSG_WARN([The development package for SDL_image is not installed.
3757 You should install it alongside your SDL package.])
3758       ])])
3759     CPPFLAGS="${CPPFLAGS_save}"
3760     if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null
3761     then
3762       AC_MSG_ERROR([The development package for SDL is not installed.
3763 Please install it and try again. Alternatively you can also configure with
3764 --disable-sdl.])
3765     fi
3766
3767   elif test "${enable_sdl}" =  "yes"
3768   then
3769     AC_MSG_ERROR([I couldn't find the SDL package. You can download libSDL
3770 from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
3771     ])
3772   fi
3773 fi
3774
3775 dnl
3776 dnl  freetype module
3777 dnl
3778 AC_ARG_ENABLE(freetype,
3779   [  --enable-freetype       freetype support (default enabled)])
3780 AC_ARG_ENABLE(fribidi,
3781   [  --enable-fribidi        fribidi support (default enabled)])
3782 if test "${enable_freetype}" != "no"
3783 then
3784   FREETYPE_PATH="${PATH}"
3785   AC_ARG_WITH(freetype-config-path,
3786     [    --with-freetype-config-path=PATH freetype-config path (default search in \$PATH)],
3787     [ if test "${with_freetype_config_path}" != "no"
3788       then
3789         FREETYPE_PATH="${with_freetype_config_path}:${PATH}"
3790       fi ])
3791   AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no, ${FREETYPE_PATH})
3792
3793   if test "${FREETYPE_CONFIG}" != "no"
3794   then
3795     VLC_ADD_PLUGINS([freetype])
3796     VLC_ADD_CFLAGS([freetype],[`${FREETYPE_CONFIG} --cflags`])
3797     VLC_ADD_LDFLAGS([freetype],[`${FREETYPE_CONFIG} --libs`])
3798     AC_CHECK_HEADERS(Carbon/Carbon.h,
3799       [VLC_ADD_LDFLAGS([freetype],[-framework Carbon])])
3800   elif test "${enable_freetype}" =  "yes"
3801   then
3802     AC_MSG_ERROR([I couldn't find the freetype package. You can download libfreetype2
3803 from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
3804     ])
3805   fi
3806
3807   dnl fribidi support
3808   if test "${enable_fribidi}" != "no"
3809   then
3810     FRIBIDI_PATH="${PATH}"
3811     AC_ARG_WITH(fribidi-config-path,
3812       [    --with-fribidi-config-path=PATH fribidi-config path (default search in \$PATH)],
3813       [ if test "${with_fribidi_config_path}" != "no"
3814         then
3815           FRIBIDI_PATH="${with_fribidi_config_path}:${PATH}"
3816         fi ])
3817     AC_PATH_PROG(FRIBIDI_CONFIG, fribidi-config, no, ${FRIBIDI_PATH})
3818
3819     if test "${FRIBIDI_CONFIG}" != "no"
3820     then
3821       VLC_ADD_CFLAGS([freetype], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
3822       VLC_ADD_CPPFLAGS([skins2], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
3823       VLC_ADD_LDFLAGS([freetype], [`${FRIBIDI_CONFIG} --libs`])
3824       VLC_ADD_LDFLAGS([skins2], [`${FRIBIDI_CONFIG} --libs`])
3825     fi
3826   fi
3827 fi
3828
3829 dnl
3830 dnl  libxml2 module
3831 dnl
3832 AC_ARG_ENABLE(libxml2,
3833   [  --enable-libxml2        libxml2 support (default enabled)])
3834 if test "${enable_libxml2}" != "no"
3835 then
3836   XML2_PATH="${PATH}"
3837   AC_ARG_WITH(xml2-config-path,
3838     [    --with-xml2-config-path=PATH xml2-config path (default search in \$PATH)],
3839     [ if test "${with_xml2_config_path}" != "no"; then
3840         XML2_PATH="${with_xml2_config_path}:${PATH}"
3841       fi ])
3842   AC_PATH_PROG(XML2_CONFIG, xml2-config, no, ${XML2_PATH})
3843   if test "${XML2_CONFIG}" != "no"; then
3844     VLC_ADD_CPPFLAGS([xml],[`${XML2_CONFIG} --cflags`])
3845     VLC_ADD_LDFLAGS([xml],[`${XML2_CONFIG} --libs`])
3846     dnl depends on the xmlTextReader extension
3847     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_xml}"
3848     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xml}"
3849     AC_CHECK_LIB(xml2,xmlTextReaderConstName,[
3850       AC_EGREP_HEADER(xmlTextReaderConstName,libxml/xmlreader.h,[
3851         VLC_ADD_PLUGINS([xml]) ],[
3852           AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
3853           if test "${enable_xml2}" = "yes"; then
3854             AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
3855           fi])
3856        ],[
3857       AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
3858       if test "${enable_xml2}" = "yes"; then
3859         AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
3860       fi])
3861     LDFLAGS="${LDFLAGS_save}"
3862     CPPFLAGS="${CPPFLAGS_save}"
3863   else
3864     if test "${enable_xml2}" = "yes"; then
3865       AC_MSG_ERROR([Could not find libxml2])
3866     fi
3867   fi
3868 fi
3869
3870 dnl
3871 dnl  SVG module
3872 dnl
3873 AC_ARG_ENABLE(svg,
3874   [  --enable-svg            SVG support (default disabled)])
3875 if test "${enable_svg}" = "yes"
3876 then
3877   PKG_CHECK_MODULES(SVG, 
3878         librsvg-2.0 >= 2.9.0,
3879         [
3880           VLC_ADD_LDFLAGS([svg],[$SVG_LIBS])
3881           VLC_ADD_CFLAGS([svg],[$SVG_CFLAGS])
3882           VLC_ADD_PLUGINS([svg]) ],
3883         [AC_MSG_WARN(SVG library not found)])
3884 fi
3885
3886 dnl
3887 dnl Snapshot vout module (with cache)
3888 dnl
3889 AC_ARG_ENABLE(snapshot,
3890   [  --enable-snapshot       snapshot module (default disabled)])
3891 if test "${enable_snapshot}" = "yes"
3892 then
3893   VLC_ADD_PLUGINS([snapshot])
3894 fi
3895
3896 dnl
3897 dnl  Qt Embedded module
3898 dnl  (disabled by default)
3899 dnl
3900 AC_ARG_ENABLE(qte,
3901   [  --enable-qte            QT Embedded support (default disabled)])
3902 if test "${enable_qte}" = "yes"
3903 then
3904   AC_ARG_WITH(qte,
3905   [    --with-qte=PATH       Qt Embedded headers and libraries])
3906   if test "${with_qte}" != "no" -a -n "${with_qte}"
3907   then
3908     VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3909     VLC_ADD_CXXFLAGS([qte],[-I${with_qte}/include `echo -I${with_qte}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti])
3910   else
3911     VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3912     VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti])
3913   fi
3914   VLC_ADD_PLUGINS([qte])
3915   NEED_QTE_MAIN=yes
3916   CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
3917   AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
3918     AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
3919   ] )
3920   CPPFLAGS="${CPPFLAGS_save}"
3921 fi
3922
3923 dnl
3924 dnl  Qt Video output module
3925 dnl  (disabled by default)
3926 dnl
3927 dnl AC_ARG_ENABLE(qt_video,
3928 dnl   [  --enable-qt_video            QT Video Output support (default disabled)])
3929 dnl if test "${enable_qt_video}" = "yes"
3930 dnl then
3931 dnl  VLC_ADD_PLUGINS([qt_video])
3932 dnl  VLC_ADD_LDFLAGS([qt_video],[-L${QTDIR}/lib])
3933 dnl  LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt_video}"
3934 dnl   AC_CHECK_LIB(qt-mt,main,[
3935 dnl    VLC_ADD_LDFLAGS([qt_video],[-lqt-mt])
3936 dnl  ],[
3937 dnl    AC_CHECK_LIB(qt,main,[
3938 dnl      VLC_ADD_LDFLAGS([qt_video],[-lqt])
3939 dnl    ])
3940 dnl  ])
3941 dnl  NEED_QTE_MAIN=yes
3942 dnl  LDFLAGS="${LDFLAGS_save}"
3943 dnl  VLC_ADD_CXXFLAGS([qt_video],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
3944 dnl fi
3945
3946 dnl
3947 dnl Roku HD1000 Video output module
3948 dnl
3949 AC_ARG_ENABLE(hd1000v,
3950   [  --enable-hd1000v        HD1000 Video Output module (default enabled on HD1000)])
3951 if test "${enable_hd1000v}" != "no" -a "${CXX}" != "" &&
3952   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3953    test "${enable_hd1000v}" = "yes"); then
3954   AC_LANG_PUSH([C++])
3955   AC_CHECK_HEADERS([cascade/graphics/CascadeScreen.h cascade/graphics/CascadeBitmap.h],
3956   [
3957     can_build_roku="yes"
3958   ],
3959   [
3960     can_build_roku="no"
3961     AC_MSG_WARN([Not building Roku HD1000 compatible video output])
3962   ])
3963   if test "$can_build_roku" = "yes"
3964   then
3965     VLC_ADD_PLUGINS([hd1000v])
3966     VLC_ADD_LDFLAGS([hd1000v],[-lCascade -ldvbpsi -lmad])
3967   fi
3968   AC_LANG_POP([C++])
3969 fi
3970
3971 dnl
3972 dnl  Windows DirectX module
3973 dnl
3974 AC_ARG_ENABLE(directx,
3975   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
3976 if test "${enable_directx}" != "no"
3977 then
3978   if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "cygwin"
3979   then
3980     AC_ARG_WITH(directx,
3981     [    --with-directx=PATH   Win32 DirectX headers])
3982     if test -z "${with_directx}"
3983     then
3984       AC_CHECK_HEADERS(ddraw.h,
3985       [ VLC_ADD_PLUGINS([vout_directx aout_directx])
3986         VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
3987       ])
3988       AC_CHECK_HEADERS(GL/gl.h,
3989       [ VLC_ADD_PLUGINS([glwin32])
3990         VLC_ADD_LDFLAGS([glwin32],[-lopengl32 -lgdi32])
3991       ])
3992       AC_CHECK_HEADERS(d3d9.h,
3993       [ VLC_ADD_PLUGINS([direct3d])
3994         VLC_ADD_LDFLAGS([direct3d],[-ld3d9 -lgdi32])
3995       ])
3996     else
3997       AC_MSG_CHECKING(for directX headers in ${with_directx})
3998       if test -f ${with_directx}/ddraw.h
3999       then
4000         VLC_ADD_PLUGINS([vout_directx aout_directx])
4001         VLC_ADD_CPPFLAGS([vout_directx aout_directx],[-I${with_directx}])
4002         VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
4003         AC_MSG_RESULT(yes)
4004       else
4005         AC_MSG_RESULT(no)
4006         AC_MSG_ERROR([Cannot find ${with_directx}/ddraw.h!])
4007       fi
4008     fi
4009   fi
4010 fi
4011
4012 dnl
4013 dnl  Linux framebuffer module
4014 dnl
4015 AC_ARG_ENABLE(fb,
4016   [  --enable-fb             Linux framebuffer support (default enabled on Linux)])
4017     if test "${enable_fb}" != "no"
4018     then
4019       AC_CHECK_HEADERS(linux/fb.h, [
4020         VLC_ADD_PLUGINS([fb])
4021       ])
4022     fi
4023
4024 dnl
4025 dnl  Linux MGA module
4026 dnl
4027 AC_ARG_ENABLE(mga,
4028   [  --enable-mga            Linux kernel Matrox support (default disabled)],
4029   [ if test "${enable_mga}" = "yes"
4030     then
4031       VLC_ADD_PLUGINS([mga])
4032     fi ])
4033
4034 dnl
4035 dnl  SVGAlib module
4036 dnl
4037 AC_ARG_ENABLE(svgalib,
4038   [  --enable-svgalib        SVGAlib support (default disabled)])
4039 if test "${enable_svgalib}" = "yes"
4040 then
4041   VLC_ADD_PLUGINS([svgalib])
4042   VLC_ADD_LDFLAGS([svgalib],[-lvgagl -lvga])
4043 fi
4044
4045 dnl
4046 dnl  DirectFB module
4047 dnl
4048 AC_ARG_ENABLE(directfb,
4049   [  --enable-directfb       DirectFB support (default disabled)])
4050 if test "${enable_directfb}" = "yes"
4051 then
4052   if test "${with_directfb}" = "no"
4053   then
4054     AC_CHECK_HEADER(directfb.h, have_directfb="true", have_directfb="false")
4055     if test "${have_directfb}"= "true"
4056     then
4057         VLC_ADD_PLUGINS([directfb])
4058         VLC_ADD_LDFLAGS([directfb],[-ldirectfb -lfusion -ldirect -lpthread -ljpeg -lz -ldl])
4059         VLC_ADD_CPPFLAGS([directfb],[-I/usr/include/directfb -D_REENTRANT])
4060     else
4061         AC_MSG_ERROR([cannot find /usr/include/directfb headers, make sure directfb is installed on your system or use --disable-directfb])
4062     fi
4063   else
4064     CPPFLAGS_save="${CPPFLAGS}"
4065     CPPFLAGS="${CPPFLAGS} -I${with_directfb}/include"
4066     AC_CHECK_HEADER(directfb.h, have_directfb="true", have_directfb="false")
4067     CPPFLAGS="${CPPFLAGS_save}"
4068     AC_ARG_WITH(directfb,
4069         [    --with-directfb=PATH  path to directfb],
4070         [ if test "${with_directfb}" != "no" -a -n "${with_directfb}"
4071         then
4072             VLC_ADD_PLUGINS([directfb])
4073             VLC_ADD_CPPFLAGS([directfb],[-I${with_directfb}/include -D_REENTRANT])
4074             VLC_ADD_LDFLAGS([directfb],[-L${with_directfb}/lib -ldirectfb -lfusion -ldirect -lpthread -ljpeg -lz -ldl])
4075         fi ],
4076         [ AC_MSG_ERROR([cannot find directfb headers in ${with_directfb}/include]) ])
4077   fi
4078 fi
4079
4080 dnl
4081 dnl  GGI module
4082 dnl
4083 AC_ARG_ENABLE(ggi,
4084   [  --enable-ggi            GGI support (default disabled)])
4085 if test "${enable_ggi}" = "yes"
4086 then
4087   VLC_ADD_PLUGINS([ggi])
4088   VLC_ADD_LDFLAGS([ggi],[-lggi])
4089   AC_ARG_WITH(ggi,
4090     [    --with-ggi=PATH       path to libggi],
4091     [ if test "${with_ggi}" != "no" -a -n "${with_ggi}"
4092       then
4093         VLC_ADD_CPPFLAGS([ggi],[-I${with_ggi}/include])
4094         VLC_ADD_LDFLAGS([ggi],[-L${with_ggi}/lib])
4095       fi ])
4096 fi
4097
4098 dnl
4099 dnl  Glide module
4100 dnl
4101 AC_ARG_ENABLE(glide,
4102   [  --enable-glide          Glide (3dfx) support (default disabled)])
4103 if test "${enable_glide}" = "yes"
4104 then
4105   CFLAGS_save="${CFLAGS}"
4106   AC_ARG_WITH(glide,
4107     [    --with-glide=PATH     path to libglide],
4108     [ if test "${with_glide}" != "no" -a -n "${with_glide}"
4109       then
4110         VLC_ADD_CPPFLAGS([glide],[-I${with_glide}/include])
4111         VLC_ADD_LDFLAGS([glide],[-L${with_glide}/lib])
4112         CFLAGS="$CFLAGS -I${with_glide}/include"
4113     fi ])
4114    CFLAGS="$CFLAGS -I/usr/include/glide"
4115    AC_CHECK_HEADER(glide.h,[   
4116       VLC_ADD_PLUGINS([glide])
4117       VLC_ADD_LDFLAGS([glide],[-lglide2x -lm])
4118       VLC_ADD_CPPFLAGS([glide],[-I/usr/include/glide])
4119     ],[
4120       AC_MSG_ERROR([You don't have libglide. Install it or do not use --enable-glide])
4121      ])
4122    CFAGS="${CFLAGS_save}"
4123 fi
4124
4125 dnl
4126 dnl  AA plugin
4127 dnl
4128 AC_ARG_ENABLE(aa,
4129   [  --enable-aa             aalib output (default disabled)])
4130 if test "${enable_aa}" = "yes"
4131 then
4132   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
4133   if test "${have_aa}" = "true"
4134   then
4135     VLC_ADD_PLUGINS([aa])
4136     VLC_ADD_LDFLAGS([aa],[-laa])
4137   fi
4138 fi
4139
4140 dnl
4141 dnl  libcaca plugin
4142 dnl
4143 AC_ARG_ENABLE(caca,
4144   [  --enable-caca           libcaca output (default disabled)])
4145 if test "${enable_caca}" = "yes"
4146 then
4147   CACA_PATH="${PATH}"
4148   AC_ARG_WITH(caca-config-path,
4149     [    --with-caca-config-path=PATH caca-config path (default search in \$PATH)],
4150     [ if test "${with_caca_config_path}" != "no"
4151       then
4152         CACA_PATH="${with_caca_config_path}:${PATH}"
4153       fi ])
4154   AC_PATH_PROG(CACA_CONFIG, caca-config, no, ${CACA_PATH})
4155   if test "${CACA_CONFIG}" != "no"
4156   then
4157     VLC_ADD_PLUGINS([caca])
4158     VLC_ADD_CFLAGS([caca],[`${CACA_CONFIG} --cflags`])
4159     VLC_ADD_LDFLAGS([caca],[`${CACA_CONFIG} --plugin-libs`])
4160   fi
4161 fi
4162
4163 dnl
4164 dnl  win32 GDI plugin
4165 dnl
4166 AC_ARG_ENABLE(wingdi,
4167   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
4168 if test "${enable_wingdi}" != "no"; then
4169   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
4170     VLC_ADD_PLUGINS([wingdi])
4171     VLC_ADD_LDFLAGS([wingdi],[-lgdi32])
4172   fi
4173   if test "${SYS}" = "mingwce"; then
4174     VLC_ADD_PLUGINS([wingdi wingapi])
4175   fi
4176 fi
4177
4178 dnl
4179 dnl  Audio plugins
4180 dnl
4181
4182 AC_ARG_WITH(,[Audio plugins:])
4183
4184 dnl
4185 dnl  OSS /dev/dsp module (enabled by default except on win32)
4186 dnl
4187 AC_ARG_ENABLE(oss,
4188   [  --enable-oss            Linux OSS /dev/dsp support (enabled on Linux)])
4189
4190 if test "${enable_oss}" != "no" &&
4191   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
4192    test "${enable_oss}" = "yes")
4193 then
4194   AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h, [
4195     VLC_ADD_PLUGINS([oss])
4196     AC_CHECK_LIB(ossaudio,main,VLC_ADD_LDFLAGS([oss],[-lossaudio]))
4197   ])
4198 fi
4199
4200 dnl
4201 dnl  Esound module
4202 dnl
4203 AC_ARG_ENABLE(esd,
4204   [  --enable-esd            Esound library support (default disabled)],
4205   [if test "${enable_esd}" = "yes"
4206    then
4207      AC_PATH_PROG(ESD_CONFIG, esd-config, no)
4208      if test "${ESD_CONFIG}" != "no"
4209      then
4210        VLC_ADD_PLUGINS([esd])
4211        VLC_ADD_CFLAGS([esd],[`${ESD_CONFIG} --cflags`])
4212        VLC_ADD_LDFLAGS([esd],[`${ESD_CONFIG} --libs`])
4213      fi
4214    fi])
4215
4216 dnl
4217 dnl  Portaudio module
4218 dnl
4219 AC_ARG_ENABLE(portaudio,
4220   [  --enable-portaudio      Portaudio library support (default disabled)],
4221   [if test "${enable_portaudio}" = "yes"
4222    then
4223      VLC_ADD_PLUGINS([portaudio])
4224      VLC_ADD_CXXFLAGS([portaudio],[])
4225      if test "${SYS}" = "mingw32"; then
4226         VLC_ADD_LDFLAGS([portaudio],[-lportaudio -lwinmm -lole32])
4227      else
4228         VLC_ADD_LDFLAGS([portaudio],[-lportaudio])
4229      fi
4230    fi])
4231
4232 dnl
4233 dnl  aRts module -- broken (freeze wxWidgets)
4234 dnl
4235 AC_ARG_ENABLE(arts,
4236  [  --enable-arts           aRts sound server (default disabled)],
4237  [if test "${enable_arts}" = "yes"
4238   then
4239     AC_PATH_PROG(ARTS_CONFIG, artsc-config, no)
4240     if test "${ARTS_CONFIG}" != "no"
4241     then
4242       VLC_ADD_PLUGINS([arts])
4243       VLC_ADD_CFLAGS([arts],[`${ARTS_CONFIG} --cflags`])
4244       VLC_ADD_LDFLAGS([arts],[`${ARTS_CONFIG} --libs `])
4245     fi
4246   fi])
4247
4248 dnl
4249 dnl  ALSA module
4250 dnl
4251 AC_ARG_ENABLE(alsa,
4252   [  --enable-alsa           ALSA sound support for Linux (default enabled)])
4253 if test "${enable_alsa}" != "no"
4254 then
4255   AC_CHECK_HEADER(alsa/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false")
4256   if test "${have_alsa}" = "true"
4257   then
4258     CFLAGS="${CFLAGS_save}"
4259     AC_TRY_COMPILE([#define ALSA_PCM_NEW_HW_PARAMS_API
4260                     #define ALSA_PCM_NEW_SW_PARAMS_API
4261                     #include <alsa/asoundlib.h>],
4262        [void foo() { snd_pcm_hw_params_get_period_time(0,0,0); }],
4263         AC_DEFINE(HAVE_ALSA_NEW_API, 1, Define if ALSA is at least rc4))
4264     VLC_ADD_PLUGINS([alsa])
4265     VLC_ADD_LDFLAGS([alsa],[-lasound -lm -ldl])
4266   else
4267     if test "${enable_alsa}" = "yes"; then
4268       AC_MSG_ERROR([Could not find ALSA development headers])
4269     fi
4270   fi
4271 fi
4272
4273 dnl
4274 dnl  win32 waveOut plugin
4275 dnl
4276 AC_ARG_ENABLE(waveout,
4277   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
4278 if test "${enable_waveout}" != "no"; then
4279   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
4280     VLC_ADD_PLUGINS([waveout])
4281     VLC_ADD_LDFLAGS([waveout],[-lwinmm])
4282   fi
4283   if test "${SYS}" = "mingwce"; then
4284     VLC_ADD_PLUGINS([waveout])
4285   fi
4286 fi
4287
4288 dnl
4289 dnl  CoreAudio plugin
4290 dnl
4291 AC_ARG_ENABLE(macosx-audio,
4292   [  --enable-macosx-audio   Mac OS X audio module (default enabled on MacOS X)])
4293 if test "${enable_macosx-audio}" != "no" &&
4294   (test "${SYS}" = "darwin" || test "${enable_macosx-audio}" = "yes")
4295 then
4296   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h, 
4297     [ VLC_ADD_BUILTINS([auhal])
4298       VLC_ADD_LDFLAGS([auhal],[-framework CoreAudio -framework AudioUnit -framework AudioToolbox])
4299     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
4300 fi
4301
4302 dnl
4303 dnl  Roku HD1000 audio
4304 dnl
4305 AC_ARG_ENABLE(hd1000a,
4306   [  --enable-hd1000a        HD1000 audio module (default enabled on HD1000)])
4307 if test "${enable_hd1000a}" != "no" -a "${CXX}" != "" &&
4308   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
4309    test "${enable_hd1000a}" = "yes")
4310 then
4311   AC_LANG_PUSH([C++])
4312   AC_CHECK_HEADERS(deschutes/libraries/hdmachinex225/PCMAudioPlayer.h, [
4313     VLC_ADD_PLUGINS([hd1000a])
4314     AC_CHECK_LIB(HDMachineX225,main,VLC_ADD_LDFLAGS([hd1000a],[-lHDMachineX225]))  ])
4315   AC_LANG_POP([C++])
4316 fi
4317
4318 dnl
4319 dnl  JACK module
4320 dnl
4321 AC_ARG_ENABLE(jack,
4322  [  --enable-jack           JACK audio module (default disabled)],
4323  [if test "${enable_jack}" = "yes"
4324   then
4325     AC_CHECK_HEADERS(jack/jack.h, [
4326       VLC_ADD_PLUGINS([jack])
4327       VLC_ADD_LDFLAGS([jack],[-ljack]) ])
4328   fi])
4329
4330 dnl
4331 dnl  CyberLink for C++ UPnP stack
4332 dnl
4333 AC_ARG_ENABLE(cyberlink,
4334   [  --enable-cyberlink      CyberLink for C++ UPnP stack (default disabled)])
4335   AS_IF([test "${enable_cyberlink}" = "yes" ], [
4336   AC_ARG_WITH(cyberlink-tree,
4337     [    --with-cyberlink-tree=PATH CyberLink for C++ tree for static linking])
4338
4339   dnl
4340   dnl test for --with-cyberlink-tree
4341   dnl
4342   AS_IF([test ! -z "${with_cyberlink_tree}" -a "${CXX}" != ""], [
4343     AC_LANG_PUSH(C++)
4344     real_cyberlink_tree="`cd ${with_cyberlink_tree} 2>/dev/null && pwd`"
4345     AS_IF([test -z "${real_cyberlink_tree}"], [
4346       dnl  The given directory can't be found
4347       AC_MSG_RESULT(no)
4348       AC_MSG_ERROR([cannot cd to ${with_cyberlink_tree}])
4349     ])
4350     CPPFLAGS_save="${CPPFLAGS}"
4351     CPPFLAGS_cyberlink="-I${real_cyberlink_tree}/include"
4352     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_cyberlink}"
4353     AC_CHECK_HEADERS([cybergarage/upnp/MediaServer.h],
4354       [ VLC_ADD_CXXFLAGS([upnp_cc], [${CPPFLAGS_cyberlink}])
4355         VLC_ADD_PLUGINS([upnp_cc]) 
4356       ],[
4357         AC_MSG_ERROR([cannot find CyberLink for C++ headers])
4358       ])
4359     AC_MSG_CHECKING(for libclink.a in ${with_cyberlink_tree})
4360     AS_IF([test -f "${real_cyberlink_tree}/lib/unix/libclink.a"], [
4361       AC_MSG_RESULT(${real_cyberlink_tree}/lib/unix/libclink.a)
4362       dnl The mere fact that we have to make such an ugly check sucks
4363       AC_MSG_CHECKING(for XML parser to link CyberLink with)
4364       LIBS_save="$LIBS"
4365       LIBS_cclink="no"
4366       for l in "`xml2-config --libs`" -lexpat -lxerces-c; do
4367         LIBS="$LIBS_save ${real_cyberlink_tree}/lib/unix/libclink.a -lpthread $l"
4368         AC_LINK_IFELSE([AC_LANG_PROGRAM([
4369 #include <cybergarage/upnp/media/player/MediaPlayer.h>
4370 using namespace CyberLink;
4371
4372 class testclass : public SearchResponseListener, public MediaPlayer
4373 {
4374     virtual void deviceSearchResponseReceived( SSDPPacket *)
4375     {
4376     }
4377
4378     public:
4379       testclass (void)
4380       {
4381         addSearchResponseListener (this);
4382         start ();
4383       }
4384 };
4385 ],[testclass l;])],[LIBS_cclink="$l"])
4386       done
4387       LIBS="${LIBS_save}"
4388       dnl should not happen - otherwise this needs fixing - hence FAILURE
4389       AS_IF([test "${LIBS_cclink}" = "no"],
4390         [AC_MSG_FAILURE([cannot find XML parser for CyberLink])])
4391       AC_MSG_RESULT([${LIBS_cclink}])
4392       VLC_ADD_LDFLAGS([upnp_cc], [${real_cyberlink_tree}/lib/unix/libclink.a -lpthread ${LIBS_cclink}])
4393     ], [
4394       AC_MSG_RESULT(no)
4395       AC_MSG_ERROR([cannot find ${real_cyberlink_tree}/lib/unix/libclink.a, make sure you compiled CyberLink for C++ in ${with_cyberlink_tree}])
4396     ])
4397     CPPFLAGS="${CPPFLAGS_save}"
4398     AC_LANG_POP([C++])
4399   ])
4400 ])
4401
4402 dnl
4403 dnl UPnP Plugin (Intel SDK)
4404 dnl
4405 AC_ARG_ENABLE(upnp,
4406   [  --enable-upnp           Intel UPnP SDK (default auto)])
4407
4408 VLC_ADD_CXXFLAGS([upnp_intel], [ ])
4409 AS_IF([test "x${enable_upnp}" != "xno"], [
4410   AC_CHECK_LIB([upnp], [UpnpInit], [has_upnp="yes"], [has_upnp="no"], [-lpthread])
4411   AS_IF([test "x${enable_upnp}" != "x" && test "${has_upnp}" = "no"], [
4412     AC_MSG_ERROR([cannot find Intel UPnP SDK (libupnp)])
4413   ])
4414   AS_IF([test "${has_upnp}" = "yes"], [
4415     VLC_ADD_LDFLAGS([upnp_intel], [-lupnp])
4416   ])
4417 ], [
4418   has_upnp="no"
4419 ])
4420
4421 AS_IF([test "${has_upnp}" = "yes"], [
4422   VLC_ADD_PLUGINS([upnp_intel])
4423 ])
4424
4425
4426 dnl
4427 dnl  Interface plugins
4428 dnl
4429
4430 AC_ARG_WITH(,[Interface plugins:])
4431
4432 dnl special case for BeOS
4433 if test "${SYS}" = "beos"
4434 then
4435     VLC_ADD_BUILTINS([beos])
4436 fi
4437
4438 dnl
4439 dnl Skins2 module
4440 dnl
4441 AC_ARG_ENABLE(skins2,
4442   [  --enable-skins2         Skins2 interface module (experimental)])
4443 if test "${enable_skins2}" = "yes" ||
4444   (test "${SYS}" != "darwin" && test "${SYS}" != "beos" &&
4445    test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then
4446
4447   dnl test for the required libraries
4448   skins2_missing_lib="no"
4449
4450   dnl freetype
4451   if test "${FREETYPE_CONFIG}" != "no"; then
4452     VLC_ADD_CPPFLAGS([skins2],[`${FREETYPE_CONFIG} --cflags`])
4453     VLC_ADD_LDFLAGS([skins2],[`${FREETYPE_CONFIG} --libs`])
4454   else
4455     skins2_missing_lib="yes"
4456     if test "${enable_skins2}" = "yes"; then
4457       AC_MSG_ERROR([Could not find freetype (required for skins2)])
4458     fi
4459   fi
4460
4461   if test "${skins2_missing_lib}" = "no" && (test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"); then
4462     VLC_ADD_PLUGINS([skins2])
4463     ALIASES="${ALIASES} svlc"
4464     VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -Imodules/gui/skins2 -DWIN32_SKINS])
4465     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
4466     VLC_ADD_LDFLAGS([skins2],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
4467
4468   else if test "${skins2_missing_lib}" = "no"; then
4469     VLC_ADD_PLUGINS([skins2])
4470     ALIASES="${ALIASES} svlc"
4471     VLC_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 ${X_CFLAGS} -DX11_SKINS])
4472     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
4473     VLC_ADD_LDFLAGS([skins2],[${X_LIBS} ${X_PRE_LIBS} -lXext -lX11])
4474   fi fi
4475 fi
4476
4477
4478 dnl dnl
4479 dnl dnl  Gtk+ module
4480 dnl dnl
4481 dnl AC_ARG_ENABLE(gtk,
4482 dnl   [  --enable-gtk            Gtk+ support (default enabled)])
4483 dnl if test "${enable_gtk}" != "no"
4484 dnl then
4485 dnl   GTK_PATH="${PATH}"
4486 dnl   AC_ARG_WITH(gtk-config-path,
4487 dnl     [    --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)],
4488 dnl     [ if test "${with_gtk_config_path}" != "no"
4489 dnl       then
4490 dnl         GTK_PATH="${with_gtk_config_path}:${PATH}"
4491 dnl       fi ])
4492 dnl   # look for gtk-config
4493 dnl   AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH})
4494 dnl   GTK_CONFIG=${GTK12_CONFIG}
4495 dnl   if test "${GTK_CONFIG}" = "no"
4496 dnl   then
4497 dnl     AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH})
4498 dnl   fi
4499 dnl   if test "${GTK_CONFIG}" != "no"
4500 dnl   then
4501 dnl     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
4502 dnl     then
4503 dnl       AC_MSG_ERROR([Your development package for Gtk+ is too old, you need at least version 1.2.0. Please upgrade and try again. Alternatively you can also configure with --disable-gtk.])
4504 dnl     fi
4505 dnl     if test "${SYS}" != "mingw32"; then
4506 dnl       VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk gthread`])
4507 dnl       VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`])
4508 dnl     else
4509 dnl       VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk`])
4510 dnl       VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`])
4511 dnl     fi
4512 dnl     # now look for the gtk.h header
4513 dnl     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gtk}"
4514 dnl     ac_cv_gtk_headers=yes
4515 dnl     AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [
4516 dnl       ac_cv_gtk_headers=no
4517 dnl       echo "Cannot find gtk development headers."
4518 dnl     ])
4519 dnl     if test "${ac_cv_gtk_headers}" = "yes"
4520 dnl     then
4521 dnl       VLC_ADD_PLUGINS([gtk])
4522 dnl       if test "${SYS}" != "mingw32"; then
4523 dnl         NEED_GTK_MAIN=yes
4524 dnl       fi
4525 dnl       ALIASES="${ALIASES} gvlc"
4526 dnl     fi
4527 dnl     CPPFLAGS="${CPPFLAGS_save}"
4528 dnl   fi
4529 dnl fi
4530 dnl 
4531 dnl
4532 dnl  Gtk+2 module ! Disabled for now as it is unusable and confuses users
4533 dnl
4534 dnl AC_ARG_ENABLE(gtk2,
4535 dnl   [  --enable-gtk2           Gtk2 support (default disabled)])
4536 dnl if test "${enable_gtk2}" = "yes"
4537 dnl then
4538 dnl   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
4539 dnl   VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
4540 dnl   VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
4541 dnl   VLC_ADD_PLUGINS([gtk2])
4542 dnl   if test "${SYS}" != "mingw32"; then
4543 dnl     NEED_GTK2_MAIN=yes
4544 dnl   fi
4545 dnl fi
4546
4547 dnl
4548 dnl  PDA Gtk+2 module
4549 dnl
4550 AC_ARG_ENABLE(pda,
4551   [  --enable-pda            PDA interface needs Gtk2 support (default disabled)])
4552 if test "${enable_pda}" = "yes"
4553 then
4554   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
4555   VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
4556   VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
4557   VLC_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}])
4558   VLC_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}])
4559   VLC_ADD_PLUGINS([pda])
4560   if test "${SYS}" != "mingw32"; then
4561     NEED_GTK2_MAIN=yes
4562   fi
4563 fi
4564
4565 dnl dnl
4566 dnl dnl  Gnome module
4567 dnl dnl
4568 dnl AC_ARG_ENABLE(gnome,
4569 dnl   [  --enable-gnome          Gnome interface support (default disabled)],
4570 dnl   [if test "${enable_gnome}" = "yes"; then
4571 dnl     # look for gnome-config
4572 dnl     AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
4573 dnl     if test -x ${GNOME_CONFIG}
4574 dnl     then
4575 dnl        VLC_ADD_CFLAGS([gnome],[`${GNOME_CONFIG} --cflags gtk gnomeui`])
4576 dnl        VLC_ADD_LDFLAGS([gnome],[`${GNOME_CONFIG} --libs gnomeui | sed 's,-rdynamic,,'`])
4577 dnl     fi
4578 dnl     # now look for the gnome.h header
4579 dnl     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gnome}"
4580 dnl     AC_CHECK_HEADERS(gnome.h, [
4581 dnl       VLC_ADD_PLUGINS([gnome])
4582 dnl       NEED_GTK_MAIN=yes
4583 dnl       NEED_GNOME_MAIN=yes
4584 dnl       ALIASES="${ALIASES} gnome-vlc"
4585 dnl       dnl We need this because of some moronic gnomesupport.h flavours
4586 dnl       AC_MSG_CHECKING(for strndup in gnome.h)
4587 dnl       AC_EGREP_HEADER(strndup,gnome.h,[
4588 dnl         AC_MSG_RESULT(yes)
4589 dnl         AC_DEFINE(STRNDUP_IN_GNOME_H, 1,
4590 dnl                   Define if <gnome.h> defines strndup.)],[
4591 dnl         AC_MSG_RESULT(no)])
4592 dnl      ],[
4593 dnl       AC_MSG_ERROR([Can't find gnome headers. Please install the gnome
4594 dnl developement tools or remove the --enable-gnome option])
4595 dnl      ])
4596 dnl     CPPFLAGS="${CPPFLAGS_save}"
4597 dnl   fi])
4598
4599 dnl
4600 dnl  Gnome2 module ! Disabled for know as it is unuseable and confuses users
4601 dnl
4602 dnl AC_ARG_ENABLE(gnome2,
4603 dnl   [  --enable-gnome2         Gnome2 support (default disabled)])
4604 dnl if test "${enable_gnome2}" = "yes"
4605 dnl then
4606 dnl   PKG_CHECK_MODULES(GNOME2, [libgnomeui-2.0])
4607 dnl   VLC_ADD_CFLAGS([gnome2],[${GNOME2_CFLAGS}])
4608 dnl   VLC_ADD_LDFLAGS([gnome2],[${GNOME2_LIBS}])
4609 dnl   VLC_ADD_PLUGINS([gnome2])
4610 dnl   if test "${SYS}" != "mingw32"; then
4611 dnl     NEED_GNOME2_MAIN=yes
4612 dnl   fi
4613 dnl fi
4614
4615 dnl
4616 dnl  wxWidgets module
4617 dnl
4618 AC_ARG_ENABLE(wxwidgets,
4619   [  --enable-wxwidgets      wxWidgets support (default enabled)])
4620 if test "${enable_wxwindows}" 
4621 then
4622   AC_MSG_WARN(--{en|dis}able-wxwindows is deprecated. Use --{en|dis}able-wxwidgets instead.)
4623 fi
4624
4625 if test "${enable_wxwindows}" = "no"
4626 then
4627   enable_wxwidgets="no"
4628 fi
4629 if test "${enable_wxwidgets}" != "no"
4630 then
4631   WXWIDGETS_PATH="${PATH}"
4632   AC_ARG_WITH(wx-config-path,
4633     [    --with-wx-config-path=PATH wx-config path (default search in \$PATH)],
4634     [ if test "${with_wx_config_path}" != "no"
4635       then
4636         WXWIDGETS_PATH="${with_wx_config_path}:${PATH}"
4637       fi ])
4638   WXWIDGETS_NAME="wx-config"
4639   AC_ARG_WITH(wx-config,
4640     [    --with-wx-config=NAME      wx-config name (default is wx-config)],
4641     [ if test "${with_wx_config}" != "no"
4642       then
4643         WXWIDGETS_NAME="${with_wx_config}"
4644       fi ])
4645   # look for wx-config
4646   AC_PATH_PROG(WX_CONFIG, ${WXWIDGETS_NAME}, no, ${WXWIDGETS_PATH})
4647   if test "${WX_CONFIG}" != "no" -a "${CXX}" != ""
4648   then
4649     if expr 2.3.0 \> `${WX_CONFIG} --version` >/dev/null
4650     then
4651       AC_MSG_ERROR([Your development package for wxWidgets is too old, you need at least version 2.3.0. Please upgrade and try again. Alternatively you can also configure with --disable-wxwidgets.])
4652     fi
4653     AC_LANG_PUSH(C++)
4654     # Turn this error:
4655     #   playlist.cpp:1351: error: ISO C++ forbids cast to non-reference type
4656     # into a warning. However better would be to fix playlist.cpp
4657     AC_CACHE_CHECK([if \$CXX accepts -fpermissive],
4658         [ac_cv_cxx_fpermissive],
4659         [CXXFLAGS="${CXXFLAGS_save} -fpermissive"
4660          AC_TRY_COMPILE([],,ac_cv_cxx_fpermissive=yes,
4661                         ac_cv_cxx_fpermissive=no)])
4662     if test "${ac_cv_cxx_fpermissive}" = "yes"; then
4663       VLC_ADD_CXXFLAGS([wxwidgets],-fpermissive)
4664     fi
4665     VLC_ADD_LDFLAGS([wxwidgets],[`${WX_CONFIG} --libs`])
4666     VLC_ADD_CXXFLAGS([wxwidgets],[`${WX_CONFIG} --cxxflags`])
4667     if ${WX_CONFIG} --unicode
4668     then 
4669       # wxwidgets should provide the following flags but does not
4670       # the following is required to compile for win32
4671       VLC_ADD_CXXFLAGS([wxwidgets],[-D_UNICODE -DUNICODE])
4672     fi
4673     if test "$have_libcdio" = "yes"
4674     then 
4675       VLC_ADD_LDFLAGS([wxwidgets],[$LIBCDIO_LIBS])
4676       VLC_ADD_CXXFLAGS([wxwidgets],[$LIBCDIO_CFLAGS])
4677     else 
4678       AC_MSG_WARN([Probe disc disabled because ok libcdio library not found])
4679     fi
4680
4681     if test "$have_libvcdinfo" = "yes"
4682     then 
4683       VLC_ADD_LDFLAGS([wxwidgets],[$VCDINFO_LIBS])
4684       VLC_ADD_CXXFLAGS([wxwidgets],[$VCDINFO_CFLAGS])
4685     else 
4686       AC_MSG_WARN([VCD information on Probe disc disabled because ok libvcdinfo not found])
4687     fi
4688
4689     # now look for the wxprec.h header
4690     CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_wxwidgets}"
4691     ac_cv_wx_headers=yes
4692     AC_CHECK_HEADERS(wx/wxprec.h, , [
4693       ac_cv_wx_headers=no
4694       echo "Cannot find wxWidgets development headers."
4695     ])
4696     if test "${ac_cv_wx_headers}" = "yes"
4697     then
4698       VLC_ADD_PLUGINS([wxwidgets])
4699       ALIASES="${ALIASES} wxvlc"
4700     fi
4701     CPPFLAGS="${CPPFLAGS_save}"
4702     AC_LANG_POP(C++)
4703   fi
4704 fi
4705
4706 dnl
4707 dnl QT 4
4708 dnl
4709 enableqt4=false
4710 AC_ARG_ENABLE(qt4,
4711   [  --enable-qt4            QT 4 support (default disabled) ],
4712   [if test "${enable_qt4}" = "yes"; then
4713       PKG_CHECK_MODULES(QT4, QtCore QtGui,
4714         [ VLC_ADD_PLUGINS([qt4])
4715           ALIASES="${ALIASES} qvlc"
4716           enableqt4=true
4717           VLC_ADD_LDFLAGS([qt4],[$QT4_LIBS])
4718           VLC_ADD_CXXFLAGS([qt4],[$QT4_CFLAGS])
4719           MOC=`$PKG_CONFIG --variable=exec_prefix QtCore`/bin/moc
4720           RCC=`$PKG_CONFIG --variable=exec_prefix QtCore`/bin/rcc
4721           UIC=`$PKG_CONFIG --variable=exec_prefix QtCore`/bin/uic],
4722        [AC_MSG_WARN(QT4 library not found)])
4723    fi])
4724 AM_CONDITIONAL(ENABLE_QT4, test "$enableqt4" = "true")
4725
4726 dnl
4727 dnl  WinCE GUI module
4728 dnl
4729 if test "${SYS}" = "mingwce"; then
4730   VLC_ADD_BUILTINS([wince])
4731   VLC_ADD_CXXFLAGS([wince],[])
4732   VLC_ADD_LDFLAGS([wince],[-lcommctrl -lcommdlg -laygshell])
4733   dnl Gross hack
4734   VLC_ADD_LDFLAGS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
4735 elif test "${SYS}" = "mingw32"; then
4736   VLC_ADD_CXXFLAGS([wince],[])
4737   VLC_ADD_LDFLAGS([wince],[-lcomctl32 -lcomdlg32 -lgdi32 -lole32])
4738   dnl Gross hack
4739   VLC_ADD_LDFLAGS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
4740 fi
4741
4742 dnl
4743 dnl Simple test for skins2 dependency
4744 dnl
4745 if test "${enable_skins2}" != "no"
4746 then
4747   if test "${WX_CONFIG}" = "no"
4748   then
4749     AC_MSG_ERROR([The skins2 module depends on the wxWidgets 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 wxWidgets development package or alternatively you can also configure with: --disable-wxwidgets --disable-skins2.])
4750   fi
4751 fi
4752
4753 dnl dnl
4754 dnl dnl  Qt module
4755 dnl dnl
4756 dnl AC_ARG_ENABLE(qt,
4757 dnl   [  --enable-qt             Qt interface support (default disabled)],
4758 dnl   [if test "${enable_qt}" = "yes"; then
4759 dnl      VLC_ADD_PLUGINS([qt])
4760 dnl      ALIASES="${ALIASES} qvlc"
4761 dnl      VLC_ADD_LDFLAGS([qt],[-L${QTDIR}/lib])
4762 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt}"
4763 dnl      AC_CHECK_LIB(qt-mt,main,[
4764 dnl        VLC_ADD_LDFLAGS([qt],[-lqt-mt])
4765 dnl      ],[
4766 dnl        AC_CHECK_LIB(qt,main,[
4767 dnl          VLC_ADD_LDFLAGS([qt],[-lqt])
4768 dnl        ])
4769 dnl      ])
4770 dnl      LDFLAGS="${LDFLAGS_save}"
4771 dnl      VLC_ADD_CXXFLAGS([qt],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
4772 dnl      if test -x ${QTDIR}/bin/moc
4773 dnl      then
4774 dnl        MOC=${QTDIR}/bin/moc
4775 dnl      else
4776 dnl        MOC=moc
4777 dnl      fi
4778 dnl    fi])
4779 dnl 
4780 dnl dnl
4781 dnl dnl  KDE module
4782 dnl dnl
4783 dnl AC_ARG_ENABLE(kde,
4784 dnl   [  --enable-kde            KDE interface support (default disabled)],
4785 dnl   [if test "${enable_kde}" = "yes"; then
4786 dnl      VLC_ADD_PLUGINS([kde])
4787 dnl      ALIASES="${ALIASES} kvlc"
4788 dnl      VLC_ADD_LDFLAGS([kde],[-L${KDEDIR}/lib])
4789 dnl      dnl Check for -lkfile (only in KDE 2) or -lkdeui -lkio (KDE 3)
4790 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
4791 dnl      AC_CHECK_LIB(kfile,main,[
4792 dnl        VLC_ADD_LDFLAGS([kde],[-lkfile])
4793 dnl      ])
4794 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
4795 dnl      AC_CHECK_LIB(kdeui,main,[
4796 dnl        VLC_ADD_LDFLAGS([kde],[-lkdeui])
4797 dnl      ])
4798 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
4799 dnl      AC_CHECK_LIB(kio,main,[
4800 dnl        VLC_ADD_LDFLAGS([kde],[-lkio])
4801 dnl      ])
4802 dnl      LDFLAGS="${LDFLAGS_save}"
4803 dnl      VLC_ADD_CXXFLAGS([kde],[-I/usr/include/kde -I/usr/include/qt3 -I/usr/include/qt])
4804 dnl      VLC_ADD_CXXFLAGS([kde],[-I${KDEDIR}/include -I${QTDIR}/include])
4805 dnl      if test -x ${QTDIR}/bin/moc
4806 dnl      then
4807 dnl        MOC=${QTDIR}/bin/moc
4808 dnl      else
4809 dnl        MOC=moc
4810 dnl      fi
4811 dnl    fi])
4812
4813 dnl
4814 dnl  Opie QT embedded module
4815 dnl
4816 AC_ARG_ENABLE(opie,
4817   [  --enable-opie           Qt embedded interface support (default disabled)],
4818   [if test "${enable_opie}" = "yes"; then
4819      AC_ARG_WITH(qte,
4820      [    --with-qte=PATH       Qt Embedded headers and libraries])
4821      if test "${with_qte}" != "no" -a -n "${with_qte}"
4822      then
4823        VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
4824        VLC_ADD_CXXFLAGS([qte],[-I${with_qte}/include `echo -I${with_qte}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti])
4825      else
4826        VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'`])
4827        VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'`])
4828      fi
4829      CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
4830      AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
4831        AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
4832      ] )
4833      CPPFLAGS="${CPPFLAGS_save}"
4834
4835      VLC_ADD_PLUGINS([opie])
4836      NEED_QTE_MAIN=yes
4837      VLC_ADD_LDFLAGS([opie],[-lqpe ${LDFLAGS_qte}])
4838      VLC_ADD_CXXFLAGS([opie],[${CXXFLAGS_qte}])
4839      if test "${with_qte}" != "no" -a -n "${with_qte}"
4840      then
4841        MOC=${with_qte}/bin/moc
4842      else
4843        MOC=${QTDIR}/bin/moc
4844      fi
4845    fi])
4846
4847 dnl
4848 dnl  MacOS X module
4849 dnl
4850 ORIGCFLAGS=$CFLAGS
4851 CFLAGS="$CFLAGS -x objective-c"
4852 AC_ARG_ENABLE(macosx,
4853   [  --enable-macosx         MacOS X support (default enabled on MacOS X)],
4854   [if test "${enable_macosx}" = "yes"
4855    then
4856      VLC_ADD_BUILTINS([macosx])
4857      VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL -framework AGL])
4858      VLC_ADD_OBJCFLAGS( [macosx],[-fobjc-exceptions] )
4859    fi],
4860   [AC_CHECK_HEADERS(Cocoa/Cocoa.h,
4861      VLC_ADD_BUILTINS([macosx])
4862      VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL -framework AGL])
4863      VLC_ADD_OBJCFLAGS( [macosx],[-fobjc-exceptions] )
4864    )])
4865 CFLAGS=$ORIGCFLAGS
4866
4867 dnl
4868 dnl  QNX RTOS module
4869 dnl
4870 AC_ARG_ENABLE(qnx,
4871   [  --enable-qnx            QNX RTOS support (default enabled on QNX RTOS)])
4872     if test "${enable_qnx}" != "no"
4873     then
4874       AC_CHECK_HEADERS(Ph.h, [
4875         VLC_ADD_PLUGINS([qnx])
4876         VLC_ADD_LDFLAGS([qnx],[-lasound -lph])
4877       ])
4878     fi
4879
4880 dnl
4881 dnl  ncurses module
4882 dnl
4883 AC_ARG_ENABLE(ncurses,
4884   [  --enable-ncurses        ncurses interface support (default disabled)],
4885   [if test "${enable_ncurses}" = "yes"; then
4886      VLC_ADD_PLUGINS([ncurses])
4887      VLC_ADD_LDFLAGS([ncurses],[-lncurses])
4888    fi])
4889
4890 dnl
4891 dnl  XOSD plugin
4892 dnl
4893 AC_ARG_ENABLE(xosd,
4894   [  --enable-xosd           xosd interface support (default disabled)])
4895 if test "${enable_xosd}" = "yes"
4896 then
4897   AC_CHECK_HEADER(xosd.h, have_xosd="true", have_xosd="false")
4898   AC_CHECK_LIB(xosd,xosd_set_offset,
4899       AC_DEFINE(HAVE_XOSD_VERSION_1, 1, Define if <xosd.h> is 1.0.x),
4900     AC_CHECK_LIB(xosd,xosd_set_horizontal_offset,
4901         AC_DEFINE(HAVE_XOSD_VERSION_2, 1, Define if <xosd.h> is 2.0.x),
4902       AC_TRY_COMPILE([#include <xosd.h>],
4903          [void foo() { xosd_init("foo","bar",12,XOSD_top,2,12,42); }],,
4904           AC_DEFINE(HAVE_XOSD_VERSION_0, 1, Define if <xosd.h> is pre-1.0.0))))
4905   if test "${have_xosd}" = "true"
4906   then
4907     VLC_ADD_PLUGINS([xosd])
4908     VLC_ADD_LDFLAGS([xosd],[-lxosd])
4909   fi
4910 fi
4911
4912 dnl
4913 dnl Visualisation plugin
4914 dnl
4915 AC_ARG_ENABLE(visual,
4916   [  --enable-visual         visualisation plugin (default enabled)])
4917 if test "${enable_visual}" != "no"
4918 then
4919     VLC_ADD_PLUGINS([visual])
4920 fi
4921
4922 dnl
4923 dnl OpenGL visualisation plugin
4924 dnl
4925 AC_ARG_ENABLE(galaktos,
4926   [  --enable-galaktos       OpenGL visualisation plugin (default disabled)])
4927 if test "${enable_galaktos}" = "yes"
4928 then
4929   AC_CHECK_HEADERS(GL/gl.h GL/glu.h, [
4930     VLC_ADD_PLUGINS([galaktos])
4931     if test "${SYS}" != "mingw32"; then
4932       VLC_ADD_LDFLAGS([galaktos],[${X_LIBS} -lGL -lGLU])
4933     else
4934       VLC_ADD_LDFLAGS([galaktos],[-lopengl32])
4935     fi
4936   ])
4937 fi
4938
4939 dnl
4940 dnl  goom visualization plugin
4941 dnl
4942 AC_ARG_ENABLE(goom,
4943 [  --enable-goom           goom visualisation plugin (default disabled)])
4944 if test "${enable_goom}" = "yes"
4945 then
4946   AC_ARG_WITH(goom-tree,
4947     [    --with-goom-tree=PATH goom tree for static linking (required)])
4948
4949   dnl
4950   dnl test for --with-goom-tree
4951   dnl
4952   if test "${with_goom_tree}" != "no" -a -n "${with_goom_tree}"; then
4953     AC_MSG_CHECKING(for libgoom2.a in ${with_goom_tree})
4954     real_goom_tree="`cd ${with_goom_tree} 2>/dev/null && pwd`"
4955     if test -z "${real_goom_tree}"; then
4956       dnl  The given directory can't be found
4957       AC_MSG_RESULT(no)
4958       AC_MSG_ERROR([cannot cd to ${with_goom_tree}])
4959     fi
4960     if test -f "${real_goom_tree}/src/.libs/libgoom2.a"; then
4961       AC_MSG_RESULT(${real_goom_tree}/src/.libs/libgoom2.a)
4962       VLC_ADD_BUILTINS([goom])
4963       VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree}/src/.libs -lgoom2])
4964       VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree}/src -DUSE_GOOM_TREE])
4965     else
4966       dnl  The given libgoom2 wasn't built, try to look for the old goom
4967       AC_MSG_RESULT(no)
4968       AC_MSG_CHECKING(for libgoom.a in ${with_goom_tree})
4969       if test -f "${real_goom_tree}/libgoom.a"; then
4970         AC_MSG_RESULT(${real_goom_tree}/libgoom.a)
4971         VLC_ADD_BUILTINS([goom])
4972         VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree} -lgoom])
4973         VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree} -DUSE_GOOM_TREE -DOLD_GOOM])
4974       else
4975         dnl  The given libgoom wasn't built
4976         AC_MSG_RESULT(no)
4977         AC_MSG_ERROR([cannot find ${real_goom_tree}/src/.libs/libgoom2.a, make sure you compiled goom in ${with_goom_tree}])
4978       fi
4979     fi
4980   else
4981     AC_CHECK_HEADERS(goom/goom.h, [
4982       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_goom}"
4983       AC_CHECK_LIB(goom2, goom_init, [
4984         VLC_ADD_PLUGINS([goom])
4985         VLC_ADD_LDFLAGS([goom],[-lgoom2])
4986       ],[
4987         AC_MSG_ERROR([Could not find goom on your system: you may get it from http://www.ios-software.com/.])
4988       ])
4989       LDFLAGS="${LDFLAGS_save}"
4990     ])
4991   fi
4992 fi
4993
4994 dnl
4995 dnl DAAP access plugin and services discovery 
4996 dnl
4997 AC_ARG_ENABLE(daap,
4998   [  --enable-daap                DAAP shares services discovery support (default enabled)])
4999 if test "$enable_daap" != "no"
5000 then
5001    PKG_CHECK_MODULES(DAAP, opendaap >= 0.3.0,
5002       [ VLC_ADD_PLUGINS([daap])
5003        VLC_ADD_LDFLAGS([daap],[$DAAP_LIBS])
5004        VLC_ADD_CFLAGS([daap],[$DAAP_CFLAGS])]:,
5005       [AC_MSG_WARN(DAAP library not found)])
5006 fi
5007
5008 dnl
5009 dnl  Bonjour services discovery
5010 dnl
5011 AC_ARG_ENABLE(bonjour,
5012   [  --enable-bonjour        Bonjour services discovery (default enabled)])
5013 if test "${enable_bonjour}" != "no"
5014 then
5015   PKG_CHECK_MODULES(BONJOUR, avahi-client >= 0.3,
5016     [PKG_CHECK_MODULES(BONJOUR, avahi-client >= 0.6,
5017        [AC_DEFINE(HAVE_AVAHI_06, [], [Define if you have avahi-client 0.6 or greater])],)
5018       AC_DEFINE(HAVE_AVAHI_CLIENT, [], [Define if you have the avahi-client library])
5019       VLC_ADD_LDFLAGS([bonjour access_output_http],[$BONJOUR_LIBS])
5020       VLC_ADD_CFLAGS([bonjour access_output_http],[$BONJOUR_CFLAGS])
5021       VLC_ADD_PLUGINS([bonjour]) ],
5022     [AC_MSG_WARN(avahi-client library not found)])
5023 fi
5024
5025 dnl
5026 dnl  Lirc plugin
5027 dnl
5028 AC_ARG_ENABLE(lirc,
5029   [  --enable-lirc           lirc support (default disabled)])
5030 if test "${enable_lirc}" = "yes"
5031 then
5032   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
5033   if test "${have_lirc}" = "true"
5034   then
5035     VLC_ADD_PLUGINS([lirc])
5036     VLC_ADD_LDFLAGS([lirc],[-llirc_client])
5037   fi
5038 fi
5039
5040
5041 dnl
5042 dnl corba (ORBit) plugin
5043 dnl
5044 dnl Default: do not enable corba
5045 enablecorba=false
5046 AC_ARG_ENABLE(corba,
5047   [  --enable-corba          corba interface support (default disabled)])
5048 if test "${enable_corba}" = "yes"; then
5049       GLIB_VERSION=2.3.2
5050       PKG_CHECK_MODULES(CORBA, 
5051         ORBit-2.0 >= 2.8.0 \
5052         glib-2.0 >= $GLIB_VERSION \
5053         gobject-2.0 >= $GLIB_VERSION \
5054         gthread-2.0 >= $GLIB_VERSION,
5055         [
5056           enablecorba=true
5057           VLC_ADD_LDFLAGS([corba],[$CORBA_LIBS])
5058           VLC_ADD_CFLAGS([corba],[$CORBA_CFLAGS])
5059           VLC_ADD_PLUGINS([corba snapshot]) ],
5060         [ enablecorba=false
5061           AC_MSG_WARN(corba library not found) ])
5062 fi
5063 AM_CONDITIONAL(ENABLE_CORBA, test "$enablecorba" = "true")
5064
5065 AC_ARG_WITH(,[Misc options:])
5066
5067 dnl
5068 dnl TLS/SSL
5069 dnl
5070 AC_ARG_ENABLE(gnutls,
5071   [  --enable-gnutls         gnutls TLS/SSL support (default enabled)])
5072
5073 AS_IF([test "${enable_gnutls}" != "no"], [
5074   PKG_CHECK_MODULES(GNUTLS, [gnutls >= 1.2.9], [have_gnutls="yes"], [have_gnutls="no"])
5075
5076   AS_IF([test "${have_gnutls}" = "yes"], [
5077     VLC_ADD_PLUGINS([gnutls])
5078     VLC_ADD_CFLAGS([gnutls], [$GNUTLS_CFLAGS])
5079     VLC_ADD_LDFLAGS([gnutls], [$GNUTLS_LIBS])
5080   ], [
5081     AS_IF([test "${enable_gnutls}" = "yes"], [
5082       AC_MSG_ERROR([gnutls not present or too old (version 1.2.9 required)])
5083     ])
5084   ])
5085 ])
5086
5087
5088 dnl
5089 dnl  Endianness check, AC_C_BIGENDIAN doesn't work if we are cross-compiling
5090 dnl
5091 dnl  We give the user the opportunity to specify
5092 dnl  --with-words=big or --with-words=little ; otherwise, try to guess
5093 dnl
5094 AC_ARG_WITH(words,
5095   [    --with-words=endianness set endianness (big or little)])
5096   case "${with_words}" in
5097     big)
5098       ac_cv_c_bigendian=yes
5099       ;;
5100     little)
5101       ac_cv_c_bigendian=no
5102       ;;
5103     *)
5104       dnl  Try to guess endianness by matching patterns on a compiled
5105       dnl  binary, by looking for an ASCII or EBCDIC string
5106       AC_CACHE_CHECK([whether the byte order is big-endian],
5107         [ac_cv_c_bigendian],
5108         [ac_cv_c_bigendian="unknown"
5109         [cat >conftest.c <<EOF
5110         short am[] = { 0x4249, 0x4765, 0x6e44, 0x6961, 0x6e53, 0x7953, 0 };
5111         short ai[] = { 0x694c, 0x5454, 0x656c, 0x6e45, 0x6944, 0x6e61, 0 };
5112         void _a(void) { char*s = (char*)am; s = (char *)ai; }
5113         short ei[] = { 0x89D3, 0xe3e3, 0x8593, 0x95c5, 0x89c4, 0x9581, 0 };
5114         short em[] = { 0xc2c9, 0xc785, 0x95c4, 0x8981, 0x95e2, 0xa8e2, 0 };
5115         void _e(void) { char*s = (char*)em; s = (char*)ei; }
5116         int main(void) { _a(); _e(); return 0; }
5117 EOF
5118         ]
5119         if test -f conftest.c
5120         then
5121           if ${CC-cc} -c conftest.c -o conftest.o >>config.log 2>&1 \
5122               && test -f conftest.o
5123           then
5124             if test "`strings conftest.o | grep BIGenDianSyS`"
5125             then
5126               ac_cv_c_bigendian="yes"
5127             fi
5128             if test "`strings conftest.o | grep LiTTleEnDian`"
5129             then
5130               ac_cv_c_bigendian="no"
5131             fi
5132           fi
5133         fi
5134       ])
5135       if test "${ac_cv_c_bigendian}" = "unknown"
5136       then
5137         AC_MSG_ERROR([Could not guess endianness, please use --with-words])
5138       fi
5139       ;;
5140   esac
5141 dnl  Now we know what to use for endianness, just put it in the header
5142 if test "${ac_cv_c_bigendian}" = "yes"
5143 then
5144   AC_DEFINE(WORDS_BIGENDIAN, 1, big endian system)
5145 fi
5146
5147 dnl
5148 dnl  DLL loader copied from MPlayer copied from somewhere else (WINE ?)
5149 dnl
5150 loader=false
5151 AC_ARG_ENABLE(loader,
5152   [  --enable-loader         build DLL loader for ELF i386 platforms (default disabled)])
5153 AM_CONDITIONAL(LOADER, [test "${enable_loader}" = "yes"])
5154 AS_IF([test "${enable_loader}" = "yes"],
5155   [ VLC_ADD_PLUGINS([dmo quicktime])
5156     VLC_ADD_CPPFLAGS([dmo],[-I../../../@top_srcdir@/loader])
5157     VLC_ADD_LDFLAGS([dmo],[../../../loader/libloader.la])
5158     VLC_ADD_CPPFLAGS([quicktime],[-I../../@top_srcdir@/loader])
5159     VLC_ADD_LDFLAGS([quicktime],[../../loader/libloader.la])
5160     VLC_ADD_CPPFLAGS([realaudio],[-I../../@top_srcdir@/loader -DLOADER])
5161     VLC_ADD_LDFLAGS([realaudio],[../../loader/libloader.la])
5162   ])
5163
5164 dnl
5165 dnl  Microsoft ActiveX support
5166 dnl
5167 activex=false
5168 AC_ARG_ENABLE(activex,
5169   [  --enable-activex        build a vlc-based ActiveX control (default enabled on Win32)])
5170 if test "${enable_activex}" != "no"
5171 then
5172   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
5173   then
5174     AC_CHECK_PROGS(MIDL, [midl widl], no)
5175     AC_LANG_PUSH(C++)
5176     AC_CHECK_HEADERS(ole2.h olectl.h,
5177       [ VLC_ADD_CXXFLAGS([activex],[-fno-exceptions])
5178         VLC_ADD_LDFLAGS([activex],[-lole32 -loleaut32 -luuid -lshlwapi]) 
5179         AC_CHECK_HEADERS(objsafe.h,
5180           VLC_ADD_CXXFLAGS([activex],[-DHAVE_OBJSAFE_HEADER]),,
5181           [#if HAVE_OLE2_H
5182            #   include <ole2.h>
5183            #endif]
5184         )
5185         activex=:
5186       ],
5187       [ AC_MSG_ERROR([required OLE headers are missing from your system]) ]
5188     )
5189     AC_LANG_POP(C++)
5190   fi
5191 fi
5192 AC_ARG_VAR(MIDL, [Microsoft IDL compiler (Win32 platform only)])
5193 AM_CONDITIONAL(HAS_MIDL_COMPILER, test "${MIDL}" != "no")
5194 AM_CONDITIONAL(BUILD_ACTIVEX,${activex})
5195
5196 dnl
5197 dnl  Mozilla plugin
5198 dnl
5199 mozilla=false
5200 AC_ARG_ENABLE(mozilla,
5201   [  --enable-mozilla        build a vlc-based Mozilla plugin (default disabled)])
5202 AC_ARG_WITH(mozilla-sdk-path,
5203   [    --with-mozilla-sdk-path=PATH path to mozilla sdk])
5204
5205 if test "${enable_mozilla}" = "yes" 
5206 then
5207   dnl currently vlc plugin only needs headers, no xpcom support apis are actually used
5208   need_xpcom_libs=false
5209   if test "${with_mozilla_sdk_path}" = ""
5210   then
5211     AC_PATH_PROG(MOZILLA_CONFIG, mozilla-config, no)
5212     if test "${MOZILLA_CONFIG}" = "no"
5213     then
5214       AC_PATH_PROG(SEAMONKEY_CONFIG, seamonkey-config, no)
5215       if test "${SEAMONKEY_CONFIG}" = "no"
5216       then
5217         AC_PATH_PROG(XULRUNNER_CONFIG, xulrunner-config, no)
5218         if test "${XULRUNNER_CONFIG}" = "no"
5219         then
5220           AC_MSG_ERROR([Please install the Mozilla development tools, mozilla-config was not found.])
5221         else
5222           have_xul=true
5223           MOZILLA_CONFIG="${XULRUNNER_CONFIG}"
5224         fi
5225       else
5226         MOZILLA_CONFIG="${SEAMONKEY_CONFIG}"
5227       fi
5228     fi
5229     
5230     if ${MOZILLA_CONFIG} --defines | grep -q 'MOZ_X11=1'; then
5231       LDFLAGS="${LDFLAGS_save} ${X_LIBS} ${X_PRE_LIBS}"
5232       AC_CHECK_LIB(Xt,XtStrings,
5233        [
5234          VLC_ADD_CPPFLAGS([mozilla],[${X_CFLAGS}])
5235          VLC_ADD_LDFLAGS([mozilla],[${X_LIBS} ${X_PRE_LIBS} -lXt -lX11 -lSM -lICE])
5236 ],
5237        [],
5238        [[${X_LIBS} ${X_PRE_LIBS} -lX11 -lSM -lICE]
5239       ])
5240       LDFLAGS="${LDFLAGS_save}"
5241     fi
5242     
5243       mozilla=:
5244       dnl Workaround for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=150490
5245       VLC_ADD_CPPFLAGS([mozilla],[[`${MOZILLA_CONFIG} --cflags plugin xpcom java | sed 's,-I\([^ ]*\)/mozilla/\([^ ]*\),-I\1/\2 -I\1/mozilla/\2,g' | xargs`]])
5246       if ${need_xpcom_libs}; then
5247          VLC_ADD_LDFLAGS([mozilla],[`${MOZILLA_CONFIG} --libs plugin xpcom`])
5248       else
5249          VLC_ADD_LDFLAGS([mozilla],[`${MOZILLA_CONFIG} --libs plugin`])
5250       fi
5251       CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mozilla}"
5252       AC_CHECK_HEADERS(mozilla-config.h)
5253       CPPFLAGS="${CPPFLAGS_save}"
5254       MOZILLA_SDK_PATH="`${MOZILLA_CONFIG} --prefix`"
5255       XPIDL_INCL="`${MOZILLA_CONFIG} --cflags plugin xpcom java` \
5256       `${MOZILLA_CONFIG} --idlflags plugin xpcom java` "
5257       if ${have_xul}
5258       then
5259         xpidl_path="`${MOZILLA_CONFIG} --prefix`/lib/xulrunner"
5260       else
5261         xpidl_path="`${MOZILLA_CONFIG} --prefix`/bin"
5262       fi        
5263     dnl End of moz_sdk = ""
5264   else
5265     dnl special case for mingw32
5266     if test "${SYS}" = "mingw32"
5267     then
5268       AC_CHECK_TOOL(CYGPATH, cygpath, "")
5269       dnl latest gecko sdk does not have an xpcom directory
5270       if test -d "${with_mozilla_sdk_path}/xpcom"; then
5271           mozilla_sdk_xpcom="/xpcom"
5272       fi
5273     fi
5274   
5275     real_mozilla_sdk="`cd ${with_mozilla_sdk_path} 2>/dev/null && pwd`"
5276     CPPFLAGS="${CPPFLAGS_save} -I${real_mozilla_sdk} -I${real_mozilla_sdk}/include"
5277     AC_CHECK_HEADERS(mozilla-config.h, [
5278       mozilla=:
5279       VLC_ADD_CPPFLAGS([mozilla],[-DXPCOM_GLUE -DHAVE_CPP_MODERN_SPECIALIZE_TEMPLATE_SYNTAX -I${real_mozilla_sdk} -I${real_mozilla_sdk}/include -I${real_mozilla_sdk}/embedstring/include -I${real_mozilla_sdk}/xpcom/include -I${real_mozilla_sdk}/nspr/include -I${real_mozilla_sdk}/string/include -I${real_mozilla_sdk}/plugin/include -I${real_mozilla_sdk}/java/include])
5280       if ${need_xpcom_libs}; then
5281          VLC_ADD_LDFLAGS([mozilla],[-L${real_mozilla_sdk}/embedstring/bin -L${real_mozilla_sdk}/xpcom/bin -L${real_mozilla_sdk}/nspr/bin -L${real_mozilla_sdk}/string/bin -L${real_mozilla_sdk}/lib -lnspr4 -lplds4 -lplc4 -lxpcomglue])
5282          if test "${SYS}" = "mingw32"; then
5283            dnl latest gecko sdk does not have embedstring
5284            if test -d "${real_mozilla_sdk}/embedstring/bin"
5285            then
5286              VLC_ADD_LDFLAGS([mozilla],[-lembedstring -Wl,--kill-at])
5287            fi
5288          fi
5289       fi
5290   
5291       MOZILLA_SDK_PATH="${real_mozilla_sdk}"
5292       XPIDL_INCL="-I${real_mozilla_sdk}${mozilla_sdk_xpcom}/idl"
5293       xpidl_path="${real_mozilla_sdk}${mozilla_sdk_xpcom}/bin"
5294   
5295       if test -n "${CYGPATH}"; then
5296         real_mozilla_sdk="`${CYGPATH} -w ${real_mozilla_sdk}`"
5297         XPIDL_INCL="${XPIDL_INCL} -I\"${real_mozilla_sdk}${mozilla_sdk_xpcom}/idl\""
5298       fi ])
5299     CPPFLAGS="${CPPFLAGS_save}"
5300   fi
5301   
5302   if test "${enable_mozilla}" != "false"
5303   then
5304     AC_PATH_PROG(XPIDL, xpidl, no, ${xpidl_path}:/usr/lib/mozilla:/usr/lib64/mozilla:/usr/lib/xulrunner:/usr/lib64/xulrunner)
5305     if test "${XPIDL}" = "no"; then
5306       AC_MSG_ERROR([Please install the Mozilla development tools, xpidl was not found.])
5307     fi
5308   fi 
5309 fi
5310 AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
5311
5312 dnl
5313 dnl  Mediacontrol Python bindings
5314 dnl
5315 AC_ARG_ENABLE(mediacontrol-python-bindings,
5316   [  --enable-mediacontrol-python-bindings    Enable Python bindings for MediaControl (default disabled)])
5317 dnl TODO: look for python dev headers
5318 AM_CONDITIONAL(BUILD_PYTHON, [test "${enable_mediacontrol_python_bindings}" = "yes"])
5319
5320 dnl
5321 dnl  Java bindings
5322 dnl
5323 AC_ARG_ENABLE(java-bindings,
5324   [  --enable-java-bindings  Enable Java bindings (default disabled)])
5325 if test "${enable_java_bindings}" = "yes"
5326 then
5327   AS_IF([test "x${JAVA_HOME}" == "x"],
5328         [AC_MSG_ERROR([Please set the JAVA_HOME variable to your JDK environment])])
5329   AC_PROG_JAVAC
5330   AC_PROG_JAVA
5331 fi
5332 AM_CONDITIONAL(BUILD_JAVA, [test "${enable_java_bindings}" = "yes"])
5333
5334 dnl
5335 dnl  test plugins
5336 dnl
5337 AC_ARG_ENABLE(testsuite,
5338   [  --enable-testsuite      build test modules (default disabled)])
5339 if test "${enable_testsuite}" = "yes"
5340 then
5341   TESTS="test1 test2 test3 test4"
5342
5343   dnl  we define those so that bootstrap sets the right linker
5344   VLC_ADD_CXXFLAGS([test2],[])
5345   VLC_ADD_OBJCFLAGS([test3],[])
5346   dnl  this one is needed until automake knows what to do
5347   VLC_ADD_LDFLAGS([test3],[-lobjc])
5348
5349   VLC_ADD_PLUGINS([${TESTS}])
5350   #VLC_ADD_BUILTINS([${TESTS}])
5351 fi
5352
5353 dnl
5354 dnl Microsoft Layer for Unicode for WIN9x/ME
5355 dnl
5356 if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
5357 then
5358     AC_CHECK_LIB(unicows, LoadUnicowsSymbol, [
5359         VLC_ADD_LDFLAGS([vlc],[-Wl,--exclude-libs,libunicows.a -lunicows])
5360     ])
5361 fi
5362
5363 dnl
5364 dnl  gtk_main plugin
5365 dnl
5366 if test "${NEED_GTK_MAIN}" != "no"
5367 then
5368     VLC_ADD_PLUGINS([gtk_main])
5369     VLC_ADD_CFLAGS([gtk_main],[${CFLAGS_gtk}])
5370     VLC_ADD_LDFLAGS([gtk_main],[${LDFLAGS_gtk}])
5371 fi
5372
5373 if test "${NEED_GNOME_MAIN}" != "no"
5374 then
5375     VLC_ADD_PLUGINS([gnome_main])
5376     VLC_ADD_CFLAGS([gnome_main],[${CFLAGS_gtk} ${CFLAGS_gnome}])
5377     VLC_ADD_LDFLAGS([gnome_main],[${LDFLAGS_gtk} ${LDFLAGS_gnome}])
5378 fi
5379
5380 if test "${NEED_GTK2_MAIN}" != "no"
5381 then
5382     VLC_ADD_PLUGINS([gtk2_main])
5383     VLC_ADD_CFLAGS([gtk2],[-DNEED_GTK2_MAIN])
5384     VLC_ADD_CFLAGS([pda],[-DNEED_GTK2_MAIN])
5385     VLC_ADD_CFLAGS([gtk2_main],[${CFLAGS_gtk2} ${CFLAGS_pda}])
5386     VLC_ADD_LDFLAGS([gtk2_main],[${LDFLAGS_gtk2} ${LDFLAGS_pda}])
5387 fi
5388
5389 if test "${NEED_GNOME2_MAIN}" != "no"
5390 then
5391     VLC_ADD_PLUGINS([gnome2_main])
5392     VLC_ADD_CFLAGS([gnome2_main],[${CFLAGS_gtk2} ${CFLAGS_gnome2}])
5393     VLC_ADD_LDFLAGS([gnome2_main],[${LDFLAGS_gtk2} ${LDFLAGS_gnome2}])
5394 fi
5395
5396 dnl
5397 dnl  qte_main plugin
5398 dnl
5399 if test "${NEED_QTE_MAIN}" != "no"
5400 then
5401     VLC_ADD_PLUGINS([qte_main])
5402     VLC_ADD_CXXFLAGS([opie qte qt_video],[-DNEED_QTE_MAIN])
5403     VLC_ADD_CXXFLAGS([qte_main],[${CXXFLAGS_qte} ${CXXFLAGS_qt_video}])
5404     VLC_ADD_LDFLAGS([qte_main],[${LDFLAGS_qte} ${LDFLAGS_qt_video}])
5405 fi
5406
5407
5408 dnl
5409 dnl  Plugin and builtin checks
5410 dnl
5411 builtin_support=false
5412 plugin_support=:
5413
5414 dnl Support for plugins - this must be AT THE END
5415 AC_ARG_ENABLE(plugins,
5416   [  --disable-plugins       make all plugins built-in (default plugins enabled)],
5417   [if test "${enable_plugins}" = "no"
5418    then
5419      plugin_support=false
5420    fi])
5421
5422 dnl Automagically disable plugins if there is no system support for
5423 dnl dynamically loadable files (.so, .dll, .dylib).
5424 dnl don't forget vlc-win32 still can load .dll as plugins
5425 if test "${ac_cv_have_plugins}" = "no"
5426 then
5427   echo "*** Your system doesn't have plugin support. All plugins will be built"
5428   echo "statically."
5429   plugin_support=false
5430 fi
5431
5432 dnl Export automake variables
5433 if ${plugin_support}
5434 then
5435   AC_DEFINE(HAVE_DYNAMIC_PLUGINS, 1, Define if we have support for dynamic plugins)
5436   for plugin in `echo ${PLUGINS}`
5437   do
5438     eval "${plugin}_p=yes"
5439   done
5440 else
5441   VLC_ADD_BUILTINS([${PLUGINS}])
5442   PLUGINS=""
5443 fi
5444 AM_CONDITIONAL(HAVE_PLUGINS, ${plugin_support})
5445
5446 [if echo "${BUILTINS}" | grep '[^ ]' >/dev/null 2>&1
5447 then
5448   builtin_support=:
5449   for builtin in `echo ${BUILTINS}`
5450   do
5451     eval "${builtin}_b=yes"
5452   done
5453 fi]
5454 AM_CONDITIONAL(HAVE_BUILTINS, ${builtin_support})
5455
5456 dnl
5457 dnl Pic and shared libvlc stuff
5458 dnl
5459 AS_IF([test "x${enable_shared_libvlc}" = "x"], [enable_shared_libvlc=no])
5460 AM_CONDITIONAL(BUILD_SHARED, [test "${enable_shared_libvlc}" != "no"])
5461 AS_IF([test "${enable_shared_libvlc}" != "no" || test "${enable_libtool}" != "no"], [
5462   AC_DEFINE(HAVE_SHARED_LIBVLC, 1, [Define to 1 if libvlc is built as a shared library.])
5463   FILE_LIBVLC_DLL="!define LIBVLC_DLL libvlc.dll"],
5464   FILE_LIBVLC_DLL="" )
5465 dnl
5466 dnl we need pic on amd64 fo the mozilla plugin
5467
5468 case "${target_cpu}" in
5469      x86_64)
5470         pic=pic
5471         ;;
5472      *)
5473         pic=""
5474         ;;
5475 esac
5476 AC_SUBST(pic)
5477
5478
5479 dnl Import conditional variables generated by bootstrap
5480 VLC_CONDITIONALS
5481
5482 dnl
5483 dnl  Stuff used by the program
5484 dnl
5485 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION} ${CODENAME}", [Simple version string])
5486 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "VLC media player - version ${VERSION} ${CODENAME} - (c) 1996-2006 the VideoLAN team", [Copyright string])
5487 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
5488 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,"${VERSION_MAJOR}", [version major number])
5489 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,"${VERSION_MINOR}", [version minor number])
5490 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,"${VERSION_REVISION}", [version minor number])
5491 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,"${VERSION_EXTRA}", [version minor number])
5492 AC_SUBST(VERSION_MAJOR)
5493 AC_SUBST(VERSION_MINOR)
5494 AC_SUBST(VERSION_REVISION)
5495 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami`", [user who ran configure]) 
5496 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname`", [host which ran configure]) 
5497 AC_DEFINE_UNQUOTED(VLC_COMPILE_DOMAIN, "`dnsdomainname 2>/dev/null || domainname 2>/dev/null || echo unknown`", [domain of the host which ran configure]) 
5498 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1`", [compiler]) 
5499
5500 dnl Old definitions for version-dependant plugins
5501 dnl VLC_SYMBOL="`echo ${VERSION} | sed -e 'y/.-+/___/'`"
5502 dnl AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${VLC_SYMBOL}", [String suffix for module functions])
5503 dnl AC_DEFINE_UNQUOTED(MODULE_SYMBOL, ${VLC_SYMBOL}, [Symbol suffix for module functions])
5504
5505 dnl New definitions with value matching 0.8.6 release
5506 module_symbol="0_8_6b"
5507 AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${module_symbol}", [String suffix for module functions])
5508 AC_DEFINE_UNQUOTED(MODULE_SYMBOL, $module_symbol, [Symbol suffix for module functions])
5509 VLC_ENTRY="vlc_entry__${module_symbol}"
5510 AC_SUBST(VLC_ENTRY)
5511
5512 dnl
5513 dnl  Handle substvars that use $(top_srcdir)
5514 dnl
5515 VLC_CONFIG="top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config"
5516 AC_SUBST(VLC_CONFIG)
5517 CPPFLAGS_save="${CPPFLAGS_save} -I\$(top_srcdir)/include"
5518
5519 dnl
5520 dnl  Restore *FLAGS
5521 dnl
5522 VLC_RESTORE_FLAGS
5523
5524 dnl
5525 dnl  Create the vlc-config script
5526 dnl
5527 LDFLAGS_libvlc="${LDFLAGS_vlc} ${LDFLAGS_builtin}"
5528 for i in `echo "${BUILTINS}" | sed -e 's@[^ ]*/@@g'` ; do LDFLAGS_libvlc="${LDFLAGS_libvlc} ${libdir}/vlc/${i}.a `eval echo '$'{LDFLAGS_${i}}`" ; done
5529
5530 dnl
5531 dnl  Configuration is finished
5532 dnl
5533 AC_SUBST(SYS)
5534 AC_SUBST(ARCH)
5535 AC_SUBST(ALIASES)
5536 AC_SUBST(ASM)
5537 AC_SUBST(MOC)
5538 AC_SUBST(RCC)
5539 AC_SUBST(UIC)
5540 AC_SUBST(WINDRES)
5541 AC_SUBST(MOZILLA_SDK_PATH)
5542 AC_SUBST(XPIDL)
5543 AC_SUBST(XPIDL_INCL)
5544 AC_SUBST(LIBEXT)
5545 AC_SUBST(AM_CPPFLAGS)
5546 AC_SUBST(ALL_LINGUAS)
5547 AC_SUBST(MACOSX_DEPLOYMENT_TARGET)
5548 AC_SUBST(FILE_LIBVLC_DLL)
5549
5550 dnl Import substitutions generated by bootstrap
5551 VLC_SUBSTS
5552
5553 dnl Create vlc-config.in
5554 VLC_OUTPUT_VLC_CONFIG_IN
5555
5556 AC_CONFIG_FILES([
5557   vlc.win32.nsi
5558   Makefile
5559   activex/Makefile
5560   activex/axvlc.inf
5561   bindings/Makefile
5562   bindings/java/Makefile
5563   bindings/java/src/Makefile
5564   bindings/mediacontrol-python/Makefile
5565   doc/Makefile
5566   intl/Makefile
5567   ipkg/Makefile
5568   loader/Makefile
5569   modules/Makefile
5570   mozilla/Makefile
5571   m4/Makefile
5572   po/Makefile.in
5573   share/Makefile
5574   src/Makefile
5575 ])
5576
5577 AC_CONFIG_FILES([
5578   modules/access/Makefile
5579   modules/access/dshow/Makefile
5580   modules/access/dvb/Makefile
5581   modules/access/mms/Makefile
5582   modules/access/cdda/Makefile
5583   modules/access/rtsp/Makefile
5584   modules/access/vcd/Makefile
5585   modules/access/vcdx/Makefile
5586   modules/access/screen/Makefile
5587   modules/access_filter/Makefile
5588   modules/access_output/Makefile
5589   modules/audio_filter/Makefile
5590   modules/audio_filter/channel_mixer/Makefile
5591   modules/audio_filter/converter/Makefile
5592   modules/audio_filter/resampler/Makefile
5593   modules/audio_mixer/Makefile
5594   modules/audio_output/Makefile
5595   modules/codec/Makefile
5596   modules/codec/cmml/Makefile
5597   modules/codec/dmo/Makefile
5598   modules/codec/ffmpeg/Makefile
5599   modules/codec/spudec/Makefile
5600   modules/control/Makefile
5601   modules/control/http/Makefile
5602   modules/control/corba/Makefile
5603   modules/demux/Makefile
5604   modules/demux/asf/Makefile
5605   modules/demux/avi/Makefile
5606   modules/demux/mp4/Makefile
5607   modules/demux/mpeg/Makefile
5608   modules/demux/playlist/Makefile
5609   modules/demux/util/Makefile
5610   modules/gui/Makefile
5611   modules/gui/beos/Makefile
5612   modules/gui/pda/Makefile
5613   modules/gui/macosx/Makefile
5614   modules/gui/qnx/Makefile
5615   modules/gui/qt4/Makefile
5616   modules/gui/skins2/Makefile
5617   modules/gui/wxwidgets/Makefile
5618   modules/gui/wince/Makefile
5619   modules/misc/Makefile
5620   modules/misc/dummy/Makefile
5621   modules/misc/memcpy/Makefile
5622   modules/misc/network/Makefile
5623   modules/misc/testsuite/Makefile
5624   modules/misc/playlist/Makefile
5625   modules/misc/xml/Makefile
5626   modules/misc/probe/Makefile
5627   modules/mux/Makefile
5628   modules/mux/mpeg/Makefile
5629   modules/mux/rtp/Makefile
5630   modules/packetizer/Makefile
5631   modules/services_discovery/Makefile
5632   modules/stream_out/Makefile
5633   modules/stream_out/transrate/Makefile
5634   modules/video_chroma/Makefile
5635   modules/video_filter/Makefile
5636   modules/video_filter/swscale/Makefile
5637   modules/video_output/Makefile
5638   modules/video_output/directx/Makefile
5639   modules/video_output/qte/Makefile
5640   modules/video_output/x11/Makefile
5641   modules/visualization/Makefile
5642   modules/visualization/visual/Makefile
5643   modules/visualization/galaktos/Makefile
5644 ])
5645
5646 dnl Generate makefiles
5647 AC_OUTPUT
5648
5649 # Cannot use AC_CONFIG_FILES([vlc-config]) as is automatically built,
5650 # not provided with the source
5651 ${SHELL} ./config.status --file=vlc-config
5652 chmod 0755 vlc-config
5653
5654 dnl echo "Enabled builtin modules :"
5655 dnl for a in `./vlc-config --target builtin` ; do echo $a; done | sed -e 's,modules\/\(.*\)\/lib\(.*\)\.a,\2 (\1),'
5656
5657 dnl echo "Enabled plugin modules :"
5658 dnl for a in `./vlc-config --target plugin` ; do echo $a; done | sed -e 's,modules\/\(.*\)\/lib\(.*\)_plugin,\2 (\1),'
5659
5660 dnl Shortcut to nice compile message
5661 rm -f compile
5662 echo '#! /bin/sh' >compile
5663
5664 echo "PATH=$PATH LANG=C make \$* 2>&1| \\" >> compile
5665 echo '`sed -ne "s/^top_srcdir *= *//p" < Makefile`/extras/make.pl' >> compile
5666 chmod a+x compile
5667
5668 printf "
5669 vlc configuration
5670 --------------------
5671 vlc version           : ${VERSION}
5672 system                : ${SYS}
5673 architecture          : ${ARCH}
5674 build flavour         : "
5675 test "${enable_debug}" = "yes" && printf "debug "
5676 test "${enable_cprof}" = "yes" && printf "cprof "
5677 test "${enable_gprof}" = "yes" && printf "gprof "
5678 test "${enable_optimizations}" = "yes" && printf "optim "
5679 test "${enable_release}" = "yes" && printf "release " || printf "devel "
5680 echo "
5681 vlc aliases           :${ALIASES}
5682
5683 You can tune the compiler flags in vlc-config.
5684 To build vlc and its plugins, type \`./compile' or \`make'.
5685 "
5686