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