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