]> git.sesse.net Git - vlc/blob - configure.ac
bba8aaed59f529b710625f1d573054589b929c00
[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   ,[shared_libvlc=no])
1376
1377
1378 dnl
1379 dnl Stream output
1380 dnl
1381 AC_ARG_ENABLE(sout,
1382   [  --enable-sout           Stream output modules (default enabled)])
1383 if test "${enable_sout}" != "no"
1384 then
1385   VLC_ADD_PLUGINS([access_output_dummy access_output_udp access_output_file access_output_http])
1386   VLC_ADD_PLUGINS([mux_ps mux_avi mux_mp4 mux_asf mux_dummy mux_wav mux_mpjpeg])
1387   VLC_ADD_PLUGINS([packetizer_copy])
1388
1389   VLC_ADD_PLUGINS([stream_out_dummy stream_out_standard stream_out_es stream_out_rtp stream_out_description vod_rtsp])
1390   VLC_ADD_PLUGINS([stream_out_duplicate stream_out_gather stream_out_display stream_out_transcode stream_out_bridge stream_out_mosaic_bridge])
1391 #  VLC_ADD_PLUGINS([stream_out_transrate])
1392
1393   AC_DEFINE(ENABLE_SOUT, 1, Define if you want the stream output support)
1394 fi
1395
1396 dnl Check for libshout
1397 AC_ARG_ENABLE(shout,
1398   [  --enable-shout          libshout output plugin (default disabled)])
1399 if test "${enable_shout}" = "yes"; then
1400   PKG_CHECK_MODULES(SHOUT, shout >= 2.1,
1401     [AC_DEFINE(HAVE_SHOUT, [], [Define if you have the libshout library])
1402      VLC_ADD_PLUGINS([access_output_shout])
1403      VLC_ADD_LDFLAGS([vlc access_output_shout],[$SHOUT_LIBS])
1404      VLC_ADD_CFLAGS([vlc access_output_shout],[$SHOUT_CFLAGS])],
1405     [AC_MSG_WARN(libshout library not found)])
1406 fi
1407
1408 dnl
1409 dnl HTTP daemon
1410 dnl
1411 AC_ARG_ENABLE(httpd,
1412   [  --enable-httpd          HTTP daemon (default enabled)])
1413 if test "${enable_httpd}" != "no"
1414 then
1415   VLC_ADD_PLUGINS([http])
1416   AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP dameon support)
1417 fi
1418
1419 dnl
1420 dnl VideoLAN manager
1421 dnl
1422 AC_ARG_ENABLE(vlm,
1423   [  --enable-vlm            VideoLAN manager (default enabled)])
1424 if test "${enable_vlm}" != "no"
1425 then
1426   AC_DEFINE(ENABLE_VLM, 1, Define if you want the VideoLAN manager support)
1427 fi
1428
1429 dnl
1430 dnl Growl notification plugin
1431 dnl
1432 AC_ARG_ENABLE(growl,
1433   [  --enable-growl         growl notification plugin (default enabled)])
1434 AS_IF([test "${enable_growl}" != "no"], [
1435     VLC_ADD_PLUGINS([growl])
1436   ]
1437 )
1438
1439
1440 dnl
1441 dnl TLS/SSL
1442 dnl
1443 AC_ARG_ENABLE(gnutls,
1444   [  --enable-gnutls         gnutls TLS/SSL support (default enabled)])
1445 AS_IF([test "${enable_gnutls}" != "no"], [
1446
1447   gcrypt_LIBS="-lgpg-error"
1448   AS_IF([test "${SYS}" = "mingw32"],
1449     [gcrypt_LIBS="${gcrypt_LIBS} -lws2_32"
1450      VLC_ADD_LDFLAGS([gnutls],[-lws2_32])]
1451   )
1452
1453   gnutls_LIBS="-lgcrypt -lz ${gcrypt_LIBS}"
1454
1455   AC_CHECK_HEADER(gcrypt.h,
1456     [AC_CHECK_LIB(gcrypt, gcry_control,
1457       [AC_CHECK_HEADER(gnutls/gnutls.h,
1458         [AC_CHECK_LIB(gnutls, gnutls_certificate_verify_peers2,
1459           [have_gnutls="yes"],[old_gnutls="yes"], ${gnutls_LIBS})])],,
1460      ${gcrypt_LIBS})])
1461
1462   AS_IF([test "${have_gnutls}" = "yes"], [
1463     VLC_ADD_PLUGINS([gnutls])
1464     VLC_ADD_LDFLAGS([gnutls], [-lgnutls ${gnutls_LIBS}])
1465   ], [
1466     AS_IF([test "${enable_gnutls}" = "yes"], [
1467       AC_MSG_ERROR([gnutls not present or too old (version 1.0.17 required)])]
1468     )]
1469   )]
1470 )
1471
1472
1473 dnl
1474 dnl  Input plugins
1475 dnl
1476
1477 AC_ARG_WITH(,[Input plugins:])
1478
1479 dnl  live.com input
1480 dnl
1481 AC_ARG_ENABLE(livedotcom,
1482 [  --enable-livedotcom     live.com RTSP input plugin (default disabled)])
1483 if test "${enable_livedotcom}" = "yes"; then
1484   AC_ARG_WITH(livedotcom-tree,
1485     [    --with-livedotcom-tree=PATH live.com tree for static linking])
1486
1487   dnl
1488   dnl test for --with-livedotcom-tree
1489   dnl
1490   if test -z "${with_livedotcom_tree}" -a "${CXX}" != ""; then
1491     AC_LANG_PUSH(C++)
1492     CPPFLAGS_save="${CPPFLAGS}"
1493     CPPFLAGS_livedotcom="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
1494     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_livedotcom}"
1495     AC_CHECK_HEADERS(liveMedia.hh, [
1496       VLC_ADD_CXXFLAGS([livedotcom], [${CPPFLAGS_livedotcom}])
1497       AC_CHECK_LIB(liveMedia_pic, main, [
1498         # We have -lliveMedia_pic, build plugins
1499         VLC_ADD_PLUGINS([livedotcom])
1500         VLC_ADD_LDFLAGS([livedotcom], [-lliveMedia_pic -lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic])
1501       ], [
1502         AC_CHECK_LIB(liveMedia, main, [
1503           # We only have -lliveMedia, do builtins
1504           VLC_ADD_BUILTINS([livedotcom])
1505           VLC_ADD_LDFLAGS([livedotcom], [-lliveMedia -lgroupsock -lBasicUsageEnvironment -lUsageEnvironment])
1506         ])
1507       ])
1508       if test "${SYS}" = "mingw32"; then
1509         # add ws2_32 for closesocket, select, recv
1510         VLC_ADD_LDFLAGS([livedotcom],[-lws2_32])
1511       fi
1512     ])
1513     CPPFLAGS="${CPPFLAGS_save}"
1514     AC_LANG_POP(C++)
1515   else
1516     AC_MSG_CHECKING(for liveMedia/libliveMedia.a in ${with_livedotcom_tree})
1517     real_livedotcom_tree="`cd ${with_livedotcom_tree} 2>/dev/null && pwd`"
1518     if test -z "${real_livedotcom_tree}"; then
1519       dnl  The given directory can't be found
1520       AC_MSG_RESULT(no)
1521       AC_MSG_ERROR([cannot cd to ${with_livedotcom_tree}])
1522     fi
1523     if test -f "${real_livedotcom_tree}/liveMedia/libliveMedia.a"; then
1524       AC_MSG_RESULT(${real_livedotcom_tree}/liveMedia/libliveMedia.a)
1525
1526       VLC_ADD_BUILTINS([livedotcom])
1527
1528       if test "${SYS}" = "mingw32"; then
1529         # add ws2_32 for closesocket, select, recv
1530         VLC_ADD_LDFLAGS([livedotcom],[-lws2_32])
1531       fi
1532
1533       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/liveMedia -lliveMedia])
1534       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/BasicUsageEnvironment -lBasicUsageEnvironment])
1535       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/groupsock -lgroupsock])
1536       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/UsageEnvironment -lUsageEnvironment])
1537
1538       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/BasicUsageEnvironment/include])
1539       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/groupsock/include])
1540       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/liveMedia/include])
1541       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/UsageEnvironment/include ])
1542     else
1543       dnl  The given live.com wasn't built
1544       AC_MSG_RESULT(no)
1545       AC_MSG_ERROR([cannot find ${real_livedotcom_tree}/liveMedia/libliveMedia.a, make sure you compiled live.com in ${with_livedotcom_tree}])
1546     fi
1547   fi
1548 fi
1549
1550 dnl
1551 dnl dv module: digital video module check for libraw1394
1552 dnl
1553 AC_ARG_ENABLE(dv,
1554 [  --enable-dv             dv input module (default disabled)])
1555 if test "${enable_dv}" = "yes"
1556 then
1557   AC_ARG_WITH(dv-raw1394,
1558   [    --with-dv-raw1394=PATH   libraw1394 headers and libraries])
1559   AC_ARG_WITH(dv-raw1394-tree,
1560   [    --with-dv-raw1394=PATH   libraw1394 tree for static linking])
1561
1562   if test -z "${with_dv_raw1394}" -a "${with_dv_raw1394}" != ""
1563   then
1564     AC_MSG_CHECKING(for raw1394 headers in ${with_dv_raw1394})
1565     if test -f ${with_dv_raw1394}/include/libraw1394/raw1394.h
1566     then
1567       dnl  Use ${with_dv_raw1394}/include/libraw1394/raw1394.h
1568       AC_MSG_RESULT(yes)
1569       VLC_ADD_PLUGINS([access_dv])
1570       VLC_ADD_LDFLAGS([access_dv],[-L${with_dv_raw1394}/lib -lraw1394 -lpthread])
1571       VLC_ADD_CPPFLAGS([access_dv],[-I${with_dv_raw1394}/include])
1572     else
1573       dnl  No libraw1394 could be found, sorry
1574       AC_MSG_RESULT(no)
1575       AC_MSG_ERROR([cannot find ${with_dv_raw1394}/include/libraw1394/raw1394.h])
1576     fi
1577   else
1578     AC_CHECK_HEADERS(libraw1394/raw1394.h,
1579     [ VLC_ADD_PLUGINS([access_dv])
1580         VLC_ADD_LDFLAGS([access_dv],[-lraw1394 -lavc1394])
1581     ],[
1582         if test -n "${enable_dv}"
1583         then
1584           AC_MSG_ERROR([cannot find libraw1394 headers])
1585         fi
1586     ])
1587   fi
1588
1589   dnl Check for static linking of libraw1394
1590   if test -z "${with_dv_raw1394_tree}" -a "${with_dv_raw1394_tree}" != ""
1591   then
1592     AC_MSG_CHECKING(for libraw1394.a in ${with_dv_raw1394_tree})
1593     real_dv_raw1394_tree="`cd ${with_dv_raw1394_tree} 2>/dev/null && pwd`"
1594     if test -z "${real_dv_raw1394_tree}"
1595     then
1596       dnl  The given directory can't be found
1597       AC_MSG_RESULT(no)
1598       AC_MSG_ERROR([cannot cd to ${real_dv_raw1394_tree}])
1599     fi
1600     if test -f "${real_dv_raw1394_tree}/src/.libs/libraw1394.a"
1601     then
1602       dnl  Use a custom libraw1394
1603       AC_MSG_RESULT(${real_dv_raw1394_tree}/src/.libs/libraw1394.a)
1604       VLC_ADD_BUILTINS([access_dv])
1605       VLC_ADD_LDFLAGS([access_dv],[-L${real_dv_raw1394_tree}/src/.libs -lraw1394])
1606       VLC_ADD_CPPFLAGS([access_dv],[-I${real_dv_raw1394_tree}])
1607     else
1608       dnl  The given libraw1394 wasn't built
1609       AC_MSG_RESULT(no)
1610       AC_MSG_ERROR([cannot find ${real_dv_raw1394_tree}/src/.libs/libraw1394.a, make sure you compiled libraw1394 in ${with_dv_raw1394_tree}])
1611     fi
1612   fi
1613
1614   dnl
1615   dnl Check for libavc1394
1616   dnl
1617
1618   AC_ARG_WITH(dv-avc1394,
1619   [    --with-dv-avc1394=PATH   libavc1394 headers and libraries])
1620   AC_ARG_WITH(dv-avc1394-tree,
1621   [    --with-dv-avc1394=PATH   libavc1394 tree for static linking])
1622
1623   if test -z "${with_dv_avc1394}" -a "${with_dv_avc1394}" != ""
1624   then
1625     AC_MSG_CHECKING(for avc1394 headers in ${with_dv_avc1394})
1626     if test -f ${with_dv_avc1394}/include/libavc1394/avc1394.h
1627     then
1628       dnl  Use ${with_dv_avc1394}/include/libavc1394/avc1394.h
1629       AC_MSG_RESULT(yes)
1630       VLC_ADD_LDFLAGS([access_dv],[-L${with_dv_avc1394}/lib -lavc1394 -lrom1394 -lpthread])
1631       VLC_ADD_CPPFLAGS([access_dv],[-I${with_avc1394}/include])
1632     else
1633       dnl  No libavc1394 could be found, sorry
1634       AC_MSG_RESULT(no)
1635       AC_MSG_ERROR([cannot find ${with_dv_avc1394}/include/libavc1394/avc1394.h])
1636     fi
1637   else
1638     AC_CHECK_HEADERS(libavc1394/avc1394.h,
1639     [ VLC_ADD_LDFLAGS([access_dv],[-lavc1394 -lrom1394 -lpthread])
1640     ],[
1641         if test -n "${enable_dv}"
1642         then
1643           AC_MSG_ERROR([cannot find libavc1394 headers])
1644         fi
1645     ])
1646   fi
1647
1648   dnl Check for static linking of libavc1394
1649   if test -z "${with_dv_avc1394_tree}" -a "${with_dv_avc1394_tree}" != ""
1650   then
1651     AC_MSG_CHECKING(for libavc1394.a in ${with_dv_avc1394_tree})
1652     real_dv_avc1394_tree="`cd ${with_dv_avc1394_tree} 2>/dev/null && pwd`"
1653     if test -z "${real_dv_avc1394_tree}"
1654     then
1655       dnl  The given directory can't be found
1656       AC_MSG_RESULT(no)
1657       AC_MSG_ERROR([cannot cd to ${real_dv_avc1394_tree}])
1658     fi
1659     if test -f "${real_dv_avc1394_tree}/src/.libs/libavc1394.a"
1660     then
1661       dnl  Use a custom libavc1394
1662       AC_MSG_RESULT(${real_dv_avc1394_tree}/src/.libs/libavc1394.a)
1663       VLC_ADD_LDFLAGS([access_dv],[-L${real_dv_avc1394_tree}/src/.libs -lavc1394 -lrom1394 -lpthread])
1664       VLC_ADD_CPPFLAGS([access_dv],[-I${real_dv_avc1394_tree}])
1665     else
1666       dnl  The given libavc1394 wasn't built
1667       AC_MSG_RESULT(no)
1668       AC_MSG_ERROR([cannot find ${real_dv_avc1394_tree}/src/.libs/libavc1394.a, make sure you compiled libavc1394 in ${with_dv_avc1394_tree}])
1669     fi
1670   fi
1671 fi
1672
1673 dnl
1674 dnl dvdread module: check for libdvdread
1675 dnl
1676 AC_ARG_ENABLE(dvdread,
1677 [  --enable-dvdread        dvdread input module (default disabled)])
1678 if test "${enable_dvdread}" != "no"
1679 then
1680   AC_ARG_WITH(dvdread,
1681   [    --with-dvdread=PATH   libdvdread headers and libraries])
1682   AC_ARG_WITH(dvdread-tree,
1683   [    --with-dvdread-tree=PATH libdvdread tree for static linking])
1684
1685   dnl Temporary hack (yeah, sure ;)
1686   if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
1687       VLC_ADD_LDFLAGS([dvdread],[-ldvdcss])
1688   fi
1689
1690   if test -z "${with_dvdread}"
1691   then
1692     if test -z "${with_dvdread_tree}"
1693     then
1694       AC_CHECK_HEADERS(dvdread/dvd_reader.h,
1695         [ VLC_ADD_PLUGINS([dvdread])
1696           VLC_ADD_LDFLAGS([dvdread],[-ldvdread ${LDFLAGS_dvdcss}])
1697         ],[
1698           if test -n "${enable_dvdread}"
1699           then
1700             AC_MSG_ERROR([cannot find libdvdread headers])
1701           fi
1702         ])
1703     else
1704       AC_MSG_CHECKING(for libdvdread.a in ${with_dvdread_tree})
1705       real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`"
1706       if test -z "${real_dvdread_tree}"
1707       then
1708         dnl  The given directory can't be found
1709         AC_MSG_RESULT(no)
1710         AC_MSG_ERROR([cannot cd to ${with_dvdread_tree}])
1711       fi
1712       if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a"
1713       then
1714         dnl  Use a custom libdvdread
1715         AC_MSG_RESULT(${real_dvdread_tree}/dvdread/.libs/libdvdread.a)
1716         VLC_ADD_BUILTINS([dvdread])
1717         VLC_ADD_LDFLAGS([dvdread],[-L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LDFLAGS_dvdcss}])
1718         VLC_ADD_CPPFLAGS([dvdread],[-I${real_dvdread_tree}])
1719       else
1720         dnl  The given libdvdread wasn't built
1721         AC_MSG_RESULT(no)
1722         AC_MSG_ERROR([cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}])
1723       fi
1724     fi
1725   else
1726     AC_MSG_CHECKING(for dvdread headers in ${with_dvdread})
1727     if test -f ${with_dvdread}/include/dvdread/dvd_reader.h
1728     then
1729       dnl  Use ${with_dvdread}/include/dvdread/dvd_reader.h
1730       AC_MSG_RESULT(yes)
1731       VLC_ADD_PLUGINS([dvdread])
1732       VLC_ADD_LDFLAGS([dvdread],[-L${with_dvdread}/lib -ldvdread ${LDFLAGS_dvdcss}])
1733       VLC_ADD_CPPFLAGS([dvdread],[-I${with_dvdread}/include])
1734     else
1735       dnl  No libdvdread could be found, sorry
1736       AC_MSG_RESULT(no)
1737       AC_MSG_ERROR([cannot find ${with_dvdread}/include/dvdread/dvd_reader.h])
1738     fi
1739   fi
1740 fi
1741
1742 dnl
1743 dnl  libdvdnav plugin
1744 dnl
1745 AC_ARG_ENABLE(dvdnav,
1746   [  --enable-dvdnav         dvdnav input module (default enabled)])
1747 if test "${enable_dvdnav}" != "no"
1748 then
1749   dnl Same hack than dvdread
1750   if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
1751       VLC_ADD_LDFLAGS([dvdnav],[-ldvdcss])
1752   fi
1753
1754   DVDNAV_PATH="${PATH}"
1755   AC_ARG_WITH(dvdnav-config-path,
1756     [    --with-dvdnav-config-path=PATH dvdnav-config path (default search in \$PATH)],
1757     [ if test "${with_dvdnav_config_path}" != "no"
1758       then
1759         DVDNAV_PATH="${with_dvdnav_config_path}:${PATH}"
1760       fi ])
1761   AC_PATH_PROG(DVDNAV_CONFIG, dvdnav-config, no, ${DVDNAV_PATH})
1762   if test "${DVDNAV_CONFIG}" != "no"
1763   then
1764     VLC_ADD_PLUGINS([dvdnav])
1765     VLC_ADD_CFLAGS([dvdnav],[`${DVDNAV_CONFIG} --cflags`])
1766     VLC_ADD_LDFLAGS([dvdnav],[`${DVDNAV_CONFIG} --libs`])
1767   fi
1768 fi
1769
1770 dnl
1771 dnl  Windows DirectShow access module
1772 dnl
1773 AC_ARG_ENABLE(dshow,
1774   [  --enable-dshow          Win32 DirectShow support (default enabled on Win32)])
1775 if test "${enable_dshow}" != "no"
1776 then
1777   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
1778   then
1779     AC_LANG_PUSH(C++)
1780       AC_CHECK_HEADERS(dshow.h,
1781       [ VLC_ADD_PLUGINS([dshow])
1782         VLC_ADD_CXXFLAGS([dshow],[])
1783         VLC_ADD_LDFLAGS([dshow],[-lole32 -loleaut32 -luuid]) ])
1784     AC_LANG_POP(C++)
1785   fi
1786 fi
1787
1788 dnl
1789 dnl  libsmbclient plugin
1790 dnl
1791 AC_ARG_ENABLE(smb,
1792   [  --enable-smb            smb input module (default enabled)])
1793 if test "${enable_smb}" != "no"; then
1794   AC_CHECK_HEADERS(libsmbclient.h,
1795     [ VLC_ADD_PLUGINS([access_smb])
1796       VLC_ADD_LDFLAGS([access_smb],[-lsmbclient]) ],
1797     [ if test -n "${enable_smb}"; then
1798         AC_MSG_ERROR([cannot find libsmbclient headers])
1799      fi ])
1800   AC_CHECK_MEMBER([struct _SMBCCTX.close_fn],
1801     AC_DEFINE([HAVE__SMBCCTX_CLOSE_FN], [1], [Define if samba has _SMBCCTX.close_fn]),,
1802     [#include <libsmbclient.h>])
1803 fi
1804
1805 dnl
1806 dnl  libdvbpsi ts demux/mux
1807 dnl
1808 AC_ARG_ENABLE(dvbpsi,
1809   [  --enable-dvbpsi         dvbpsi ts mux and demux module (default enabled)])
1810 if test "${enable_dvbpsi}" != "no"
1811 then
1812   AC_ARG_WITH(dvbpsi,
1813   [    --with-dvbpsi=PATH    libdvbpsi headers and libraries])
1814   AC_ARG_WITH(dvbpsi,
1815   [    --with-dvbpsi-tree=PATH libdvbpsi tree for static linking])
1816   case "${with_dvbpsi}" in
1817   ""|yes)
1818     if test -z "${with_dvbpsi_tree}"
1819     then
1820       AC_CHECK_HEADERS(dvbpsi/dr.h,
1821         [ VLC_ADD_PLUGINS([ts])
1822           if test "${enable_sout}" != "no"; then
1823             VLC_ADD_BUILTINS([mux_ts])
1824           fi
1825           VLC_ADD_LDFLAGS([mux_ts ts dvb],[-ldvbpsi]) ],
1826         [  AC_MSG_WARN([cannot find libdvbpsi headers]) ],
1827         [#if defined( HAVE_STDINT_H )
1828 #   include <stdint.h>
1829 #elif defined( HAVE_INTTYPES_H )
1830 #   include <inttypes.h>
1831 #endif
1832 #include <dvbpsi/dvbpsi.h>
1833 #include <dvbpsi/descriptor.h>
1834 #include <dvbpsi/pat.h>
1835 #include <dvbpsi/pmt.h>])
1836     else
1837       AC_MSG_CHECKING(for libdvbpsi.a in ${with_dvbpsi_tree})
1838       real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
1839       if test -z "${real_dvbpsi_tree}"
1840       then
1841         dnl  The given directory can't be found
1842         AC_MSG_RESULT(no)
1843         AC_MSG_ERROR([cannot cd to ${with_dvbpsi_tree}])
1844       fi
1845       if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
1846       then
1847         dnl  Use a custom libdvbpsi
1848         AC_MSG_RESULT(${real_dvbpsi_tree}/src/.libs/libdvbpsi.a)
1849         VLC_ADD_BUILTINS([ts])
1850         if test "${enable_sout}" != "no"; then
1851           VLC_ADD_BUILTINS([mux_ts])
1852         fi
1853         VLC_ADD_CPPFLAGS([mux_ts ts dvb],[-I${real_dvbpsi_tree}/src])
1854         VLC_ADD_LDFLAGS([mux_ts ts dvb],[${real_dvbpsi_tree}/src/.libs/libdvbpsi.a])
1855       else
1856         dnl  The given libdvbpsi wasn't built
1857         AC_MSG_RESULT(no)
1858         AC_MSG_ERROR([cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}])
1859       fi
1860     fi
1861   ;;
1862   no)
1863     dnl  Compile without dvbpsi
1864   ;;
1865   *)
1866     AC_MSG_CHECKING(for dvbpsi headers in ${with_dvbpsi})
1867     if test -z "${with_dvbpsi}"
1868     then
1869       LDFLAGS_test=""
1870       CPPFLAGS_test=""
1871     else
1872       LDFLAGS_test="-L${with_dvbpsi}/lib"
1873       CPPFLAGS_test="-I${with_dvbpsi}/include"
1874     fi
1875     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}"
1876     AC_CHECK_HEADERS([dvbpsi/dr.h],[
1877       VLC_ADD_PLUGINS([ts])
1878       if test "${enable_sout}" != "no"; then
1879         VLC_ADD_PLUGINS([mux_ts])
1880       fi
1881       VLC_ADD_CPPFLAGS([mux_ts ts dvb],[${CPPFLAGS_test}])
1882       VLC_ADD_LDFLAGS([mux_ts ts dvb],[${LDFLAGS_test} -ldvbpsi])
1883
1884     ],[
1885       if test -n "${enable_dvbpsi}"
1886       then
1887         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])
1888       fi
1889     ])
1890     CPPFLAGS="${CPPFLAGS_save}"
1891   ;;
1892   esac
1893   AC_CHECK_LIB(dvbpsi, dvbpsi_GenSDTSections, [
1894     AC_DEFINE(HAVE_DVBPSI_SDT, 1, [Define if you have dvbpsi_GenSDTSections.])
1895   ], [], [${LDFLAGS_ts}])
1896
1897 fi
1898
1899 dnl
1900 dnl  Video4Linux plugin
1901 dnl
1902 AC_ARG_ENABLE(v4l,
1903   [  --enable-v4l            Video4Linux input support (default disabled)])
1904 if test "${enable_v4l}" = "yes"
1905 then
1906   AC_ARG_WITH(v4l,
1907     [    --with-v4l=PATH       path to a v4l-enabled kernel tree],[],[])
1908   if test "${with_v4l}" != "no" -a -n "${with_v4l}"
1909   then
1910     VLC_ADD_CPPFLAGS([v4l],[-I${with_v4l}/include])
1911   fi
1912
1913   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l}"
1914   AC_CHECK_HEADERS(linux/videodev.h, [
1915     VLC_ADD_PLUGINS([v4l])
1916   ],[])
1917   CPPFLAGS="${CPPFLAGS_save}"
1918 fi
1919
1920 dnl
1921 dnl  special access module for Hauppauge PVR cards
1922 dnl
1923 AC_ARG_ENABLE(pvr,
1924   [  --enable-pvr            PVR cards access module (default disabled)])
1925 if test "${enable_pvr}" = "yes"
1926 then
1927   VLC_ADD_PLUGINS([pvr])
1928 fi
1929
1930 dnl
1931 dnl  gnomeVFS access module
1932 dnl
1933 AC_ARG_ENABLE(gnomevfs,
1934   [  --enable-gnomevfs       GnomeVFS access module (default enabled)])
1935 if test "${enable_gnomevfs}" != "no" -a  "${SYS}" = "linux" 
1936 then
1937   PKG_CHECK_MODULES(GNOMEVFS, gnome-vfs-2.0,
1938     VLC_ADD_LDFLAGS([access_gnomevfs],[$GNOMEVFS_LIBS])
1939     VLC_ADD_CPPFLAGS([access_gnomevfs],[$GNOMEVFS_CPPFLAGS])
1940     VLC_ADD_CFLAGS([access_gnomevfs],[$GNOMEVFS_CFLAGS])
1941     VLC_ADD_PLUGINS([access_gnomevfs]),
1942     AC_MSG_WARN([GnomeVFS support disabled because GnomeVFS development headers not found]))
1943 fi
1944
1945 dnl Need to test libcdio and libvcdinfo for a number of things. Do it now.
1946 AC_ARG_ENABLE(libcdio,
1947   [  --enable-libcdio        CD input and control library support (default enabled)])
1948
1949
1950 have_libcdio=no
1951 have_libvcdinfo=no
1952 if test "${enable_libcdio}" != "no"
1953 then
1954   PKG_CHECK_MODULES(LIBCDIO, libcdio >= 0.72,
1955      have_libcdio=yes
1956      AC_DEFINE(HAVE_LIBCDIO, [], 
1957      [Define if you have libcdio 0.72 or greater installed]),
1958      [AC_MSG_WARN(CD Reading and information library not found)])
1959
1960   PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.21,
1961      [have_libvcdinfo=yes
1962      AC_DEFINE(HAVE_VCDINFO, [], 
1963      [Define if you have libvcdinfo 0.7.21 or greater installed])],
1964      [AC_MSG_WARN(VCD information library not found)])
1965 fi
1966
1967 dnl
1968 dnl  VCDX and CDDAX modules
1969 dnl
1970 AC_ARG_ENABLE(cddax,
1971   [  --enable-cddax          audio CD plugin with CD Text and CD paranoia via libcdio (default disabled)])
1972  
1973 AC_ARG_ENABLE(libcddb,
1974   [  --enable-libcddb        CDDB support for libcdio audio CD (default enabled)])
1975  
1976 if test "${enable_cddax}" = "yes"
1977 then
1978   if test "$have_libcdio" = "yes"
1979   then
1980     AC_DEFINE(HAVE_CDDAX, [], [Define for the audio CD plugin using libcdio])
1981     VLC_ADD_LDFLAGS([cddax],[$LIBCDIO_LIBS])
1982     VLC_ADD_CFLAGS([cddax],[$LIBCDIO_CFLAGS])
1983     VLC_ADD_PLUGINS([cddax])
1984     PKG_CHECK_MODULES(LIBCDIO_PARANOIA, libcdio_paranoia >= 0.72, [
1985     VLC_ADD_LDFLAGS([cddax],[$LIBCDIO_CDDA_LIBS $LIBCDIO_CDDA_LIBS $LIBCDIO_PARANOIA_LIBS])],
1986     AC_MSG_WARN([CD Paranoia support disabled because no libcdio >= 0.72 found]))
1987   else 
1988     AC_MSG_WARN([cddax plugin disabled because ok libcdio library not found or disabled])
1989     HAVE_CDDAX=no
1990   fi
1991
1992   if test "$enable_libcddb" != "no"; then
1993     PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.5, [
1994       HAVE_LIBCDDB=yes 
1995       AC_DEFINE(HAVE_LIBCDDB, [], [Define this if you have libcddb installed])
1996       VLC_ADD_LDFLAGS([cddax],[$LIBCDDB_LIBS])
1997       VLC_ADD_CFLAGS([cddax],[$LIBCDDB_CFLAGS])
1998       ],
1999       [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled) 
2000       HAVE_LIBCDDB=no])
2001   fi
2002  
2003 fi
2004
2005 AC_ARG_ENABLE(vcdx,
2006   [  --enable-vcdx           VCD with navigation via libvcdinfo (default disabled)])
2007  
2008 if test "${enable_vcdx}" = "yes"
2009 then
2010   if test "${have_libvcdinfo}" = "yes"
2011   then
2012     VLC_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
2013     VLC_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
2014   else 
2015     AC_MSG_WARN([vcdx plugin disabled because ok libvcdinfo library not found or disabled])
2016     HAVE_VCDX=no
2017   fi
2018
2019   PKG_CHECK_MODULES(LIBCDIO, libiso9660 >= 0.72,
2020    [VLC_ADD_LDFLAGS([vcdx],[$LIBISO9660_LIBS])
2021     VLC_ADD_CFLAGS([vcdx],[$LIBISO9660_CFLAGS])],
2022     [AC_MSG_WARN([vcdx plugin disabled because ok libiso9660 library not found])
2023     HAVE_VCDX=no])
2024
2025   if test "$have_libvcdinfo" = "yes"
2026   then
2027     AC_DEFINE(HAVE_VCDX, [], 
2028     [Define for the VCD plugin using libcdio/libvcdinfo])
2029     VLC_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
2030     VLC_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
2031     VLC_ADD_PLUGINS([vcdx])
2032   else 
2033     AC_MSG_WARN([vcdx plugin disabled because ok libvcdinfo library not found])
2034     HAVE_VCDX=no
2035   fi
2036 fi
2037
2038 dnl
2039 dnl  Built-in CD-DA and VCD module
2040 dnl
2041 AC_ARG_ENABLE(cdda,           
2042   [  --enable-cdda           audio CD via built-in VCD (default enabled)])
2043  
2044 AC_ARG_ENABLE(vcd,
2045   [  --enable-vcd            built-in VCD (default enabled)])
2046
2047 if test "${enable_vcd}" != "no"
2048 then
2049   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
2050   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
2051     AC_MSG_RESULT(yes)
2052     VLC_ADD_PLUGINS([vcd cdda])
2053   ],[
2054     AC_MSG_RESULT(no)
2055   ])
2056
2057   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
2058   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
2059     AC_MSG_RESULT(yes)
2060     VLC_ADD_PLUGINS([vcd cdda])
2061     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
2062   ],[
2063     AC_MSG_RESULT(no)
2064   ])
2065
2066   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
2067   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
2068     AC_MSG_RESULT(yes)
2069     VLC_ADD_PLUGINS([vcd cdda])
2070     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
2071   ],[
2072     AC_MSG_RESULT(no)
2073   ])
2074
2075   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32"
2076   then
2077     VLC_ADD_PLUGINS([vcd cdda])
2078   fi
2079
2080   if test "${SYS}" = "darwin"
2081   then
2082     VLC_ADD_PLUGINS([vcd cdda])
2083     VLC_ADD_LDFLAGS([vcd vcdx cdda cddax],[-framework IOKit -framework CoreFoundation])
2084     VLC_ADD_LDFLAGS([vcdx cddax cdda],[-liconv])
2085   fi
2086
2087   if test "$enable_libcddb" != "no"; then
2088     PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.5, [
2089       HAVE_LIBCDDB=yes 
2090       AC_DEFINE(HAVE_LIBCDDB, [], [Define this if you have libcddb installed])
2091       VLC_ADD_LDFLAGS([cdda],[$LIBCDDB_LIBS])
2092       VLC_ADD_CFLAGS([cdda],[$LIBCDDB_CFLAGS])
2093       ],:
2094       [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled) 
2095       HAVE_LIBCDDB=no])
2096   fi
2097 fi
2098
2099 dnl
2100 dnl  DVB-S/DVB-T/DVB-C satellite/teresterial/cable input using v4l2
2101 dnl
2102 AC_ARG_ENABLE(dvb,
2103   [  --enable-dvb            DVB-S/T/C card support (default disabled)])
2104
2105 if test "${enable_dvb}" = "yes"
2106 then
2107   AC_ARG_WITH(dvb,
2108   [    --with-dvb=PATH       path to a dvb- and v4l2-enabled kernel tree],[],[])
2109   if test "${with_dvb}" != "no" -a -n "${with_dvb}"
2110   then
2111     VLC_ADD_CFLAGS([dvb],[-I${with_dvb}/include])
2112   fi
2113   CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include"
2114   AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [
2115     if test -z "${with_dvbpsi_tree}"
2116     then
2117       VLC_ADD_PLUGINS([dvb])
2118     else
2119       VLC_ADD_BUILTINS([dvb])
2120     fi
2121   ],[AC_MSG_WARN(linux-dvb headers not found, dvb disabled)])
2122   CPPFLAGS="${CPPFLAGS_save}"
2123 fi
2124
2125 dnl
2126 dnl  Screen capture module
2127 dnl
2128 AC_ARG_ENABLE(screen,
2129   [  --enable-screen         Screen capture support (default enabled)])
2130 if test "${enable_screen}" != "no"; then
2131   if test "${SYS}" = "darwin"; then
2132     AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
2133       VLC_ADD_PLUGINS([screen])
2134       VLC_ADD_LDFLAGS([screen],[-framework ApplicationServices])
2135     ])
2136   elif test "${SYS}" = "mingw32"; then
2137     VLC_ADD_PLUGINS([screen])
2138     VLC_ADD_LDFLAGS([screen],[-lgdi32])
2139   elif test "${SYS}" = "mingwce"; then
2140     CPPFLAGS="${CPPFLAGS_save}"
2141   elif test "${SYS}" = "beos"; then
2142     VLC_ADD_PLUGINS([screen])
2143     VLC_ADD_CXXFLAGS([screen],[])
2144     VLC_ADD_LDFLAGS([screen],[-lbe])
2145   else
2146     CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
2147     AC_CHECK_HEADERS(X11/Xlib.h, [
2148       VLC_ADD_PLUGINS([screen])
2149       VLC_ADD_LDFLAGS([screen],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext])
2150       VLC_ADD_CPPFLAGS([screen],[${X_CFLAGS}])
2151     ])
2152     CPPFLAGS="${CPPFLAGS_save}"
2153   fi
2154 fi
2155
2156 dnl
2157 dnl  ipv6 plugin - not for QNX yet
2158 dnl
2159 have_ipv6=no
2160 AC_CHECK_FUNCS(inet_pton,[have_ipv6=yes],[
2161   AC_CHECK_LIB(resolv,inet_pton,
2162     [have_ipv6=yes
2163      VLC_ADD_LDFLAGS([ipv6 vlc],[-lresolv])])
2164 ])
2165
2166 AS_IF([test "${have_ipv6}" = "yes"], [
2167   AC_DEFINE(HAVE_INET_PTON, 1, [Define to 1 if you have inet_pton().])])
2168
2169 if test "${SYS}" != "nto" &&
2170    test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
2171 then
2172   AC_MSG_CHECKING(for sockaddr_in6 in netinet/in.h)
2173   AC_EGREP_HEADER(sockaddr_in6,netinet/in.h,
2174     [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no); have_ipv6=no])
2175   AS_IF([test "${have_ipv6}" != "no"], [
2176     VLC_ADD_PLUGINS([ipv6])])
2177 fi
2178 if test "${SYS}" = "mingw32"
2179 then
2180   AC_MSG_CHECKING(for getaddrinfo in ws2tcpip.h)
2181   AC_EGREP_HEADER(addrinfo,ws2tcpip.h,[AC_MSG_RESULT(yes)
2182     VLC_ADD_PLUGINS([ipv6])],[AC_MSG_RESULT(no)])
2183 fi
2184
2185 dnl
2186 dnl  ogg demux plugin
2187 dnl
2188 AC_ARG_ENABLE(ogg,
2189   [  --enable-ogg            Ogg demux support (default enabled)])
2190 if test "${enable_ogg}" != "no"
2191 then
2192   AC_ARG_WITH(ogg-tree,
2193   [    --with-ogg-tree=PATH  ogg tree for static linking])
2194   if test -n "${with_ogg_tree}"
2195   then
2196     AC_MSG_CHECKING(for libogg.a in ${with_ogg_tree})
2197     real_ogg_tree="`cd ${with_ogg_tree} 2>/dev/null && pwd`"
2198     if test -z "${real_ogg_tree}"
2199     then
2200       dnl  The given directory can't be found
2201       AC_MSG_RESULT(no)
2202       AC_MSG_ERROR([cannot cd to ${with_ogg_tree}])
2203     fi
2204     if test -f "${real_ogg_tree}/src/.libs/libogg.a"
2205     then
2206       dnl  Use a custom ogg
2207       AC_MSG_RESULT(${real_ogg_tree}/src/.libs/libogg.a)
2208       VLC_ADD_PLUGINS([ogg])
2209       if test "${enable_sout}" != "no"; then
2210         VLC_ADD_PLUGINS([mux_ogg])
2211       fi
2212       VLC_ADD_LDFLAGS([ogg mux_ogg speex vorbis],[${real_ogg_tree}/src/.libs/libogg.a])
2213       VLC_ADD_CFLAGS([ogg mux_ogg speex vorbis],[-I${real_ogg_tree}/include])
2214     else
2215       dnl  The given ogg wasn't built
2216       AC_MSG_RESULT(no)
2217       AC_MSG_ERROR([cannot find ${real_ogg_tree}/src/.libs/libogg.a, make sure you compiled ogg in ${with_ogg_tree}])
2218     fi
2219   else
2220     AC_CHECK_HEADERS(ogg/ogg.h, [
2221       AC_CHECK_LIB( ogg, oggpack_read, [
2222         VLC_ADD_PLUGINS([ogg])
2223         if test "${enable_sout}" != "no"; then
2224           VLC_ADD_PLUGINS([mux_ogg])
2225         fi
2226         VLC_ADD_LDFLAGS([ogg mux_ogg],[-logg])])
2227      ],[])
2228   fi
2229 fi
2230
2231 dnl
2232 dnl  matroska demux plugin
2233 dnl
2234 AC_ARG_ENABLE(mkv,
2235   [  --enable-mkv            Matroska demux support (default enabled)])
2236 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
2237   AC_LANG_PUSH(C++)
2238   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
2239     AC_MSG_CHECKING(for libebml version >= 0.7.6)
2240     AC_EGREP_CPP(yes,
2241       [#include <ebml/EbmlVersion.h>
2242        #ifdef LIBEBML_VERSION
2243        #if LIBEBML_VERSION >= 0x000706
2244        yes
2245        #endif
2246        #endif],
2247       [AC_MSG_RESULT([yes])
2248         AC_CHECK_HEADERS(matroska/KaxVersion.h, [
2249           AC_MSG_CHECKING(for libmatroska version >= 0.7.5)
2250           AC_EGREP_CPP(yes,
2251             [#include <matroska/KaxVersion.h>
2252              #ifdef LIBMATROSKA_VERSION
2253              #if LIBMATROSKA_VERSION >= 0x000705
2254              yes
2255              #endif
2256              #endif],
2257             [AC_MSG_RESULT([yes])
2258               AC_CHECK_HEADERS(matroska/KaxAttachments.h)
2259               VLC_ADD_CXXFLAGS([mkv],[])
2260               if test "${SYS}" = "darwin"; then
2261                 VLC_ADD_CXXFLAGS([mkv],[-O1])
2262               fi
2263               AC_CHECK_LIB(ebml_pic, main, [
2264                 # We have ebml_pic, that's good, we can build an mkv.so plugin !
2265                 VLC_ADD_PLUGINS([mkv])
2266                 VLC_ADD_LDFLAGS([mkv],[-lmatroska_pic -lebml_pic])
2267               ], [
2268                 AC_CHECK_LIB(ebml, main, [
2269                   # We only have libebml, make mkv.a a builtin
2270                   VLC_ADD_BUILTINS([mkv])
2271                   VLC_ADD_LDFLAGS([mkv],[-lmatroska -lebml])
2272                 ])
2273               ])
2274             ],
2275             [AC_MSG_RESULT([no])
2276               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.])
2277           ])
2278         ])
2279       ],
2280       [AC_MSG_RESULT([no])
2281         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.])
2282     ])
2283   ])
2284   AC_LANG_POP(C++)
2285 fi
2286
2287 dnl
2288 dnl  modplug demux plugin
2289 dnl
2290 AC_ARG_ENABLE(mod,
2291   [  --enable-mod            Mod demux support (default enabled)])
2292 if test "${enable_mod}" != "no"
2293 then
2294   AC_ARG_WITH(mod-tree,
2295   [    --with-mod-tree=PATH mod tree for static linking])
2296   if test -n "${with_mod_tree}"
2297   then
2298     AC_MSG_CHECKING(for libmodplug.a in ${with_mod_tree})
2299     real_mod_tree="`cd ${with_mod_tree} 2>/dev/null && pwd`"
2300     if test -z "${real_mod_tree}"
2301     then
2302       dnl  The given directory can't be found
2303       AC_MSG_RESULT(no)
2304       AC_MSG_ERROR([cannot cd to ${with_mod_tree}])
2305     fi
2306     if test -f "${real_mod_tree}/src/.libs/libmodplug.a"
2307     then
2308       dnl  Use a custom mod
2309       AC_MSG_RESULT(${real_mod_tree}/src/.libs/libmodplug.a)
2310       VLC_ADD_PLUGINS([mod])
2311       VLC_ADD_LDFLAGS([mod],[${real_mod_tree}/src/.libs/libmodplug.a])
2312       VLC_ADD_CFLAGS([mod],[-I${real_mod_tree}/include])
2313     else
2314       dnl  The given mod wasn't built
2315       AC_MSG_RESULT(no)
2316       AC_MSG_ERROR([cannot find ${real_mod_tree}/src/.libs/libmodplug.a, make sure you compiled mod in ${with_mod_tree}])
2317     fi
2318   else
2319     AC_CHECK_HEADERS(libmodplug/modplug.h, [
2320       VLC_ADD_PLUGINS([mod])
2321       VLC_ADD_CXXFLAGS([mod],[])
2322       VLC_ADD_LDFLAGS([mod],[-lmodplug])])
2323   fi
2324 fi
2325
2326 dnl
2327 dnl  mpc demux plugin
2328 dnl
2329 AC_ARG_ENABLE(mpc,
2330   [  --enable-mpc            Mpc demux support (default enabled)])
2331 if test "${enable_mpc}" != "no"
2332 then
2333   AC_CHECK_HEADERS(mpcdec/mpcdec.h, [
2334     VLC_ADD_PLUGINS([mpc])
2335     VLC_ADD_LDFLAGS([mpc],[-lmpcdec])])
2336 fi
2337
2338
2339 dnl
2340 dnl  Codec plugins
2341 dnl
2342
2343 AC_ARG_WITH(,[Codec plugins:])
2344
2345 dnl
2346 dnl  mad plugin
2347 dnl
2348 AC_ARG_ENABLE(mad,
2349   [  --enable-mad            libmad module (default enabled)])
2350 if test "${enable_mad}" != "no"
2351 then
2352   AC_ARG_WITH(mad,
2353     [    --with-mad=PATH       path to libmad],[],[])
2354   if test "${with_mad}" != "no" -a -n "${with_mad}"
2355   then
2356     VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
2357     VLC_ADD_LDFLAGS([mpgatofixed32],[-L${with_mad}/lib])
2358   fi
2359
2360   AC_ARG_WITH(mad-tree,
2361     [    --with-mad-tree=PATH   mad tree for static linking],[],[])
2362   if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
2363   then
2364     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
2365     if test -z "${real_mad_tree}"
2366     then
2367       dnl  The given directory can't be found
2368       AC_MSG_RESULT(no)
2369       AC_MSG_ERROR([${with_mad_tree} directory doesn't exist])
2370     fi
2371     dnl  Use a custom libmad
2372     AC_MSG_CHECKING(for mad.h in ${real_mad_tree})
2373     if test -f ${real_mad_tree}/mad.h
2374     then
2375       AC_MSG_RESULT(yes)
2376       VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}])
2377       VLC_ADD_LDFLAGS([mpgatofixed32],[-L${real_mad_tree}/.libs])
2378       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
2379       AC_CHECK_LIB(mad, mad_bit_init, [
2380         VLC_ADD_BUILTINS([mpgatofixed32])
2381         VLC_ADD_LDFLAGS([mpgatofixed32],[-lmad])
2382         ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ])
2383       ],[])
2384       LDFLAGS="${LDFLAGS_save}"
2385     else
2386       AC_MSG_RESULT(no)
2387       AC_MSG_ERROR([the specified tree doesn't have mad.h])
2388     fi
2389   else
2390     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}"
2391     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
2392     AC_CHECK_HEADERS(mad.h, ,
2393       [ 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.]) ])
2394     AC_CHECK_LIB(mad, mad_bit_init, [
2395       VLC_ADD_PLUGINS([mpgatofixed32])
2396       VLC_ADD_LDFLAGS([mpgatofixed32],[-lmad])],
2397       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
2398     CPPFLAGS="${CPPFLAGS_save}"
2399     LDFLAGS="${LDFLAGS_save}"
2400   fi
2401 fi
2402
2403 dnl
2404 dnl   libid3tag support (FIXME!!! doesn't work with new input)
2405 dnl
2406 AC_CHECK_HEADERS(id3tag.h, [
2407   AC_CHECK_HEADERS(zlib.h, [
2408     VLC_ADD_LDFLAGS([id3tag],[-lid3tag -lz])
2409     VLC_ADD_PLUGINS([id3tag])]) ])
2410
2411 dnl
2412 dnl  ffmpeg decoder/demuxer plugin
2413 dnl
2414 dnl we try to find ffmpeg using : 1- given tree 2- ffmpeg-config, 3- pkg-config
2415 dnl                             4- default place, 
2416
2417 AC_ARG_ENABLE(ffmpeg,
2418 [  --enable-ffmpeg         ffmpeg codec (default enabled)])
2419 if test "${enable_ffmpeg}" != "no"
2420 then
2421
2422 dnl Those options have to be here because the .pc can be bogus for ffmpeg previous nov 05
2423
2424  AC_ARG_WITH(ffmpeg-mp3lame,
2425    [    --with-ffmpeg-mp3lame specify if ffmpeg has been compiled with mp3lame support],
2426    [
2427      if test "$with_ffmpeg_mp3lame" = "yes";    then
2428         VLC_ADD_LDFLAGS([ffmpeg],[-lmp3lame])
2429      fi])
2430
2431  AC_ARG_WITH(ffmpeg-faac,
2432    [    --with-ffmpeg-faac    specify if ffmpeg has been compiled with faac support],
2433    [
2434      if test "$with_ffmpeg_faac" = "yes"; then
2435         VLC_ADD_LDFLAGS([ffmpeg],[-lfaac])
2436      fi])
2437
2438  AC_ARG_WITH(ffmpeg-dts,
2439    [    --with-ffmpeg-dts     specify if ffmpeg has been compiled with dts support],
2440    [
2441      if test "$with_ffmpeg_dts" = "yes"; then
2442              LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
2443              AC_CHECK_LIB(dts_pic, dts_free, 
2444                [ VLC_ADD_LDFLAGS([ffmpeg],[-ldts_pic]) ],
2445                [ VLC_ADD_LDFLAGS([ffmpeg],[-ldts]) ])
2446              LDFLAGS="${LDFLAGS_save}"
2447      fi])
2448
2449  AC_ARG_WITH(ffmpeg-vorbis,
2450    [    --with-ffmpeg-vorbis    specify if ffmpeg has been compiled with vorbis support],
2451    [
2452      if test "$with_ffmpeg_vorbis" = "yes"; then
2453         VLC_ADD_LDFLAGS([ffmpeg],[-lvorbisenc -lvorbis])
2454      fi])
2455
2456  AC_ARG_WITH(ffmpeg-theora,
2457    [    --with-ffmpeg-theora    specify if ffmpeg has been compiled with theora support],
2458    [
2459      if test "$with_ffmpeg_theora" = "yes"; then
2460         VLC_ADD_LDFLAGS([ffmpeg],[-ltheora])
2461      fi])
2462
2463  AC_ARG_WITH(ffmpeg-ogg,
2464    [    --with-ffmpeg-ogg    specify if ffmpeg has been compiled with ogg support],
2465    [
2466      if test "$with_ffmpeg_ogg" = "yes"; then
2467         VLC_ADD_LDFLAGS([ffmpeg],[-logg])
2468      fi])
2469
2470  AC_ARG_WITH(ffmpeg-zlib,
2471    [    --with-ffmpeg-zlib    specify if ffmpeg has been compiled with zlib support],
2472    [
2473      if test "$with_ffmpeg_zlib" = "yes"; then
2474                 VLC_ADD_LDFLAGS([ffmpeg],[-lz])
2475      fi])
2476
2477  dnl
2478  dnl test for --with-ffmpeg-tree
2479  dnl
2480  AC_ARG_WITH(ffmpeg-tree,
2481    [    --with-ffmpeg-tree=PATH ffmpeg tree for static linking])
2482
2483  if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
2484    AC_MSG_CHECKING(for libavcodec.a in ${with_ffmpeg_tree})
2485    real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
2486    if test -z "${real_ffmpeg_tree}"; then
2487      dnl  The given directory can't be found
2488      AC_MSG_RESULT(no)
2489      AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
2490    fi
2491    if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
2492      dnl  The given libavcodec wasn't built
2493      AC_MSG_RESULT(no)
2494      AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}])
2495    fi
2496    if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
2497      if test -f "${real_ffmpeg_tree}/libavcodec/libpostproc/libpostproc.a"; then
2498        VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavcodec/libpostproc ${real_ffmpeg_tree}/libavcodec/libpostproc/libpostproc.a])        
2499      else
2500        dnl  The given libavcodec wasn't built with --enable-pp
2501        AC_MSG_RESULT(no)
2502        AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
2503      fi
2504    fi
2505    dnl  Use a custom libffmpeg
2506    AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodec.a)
2507
2508    if fgrep -s "CONFIG_ZLIB=yes" "${real_ffmpeg_tree}/config.mak"; then
2509      if test "${with_ffmpeg_zlib}" != "yes"; then
2510        VLC_ADD_LDFLAGS([ffmpeg],[-lz])
2511      fi
2512    fi
2513    if fgrep -s "CONFIG_MP3LAME=yes" "${real_ffmpeg_tree}/config.mak"; then
2514      if test "${with_ffmpeg_mp3lame}" != "yes"; then
2515        VLC_ADD_LDFLAGS([ffmpeg],[-lmp3lame])
2516      fi
2517    fi
2518    if fgrep -s "CONFIG_FAAC=yes" "${real_ffmpeg_tree}/config.mak"; then
2519      if test "${with_ffmpeg_faac}" != "yes"; then
2520        VLC_ADD_LDFLAGS([ffmpeg],[-lfaac])
2521      fi
2522    fi
2523    if fgrep -s "CONFIG_DTS=yes" "${real_ffmpeg_tree}/config.mak"; then
2524      if test "${with_ffmpeg_dts}" != "yes"; then
2525        LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
2526        AC_CHECK_LIB(dts_pic, dts_free, 
2527          [ VLC_ADD_LDFLAGS([ffmpeg],[-ldts_pic]) ],
2528          [ VLC_ADD_LDFLAGS([ffmpeg],[-ldts]) ])
2529        LDFLAGS="${LDFLAGS_save}"
2530      fi
2531    fi
2532    if fgrep -s "CONFIG_VORBIS=yes" "${real_ffmpeg_tree}/config.mak"; then
2533      VLC_ADD_LDFLAGS([ffmpeg],[-lvorbis -lvorbisenc])
2534    fi
2535    if fgrep -s "CONFIG_FAAD=yes" "${real_ffmpeg_tree}/config.mak"; then
2536      VLC_ADD_LDFLAGS([ffmpeg],[-lfaad])
2537    fi
2538    if fgrep -s "CONFIG_XVID=yes" "${real_ffmpeg_tree}/config.mak"; then
2539      VLC_ADD_LDFLAGS([ffmpeg],[-lxvidcore])
2540    fi
2541
2542    VLC_ADD_BUILTINS([ffmpeg])
2543    if test "${enable_sout}" != "no"; then
2544      VLC_ADD_BUILTINS([stream_out_switcher])
2545    fi
2546
2547    if test -f "${real_ffmpeg_tree}/libavutil/libavutil.a"; then
2548      VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavutil ${real_ffmpeg_tree}/libavutil/libavutil.a])
2549      VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavutil])
2550    fi
2551
2552    VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavcodec ${real_ffmpeg_tree}/libavcodec/libavcodec.a])
2553    VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavcodec])
2554
2555    if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
2556      AC_DEFINE(HAVE_LIBAVFORMAT, 1, [Define if you have ffmpeg's libavformat.])
2557      VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavformat ${real_ffmpeg_tree}/libavformat/libavformat.a])
2558      VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavformat])
2559    fi
2560 else    
2561     
2562 dnl Look for a ffmpeg-config (we are on debian )
2563  
2564   FFMPEG_PATH="${PATH}"
2565   AC_ARG_WITH(ffmpeg-config-path,
2566     [    --with-ffmpeg-config-path=PATH ffmpeg-config path (default search in \$PATH)],
2567     [ if test "${with_ffmpeg_config_path}" != "no"
2568       then
2569         FFMPEG_PATH="${with_ffmpeg_config_path}"
2570       fi ])
2571   AC_PATH_PROG(FFMPEG_CONFIG, ffmpeg-config, no, ${FFMPEG_PATH})
2572   if test "${FFMPEG_CONFIG}" != "no"
2573   then
2574     AC_CHECK_HEADERS(ffmpeg/avcodec.h)
2575     AC_CHECK_HEADERS(postproc/postprocess.h)
2576     VLC_ADD_PLUGINS([ffmpeg])
2577     if test "${enable_sout}" != "no"; then
2578         VLC_ADD_PLUGINS([stream_out_switcher])
2579     fi
2580     VLC_ADD_CFLAGS([ffmpeg stream_out_switcher],[`${FFMPEG_CONFIG} --cflags`])
2581     VLC_ADD_LDFLAGS([ffmpeg stream_out_switcher],[`${FFMPEG_CONFIG} --plugin-libs avcodec avformat postproc`])
2582  
2583  else
2584
2585 dnl Trying with pkg-config
2586    PKG_CHECK_MODULES(FFMPEG,[libavcodec, libavformat],
2587     [
2588      AC_CHECK_HEADERS(ffmpeg/avcodec.h)
2589      AC_CHECK_HEADERS(postproc/postprocess.h)
2590      VLC_ADD_BUILTINS([ffmpeg])
2591      if test "${enable_sout}" != "no"; then
2592          VLC_ADD_BUILTINS([stream_out_switcher])
2593      fi
2594      VLC_ADD_CFLAGS([ffmpeg stream_out_switcher],[${FFMPEG_CFLAGS}])
2595      VLC_ADD_LDFLAGS([ffmpeg],[${FFMPEG_LIBS}])
2596      dnl newer ffmpeg have a separate libpostproc
2597      PKG_CHECK_MODULES(POSTPROC, libpostproc,[
2598        VLC_ADD_LDFLAGS([ffmpeg],[${POSTPROC_LIBS}]) 
2599        ],[ true ])
2600     ],[
2601      
2602     dnl
2603     dnl last chance: at the default place
2604     dnl
2605       CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}"
2606       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
2607       AC_CHECK_HEADERS(ffmpeg/avcodec.h, [], [AC_MSG_ERROR([Missing header file ffmpeg/avcodec.h.])] )
2608       AC_CHECK_HEADERS(postproc/postprocess.h, [], [AC_MSG_ERROR([Missing header file postproc/postprocess.h.])] )
2609
2610       AC_CHECK_LIB(avutil, av_add_i, [
2611         VLC_ADD_LDFLAGS([ffmpeg],[-lavutil])
2612         LDAVUTIL="-lavutil"])
2613
2614       AC_CHECK_LIB(postproc, pp_postprocess, [
2615         VLC_ADD_LDFLAGS([ffmpeg],[-lpostproc])])
2616
2617       AC_CHECK_LIB(avcodec, avcodec_init, [
2618         VLC_ADD_BUILTINS([ffmpeg])
2619         VLC_ADD_LDFLAGS([ffmpeg],[-lavcodec])
2620         if test "${enable_sout}" != "no"; then
2621             VLC_ADD_BUILTINS([stream_out_switcher])
2622         fi],
2623          [ 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])
2624       AC_CHECK_LIB(avformat, av_open_input_stream, [
2625         AC_DEFINE(HAVE_LIBAVFORMAT, 1,
2626         [Define if you have ffmpeg's libavformat.])
2627         VLC_ADD_LDFLAGS([ffmpeg],[-lavformat -lz]) ], [], [-lavcodec -lz $LDAVUTIL])
2628       LDFLAGS="${LDFLAGS_save}"
2629       CPPFLAGS="${CPPFLAGS_save}"
2630     ])
2631   fi
2632  fi 
2633 fi
2634
2635 dnl
2636 dnl  ffmpegaltivec plugin
2637 dnl
2638 AC_ARG_ENABLE(ffmpegaltivec,
2639 [  --enable-ffmpegaltivec  ffmpegaltivec codec (DO NOT USE)])
2640 if test "${enable_ffmpegaltivec}" = "yes"
2641 then
2642   if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
2643     AC_MSG_CHECKING(for libavcodecaltivec.a in ${with_ffmpeg_tree})
2644     real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
2645     if test -z "${real_ffmpeg_tree}"; then
2646       dnl  The given directory can't be found
2647       AC_MSG_RESULT(no)
2648       AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
2649     fi
2650     if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then
2651       dnl  The given libavcodecaltivec wasn't built
2652       AC_MSG_RESULT(no)
2653       AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a, make sure you compiled libavcodecaltivec in ${with_ffmpeg_tree}])
2654     fi
2655     if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then
2656       dnl  The given libavcodecaltivec wasn't built with --enable-pp
2657       AC_MSG_RESULT(no)
2658       AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
2659     fi
2660     dnl  Use a custom libffmpeg
2661     AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a)
2662     VLC_ADD_BUILTINS([ffmpegaltivec])
2663     VLC_ADD_LDFLAGS([ffmpegaltivec],[-L${real_ffmpeg_tree}/libavcodec -lavcodecaltivec])
2664     VLC_ADD_CPPFLAGS([ffmpeg],[-DNO_ALTIVEC_IN_FFMPEG])
2665     VLC_ADD_CPPFLAGS([ffmpegaltivec],[-I${real_ffmpeg_tree}/libavcodec -I${real_ffmpeg_tree}/libavformat])
2666
2667     if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
2668       AC_DEFINE(HAVE_LIBAVFORMAT, 1, [Define if you have ffmpeg's libavformat.])
2669       VLC_ADD_LDFLAGS([ffmpegaltivec],[-L${real_ffmpeg_tree}/libavformat -lavformataltivec -lz])
2670       VLC_ADD_CPPFLAGS([ffmpegaltivec],[-I${real_ffmpeg_tree}/libavformat])
2671     fi
2672     VLC_ADD_LDFLAGS([stream_out_switcher],[-L${real_ffmpeg_tree}/libavcodec])
2673     VLC_ADD_CPPFLAGS([stream_out_switcher],[-I${real_ffmpeg_tree}/libavcodec -I${real_ffmpeg_tree}/libavformat])
2674   fi
2675 fi
2676
2677 dnl
2678 dnl  faad decoder plugin
2679 dnl
2680 AC_ARG_ENABLE(faad,
2681 [  --enable-faad           faad codec (default disabled)])
2682 if test "${enable_faad}" = "yes"
2683 then
2684   AC_ARG_WITH(faad-tree,
2685   [    --with-faad-tree=PATH faad tree for static linking])
2686   if test -n "${with_faad_tree}"
2687   then
2688     AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
2689     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
2690     if test -z "${real_faad_tree}"
2691     then
2692       dnl  The given directory can't be found
2693       AC_MSG_RESULT(no)
2694       AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
2695     fi
2696     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
2697     then
2698       dnl  Use a custom faad
2699       AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
2700       VLC_ADD_BUILTINS([faad])
2701       VLC_ADD_LDFLAGS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
2702       VLC_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
2703     else
2704       dnl  The given libfaad wasn't built
2705       AC_MSG_RESULT(no)
2706       AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
2707     fi
2708   else
2709     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
2710     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_faad}"
2711     AC_CHECK_HEADERS(faad.h, ,
2712       [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ])
2713     AC_CHECK_LIB(faad, faacDecOpen, [
2714       VLC_ADD_PLUGINS([faad])
2715       VLC_ADD_LDFLAGS([faad],[-lfaad]) ],
2716       AC_CHECK_LIB(faad, NeAACDecOpen, [
2717         VLC_ADD_PLUGINS([faad])
2718         VLC_ADD_LDFLAGS([faad],[-lfaad]) ],
2719         [ AC_MSG_ERROR([Cannot find libfaad library...]) ]))
2720     LDFLAGS="${LDFLAGS_save}"
2721     CPPFLAGS="${CPPFLAGS_save}"
2722   fi
2723 fi
2724
2725 dnl
2726 dnl twolame encoder plugin
2727 dnl
2728 AC_ARG_ENABLE(twolame,
2729 [  --enable-twolame        twolame codec (default disabled)])
2730 if test "${enable_twolame}" = "yes"
2731 then
2732   AC_ARG_WITH(twolame-tree,
2733   [    --with-twolame-tree=PATH twolame tree for static linking])
2734   if test -n "${with_twolame_tree}"
2735   then
2736     AC_MSG_CHECKING(for libtwolame.a in ${with_twolame_tree})
2737     real_twolame_tree="`cd ${with_twolame_tree} 2>/dev/null && pwd`"
2738     if test -z "${real_twolame_tree}"
2739     then
2740       dnl  The given directory can't be found
2741       AC_MSG_RESULT(no)
2742       AC_MSG_ERROR([cannot cd to ${with_twolame_tree}])
2743     fi
2744     if test -f "${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a"
2745     then
2746       dnl  Use a custom twolame
2747       AC_MSG_RESULT(${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a)
2748       VLC_ADD_BUILTINS([twolame])
2749       VLC_ADD_LDFLAGS([twolame],[${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a])
2750       VLC_ADD_CPPFLAGS([twolame],[-I${real_twolame_tree}/src/libtwolame])
2751     else
2752       dnl  The given libtwolame wasn't built
2753       AC_MSG_RESULT(no)
2754       AC_MSG_ERROR([cannot find ${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a, make sure you compiled libtwolame in ${with_twolame_tree}])
2755     fi
2756   else
2757     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_twolame}"
2758     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_twolame}"
2759     AC_CHECK_HEADERS(twolame.h, ,
2760       [ AC_MSG_ERROR([Cannot find development header for libtwolame...]) ])
2761     AC_CHECK_LIB(twolame, twolame_init, [
2762       VLC_ADD_PLUGINS([twolame])
2763       VLC_ADD_LDFLAGS([twolame],[-ltwolame]) ],
2764         [ AC_MSG_ERROR([Cannot find libtwolame library...]) ])
2765     LDFLAGS="${LDFLAGS_save}"  
2766     CPPFLAGS="${CPPFLAGS_save}"
2767   fi
2768 fi
2769
2770 dnl
2771 dnl  QuickTime plugin
2772 dnl
2773 AC_ARG_ENABLE(quicktime,
2774   [  --enable-quicktime      QuickTime module (default enabled on MacOS X)])
2775 if test "${enable_quicktime}" != "no" &&
2776   (test "${SYS}" = "darwin" || test "${enable_quicktime}" = "yes")
2777 then
2778   if test "${SYS}" = "mingw32"; then
2779     VLC_ADD_BUILTINS([quicktime])
2780   else
2781   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2782     [ VLC_ADD_BUILTINS([quicktime])
2783       VLC_ADD_LDFLAGS([quicktime],[-framework QuickTime -framework Carbon])
2784     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2785   fi
2786 fi
2787
2788 dnl
2789 dnl  Real plugin
2790 dnl
2791 AC_ARG_ENABLE(real,
2792   [  --enable-real           Real audio module (default disabled)])
2793 if test "${enable_real}" = "yes"; then
2794   VLC_ADD_PLUGINS([realaudio])
2795 fi
2796
2797 dnl
2798 dnl  Real RTSP plugin
2799 dnl
2800 AC_ARG_ENABLE(realrtsp,
2801   [  --enable-realrtsp       Real RTSP module (default disabled)])
2802 if test "${enable_realrtsp}" = "yes"; then
2803   VLC_ADD_PLUGINS([access_realrtsp])
2804 fi
2805
2806 dnl
2807 dnl MP4 module
2808 dnl
2809 AC_CHECK_HEADERS(zlib.h, [
2810   VLC_ADD_LDFLAGS([mp4 skins2 sap mkv],[-lz])
2811 ] )
2812
2813 AC_CHECK_HEADERS(sysfs/libsysfs.h, [
2814   VLC_ADD_LDFLAGS([mp4 mkv],[-lsysfs])
2815 ] )
2816
2817 dnl
2818 dnl skins2 module
2819 dnl
2820 AC_CHECK_HEADERS(libtar.h, [
2821   VLC_ADD_LDFLAGS([skins2],[-ltar])
2822 ] )
2823
2824
2825
2826 dnl
2827 dnl A52/AC3 decoder plugin
2828 dnl
2829 AC_ARG_ENABLE(a52,
2830   [  --enable-a52            A/52 support with liba52 (default enabled)])
2831 if test "${enable_a52}" != "no"
2832 then
2833   AC_ARG_WITH(a52,
2834     [    --with-a52=PATH       a52 headers and libraries])
2835   AC_ARG_WITH(a52-tree,
2836     [    --with-a52-tree=PATH  a52dec tree for static linking ],[],[])
2837   if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
2838   then
2839     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
2840     if test -z "${real_a52_tree}"
2841     then
2842       dnl  The given directory can't be found
2843       AC_MSG_RESULT(no)
2844       AC_MSG_ERROR([${with_a52_tree} directory doesn't exist])
2845     fi
2846     dnl  Use a custom a52dec
2847     AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
2848     if test -f ${real_a52_tree}/include/a52.h
2849     then
2850       AC_MSG_RESULT(yes)
2851       VLC_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
2852       VLC_ADD_LDFLAGS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
2853       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_a52tofloat32}"
2854       AC_CHECK_LIB(a52, a52_free, [
2855         VLC_ADD_BUILTINS([a52tofloat32])
2856         VLC_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
2857         VLC_ADD_LDFLAGS([a52tofloat32],[-la52])
2858         ],[
2859         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
2860         then
2861           AC_MSG_ERROR([make sure you have at least a52dec-0.7.3])
2862         else
2863           AC_MSG_ERROR([the specified tree hasn't been compiled])
2864         fi
2865       ])
2866       LDFLAGS="${LDFLAGS_save}"
2867     else
2868       AC_MSG_RESULT(no)
2869       AC_MSG_ERROR([the specified tree doesn't have a52.h])
2870     fi
2871   else
2872     if test -z "${with_a52}"
2873     then
2874       LDFLAGS_test=""
2875       CPPFLAGS_test=""
2876     else
2877       LDFLAGS_test="-L${with_a52}/lib"
2878       CPPFLAGS_test="-I${with_a52}/include"
2879     fi
2880     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2881     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LDFLAGS_a52tofloat32}"
2882     AC_CHECK_HEADERS(a52dec/a52.h, [
2883       AC_CHECK_LIB(a52, a52_free, [
2884         VLC_ADD_PLUGINS([a52tofloat32])
2885         VLC_ADD_LDFLAGS([a52tofloat32],[${LDFLAGS_test} -la52])
2886         VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2887       ],[
2888         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.])
2889       ])
2890     ])
2891     CPPFLAGS="${CPPFLAGS_save}"
2892     LDFLAGS="${LDFLAGS_save}"
2893   fi
2894 fi
2895
2896 AC_ARG_WITH(a52-fixed,
2897       [    --with-a52-fixed      specify if liba52 has been compiled with fixed point support],
2898       [
2899         VLC_ADD_CPPFLAGS([a52tofloat32],[-DLIBA52_FIXED]) ])
2900
2901 dnl
2902 dnl DTS Coherent Acoustics decoder plugin
2903 dnl
2904 AC_ARG_ENABLE(dts,
2905   [  --enable-dts            DTS Coherent Acoustics support with libdts (default enabled)])
2906 if test "${enable_dts}" != "no"; then
2907   AC_ARG_WITH(dts-tree,
2908     [    --with-dts-tree=PATH  libdts tree for static linking ],[],[])
2909   if test "${with_dts_tree}" != "no" -a -n "${with_dts_tree}"
2910   then
2911     real_dts_tree="`cd ${with_dts_tree} 2>/dev/null && pwd`"
2912     if test -z "${real_dts_tree}"
2913     then
2914       dnl  The given directory can't be found
2915       AC_MSG_RESULT(no)
2916       AC_MSG_ERROR([${with_dts_tree} directory doesn't exist])
2917     fi
2918     dnl  Use a custom libdts
2919     AC_MSG_CHECKING(for dts.h in ${real_dts_tree}/include)
2920     if test -f ${real_dts_tree}/include/dts.h
2921     then
2922       AC_MSG_RESULT(yes)
2923       VLC_ADD_CPPFLAGS([dtstofloat32],[-I${real_dts_tree}/include])
2924       VLC_ADD_LDFLAGS([dtstofloat32],[-L${real_dts_tree}/libdts])
2925       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
2926       AC_CHECK_LIB(dts_pic, dts_free, [
2927         VLC_ADD_PLUGINS([dtstofloat32])
2928         VLC_ADD_LDFLAGS([dtstofloat32],[-ldts_pic])
2929         ],[
2930         AC_CHECK_LIB(dts, dts_free, [
2931           VLC_ADD_BUILTINS([dtstofloat32])
2932           VLC_ADD_LDFLAGS([dtstofloat32],[-ldts])
2933           ],[
2934           if test -f ${real_dts_tree}/libdts/libdts.a
2935           then
2936             AC_MSG_ERROR([make sure you have at least libdts-0.0.2])
2937           else
2938             AC_MSG_ERROR([the specified tree hasn't been compiled])
2939           fi
2940         ])
2941       ])
2942       LDFLAGS="${LDFLAGS_save}"
2943     else
2944       AC_MSG_RESULT(no)
2945       AC_MSG_ERROR([the specified tree doesn't have dts.h])
2946     fi
2947   else
2948     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
2949     AC_CHECK_HEADERS(dts.h, [
2950       AC_CHECK_LIB(dts_pic, dts_free, [
2951         VLC_ADD_PLUGINS([dtstofloat32])
2952         VLC_ADD_LDFLAGS([dtstofloat32],[-ldts_pic])
2953       ],[
2954         AC_CHECK_LIB(dts, dts_free, [
2955           VLC_ADD_BUILTINS([dtstofloat32])
2956           VLC_ADD_LDFLAGS([dtstofloat32],[-ldts])
2957         ],[
2958           if test "${enable_dts}" = "yes"; then
2959             AC_MSG_ERROR([Could not find libdts on your system: you may get it from http://www.videolan.org/dtsdec.html])
2960           fi
2961         ])
2962       ])
2963     ])
2964     LDFLAGS="${LDFLAGS_save}"
2965   fi
2966 fi
2967
2968 dnl
2969 dnl  Flac plugin
2970 dnl
2971 AC_ARG_ENABLE(flac,
2972   [  --enable-flac           flac decoder support (default disabled)])
2973 if test "${enable_flac}" = "yes"
2974 then
2975   AC_ARG_WITH(flac-tree,
2976   [    --with-flac-tree=PATH flac tree for static linking])
2977   if test -n "${with_flac_tree}"
2978   then
2979     AC_MSG_CHECKING(for libFLAC.a in ${with_flac_tree})
2980     real_flac_tree="`cd ${with_flac_tree} 2>/dev/null && pwd`"
2981     if test -z "${real_flac_tree}"
2982     then
2983       dnl  The given directory can't be found
2984       AC_MSG_RESULT(no)
2985       AC_MSG_ERROR([cannot cd to ${with_flac_tree}])
2986     fi
2987     if test -f "${real_flac_tree}/src/libFLAC/.libs/libFLAC.a"
2988     then
2989       dnl  Use a custom flac
2990       AC_MSG_RESULT(${real_flac_tree}/src/libFLAC/.libs/libFLAC.a)
2991       VLC_ADD_LDFLAGS([flacdec],[${real_flac_tree}/src/libFLAC/.libs/libFLAC.a])
2992       VLC_ADD_CFLAGS([flacdec],[-I${real_flac_tree}/include])
2993       AC_DEFINE(HAVE_FLAC_STREAM_DECODER_H, 1, [Define if you have FLAC])
2994     else
2995       dnl  The given flac wasn't built
2996       AC_MSG_RESULT(no)
2997       AC_MSG_ERROR([cannot find ${real_flac_tree}/src/libFLAC/.libs/libFLAC.a, make sure you compiled flac in ${with_flac_tree}])
2998     fi
2999   else
3000     AC_CHECK_HEADERS(FLAC/stream_decoder.h, [
3001       VLC_ADD_LDFLAGS([flacdec],[-lFLAC])
3002      ],[])
3003   fi
3004 fi
3005
3006 dnl
3007 dnl  Libmpeg2 plugin
3008 dnl
3009 AC_ARG_ENABLE(libmpeg2,
3010   [  --enable-libmpeg2       libmpeg2 decoder support (default enabled)])
3011 if test "${enable_libmpeg2}" != "no"
3012 then
3013   AC_ARG_WITH(libmpeg2-tree,
3014   [    --with-libmpeg2-tree=PATH libmpeg2 tree for static linking])
3015   if test -n "${with_libmpeg2_tree}"
3016   then
3017     AC_MSG_CHECKING(for libmpeg2.a in ${with_libmpeg2_tree})
3018     real_libmpeg2_tree="`cd ${with_libmpeg2_tree} 2>/dev/null && pwd`"
3019     if test -z "${real_libmpeg2_tree}"
3020     then
3021       dnl  The given directory can't be found
3022       AC_MSG_RESULT(no)
3023       AC_MSG_ERROR([cannot cd to ${with_libmpeg2_tree}])
3024     fi
3025     if test -f "${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a"
3026     then
3027       dnl  Use a custom libmpeg2
3028       AC_MSG_RESULT(${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a)
3029       VLC_ADD_BUILTINS([libmpeg2])
3030       VLC_ADD_LDFLAGS([libmpeg2],[-L${real_libmpeg2_tree}/libmpeg2/.libs -lmpeg2])
3031       VLC_ADD_CFLAGS([libmpeg2],[-I${real_libmpeg2_tree}/include])
3032       eval "`cd ${real_libmpeg2_tree}/include && ln -sf . mpeg2dec 2>/dev/null`"
3033     else
3034       dnl  The given libmpeg2 wasn't built
3035       AC_MSG_RESULT(no)
3036       AC_MSG_ERROR([cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}])
3037     fi
3038   else
3039     AC_CHECK_HEADERS(mpeg2dec/mpeg2.h, [
3040       AC_MSG_CHECKING(for libmpeg2 version >= 0.3.2)
3041       AC_EGREP_CPP(yes,
3042         [#include <mpeg2dec/mpeg2.h>
3043          #ifdef MPEG2_RELEASE
3044          #if MPEG2_RELEASE >= MPEG2_VERSION(0,3,2)
3045          yes
3046          #endif
3047          #endif],
3048         [AC_MSG_RESULT([yes])
3049           VLC_ADD_PLUGINS([libmpeg2])
3050           VLC_ADD_LDFLAGS([libmpeg2],[-lmpeg2])],
3051         [AC_MSG_RESULT([no])
3052           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.])])],
3053
3054       [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.])]
3055     )
3056   fi
3057 fi
3058
3059 dnl
3060 dnl  Vorbis plugin
3061 dnl
3062 AC_ARG_ENABLE(vorbis,
3063   [  --enable-vorbis         Vorbis decoder support (default enabled)])
3064 if test "${enable_vorbis}" != "no"
3065 then
3066   AC_ARG_WITH(vorbis-tree,
3067   [    --with-vorbis-tree=PATH vorbis tree for static linking])
3068   if test -n "${with_vorbis_tree}"
3069   then
3070     AC_MSG_CHECKING(for libvorbis.a in ${with_vorbis_tree})
3071     real_vorbis_tree="`cd ${with_vorbis_tree} 2>/dev/null && pwd`"
3072     if test -z "${real_vorbis_tree}"
3073     then
3074       dnl  The given directory can't be found
3075       AC_MSG_RESULT(no)
3076       AC_MSG_ERROR([cannot cd to ${with_vorbis_tree}])
3077     fi
3078     if test -f "${real_vorbis_tree}/lib/.libs/libvorbis.a"
3079     then
3080       dnl  Use a custom vorbis 
3081       AC_MSG_RESULT(${real_vorbis_tree}/lib/.libs/libvorbis.a)
3082       VLC_ADD_PLUGINS([vorbis])
3083       VLC_ADD_LDFLAGS([vorbis],[${real_vorbis_tree}/lib/.libs/libvorbis.a ${real_vorbis_tree}/lib/.libs/libvorbisenc.a])
3084       VLC_ADD_CFLAGS([vorbis],[-I${real_vorbis_tree}/include])
3085     else
3086       dnl  The given vorbis wasn't built
3087       AC_MSG_RESULT(no)
3088       AC_MSG_ERROR([cannot find ${real_vorbis_tree}/lib/.libs/libvorbis.a, make sure you compiled vorbis in ${with_vorbis_tree}])
3089     fi
3090   else
3091     AC_CHECK_HEADERS(vorbis/codec.h, [
3092       VLC_ADD_PLUGINS([vorbis])
3093       VLC_ADD_LDFLAGS([vorbis],[-lvorbis -logg]) ],[])
3094
3095     AC_CHECK_HEADERS(vorbis/vorbisenc.h, [
3096       VLC_ADD_LDFLAGS([vorbis],[-lvorbisenc]) ],[])
3097   fi
3098 fi
3099
3100 dnl
3101 dnl  Tremor plugin
3102 dnl
3103 AC_ARG_ENABLE(tremor,
3104   [  --enable-tremor         Tremor decoder support (default disabled)])
3105 if test "${enable_tremor}" = "yes"
3106 then
3107   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
3108     VLC_ADD_PLUGINS([tremor])
3109     VLC_ADD_LDFLAGS([tremor],[-lvorbisidec -logg])
3110    ],[])
3111 fi
3112
3113 dnl
3114 dnl  Speex plugin
3115 dnl
3116 AC_ARG_ENABLE(speex,
3117   [  --enable-speex          Speex decoder support (default enabled)])
3118 if test "${enable_speex}" != "no"
3119 then
3120   AC_ARG_WITH(speex-tree,
3121   [    --with-speex-tree=PATH speex tree for static linking])
3122   if test -n "${with_speex_tree}"
3123   then
3124     AC_MSG_CHECKING(for libspeex.a in ${with_speex_tree})
3125     real_speex_tree="`cd ${with_speex_tree} 2>/dev/null && pwd`"
3126     if test -z "${real_speex_tree}"
3127     then
3128       dnl  The given directory can't be found
3129       AC_MSG_RESULT(no)
3130       AC_MSG_ERROR([cannot cd to ${with_speex_tree}])
3131     fi
3132     if test -f "${real_speex_tree}/libspeex/.libs/libspeex.a"
3133     then
3134       dnl  Use a custom speex
3135       AC_MSG_RESULT(${real_speex_tree}/libspeex/.libs/libspeex.a)
3136       VLC_ADD_PLUGINS([speex])
3137       VLC_ADD_LDFLAGS([speex],[${real_speex_tree}/libspeex/.libs/libspeex.a])
3138       VLC_ADD_CFLAGS([speex],[-I${real_speex_tree}/include])
3139     else
3140       dnl  The given speex wasn't built
3141       AC_MSG_RESULT(no)
3142       AC_MSG_ERROR([cannot find ${real_speex_tree}/libspeex/.libs/libspeex.a, make sure you compiled speex in ${with_speex_tree}])
3143     fi
3144   else
3145     AC_CHECK_HEADERS(speex/speex.h, [
3146       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_speex}"
3147       AC_CHECK_LIB(speex, speex_decode_int, [
3148         VLC_ADD_PLUGINS([speex])
3149         VLC_ADD_LDFLAGS([speex],[-lspeex]) ],
3150         [ AC_MSG_RESULT([no])
3151           AC_MSG_WARN([Your libspeex is too old, please get the development
3152                        version.]) ],[])
3153       LDFLAGS="${LDFLAGS_save}"
3154       ],[])
3155   fi
3156 fi
3157
3158 dnl
3159 dnl  tarkin decoder plugin
3160 dnl
3161 AC_ARG_ENABLE(tarkin,
3162 [  --enable-tarkin         experimental tarkin codec (default disabled)])
3163 if test "${enable_tarkin}" = "yes"
3164 then
3165   AC_ARG_WITH(tarkin-tree,
3166   [    --with-tarkin-tree=PATH tarkin tree for static linking])
3167   if test -n "${with_tarkin_tree}"
3168   then
3169     AC_MSG_CHECKING(for tarkin.o in ${with_tarkin_tree})
3170     real_tarkin_tree="`cd ${with_tarkin_tree} 2>/dev/null && pwd`"
3171     if test -f "${real_tarkin_tree}/tarkin.o"
3172     then
3173       VLC_ADD_BUILTINS([tarkin])
3174       VLC_ADD_CPPFLAGS([tarkin],[-I${real_tarkin_tree}])
3175       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])
3176       AC_MSG_RESULT(yes)
3177     else
3178       dnl  The given tarkin tree wasn't built
3179       AC_MSG_RESULT(no)
3180       AC_MSG_ERROR([cannot find ${real_tarkin_tree}/tarkin.o,
3181                     make sure you compiled tarkin in ${with_tarkin_tree}])
3182     fi
3183   fi
3184 fi
3185
3186 dnl
3187 dnl  theora decoder plugin
3188 dnl
3189 AC_ARG_ENABLE(theora,
3190 [  --enable-theora         experimental theora codec (default disabled)])
3191 if test "${enable_theora}" = "yes"
3192 then
3193   AC_CHECK_HEADERS(theora/theora.h, [
3194     AC_CHECK_LIB(theora, theora_granule_time, [
3195       if test "${SYS}" = "mingw32"; then
3196         VLC_ADD_PLUGINS([theora])
3197       else
3198         VLC_ADD_BUILTINS([theora])
3199       fi
3200       theora_libs="-ltheora -logg"
3201       VLC_ADD_LDFLAGS([theora],[${theora_libs}]) ],[
3202       AC_MSG_ERROR([libtheora doesn't appear to be installed on your system.
3203 You also need to check that you have a libogg posterior to the 1.0 release.])],
3204       [-logg])
3205   ])
3206 fi
3207
3208 dnl
3209 dnl  dirac decoder plugin
3210 dnl
3211 AC_ARG_ENABLE(dirac,
3212 [  --enable-dirac          experimental dirac codec (default disabled)])
3213 if test "${enable_dirac}" = "yes"; then
3214   PKG_CHECK_MODULES(DIRAC,dirac, [
3215       VLC_ADD_PLUGINS([dirac])
3216       VLC_ADD_CFLAGS([dirac],[$DIRAC_CFLAGS])
3217       VLC_ADD_LDFLAGS([dirac],[$DIRAC_LIBS -lstdc++]) ],[
3218       AC_MSG_ERROR([libdirac doesn't appear to be installed on you system.])
3219   ])
3220 fi
3221
3222 dnl  libvc1 decoder plugin
3223 dnl
3224 AC_ARG_ENABLE(libvc1,
3225 [  --enable-libvc1         VC-1 codec (default disabled)])
3226 if test "${enable_libvc1}" = "yes"
3227 then
3228   AC_ARG_WITH(libvc1-tree,
3229   [    --with-libvc1-tree=PATH libvc1 tree for static linking])
3230   if test -n "${with_libvc1_tree}"
3231   then
3232     AC_MSG_CHECKING(for vc1dec.o in ${with_libvc1_tree})
3233     real_libvc1_tree="`cd ${with_libvc1_tree} 2>/dev/null && pwd`"
3234     if test -f "${real_libvc1_tree}/src/.libs/vc1dec.o"
3235     then
3236       VLC_ADD_BUILTINS([libvc1])
3237       VLC_ADD_CPPFLAGS([libvc1],[-I${real_libvc1_tree}/src])
3238       VLC_ADD_LDFLAGS([libvc1],[${real_libvc1_tree}/src/.libs/libvc1.a])
3239       AC_MSG_RESULT(yes)
3240     else
3241       dnl  The given libvc1 tree wasn't built
3242       AC_MSG_RESULT(no)
3243       AC_MSG_ERROR([cannot find ${real_libvc1_tree}/src/.libs/vc1dec.o,
3244                     make sure you compiled libvc1 in ${with_libvc1_tree}])
3245     fi
3246   fi
3247 fi
3248
3249 dnl
3250 dnl  PNG decoder module
3251 dnl
3252 AC_ARG_ENABLE(png,
3253   [  --enable-png            PNG support (default enabled)])
3254 if test "${enable_png}" != "no"; then
3255 AC_CHECK_HEADERS(png.h, [
3256   LDFLAGS="${LDFLAGS_save} -lz"
3257   AC_CHECK_LIB(png, png_set_rows, [
3258     VLC_ADD_LDFLAGS([png],[-lpng -lz])
3259     VLC_ADD_PLUGINS([png])
3260     VLC_ADD_PLUGINS([osdmenu])
3261     AC_DEFINE(HAVE_LIBPNG, [], [Define if you have the PNG library: libpng])],
3262     [],[-lz])
3263   LDFLAGS="${LDFLAGS_save}"
3264   ])
3265 fi
3266
3267 dnl
3268 dnl H264 encoder plugin (using libx264)
3269 dnl
3270 AC_ARG_ENABLE(x264,
3271   [  --enable-x264           H264 encoding support with libx264 (default enabled)])
3272 if test "${enable_x264}" != "no"; then
3273   AC_ARG_WITH(x264-tree,
3274     [    --with-x264-tree=PATH x264 tree for static linking ],[],[])
3275   if test "${with_x264_tree}" != "no" -a -n "${with_x264_tree}"
3276   then
3277     real_x264_tree="`cd ${with_x264_tree} 2>/dev/null && pwd`"
3278     if test -z "${real_x264_tree}"
3279     then
3280       dnl  The given directory can't be found
3281       AC_MSG_RESULT(no)
3282       AC_MSG_ERROR([${with_x264_tree} directory doesn't exist])
3283     fi
3284     dnl  Use a custom libx264
3285     AC_MSG_CHECKING(for x264.h in ${real_x264_tree})
3286     if test -f ${real_x264_tree}/x264.h
3287     then
3288       AC_MSG_RESULT(yes)
3289       VLC_ADD_CPPFLAGS([x264],[-I${real_x264_tree}])
3290       VLC_ADD_LDFLAGS([x264],[-L${real_x264_tree}])
3291       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264} ${THREAD_LIB}"
3292       AC_CHECK_LIB(x264, x264_encoder_open, [
3293         VLC_ADD_BUILTINS([x264])
3294         VLC_ADD_LDFLAGS([x264],[-lx264])
3295       ],[
3296         AC_MSG_ERROR([the specified tree hasn't been compiled])
3297       ])
3298       LDFLAGS="${LDFLAGS_save}"
3299     else
3300       AC_MSG_RESULT(no)
3301       AC_MSG_ERROR([the specified tree doesn't have x264.h])
3302     fi
3303   else
3304     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264} ${THREAD_LIB}"
3305     AC_CHECK_HEADERS(x264.h, [
3306       AC_CHECK_LIB(x264, x264_encoder_open, [
3307         VLC_ADD_PLUGINS([x264])
3308         VLC_ADD_LDFLAGS([x264],[-lx264])
3309       ],[
3310         if test "${enable_x264}" = "yes"; then
3311             AC_MSG_ERROR([Could not find libx264 on your system: you may get it from http://www.videolan.org/x264.html])
3312           fi
3313       ])
3314     ])
3315     LDFLAGS="${LDFLAGS_save}"
3316   fi
3317 fi
3318
3319 dnl
3320 dnl  CMML plugin
3321 dnl
3322 AC_ARG_ENABLE(cmml,
3323   [  --enable-cmml           CMML support (default enabled)])
3324 if test "${enable_cmml}" != "no"
3325 then
3326   VLC_ADD_PLUGINS([cmml])
3327 fi
3328
3329
3330 dnl
3331 dnl  Video plugins
3332 dnl
3333
3334 AC_ARG_WITH(,[Video plugins:])
3335
3336 dnl Check for DPMS
3337 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
3338   CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
3339   AC_CHECK_HEADERS(X11/extensions/dpms.h, [
3340     AC_MSG_CHECKING(for DPMSInfo in X11/extensions/dpms.h)
3341     AC_EGREP_HEADER(DPMSInfo,X11/extensions/dpms.h,[
3342       AC_MSG_RESULT(yes)
3343       AC_DEFINE(DPMSINFO_IN_DPMS_H, 1,
3344                 Define if <X11/extensions/dpms.h> defines DPMSInfo.)
3345     ],[
3346       AC_MSG_RESULT(no)
3347     ])
3348   ],,[
3349     #include <X11/Xlib.h>
3350   ])
3351   CPPFLAGS="${CPPFLAGS_save}"
3352 fi
3353
3354 dnl
3355 dnl  X11 module
3356 dnl  (enabled by default except on win32)
3357 dnl
3358 AC_ARG_ENABLE(x11,
3359   [  --enable-x11            X11 support (default enabled)])
3360 if test "${enable_x11}" != "no" &&
3361   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3362    test "${enable_x11}" = "yes"); then
3363   CPPFLAGS="${CPPFLAGS_save} ${X_FLAGS}"
3364   AC_CHECK_HEADERS(X11/Xlib.h, [
3365     VLC_ADD_PLUGINS([x11])
3366     VLC_ADD_LDFLAGS([x11],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext])
3367     VLC_ADD_CPPFLAGS([x11],[${X_CFLAGS}])
3368   ])
3369   CPPFLAGS="${CPPFLAGS_save}"
3370 fi
3371
3372 dnl
3373 dnl  XVideo module
3374 dnl  (enabled by default except on win32)
3375 dnl
3376 AC_ARG_ENABLE(xvideo,
3377   [  --enable-xvideo         XVideo support (default enabled)])
3378 if test "${enable_xvideo}" != "no" &&
3379   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3380    test "${enable_xvideo}" = "yes"); then
3381   CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
3382   AC_CHECK_HEADERS(X11/extensions/Xv.h, [
3383     CFLAGS="${CFLAGS_save} ${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext"
3384     AC_CHECK_LIB(Xv,XvPutImage,[
3385       # If libXv.so is available, xvideo can be a plugin. Otherwise, we
3386       # test for libXv_pic.
3387       if test -f /usr/X11R6/lib/libXv.so -o -f "${x_libraries}"/libXv.so; then
3388         VLC_ADD_PLUGINS([xvideo])
3389         VLC_ADD_CPPFLAGS([xvideo],[${X_CFLAGS}])
3390         VLC_ADD_LDFLAGS([xvideo],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext -lXv])
3391       else
3392         AC_CHECK_LIB(Xv_pic,XvPutImage,[
3393           VLC_ADD_PLUGINS([xvideo])
3394           VLC_ADD_CPPFLAGS([xvideo],[${X_CFLAGS}])
3395           VLC_ADD_LDFLAGS([xvideo],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext -lXv_pic])
3396         ],[
3397           VLC_ADD_BUILTINS([xvideo])
3398           VLC_ADD_LDFLAGS([xvideo],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext -lXv])
3399           VLC_ADD_CPPFLAGS([xvideo],[${X_CFLAGS}])
3400         ])
3401       fi
3402     ])
3403     CFLAGS="${CFLAGS_save}"
3404   ]
3405   CPPFLAGS="${CPPFLAGS_save}")
3406 fi
3407
3408 dnl
3409 dnl  GLX module
3410 dnl  (enabled by default except on win32)
3411 dnl
3412 AC_ARG_ENABLE(glx,
3413   [  --enable-glx            X11 OpenGL (GLX) support (default enabled)])
3414 if test "${enable_glx}" != "no" &&
3415   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3416    test "${enable_glx}" = "yes"); then
3417   CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
3418   AC_CHECK_HEADERS(X11/Xlib.h, [
3419     AC_CHECK_HEADERS(GL/glx.h, [
3420       VLC_ADD_PLUGINS([glx])
3421       VLC_ADD_LDFLAGS([glx],[${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext -lGL -lGLU])
3422       VLC_ADD_CPPFLAGS([glx],[${X_CFLAGS}])
3423   ]) ])
3424   CPPFLAGS="${CPPFLAGS_save}"
3425 fi
3426
3427 if test "${enable_xvideo}" != "no" &&
3428   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3429    test "${enable_xvideo}" = "yes"); then
3430 dnl
3431 dnl  Check for the Xinerama extension
3432 dnl
3433   ac_cv_have_xinerama="no"
3434   CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
3435   CFLAGS="${CFLAGS_save} ${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext"
3436   AC_CHECK_HEADERS(X11/extensions/Xinerama.h,[
3437     AC_CHECK_LIB(Xinerama_pic, XineramaQueryExtension,[
3438       VLC_ADD_LDFLAGS([xvideo],[-lXinerama_pic])
3439       VLC_ADD_LDFLAGS([x11],[-lXinerama_pic])
3440       VLC_ADD_LDFLAGS([glx],[-lXinerama_pic])
3441       ac_cv_have_xinerama="yes"
3442     ],[
3443       AC_CHECK_LIB(Xinerama, XineramaQueryExtension,[
3444         VLC_ADD_LDFLAGS([xvideo],[-lXinerama])
3445         VLC_ADD_LDFLAGS([x11],[-lXinerama])
3446         VLC_ADD_LDFLAGS([glx],[-lXinerama])
3447         ac_cv_have_xinerama="yes"
3448       ])
3449     ])
3450   ])
3451   if test "${ac_cv_have_xinerama}" = "yes"; then
3452     AC_DEFINE(HAVE_XINERAMA, 1, [Define this if you have libXinerama installed])
3453   fi
3454   CFLAGS="${CFLAGS_save}"
3455   CPPFLAGS="${CPPFLAGS_save}"
3456
3457 dnl
3458 dnl  Check for XF86VidMode extension
3459 dnl
3460   ac_cv_have_xf86vidmode="no"
3461   CPPFLAGS="${CPPFLAGS_save} ${X_CFLAGS}"
3462   CFLAGS="${CFLAGS_save} ${X_LIBS} ${X_PRE_LIBS} -lX11 -lXext"
3463   AC_CHECK_HEADERS(X11/extensions/xf86vmode.h,[
3464     AC_CHECK_LIB(Xxf86vm_pic, XF86VidModeGetViewPort,[
3465       VLC_ADD_LDFLAGS([xvideo],[-lXxf86vm_pic])
3466       VLC_ADD_LDFLAGS([x11],[-lXxf86vm_pic])
3467       VLC_ADD_LDFLAGS([glx],[-lXxf86vm_pic])
3468       ac_cv_have_xf86vidmode="yes"
3469     ],[
3470       AC_CHECK_LIB(Xxf86vm, XF86VidModeGetViewPort,[
3471         VLC_ADD_LDFLAGS([xvideo],[-lXxf86vm])
3472         VLC_ADD_LDFLAGS([x11],[-lXxf86vm])
3473         VLC_ADD_LDFLAGS([glx],[-lXxf86vm])
3474         ac_cv_have_xf86vidmode="yes"
3475       ])
3476     ])
3477   ],[true],
3478 [#ifdef HAVE_X11_XLIB_H
3479 # include <X11/Xlib.h>
3480 #endif]
3481    )
3482   AS_IF([test "${ac_cv_have_xf86vidmode}" = "yes"],
3483     [AC_DEFINE(HAVE_XF86VIDMODE, 1, [Define this if you have libXxf86vm installed])
3484   ])
3485   CFLAGS="${CFLAGS_save}"
3486   CPPFLAGS="${CPPFLAGS_save}"
3487
3488 fi
3489
3490 dnl
3491 dnl  OpenGL module
3492 dnl  (enabled by default except on beos)
3493 dnl
3494 AC_ARG_ENABLE(opengl,
3495   [  --enable-opengl         OpenGL support (default enabled)])
3496 if test "${enable_opengl}" != "no" &&
3497    test "${SYS}" != "beos" -a "${SYS}" != "mingwce"; then
3498   if test "${SYS}" != "darwin"; then
3499     AC_CHECK_HEADERS(GL/gl.h, [
3500       VLC_ADD_PLUGINS([opengl])
3501       if test "${SYS}" != "mingw32"; then
3502         VLC_ADD_LDFLAGS([opengl],[${X_LIBS} -lGL -lGLU])
3503       else
3504         VLC_ADD_LDFLAGS([opengl],[-lopengl32])
3505       fi
3506     ])
3507   else
3508     dnl OS X special case (no GL/gl.h but OpenGL/gl.h)
3509     VLC_ADD_PLUGINS([opengl])
3510     VLC_ADD_LDFLAGS([opengl],[-framework OpenGL])
3511   fi
3512 fi
3513
3514 dnl
3515 dnl  SDL module
3516 dnl
3517 AC_ARG_ENABLE(sdl,
3518   [  --enable-sdl            SDL support (default enabled)])
3519 if test "${enable_sdl}" != "no"
3520 then
3521   SDL_PATH="${PATH}"
3522   AC_ARG_WITH(sdl-config-path,
3523     [    --with-sdl-config-path=PATH sdl-config path (default search in \$PATH)],
3524     [ if test "${with_sdl_config_path}" != "no"
3525       then
3526         SDL_PATH="${with_sdl_config_path}:${PATH}"
3527       fi ])
3528   AC_PATH_PROG(SDL12_CONFIG, sdl12-config, no, ${SDL_PATH})
3529   SDL_CONFIG="${SDL12_CONFIG}"
3530   SDL_HEADER="SDL12/SDL.h"
3531   SDL_IMAGE="SDL12/SDL_image.h"
3532   if test "${SDL_CONFIG}" = "no"
3533   then
3534     AC_PATH_PROG(SDL11_CONFIG, sdl11-config, no, ${SDL_PATH})
3535     SDL_CONFIG=${SDL11_CONFIG}
3536     SDL_HEADER="SDL11/SDL.h"
3537     SDL_IMAGE="SDL11/SDL_image.h"
3538   fi
3539   if test "${SDL_CONFIG}" = "no"
3540   then
3541     AC_PATH_PROG(SDL_CONFIG, sdl-config, no, ${SDL_PATH})
3542     SDL_HEADER="SDL/SDL.h"
3543     SDL_IMAGE="SDL/SDL_image.h"
3544   fi
3545   # check for cross-compiling
3546   SDL_PREFIX=
3547   AC_ARG_WITH(sdl-prefix,
3548     [    --with-sdl-prefix=PATH path to libsdl (needed for cross-compiling),
3549                                e.g use as:
3550                                --with-sdl-prefix=/usr/local/arm/2.95.3/arm-linux/usr)],[],[])
3551   if test "${with_sdl_prefix}" != "no" -a -n "${with_sdl_prefix}"
3552   then
3553     SDL_PREFIX="--prefix=${with_sdl_prefix}"
3554   fi
3555   if test "${SDL_CONFIG}" != "no"
3556   then
3557     # SDL on Darwin is heavily patched and can only run SDL_image
3558     if test "${SYS}" != "darwin" -a "${SYS}" != "mingw32"; then
3559       VLC_ADD_PLUGINS([vout_sdl aout_sdl])
3560     fi
3561     VLC_ADD_CFLAGS([vout_sdl aout_sdl sdl_image],[`${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`])
3562     VLC_ADD_LDFLAGS([vout_sdl aout_sdl sdl_image],[`${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'`])
3563     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}"
3564     AC_CHECK_HEADERS(${SDL_HEADER}, AC_DEFINE_UNQUOTED(SDL_INCLUDE_FILE,
3565       <${SDL_HEADER}>, Indicate whether we should use SDL/SDL.h or SDL11/SDL.h),
3566       [ AC_CHECK_HEADERS(SDL.h, AC_DEFINE(SDL_INCLUDE_FILE, <SDL.h>,
3567           As a last resort we also test for SDL.h presence),
3568       [ AC_MSG_ERROR([The development package for SDL is not installed.
3569 Please install it and try again. Alternatively you can also configure with
3570 --disable-sdl.])
3571       ])])
3572     AC_CHECK_HEADERS(${SDL_IMAGE}, [AC_DEFINE_UNQUOTED(SDL_IMAGE_INCLUDE_FILE,
3573       <${SDL_IMAGE}>, Indicate the path of SDL_image.h)
3574       VLC_ADD_PLUGINS([sdl_image])
3575       AC_CHECK_LIB(png, png_set_rows,
3576         [VLC_ADD_LDFLAGS([sdl_image],[-lpng -lz])],[],[-lz])
3577       AC_CHECK_LIB(jpeg, jpeg_start_decompress,
3578         [VLC_ADD_LDFLAGS([sdl_image],[-ljpeg])])
3579       AC_CHECK_LIB(tiff, TIFFClientOpen,
3580         [VLC_ADD_LDFLAGS([sdl_image],[-ltiff])])
3581       VLC_ADD_LDFLAGS([sdl_image], [-lSDL_image])],
3582       [ AC_CHECK_HEADERS(SDL_image.h, AC_DEFINE(SDL_IMAGE_INCLUDE_FILE, <SDL_image.h>,
3583           As a last resort we also test for SDL_image.h presence),
3584       [ AC_MSG_WARN([The development package for SDL_image is not installed.
3585 You should install it alongside your SDL package.])
3586       ])])
3587     CPPFLAGS="${CPPFLAGS_save}"
3588     if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null
3589     then
3590       AC_MSG_ERROR([The development package for SDL is not installed.
3591 Please install it and try again. Alternatively you can also configure with
3592 --disable-sdl.])
3593     fi
3594
3595   elif test "${enable_sdl}" =  "yes"
3596   then
3597     AC_MSG_ERROR([I couldn't find the SDL package. You can download libSDL
3598 from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
3599     ])
3600   fi
3601 fi
3602
3603 dnl
3604 dnl  freetype module
3605 dnl
3606 AC_ARG_ENABLE(freetype,
3607   [  --enable-freetype       freetype support (default enabled)])
3608 AC_ARG_ENABLE(fribidi,
3609   [  --enable-fribidi        fribidi support (default enabled)])
3610 if test "${enable_freetype}" != "no"
3611 then
3612   FREETYPE_PATH="${PATH}"
3613   AC_ARG_WITH(freetype-config-path,
3614     [    --with-freetype-config-path=PATH freetype-config path (default search in \$PATH)],
3615     [ if test "${with_freetype_config_path}" != "no"
3616       then
3617         FREETYPE_PATH="${with_freetype_config_path}:${PATH}"
3618       fi ])
3619   AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no, ${FREETYPE_PATH})
3620
3621   if test "${FREETYPE_CONFIG}" != "no"
3622   then
3623     VLC_ADD_PLUGINS([freetype])
3624     VLC_ADD_CFLAGS([freetype],[`${FREETYPE_CONFIG} --cflags`])
3625     VLC_ADD_LDFLAGS([freetype],[`${FREETYPE_CONFIG} --libs`])
3626     AC_CHECK_HEADERS(Carbon/Carbon.h,
3627       [VLC_ADD_LDFLAGS([freetype],[-framework Carbon])])
3628   elif test "${enable_freetype}" =  "yes"
3629   then
3630     AC_MSG_ERROR([I couldn't find the freetype package. You can download libfreetype2
3631 from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
3632     ])
3633   fi
3634
3635   dnl fribidi support
3636   if test "${enable_fribidi}" != "no"
3637   then
3638     FRIBIDI_PATH="${PATH}"
3639     AC_ARG_WITH(fribidi-config-path,
3640       [    --with-fribidi-config-path=PATH fribidi-config path (default search in \$PATH)],
3641       [ if test "${with_fribidi_config_path}" != "no"
3642         then
3643           FRIBIDI_PATH="${with_fribidi_config_path}:${PATH}"
3644         fi ])
3645     AC_PATH_PROG(FRIBIDI_CONFIG, fribidi-config, no, ${FRIBIDI_PATH})
3646
3647     if test "${FRIBIDI_CONFIG}" != "no"
3648     then
3649       VLC_ADD_CFLAGS([freetype], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
3650       VLC_ADD_CPPFLAGS([skins2], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
3651       VLC_ADD_LDFLAGS([freetype], [`${FRIBIDI_CONFIG} --libs`])
3652       VLC_ADD_LDFLAGS([skins2], [`${FRIBIDI_CONFIG} --libs`])
3653     fi
3654   fi
3655 fi
3656
3657 dnl
3658 dnl  libxml2 module
3659 dnl
3660 AC_ARG_ENABLE(libxml2,
3661   [  --enable-libxml2        libxml2 support (default enabled)])
3662 if test "${enable_libxml2}" != "no"
3663 then
3664   XML2_PATH="${PATH}"
3665   AC_ARG_WITH(xml2-config-path,
3666     [    --with-xml2-config-path=PATH xml2-config path (default search in \$PATH)],
3667     [ if test "${with_xml2_config_path}" != "no"; then
3668         XML2_PATH="${with_xml2_config_path}:${PATH}"
3669       fi ])
3670   AC_PATH_PROG(XML2_CONFIG, xml2-config, no, ${XML2_PATH})
3671   if test "${XML2_CONFIG}" != "no"; then
3672     VLC_ADD_CPPFLAGS([xml],[`${XML2_CONFIG} --cflags`])
3673     VLC_ADD_LDFLAGS([xml],[`${XML2_CONFIG} --libs`])
3674     dnl depends on the xmlTextReader extension
3675     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_xml}"
3676     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xml}"
3677     AC_CHECK_LIB(xml2,xmlTextReaderConstName,[
3678       AC_EGREP_HEADER(xmlTextReaderConstName,libxml/xmlreader.h,[
3679         VLC_ADD_PLUGINS([xml]) ],[
3680           AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
3681           if test "${enable_xml2}" = "yes"; then
3682             AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
3683           fi])
3684        ],[
3685       AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
3686       if test "${enable_xml2}" = "yes"; then
3687         AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
3688       fi])
3689     LDFLAGS="${LDFLAGS_save}"
3690     CPPFLAGS="${CPPFLAGS_save}"
3691   else
3692     if test "${enable_xml2}" = "yes"; then
3693       AC_MSG_ERROR([Could not find libxml2])
3694     fi
3695   fi
3696 fi
3697
3698 dnl
3699 dnl  SVG module
3700 dnl
3701 AC_ARG_ENABLE(svg,
3702   [  --enable-svg            SVG support (default disabled)])
3703 if test "${enable_svg}" = "yes"
3704 then
3705   PKG_CHECK_MODULES(SVG, 
3706         librsvg-2.0 >= 2.5.0,
3707         [
3708           VLC_ADD_LDFLAGS([svg],[$SVG_LIBS])
3709           VLC_ADD_CFLAGS([svg],[$SVG_CFLAGS])
3710           VLC_ADD_PLUGINS([svg]) ],
3711         [AC_MSG_WARN(SVG library not found)])
3712 fi
3713
3714 dnl
3715 dnl Snapshot vout module (with cache)
3716 dnl
3717 AC_ARG_ENABLE(snapshot,
3718   [  --enable-snapshot       snapshot module (default disabled)])
3719 if test "${enable_snapshot}" = "yes"
3720 then
3721   VLC_ADD_PLUGINS([snapshot])
3722 fi
3723
3724 dnl
3725 dnl  Qt Embedded module
3726 dnl  (disabled by default)
3727 dnl
3728 AC_ARG_ENABLE(qte,
3729   [  --enable-qte            QT Embedded support (default disabled)])
3730 if test "${enable_qte}" = "yes"
3731 then
3732   AC_ARG_WITH(qte,
3733   [    --with-qte=PATH       Qt Embedded headers and libraries])
3734   if test "${with_qte}" != "no" -a -n "${with_qte}"
3735   then
3736     VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3737     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])
3738   else
3739     VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3740     VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti])
3741   fi
3742   VLC_ADD_PLUGINS([qte])
3743   NEED_QTE_MAIN=yes
3744   CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
3745   AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
3746     AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
3747   ] )
3748   CPPFLAGS="${CPPFLAGS_save}"
3749 fi
3750
3751 dnl
3752 dnl  Qt Video output module
3753 dnl  (disabled by default)
3754 dnl
3755 dnl AC_ARG_ENABLE(qt_video,
3756 dnl   [  --enable-qt_video            QT Video Output support (default disabled)])
3757 dnl if test "${enable_qt_video}" = "yes"
3758 dnl then
3759 dnl  VLC_ADD_PLUGINS([qt_video])
3760 dnl  VLC_ADD_LDFLAGS([qt_video],[-L${QTDIR}/lib])
3761 dnl  LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt_video}"
3762 dnl   AC_CHECK_LIB(qt-mt,main,[
3763 dnl    VLC_ADD_LDFLAGS([qt_video],[-lqt-mt])
3764 dnl  ],[
3765 dnl    AC_CHECK_LIB(qt,main,[
3766 dnl      VLC_ADD_LDFLAGS([qt_video],[-lqt])
3767 dnl    ])
3768 dnl  ])
3769 dnl  NEED_QTE_MAIN=yes
3770 dnl  LDFLAGS="${LDFLAGS_save}"
3771 dnl  VLC_ADD_CXXFLAGS([qt_video],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
3772 dnl fi
3773
3774 dnl
3775 dnl Roku HD1000 Video output module
3776 dnl
3777 AC_ARG_ENABLE(hd1000v,
3778   [  --enable-hd1000v        HD1000 Video Output module (default enabled on HD1000)])
3779 if test "${enable_hd1000v}" != "no" -a "${CXX}" != "" &&
3780   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3781    test "${enable_hd1000v}" = "yes"); then
3782   AC_LANG_PUSH([C++])
3783   AC_CHECK_HEADERS([cascade/graphics/CascadeScreen.h cascade/graphics/CascadeBitmap.h],
3784   [
3785     can_build_roku="yes"
3786   ],
3787   [
3788     can_build_roku="no"
3789     AC_MSG_WARN([Not building Roku HD1000 compatible video output])
3790   ])
3791   if test "$can_build_roku" = "yes"
3792   then
3793     VLC_ADD_PLUGINS([hd1000v])
3794     VLC_ADD_LDFLAGS([hd1000v],[-lCascade -ldvbpsi -lmad])
3795   fi
3796   AC_LANG_POP([C++])
3797 fi
3798
3799 dnl
3800 dnl  Windows DirectX module
3801 dnl
3802 AC_ARG_ENABLE(directx,
3803   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
3804 if test "${enable_directx}" != "no"
3805 then
3806   if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "cygwin"
3807   then
3808     AC_ARG_WITH(directx,
3809     [    --with-directx=PATH   Win32 DirectX headers])
3810     if test -z "${with_directx}"
3811     then
3812       AC_CHECK_HEADERS(ddraw.h,
3813       [ VLC_ADD_PLUGINS([vout_directx aout_directx])
3814         VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
3815         dnl to be moved when dependance is removed
3816         AC_CHECK_HEADERS(GL/gl.h, [
3817             VLC_ADD_PLUGINS([glwin32])
3818             VLC_ADD_LDFLAGS([glwin32],[-lopengl32 -lgdi32])
3819         ]) ])
3820     else
3821       AC_MSG_CHECKING(for directX headers in ${with_directx})
3822       if test -f ${with_directx}/ddraw.h
3823       then
3824         VLC_ADD_PLUGINS([vout_directx aout_directx])
3825         VLC_ADD_CPPFLAGS([vout_directx aout_directx],[-I${with_directx}])
3826         VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
3827         AC_MSG_RESULT(yes)
3828       else
3829         AC_MSG_RESULT(no)
3830         AC_MSG_ERROR([Cannot find ${with_directx}/ddraw.h!])
3831       fi
3832     fi
3833   fi
3834 fi
3835
3836 dnl
3837 dnl  Linux framebuffer module
3838 dnl
3839 AC_ARG_ENABLE(fb,
3840   [  --enable-fb             Linux framebuffer support (default enabled on Linux)])
3841     if test "${enable_fb}" != "no"
3842     then
3843       AC_CHECK_HEADERS(linux/fb.h, [
3844         VLC_ADD_PLUGINS([fb])
3845       ])
3846     fi
3847
3848 dnl
3849 dnl  Linux MGA module
3850 dnl
3851 AC_ARG_ENABLE(mga,
3852   [  --enable-mga            Linux kernel Matrox support (default disabled)],
3853   [ if test "${enable_mga}" = "yes"
3854     then
3855       VLC_ADD_PLUGINS([mga])
3856     fi ])
3857
3858 dnl
3859 dnl  SVGAlib module
3860 dnl
3861 AC_ARG_ENABLE(svgalib,
3862   [  --enable-svgalib        SVGAlib support (default disabled)])
3863 if test "${enable_svgalib}" = "yes"
3864 then
3865   VLC_ADD_PLUGINS([svgalib])
3866   VLC_ADD_LDFLAGS([svgalib],[-lvgagl -lvga])
3867 fi
3868
3869 dnl
3870 dnl  DirectFB module
3871 dnl
3872 AC_ARG_ENABLE(directfb,
3873   [  --enable-directfb       DirectFB support (default disabled)])
3874 if test "${enable_directfb}" = "yes"
3875 then
3876   if test "${with_directfb}" = "no"
3877   then
3878     AC_CHECK_HEADER(directfb.h, have_directfb="true", have_directfb="false")
3879     if test "${have_directfb}"= "true"
3880     then
3881         VLC_ADD_PLUGINS([directfb])
3882         VLC_ADD_LDFLAGS([directfb],[-ldirectfb -lfusion -ldirect -lpthread -ljpeg -lz -ldl])
3883         VLC_ADD_CPPFLAGS([directfb],[-I/usr/include/directfb -D_REENTRANT])
3884     else
3885         AC_MSG_ERROR([cannot find /usr/include/directfb headers, make sure directfb is installed on your system or use --disable-directfb])
3886     fi
3887   else
3888     CPPFLAGS_save="${CPPFLAGS}"
3889     CPPFLAGS="${CPPFLAGS} -I${with_directfb}/include"
3890     AC_CHECK_HEADER(directfb.h, have_directfb="true", have_directfb="false")
3891     CPPFLAGS="${CPPFLAGS_save}"
3892     AC_ARG_WITH(directfb,
3893         [    --with-directfb=PATH  path to directfb],
3894         [ if test "${with_directfb}" != "no" -a -n "${with_directfb}"
3895         then
3896             VLC_ADD_PLUGINS([directfb])
3897             VLC_ADD_CPPFLAGS([directfb],[-I${with_directfb}/include -D_REENTRANT])
3898             VLC_ADD_LDFLAGS([directfb],[-L${with_directfb}/lib -ldirectfb -lfusion -ldirect -lpthread -ljpeg -lz -ldl])
3899         fi ],
3900         [ AC_MSG_ERROR([cannot find directfb headers in ${with_directfb}/include]) ])
3901   fi
3902 fi
3903
3904 dnl
3905 dnl  GGI module
3906 dnl
3907 AC_ARG_ENABLE(ggi,
3908   [  --enable-ggi            GGI support (default disabled)])
3909 if test "${enable_ggi}" = "yes"
3910 then
3911   VLC_ADD_PLUGINS([ggi])
3912   VLC_ADD_LDFLAGS([ggi],[-lggi])
3913   AC_ARG_WITH(ggi,
3914     [    --with-ggi=PATH       path to libggi],
3915     [ if test "${with_ggi}" != "no" -a -n "${with_ggi}"
3916       then
3917         VLC_ADD_CPPFLAGS([ggi],[-I${with_ggi}/include])
3918         VLC_ADD_LDFLAGS([ggi],[-L${with_ggi}/lib])
3919       fi ])
3920 fi
3921
3922 dnl
3923 dnl  Glide module
3924 dnl
3925 AC_ARG_ENABLE(glide,
3926   [  --enable-glide          Glide (3dfx) support (default disabled)])
3927 if test "${enable_glide}" = "yes"
3928 then
3929   CFLAGS_save="${CFLAGS}"
3930   AC_ARG_WITH(glide,
3931     [    --with-glide=PATH     path to libglide],
3932     [ if test "${with_glide}" != "no" -a -n "${with_glide}"
3933       then
3934         VLC_ADD_CPPFLAGS([glide],[-I${with_glide}/include])
3935         VLC_ADD_LDFLAGS([glide],[-L${with_glide}/lib])
3936         CFLAGS="$CFLAGS -I${with_glide}/include"
3937     fi ])
3938    CFLAGS="$CFLAGS -I/usr/include/glide"
3939    AC_CHECK_HEADER(glide.h,[   
3940       VLC_ADD_PLUGINS([glide])
3941       VLC_ADD_LDFLAGS([glide],[-lglide2x -lm])
3942       VLC_ADD_CPPFLAGS([glide],[-I/usr/include/glide])
3943     ],[
3944       AC_MSG_ERROR([You don't have libglide. Install it or do not use --enable-glide])
3945      ])
3946    CFAGS="${CFLAGS_save}"
3947 fi
3948
3949 dnl
3950 dnl  AA plugin
3951 dnl
3952 AC_ARG_ENABLE(aa,
3953   [  --enable-aa             aalib output (default disabled)])
3954 if test "${enable_aa}" = "yes"
3955 then
3956   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3957   if test "${have_aa}" = "true"
3958   then
3959     VLC_ADD_PLUGINS([aa])
3960     VLC_ADD_LDFLAGS([aa],[-laa])
3961   fi
3962 fi
3963
3964 dnl
3965 dnl  libcaca plugin
3966 dnl
3967 AC_ARG_ENABLE(caca,
3968   [  --enable-caca           libcaca output (default disabled)])
3969 if test "${enable_caca}" = "yes"
3970 then
3971   CACA_PATH="${PATH}"
3972   AC_ARG_WITH(caca-config-path,
3973     [    --with-caca-config-path=PATH caca-config path (default search in \$PATH)],
3974     [ if test "${with_caca_config_path}" != "no"
3975       then
3976         CACA_PATH="${with_caca_config_path}:${PATH}"
3977       fi ])
3978   AC_PATH_PROG(CACA_CONFIG, caca-config, no, ${CACA_PATH})
3979   if test "${CACA_CONFIG}" != "no"
3980   then
3981     VLC_ADD_PLUGINS([caca])
3982     VLC_ADD_CFLAGS([caca],[`${CACA_CONFIG} --cflags`])
3983     VLC_ADD_LDFLAGS([caca],[`${CACA_CONFIG} --plugin-libs`])
3984   fi
3985 fi
3986
3987 dnl
3988 dnl  win32 GDI plugin
3989 dnl
3990 AC_ARG_ENABLE(wingdi,
3991   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
3992 if test "${enable_wingdi}" != "no"; then
3993   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
3994     VLC_ADD_PLUGINS([wingdi])
3995     VLC_ADD_LDFLAGS([wingdi],[-lgdi32])
3996   fi
3997   if test "${SYS}" = "mingwce"; then
3998     VLC_ADD_PLUGINS([wingdi wingapi])
3999   fi
4000 fi
4001
4002 dnl
4003 dnl  Audio plugins
4004 dnl
4005
4006 AC_ARG_WITH(,[Audio plugins:])
4007
4008 dnl
4009 dnl  OSS /dev/dsp module (enabled by default except on win32)
4010 dnl
4011 AC_ARG_ENABLE(oss,
4012   [  --enable-oss            Linux OSS /dev/dsp support (enabled on Linux)])
4013
4014 if test "${enable_oss}" != "no" &&
4015   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
4016    test "${enable_oss}" = "yes")
4017 then
4018   AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h, [
4019     VLC_ADD_PLUGINS([oss])
4020     AC_CHECK_LIB(ossaudio,main,VLC_ADD_LDFLAGS([oss],[-lossaudio]))
4021   ])
4022 fi
4023
4024 dnl
4025 dnl  Esound module
4026 dnl
4027 AC_ARG_ENABLE(esd,
4028   [  --enable-esd            Esound library support (default disabled)],
4029   [if test "${enable_esd}" = "yes"
4030    then
4031      AC_PATH_PROG(ESD_CONFIG, esd-config, no)
4032      if test "${ESD_CONFIG}" != "no"
4033      then
4034        VLC_ADD_PLUGINS([esd])
4035        VLC_ADD_CFLAGS([esd],[`${ESD_CONFIG} --cflags`])
4036        VLC_ADD_LDFLAGS([esd],[`${ESD_CONFIG} --libs`])
4037      fi
4038    fi])
4039
4040 dnl
4041 dnl  Portaudio module
4042 dnl
4043 AC_ARG_ENABLE(portaudio,
4044   [  --enable-portaudio      Portaudio library support (default disabled)],
4045   [if test "${enable_portaudio}" = "yes"
4046    then
4047      VLC_ADD_PLUGINS([portaudio])
4048      VLC_ADD_CXXFLAGS([portaudio],[])
4049      if test "${SYS}" = "mingw32"; then
4050         VLC_ADD_LDFLAGS([portaudio],[-lportaudio -lwinmm -lole32])
4051      else
4052         VLC_ADD_LDFLAGS([portaudio],[-lportaudio])
4053      fi
4054    fi])
4055
4056 dnl
4057 dnl  aRts module -- broken (freeze wxWidgets)
4058 dnl
4059 AC_ARG_ENABLE(arts,
4060  [  --enable-arts           aRts sound server (default disabled)],
4061  [if test "${enable_arts}" = "yes"
4062   then
4063     AC_PATH_PROG(ARTS_CONFIG, artsc-config, no)
4064     if test "${ARTS_CONFIG}" != "no"
4065     then
4066       VLC_ADD_PLUGINS([arts])
4067       VLC_ADD_CFLAGS([arts],[`${ARTS_CONFIG} --cflags`])
4068       VLC_ADD_LDFLAGS([arts],[`${ARTS_CONFIG} --libs `])
4069     fi
4070   fi])
4071
4072 dnl
4073 dnl  ALSA module
4074 dnl
4075 AC_ARG_ENABLE(alsa,
4076   [  --enable-alsa           ALSA sound support for Linux (default enabled)])
4077 if test "${enable_alsa}" != "no"
4078 then
4079   AC_CHECK_HEADER(alsa/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false")
4080   if test "${have_alsa}" = "true"
4081   then
4082     CFLAGS="${CFLAGS_save}"
4083     AC_TRY_COMPILE([#define ALSA_PCM_NEW_HW_PARAMS_API
4084                     #define ALSA_PCM_NEW_SW_PARAMS_API
4085                     #include <alsa/asoundlib.h>],
4086        [void foo() { snd_pcm_hw_params_get_period_time(0,0,0); }],
4087         AC_DEFINE(HAVE_ALSA_NEW_API, 1, Define if ALSA is at least rc4))
4088     VLC_ADD_PLUGINS([alsa])
4089     VLC_ADD_LDFLAGS([alsa],[-lasound -lm -ldl])
4090   else
4091     if test "${enable_alsa}" = "yes"; then
4092       AC_MSG_ERROR([Could not find ALSA development headers])
4093     fi
4094   fi
4095 fi
4096
4097 dnl
4098 dnl  win32 waveOut plugin
4099 dnl
4100 AC_ARG_ENABLE(waveout,
4101   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
4102 if test "${enable_waveout}" != "no"; then
4103   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
4104     VLC_ADD_PLUGINS([waveout])
4105     VLC_ADD_LDFLAGS([waveout],[-lwinmm])
4106   fi
4107   if test "${SYS}" = "mingwce"; then
4108     VLC_ADD_PLUGINS([waveout])
4109   fi
4110 fi
4111
4112 dnl
4113 dnl  CoreAudio plugin
4114 dnl
4115 AC_ARG_ENABLE(macosx-audio,
4116   [  --enable-macosx-audio   Mac OS X audio module (default enabled on MacOS X)])
4117 if test "${enable_macosx-audio}" != "no" &&
4118   (test "${SYS}" = "darwin" || test "${enable_macosx-audio}" = "yes")
4119 then
4120   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h, 
4121     [ VLC_ADD_BUILTINS([auhal])
4122       VLC_ADD_LDFLAGS([auhal],[-framework CoreAudio -framework AudioUnit -framework AudioToolbox])
4123     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
4124 fi
4125
4126 dnl
4127 dnl  Roku HD1000 audio
4128 dnl
4129 AC_ARG_ENABLE(hd1000a,
4130   [  --enable-hd1000a        HD1000 audio module (default enabled on HD1000)])
4131 if test "${enable_hd1000a}" != "no" -a "${CXX}" != "" &&
4132   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
4133    test "${enable_hd1000a}" = "yes")
4134 then
4135   AC_LANG_PUSH([C++])
4136   AC_CHECK_HEADERS(deschutes/libraries/hdmachinex225/PCMAudioPlayer.h, [
4137     VLC_ADD_PLUGINS([hd1000a])
4138     AC_CHECK_LIB(HDMachineX225,main,VLC_ADD_LDFLAGS([hd1000a],[-lHDMachineX225]))  ])
4139   AC_LANG_POP([C++])
4140 fi
4141
4142 dnl
4143 dnl  JACK module
4144 dnl
4145 AC_ARG_ENABLE(jack,
4146  [  --enable-jack           JACK audio module (default disabled)],
4147  [if test "${enable_jack}" = "yes"
4148   then
4149     AC_CHECK_HEADERS(jack/jack.h, [
4150       VLC_ADD_PLUGINS([jack])
4151       VLC_ADD_LDFLAGS([jack],[-ljack]) ])
4152   fi])
4153
4154 dnl
4155 dnl  CyberLink for C++ UPnP stack
4156 dnl
4157 AC_ARG_ENABLE(cyberlink,
4158   [  --enable-cyberlink      CyberLink for C++ UPnP stack (default disabled)])
4159 AS_IF([test "${CXX}" != "" -a "${enable_cyberlink}" = "yes" || (test "${enable_cyberlink}" != "no")], [
4160   AC_ARG_WITH(cyberlink-tree,
4161     [    --with-cyberlink-tree=PATH CyberLink for C++ tree for static linking])
4162
4163   dnl
4164   dnl test for --with-cyberlink-tree
4165   dnl
4166   AS_IF([test ! -z "${with_cyberlink_tree}" -a "${CXX}" != ""], [
4167     AC_LANG_PUSH(C++)
4168     real_cyberlink_tree="`cd ${with_cyberlink_tree} 2>/dev/null && pwd`"
4169     AS_IF([test -z "${real_cyberlink_tree}"], [
4170       dnl  The given directory can't be found
4171       AC_MSG_RESULT(no)
4172       AC_MSG_ERROR([cannot cd to ${with_cyberlink_tree}])
4173     ])
4174     CPPFLAGS_save="${CPPFLAGS}"
4175     CPPFLAGS_cyberlink="-I${real_cyberlink_tree}/include"
4176     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_cyberlink}"
4177     AC_CHECK_HEADERS([cybergarage/upnp/MediaServer.h],
4178       [ VLC_ADD_CXXFLAGS([upnp_cc], [${CPPFLAGS_cyberlink}])
4179         VLC_ADD_PLUGINS([upnp_cc]) 
4180       ],[
4181         AC_MSG_ERROR([cannot find CyberLink for C++ headers])
4182       ])
4183     AC_MSG_CHECKING(for libclink.a in ${with_cyberlink_tree})
4184     AS_IF([test -f "${real_cyberlink_tree}/lib/unix/libclink.a"], [
4185       AC_MSG_RESULT(${real_cyberlink_tree}/lib/unix/libclink.a)
4186       dnl The mere fact that we have to make such an ugly check sucks
4187       AC_MSG_CHECKING(for XML parser to link CyberLink with)
4188       LIBS_save="$LIBS"
4189       LIBS_cclink="no"
4190       for l in "`xml2-config --libs`" -lexpat -lxerces-c; do
4191         LIBS="$LIBS_save ${real_cyberlink_tree}/lib/unix/libclink.a -lpthread $l"
4192         AC_LINK_IFELSE([AC_LANG_PROGRAM([
4193 #include <cybergarage/upnp/media/player/MediaPlayer.h>
4194 using namespace CyberLink;
4195
4196 class testclass : public SearchResponseListener, public MediaPlayer
4197 {
4198     virtual void deviceSearchResponseReceived( SSDPPacket *)
4199     {
4200     }
4201
4202     public:
4203       testclass (void)
4204       {
4205         addSearchResponseListener (this);
4206         start ();
4207       }
4208 };
4209 ],[testclass l;])],[LIBS_cclink="$l"])
4210       done
4211       LIBS="${LIBS_save}"
4212       dnl should not happen - otherwise this needs fixing - hence FAILURE
4213       AS_IF([test "${LIBS_cclink}" == "no"],
4214         [AC_MSG_FAILURE([cannot find XML parser for CyberLink])])
4215       AC_MSG_RESULT([${LIBS_cclink}])
4216       VLC_ADD_LDFLAGS([upnp_cc], [${real_cyberlink_tree}/lib/unix/libclink.a -lpthread ${LIBS_cclink}])
4217     ], [
4218       AC_MSG_RESULT(no)
4219       AC_MSG_ERROR([cannot find ${real_cyberlink_tree}/lib/unix/libclink.a, make sure you compiled CyberLink for C++ in ${with_cyberlink_tree}])
4220     ])
4221     CPPFLAGS="${CPPFLAGS_save}"
4222     AC_LANG_POP([C++])
4223   ])
4224 ])
4225
4226 dnl
4227 dnl UPnP Plugin (Intel SDK)
4228 dnl
4229 AC_ARG_ENABLE(upnp,
4230   [  --enable-upnp           Intel UPnP SDK (default auto)])
4231
4232 VLC_ADD_CXXFLAGS([upnp_intel], [ ])
4233 AS_IF([test "x${enable_upnp}" != "xno"], [
4234   AC_CHECK_LIB([upnp], [UpnpInit], [has_upnp="yes"], [has_upnp="no"], [-lpthread])
4235   AS_IF([test "x${enable_upnp}" != "x" && test "${has_upnp}" == "no"], [
4236     AC_MSG_ERROR([cannot find Intel UPnP SDK (libupnp)])
4237   ])
4238   AS_IF([test "${has_upnp}" == "yes"], [
4239     VLC_ADD_LDFLAGS([upnp_intel], [-lupnp])
4240   ])
4241 ], [
4242   has_upnp="no"
4243 ])
4244
4245 AS_IF([test "${has_upnp}" == "yes"], [
4246   VLC_ADD_PLUGINS([upnp_intel])
4247 ])
4248
4249
4250 dnl
4251 dnl  Interface plugins
4252 dnl
4253
4254 AC_ARG_WITH(,[Interface plugins:])
4255
4256 dnl special case for BeOS
4257 if test "${SYS}" = "beos"
4258 then
4259     VLC_ADD_BUILTINS([beos])
4260 fi
4261
4262 dnl
4263 dnl Skins2 module
4264 dnl
4265 AC_ARG_ENABLE(skins2,
4266   [  --enable-skins2         Skins2 interface module (experimental)])
4267 if test "${enable_skins2}" = "yes" ||
4268   (test "${SYS}" != "darwin" && test "${SYS}" != "beos" &&
4269    test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then
4270
4271   dnl test for the required libraries
4272   skins2_missing_lib="no"
4273
4274   dnl freetype
4275   if test "${FREETYPE_CONFIG}" != "no"; then
4276     VLC_ADD_CPPFLAGS([skins2],[`${FREETYPE_CONFIG} --cflags`])
4277     VLC_ADD_LDFLAGS([skins2],[`${FREETYPE_CONFIG} --libs`])
4278   else
4279     skins2_missing_lib="yes"
4280     if test "${enable_skins2}" = "yes"; then
4281       AC_MSG_ERROR([Could not find freetype (required for skins2)])
4282     fi
4283   fi
4284
4285   if test "${skins2_missing_lib}" = "no" && (test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"); then
4286     VLC_ADD_PLUGINS([skins2])
4287     ALIASES="${ALIASES} svlc"
4288     VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -Imodules/gui/skins2 -DWIN32_SKINS])
4289     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
4290     VLC_ADD_LDFLAGS([skins2],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
4291
4292   else if test "${skins2_missing_lib}" = "no"; then
4293     VLC_ADD_PLUGINS([skins2])
4294     ALIASES="${ALIASES} svlc"
4295     VLC_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 ${X_CFLAGS} -DX11_SKINS])
4296     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
4297     VLC_ADD_LDFLAGS([skins2],[${X_LIBS} ${X_PRE_LIBS} -lXext -lX11])
4298   fi fi
4299 fi
4300
4301
4302 dnl dnl
4303 dnl dnl  Gtk+ module
4304 dnl dnl
4305 dnl AC_ARG_ENABLE(gtk,
4306 dnl   [  --enable-gtk            Gtk+ support (default enabled)])
4307 dnl if test "${enable_gtk}" != "no"
4308 dnl then
4309 dnl   GTK_PATH="${PATH}"
4310 dnl   AC_ARG_WITH(gtk-config-path,
4311 dnl     [    --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)],
4312 dnl     [ if test "${with_gtk_config_path}" != "no"
4313 dnl       then
4314 dnl         GTK_PATH="${with_gtk_config_path}:${PATH}"
4315 dnl       fi ])
4316 dnl   # look for gtk-config
4317 dnl   AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH})
4318 dnl   GTK_CONFIG=${GTK12_CONFIG}
4319 dnl   if test "${GTK_CONFIG}" = "no"
4320 dnl   then
4321 dnl     AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH})
4322 dnl   fi
4323 dnl   if test "${GTK_CONFIG}" != "no"
4324 dnl   then
4325 dnl     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
4326 dnl     then
4327 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.])
4328 dnl     fi
4329 dnl     if test "${SYS}" != "mingw32"; then
4330 dnl       VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk gthread`])
4331 dnl       VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`])
4332 dnl     else
4333 dnl       VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk`])
4334 dnl       VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`])
4335 dnl     fi
4336 dnl     # now look for the gtk.h header
4337 dnl     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gtk}"
4338 dnl     ac_cv_gtk_headers=yes
4339 dnl     AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [
4340 dnl       ac_cv_gtk_headers=no
4341 dnl       echo "Cannot find gtk development headers."
4342 dnl     ])
4343 dnl     if test "${ac_cv_gtk_headers}" = "yes"
4344 dnl     then
4345 dnl       VLC_ADD_PLUGINS([gtk])
4346 dnl       if test "${SYS}" != "mingw32"; then
4347 dnl         NEED_GTK_MAIN=yes
4348 dnl       fi
4349 dnl       ALIASES="${ALIASES} gvlc"
4350 dnl     fi
4351 dnl     CPPFLAGS="${CPPFLAGS_save}"
4352 dnl   fi
4353 dnl fi
4354 dnl 
4355 dnl
4356 dnl  Gtk+2 module ! Disabled for now as it is unusable and confuses users
4357 dnl
4358 dnl AC_ARG_ENABLE(gtk2,
4359 dnl   [  --enable-gtk2           Gtk2 support (default disabled)])
4360 dnl if test "${enable_gtk2}" = "yes"
4361 dnl then
4362 dnl   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
4363 dnl   VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
4364 dnl   VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
4365 dnl   VLC_ADD_PLUGINS([gtk2])
4366 dnl   if test "${SYS}" != "mingw32"; then
4367 dnl     NEED_GTK2_MAIN=yes
4368 dnl   fi
4369 dnl fi
4370
4371 dnl
4372 dnl  PDA Gtk+2 module
4373 dnl
4374 AC_ARG_ENABLE(pda,
4375   [  --enable-pda            PDA interface needs Gtk2 support (default disabled)])
4376 if test "${enable_pda}" = "yes"
4377 then
4378   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
4379   VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
4380   VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
4381   VLC_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}])
4382   VLC_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}])
4383   VLC_ADD_PLUGINS([pda])
4384   if test "${SYS}" != "mingw32"; then
4385     NEED_GTK2_MAIN=yes
4386   fi
4387 fi
4388
4389 dnl dnl
4390 dnl dnl  Gnome module
4391 dnl dnl
4392 dnl AC_ARG_ENABLE(gnome,
4393 dnl   [  --enable-gnome          Gnome interface support (default disabled)],
4394 dnl   [if test "${enable_gnome}" = "yes"; then
4395 dnl     # look for gnome-config
4396 dnl     AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
4397 dnl     if test -x ${GNOME_CONFIG}
4398 dnl     then
4399 dnl        VLC_ADD_CFLAGS([gnome],[`${GNOME_CONFIG} --cflags gtk gnomeui`])
4400 dnl        VLC_ADD_LDFLAGS([gnome],[`${GNOME_CONFIG} --libs gnomeui | sed 's,-rdynamic,,'`])
4401 dnl     fi
4402 dnl     # now look for the gnome.h header
4403 dnl     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gnome}"
4404 dnl     AC_CHECK_HEADERS(gnome.h, [
4405 dnl       VLC_ADD_PLUGINS([gnome])
4406 dnl       NEED_GTK_MAIN=yes
4407 dnl       NEED_GNOME_MAIN=yes
4408 dnl       ALIASES="${ALIASES} gnome-vlc"
4409 dnl       dnl We need this because of some moronic gnomesupport.h flavours
4410 dnl       AC_MSG_CHECKING(for strndup in gnome.h)
4411 dnl       AC_EGREP_HEADER(strndup,gnome.h,[
4412 dnl         AC_MSG_RESULT(yes)
4413 dnl         AC_DEFINE(STRNDUP_IN_GNOME_H, 1,
4414 dnl                   Define if <gnome.h> defines strndup.)],[
4415 dnl         AC_MSG_RESULT(no)])
4416 dnl      ],[
4417 dnl       AC_MSG_ERROR([Can't find gnome headers. Please install the gnome
4418 dnl developement tools or remove the --enable-gnome option])
4419 dnl      ])
4420 dnl     CPPFLAGS="${CPPFLAGS_save}"
4421 dnl   fi])
4422
4423 dnl
4424 dnl  Gnome2 module ! Disabled for know as it is unuseable and confuses users
4425 dnl
4426 dnl AC_ARG_ENABLE(gnome2,
4427 dnl   [  --enable-gnome2         Gnome2 support (default disabled)])
4428 dnl if test "${enable_gnome2}" = "yes"
4429 dnl then
4430 dnl   PKG_CHECK_MODULES(GNOME2, [libgnomeui-2.0])
4431 dnl   VLC_ADD_CFLAGS([gnome2],[${GNOME2_CFLAGS}])
4432 dnl   VLC_ADD_LDFLAGS([gnome2],[${GNOME2_LIBS}])
4433 dnl   VLC_ADD_PLUGINS([gnome2])
4434 dnl   if test "${SYS}" != "mingw32"; then
4435 dnl     NEED_GNOME2_MAIN=yes
4436 dnl   fi
4437 dnl fi
4438
4439 dnl
4440 dnl  wxWidgets module
4441 dnl
4442 AC_ARG_ENABLE(wxwidgets,
4443   [  --enable-wxwidgets      wxWidgets support (default enabled)])
4444 if test "${enable_wxwindows}" 
4445 then
4446   AC_MSG_WARN(--{en|dis}able-wxwindows is deprecated. Use --{en|dis}able-wxwidgets instead.)
4447 fi
4448
4449 if test "${enable_wxwindows}" = "no"
4450 then
4451   enable_wxwidgets="no"
4452 fi
4453 if test "${enable_wxwidgets}" != "no"
4454 then
4455   WXWIDGETS_PATH="${PATH}"
4456   AC_ARG_WITH(wx-config-path,
4457     [    --with-wx-config-path=PATH wx-config path (default search in \$PATH)],
4458     [ if test "${with_wx_config_path}" != "no"
4459       then
4460         WXWIDGETS_PATH="${with_wx_config_path}:${PATH}"
4461       fi ])
4462   WXWIDGETS_NAME="wx-config"
4463   AC_ARG_WITH(wx-config,
4464     [    --with-wx-config=NAME      wx-config name (default is wx-config)],
4465     [ if test "${with_wx_config}" != "no"
4466       then
4467         WXWIDGETS_NAME="${with_wx_config}"
4468       fi ])
4469   # look for wx-config
4470   AC_PATH_PROG(WX_CONFIG, ${WXWIDGETS_NAME}, no, ${WXWIDGETS_PATH})
4471   if test "${WX_CONFIG}" != "no" -a "${CXX}" != ""
4472   then
4473     if expr 2.3.0 \> `${WX_CONFIG} --version` >/dev/null
4474     then
4475       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.])
4476     fi
4477     AC_LANG_PUSH(C++)
4478     # Turn this error:
4479     #   playlist.cpp:1351: error: ISO C++ forbids cast to non-reference type
4480     # into a warning. However better would be to fix playlist.cpp
4481     AC_CACHE_CHECK([if \$CXX accepts -fpermissive],
4482         [ac_cv_cxx_fpermissive],
4483         [CXXFLAGS="${CXXFLAGS_save} -fpermissive"
4484          AC_TRY_COMPILE([],,ac_cv_cxx_fpermissive=yes,
4485                         ac_cv_cxx_fpermissive=no)])
4486     if test "${ac_cv_cxx_fpermissive}" = "yes"; then
4487       VLC_ADD_CXXFLAGS([wxwidgets],-fpermissive)
4488     fi
4489     VLC_ADD_LDFLAGS([wxwidgets],[`${WX_CONFIG} --libs`])
4490     VLC_ADD_CXXFLAGS([wxwidgets],[`${WX_CONFIG} --cxxflags`])
4491     if ${WX_CONFIG} --unicode
4492     then 
4493       # wxwidgets should provide the following flags but does not
4494       # the following is required to compile for win32
4495       VLC_ADD_CXXFLAGS([wxwidgets],[-D_UNICODE -DUNICODE])
4496     fi
4497     if test "$have_libcdio" = "yes"
4498     then 
4499       VLC_ADD_LDFLAGS([wxwidgets],[$LIBCDIO_LIBS])
4500       VLC_ADD_CXXFLAGS([wxwidgets],[$LIBCDIO_CFLAGS])
4501     else 
4502       AC_MSG_WARN([Probe disc disabled because ok libcdio library not found])
4503     fi
4504
4505     if test "$have_libvcdinfo" = "yes"
4506     then 
4507       VLC_ADD_LDFLAGS([wxwidgets],[$VCDINFO_LIBS])
4508       VLC_ADD_CXXFLAGS([wxwidgets],[$VCDINFO_CFLAGS])
4509     else 
4510       AC_MSG_WARN([VCD information on Probe disc disabled because ok libvcdinfo not found])
4511     fi
4512
4513     # now look for the wxprec.h header
4514     CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_wxwidgets}"
4515     ac_cv_wx_headers=yes
4516     AC_CHECK_HEADERS(wx/wxprec.h, , [
4517       ac_cv_wx_headers=no
4518       echo "Cannot find wxWidgets development headers."
4519     ])
4520     if test "${ac_cv_wx_headers}" = "yes"
4521     then
4522       VLC_ADD_PLUGINS([wxwidgets])
4523       ALIASES="${ALIASES} wxvlc"
4524     fi
4525     CPPFLAGS="${CPPFLAGS_save}"
4526     AC_LANG_POP(C++)
4527   fi
4528 fi
4529
4530 dnl
4531 dnl  WinCE GUI module
4532 dnl
4533 if test "${SYS}" = "mingwce"; then
4534   VLC_ADD_BUILTINS([wince])
4535   VLC_ADD_CXXFLAGS([wince],[])
4536   VLC_ADD_LDFLAGS([wince],[-lcommctrl -lcommdlg -laygshell])
4537   dnl Gross hack
4538   VLC_ADD_LDFLAGS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
4539 elif test "${SYS}" = "mingw32"; then
4540   VLC_ADD_CXXFLAGS([wince],[])
4541   VLC_ADD_LDFLAGS([wince],[-lcomctl32 -lcomdlg32 -lgdi32 -lole32])
4542   dnl Gross hack
4543   VLC_ADD_LDFLAGS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
4544 fi
4545
4546 dnl
4547 dnl Simple test for skins2 dependency
4548 dnl
4549 if test "${enable_skins2}" != "no"
4550 then
4551   if test "${WX_CONFIG}" = "no"
4552   then
4553     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.])
4554   fi
4555 fi
4556
4557 dnl dnl
4558 dnl dnl  Qt module
4559 dnl dnl
4560 dnl AC_ARG_ENABLE(qt,
4561 dnl   [  --enable-qt             Qt interface support (default disabled)],
4562 dnl   [if test "${enable_qt}" = "yes"; then
4563 dnl      VLC_ADD_PLUGINS([qt])
4564 dnl      ALIASES="${ALIASES} qvlc"
4565 dnl      VLC_ADD_LDFLAGS([qt],[-L${QTDIR}/lib])
4566 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt}"
4567 dnl      AC_CHECK_LIB(qt-mt,main,[
4568 dnl        VLC_ADD_LDFLAGS([qt],[-lqt-mt])
4569 dnl      ],[
4570 dnl        AC_CHECK_LIB(qt,main,[
4571 dnl          VLC_ADD_LDFLAGS([qt],[-lqt])
4572 dnl        ])
4573 dnl      ])
4574 dnl      LDFLAGS="${LDFLAGS_save}"
4575 dnl      VLC_ADD_CXXFLAGS([qt],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
4576 dnl      if test -x ${QTDIR}/bin/moc
4577 dnl      then
4578 dnl        MOC=${QTDIR}/bin/moc
4579 dnl      else
4580 dnl        MOC=moc
4581 dnl      fi
4582 dnl    fi])
4583 dnl 
4584 dnl dnl
4585 dnl dnl  KDE module
4586 dnl dnl
4587 dnl AC_ARG_ENABLE(kde,
4588 dnl   [  --enable-kde            KDE interface support (default disabled)],
4589 dnl   [if test "${enable_kde}" = "yes"; then
4590 dnl      VLC_ADD_PLUGINS([kde])
4591 dnl      ALIASES="${ALIASES} kvlc"
4592 dnl      VLC_ADD_LDFLAGS([kde],[-L${KDEDIR}/lib])
4593 dnl      dnl Check for -lkfile (only in KDE 2) or -lkdeui -lkio (KDE 3)
4594 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
4595 dnl      AC_CHECK_LIB(kfile,main,[
4596 dnl        VLC_ADD_LDFLAGS([kde],[-lkfile])
4597 dnl      ])
4598 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
4599 dnl      AC_CHECK_LIB(kdeui,main,[
4600 dnl        VLC_ADD_LDFLAGS([kde],[-lkdeui])
4601 dnl      ])
4602 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
4603 dnl      AC_CHECK_LIB(kio,main,[
4604 dnl        VLC_ADD_LDFLAGS([kde],[-lkio])
4605 dnl      ])
4606 dnl      LDFLAGS="${LDFLAGS_save}"
4607 dnl      VLC_ADD_CXXFLAGS([kde],[-I/usr/include/kde -I/usr/include/qt3 -I/usr/include/qt])
4608 dnl      VLC_ADD_CXXFLAGS([kde],[-I${KDEDIR}/include -I${QTDIR}/include])
4609 dnl      if test -x ${QTDIR}/bin/moc
4610 dnl      then
4611 dnl        MOC=${QTDIR}/bin/moc
4612 dnl      else
4613 dnl        MOC=moc
4614 dnl      fi
4615 dnl    fi])
4616
4617 dnl
4618 dnl  Opie QT embedded module
4619 dnl
4620 AC_ARG_ENABLE(opie,
4621   [  --enable-opie           Qt embedded interface support (default disabled)],
4622   [if test "${enable_opie}" = "yes"; then
4623      AC_ARG_WITH(qte,
4624      [    --with-qte=PATH       Qt Embedded headers and libraries])
4625      if test "${with_qte}" != "no" -a -n "${with_qte}"
4626      then
4627        VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
4628        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])
4629      else
4630        VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'`])
4631        VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'`])
4632      fi
4633      CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
4634      AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
4635        AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
4636      ] )
4637      CPPFLAGS="${CPPFLAGS_save}"
4638
4639      VLC_ADD_PLUGINS([opie])
4640      NEED_QTE_MAIN=yes
4641      VLC_ADD_LDFLAGS([opie],[-lqpe ${LDFLAGS_qte}])
4642      VLC_ADD_CXXFLAGS([opie],[${CXXFLAGS_qte}])
4643      if test "${with_qte}" != "no" -a -n "${with_qte}"
4644      then
4645        MOC=${with_qte}/bin/moc
4646      else
4647        MOC=${QTDIR}/bin/moc
4648      fi
4649    fi])
4650
4651 dnl
4652 dnl  MacOS X module
4653 dnl
4654 AC_ARG_ENABLE(macosx,
4655   [  --enable-macosx         MacOS X support (default enabled on MacOS X)],
4656   [if test "${enable_macosx}" = "yes"
4657    then
4658      VLC_ADD_BUILTINS([macosx])
4659      VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
4660    fi],
4661   [AC_CHECK_HEADERS(Cocoa/Cocoa.h,
4662      VLC_ADD_BUILTINS([macosx])
4663      VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
4664    )])
4665
4666 dnl
4667 dnl  QNX RTOS module
4668 dnl
4669 AC_ARG_ENABLE(qnx,
4670   [  --enable-qnx            QNX RTOS support (default enabled on QNX RTOS)])
4671     if test "${enable_qnx}" != "no"
4672     then
4673       AC_CHECK_HEADERS(Ph.h, [
4674         VLC_ADD_PLUGINS([qnx])
4675         VLC_ADD_LDFLAGS([qnx],[-lasound -lph])
4676       ])
4677     fi
4678
4679 dnl
4680 dnl  ncurses module
4681 dnl
4682 AC_ARG_ENABLE(ncurses,
4683   [  --enable-ncurses        ncurses interface support (default disabled)],
4684   [if test "${enable_ncurses}" = "yes"; then
4685      VLC_ADD_PLUGINS([ncurses])
4686      VLC_ADD_LDFLAGS([ncurses],[-lncurses])
4687    fi])
4688
4689 dnl
4690 dnl  XOSD plugin
4691 dnl
4692 AC_ARG_ENABLE(xosd,
4693   [  --enable-xosd           xosd interface support (default disabled)])
4694 if test "${enable_xosd}" = "yes"
4695 then
4696   AC_CHECK_HEADER(xosd.h, have_xosd="true", have_xosd="false")
4697   AC_CHECK_LIB(xosd,xosd_set_offset,
4698       AC_DEFINE(HAVE_XOSD_VERSION_1, 1, Define if <xosd.h> is 1.0.x),
4699     AC_CHECK_LIB(xosd,xosd_set_horizontal_offset,
4700         AC_DEFINE(HAVE_XOSD_VERSION_2, 1, Define if <xosd.h> is 2.0.x),
4701       AC_TRY_COMPILE([#include <xosd.h>],
4702          [void foo() { xosd_init("foo","bar",12,XOSD_top,2,12,42); }],,
4703           AC_DEFINE(HAVE_XOSD_VERSION_0, 1, Define if <xosd.h> is pre-1.0.0))))
4704   if test "${have_xosd}" = "true"
4705   then
4706     VLC_ADD_PLUGINS([xosd])
4707     VLC_ADD_LDFLAGS([xosd],[-lxosd])
4708   fi
4709 fi
4710
4711 dnl
4712 dnl Visualisation plugin
4713 dnl
4714 AC_ARG_ENABLE(visual,
4715   [  --enable-visual         visualisation plugin (default enabled)])
4716 if test "${enable_visual}" != "no"
4717 then
4718     VLC_ADD_PLUGINS([visual])
4719 fi
4720
4721 dnl
4722 dnl OpenGL visualisation plugin
4723 dnl
4724 AC_ARG_ENABLE(galaktos,
4725   [  --enable-galaktos       OpenGL visualisation plugin (default disabled)])
4726 if test "${enable_galaktos}" = "yes"
4727 then
4728   AC_CHECK_HEADERS(GL/gl.h, [
4729     VLC_ADD_PLUGINS([galaktos])
4730     if test "${SYS}" != "mingw32"; then
4731       VLC_ADD_LDFLAGS([galaktos],[${X_LIBS} -lGL -lGLU])
4732     else
4733       VLC_ADD_LDFLAGS([galaktos],[-lopengl32])
4734     fi
4735   ])
4736 fi
4737
4738 dnl
4739 dnl  goom visualization plugin
4740 dnl
4741 AC_ARG_ENABLE(goom,
4742 [  --enable-goom           goom visualisation plugin (default disabled)])
4743 if test "${enable_goom}" = "yes"
4744 then
4745   AC_ARG_WITH(goom-tree,
4746     [    --with-goom-tree=PATH goom tree for static linking (required)])
4747
4748   dnl
4749   dnl test for --with-goom-tree
4750   dnl
4751   if test "${with_goom_tree}" != "no" -a -n "${with_goom_tree}"; then
4752     AC_MSG_CHECKING(for libgoom2.a in ${with_goom_tree})
4753     real_goom_tree="`cd ${with_goom_tree} 2>/dev/null && pwd`"
4754     if test -z "${real_goom_tree}"; then
4755       dnl  The given directory can't be found
4756       AC_MSG_RESULT(no)
4757       AC_MSG_ERROR([cannot cd to ${with_goom_tree}])
4758     fi
4759     if test -f "${real_goom_tree}/src/.libs/libgoom2.a"; then
4760       AC_MSG_RESULT(${real_goom_tree}/src/.libs/libgoom2.a)
4761       VLC_ADD_BUILTINS([goom])
4762       VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree}/src/.libs -lgoom2])
4763       VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree}/src -DUSE_GOOM_TREE])
4764     else
4765       dnl  The given libgoom2 wasn't built, try to look for the old goom
4766       AC_MSG_RESULT(no)
4767       AC_MSG_CHECKING(for libgoom.a in ${with_goom_tree})
4768       if test -f "${real_goom_tree}/libgoom.a"; then
4769         AC_MSG_RESULT(${real_goom_tree}/libgoom.a)
4770         VLC_ADD_BUILTINS([goom])
4771         VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree} -lgoom])
4772         VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree} -DUSE_GOOM_TREE -DOLD_GOOM])
4773       else
4774         dnl  The given libgoom wasn't built
4775         AC_MSG_RESULT(no)
4776         AC_MSG_ERROR([cannot find ${real_goom_tree}/src/.libs/libgoom2.a, make sure you compiled goom in ${with_goom_tree}])
4777       fi
4778     fi
4779   else
4780     AC_CHECK_HEADERS(goom/goom.h, [
4781       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_goom}"
4782       AC_CHECK_LIB(goom2, goom_init, [
4783         VLC_ADD_PLUGINS([goom])
4784         VLC_ADD_LDFLAGS([goom],[-lgoom2])
4785       ],[
4786         AC_MSG_ERROR([Could not find goom on your system: you may get it from http://www.ios-software.com/.])
4787       ])
4788       LDFLAGS="${LDFLAGS_save}"
4789     ])
4790   fi
4791 fi
4792
4793 dnl
4794 dnl DAAP access plugin and services discovery 
4795 dnl
4796 AC_ARG_ENABLE(daap,
4797   [  --enable-daap                DAAP shares services discovery support (default enabled)])
4798 if test "$enable_daap" != "no"
4799 then
4800    PKG_CHECK_MODULES(DAAP, opendaap >= 0.3.0,
4801       [ VLC_ADD_PLUGINS([daap])
4802        VLC_ADD_LDFLAGS([daap],[$DAAP_LIBS])
4803        VLC_ADD_CFLAGS([daap],[$DAAP_CFLAGS])]:,
4804       [AC_MSG_WARN(DAAP library not found)])
4805 fi
4806
4807 dnl
4808 dnl  Bonjour services discovery
4809 dnl
4810 AC_ARG_ENABLE(bonjour,
4811   [  --enable-bonjour        Bonjour services discovery (default enabled)])
4812 if test "${enable_bonjour}" != "no"
4813 then
4814   PKG_CHECK_MODULES(BONJOUR, avahi-client >= 0.3,
4815     [PKG_CHECK_MODULES(BONJOUR, avahi-client >= 0.6,
4816        [AC_DEFINE(HAVE_AVAHI_06, [], [Define if you have avahi-client 0.6 or greater])],)
4817       AC_DEFINE(HAVE_AVAHI_CLIENT, [], [Define if you have the avahi-client library])
4818       VLC_ADD_LDFLAGS([bonjour access_output_http],[$BONJOUR_LIBS])
4819       VLC_ADD_CFLAGS([bonjour access_output_http],[$BONJOUR_CFLAGS])
4820       VLC_ADD_PLUGINS([bonjour]) ],
4821     [AC_MSG_WARN(avahi-client library not found)])
4822 fi
4823
4824 dnl
4825 dnl  Lirc plugin
4826 dnl
4827 AC_ARG_ENABLE(lirc,
4828   [  --enable-lirc           lirc support (default disabled)])
4829 if test "${enable_lirc}" = "yes"
4830 then
4831   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
4832   if test "${have_lirc}" = "true"
4833   then
4834     VLC_ADD_PLUGINS([lirc])
4835     VLC_ADD_LDFLAGS([lirc],[-llirc_client])
4836   fi
4837 fi
4838
4839
4840 dnl
4841 dnl corba (ORBit) plugin
4842 dnl
4843 dnl Default: do not enable corba
4844 enablecorba=false
4845 AC_ARG_ENABLE(corba,
4846   [  --enable-corba          corba interface support (default disabled)])
4847 if test "${enable_corba}" = "yes"; then
4848       GLIB_VERSION=2.3.2
4849       PKG_CHECK_MODULES(CORBA, 
4850         ORBit-2.0 >= 2.8.0 \
4851         glib-2.0 >= $GLIB_VERSION \
4852         gobject-2.0 >= $GLIB_VERSION \
4853         gthread-2.0 >= $GLIB_VERSION,
4854         [
4855           enablecorba=true
4856           VLC_ADD_LDFLAGS([corba],[$CORBA_LIBS])
4857           VLC_ADD_CFLAGS([corba],[$CORBA_CFLAGS])
4858           VLC_ADD_PLUGINS([corba snapshot]) ],
4859         [ enablecorba=false
4860           AC_MSG_WARN(corba library not found) ])
4861 fi
4862 AM_CONDITIONAL(ENABLE_CORBA, test "$enablecorba" = "true")
4863
4864 AC_ARG_WITH(,[Misc options:])
4865
4866 dnl
4867 dnl  Endianness check, AC_C_BIGENDIAN doesn't work if we are cross-compiling
4868 dnl
4869 dnl  We give the user the opportunity to specify
4870 dnl  --with-words=big or --with-words=little ; otherwise, try to guess
4871 dnl
4872 AC_ARG_WITH(words,
4873   [    --with-words=endianness set endianness (big or little)])
4874   case "${with_words}" in
4875     big)
4876       ac_cv_c_bigendian=yes
4877       ;;
4878     little)
4879       ac_cv_c_bigendian=no
4880       ;;
4881     *)
4882       dnl  Try to guess endianness by matching patterns on a compiled
4883       dnl  binary, by looking for an ASCII or EBCDIC string
4884       AC_CACHE_CHECK([whether the byte order is big-endian],
4885         [ac_cv_c_bigendian],
4886         [ac_cv_c_bigendian="unknown"
4887         [cat >conftest.c <<EOF
4888         short am[] = { 0x4249, 0x4765, 0x6e44, 0x6961, 0x6e53, 0x7953, 0 };
4889         short ai[] = { 0x694c, 0x5454, 0x656c, 0x6e45, 0x6944, 0x6e61, 0 };
4890         void _a(void) { char*s = (char*)am; s = (char *)ai; }
4891         short ei[] = { 0x89D3, 0xe3e3, 0x8593, 0x95c5, 0x89c4, 0x9581, 0 };
4892         short em[] = { 0xc2c9, 0xc785, 0x95c4, 0x8981, 0x95e2, 0xa8e2, 0 };
4893         void _e(void) { char*s = (char*)em; s = (char*)ei; }
4894         int main(void) { _a(); _e(); return 0; }
4895 EOF
4896         ]
4897         if test -f conftest.c
4898         then
4899           if ${CC-cc} -c conftest.c -o conftest.o >>config.log 2>&1 \
4900               && test -f conftest.o
4901           then
4902             if test "`strings conftest.o | grep BIGenDianSyS`"
4903             then
4904               ac_cv_c_bigendian="yes"
4905             fi
4906             if test "`strings conftest.o | grep LiTTleEnDian`"
4907             then
4908               ac_cv_c_bigendian="no"
4909             fi
4910           fi
4911         fi
4912       ])
4913       if test "${ac_cv_c_bigendian}" = "unknown"
4914       then
4915         AC_MSG_ERROR([Could not guess endianness, please use --with-words])
4916       fi
4917       ;;
4918   esac
4919 dnl  Now we know what to use for endianness, just put it in the header
4920 if test "${ac_cv_c_bigendian}" = "yes"
4921 then
4922   AC_DEFINE(WORDS_BIGENDIAN, 1, big endian system)
4923 fi
4924
4925 dnl
4926 dnl  DLL loader copied from MPlayer copied from somewhere else (WINE ?)
4927 dnl
4928 loader=false
4929 AC_ARG_ENABLE(loader,
4930   [  --enable-loader         build DLL loader for ELF i386 platforms (default disabled)])
4931 AM_CONDITIONAL(LOADER, [test "${enable_loader}" = "yes"])
4932 AS_IF([test "${enable_loader}" = "yes"],
4933   [ VLC_ADD_PLUGINS([dmo quicktime])
4934     VLC_ADD_CPPFLAGS([dmo],[-I../../../@top_srcdir@/loader])
4935     VLC_ADD_LDFLAGS([dmo],[../../../loader/libloader.a])
4936     VLC_ADD_CPPFLAGS([quicktime],[-I../../@top_srcdir@/loader])
4937     VLC_ADD_LDFLAGS([quicktime],[../../loader/libloader.a])
4938     VLC_ADD_CPPFLAGS([realaudio],[-I../../@top_srcdir@/loader -DLOADER])
4939     VLC_ADD_LDFLAGS([realaudio],[../../loader/libloader.a])
4940   ])
4941
4942 dnl
4943 dnl  Microsoft ActiveX support
4944 dnl
4945 activex=false
4946 AC_ARG_ENABLE(activex,
4947   [  --enable-activex        build a vlc-based ActiveX control (default enabled on Win32)])
4948 if test "${enable_activex}" != "no"
4949 then
4950   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
4951   then
4952     AC_CHECK_PROGS(MIDL, [midl widl], no)
4953     AC_LANG_PUSH(C++)
4954     AC_CHECK_HEADERS(ole2.h olectl.h,
4955       [ VLC_ADD_CXXFLAGS([activex],[-fno-exceptions])
4956         VLC_ADD_LDFLAGS([activex],[-lole32 -loleaut32 -luuid -lshlwapi]) 
4957         AC_CHECK_HEADERS(objsafe.h,
4958           VLC_ADD_CXXFLAGS([activex],[-DHAVE_OBJSAFE_HEADER]),,
4959           [#if HAVE_OLE2_H
4960            #   include <ole2.h>
4961            #endif]
4962         )
4963         activex=:
4964       ],
4965       [ AC_MSG_ERROR([required OLE headers are missing from your system]) ]
4966     )
4967     AC_LANG_POP(C++)
4968   fi
4969 fi
4970 AC_ARG_VAR(MIDL, [Microsoft IDL compiler (Win32 platform only)])
4971 AM_CONDITIONAL(HAS_MIDL_COMPILER, test "${MIDL}" != "no")
4972 AM_CONDITIONAL(BUILD_ACTIVEX,${activex})
4973
4974 dnl
4975 dnl  Mozilla plugin
4976 dnl
4977 mozilla=false
4978 AC_ARG_ENABLE(mozilla,
4979   [  --enable-mozilla        build a vlc-based Mozilla plugin (default disabled)])
4980 AC_ARG_WITH(mozilla-sdk-path,
4981   [    --with-mozilla-sdk-path=PATH path to mozilla sdk])
4982
4983 if test "${enable_mozilla}" = "yes" 
4984 then
4985   if test "${with_mozilla_sdk_path}" = ""
4986   then
4987     AC_PATH_PROG(MOZILLA_CONFIG, mozilla-config, no)
4988     if test "${MOZILLA_CONFIG}" = "no"
4989     then
4990       AC_MSG_ERROR([Please install the Mozilla development tools, mozilla-config was not found.])
4991     else
4992       if test "${SYS}" != "mingw32"; then
4993         LDFLAGS="${LDFLAGS_save} ${X_LIBS} ${X_PRE_LIBS}"
4994         AC_CHECK_LIB(Xt,XtStrings,
4995          [VLC_ADD_LDFLAGS([mozilla],[${X_LIBS} ${X_PRE_LIBS} -lXt -lX11 -lSM -lICE])],
4996          [],
4997          [[${X_LIBS} ${X_PRE_LIBS} -lX11 -lSM -lICE]
4998         ])
4999         LDFLAGS="${LDFLAGS_save}"
5000       fi
5001       mozilla=:
5002       dnl Workaround for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=150490
5003       VLC_ADD_CPPFLAGS([mozilla],[[`${MOZILLA_CONFIG} --cflags plugin xpcom java | sed 's,-I\([^ ]*\)/mozilla/\([^ ]*\),-I\1/\2 -I\1/mozilla/\2,g' | xargs`]])
5004       VLC_ADD_LDFLAGS([mozilla],[`${MOZILLA_CONFIG} --libs plugin xpcom`])
5005       CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mozilla}"
5006       AC_CHECK_HEADERS(mozilla-config.h)
5007       CPPFLAGS="${CPPFLAGS_save}"
5008       XPIDL_INCL="`${MOZILLA_CONFIG} --cflags plugin xpcom java` \
5009       `${MOZILLA_CONFIG} --idlflags plugin xpcom java` "
5010       xpidl_path="`${MOZILLA_CONFIG} --prefix`/bin"
5011     fi
5012   else
5013     dnl special case for mingw32
5014     if test "${SYS}" = "mingw32"
5015     then
5016       AC_CHECK_TOOL(CYGPATH, cygpath, "")
5017       dnl latest gecko sdk does not have an xpcom directory
5018       if test -d "${with_mozilla_sdk_path}/xpcom"; then
5019           mozilla_sdk_xpcom="/xpcom"
5020       fi
5021     fi
5022   
5023     real_mozilla_sdk="`cd ${with_mozilla_sdk_path} 2>/dev/null && pwd`"
5024     CPPFLAGS="${CPPFLAGS_save} -I${real_mozilla_sdk} -I${real_mozilla_sdk}/include"
5025     AC_CHECK_HEADERS(mozilla-config.h, [
5026       mozilla=:
5027       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])
5028       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])
5029       if test "${SYS}" = "mingw32"; then
5030         LDFLAGS="${LDFLAGS_save}"
5031         dnl latest gecko sdk does not have embedstring
5032         if test -d "${real_mozilla_sdk}/embedstring/bin"
5033         then
5034           VLC_ADD_LDFLAGS([mozilla],[-lembedstring -Wl,--kill-at])
5035         fi
5036       fi
5037   
5038       XPIDL_INCL="-I${real_mozilla_sdk}${mozilla_sdk_xpcom}/idl"
5039       xpidl_path="${real_mozilla_sdk}${mozilla_sdk_xpcom}/bin"
5040   
5041       if test -n "${CYGPATH}"; then
5042         real_mozilla_sdk="`${CYGPATH} -w ${real_mozilla_sdk}`"
5043         XPIDL_INCL="${XPIDL_INCL} -I\"${real_mozilla_sdk}${mozilla_sdk_xpcom}/idl\""
5044       fi ])
5045     CPPFLAGS="${CPPFLAGS_save}"
5046   fi
5047   
5048   if test "${mozilla}" != "false"
5049   then
5050     build_pic=yes
5051     AC_PATH_PROG(XPIDL, xpidl, no, ${xpidl_path} /usr/lib/mozilla)
5052     if test "${XPIDL}" = "no"; then
5053       AC_MSG_ERROR([Please install the Mozilla development tools, xpidl was not found.])
5054     fi
5055   fi
5056 fi
5057 AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
5058
5059 dnl
5060 dnl  Mediacontrol Python bindings
5061 dnl
5062 AC_ARG_ENABLE(mediacontrol-python-bindings,
5063   [  --enable-mediacontrol-python-bindings    Enable Python bindings for MediaControl (default disabled)])
5064 dnl TODO: look for python dev headers
5065 AM_CONDITIONAL(BUILD_PYTHON, [test "${enable_mediacontrol_python_bindings}" = "yes"])
5066 if test "${enable_mediacontrol_python_bindings}" = "yes"
5067 then
5068   build_pic=yes
5069 fi
5070
5071 dnl
5072 dnl  Java bindings
5073 dnl
5074 AC_ARG_ENABLE(java-bindings,
5075   [  --enable-java-bindings  Enable Java bindings (default disabled)])
5076 AM_CONDITIONAL(BUILD_JAVA, [test "${enable_java_bindings}" = "yes"])
5077 if test "${enable_java_bindings}" = "yes"
5078 then
5079   build_pic=yes
5080 fi
5081
5082
5083 dnl
5084 dnl  test plugins
5085 dnl
5086 AC_ARG_ENABLE(testsuite,
5087   [  --enable-testsuite      build test modules (default disabled)])
5088 if test "${enable_testsuite}" = "yes"
5089 then
5090   TESTS="test1 test2 test3 test4"
5091
5092   dnl  we define those so that bootstrap sets the right linker
5093   VLC_ADD_CXXFLAGS([test2],[])
5094   VLC_ADD_OBJCFLAGS([test3],[])
5095   dnl  this one is needed until automake knows what to do
5096   VLC_ADD_LDFLAGS([test3],[-lobjc])
5097
5098   VLC_ADD_PLUGINS([${TESTS}])
5099   #VLC_ADD_BUILTINS([${TESTS}])
5100 fi
5101
5102 dnl
5103 dnl  gtk_main plugin
5104 dnl
5105 if test "${NEED_GTK_MAIN}" != "no"
5106 then
5107     VLC_ADD_PLUGINS([gtk_main])
5108     VLC_ADD_CFLAGS([gtk_main],[${CFLAGS_gtk}])
5109     VLC_ADD_LDFLAGS([gtk_main],[${LDFLAGS_gtk}])
5110 fi
5111
5112 if test "${NEED_GNOME_MAIN}" != "no"
5113 then
5114     VLC_ADD_PLUGINS([gnome_main])
5115     VLC_ADD_CFLAGS([gnome_main],[${CFLAGS_gtk} ${CFLAGS_gnome}])
5116     VLC_ADD_LDFLAGS([gnome_main],[${LDFLAGS_gtk} ${LDFLAGS_gnome}])
5117 fi
5118
5119 if test "${NEED_GTK2_MAIN}" != "no"
5120 then
5121     VLC_ADD_PLUGINS([gtk2_main])
5122     VLC_ADD_CFLAGS([gtk2],[-DNEED_GTK2_MAIN])
5123     VLC_ADD_CFLAGS([pda],[-DNEED_GTK2_MAIN])
5124     VLC_ADD_CFLAGS([gtk2_main],[${CFLAGS_gtk2} ${CFLAGS_pda}])
5125     VLC_ADD_LDFLAGS([gtk2_main],[${LDFLAGS_gtk2} ${LDFLAGS_pda}])
5126 fi
5127
5128 if test "${NEED_GNOME2_MAIN}" != "no"
5129 then
5130     VLC_ADD_PLUGINS([gnome2_main])
5131     VLC_ADD_CFLAGS([gnome2_main],[${CFLAGS_gtk2} ${CFLAGS_gnome2}])
5132     VLC_ADD_LDFLAGS([gnome2_main],[${LDFLAGS_gtk2} ${LDFLAGS_gnome2}])
5133 fi
5134
5135 dnl
5136 dnl  qte_main plugin
5137 dnl
5138 if test "${NEED_QTE_MAIN}" != "no"
5139 then
5140     VLC_ADD_PLUGINS([qte_main])
5141     VLC_ADD_CXXFLAGS([opie qte qt_video],[-DNEED_QTE_MAIN])
5142     VLC_ADD_CXXFLAGS([qte_main],[${CXXFLAGS_qte} ${CXXFLAGS_qt_video}])
5143     VLC_ADD_LDFLAGS([qte_main],[${LDFLAGS_qte} ${LDFLAGS_qt_video}])
5144 fi
5145
5146
5147 dnl
5148 dnl  Plugin and builtin checks
5149 dnl
5150 builtin_support=false
5151 plugin_support=:
5152
5153 dnl Support for plugins - this must be AT THE END
5154 AC_ARG_ENABLE(plugins,
5155   [  --disable-plugins       make all plugins built-in (default plugins enabled)],
5156   [if test "${enable_plugins}" = "no"
5157    then
5158      plugin_support=false
5159    fi])
5160
5161 dnl Automagically disable plugins if there is no system support for
5162 dnl dynamically loadable files (.so, .dll, .dylib).
5163 dnl don't forget vlc-win32 still can load .dll as plugins
5164 if test "${ac_cv_have_plugins}" = "no"
5165 then
5166   echo "*** Your system doesn't have plugin support. All plugins will be built"
5167   echo "statically."
5168   plugin_support=false
5169 fi
5170
5171 dnl Export automake variables
5172 if ${plugin_support}
5173 then
5174   AC_DEFINE(HAVE_DYNAMIC_PLUGINS, 1, Define if we have support for dynamic plugins)
5175   for plugin in `echo ${PLUGINS}`
5176   do
5177     eval "${plugin}_p=yes"
5178   done
5179 else
5180   VLC_ADD_BUILTINS([${PLUGINS}])
5181   PLUGINS=""
5182 fi
5183 AM_CONDITIONAL(HAVE_PLUGINS, ${plugin_support})
5184
5185 [if echo "${BUILTINS}" | grep '[^ ]' >/dev/null 2>&1
5186 then
5187   builtin_support=:
5188   for builtin in `echo ${BUILTINS}`
5189   do
5190     eval "${builtin}_b=yes"
5191   done
5192 fi]
5193 AM_CONDITIONAL(HAVE_BUILTINS, ${builtin_support})
5194
5195 dnl
5196 dnl Pic and shared libvlc stuff
5197 dnl
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   lib/Makefile
5295   loader/Makefile
5296   modules/Makefile
5297   mozilla/Makefile
5298   m4/Makefile
5299   po/Makefile.in
5300   share/Makefile
5301   src/Makefile
5302 ])
5303
5304 AC_CONFIG_FILES([
5305   modules/access/Makefile
5306   modules/access/dshow/Makefile
5307   modules/access/dvb/Makefile
5308   modules/access/mms/Makefile
5309   modules/access/pvr/Makefile
5310   modules/access/v4l/Makefile
5311   modules/access/cdda/Makefile
5312   modules/access/rtsp/Makefile
5313   modules/access/vcd/Makefile
5314   modules/access/vcdx/Makefile
5315   modules/access/screen/Makefile
5316   modules/access_filter/Makefile
5317   modules/access_output/Makefile
5318   modules/audio_filter/Makefile
5319   modules/audio_filter/channel_mixer/Makefile
5320   modules/audio_filter/converter/Makefile
5321   modules/audio_filter/resampler/Makefile
5322   modules/audio_mixer/Makefile
5323   modules/audio_output/Makefile
5324   modules/codec/Makefile
5325   modules/codec/cmml/Makefile
5326   modules/codec/dmo/Makefile
5327   modules/codec/ffmpeg/Makefile
5328   modules/codec/spudec/Makefile
5329   modules/control/Makefile
5330   modules/control/http/Makefile
5331   modules/control/corba/Makefile
5332   modules/demux/Makefile
5333   modules/demux/asf/Makefile
5334   modules/demux/avi/Makefile
5335   modules/demux/mp4/Makefile
5336   modules/demux/mpeg/Makefile
5337   modules/demux/playlist/Makefile
5338   modules/demux/util/Makefile
5339   modules/gui/Makefile
5340   modules/gui/beos/Makefile
5341   modules/gui/pda/Makefile
5342   modules/gui/macosx/Makefile
5343   modules/gui/qnx/Makefile
5344   modules/gui/skins2/Makefile
5345   modules/gui/wxwidgets/Makefile
5346   modules/gui/wince/Makefile
5347   modules/misc/Makefile
5348   modules/misc/dummy/Makefile
5349   modules/misc/memcpy/Makefile
5350   modules/misc/network/Makefile
5351   modules/misc/testsuite/Makefile
5352   modules/misc/playlist/Makefile
5353   modules/misc/xml/Makefile
5354   modules/mux/Makefile
5355   modules/mux/mpeg/Makefile
5356   modules/packetizer/Makefile
5357   modules/services_discovery/Makefile
5358   modules/stream_out/Makefile
5359   modules/stream_out/transrate/Makefile
5360   modules/video_chroma/Makefile
5361   modules/video_filter/Makefile
5362   modules/video_filter/swscale/Makefile
5363   modules/video_output/Makefile
5364   modules/video_output/directx/Makefile
5365   modules/video_output/qte/Makefile
5366   modules/video_output/x11/Makefile
5367   modules/visualization/Makefile
5368   modules/visualization/visual/Makefile
5369   modules/visualization/galaktos/Makefile
5370 ])
5371
5372 dnl Generate makefiles
5373 AC_OUTPUT
5374
5375 # Cannot use AC_CONFIG_FILES([vlc-config]) as is automatically built,
5376 # not provided with the source
5377 ${SHELL} ./config.status --file=vlc-config
5378 chmod 0755 vlc-config
5379
5380 dnl echo "Enabled builtin modules :"
5381 dnl for a in `./vlc-config --target builtin` ; do echo $a; done | sed -e 's,modules\/\(.*\)\/lib\(.*\)\.a,\2 (\1),'
5382
5383 dnl echo "Enabled plugin modules :"
5384 dnl for a in `./vlc-config --target plugin` ; do echo $a; done | sed -e 's,modules\/\(.*\)\/lib\(.*\)_plugin,\2 (\1),'
5385
5386 dnl Shortcut to nice compile message
5387 rm -f compile
5388 echo '#! /bin/sh' >compile
5389 echo "PATH=$PATH LANG=C make \$* 2>&1| ${srcdir}/extras/make.pl" >>compile
5390 chmod a+x compile
5391
5392 printf "
5393 vlc configuration
5394 --------------------
5395 vlc version           : ${VERSION}
5396 system                : ${SYS}
5397 architecture          : ${ARCH}
5398 build flavour         : "
5399 test "${enable_debug}" = "yes" && printf "debug "
5400 test "${enable_cprof}" = "yes" && printf "cprof "
5401 test "${enable_gprof}" = "yes" && printf "gprof "
5402 test "${enable_optimizations}" = "yes" && printf "optim "
5403 test "${enable_release}" = "yes" && printf "release " || printf "devel "
5404 echo "
5405 vlc aliases           :${ALIASES}
5406
5407 You can tune the compiler flags in vlc-config.
5408 To build vlc and its plugins, type \`./compile' or \`make'.
5409 "
5410