]> git.sesse.net Git - vlc/blob - configure.ac
37e4774a8b7e435e1d1f473ef7f7057619e1d479
[vlc] / configure.ac
1 dnl Autoconf settings for vlc
2 dnl $Id$
3  
4 AC_INIT(vlc,0.7.2-test1)
5
6 CONFIGURE_LINE="$0 $*"
7 CODENAME="Bond"
8
9 AC_PREREQ(2.50)
10 AC_CONFIG_SRCDIR(src/libvlc.c)
11 AC_CONFIG_AUX_DIR(autotools)
12 AC_CANONICAL_SYSTEM
13
14 dnl XXX: we don't put any flags here, because automake 1.5 doesn't support
15 dnl them. And we need the comma otherwize automake will choke on it.
16 AM_INIT_AUTOMAKE(vlc,0.7.2-test1)
17 AM_CONFIG_HEADER(config.h)
18
19 dnl
20 dnl  Save *FLAGS
21 dnl
22 AX_SAVE_FLAGS
23
24 dnl
25 dnl Check for tools
26 dnl
27 AC_PROG_CC
28 AM_PROG_CC_C_O
29 AC_PROG_CPP
30 AC_PROG_CXX
31 AC_PROG_CXXCPP
32 AC_PROG_MAKE_SET
33 AC_PROG_INSTALL
34
35 dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right
36 dnl now otherwise it might be set in an obscure if statement.
37 AC_EGREP_CPP(foo,foo)
38
39 dnl AC_PROG_OBJC doesn't seem to exist, this is the KDE workaround
40 AC_MSG_CHECKING(for an Objective-C compiler)
41 OBJC="${CXX}"
42 AC_SUBST(OBJC)
43 OBJCFLAGS="${CXXFLAGS} -fgnu-runtime -fconstant-string-class=NSConstantString"
44 AC_SUBST(OBJCFLAGS)
45 dnl _AM_DEPENDENCIES(OBJC) doesn't work, so hard code OBJCDEPMODE here
46 #OBJCDEPMODE="depmode=gcc3"
47 #AC_SUBST(OBJCDEPMODE)
48 _AM_DEPENDENCIES(OBJC)
49 AC_MSG_RESULT(not implemented yet)
50
51 dnl Find the right ranlib, even when cross-compiling
52 AC_CHECK_TOOL(RANLIB, ranlib, :)
53 AC_CHECK_TOOL(STRIP, strip, :)
54 AC_CHECK_TOOL(AR, ar, :)
55 AC_CHECK_TOOL(LD, ld, :)
56
57 dnl Sam, if you think I didn't see that... --Meuuh
58 dnl AM_PROG_LIBTOOL
59 AC_PROG_INSTALL
60
61 dnl Check for compiler properties
62 AC_C_CONST
63 AC_C_INLINE
64
65 dnl
66 dnl  Check for the contrib directory
67 dnl
68 topdir="`pwd`"
69 if test -d ${topdir}/extras/contrib/lib; then
70   export PATH=${topdir}/extras/contrib/bin:$PATH
71   export LD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$LD_LIBRARY_PATH
72   export DYLD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$DYLD_LIBRARY_PATH
73   CPPFLAGS="${CPPFLAGS} -I${topdir}/extras/contrib/include"
74   CPPFLAGS_save="${CPPFLAGS_save} -I${topdir}/extras/contrib/include"
75   CFLAGS="${CFLAGS} -I${topdir}/extras/contrib/include"
76   CFLAGS_save="${CFLAGS_save} -I${topdir}/extras/contrib/include"
77   CXXFLAGS="${CXXFLAGS} -I${topdir}/extras/contrib/include"
78   CXXFLAGS_save="${CXXFLAGS_save} -I${topdir}/extras/contrib/include"
79   OBJCFLAGS="${OBJCFLAGS} -I${topdir}/extras/contrib/include"
80   OBJCFLAGS_save="${OBJCFLAGS_save} -I${topdir}/extras/contrib/include"
81   if test -d ${topdir}/extras/contrib/vlc-lib; then
82     LDFLAGS="${LDFLAGS} -L${topdir}/extras/contrib/vlc-lib"
83     LDFLAGS_save="${LDFLAGS_save} -L${topdir}/extras/contrib/vlc-lib"
84   fi
85   LDFLAGS="${LDFLAGS} -L${topdir}/extras/contrib/lib"
86   LDFLAGS_save="${LDFLAGS_save} -L${topdir}/extras/contrib/lib"
87   with_livedotcom_tree=${topdir}/extras/contrib/src/live
88   with_goom_tree=${topdir}/extras/contrib/src/goom
89 fi
90
91 dnl
92 dnl  Set default values
93 dnl
94 LDFLAGS_vlc="${LDFLAGS}"
95 LIBEXT=".so"
96
97 dnl
98 dnl  Check the operating system
99 dnl
100 case "${target_os}" in
101   "")
102     SYS=unknown
103     ;;
104   linux*)
105     SYS=linux
106     ;;
107   bsdi*)
108     SYS=bsdi
109     CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
110     AX_ADD_LDFLAGS([dvd dvdcss vcd cdda vcdx cddax],[-ldvd])
111     ;;
112   *bsd*)
113     SYS="${target_os}"
114     CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
115     ;;
116   darwin*)
117     SYS=darwin
118     CFLAGS_save="${CFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; CFLAGS="${CFLAGS_save}"
119     CXXFLAGS_save="${CXXFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; CXXFLAGS="${CXXFLAGS_save}"
120     OBJCFLAGS_save="${OBJCFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; OBJCFLAGS="${OBJCFLAGS_save}"
121     AX_ADD_LDFLAGS([vlc ffmpeg],[-all_load])
122     AX_ADD_LDFLAGS([mp4], [-framework IOKit -framework CoreFoundation])
123     AX_ADD_LDFLAGS([vlc],[-Wl,-multiply_defined,suppress])
124     LIBEXT=".dylib"
125     ;;
126   *mingw32* | *cygwin*)
127     AC_CHECK_TOOL(WINDRES, windres, :)
128     LIBEXT=".dll"
129
130     case "${target_os}" in
131       *mingw32*)
132         SYS=mingw32
133         ;;
134       *cygwin*)
135         dnl Check if we are using the mno-cygwin mode in which case we are
136         dnl actually dealing with a mingw32 compiler.
137         AC_EGREP_CPP(yes,
138             [#ifdef WIN32
139              yes
140              #endif],
141             SYS=mingw32, SYS=cygwin)
142         ;;
143     esac
144
145     if test "${SYS}" = "mingw32"; then
146         # add ws2_32 for closesocket, select, recv
147         CPPFLAGS_save="${CPPFLAGS_save} -D_OFF_T_ -D_off_t=long"; CPPFLAGS="${CPPFLAGS_save}"
148         AX_ADD_LDFLAGS([vlc],[-lws2_32 -lnetapi32 -lwinmm -mwindows])
149         AX_ADD_LDFLAGS([vcdx cddax],[-lwinmm])
150         AX_ADD_LDFLAGS([ipv4 ipv6 access_http access_mms access_udp access_tcp access_ftp access_output_udp sap slp http stream_out_standard telnet],[-lws2_32])
151     fi
152     ;;
153   *nto*)
154     SYS=nto
155     AX_ADD_LDFLAGS([x11 xvideo],[-lsocket])
156     ;;
157   solaris*)
158     SYS=solaris
159     # _POSIX_PTHREAD_SEMANTICS is needed to get the POSIX ctime_r
160     # Perhaps it is useful other places as well? 
161     CFLAGS_save="${CFLAGS_save} -D_POSIX_PTHREAD_SEMANTICS"; CFLAGS="${CFLAGS_save}"
162     ;;
163   hpux*)
164     SYS=hpux
165     LIBEXT=".sl"
166     ;;
167   beos)
168     SYS=beos
169     CFLAGS_save="${CFLAGS_save} -Wno-multichar"; CFLAGS="${CFLAGS_save}"
170     CXXFLAGS_save="${CXXFLAGS_save} -Wno-multichar"; CXXFLAGS="${CXXFLAGS_save}"
171     AX_ADD_CXXFLAGS([beos],[])
172     AX_ADD_LDFLAGS([vlc beos],[-lbe])
173     AX_ADD_LDFLAGS([beos],[-lmedia -ltranslation -ltracker -lgame])
174
175     dnl Ugly check for Zeta
176     if test -f /boot/beos/system/lib/libzeta.so; then
177         AX_ADD_LDFLAGS([beos],[-lzeta])
178     fi
179     ;;
180   *)
181     SYS="${target_os}"
182     ;;
183 esac
184 AM_CONDITIONAL(HAVE_BEOS, test "${SYS}" = "beos")
185 AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin")
186 AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32")
187
188 dnl
189 dnl Gettext stuff
190 dnl
191 ALL_LINGUAS="de en_GB es fr hu it ja nl no pl pt_BR ru sv"
192 AM_GNU_GETTEXT_VERSION(0.11.5)
193 AM_GNU_GETTEXT
194 if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then
195   AC_DEFINE(HAVE_INCLUDED_GETTEXT, 1, Define if we use the local libintl)
196   INCLUDES="${INCLUDES} -I\$(top_builddir)/intl"
197 else
198   AC_CHECK_FUNCS(textdomain,,[
199     AC_CHECK_LIB(intl,textdomain,
200       AX_ADD_LDFLAGS([vlc],[${LIBINTL}]),,
201       ${LIBINTL}
202     )
203   ])
204 fi
205 AM_CONDITIONAL(BUILD_INTL, test "${nls_cv_force_use_gnu_gettext}" = "yes")
206 XGETTEXT="${XGETTEXT} --keyword=_NS --keyword=_ANS"
207
208 AC_ARG_ENABLE(utf8,
209   [  --enable-utf8           unicode utf8 support (default enabled on darwin/beos/win32)])
210 if test "${enable_utf8}" = "yes" || (test "${enable_utf8}" != "no" && (test "${SYS}" = "mingw32" || test "${SYS}" = "beos" || test "${SYS}" = "darwin" ) )
211 then
212   AC_DEFINE(ENABLE_UTF8, 1,
213             Define if you want utf8 support)
214 fi
215
216 AC_MSG_CHECKING(for suffix of libraries)
217 AC_MSG_RESULT(${LIBEXT})
218
219 dnl Check for the need to include the mingwex lib for mingw32
220 if test "${SYS}" = "mingw32"
221 then
222     AC_CHECK_LIB(mingwex,opendir,
223         AC_CHECK_LIB(mingw32,opendir,AX_ADD_LDFLAGS([vlc],[]),
224             [AX_ADD_LDFLAGS([vlc gtk],[-lmingwex])])
225     )
226 fi
227
228 dnl Check for fnative-struct or mms-bitfields support for mingw32
229 if test "${SYS}" = "mingw32"
230 then
231     AC_CACHE_CHECK([if \$CC accepts -mms-bitfields],
232         [ac_cv_c_mms_bitfields],
233         [CFLAGS="${CFLAGS_save} -mms-bitfields"
234          AC_TRY_COMPILE([],,ac_cv_c_mms_bitfields=yes, ac_cv_c_mms_bitfields=no)])
235     if test "${ac_cv_c_mms_bitfields}" != "no"; then
236         CFLAGS_save="${CFLAGS_save} -mms-bitfields";
237         CXXFLAGS_save="${CXXFLAGS_save} -mms-bitfields";
238     else
239         AC_CACHE_CHECK([if \$CC accepts -fnative-struct],
240             [ac_cv_c_fnative_struct],
241             [CFLAGS="${CFLAGS_save} -fnative-struct"
242              AC_TRY_COMPILE([],,ac_cv_c_fnative_struct=yes, ac_cv_c_fnative_struct=no)])
243         if test "${ac_cv_c_fnative_struct}" != "no"; then
244             CFLAGS_save="${CFLAGS_save} -fnative-struct";
245             CXXFLAGS_save="${CXXFLAGS_save} -fnative-struct";
246         fi
247     fi
248
249     CFLAGS="${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
250 fi
251
252 dnl Check for fvtable-thunks support for mingw32
253 if test "${SYS}" = "mingw32"
254 then
255 AC_LANG_PUSH(C++)
256     AC_CACHE_CHECK([if \$CXX accepts -fvtable-thunks],
257         [ac_cv_cxx_fvtable_thunks],
258         [CXXFLAGS="${CXXFLAGS_save} -Wall -Werror -fvtable-thunks"
259          AC_TRY_COMPILE([],,ac_cv_cxx_fvtable_thunks=yes,
260                         ac_cv_cxx_fvtable_thunks=no)])
261     if test "${ac_cv_cxx_fvtable_thunks}" = "yes"; then
262         CXXFLAGS_mingw32_special="-fvtable-thunks"
263     fi
264
265     CXXFLAGS_save="${CXXFLAGS_save} ${CXXFLAGS_mingw32_special}"; CXXFLAGS="${CXXFLAGS_save}"
266 AC_LANG_POP(C++)
267 fi
268
269 dnl Flags for plugin compilation
270 case "${SYS}" in
271   mingw32|cygwin)
272     AX_ADD_CFLAGS([pic plugin mozilla],[${CFLAGS_mingw32_special}])
273     AX_ADD_CXXFLAGS([pic plugin mozilla],[${CFLAGS_mingw32_special} ${CXXFLAGS_mingw32_special}])
274     AX_ADD_OBJCFLAGS([pic plugin mozilla],[${CFLAGS_mingw32_special}])
275     ;;
276   *)
277     AX_ADD_CFLAGS([pic plugin mozilla],[-fpic -fPIC])
278     AX_ADD_CXXFLAGS([pic plugin mozilla],[-fpic -fPIC])
279     AX_ADD_OBJCFLAGS([pic plugin mozilla],[-fpic -fPIC])
280     AX_ADD_LDFLAGS([plugin mozilla],[-fpic -fPIC])
281     ;;
282 esac
283
284 dnl The -DSYS_FOO flag
285 CPPFLAGS_save="${CPPFLAGS_save} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcdefghijklmnopqrstuvwxyz.' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`"; CPPFLAGS="${CPPFLAGS_save}"
286
287 dnl Check for system libs needed
288 need_libc=false
289
290 AC_CHECK_FUNCS(gettimeofday select strerror strtod strtol isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign gethostbyname2 if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf)
291
292 dnl Check for usual libc functions
293 AC_CHECK_FUNCS(strdup strndup atof lseek)
294 AC_CHECK_FUNCS(strcasecmp,,[AC_CHECK_FUNCS(stricmp)])
295 AC_CHECK_FUNCS(strncasecmp,,[AC_CHECK_FUNCS(strnicmp)])
296
297 dnl Check for setlocal and langinfo
298 AC_CHECK_FUNCS(setlocale)
299 AC_CHECK_HEADERS(langinfo.h)
300 AC_CHECK_FUNCS(nl_langinfo)
301
302 AC_CACHE_CHECK([for nl_langinfo and CODESET], ac_cv_langinfo_codeset,
303   [AC_TRY_LINK([#include <langinfo.h>],
304     [char* cs = nl_langinfo(CODESET);],
305     ac_cv_langinfo_codeset=yes,
306     ac_cv_langinfo_codeset=no)
307   ])
308 if test ${ac_cv_langinfo_codeset} = yes; then
309   AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
310     [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
311 fi
312
313 AC_CHECK_FUNCS(connect,,[
314   AC_CHECK_LIB(socket,connect,[
315     AX_ADD_LDFLAGS([vlc ipv4 cddax],-lsocket)
316   ])
317 ])
318
319 AC_CHECK_FUNCS(send,,[
320   AC_CHECK_LIB(socket,send,[
321     AX_ADD_LDFLAGS([access_http access_mms access_udp access_tcp access_ftp sap access_output_udp stream_out_standard],[-lsocket])
322   ])
323 ])
324
325 AC_CHECK_FUNCS(gethostbyname,,[
326   AC_CHECK_LIB(nsl,gethostbyname,[
327     AX_ADD_LDFLAGS([cddax ipv4 vlc],[-lnsl])
328   ],[
329     AC_CHECK_LIB(bind,gethostbyname,[
330       AX_ADD_LDFLAGS([ipv4 access_mms],[-lbind])
331     ])
332   ])
333 ])
334
335 dnl Check for socklen_t
336 AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
337   [AC_TRY_COMPILE(
338      [#include <sys/types.h>
339       #include <sys/socket.h>],
340      [socklen_t len = 42; return len;],
341      ac_cv_type_socklen_t=yes,
342      ac_cv_type_socklen_t=no)])
343 if test "${ac_cv_type_socklen_t}" != "no"; then
344   AC_DEFINE(HAVE_SOCKLEN_T, 1, [Define if <sys/socket.h> defines socklen_t.])
345 fi
346
347 dnl Check for va_copy
348 AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
349   AC_TRY_LINK(
350     [#include <stdarg.h>],
351     [va_list ap1, ap2; va_copy(ap1,ap2);],
352     [ac_cv_c_va_copy="yes"],
353     [ac_cv_c_va_copy="no"]))
354 if test "${ac_cv_c_va_copy}" = "yes"; then
355   AC_DEFINE(HAVE_VA_COPY, 1, [Define if <stdarg.h> defines va_copy.])
356 fi
357 AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy,
358   AC_TRY_LINK(
359     [#include <stdarg.h>],
360     [va_list ap1, ap2; __va_copy(ap1,ap2);],
361     [ac_cv_c___va_copy="yes"],
362     [ac_cv_c___va_copy="no"]))
363 if test "${ac_cv_c___va_copy}" = "yes"; then
364   AC_DEFINE(HAVE___VA_COPY, 1, [Define if <stdarg.h> defines __va_copy.])
365 fi
366
367 AC_CHECK_FUNCS(inet_aton,,[
368   AC_CHECK_LIB(resolv,inet_aton,[
369     AX_ADD_LDFLAGS([ipv4 vlc],[-lresolv])
370   ])
371 ])
372
373 dnl Check for getopt (always use builtin one on win32)
374 if test "${SYS}" = "mingw32"; then
375 need_getopt=:
376 else
377 need_getopt=false
378 AC_CHECK_FUNCS(getopt_long,[AC_DEFINE(HAVE_GETOPT_LONG,1,long getopt support)],
379 [ # FreeBSD has a gnugetopt library for this:
380   AC_CHECK_LIB([gnugetopt],[getopt_long],
381     [AC_DEFINE(HAVE_GETOPT_LONG,1,getopt support)
382      AX_ADD_LDFLAGS([vlc],[-lgnugetopt])],
383     [need_getopt=:])])
384 fi
385 AM_CONDITIONAL(BUILD_GETOPT, ${need_getopt})
386
387 if test "${SYS}" != "mingw32"; then
388 AC_TYPE_SIGNAL
389 AC_CHECK_LIB(m,cos,[
390   AX_ADD_LDFLAGS([adjust distort a52tofloat32 dtstofloat32],[-lm])
391 ])
392 AC_CHECK_LIB(m,pow,[
393   AX_ADD_LDFLAGS([ffmpeg stream_out_transcode stream_out_transrate i420_rgb faad vlc],[-lm])
394 ])
395 AC_CHECK_LIB(m,sqrt,[
396   AX_ADD_LDFLAGS([headphone_channel_mixer],[-lm])
397 ])
398 fi # end "${SYS}" != "mingw32"
399
400 dnl Check for dynamic plugins
401 ac_cv_have_plugins=no
402
403 # OS X style
404 AC_CHECK_HEADERS(mach-o/dyld.h,
405   [AC_CHECK_FUNCS(NSLinkModule,
406     [AC_DEFINE(HAVE_DL_DYLD, 1, [Define if you have the Darwin dyld API])
407      ac_cv_have_plugins=yes])])
408
409 # HP-UX style
410 if test "${ac_cv_have_plugins}" = "no"; then
411   AC_CHECK_HEADERS(dl.h)
412   ac_cv_my_have_shl_load=no
413   AC_CHECK_FUNC(shl_load,
414    [ac_cv_my_have_shl_load=yes,
415     AC_CHECK_LIB(dld, shl_load,
416      [ac_cv_my_have_shl_load=yes
417       AX_ADD_LDFLAGS([vlc],[-ldld])])])
418   if test "${ac_cv_my_have_shl_load}" = "yes"; then
419     AC_DEFINE(HAVE_DL_SHL_LOAD, 1, [Define if you have the shl_load API])
420     ac_cv_have_plugins=yes
421   fi
422 fi
423
424 # Whatever style
425 if test "${ac_cv_have_plugins}" = "no"; then
426   AC_CHECK_LIB(dld, dld_link,
427    [AX_ADD_LDFLAGS([vlc],[-ldld])
428     AC_DEFINE(HAVE_DL_DLD_LINK, 1, [Define if you have the GNU dld library])
429     ac_cv_have_plugins=yes])
430 fi
431
432 # Win32 style
433 if test "${ac_cv_have_plugins}" = "no"; then
434   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
435     AC_CHECK_LIB(kernel32, main,
436      [AX_ADD_LDFLAGS([vlc],[-lkernel32])
437       AC_DEFINE(HAVE_DL_WINDOWS, 1, [Define if you have Windows' LoadLibrary])
438       ac_cv_have_plugins=yes])
439   fi
440 fi
441
442 # BeOS style
443 if test "${ac_cv_have_plugins}" = "no"; then
444   AC_CHECK_HEADERS(image.h)
445   AC_CHECK_FUNCS(load_add_on,
446    [AC_DEFINE(HAVE_DL_BEOS, 1, [Define if you have the BeOS dl])
447     ac_cv_have_plugins=yes])
448 fi
449
450 # Only test for dlopen() if the others didn't work
451 if test "${ac_cv_have_plugins}" = "no"; then
452   AC_CHECK_HEADERS(dlfcn.h sys/dl.h)
453   ac_cv_my_have_dlopen=no
454   AC_CHECK_FUNC(dlopen,
455     ac_cv_my_have_dlopen=yes,
456     AC_CHECK_LIB(dl, dlopen,
457       ac_cv_my_have_dlopen=yes
458       AX_ADD_LDFLAGS([vlc],[-ldl]),
459       AC_CHECK_LIB(svld, dlopen,
460         ac_cv_my_have_dlopen=yes
461         AX_ADD_LDFLAGS([vlc],[-lsvld]))))
462   if test "${ac_cv_my_have_dlopen}" = "yes"; then
463     AC_DEFINE(HAVE_DL_DLOPEN, 1, [Define if you have the dlopen API])
464     ac_cv_have_plugins=yes
465   fi
466 fi
467
468 if test "${SYS}" != "mingw32"; then
469 dnl Check for pthreads - borrowed from XMMS
470 THREAD_LIB=error
471 if test "${THREAD_LIB}" = "error"; then
472   AC_CHECK_LIB(pthread,main,THREAD_LIB="-lpthread")
473 fi
474 if test "${THREAD_LIB}" = "error"; then
475   AC_CHECK_LIB(pthreads,main,THREAD_LIB="-lpthreads")
476 fi
477 if test "${THREAD_LIB}" = "error"; then
478   AC_CHECK_LIB(c_r,main,THREAD_LIB="-lc_r")
479 fi
480 if test "${THREAD_LIB}" = "error"; then
481   AC_CHECK_FUNCS(pthread_mutex_lock)
482   THREAD_LIB=""
483 fi
484
485 dnl Check for cthreads under GNU/Hurd for instance
486 AC_CHECK_LIB(threads,cthread_fork,THREAD_LIB="-lthreads")
487
488 dnl
489 dnl  GNU portable threads
490 dnl
491 AC_ARG_ENABLE(pth,
492   [  --enable-pth            GNU Pth support (default disabled)],
493   [ if test "${enable_pth}" = "yes"; then
494     AC_CHECK_LIB(pth,pth_init)
495     AC_MSG_CHECKING(for pth_init in pth.h)
496     AC_EGREP_HEADER(pth_init,pth.h,[
497       AC_MSG_RESULT(yes)
498       AC_DEFINE(PTH_INIT_IN_PTH_H, 1,
499                 Define if <pth.h> defines pth_init)
500       THREAD_LIB="-lpth"
501     ],[
502       AC_MSG_RESULT(no)
503     ])
504     fi
505 ])
506
507 dnl
508 dnl  State Threads
509 dnl
510 AC_ARG_ENABLE(st,
511   [  --enable-st             State Threads (default disabled)],
512   [ if test "${enable_st}" = "yes"; then
513     AC_CHECK_LIB(st,st_init)
514     AC_MSG_CHECKING(for st_init in st.h)
515     AC_EGREP_HEADER(st_init,st.h,[
516       AC_MSG_RESULT(yes)
517       AC_DEFINE(ST_INIT_IN_ST_H, 1,
518                 Define if <st.h> defines st_init)
519       THREAD_LIB="-lst"
520     ],[
521       AC_MSG_RESULT(yes)
522     ])
523     fi
524 ])
525
526 AX_ADD_LDFLAGS([vlc plugin],[${THREAD_LIB}])
527
528 dnl Don't link with rt when using GNU-pth
529 if test "${THREAD_LIB}" != "-lpth" && test "${THREAD_LIB}" != "-lst"; then
530   dnl HP/UX port
531   AC_CHECK_LIB(rt,sem_init, [AX_ADD_LDFLAGS([vlc],[-lrt])])
532
533   have_nanosleep=false
534   AC_CHECK_FUNCS(nanosleep,have_nanosleep=:,[
535     AC_CHECK_LIB(rt,nanosleep,
536       [AX_ADD_LDFLAGS([vlc],[-lrt]) have_nanosleep=:],
537       [AC_CHECK_LIB(posix4,nanosleep,
538           [AX_ADD_LDFLAGS([vlc],[-lposix4]) have_nanosleep=:])]
539     )
540   ])
541   if ${have_nanosleep}; then
542     AC_DEFINE(HAVE_NANOSLEEP, 1,
543               Define if nanosleep is available.)
544   fi
545 fi
546
547 dnl Check for misc headers
548 AC_MSG_CHECKING(for pthread_cond_t in pthread.h)
549 AC_EGREP_HEADER(pthread_cond_t,pthread.h,[
550   AC_MSG_RESULT(yes)
551   AC_DEFINE(PTHREAD_COND_T_IN_PTHREAD_H, 1,
552             Define if <pthread.h> defines pthread_cond_t.)],[
553   AC_MSG_RESULT(no)])
554
555 AC_MSG_CHECKING(for pthread_once in pthread.h)
556 AC_EGREP_HEADER(pthread_once,pthread.h,[
557   AC_MSG_RESULT(yes)
558   AC_DEFINE(PTHREAD_ONCE_IN_PTHREAD_H, 1,
559             Define if <pthread.h> defines pthread_once.)],[
560   AC_MSG_RESULT(no)])
561 fi # end "${SYS}" != "mingw32"
562
563 AC_MSG_CHECKING(for strncasecmp in strings.h)
564 AC_EGREP_HEADER(strncasecmp,strings.h,[
565   AC_MSG_RESULT(yes)
566   AC_DEFINE(STRNCASECMP_IN_STRINGS_H, 1,
567             Define if <strings.h> defines strncasecmp.)],[
568   AC_MSG_RESULT(no)])
569
570 dnl Check for headers
571 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)
572 AC_CHECK_HEADERS(sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h)
573 AC_CHECK_HEADERS(arpa/inet.h net/if.h netinet/in.h sys/socket.h)
574 if test "${SYS}" != "mingw32"; then
575 AC_CHECK_HEADERS(machine/param.h sys/shm.h altivec.h)
576 AC_CHECK_HEADERS(linux/version.h)
577 fi # end "${SYS}" != "mingw32"
578
579 AC_HEADER_TIME
580
581 dnl Check for dirent
582 need_dirent=false
583 AC_CHECK_HEADERS(dirent.h,,[need_dirent=:])
584 AM_CONDITIONAL(BUILD_DIRENT, ${need_dirent})
585
586 dnl Mac OS X and other OSes don't have declaration for nanosleep
587 if test "${SYS}" != "mingw32"; then
588 AC_MSG_CHECKING(for nanosleep in time.h)
589 AC_EGREP_HEADER(nanosleep,time.h,[
590   AC_MSG_RESULT(yes)
591   AC_DEFINE(HAVE_DECL_NANOSLEEP, 1,
592             Define if <time.h> defines nanosleep.)
593 ],[
594   AC_MSG_RESULT(no)
595 ])
596 fi # end "${SYS}" != "mingw32"
597
598 dnl Make sure we have timespecs
599 AC_MSG_CHECKING(for timespec in sys/time.h)
600 AC_EGREP_HEADER(timespec,sys/time.h,[
601   AC_MSG_RESULT(yes)
602   AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1,
603             Define if <sys/time.h> defines struct timespec.)
604 ],[
605   AC_MSG_RESULT(no)
606 ])
607
608 dnl Check for threads library
609 if test "${SYS}" != "mingw32"; then
610 AC_CHECK_HEADERS(cthreads.h pthread.h kernel/scheduler.h kernel/OS.h)
611 fi # end "${SYS}" != "mingw32"
612
613 dnl Default X headers and libraries
614 if test "${x_includes}" = "NONE"; then
615   x_includes="/usr/X11R6/include"
616 fi
617 if test "${x_libraries}" = "NONE"; then
618   x_libraries="/usr/X11R6/lib"
619 fi
620
621 dnl Build the gtk_main plugins?
622 NEED_GTK_MAIN=no
623 NEED_GNOME_MAIN=no
624 NEED_GTK2_MAIN=no
625 NEED_GNOME2_MAIN=no
626
627 dnl build the qte plugin ?
628 NEED_QTE_MAIN=no
629
630 dnl Check for ntohl, etc.
631 AC_CACHE_CHECK([for ntohl in sys/param.h],
632     [ac_cv_c_ntohl_sys_param_h],
633     [CFLAGS="${CFLAGS_save} -Wall -Werror"
634      AC_TRY_COMPILE([#include <sys/param.h>],
635         [void foo() { int meuh; ntohl(meuh); }],
636         ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
637 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
638     AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
639 fi
640
641 dnl Check for inline function size limit
642 AC_CACHE_CHECK([if \$CC accepts -finline-limit],
643     [ac_cv_c_inline_limit],
644     [CFLAGS="${CFLAGS_save} -finline-limit-30000"
645      AC_TRY_COMPILE([],,ac_cv_c_inline_limit=yes, ac_cv_c_inline_limit=no)])
646 if test "${ac_cv_c_inline_limit}" != "no"; then
647     CFLAGS_save="${CFLAGS_save} -finline-limit-30000"; CFLAGS="${CFLAGS_save}"
648     CXXFLAGS_save="${CXXFLAGS_save} -finline-limit-30000"; CXXFLAGS="${CXXFLAGS_save}"
649     OBJCFLAGS_save="${OBJCFLAGS_save} -finline-limit-30000"; OBJCFLAGS="${OBJCFLAGS_save}"
650 fi
651
652 # XXX: do this with an M4 macro?
653 #dnl Check for various -W flags
654 #for flag in "" all unreachable-code conversion sign-compare disabled-optimization
655 #do
656 #    AC_CACHE_CHECK([if \$CC accepts -W${flag}],
657 #        [ac_cv_c_W${flag}],
658 #        [CFLAGS="-W${flag} ${CFLAGS_save}"
659 #         AC_TRY_COMPILE([],,ac_cv_c_W${flag}=yes, ac_cv_c_W${flag}=no)])
660 #    if test "${ac_cv_c_W${flag}}" != "no"; then
661 #        CFLAGS_save="-W${flag} ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
662 #        CXXFLAGS_save="-W${flag} ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
663 #        OBJCFLAGS_save="-W${flag} ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
664 #    fi
665 #done
666
667 AC_CACHE_CHECK([if \$CC accepts -Wall],
668     [ac_cv_c_Wall],
669     [CFLAGS="-Wall ${CFLAGS_save}"
670      AC_TRY_COMPILE([],,ac_cv_c_Wall=yes, ac_cv_c_Wall=no)])
671
672 AC_CACHE_CHECK([if \$CC accepts -Wconversion],
673     [ac_cv_c_Wconversion],
674     [CFLAGS="-Wconversion ${CFLAGS_save}"
675      AC_TRY_COMPILE([],,ac_cv_c_Wconversion=yes, ac_cv_c_Wconversion=no)])
676
677 AC_CACHE_CHECK([if \$CC accepts -Wunreachable-code],
678     [ac_cv_c_Wunreachable_code],
679     [CFLAGS="-Wunreachable-code ${CFLAGS_save}"
680      AC_TRY_COMPILE([],,ac_cv_c_Wunreachable_code=yes, ac_cv_c_Wunreachable_code=no)])
681
682 AC_CACHE_CHECK([if \$CC accepts -Wsign-compare],
683     [ac_cv_c_Wsign_compare],
684     [CFLAGS="-Wsign-compare ${CFLAGS_save}"
685      AC_TRY_COMPILE([],,ac_cv_c_Wsign_compare=yes, ac_cv_c_Wsign_compare=no)])
686
687 if test "${ac_cv_c_Wall}" != "no"; then
688     CFLAGS_save="-Wall ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
689     CXXFLAGS_save="-Wall ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
690     OBJCFLAGS_save="-Wall ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
691 fi
692
693 if test "${ac_cv_c_Wsign_compare}" != "no"; then
694     CFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
695     CXXFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
696     OBJCFLAGS_save="-Wsign-compare ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
697 fi
698
699 dnl Check for -pipe
700 AC_CACHE_CHECK([if \$CC accepts -pipe],
701     [ac_cv_c_pipe],
702     [CFLAGS="${CFLAGS_save} -pipe"
703      AC_TRY_COMPILE([],,ac_cv_c_pipe=yes, ac_cv_c_pipe=no)])
704 if test "${ac_cv_c_pipe}" != "no"; then
705     CFLAGS_save="${CFLAGS_save} -pipe"; CFLAGS="${CFLAGS_save}"
706     CXXFLAGS_save="${CXXFLAGS_save} -pipe"; CXXFLAGS="${CXXFLAGS_save}"
707     OBJCFLAGS_save="${OBJCFLAGS_save} -pipe"; OBJCFLAGS="${OBJCFLAGS_save}"
708 fi
709
710 dnl Check for various optimization flags
711 AC_CACHE_CHECK([if \$CC accepts -O3],
712     [ac_cv_c_o3],
713     [CFLAGS="${CFLAGS_save} -O3"
714      AC_TRY_COMPILE([],,ac_cv_c_o3=yes, ac_cv_c_o3=no)])
715 if test "${ac_cv_c_o3}" != "no"; then
716     CFLAGS_OPTIM="${CFLAGS_OPTIM} -O3"
717 fi
718
719 AC_CACHE_CHECK([if \$CC accepts -O2],
720     [ac_cv_c_o2],
721     [CFLAGS="${CFLAGS_save} -O2"
722      AC_TRY_COMPILE([],,ac_cv_c_o2=yes, ac_cv_c_o2=no)])
723 if test "${ac_cv_c_o2}" != "no"; then
724     if test "${ac_cv_c_o3}" = "no"; then
725         CFLAGS_OPTIM="${CFLAGS_OPTIM} -O2"
726     fi
727     CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O2"
728 else
729     AC_CACHE_CHECK([if \$CC accepts -O],
730         [ac_cv_c_o],
731         [CFLAGS="${CFLAGS_save} -O"
732          AC_TRY_COMPILE([],,ac_cv_c_o=yes, ac_cv_c_o=no)])
733     if test "${ac_cv_c_o}" != "no"; then
734         if test "${ac_cv_c_o3}" = "no"; then
735             CFLAGS_OPTIM="${CFLAGS_OPTIM} -O"
736         fi
737         CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O"
738     fi
739 fi
740
741 dnl Check for -ffast-math
742 AC_CACHE_CHECK([if \$CC accepts -ffast-math],
743     [ac_cv_c_fast_math],
744     [CFLAGS="${CFLAGS_save} -ffast-math"
745      AC_TRY_COMPILE([],,ac_cv_c_fast_math=yes, ac_cv_c_fast_math=no)])
746 if test "${ac_cv_c_fast_math}" != "no"; then
747     CFLAGS_OPTIM="${CFLAGS_OPTIM} -ffast-math"
748 fi
749
750 dnl Check for -funroll-loops
751 dnl Disabled on BeOS because BeOS' gcc is buggy and may crash with it
752 if test "${SYS}" != "beos"
753 then
754   AC_CACHE_CHECK([if \$CC accepts -funroll-loops],
755       [ac_cv_c_unroll_loops],
756       [CFLAGS="${CFLAGS_save} -funroll-loops"
757        AC_TRY_COMPILE([],,ac_cv_c_unroll_loops=yes, ac_cv_c_unroll_loops=no)])
758   if test "${ac_cv_c_unroll_loops}" != "no"; then
759       CFLAGS_OPTIM="${CFLAGS_OPTIM} -funroll-loops"
760   fi
761 fi
762
763 dnl Check for -fomit-frame-pointer
764 AC_CACHE_CHECK([if \$CC accepts -fomit-frame-pointer],
765     [ac_cv_c_omit_frame_pointer],
766     [CFLAGS="${CFLAGS_save} -fomit-frame-pointer"
767      AC_TRY_COMPILE([],,ac_cv_c_omit_frame_pointer=yes, ac_cv_c_omit_frame_pointer=no)])
768 if test "${ac_cv_c_omit_frame_pointer}" != "no"; then
769     CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fomit-frame-pointer"
770     # this plugin does not compile without -fomit-frame-pointer, damn gcc!
771     AX_ADD_CFLAGS([i420_yuy2_mmx],[-fomit-frame-pointer])
772 fi
773
774 dnl Check for -mdynamic-no-pic
775 AC_CACHE_CHECK([if \$CC accepts -mdynamic-no-pic],
776     [ac_cv_c_dynamic_no_pic],
777     [CFLAGS="${CFLAGS_save} -mdynamic-no-pic"
778      AC_TRY_COMPILE([],,ac_cv_c_dynamic_no_pic=yes, ac_cv_c_dynamic_no_pic=no)])
779 if test "${ac_cv_c_dynamic_no_pic}" != "no"; then
780     AX_ADD_CFLAGS([builtin],[-mdynamic-no-pic])
781     AX_ADD_CFLAGS([libvlc],[-mdynamic-no-pic])
782 fi
783
784 dnl Check for Darwin plugin linking flags
785 AC_CACHE_CHECK([if \$CC accepts -bundle -undefined error -lcc_dynamic],
786     [ac_cv_ld_darwin],
787     [CFLAGS="${CFLAGS_save} -bundle -undefined error -lcc_dynamic"
788      AC_TRY_COMPILE([],,ac_cv_ld_darwin=yes, ac_cv_ld_darwin=no)])
789 if test "${ac_cv_ld_darwin}" != "no"; then
790     AX_ADD_LDFLAGS([plugin],[-bundle -undefined error -lcc_dynamic])
791 fi
792
793 dnl Check for standard plugin linking flags
794 dnl BeOS' gcc needs -nostart instead of -shared, even if -shared isn't harmful (just a warning)
795 if test "${SYS}" = "beos"; then
796   AX_ADD_LDFLAGS([plugin mozilla],[-nostart])
797 else
798   AC_CACHE_CHECK([if \$CC accepts -shared],
799       [ac_cv_ld_plugins],
800       [CFLAGS="${CFLAGS_save} -shared"
801        AC_TRY_COMPILE([],, ac_cv_ld_plugins=yes, ac_cv_ld_plugins=no)])
802   if test "${ac_cv_ld_plugins}" != "no"; then
803     AX_ADD_LDFLAGS([plugin mozilla],[-shared])
804   fi
805 fi
806
807 dnl Check for variadic macros
808 AC_CACHE_CHECK([for variadic cpp macros],
809     [ac_cv_cpp_variadic_macros],
810     [CFLAGS="${CFLAGS_save}"
811      AC_TRY_COMPILE(
812          [#include <stdio.h>
813           #define a(b,c...) printf(b,##c)],
814          [a("foo");a("%s","bar");a("%s%s","baz","quux");],
815          ac_cv_cpp_variadic_macros=yes,
816          ac_cv_cpp_variadic_macros=no)])
817 if test "${ac_cv_cpp_variadic_macros}" != "no"; then
818     AC_DEFINE(HAVE_VARIADIC_MACROS, 1, Support for variadic macros)
819 fi
820
821 dnl Checks for __attribute__(aligned()) directive
822 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
823     [ac_cv_c_attribute_aligned],
824     [ac_cv_c_attribute_aligned=0
825         CFLAGS="${CFLAGS_save} -Werror"
826     for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
827         AC_TRY_COMPILE([],
828         [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
829         [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
830     done
831         CFLAGS="${CFLAGS_save}"])
832 if test "${ac_cv_c_attribute_aligned}" != "0"; then
833     AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
834         [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
835 fi
836
837 dnl Checks for __attribute__(format()) directive
838 AC_CACHE_CHECK([__attribute__ ((format ())) support with function pointers],
839     [ac_cv_c_attribute_format],
840     [ac_cv_c_attribute_format=no
841         CFLAGS="${CFLAGS_save} -Werror"
842         AC_TRY_COMPILE([],
843         [static void (*pf_printf)(const char *, ...) __attribute__ ((format(printf,1,2)));(void)pf_printf;],
844         [ac_cv_c_attribute_format=yes])
845         CFLAGS="${CFLAGS_save}"])
846 if test "${ac_cv_c_attribute_format}" != "no"; then
847     AC_DEFINE(HAVE_ATTRIBUTE_FORMAT, 1, Support for __attribute__((format())) with function pointers)
848 fi
849
850 dnl Check for __attribute__(())
851 AC_CACHE_CHECK([for __attribute__((packed))],
852   [ac_cv_c_attribute_packed],
853   [ac_cv_c_attribute_packed=no
854    AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b;],
855                     [ac_cv_c_attribute_packed=yes])])
856 if test "${ac_cv_c_attribute_packed}" != "no"; then
857   AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
858 fi
859
860 dnl
861 dnl  Check the CPU
862 dnl
863 case "${target_cpu}" in
864   "")
865     ARCH=unknown
866     ;;
867   *)
868     ARCH="${target_cpu}"
869     ;;
870 esac
871
872 dnl
873 dnl  Enable profiling
874 dnl
875 AC_ARG_ENABLE(gprof,
876 [  --enable-gprof          gprof profiling (default disabled)])
877 AC_ARG_ENABLE(cprof,
878 [  --enable-cprof          cprof profiling (default disabled)])
879 test "${enable_gprof}" != "yes" && enable_gprof="no"
880 test "${enable_cprof}" != "yes" && enable_cprof="no"
881
882 dnl
883 dnl  default modules
884 dnl
885 AX_ADD_PLUGINS([dummy rc telnet logger gestures memcpy hotkeys])
886 AX_ADD_PLUGINS([mpgv mpga m4v h264 mpeg_system ps ps2 pva ts avi asf aac mp4 rawdv demux2 nsv real aiff])
887 AX_ADD_PLUGINS([cvdsub svcdsub spudec dvbsub mpeg_audio lpcm a52 dts cinepak])
888 AX_ADD_PLUGINS([deinterlace invert adjust wall transform distort clone crop motionblur])
889 AX_ADD_PLUGINS([float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif fixed32tofloat32 fixed32tos16 s16tofixed32 s16tofloat32 s16tofloat32swab s8tofloat32 u8tofixed32 u8tofloat32])
890 AX_ADD_PLUGINS([trivial_resampler ugly_resampler linear_resampler bandlimited_resampler])
891 AX_ADD_PLUGINS([trivial_channel_mixer headphone_channel_mixer])
892 AX_ADD_PLUGINS([trivial_mixer spdif_mixer float32_mixer])
893 AX_ADD_PLUGINS([aout_file])
894 AX_ADD_PLUGINS([i420_rgb i420_yuy2 i422_yuy2 i420_ymga])
895 AX_ADD_PLUGINS([id3 m3u playlist export sgimb])
896 AX_ADD_PLUGINS([rawvideo])
897 AX_ADD_PLUGINS([wav araw demuxdump demuxsub adpcm a52sys dtssys au])
898 AX_ADD_PLUGINS([access_file access_udp access_tcp access_http ipv4 access_mms])
899 AX_ADD_PLUGINS([access_ftp access_directory sap http])
900
901 dnl
902 dnl  Switch to enable a version of VLC where most modules will be builtin
903 dnl
904 AC_ARG_ENABLE(mostly-builtin,
905 [  --enable-mostly-builtin most modules will be built-in (default disabled)])
906 if test "${enable_mostly_builtin}" = "yes"; then
907   AX_ADD_BUILTINS([${PLUGINS}])
908   PLUGINS=""
909 fi
910
911 dnl
912 dnl Some plugins aren't useful on some platforms
913 dnl
914 if test "${SYS}" != "mingw32"; then
915     AX_ADD_PLUGINS([screensaver])
916 else
917     AX_ADD_PLUGINS([ntservice])
918 fi
919
920 dnl
921 dnl  Accelerated modules
922 dnl
923 MMX_MODULES="memcpymmx i420_rgb_mmx i422_yuy2_mmx i420_ymga_mmx"
924 #MMX_MODULES="${MMX_MODULES} idctmmx motionmmx"
925 MMXEXT_MODULES="memcpymmxext"
926 #MMXEXT_MODULES="${MMXEXT_MODULES} idctmmxext motionmmxext"
927 THREEDNOW_MODULES="memcpy3dn"
928 SSE_MODULES=""
929 ALTIVEC_MODULES="memcpyaltivec i420_yuy2_altivec"
930 #ALTIVEC_MODULES="${ALTIVEC_MODULES} idctaltivec motionaltivec"
931
932 if test "${enable_gprof}" != "yes"
933 then
934   MMX_MODULES="${MMX_MODULES} i420_yuy2_mmx"
935 fi
936
937 AC_CACHE_CHECK([if \$CC groks MMX inline assembly],
938     [ac_cv_mmx_inline],
939     [CFLAGS="${CFLAGS_save}"
940      AC_TRY_COMPILE(,[void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p));],
941                     ac_cv_mmx_inline=yes, ac_cv_mmx_inline=no)])
942 if test "${ac_cv_mmx_inline}" != "no"; then
943   AC_DEFINE(CAN_COMPILE_MMX, 1, Define if \$CC groks MMX inline assembly.)
944   ACCEL_MODULES="${ACCEL_MODULES} ${MMX_MODULES}"
945 fi
946
947 AC_CACHE_CHECK([if \$CC groks MMX EXT inline assembly],
948     [ac_cv_mmxext_inline],
949     [CFLAGS="${CFLAGS_save}"
950      AC_TRY_COMPILE(,[void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p));],
951                     ac_cv_mmxext_inline=yes, ac_cv_mmxext_inline=no)])
952 if test "${ac_cv_mmxext_inline}" != "no"; then
953   AC_DEFINE(CAN_COMPILE_MMXEXT, 1, Define if \$CC groks MMX EXT inline assembly.)
954   ACCEL_MODULES="${ACCEL_MODULES} ${MMXEXT_MODULES}"
955 fi
956
957 AC_CACHE_CHECK([if \$CC groks 3D Now! inline assembly],
958     [ac_cv_3dnow_inline],
959     [CFLAGS="${CFLAGS_save}"
960      AC_TRY_COMPILE(,[void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p));],
961                     ac_cv_3dnow_inline=yes, ac_cv_3dnow_inline=no)])
962 if test "${ac_cv_3dnow_inline}" != "no"; then
963   AC_DEFINE(CAN_COMPILE_3DNOW, 1, Define if \$CC groks 3D Now! inline assembly.)
964   ACCEL_MODULES="${ACCEL_MODULES} ${THREEDNOW_MODULES}"
965 fi
966
967 AC_CACHE_CHECK([if \$CC groks SSE inline assembly],
968     [ac_cv_sse_inline],
969     [CFLAGS="${CFLAGS_save}"
970      AC_TRY_COMPILE(,[void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p));],
971                     ac_cv_sse_inline=yes, ac_cv_sse_inline=no)])
972 if test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "solaris"; then
973   AC_DEFINE(CAN_COMPILE_SSE, 1, Define if \$CC groks SSE inline assembly.)
974   ACCEL_MODULES="${ACCEL_MODULES} ${SSE_MODULES}"
975 fi
976
977 if test "${SYS}" != "mingw32"; then
978 AC_CACHE_CHECK([if \$CC groks AltiVec inline assembly],
979     [ac_cv_altivec_inline],
980     [CFLAGS="${CFLAGS_save}"
981      AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
982          ac_cv_altivec_inline=yes,
983          [CFLAGS="${CFLAGS_save} -Wa,-m7400"
984           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
985             [ac_cv_altivec_inline="-Wa,-m7400"],
986             ac_cv_altivec_inline=no)
987          ])])
988 if test "${ac_cv_altivec_inline}" != "no"; then
989   AC_DEFINE(CAN_COMPILE_ALTIVEC, 1, Define if \$CC groks AltiVec inline assembly.)
990   if test "${ac_cv_altivec_inline}" != "yes"; then
991     AX_ADD_CFLAGS([idctaltivec],[${ac_cv_altivec_inline}])
992     AX_ADD_CFLAGS([motionaltivec],[${ac_cv_altivec_inline}])
993     AX_ADD_CFLAGS([memcpyaltivec],[${ac_cv_altivec_inline}])
994     AX_ADD_CFLAGS([i420_yuy2_altivec],[${ac_cv_altivec_inline}])
995     AX_ADD_CFLAGS([vlc],[${ac_cv_altivec_inline}])
996   fi
997   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
998 fi
999
1000 AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1001     [ac_cv_c_altivec],
1002     [# Darwin test
1003      CFLAGS="${CFLAGS_save} -faltivec"
1004      AC_TRY_COMPILE([],
1005        [vec_ld(0, (unsigned char *)0);],
1006        [ac_cv_c_altivec="-faltivec"],
1007        [# Linux/PPC test
1008         CFLAGS="${CFLAGS_save} ${CFLAGS_idctaltivec} -maltivec -mabi=altivec"
1009         AC_TRY_COMPILE([#ifdef HAVE_ALTIVEC_H
1010                         #include <altivec.h>
1011                         #endif],
1012           [vec_ld(0, (unsigned char *)0);],
1013           [ac_cv_c_altivec="-maltivec -mabi=altivec"],
1014           [# Linux/PPC test (old GCC versions)
1015            CFLAGS="${CFLAGS_save} ${CFLAGS_idctaltivec} -fvec"
1016            AC_TRY_COMPILE([#ifdef HAVE_ALTIVEC_H
1017                            #include <altivec.h>
1018                            #endif],
1019              [vec_ld(0, (unsigned char *)0);],
1020              [ac_cv_c_altivec="-fvec"],
1021              [ac_cv_c_altivec=no])
1022            ])
1023         ])
1024      CFLAGS="${CFLAGS_save}"])
1025 if test "${ac_cv_c_altivec}" != "no"; then
1026   AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, Define if your compiler groks C AltiVec extensions.)
1027   AX_ADD_CFLAGS([vlc idctaltivec motionaltivec memcpyaltivec deinterlace i420_yuy2_altivec],[${ac_cv_c_altivec}])
1028   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
1029 fi
1030
1031 AC_CACHE_CHECK([if linker needs -framework vecLib],
1032     [ac_cv_ld_altivec],
1033     [LDFLAGS="${LDFLAGS_vlc} -framework vecLib"
1034      AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)
1035      LDFLAGS="${LDFLAGS_save}"
1036     ])
1037 if test "${ac_cv_ld_altivec}" != "no"; then
1038   AX_ADD_LDFLAGS([vlc idctaltivec motionaltivec memcpyaltivec],[-framework vecLib])
1039 fi
1040 fi # end "${SYS}" != "mingw32"
1041
1042 AC_ARG_WITH(,[])
1043 AC_ARG_WITH(,[Optimization options:])
1044
1045 dnl
1046 dnl  Special arch tuning
1047 dnl
1048 AC_ARG_WITH(tuning,
1049 [  --with-tuning=ARCH      enable special tuning for an architecture
1050                           (default i686 on IA-32 and 750 on PPC)])
1051 if test -n "${with_tuning}"; then
1052     if test "${target_cpu}" = "powerpc"; then
1053         CFLAGS_TUNING="-mtune=${with_tuning}"
1054     else
1055         CFLAGS_TUNING="-mcpu=${with_tuning}"
1056     fi
1057 else
1058     if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "i486" -o "${target_cpu}" = "i386"; then
1059         CFLAGS_TUNING="-mcpu=pentiumpro"
1060     else
1061         if test "${target_cpu}" = "powerpc"; then CFLAGS_TUNING="-mtune=750"; fi
1062     fi
1063 fi
1064
1065 dnl
1066 dnl  x86 accelerations
1067 dnl
1068 if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "x86" -o "${target_cpu}" = "i386"
1069 then
1070     ARCH="${ARCH} mmx"
1071     AX_ADD_BUILTINS([${ACCEL_MODULES}])
1072 fi
1073
1074 dnl
1075 dnl  Enable/disable optimizations
1076 dnl
1077 AC_ARG_ENABLE(optimizations,
1078 [  --disable-optimizations disable compiler optimizations (default enabled)])
1079 test "${enable_optimizations}" != "no" && enable_optimizations="yes"
1080
1081 dnl
1082 dnl  AltiVec acceleration
1083 dnl
1084 AC_ARG_ENABLE(altivec,
1085 [  --disable-altivec       disable AltiVec optimizations (default enabled on PPC)],
1086 [ if test "${enable_altivec}" = "yes"; then ARCH="${ARCH} altivec";
1087     AX_ADD_BUILTINS([${ACCEL_MODULES}]) fi ],
1088 [ if test "${target_cpu}" = "powerpc"; then ARCH="${ARCH} altivec";
1089     AX_ADD_BUILTINS([${ACCEL_MODULES}]) fi ])
1090
1091 dnl
1092 dnl  Debugging mode
1093 dnl
1094 AC_ARG_ENABLE(debug,
1095 [  --enable-debug          debug mode (default disabled)])
1096 test "${enable_debug}" != "yes" && enable_debug="no"
1097
1098 dnl
1099 dnl  Enable release-specific flags
1100 dnl
1101 AC_ARG_ENABLE(release,
1102 [  --enable-release        activate extra optimizations (default disabled)])
1103 test "${enable_release}" != "yes" && enable_release="no"
1104
1105 dnl
1106 dnl Stream output
1107 dnl
1108 AC_ARG_ENABLE(sout,
1109   [  --enable-sout           Stream output modules (default enabled)])
1110 if test "${enable_sout}" != "no"
1111 then
1112   AX_ADD_PLUGINS([access_output_dummy access_output_udp access_output_file access_output_http])
1113   AX_ADD_PLUGINS([mux_ts mux_ps mux_avi mux_mp4 mux_asf mux_dummy])
1114   AX_ADD_PLUGINS([packetizer_mpegvideo packetizer_h264])
1115   AX_ADD_PLUGINS([packetizer_mpeg4video packetizer_mpeg4audio])
1116   AX_ADD_PLUGINS([packetizer_copy])
1117
1118   AX_ADD_PLUGINS([stream_out_dummy stream_out_standard stream_out_es stream_out_rtp])
1119   AX_ADD_PLUGINS([stream_out_duplicate stream_out_display stream_out_gather])
1120 #  AX_ADD_PLUGINS([stream_out_transrate])
1121
1122   dnl Ogg and vorbis are handled in their respective section
1123 fi
1124
1125
1126 dnl
1127 dnl  Input plugins
1128 dnl
1129
1130 AC_ARG_WITH(,[Input plugins:])
1131
1132 dnl
1133 dnl  live.com input
1134 dnl
1135 AC_ARG_ENABLE(livedotcom,
1136 [  --enable-livedotcom     live.com input plugin (default disabled)])
1137 if test "${enable_livedotcom}" = "yes"; then
1138   AC_ARG_WITH(livedotcom-tree,
1139     [    --with-livedotcom-tree=PATH live.com tree for static linking])
1140
1141   dnl
1142   dnl test for --with-livedotcom-tree
1143   dnl
1144   if test -z "${with_livedotcom_tree}"; then
1145     AC_LANG_PUSH(C++)
1146     CPPFLAGS_save="${CPPFLAGS}"
1147     CPPFLAGS_livedotcom="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
1148     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_livedotcom}"
1149     AC_CHECK_HEADERS(liveMedia.hh, [
1150       AX_ADD_CXXFLAGS([livedotcom], [${CPPFLAGS_livedotcom}])
1151       AC_CHECK_LIB(liveMedia_pic, main, [
1152         # We have -lliveMedia_pic, build plugins
1153         AX_ADD_PLUGINS([livedotcom])
1154         AX_ADD_LDFLAGS([livedotcom], [-lliveMedia_pic -lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic])
1155       ], [
1156         AC_CHECK_LIB(liveMedia, main, [
1157           # We only have -lliveMedia, do builtins
1158           AX_ADD_BUILTINS([livedotcom])
1159           AX_ADD_LDFLAGS([livedotcom], [-lliveMedia -lgroupsock -lBasicUsageEnvironment -lUsageEnvironment])
1160         ])
1161       ])
1162       if test "${SYS}" = "mingw32"; then
1163         # add ws2_32 for closesocket, select, recv
1164         AX_ADD_LDFLAGS([livedotcom],[-lws2_32])
1165       fi
1166     ])
1167     CPPFLAGS="${CPPFLAGS_save}"
1168     AC_LANG_POP(C++)
1169   else
1170     AC_MSG_CHECKING(for liveMedia/libliveMedia.a in ${with_livedotcom_tree})
1171     real_livedotcom_tree="`cd ${with_livedotcom_tree} 2>/dev/null && pwd`"
1172     if test -z "${real_livedotcom_tree}"; then
1173       dnl  The given directory can't be found
1174       AC_MSG_RESULT(no)
1175       AC_MSG_ERROR([cannot cd to ${with_livedotcom_tree}])
1176     fi
1177     if test -f "${real_livedotcom_tree}/liveMedia/libliveMedia.a"; then
1178       AC_MSG_RESULT(${real_livedotcom_tree}/liveMedia/libliveMedia.a)
1179
1180       AX_ADD_BUILTINS([livedotcom])
1181
1182       if test "${SYS}" = "mingw32"; then
1183         # add ws2_32 for closesocket, select, recv
1184         AX_ADD_LDFLAGS([livedotcom],[-lws2_32])
1185       fi
1186
1187       AX_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/liveMedia -lliveMedia])
1188       AX_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/BasicUsageEnvironment -lBasicUsageEnvironment])
1189       AX_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/groupsock -lgroupsock])
1190       AX_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/UsageEnvironment -lUsageEnvironment])
1191
1192       AX_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/BasicUsageEnvironment/include])
1193       AX_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/groupsock/include])
1194       AX_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/liveMedia/include])
1195       AX_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/UsageEnvironment/include ])
1196     else
1197       dnl  The given live.com wasn't built
1198       AC_MSG_RESULT(no)
1199       AC_MSG_ERROR([cannot find ${real_livedotcom_tree}/liveMedia/libliveMedia.a, make sure you compiled live.com in ${with_livedotcom_tree}])
1200     fi
1201   fi
1202 fi
1203
1204
1205
1206 dnl
1207 dnl  DVD module: optionally check for installed libdvdcss
1208 dnl
1209 AC_ARG_ENABLE(dvd,
1210 [  --enable-dvd            DVD input module (default enabled)])
1211 if test "${enable_dvd}" != "no"
1212 then
1213   AC_ARG_WITH(dvdcss,
1214   [    --with-dvdcss=PATH    libdvdcss headers and libraries])
1215   AC_ARG_WITH(dvdcss-tree,
1216   [    --with-dvdcss-tree=PATH libdvdcss tree for static linking])
1217   case "${with_dvdcss}" in
1218   ""|yes)
1219     if test -z "${with_dvdcss_tree}"
1220     then
1221       AC_CHECK_HEADERS(dvdcss/dvdcss.h,
1222         [ AX_ADD_PLUGINS([dvd])
1223           AX_ADD_LDFLAGS([dvd dvdcss],[-ldvdcss])],
1224         [ AC_MSG_WARN([libdvdcss is no longer provided with vlc; please get libdvdcss from http://www.videolan.org/libdvdcss/ and build it. Then either use --with-dvdcss=<path/where/libdvdcss/was/installed> for dynamic linking (recommended under Unix) or --with-dvdcss-tree=<path/where/libdvdcss/was/built> for static linking (recommended under BeOS, Windows, MacOS X). Alternatively you can use --disable-dvd to disable the DVD plugin.])
1225           AC_MSG_ERROR([cannot find libdvdcss headers]) ])
1226     else
1227       AC_MSG_CHECKING(for libdvdcss.a in ${with_dvdcss_tree})
1228       real_dvdcss_tree="`cd ${with_dvdcss_tree} 2>/dev/null && pwd`"
1229       if test -z "${real_dvdcss_tree}"
1230       then
1231         dnl  The given directory can't be found
1232         AC_MSG_RESULT(no)
1233         AC_MSG_ERROR([cannot cd to ${with_dvdcss_tree}])
1234       fi
1235       if test -f "${real_dvdcss_tree}/src/.libs/libdvdcss.a"
1236       then
1237         dnl  Use a custom libdvdcss
1238         AC_MSG_RESULT(${real_dvdcss_tree}/src/.libs/libdvdcss.a)
1239         AX_ADD_BUILTINS([dvd])
1240         AX_ADD_LDFLAGS([dvd dvdcss],[-L${real_dvdcss_tree}/src/.libs -ldvdcss])
1241         AX_ADD_CPPFLAGS([dvd],[-I${real_dvdcss_tree}/src])
1242       else
1243         dnl  The given libdvdcss wasn't built
1244         AC_MSG_RESULT(no)
1245         AC_MSG_ERROR([cannot find ${real_dvdcss_tree}/src/.libs/libdvdcss.a, make sure you compiled libdvdcss in ${with_dvdcss_tree}])
1246       fi
1247     fi
1248   ;;
1249   no)
1250     dnl  Compile without dvdcss (dlopen version, works only under Linux)
1251     AX_ADD_PLUGINS([dvd])
1252     AX_ADD_CPPFLAGS([dvd],[-DGOD_DAMN_DMCA])
1253     AX_ADD_LDFLAGS([dvd],[-ldl])
1254   ;;
1255   *)
1256     AC_MSG_CHECKING(for dvdcss headers in ${with_dvdcss})
1257     if test -f ${with_dvdcss}/include/dvdcss/dvdcss.h
1258     then
1259       dnl  Use ${with_dvdcss}/include/dvdcss/dvdcss.h
1260       AC_MSG_RESULT(yes)
1261       AX_ADD_PLUGINS([dvd])
1262       AX_ADD_LDFLAGS([dvd dvdcss],[-L${with_dvdcss}/lib -ldvdcss])
1263       AX_ADD_CPPFLAGS([dvd],[-I${with_dvdcss}/include])
1264     else
1265       dnl  No libdvdcss could be found, sorry
1266       AC_MSG_RESULT(no)
1267       AC_MSG_ERROR([cannot find ${with_dvdcss}/include/dvdcss/dvdcss.h])
1268     fi
1269   ;;
1270   esac
1271 fi
1272
1273 dnl
1274 dnl dvdread module: check for libdvdread
1275 dnl
1276 AC_ARG_ENABLE(dvdread,
1277 [  --enable-dvdread        dvdread input module (default disabled)])
1278 if test "${enable_dvdread}" != "no"
1279 then
1280   AC_ARG_WITH(dvdread,
1281   [    --with-dvdread=PATH    libdvdread headers and libraries])
1282   AC_ARG_WITH(dvdread-tree,
1283   [    --with-dvdread-tree=PATH libdvdread tree for static linking])
1284   if test -z "${with_dvdread}"
1285   then
1286     if test -z "${with_dvdread_tree}"
1287     then
1288       AC_CHECK_HEADERS(dvdread/dvd_reader.h,
1289         [ AX_ADD_PLUGINS([dvdread])
1290           AX_ADD_LDFLAGS([dvdread],[-ldvdread ${LDFLAGS_dvdcss}])
1291         ],[
1292           if test -n "${enable_dvdread}"
1293           then
1294             AC_MSG_WARN([Please get libdvdread from http://www.dtek.chalmers.se/groups/dvd/downloads.shtml])
1295             AC_MSG_ERROR([cannot find libdvdread headers])
1296           fi
1297         ])
1298     else
1299       AC_MSG_CHECKING(for libdvdread.a in ${with_dvdread_tree})
1300       real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`"
1301       if test -z "${real_dvdread_tree}"
1302       then
1303         dnl  The given directory can't be found
1304         AC_MSG_RESULT(no)
1305         AC_MSG_ERROR([cannot cd to ${with_dvdread_tree}])
1306       fi
1307       if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a"
1308       then
1309         dnl  Use a custom libdvdread
1310         AC_MSG_RESULT(${real_dvdread_tree}/dvdread/.libs/libdvdread.a)
1311         AX_ADD_BUILTINS([dvdread])
1312         AX_ADD_LDFLAGS([dvdread],[-L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LDFLAGS_dvdcss}])
1313         AX_ADD_CPPFLAGS([dvdread],[-I${real_dvdread_tree}])
1314       else
1315         dnl  The given libdvdread wasn't built
1316         AC_MSG_RESULT(no)
1317         AC_MSG_ERROR([cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}])
1318       fi
1319     fi
1320   else
1321     AC_MSG_CHECKING(for dvdread headers in ${with_dvdread})
1322     if test -f ${with_dvdread}/include/dvdread/dvd_reader.h
1323     then
1324       dnl  Use ${with_dvdread}/include/dvdread/dvd_reader.h
1325       AC_MSG_RESULT(yes)
1326       AX_ADD_PLUGINS([dvdread])
1327       AX_ADD_LDFLAGS([dvdread],[-L${with_dvdread}/lib -ldvdread ${LDFLAGS_dvdcss}])
1328       AX_ADD_CPPFLAGS([dvdread],[-I${with_dvdread}/include])
1329     else
1330       dnl  No libdvdread could be found, sorry
1331       AC_MSG_RESULT(no)
1332       AC_MSG_ERROR([cannot find ${with_dvdread}/include/dvdread/dvd_reader.h])
1333     fi
1334   fi
1335 fi
1336
1337 dnl
1338 dnl dvdplay module: check for libdvdplay
1339 dnl
1340 AC_ARG_ENABLE(dvdplay,
1341 [  --enable-dvdplay        dvdplay input module (default enabled)])
1342 if test "${enable_dvdplay}" != "no"
1343 then
1344   AC_ARG_WITH(dvdplay,
1345   [    --with-dvdplay=PATH    libdvdplay headers and libraries])
1346   AC_ARG_WITH(dvdplay-tree,
1347   [    --with-dvdplay-tree=PATH libdvdplay tree for static linking])
1348   if test -z "${with_dvdplay}"
1349   then
1350     if test -z "${with_dvdplay_tree}"
1351     then
1352       AC_CHECK_HEADERS(dvdplay/dvdplay.h,[
1353           AX_ADD_PLUGINS([dvdplay])
1354           AX_ADD_LDFLAGS([dvdplay],[-ldvdplay ${LDFLAGS_dvdread} ${LDFLAGS_dvdcss}])
1355           AX_ADD_CPPFLAGS([dvdplay],[${CPPFLAGS_dvdread}])
1356         ],[
1357           if test -n "${enable_dvdplay}"
1358           then
1359             AC_MSG_WARN([Please get libdvdplay from http://www.videolan.org/.])
1360             AC_MSG_ERROR([cannot find libdvdplay headers])
1361           fi
1362         ])
1363     else
1364       AC_MSG_CHECKING(for libdvdplay.a in ${with_dvdplay_tree})
1365       real_dvdplay_tree="`cd ${with_dvdplay_tree} 2>/dev/null && pwd`"
1366       if test -z "${real_dvdplay_tree}"
1367       then
1368         dnl  The given directory can't be found
1369         AC_MSG_RESULT(no)
1370         AC_MSG_ERROR([cannot cd to ${with_dvdplay_tree}])
1371       fi
1372       if test -f "${real_dvdplay_tree}/src/.libs/libdvdplay.a"
1373       then
1374         dnl  Use a custom libdvdplay
1375         AC_MSG_RESULT(${real_dvdplay_tree}/src/.libs/libdvdplay.a)
1376         AX_ADD_BUILTINS([dvdplay])
1377         AX_ADD_LDFLAGS([dvdplay],[-L${real_dvdplay_tree}/src/.libs -ldvdplay ${LDFLAGS_dvdread} ${LDFLAGS_dvdcss}])
1378         AX_ADD_CPPFLAGS([dvdplay],[${CPPFLAGS_dvdread} -I${real_dvdplay_tree}/src])
1379       else
1380         dnl  The given libdvdplay wasn't built
1381         AC_MSG_RESULT(no)
1382         AC_MSG_ERROR([cannot find ${real_dvdplay_tree}/src/.libs/libdvdplay.a, make sure you compiled libdvdplay in ${with_dvdplay_tree}])
1383       fi
1384     fi
1385   else
1386     AC_MSG_CHECKING(for dvdplay headers in ${with_dvdplay})
1387     if test -f "${with_dvdplay}/include/dvdplay/dvdplay.h"
1388     then
1389       dnl  Use ${with_dvdplay}/include/dvdplay/dvdplay.h
1390       AC_MSG_RESULT(yes)
1391       AX_ADD_PLUGINS([dvdplay])
1392       AX_ADD_LDFLAGS([dvdplay],[-L${with_dvdplay}/lib -ldvdplay ${LDFLAGS_dvdread} ${LDFLAGS_dvdcss}])
1393       AX_ADD_CPPFLAGS([dvdplay],[${CPPFLAGS_dvdread} -I${with_dvdplay}/include])
1394     else
1395       dnl  No libdvdplay could be found, sorry
1396       AC_MSG_RESULT(no)
1397       AC_MSG_ERROR([cannot find ${with_dvdplay}/include/dvdplay/dvdplay.h])
1398     fi
1399   fi
1400 fi
1401
1402 dnl
1403 dnl  libdvdnav plugin
1404 dnl
1405 AC_ARG_ENABLE(dvdnav,
1406   [  --enable-dvdnav         dvdnav input module (default enabled)])
1407 if test "${enable_dvdnav}" != "no"
1408 then
1409   DVDNAV_PATH="${PATH}"
1410   AC_ARG_WITH(dvdnav-config-path,
1411     [    --with-dvdnav-config-path=PATH dvdnav-config path (default search in \$PATH)],
1412     [ if test "${with_dvdnav_config_path}" != "no"
1413       then
1414         DVDNAV_PATH="${with_dvdnav_config_path}:${PATH}"
1415       fi ])
1416   AC_PATH_PROG(DVDNAV_CONFIG, dvdnav-config, no, ${DVDNAV_PATH})
1417   if test "${DVDNAV_CONFIG}" != "no"
1418   then
1419     AX_ADD_PLUGINS([dvdnav])
1420     AX_ADD_CFLAGS([dvdnav],[`${DVDNAV_CONFIG} --cflags`])
1421     AX_ADD_LDFLAGS([dvdnav],[`${DVDNAV_CONFIG} --libs`])
1422   fi
1423 fi
1424
1425 dnl
1426 dnl  Windows DirectShow access module
1427 dnl
1428 AC_ARG_ENABLE(dshow,
1429   [  --enable-dshow          Win32 DirectShow support (default enabled on Win32)])
1430 if test "${enable_dshow}" != "no"
1431 then
1432   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
1433   then
1434       AC_CHECK_HEADERS(dshow.h,
1435       [ AX_ADD_PLUGINS([dshow])
1436         AX_ADD_CXXFLAGS([dshow],[])
1437         AX_ADD_LDFLAGS([dshow],[-lole32 -loleaut32]) ])
1438   fi
1439 fi
1440
1441 dnl
1442 dnl  libdvbpsi ts demux/mux
1443 dnl
1444 AC_ARG_ENABLE(dvbpsi,
1445 [  --enable-dvbpsi         dvbpsi ts mux and demux module (default enabled)])
1446 if test "${enable_dvbpsi}" != "no"
1447 then
1448   AC_ARG_WITH(dvbpsi,
1449   [    --with-dvbpsi=PATH    libdvbpsi headers and libraries])
1450   AC_ARG_WITH(dvbpsi,
1451   [    --with-dvbpsi-tree=PATH libdvbpsi tree for static linking])
1452   case "${with_dvbpsi}" in
1453   ""|yes)
1454     if test -z "${with_dvbpsi_tree}"
1455     then
1456       AC_CHECK_HEADERS(dvbpsi/dr.h,
1457         [ AX_ADD_PLUGINS([ts_dvbpsi mux_ts_dvbpsi ts2])
1458           AX_ADD_LDFLAGS([ts_dvbpsi mux_ts_dvbpsi ts2],[-ldvbpsi]) ],
1459         [  AC_MSG_WARN([cannot find libdvbpsi headers]) ],
1460         [#if defined( HAVE_STDINT_H )
1461 #   include <stdint.h>
1462 #elif defined( HAVE_INTTYPES_H )
1463 #   include <inttypes.h>
1464 #endif
1465 #include <dvbpsi/dvbpsi.h>
1466 #include <dvbpsi/descriptor.h>
1467 #include <dvbpsi/pat.h>
1468 #include <dvbpsi/pmt.h>])
1469     else
1470       AC_MSG_CHECKING(for libdvbpsi.a in ${with_dvbpsi_tree})
1471       real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
1472       if test -z "${real_dvbpsi_tree}"
1473       then
1474         dnl  The given directory can't be found
1475         AC_MSG_RESULT(no)
1476         AC_MSG_ERROR([cannot cd to ${with_dvbpsi_tree}])
1477       fi
1478       if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
1479       then
1480         dnl  Use a custom libdvbpsi
1481         AC_MSG_RESULT(${real_dvbpsi_tree}/src/.libs/libdvbpsi.a)
1482         AX_ADD_BUILTINS([ts_dvbpsi mux_ts_dvbpsi ts2])
1483         AX_ADD_CPPFLAGS([ts_dvbpsi mux_ts_dvbpsi ts2],[-I${real_dvbpsi_tree}/src])
1484         AX_ADD_LDFLAGS([ts_dvbpsi mux_ts_dvbpsi ts2],[-L${real_dvbpsi_tree}/src/.libs -ldvbpsi])
1485       else
1486         dnl  The given libdvbpsi wasn't built
1487         AC_MSG_RESULT(no)
1488         AC_MSG_ERROR([cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}])
1489       fi
1490     fi
1491   ;;
1492   no)
1493     dnl  Compile without dvbpsi
1494   ;;
1495   *)
1496     AC_MSG_CHECKING(for dvbpsi headers in ${with_dvbpsi})
1497     if test -z "${with_dvbpsi}"
1498     then
1499       LDFLAGS_test=""
1500       CPPFLAGS_test=""
1501     else
1502       LDFLAGS_test="-L${with_dvbpsi}/lib"
1503       CPPFLAGS_test="-I${with_dvbpsi}/include"
1504     fi
1505     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}"
1506     AC_CHECK_HEADERS([dvbpsi/dr.h],[
1507       AX_ADD_PLUGINS([ts_dvbpsi mux_ts_dvbpsi ts2])
1508       AX_ADD_CPPFLAGS([ts_dvbpsi mux_ts_dvbpsi ts2],[${CPPFLAGS_test}])
1509       AX_ADD_LDFLAGS([ts_dvbpsi mux_ts_dvbpsi ts2],[${LDFLAGS_test} -ldvbpsi])
1510
1511     ],[
1512       if test -n "${enable_dvbpsi}"
1513       then
1514         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])
1515       fi
1516     ])
1517     CPPFLAGS="${CPPFLAGS_save}"
1518   ;;
1519   esac
1520 fi
1521
1522 dnl
1523 dnl  Video4Linux plugin
1524 dnl
1525 AC_ARG_ENABLE(v4l,
1526   [  --enable-v4l            Video4Linux input support (default disabled)])
1527 if test "${enable_v4l}" = "yes"
1528 then
1529   AC_ARG_WITH(v4l,
1530     [    --with-v4l=PATH       path to a v4l-enabled kernel tree],[],[])
1531   if test "${with_v4l}" != "no" -a -n "${with_v4l}"
1532   then
1533     AX_ADD_CPPFLAGS([v4l],[-I${with_v4l}/include])
1534   fi
1535
1536   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l}"
1537   AC_CHECK_HEADERS(linux/videodev.h, [
1538     AX_ADD_PLUGINS([v4l])
1539   ],[])
1540   CPPFLAGS="${CPPFLAGS_save}"
1541 fi
1542
1543 dnl
1544 dnl  special access module for Hauppauge PVR cards
1545 dnl
1546 AC_ARG_ENABLE(pvr,
1547   [  --enable-pvr            PVR cards access module (default disabled)])
1548 if test "${enable_pvr}" = "yes"
1549 then
1550   AX_ADD_PLUGINS([pvr])
1551 fi
1552
1553 dnl
1554 dnl  VCDX and CDDAX modules
1555 dnl
1556 AC_ARG_ENABLE(libcdio,
1557   [  --enable-libcdio        CDDA support via libcdio (default enabled)])
1558
1559 AC_ARG_ENABLE(libcddb,
1560   [  --enable-libcddb        CDDB support for CDDAX (default enabled)])
1561
1562 AC_ARG_ENABLE(vcdx,
1563   [  --enable-vcdx           VCD support with Navigation (default enabled)])
1564
1565 AC_ARG_ENABLE(cdda,           
1566   [  --enable-cdda            CDDA plugin support (default enabled)])
1567
1568 if test "${enable_cddax}" != "no"
1569 then
1570   PKG_CHECK_MODULES(LIBCDIO, libcdio >= 0.65,
1571    [enable_cddax="no"
1572     AC_DEFINE(HAVE_CDDAX, [], [Define for the CD-DA plugin using libcdio])
1573     AX_ADD_LDFLAGS([cddax],[$LIBCDIO_LIBS])
1574     AX_ADD_CFLAGS([cddax],[$LIBCDIO_CFLAGS])
1575     AX_ADD_PLUGINS([cddax])], 
1576    [AC_MSG_WARN(libcdio library not found)
1577    HAVE_CDDAX=no])
1578
1579   if test x$enable_libcddb != no; then
1580     PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.4, [
1581       HAVE_LIBCDDB=yes 
1582       AC_DEFINE(HAVE_LIBCDDB, [], [Define this if you have libcddb installed])
1583       AX_ADD_LDFLAGS([cddax],[$LIBCDDB_LIBS])
1584       AX_ADD_CFLAGS([cddax],[$LIBCDDB_CFLAGS])
1585       ],
1586       [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled) 
1587       HAVE_LIBCDDB=no])
1588   fi
1589
1590   if test "${enable_vcdx}" != "no"
1591   then
1592     PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.21,
1593      [enable_vcd="no"
1594       AC_DEFINE(HAVE_VCDX, [], 
1595       [Define for the VCD plugin using libcdio/libvcdinfo])
1596       AX_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
1597       AX_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
1598       AX_ADD_PLUGINS([vcdx])], 
1599      [AC_MSG_WARN(vcdinfo library not found)
1600      HAVE_VCDX=no])
1601   fi
1602 fi
1603
1604 dnl
1605 dnl  VCD module
1606 dnl
1607 AC_ARG_ENABLE(vcd,
1608   [  --enable-vcd            VCD support for Linux, FreeBSD, MacOS X and Win32 (default enabled)])
1609
1610 if test "${enable_vcd}" != "no"
1611 then
1612   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1613   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1614     AC_MSG_RESULT(yes)
1615     AX_ADD_PLUGINS([vcd cdda])
1616   ],[
1617     AC_MSG_RESULT(no)
1618   ])
1619
1620   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1621   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1622     AC_MSG_RESULT(yes)
1623     AX_ADD_PLUGINS([vcd cdda])
1624     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1625   ],[
1626     AC_MSG_RESULT(no)
1627   ])
1628
1629   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1630   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1631     AC_MSG_RESULT(yes)
1632     AX_ADD_PLUGINS([vcd cdda])
1633     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1634   ],[
1635     AC_MSG_RESULT(no)
1636   ])
1637
1638   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32"
1639   then
1640     AX_ADD_PLUGINS([vcd cdda])
1641   fi
1642
1643   if test "${SYS}" = "darwin"
1644   then
1645     AX_ADD_PLUGINS([vcd cdda])
1646     AX_ADD_LDFLAGS([vcd vcdx cdda],[-framework IOKit -framework CoreFoundation])
1647   fi
1648 fi
1649
1650 dnl
1651 dnl  Satellite input module
1652 dnl
1653 AC_ARG_ENABLE(satellite,
1654   [  --enable-satellite      satellite card support (default disabled)],
1655   [ if test "${enable_satellite}" = "yes"
1656     then
1657       AC_DEFINE(HAVE_SATELLITE, [], 
1658       [Define for the VCD plugin using libcdio/libvcdinfo])
1659       AX_ADD_PLUGINS([satellite])
1660     fi])
1661
1662 dnl
1663 dnl  DVB-S/DVB-T/DVB-C satellite/teresterial/cable input using v4l2
1664 dnl
1665 AC_ARG_ENABLE(dvb,
1666   [  --enable-dvb            DVB-S/T/C card support (default disabled)])
1667
1668 if test "${enable_dvb}" = "yes"
1669 then
1670   AC_ARG_WITH(dvb,
1671   [    --with-dvb=PATH       path to a dvb- and v4l2-enabled kernel tree],[],[])
1672   if test "${with_dvb}" != "no" -a -n "${with_dvb}"
1673   then
1674     AX_ADD_CFLAGS([dvb],[-I${with_dvb}/include])
1675   fi
1676   CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include"
1677   AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [
1678     AX_ADD_PLUGINS([dvb])
1679   ],[])
1680   CPPFLAGS="${CPPFLAGS_save}"
1681 fi
1682
1683 dnl
1684 dnl  ipv6 plugin - not for QNX yet
1685 dnl
1686 if test "${SYS}" != "nto" && test "${SYS}" != "mingw32"
1687 then
1688   have_ipv6=false
1689   AC_CHECK_FUNCS(inet_pton,[have_ipv6=:],[
1690     AC_CHECK_LIB(resolv,inet_pton,
1691       [have_ipv6=:
1692        AX_ADD_LDFLAGS([ipv6],[-lresolv])])
1693   ])
1694   AC_MSG_CHECKING(for sockaddr_in6 in netinet/in.h)
1695   AC_EGREP_HEADER(sockaddr_in6,netinet/in.h,
1696     [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no) have_ipv6=false])
1697   if ${have_ipv6}; then
1698     AX_ADD_PLUGINS([ipv6])
1699   fi
1700 fi
1701 if test "${SYS}" = "mingw32"
1702 then
1703   AC_MSG_CHECKING(for getaddrinfo in ws2tcpip.h)
1704   AC_EGREP_HEADER(addrinfo,ws2tcpip.h,[AC_MSG_RESULT(yes)
1705     AX_ADD_PLUGINS([ipv6])],[AC_MSG_RESULT(no)])
1706 fi
1707
1708 dnl
1709 dnl  ogg demux plugin
1710 dnl
1711 AC_ARG_ENABLE(ogg,
1712   [  --enable-ogg            Ogg demux support (default enabled)])
1713 if test "${enable_ogg}" != "no"
1714 then
1715   AC_CHECK_HEADERS(ogg/ogg.h, [
1716     AC_CHECK_LIB( ogg, oggpack_read, [
1717       AX_ADD_PLUGINS([ogg mux_ogg])
1718       AX_ADD_LDFLAGS([ogg mux_ogg],[-logg])])
1719    ],[])
1720 fi
1721
1722 dnl
1723 dnl  matroska demux plugin
1724 dnl
1725 AC_ARG_ENABLE(mkv,
1726   [  --enable-mkv            Matroska demux support (default enabled)])
1727 if test "${enable_mkv}" != "no"; then
1728   AC_LANG_PUSH(C++)
1729   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
1730     AC_CHECK_HEADERS(matroska/KaxVersion.h, [
1731       AC_CHECK_HEADERS(matroska/KaxAttachments.h)
1732       AX_ADD_CXXFLAGS([mkv],[])
1733       AC_CHECK_LIB(ebml_pic, main, [
1734         # We have ebml_pic, that's good, we can build an mkv.so plugin !
1735         AX_ADD_PLUGINS([mkv])
1736         AX_ADD_LDFLAGS([mkv],[-lmatroska_pic -lebml_pic])
1737       ], [
1738         AC_CHECK_LIB(ebml, main, [
1739           # We only have libebml, make mkv.a a builtin
1740           AX_ADD_BUILTINS([mkv])
1741           AX_ADD_LDFLAGS([mkv],[-lmatroska -lebml])
1742         ])
1743       ])
1744     ])
1745   ])
1746   AC_LANG_POP(C++)
1747 fi
1748
1749 dnl
1750 dnl  modplug demux plugin
1751 dnl
1752 AC_ARG_ENABLE(mod,
1753   [  --enable-mod            Mod demux support (default enabled)])
1754 if test "${enable_mod}" != "no"
1755 then
1756   AC_CHECK_HEADERS(libmodplug/modplug.h, [
1757     AX_ADD_PLUGINS([mod])
1758     AX_ADD_CXXFLAGS([mod],[])
1759     AX_ADD_LDFLAGS([mod],[-lmodplug])])
1760 fi
1761
1762 dnl
1763 dnl  Codec plugins
1764 dnl
1765
1766 AC_ARG_WITH(,[Codec plugins:])
1767
1768 dnl
1769 dnl  mad plugin
1770 dnl
1771 AC_ARG_ENABLE(mad,
1772   [  --enable-mad            libmad module (default enabled)])
1773 if test "${enable_mad}" != "no"
1774 then
1775   AC_ARG_WITH(mad,
1776     [    --with-mad=PATH       path to libmad],[],[])
1777   if test "${with_mad}" != "no" -a -n "${with_mad}"
1778   then
1779     AX_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
1780     AX_ADD_LDFLAGS([mpgatofixed32],[-L${with_mad}/lib])
1781   fi
1782
1783   AC_ARG_WITH(mad-tree,
1784     [    --with-mad-tree=PATH  mad tree for static linking],[],[])
1785   if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
1786   then
1787     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
1788     if test -z "${real_mad_tree}"
1789     then
1790       dnl  The given directory can't be found
1791       AC_MSG_RESULT(no)
1792       AC_MSG_ERROR([${with_mad_tree} directory doesn't exist])
1793     fi
1794     dnl  Use a custom libmad
1795     AC_MSG_CHECKING(for mad.h in ${real_mad_tree})
1796     if test -f ${real_mad_tree}/mad.h
1797     then
1798       AC_MSG_RESULT(yes)
1799       AX_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}])
1800       AX_ADD_LDFLAGS([mpgatofixed32],[-L${real_mad_tree}/.libs])
1801       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
1802       AC_CHECK_LIB(mad, mad_bit_init, [
1803         AX_ADD_BUILTINS([mpgatofixed32])
1804         AX_ADD_LDFLAGS([mpgatofixed32],[-lmad])
1805         ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ])
1806       ],[])
1807       LDFLAGS="${LDFLAGS_save}"
1808     else
1809       AC_MSG_RESULT(no)
1810       AC_MSG_ERROR([the specified tree doesn't have mad.h])
1811     fi
1812   else
1813     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}"
1814     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
1815     AC_CHECK_HEADERS(mad.h, ,
1816       [ 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.]) ])
1817     AC_CHECK_LIB(mad, mad_bit_init, [
1818       AX_ADD_PLUGINS([mpgatofixed32])
1819       AX_ADD_LDFLAGS([mpgatofixed32],[-lmad])],
1820       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
1821     CPPFLAGS="${CPPFLAGS_save}"
1822     LDFLAGS="${LDFLAGS_save}"
1823   fi
1824 fi
1825
1826 dnl
1827 dnl   libid3tag support
1828 dnl
1829 AC_CHECK_HEADERS(id3tag.h, [
1830   AC_CHECK_HEADERS(zlib.h, [
1831     AX_ADD_LDFLAGS([id3tag],[-lid3tag -lz])
1832     AX_ADD_PLUGINS([id3tag])]) ])
1833
1834 dnl
1835 dnl  ffmpeg decoder/demuxer plugin
1836 dnl
1837 AC_ARG_ENABLE(ffmpeg,
1838 [  --enable-ffmpeg         ffmpeg codec (default enabled)])
1839 if test "${enable_ffmpeg}" != "no"
1840 then
1841   AC_ARG_WITH(ffmpeg-mp3lame,
1842     [    --with-ffmpeg-mp3lame   if ffmpeg has been compiled with mp3lame support],
1843     [
1844       dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1845       dnl       linker would miserably barf on multiple definitions.
1846       AX_ADD_LDFLAGS([stream_out_transcode],[])
1847       AX_ADD_LDFLAGS([ffmpeg],[-lmp3lame]) ])
1848
1849   AC_ARG_WITH(ffmpeg-faac,
1850     [    --with-ffmpeg-faac      if ffmpeg has been compiled with faac support],
1851     [
1852       dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1853       dnl       linker would miserably barf on multiple definitions.
1854       AX_ADD_LDFLAGS([stream_out_transcode],[])
1855       AX_ADD_LDFLAGS([ffmpeg],[-lfaac]) ])
1856
1857   AC_ARG_WITH(ffmpeg-tree,
1858     [    --with-ffmpeg-tree=PATH ffmpeg tree for static linking])
1859
1860   dnl
1861   dnl test for !(--with-ffmpeg-tree)
1862   dnl
1863   if test "${with_ffmpeg_tree}" = "no" -o -z "${with_ffmpeg_tree}"; then
1864     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}"
1865     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
1866     AC_CHECK_HEADERS(ffmpeg/avcodec.h, [], [AC_MSG_ERROR([Missing header file ffmpeg/avcodec.h.])] )
1867     AC_CHECK_HEADERS(postproc/postprocess.h, [], [AC_MSG_ERROR([Missing header file postproc/postprocess.h.])] )
1868     AC_CHECK_LIB(avcodec, avcodec_init, [
1869       AX_ADD_BUILTINS([ffmpeg stream_out_transcode])
1870       AX_ADD_LDFLAGS([ffmpeg],[-lavcodec])
1871       dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1872       dnl       linker would miserably barf on multiple definitions.
1873       AX_ADD_LDFLAGS([stream_out_transcode],[]) ],
1874        [ 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.]) ])
1875     AC_CHECK_LIB(avformat, av_open_input_stream, [
1876       AC_DEFINE(HAVE_LIBAVFORMAT, 1,
1877       [Define if you have ffmpeg's libavformat.])
1878       AX_ADD_LDFLAGS([ffmpeg],[-lavformat -lz]) ])
1879     LDFLAGS="${LDFLAGS_save}"
1880     CPPFLAGS="${CPPFLAGS_save}"
1881   fi
1882
1883   dnl
1884   dnl test for --with-ffmpeg-tree
1885   dnl
1886   if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
1887     AC_MSG_CHECKING(for libavcodec.a in ${with_ffmpeg_tree})
1888     real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
1889     if test -z "${real_ffmpeg_tree}"; then
1890       dnl  The given directory can't be found
1891       AC_MSG_RESULT(no)
1892       AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
1893     fi
1894     if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
1895       dnl  The given libavcodec wasn't built
1896       AC_MSG_RESULT(no)
1897       AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}])
1898     fi
1899     if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
1900       dnl  The given libavcodec wasn't built with --enable-pp
1901       AC_MSG_RESULT(no)
1902       AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
1903     fi
1904     dnl  Use a custom libffmpeg
1905     AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodec.a)
1906     AX_ADD_BUILTINS([ffmpeg stream_out_transcode])
1907     AX_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavcodec -lavcodec])
1908     AX_ADD_CPPFLAGS([ffmpeg],[-I${real_ffmpeg_tree}/libavcodec -I${real_ffmpeg_tree}/libavformat])
1909
1910     if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
1911       AC_DEFINE(HAVE_LIBAVFORMAT, 1, [Define if you have ffmpeg's libavformat.])
1912       AX_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavformat -lavformat -lz])
1913       AX_ADD_CPPFLAGS([ffmpeg],[-I${real_ffmpeg_tree}/libavformat])
1914     fi
1915
1916     dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1917     dnl       linker would miserably barf on multiple definitions.
1918     AX_ADD_LDFLAGS([stream_out_transcode],[-L${real_ffmpeg_tree}/libavcodec])
1919     AX_ADD_CPPFLAGS([stream_out_transcode],[-I${real_ffmpeg_tree}/libavcodec -I${real_ffmpeg_tree}/libavformat])
1920   fi
1921 fi
1922
1923 dnl
1924 dnl  faad decoder plugin
1925 dnl
1926 AC_ARG_ENABLE(faad,
1927 [  --enable-faad           faad codec (default disabled)])
1928 if test "${enable_faad}" = "yes"
1929 then
1930   AC_ARG_WITH(faad-tree,
1931   [    --with-faad-tree=PATH faad tree for static linking])
1932   if test -n "${with_faad_tree}"
1933   then
1934     AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
1935     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
1936     if test -z "${real_faad_tree}"
1937     then
1938       dnl  The given directory can't be found
1939       AC_MSG_RESULT(no)
1940       AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
1941     fi
1942     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
1943     then
1944       dnl  Use a custom faad
1945       AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
1946       AX_ADD_BUILTINS([faad])
1947       AX_ADD_LDFLAGS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
1948       AX_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
1949     else
1950       dnl  The given libfaad wasn't built
1951       AC_MSG_RESULT(no)
1952       AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
1953     fi
1954   else
1955     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
1956     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_faad}"
1957     AC_CHECK_HEADERS(faad.h, ,
1958       [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ])
1959     AC_CHECK_LIB(faad, faacDecOpen, [
1960       AX_ADD_PLUGINS([faad])
1961       AX_ADD_LDFLAGS([faad],[-lfaad]) ],
1962       [ AC_MSG_ERROR([Cannot find libfaad library...]) ])
1963     LDFLAGS="${LDFLAGS_save}"
1964     CPPFLAGS="${CPPFLAGS_save}"
1965   fi
1966 fi
1967
1968
1969 dnl dnl
1970 dnl dnl  xvid decoder plugin
1971 dnl dnl
1972 dnl AC_ARG_ENABLE(xvid,
1973 dnl [  --enable-xvid           xvid codec (default disabled)])
1974 dnl if test "${enable_xvid}" = "yes"
1975 dnl then
1976 dnl   AC_ARG_WITH(xvid,
1977 dnl     [    --with-xvid=PATH      path to xvid installation],[],[])
1978 dnl   if test "${with_xvid}" != "no" -a -n "${with_xvid}"
1979 dnl   then
1980 dnl     AX_ADD_CPPFLAGS([xvid],[-I${with_xvid}/include])
1981 dnl     AX_ADD_LDFLAGS([xvid],[-L${with_xvid}/lib])
1982 dnl   fi
1983 dnl 
1984 dnl   AC_ARG_WITH(xvid-tree,
1985 dnl   [    --with-xvid-tree=PATH xvid tree for static linking])
1986 dnl   if test -n "${with_xvid_tree}"
1987 dnl   then
1988 dnl     AC_MSG_CHECKING(for libxvidcore.a in ${with_xvid_tree})
1989 dnl     real_xvid_tree="`cd ${with_xvid_tree} 2>/dev/null && pwd`"
1990 dnl     if test -z "${real_xvid_tree}"
1991 dnl     then
1992 dnl       dnl  The given directory can't be found
1993 dnl       AC_MSG_RESULT(no)
1994 dnl       AC_MSG_ERROR([cannot cd to ${with_xvid_tree}])
1995 dnl     fi
1996 dnl     if test -f "${real_xvid_tree}/build/generic/libxvidcore.a"
1997 dnl     then
1998 dnl       dnl  Use a custom xvid
1999 dnl       AC_MSG_RESULT(${real_xvid_tree}/build/generic/libxvidcore.a)
2000 dnl       AX_ADD_BUILTINS([xvid])
2001 dnl       AX_ADD_LDFLAGS([xvid],[-L${real_xvid_tree}/build/generic -lxvidcore])
2002 dnl       AX_ADD_CPPFLAGS([xvid],[-I${real_xvid_tree}/src])
2003 dnl     else
2004 dnl       dnl  The given libxvidcore wasn't built
2005 dnl       AC_MSG_RESULT(no)
2006 dnl       AC_MSG_ERROR([cannot find ${real_xvid_tree}/build/generic/libxvidcore.a, make sure you compiled libxvidcore in ${with_xvid_tree}])
2007 dnl     fi
2008 dnl   else
2009 dnl     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_xvid}"
2010 dnl     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xvid}"
2011 dnl     AC_CHECK_HEADERS(xvid.h, ,
2012 dnl       [ AC_MSG_ERROR([Cannot find development headers for libxvidcore...]) ])
2013 dnl     AC_CHECK_LIB(xvidcore, xvid_init, [
2014 dnl       AX_ADD_PLUGINS([xvid])
2015 dnl       AX_ADD_LDFLAGS([xvid],[-lxvidcore]) ],
2016 dnl       [ AC_MSG_ERROR([Cannot find libxvidcore library...]) ])
2017 dnl     LDFLAGS="${LDFLAGS_save}"
2018 dnl     CPPFLAGS="${CPPFLAGS_save}"
2019 dnl   fi
2020 dnl fi
2021
2022 dnl
2023 dnl  QuickTime plugin
2024 dnl
2025 AC_ARG_ENABLE(quicktime,
2026   [  --enable-quicktime      QuickTime module (default enabled on MacOS X)])
2027 if test "${enable_quicktime}" != "no" &&
2028   (test "${SYS}" = "darwin" || test "${enable_quicktime}" = "yes")
2029 then
2030   if test "${SYS}" = "mingw32"; then
2031     AX_ADD_BUILTINS([quicktime])
2032   else
2033   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2034     [ AX_ADD_BUILTINS([quicktime])
2035       AX_ADD_LDFLAGS([quicktime],[-framework QuickTime -framework Carbon])
2036     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2037   fi
2038 fi
2039
2040 dnl
2041 dnl MP4 module
2042 dnl
2043 AC_CHECK_HEADERS(zlib.h, [
2044   AX_ADD_LDFLAGS([mp4 skins skins2 sap],[-lz])
2045 ] )
2046
2047 AC_CHECK_HEADERS(sysfs/libsysfs.h, [
2048   AX_ADD_LDFLAGS([mp4],[-lsysfs])
2049 ] )
2050
2051 dnl
2052 dnl skins module
2053 dnl
2054 AC_CHECK_HEADERS(libtar.h, [
2055   AX_ADD_LDFLAGS([skins skins2],[-ltar])
2056 ] )
2057
2058
2059
2060 dnl
2061 dnl A52/AC3 decoder plugin
2062 dnl
2063 AC_ARG_ENABLE(a52,
2064   [  --enable-a52            A/52 support with liba52 (default enabled)])
2065 if test "${enable_a52}" != "no"
2066 then
2067   AC_ARG_WITH(a52,
2068     [    --with-a52=PATH       a52 headers and libraries])
2069   AC_ARG_WITH(a52-tree,
2070     [    --with-a52-tree=PATH  a52dec tree for static linking ],[],[])
2071   if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
2072   then
2073     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
2074     if test -z "${real_a52_tree}"
2075     then
2076       dnl  The given directory can't be found
2077       AC_MSG_RESULT(no)
2078       AC_MSG_ERROR([${with_a52_tree} directory doesn't exist])
2079     fi
2080     dnl  Use a custom a52dec
2081     AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
2082     if test -f ${real_a52_tree}/include/a52.h
2083     then
2084       AC_MSG_RESULT(yes)
2085       AX_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
2086       AX_ADD_LDFLAGS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
2087       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_a52tofloat32}"
2088       AC_CHECK_LIB(a52, a52_free, [
2089         AX_ADD_BUILTINS([a52tofloat32])
2090         AX_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
2091         AX_ADD_LDFLAGS([a52tofloat32],[-la52])
2092         ],[
2093         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
2094         then
2095           AC_MSG_ERROR([make sure you have at least a52dec-0.7.3])
2096         else
2097           AC_MSG_ERROR([the specified tree hasn't been compiled])
2098         fi
2099       ])
2100       LDFLAGS="${LDFLAGS_save}"
2101     else
2102       AC_MSG_RESULT(no)
2103       AC_MSG_ERROR([the specified tree doesn't have a52.h])
2104     fi
2105   else
2106     if test -z "${with_a52}"
2107     then
2108       LDFLAGS_test=""
2109       CPPFLAGS_test=""
2110     else
2111       LDFLAGS_test="-L${with_a52}/lib"
2112       CPPFLAGS_test="-I${with_a52}/include"
2113     fi
2114     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2115     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LDFLAGS_a52tofloat32}"
2116     AC_CHECK_HEADERS(a52dec/a52.h, [
2117       AC_CHECK_LIB(a52, a52_free, [
2118         AX_ADD_PLUGINS([a52tofloat32])
2119         AX_ADD_LDFLAGS([a52tofloat32],[${LDFLAGS_test} -la52])
2120         AX_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2121       ],[
2122         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.])
2123       ])
2124     ])
2125     CPPFLAGS="${CPPFLAGS_save}"
2126     LDFLAGS="${LDFLAGS_save}"
2127   fi
2128 fi
2129
2130 dnl
2131 dnl DTS Coherent Acoustics decoder plugin
2132 dnl
2133 AC_ARG_ENABLE(dts,
2134   [  --enable-dts            DTS Coherent Acoustics support with libdts (default enabled)])
2135 if test "${enable_dts}" != "no"; then
2136   AC_ARG_WITH(dts-tree,
2137     [    --with-dts-tree=PATH  libdts tree for static linking ],[],[])
2138   if test "${with_dts_tree}" != "no" -a -n "${with_dts_tree}"
2139   then
2140     real_dts_tree="`cd ${with_dts_tree} 2>/dev/null && pwd`"
2141     if test -z "${real_dts_tree}"
2142     then
2143       dnl  The given directory can't be found
2144       AC_MSG_RESULT(no)
2145       AC_MSG_ERROR([${with_dts_tree} directory doesn't exist])
2146     fi
2147     dnl  Use a custom libdts
2148     AC_MSG_CHECKING(for dts.h in ${real_dts_tree}/include)
2149     if test -f ${real_dts_tree}/include/dts.h
2150     then
2151       AC_MSG_RESULT(yes)
2152       AX_ADD_CPPFLAGS([dtstofloat32],[-I${real_dts_tree}/include])
2153       AX_ADD_LDFLAGS([dtstofloat32],[-L${real_dts_tree}/libdts])
2154       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
2155       AC_CHECK_LIB(dts, dts_free, [
2156         AX_ADD_BUILTINS([dtstofloat32])
2157         AX_ADD_LDFLAGS([dtstofloat32],[-ldts])
2158         ],[
2159         if test -f ${real_dts_tree}/libdts/libdts.a
2160         then
2161           AC_MSG_ERROR([make sure you have at least libdts-0.0.2])
2162         else
2163           AC_MSG_ERROR([the specified tree hasn't been compiled])
2164         fi
2165       ])
2166       LDFLAGS="${LDFLAGS_save}"
2167     else
2168       AC_MSG_RESULT(no)
2169       AC_MSG_ERROR([the specified tree doesn't have dts.h])
2170     fi
2171   else
2172     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
2173     AC_CHECK_HEADERS(dts.h, [
2174       AC_CHECK_LIB(dts, dts_free, [
2175         AX_ADD_PLUGINS([dtstofloat32])
2176         AX_ADD_LDFLAGS([dtstofloat32],[-ldts])
2177       ],[
2178         if test "${enable_dts}" = "yes"; then
2179           AC_MSG_ERROR([Could not find libdts on your system: you may get it from http://www.videolan.org/dtsdec.html])
2180         fi
2181       ])
2182     ])
2183     LDFLAGS="${LDFLAGS_save}"
2184   fi
2185 fi
2186
2187 dnl dnl
2188 dnl dnl  DV plugin
2189 dnl dnl
2190 dnl AC_ARG_ENABLE(dv,
2191 dnl   [  --enable-dv             DV decoder support (deprecated in favor of ffmpeg) (default disabled)])
2192 dnl if test "${enable_dv}" = "yes"
2193 dnl then
2194 dnl   AC_CHECK_HEADERS(libdv/dv.h, [
2195 dnl     AX_ADD_PLUGINS([dv])
2196 dnl     AX_ADD_LDFLAGS([dv],[-ldv])
2197 dnl    ],[])
2198 dnl fi
2199
2200 dnl
2201 dnl  Flac plugin
2202 dnl
2203 AC_ARG_ENABLE(flac,
2204   [  --enable-flac           flac decoder support (default disabled)])
2205 if test "${enable_flac}" = "yes"
2206 then
2207   AC_CHECK_HEADERS(FLAC/stream_decoder.h, [
2208     AX_ADD_PLUGINS([flac flacdec])
2209     AX_ADD_LDFLAGS([flacdec],[-lFLAC])
2210    ],[])
2211 fi
2212
2213 dnl
2214 dnl  Libmpeg2 plugin
2215 dnl
2216 AC_ARG_ENABLE(libmpeg2,
2217   [  --enable-libmpeg2       libmpeg2 decoder support (default enabled)])
2218 if test "${enable_libmpeg2}" != "no"
2219 then
2220   AC_ARG_WITH(libmpeg2-tree,
2221   [    --with-libmpeg2-tree=PATH libmpeg2 tree for static linking])
2222   if test -n "${with_libmpeg2_tree}"
2223   then
2224     AC_MSG_CHECKING(for libmpeg2.a in ${with_libmpeg2_tree})
2225     real_libmpeg2_tree="`cd ${with_libmpeg2_tree} 2>/dev/null && pwd`"
2226     if test -z "${real_libmpeg2_tree}"
2227     then
2228       dnl  The given directory can't be found
2229       AC_MSG_RESULT(no)
2230       AC_MSG_ERROR([cannot cd to ${with_libmpeg2_tree}])
2231     fi
2232     if test -f "${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a"
2233     then
2234       dnl  Use a custom libmpeg2
2235       AC_MSG_RESULT(${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a)
2236       AX_ADD_PLUGINS([libmpeg2])
2237       AX_ADD_LDFLAGS([libmpeg2],[-L${real_libmpeg2_tree}/libmpeg2/.libs -lmpeg2])
2238       AX_ADD_CFLAGS([libmpeg2],[-I${real_libmpeg2_tree}/include])
2239       eval "`cd ${real_libmpeg2_tree}/include && ln -sf . mpeg2dec 2>/dev/null`"
2240     else
2241       dnl  The given libmpeg2 wasn't built
2242       AC_MSG_RESULT(no)
2243       AC_MSG_ERROR([cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}])
2244     fi
2245   else
2246     AC_CHECK_HEADERS(mpeg2dec/mpeg2.h, [
2247       AC_MSG_CHECKING(for libmpeg2 version >= 0.3.2)
2248       AC_EGREP_CPP(yes,
2249         [#include <mpeg2dec/mpeg2.h>
2250          #ifdef MPEG2_RELEASE
2251          #if MPEG2_RELEASE >= MPEG2_VERSION(0,3,2)
2252          yes
2253          #endif
2254          #endif],
2255         [AC_MSG_RESULT([yes])
2256           AX_ADD_PLUGINS([libmpeg2])
2257           AX_ADD_LDFLAGS([libmpeg2],[-lmpeg2])],
2258         [AC_MSG_RESULT([no])
2259           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.])])],
2260
2261       [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.])]
2262     )
2263   fi
2264 fi
2265
2266 dnl
2267 dnl  Vorbis plugin
2268 dnl
2269 AC_ARG_ENABLE(vorbis,
2270   [  --enable-vorbis         Vorbis decoder support (default enabled)])
2271 if test "${enable_vorbis}" != "no"
2272 then
2273   AC_CHECK_HEADERS(vorbis/codec.h, [
2274     AX_ADD_PLUGINS([vorbis])
2275     AX_ADD_LDFLAGS([vorbis],[-lvorbis -logg]) ],[])
2276
2277   AC_CHECK_HEADERS(vorbis/vorbisenc.h, [
2278     AX_ADD_LDFLAGS([vorbis],[-lvorbisenc]) ],[])
2279 fi
2280
2281 dnl
2282 dnl  Tremor plugin
2283 dnl
2284 AC_ARG_ENABLE(tremor,
2285   [  --enable-tremor         Tremor decoder support (default disabled)])
2286 if test "${enable_tremor}" = "yes"
2287 then
2288   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2289     AX_ADD_PLUGINS([tremor])
2290     AX_ADD_LDFLAGS([tremor],[-lvorbisidec -logg])
2291    ],[])
2292 fi
2293
2294 dnl
2295 dnl  Speex plugin
2296 dnl
2297 AC_ARG_ENABLE(speex,
2298   [  --enable-speex          Speex decoder support (default enabled)])
2299 if test "${enable_speex}" != "no"
2300 then
2301   AC_CHECK_HEADERS(speex.h, [
2302     AX_ADD_PLUGINS([speex])
2303     AX_ADD_LDFLAGS([speex],[-lspeex]) ],[])
2304 fi
2305
2306 dnl
2307 dnl  tarkin decoder plugin
2308 dnl
2309 AC_ARG_ENABLE(tarkin,
2310 [  --enable-tarkin         experimental tarkin codec (default disabled)])
2311 if test "${enable_tarkin}" = "yes"
2312 then
2313   AC_ARG_WITH(tarkin-tree,
2314   [    --with-tarkin-tree=PATH tarkin tree for static linking])
2315   if test -n "${with_tarkin_tree}"
2316   then
2317     AC_MSG_CHECKING(for tarkin.o in ${with_tarkin_tree})
2318     real_tarkin_tree="`cd ${with_tarkin_tree} 2>/dev/null && pwd`"
2319     if test -f "${real_tarkin_tree}/tarkin.o"
2320     then
2321       AX_ADD_BUILTINS([tarkin])
2322       AX_ADD_CPPFLAGS([tarkin],[-I${real_tarkin_tree}])
2323       AX_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])
2324       AC_MSG_RESULT(yes)
2325     else
2326       dnl  The given tarkin tree wasn't built
2327       AC_MSG_RESULT(no)
2328       AC_MSG_ERROR([cannot find ${real_tarkin_tree}/tarkin.o,
2329                     make sure you compiled tarkin in ${with_tarkin_tree}])
2330     fi
2331   fi
2332 fi
2333
2334 dnl
2335 dnl  theora decoder plugin
2336 dnl
2337 AC_ARG_ENABLE(theora,
2338 [  --enable-theora         experimental theora codec (default disabled)])
2339 if test "${enable_theora}" = "yes"
2340 then
2341   AC_CHECK_HEADERS(theora/theora.h, [
2342     AC_CHECK_LIB(theora, theora_granule_time, [
2343       if test "${SYS}" = "mingw32"; then
2344         AX_ADD_PLUGINS([theora])
2345       else
2346         AX_ADD_BUILTINS([theora])
2347       fi
2348       theora_libs="-ltheora -logg"
2349       AX_ADD_LDFLAGS([theora],[${theora_libs}]) ],[
2350       AC_MSG_ERROR([libtheora doesn't appear to be installed on you system.
2351 You also need to check that you have a libogg posterior to the 1.0 release.])],
2352       [-logg])
2353   ])
2354 fi
2355
2356 dnl
2357 dnl   subsdec support
2358 dnl
2359 AX_ADD_LDFLAGS([subsdec],[${LIBICONV}])
2360 AX_ADD_CPPFLAGS([subsdec],[${INCICONV}])
2361 AX_ADD_PLUGINS([subsdec])
2362
2363 dnl
2364 dnl  CMML plugin
2365 dnl
2366 AC_ARG_ENABLE(cmml,
2367   [  --enable-cmml           CMML support (default enabled)])
2368 if test "${enable_cmml}" != "no"
2369 then
2370   AX_ADD_PLUGINS([cmml])
2371 fi
2372
2373
2374 dnl
2375 dnl  Video Filters
2376 dnl
2377
2378 dnl
2379 dnl   png
2380 dnl
2381 AC_CHECK_HEADERS(png.h, [
2382     AX_ADD_LDFLAGS([logo],[-lpng -lz])
2383     AX_ADD_PLUGINS([logo])
2384     AX_ADD_LDFLAGS([svcdsub],[-lpng -lz])
2385     AX_ADD_LDFLAGS([cvdsub],[-lpng -lz])
2386     AC_DEFINE(HAVE_LIBPNG, [], [Define if you have the PNG library: libpng])])
2387
2388 dnl
2389 dnl  Video plugins
2390 dnl
2391
2392 AC_ARG_WITH(,[Video plugins:])
2393
2394 dnl Check for DPMS
2395 if test "${SYS}" != "mingw32"
2396 then
2397   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2398   AC_CHECK_HEADERS(X11/extensions/dpms.h, [
2399     AC_MSG_CHECKING(for DPMSInfo in X11/extensions/dpms.h)
2400     AC_EGREP_HEADER(DPMSInfo,X11/extensions/dpms.h,[
2401       AC_MSG_RESULT(yes)
2402       AC_DEFINE(DPMSINFO_IN_DPMS_H, 1,
2403                 Define if <X11/extensions/dpms.h> defines DPMSInfo.)
2404     ],[
2405       AC_MSG_RESULT(no)
2406     ])
2407   ],,[
2408     #include <X11/Xlib.h>
2409   ])
2410   CPPFLAGS="${CPPFLAGS_save}"
2411 fi
2412
2413 dnl
2414 dnl  X11 module
2415 dnl  (enabled by default except on win32)
2416 dnl
2417 AC_ARG_ENABLE(x11,
2418   [  --enable-x11            X11 support (default enabled)])
2419 if test "${enable_x11}" != "no" &&
2420   (test "${SYS}" != "mingw32" || test "${enable_x11}" = "yes"); then
2421   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2422   AC_CHECK_HEADERS(X11/Xlib.h, [
2423     AX_ADD_PLUGINS([x11])
2424     AX_ADD_LDFLAGS([x11],[-L${x_libraries} -lX11 -lXext])
2425     AX_ADD_CPPFLAGS([x11],[-I${x_includes}])
2426   ])
2427   CPPFLAGS="${CPPFLAGS_save}"
2428 fi
2429
2430 dnl
2431 dnl  XVideo module
2432 dnl  (enabled by default except on win32)
2433 dnl
2434 AC_ARG_ENABLE(xvideo,
2435   [  --enable-xvideo         XVideo support (default enabled)])
2436 if test "${enable_xvideo}" != "no" &&
2437   (test "${SYS}" != "mingw32" || test "${enable_xvideo}" = "yes"); then
2438   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2439   AC_CHECK_HEADERS(X11/extensions/Xv.h, [
2440     CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2441     AC_CHECK_LIB(Xv,XvPutImage,[
2442       # If libXv.so is available, xvideo can be a plugin. Otherwise, we
2443       # test for libXv_pic.
2444       if test -f /usr/X11R6/lib/libXv.so -o -f "${x_libraries}"/libXv.so; then
2445         AX_ADD_PLUGINS([xvideo])
2446         AX_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2447         AX_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
2448       else
2449         AC_CHECK_LIB(Xv_pic,XvPutImage,[
2450           AX_ADD_PLUGINS([xvideo])
2451           AX_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2452           AX_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv_pic])
2453         ],[
2454           AX_ADD_BUILTINS([xvideo])
2455           AX_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
2456           AX_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2457         ])
2458       fi
2459     ])
2460     CFLAGS="${CFLAGS_save}"
2461   ]
2462   CPPFLAGS="${CPPFLAGS_save}")
2463 fi
2464
2465 dnl
2466 dnl  Check for the Xinerama extension
2467 dnl
2468 if test "${enable_xvideo}" != "no" &&
2469   (test "${SYS}" != "mingw32" || test "${enable_xvideo}" = "yes"); then
2470   ac_cv_have_xinerama="no"
2471   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2472   CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2473   AC_CHECK_HEADERS(X11/extensions/Xinerama.h,[
2474     AC_CHECK_LIB(Xinerama_pic, XineramaQueryExtension,[
2475       AX_ADD_LDFLAGS([xvideo],[-lXinerama_pic])
2476       AX_ADD_LDFLAGS([x11],[-lXinerama_pic])
2477       ac_cv_have_xinerama="yes"
2478     ],[
2479       AC_CHECK_LIB(Xinerama, XineramaQueryExtension,[
2480         AX_ADD_LDFLAGS([xvideo],[-lXinerama])
2481         AX_ADD_LDFLAGS([x11],[-lXinerama])
2482         ac_cv_have_xinerama="yes"
2483       ])
2484     ])
2485   ])
2486   if test "${ac_cv_have_xinerama}" = "yes"; then
2487     AC_DEFINE(HAVE_XINERAMA, 1, [Define this if you have libXinerama installed])
2488   fi
2489   CFLAGS="${CFLAGS_save}"
2490   CPPFLAGS="${CPPFLAGS_save}"
2491 fi
2492
2493 dnl
2494 dnl  SDL module
2495 dnl
2496 AC_ARG_ENABLE(sdl,
2497   [  --enable-sdl            SDL support (default enabled)])
2498 if test "${enable_sdl}" != "no"
2499 then
2500   SDL_PATH="${PATH}"
2501   AC_ARG_WITH(sdl-config-path,
2502     [    --with-sdl-config-path=PATH sdl-config path (default search in \$PATH)],
2503     [ if test "${with_sdl_config_path}" != "no"
2504       then
2505         SDL_PATH="${with_sdl_config_path}:${PATH}"
2506       fi ])
2507   AC_PATH_PROG(SDL12_CONFIG, sdl12-config, no, ${SDL_PATH})
2508   SDL_CONFIG="${SDL12_CONFIG}"
2509   SDL_HEADER="SDL12/SDL.h"
2510   if test "${SDL_CONFIG}" = "no"
2511   then
2512     AC_PATH_PROG(SDL11_CONFIG, sdl11-config, no, ${SDL_PATH})
2513     SDL_CONFIG=${SDL11_CONFIG}
2514     SDL_HEADER="SDL11/SDL.h"
2515   fi
2516   if test "${SDL_CONFIG}" = "no"
2517   then
2518     AC_PATH_PROG(SDL_CONFIG, sdl-config, no, ${SDL_PATH})
2519     SDL_HEADER="SDL/SDL.h"
2520   fi
2521   # check for cross-compiling
2522   SDL_PREFIX=
2523   AC_ARG_WITH(sdl-prefix,
2524     [    --with-sdl-prefix=PATH path to libsdl (needed for cross-compiling),
2525                                e.g use as:
2526                                --with-sdl-prefix=/usr/local/arm/2.95.3/arm-linux/usr)],[],[])
2527   if test "${with_sdl_prefix}" != "no" -a -n "${with_sdl_prefix}"
2528   then
2529     SDL_PREFIX="--prefix=${with_sdl_prefix}"
2530   fi
2531   if test "${SDL_CONFIG}" != "no"
2532   then
2533     AX_ADD_PLUGINS([vout_sdl aout_sdl])
2534     AX_ADD_CFLAGS([vout_sdl aout_sdl],[`${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`])
2535     AX_ADD_LDFLAGS([vout_sdl aout_sdl],[`${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'`])
2536     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}"
2537     AC_CHECK_HEADERS(${SDL_HEADER}, AC_DEFINE_UNQUOTED(SDL_INCLUDE_FILE,
2538       <${SDL_HEADER}>, Indicate whether we should use SDL/SDL.h or SDL11/SDL.h),
2539       [ AC_CHECK_HEADERS(SDL.h, AC_DEFINE(SDL_INCLUDE_FILE, <SDL.h>,
2540           As a last resort we also test for SDL.h presence),
2541       [ AC_MSG_ERROR([The development package for SDL is not installed.
2542 Please install it and try again. Alternatively you can also configure with
2543 --disable-sdl.])
2544       ])])
2545     CPPFLAGS="${CPPFLAGS_save}"
2546     if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null
2547     then
2548       AC_MSG_ERROR([The development package for SDL is not installed.
2549 Please install it and try again. Alternatively you can also configure with
2550 --disable-sdl.])
2551     fi
2552   elif test "${enable_sdl}" =  "yes"
2553   then
2554     AC_MSG_ERROR([I couldn't find the SDL package. You can download libSDL
2555 from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
2556     ])
2557   fi
2558 fi
2559
2560 dnl
2561 dnl  freetype module
2562 dnl
2563 AC_ARG_ENABLE(freetype,
2564   [  --enable-freetype       freetype support (default enabled)])
2565 AC_ARG_ENABLE(fribidi,
2566   [  --enable-fribidi        fribidi support (default enabled)])
2567 if test "${enable_freetype}" != "no"
2568 then
2569   FREETYPE_PATH="${PATH}"
2570   AC_ARG_WITH(freetype-config-path,
2571     [    --with-freetype-config-path=PATH freetype-config path (default search in \$PATH)],
2572     [ if test "${with_freetype_config_path}" != "no"
2573       then
2574         FREETYPE_PATH="${with_freetype_config_path}:${PATH}"
2575       fi ])
2576   AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no, ${FREETYPE_PATH})
2577
2578   if test "${FREETYPE_CONFIG}" != "no"
2579   then
2580     AX_ADD_PLUGINS([freetype])
2581     AX_ADD_CFLAGS([freetype],[`${FREETYPE_CONFIG} --cflags` ${INCICONV}])
2582     AX_ADD_LDFLAGS([freetype],[`${FREETYPE_CONFIG} --libs` ${LIBICONV}])
2583     AC_CHECK_HEADERS(Carbon/Carbon.h,
2584       [AX_ADD_LDFLAGS([freetype],[-framework Carbon])])
2585   elif test "${enable_freetype}" =  "yes"
2586   then
2587     AC_MSG_ERROR([I couldn't find the freetype package. You can download libfreetype2
2588 from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
2589     ])
2590   fi
2591
2592   dnl fribidi support
2593   if test "${enable_fribidi}" != "no"
2594   then
2595     FRIBIDI_PATH="${PATH}"
2596     AC_ARG_WITH(fribidi-config-path,
2597       [    --with-fribidi-config-path=PATH fribidi-config path (default search in \$PATH)],
2598       [ if test "${with_fribidi_config_path}" != "no"
2599         then
2600           FRIBIDI_PATH="${with_fribidi_config_path}:${PATH}"
2601         fi ])
2602     AC_PATH_PROG(FRIBIDI_CONFIG, fribidi-config, no, ${FRIBIDI_PATH})
2603
2604     if test "${FRIBIDI_CONFIG}" != "no"
2605     then
2606       AX_ADD_CFLAGS([freetype], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
2607       AX_ADD_LDFLAGS([freetype], [`${FRIBIDI_CONFIG} --libs`])
2608     fi
2609   fi
2610 fi
2611
2612 dnl
2613 dnl  Qt Embedded module
2614 dnl  (disabled by default)
2615 dnl
2616 AC_ARG_ENABLE(qte,
2617   [  --enable-qte            QT Embedded support (default disabled)])
2618 if test "${enable_qte}" = "yes"
2619 then
2620   AC_ARG_WITH(qte,
2621   [    --with-qte=PATH       Qt Embedded headers and libraries])
2622   if test "${with_qte}" != "no" -a -n "${with_qte}"
2623   then
2624     AX_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
2625     AX_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])
2626   else
2627     AX_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
2628     AX_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti])
2629   fi
2630   AX_ADD_PLUGINS([qte])
2631   NEED_QTE_MAIN=yes
2632   CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
2633   AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
2634     AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
2635   ] )
2636   CPPFLAGS="${CPPFLAGS_save}"
2637 fi
2638
2639 dnl
2640 dnl  Windows DirectX module
2641 dnl
2642 AC_ARG_ENABLE(directx,
2643   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
2644 if test "${enable_directx}" != "no"
2645 then
2646   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
2647   then
2648     AC_ARG_WITH(directx,
2649     [    --with-directx=PATH   Win32 DirectX headers])
2650     if test -z "${with_directx}"
2651     then
2652       AC_CHECK_HEADERS(ddraw.h,
2653       [ AX_ADD_PLUGINS([vout_directx aout_directx])
2654         AX_ADD_LDFLAGS([vout_directx],[-lgdi32]) ])
2655     else
2656       AC_MSG_CHECKING(for directX headers in ${with_directx})
2657       if test -f ${with_directx}/ddraw.h
2658       then
2659         AX_ADD_PLUGINS([vout_directx aout_directx])
2660         AX_ADD_CPPFLAGS([vout_directx aout_directx],[-I${with_directx}])
2661         AX_ADD_LDFLAGS([vout_directx],[-lgdi32])
2662         AC_MSG_RESULT(yes)
2663       else
2664         AC_MSG_RESULT(no)
2665         AC_MSG_ERROR([Cannot find ${with_directx}/ddraw.h!])
2666       fi
2667     fi
2668   fi
2669 fi
2670
2671 dnl
2672 dnl  Linux framebuffer module
2673 dnl
2674 AC_ARG_ENABLE(fb,
2675   [  --enable-fb             Linux framebuffer support (default enabled on Linux)])
2676     if test "${enable_fb}" != "no"
2677     then
2678       AC_CHECK_HEADERS(linux/fb.h, [
2679         AX_ADD_PLUGINS([fb])
2680       ])
2681     fi
2682
2683 dnl
2684 dnl  Linux MGA module
2685 dnl
2686 AC_ARG_ENABLE(mga,
2687   [  --enable-mga            Linux kernel Matrox support (default disabled)],
2688   [ if test "${enable_mga}" = "yes"
2689     then
2690       AX_ADD_PLUGINS([mga])
2691     fi ])
2692
2693 dnl
2694 dnl  SVGAlib module
2695 dnl
2696 AC_ARG_ENABLE(svgalib,
2697   [  --enable-svgalib        SVGAlib support (default disabled)])
2698 if test "${enable_svgalib}" = "yes"
2699 then
2700   AX_ADD_PLUGINS([svgalib])
2701   AX_ADD_LDFLAGS([svgalib],[-lvgagl -lvga])
2702 fi
2703
2704 dnl
2705 dnl  GGI module
2706 dnl
2707 AC_ARG_ENABLE(ggi,
2708   [  --enable-ggi            GGI support (default disabled)])
2709 if test "${enable_ggi}" = "yes"
2710 then
2711   AX_ADD_PLUGINS([ggi])
2712   AX_ADD_LDFLAGS([ggi],[-lggi])
2713   AC_ARG_WITH(ggi,
2714     [    --with-ggi=PATH       path to libggi],
2715     [ if test "${with_ggi}" != "no" -a -n "${with_ggi}"
2716       then
2717         AX_ADD_CPPFLAGS([ggi],[-I${with_ggi}/include])
2718         AX_ADD_LDFLAGS([ggi],[-L${with_ggi}/lib])
2719       fi ])
2720 fi
2721
2722 dnl
2723 dnl  Glide module
2724 dnl
2725 AC_ARG_ENABLE(glide,
2726   [  --enable-glide          Glide (3dfx) support (default disabled)])
2727 if test "${enable_glide}" = "yes"
2728 then
2729   AX_ADD_PLUGINS([glide])
2730   AX_ADD_LDFLAGS([glide],[-lglide2x -lm])
2731   AX_ADD_CPPFLAGS([glide],[-I/usr/include/glide])
2732   AC_ARG_WITH(glide,
2733     [    --with-glide=PATH     path to libglide],
2734     [ if test "${with_glide}" != "no" -a -n "${with_glide}"
2735       then
2736         AX_ADD_CPPFLAGS([glide],[-I${with_glide}/include])
2737         AX_ADD_LDFLAGS([glide],[-L${with_glide}/lib])
2738       fi ])
2739 fi
2740
2741 dnl
2742 dnl  AA plugin
2743 dnl
2744 AC_ARG_ENABLE(aa,
2745   [  --enable-aa             aalib output (default disabled)])
2746 if test "${enable_aa}" = "yes"
2747 then
2748   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
2749   if test "${have_aa}" = "true"
2750   then
2751     AX_ADD_PLUGINS([aa])
2752     AX_ADD_LDFLAGS([aa],[-laa])
2753   fi
2754 fi
2755
2756 dnl
2757 dnl  libcaca plugin
2758 dnl
2759 AC_ARG_ENABLE(caca,
2760   [  --enable-caca           libcaca output (default disabled)])
2761 if test "${enable_caca}" = "yes"
2762 then
2763   CACA_PATH="${PATH}"
2764   AC_ARG_WITH(caca-config-path,
2765     [    --with-caca-config-path=PATH caca-config path (default search in \$PATH)],
2766     [ if test "${with_caca_config_path}" != "no"
2767       then
2768         CACA_PATH="${with_caca_config_path}:${PATH}"
2769       fi ])
2770   AC_PATH_PROG(CACA_CONFIG, caca-config, no, ${CACA_PATH})
2771   if test "${CACA_CONFIG}" != "no"
2772   then
2773     AX_ADD_PLUGINS([caca])
2774     AX_ADD_CFLAGS([caca],[`${CACA_CONFIG} --cflags`])
2775     AX_ADD_LDFLAGS([caca],[`${CACA_CONFIG} --plugin-libs`])
2776   fi
2777 fi
2778
2779 dnl
2780 dnl  win32 GDI plugin
2781 dnl
2782 AC_ARG_ENABLE(wingdi,
2783   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
2784 if test "${enable_wingdi}" != "no"; then
2785   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
2786     AX_ADD_PLUGINS([wingdi])
2787     AX_ADD_LDFLAGS([wingdi],[-lgdi32])
2788   fi
2789 fi
2790
2791 dnl
2792 dnl  Audio plugins
2793 dnl
2794
2795 AC_ARG_WITH(,[Audio plugins:])
2796
2797 dnl
2798 dnl  OSS /dev/dsp module (enabled by default except on win32)
2799 dnl
2800 AC_ARG_ENABLE(oss,
2801   [  --enable-oss            Linux OSS /dev/dsp support (enabled on Linux)])
2802
2803 if test "${enable_oss}" != "no" &&
2804   (test "${SYS}" != "mingw32" || test "${enable_oss}" = "yes")
2805 then
2806   AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h, [
2807     AX_ADD_PLUGINS([oss])
2808     AC_CHECK_LIB(ossaudio,main,AX_ADD_LDFLAGS([oss],[-lossaudio]))
2809   ])
2810 fi
2811
2812 dnl
2813 dnl  Esound module
2814 dnl
2815 AC_ARG_ENABLE(esd,
2816   [  --enable-esd            Esound library support (default disabled)],
2817   [if test "${enable_esd}" = "yes"
2818    then
2819      AC_PATH_PROG(ESD_CONFIG, esd-config, no)
2820      if test "${ESD_CONFIG}" != "no"
2821      then
2822        AX_ADD_PLUGINS([esd])
2823        AX_ADD_CFLAGS([esd],[`${ESD_CONFIG} --cflags`])
2824        AX_ADD_LDFLAGS([esd],[`${ESD_CONFIG} --libs`])
2825      fi
2826    fi])
2827
2828 dnl
2829 dnl  aRts module
2830 dnl
2831 AC_ARG_ENABLE(arts,
2832   [  --enable-arts           aRts sound server (default disabled)],
2833   [if test "${enable_arts}" = "yes"
2834    then
2835      AC_PATH_PROG(ARTS_CONFIG, artsc-config, no)
2836      if test "${ARTS_CONFIG}" != "no"
2837      then
2838        AX_ADD_PLUGINS([arts])
2839        AX_ADD_CFLAGS([arts],[`${ARTS_CONFIG} --cflags`])
2840        AX_ADD_LDFLAGS([arts],[`${ARTS_CONFIG} --libs `])
2841      fi
2842    fi])
2843
2844 dnl
2845 dnl  ALSA module
2846 dnl
2847 AC_ARG_ENABLE(alsa,
2848   [  --enable-alsa           ALSA sound support for Linux (default disabled)],
2849   [if test "${enable_alsa}" = "yes"
2850    then
2851      AC_CHECK_HEADER(alsa/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false")
2852      if test "${have_alsa}" = "true"
2853      then
2854        AC_TRY_COMPILE([#define ALSA_PCM_NEW_HW_PARAMS_API
2855                        #define ALSA_PCM_NEW_SW_PARAMS_API
2856                        #include <alsa/asoundlib.h>],
2857           [void foo() { snd_pcm_hw_params_get_period_time(0,0,0); }],
2858            AC_DEFINE(HAVE_ALSA_NEW_API, 1, Define if ALSA is at least rc4))
2859        AX_ADD_PLUGINS([alsa])
2860        AX_ADD_LDFLAGS([alsa],[-lasound -lm -ldl])
2861      else
2862        AC_MSG_ERROR([Could not find ALSA development headers])
2863      fi
2864    fi])
2865
2866 dnl
2867 dnl  win32 waveOut plugin
2868 dnl
2869 AC_ARG_ENABLE(waveout,
2870   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
2871 if test "${enable_waveout}" != "no"; then
2872   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
2873     AX_ADD_PLUGINS([waveout])
2874     AX_ADD_LDFLAGS([waveout],[-lwinmm])
2875   fi
2876 fi
2877
2878 dnl
2879 dnl  CoreAudio plugin
2880 dnl
2881 AC_ARG_ENABLE(coreaudio,
2882   [  --enable-coreaudio      CoreAudio module (default enabled on MacOS X)])
2883 if test "${enable_coreaudio}" != "no" &&
2884   (test "${SYS}" = "darwin" || test "${enable_coreaudio}" = "yes")
2885 then
2886   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h, 
2887     [ AX_ADD_BUILTINS([coreaudio])
2888       AX_ADD_LDFLAGS([coreaudio],[-framework CoreAudio])
2889       AC_MSG_CHECKING(for kAudioConverterPrimeMethod in AudioToolbox/AudioConverter.h)
2890       AC_EGREP_HEADER(kAudioConverterPrimeMethod,AudioToolbox/AudioConverter.h,[
2891         AC_MSG_RESULT(yes)
2892         AX_ADD_PLUGINS([coreaudio_resampler])
2893         AX_ADD_LDFLAGS([coreaudio_resampler],[-framework AudioToolbox])
2894       ],[ AC_MSG_RESULT(no) ])
2895     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
2896 fi
2897
2898 dnl
2899 dnl  Roku HD1000 audio
2900 dnl
2901 AC_ARG_ENABLE(hd1000a,
2902   [  --enable-hd1000a        HD1000 audio module (default enabled on HD1000)])
2903 if test "${enable_hd1000a}" != "no" &&
2904   (test "${SYS}" != "mingw32" || test "${enable_hd1000a}" = "yes")
2905 then
2906   AC_LANG_PUSH([C++])
2907   AC_CHECK_HEADERS(deschutes/libraries/hdmachinex225/PCMAudioPlayer.h, [
2908     AX_ADD_PLUGINS([hd1000a])
2909     AC_CHECK_LIB(HDMachineX225,main,AX_ADD_LDFLAGS([hd1000a],[-lHDMachineX225]))  ])
2910   AC_LANG_POP([C++])
2911 fi
2912
2913 dnl
2914 dnl  Interface plugins
2915 dnl
2916
2917 AC_ARG_WITH(,[Interface plugins:])
2918
2919 dnl special case for BeOS
2920 if test "${SYS}" = "beos"
2921 then
2922     AX_ADD_PLUGINS([beos])
2923 fi
2924
2925 dnl
2926 dnl Skins module
2927 dnl
2928 AC_ARG_ENABLE(skins,
2929   [  --enable-skins          Skins interface module (default enabled on Win32)])
2930 if test "${enable_skins}" != "no"; then
2931   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
2932
2933     AX_ADD_PLUGINS([skins])
2934     ALIASES="${ALIASES} svlc"
2935     AX_ADD_CPPFLAGS([skins],[-U_OFF_T_ -U_off_t -Imodules/gui/skins])
2936     AX_ADD_CXXFLAGS([skins],[-O2 -fno-rtti])
2937     AX_ADD_LDFLAGS([skins],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
2938
2939   else if test "${enable_skins}" = "yes"; then
2940     AX_ADD_PLUGINS([skins])
2941     ALIASES="${ALIASES} svlc"
2942     AX_ADD_CPPFLAGS([skins],[-Imodules/gui/skins -I${x_includes} -I/usr/include/freetype2 -DX11_SKINS])
2943     AX_ADD_CXXFLAGS([skins],[-O2 -fno-rtti])
2944     AX_ADD_LDFLAGS([skins],[-L${x_libraries} -lImlib2 -lXext -lX11 -lfreetype -lpng -lz ])
2945   fi fi
2946 fi
2947
2948 dnl
2949 dnl Skins2 module
2950 dnl
2951 AC_ARG_ENABLE(skins2,
2952   [  --enable-skins2         Skins2 interface module (experimental)])
2953 if test "${enable_skins2}" = "yes" || (test "${SYS}" != "darwin" && test "${SYS}" != "beos" && test "${enable_skins2}" != "no"); then
2954
2955   dnl test for the required libraries
2956   skins2_missing_lib="no"
2957
2958   dnl freetype
2959   if test "${FREETYPE_CONFIG}" != "no"; then
2960     AX_ADD_CPPFLAGS([skins2],[`${FREETYPE_CONFIG} --cflags`])
2961     AX_ADD_LDFLAGS([skins2],[`${FREETYPE_CONFIG} --libs`])
2962   else
2963     skins2_missing_lib="yes"
2964     if test "${enable_skins2}" = "yes"; then
2965       AC_MSG_ERROR([Could not find freetype (required for skins2)])
2966     fi
2967   fi
2968
2969   dnl iconv
2970   if test "$am_cv_func_iconv" = "yes"; then
2971     AX_ADD_CPPFLAGS([skins2],[${INCICONV}])
2972     AX_ADD_LDFLAGS([skins2],[${LIBICONV} -lpng])
2973   else
2974     skins2_missing_lib="yes"
2975     if test "${enable_skins2}" = "yes"; then
2976       AC_MSG_ERROR([Could not find iconv (required for skins2)])
2977     fi
2978   fi
2979
2980   dnl libxml2
2981   XML2_PATH="${PATH}"
2982   AC_ARG_WITH(xml2-config-path,
2983     [    --with-xml2-config-path=PATH xml2-config path (default search in \$PATH)],
2984     [ if test "${with_xml2_config_path}" != "no"; then
2985         XML2_PATH="${with_xml2_config_path}:${PATH}"
2986       fi ])
2987   AC_PATH_PROG(XML2_CONFIG, xml2-config, no, ${XML2_PATH})
2988   if test "${XML2_CONFIG}" != "no"; then
2989     AX_ADD_CPPFLAGS([skins2],[`${XML2_CONFIG} --cflags`])
2990     AX_ADD_LDFLAGS([skins2],[`${XML2_CONFIG} --libs`])
2991     dnl skins2 depends on the xmlTextReader extension
2992     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_skins2}"
2993     AC_CHECK_LIB(xml2,xmlTextReaderConstName,[],[
2994       skins2_missing_lib="yes"
2995       AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version; maybe you are missing libpng.])
2996       if test "${enable_skins2}" = "yes"; then
2997         AC_MSG_ERROR([libxml2 missing the xmlTextReader extension (required for skins2)])
2998       fi])
2999     LDFLAGS="${LDFLAGS_save}"
3000   else
3001     skins2_missing_lib="yes"
3002     if test "${enable_skins2}" = "yes"; then
3003       AC_MSG_ERROR([Could not find libxml2 (required for skins2)])
3004     fi
3005   fi
3006
3007   if test "${skins2_missing_lib}" = "no" && (test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"); then
3008     AX_ADD_PLUGINS([skins2])
3009     ALIASES="${ALIASES} svlc"
3010     AX_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -Imodules/gui/skins2 -DWIN32_SKINS])
3011     AX_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3012     AX_ADD_LDFLAGS([skins2],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
3013
3014   else if test "${skins2_missing_lib}" = "no"; then
3015     AX_ADD_PLUGINS([skins2])
3016     ALIASES="${ALIASES} svlc"
3017     AX_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 -I${x_includes} -DX11_SKINS])
3018     AX_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3019     AX_ADD_LDFLAGS([skins2],[-L${x_libraries} -lXext -lX11])
3020   fi fi
3021 fi
3022
3023
3024 dnl
3025 dnl  Gtk+ module
3026 dnl
3027 AC_ARG_ENABLE(gtk,
3028   [  --enable-gtk            Gtk+ support (default enabled)])
3029 if test "${enable_gtk}" != "no"
3030 then
3031   GTK_PATH="${PATH}"
3032   AC_ARG_WITH(gtk-config-path,
3033     [    --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)],
3034     [ if test "${with_gtk_config_path}" != "no"
3035       then
3036         GTK_PATH="${with_gtk_config_path}:${PATH}"
3037       fi ])
3038   # look for gtk-config
3039   AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH})
3040   GTK_CONFIG=${GTK12_CONFIG}
3041   if test "${GTK_CONFIG}" = "no"
3042   then
3043     AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH})
3044   fi
3045   if test "${GTK_CONFIG}" != "no"
3046   then
3047     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
3048     then
3049       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.])
3050     fi
3051     if test "${SYS}" != "mingw32"; then
3052       AX_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk gthread`])
3053       AX_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`])
3054     else
3055       AX_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk`])
3056       AX_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`])
3057     fi
3058     # now look for the gtk.h header
3059     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gtk}"
3060     ac_cv_gtk_headers=yes
3061     AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [
3062       ac_cv_gtk_headers=no
3063       echo "Cannot find gtk development headers."
3064     ])
3065     if test "${ac_cv_gtk_headers}" = "yes"
3066     then
3067       AX_ADD_PLUGINS([gtk])
3068       if test "${SYS}" != "mingw32"; then
3069         NEED_GTK_MAIN=yes
3070       fi
3071       ALIASES="${ALIASES} gvlc"
3072     fi
3073     CPPFLAGS="${CPPFLAGS_save}"
3074   fi
3075 fi
3076
3077 dnl
3078 dnl  Gtk+2 module ! Disabled for now as it is unusable and confuses users
3079 dnl
3080 dnl AC_ARG_ENABLE(gtk2,
3081 dnl   [  --enable-gtk2           Gtk2 support (default disabled)])
3082 dnl if test "${enable_gtk2}" = "yes"
3083 dnl then
3084 dnl   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
3085 dnl   AX_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
3086 dnl   AX_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
3087 dnl   AX_ADD_PLUGINS([gtk2])
3088 dnl   if test "${SYS}" != "mingw32"; then
3089 dnl     NEED_GTK2_MAIN=yes
3090 dnl   fi
3091 dnl fi
3092
3093 dnl
3094 dnl  PDA Gtk+2 module
3095 dnl
3096 AC_ARG_ENABLE(pda,
3097   [  --enable-pda          PDA interface needs Gtk2 support (default disabled)])
3098 if test "x${enable_pda}" = "xyes"
3099 then
3100   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
3101   AX_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
3102   AX_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
3103   AX_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}])
3104   AX_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}])
3105   AX_ADD_PLUGINS([pda])
3106   if test "${SYS}" != "mingw32"; then
3107     NEED_GTK2_MAIN=yes
3108   fi
3109 fi
3110
3111 dnl
3112 dnl  Gnome module
3113 dnl
3114 AC_ARG_ENABLE(gnome,
3115   [  --enable-gnome          Gnome interface support (default disabled)],
3116   [if test "${enable_gnome}" = "yes"; then
3117     # look for gnome-config
3118     AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
3119     if test -x ${GNOME_CONFIG}
3120     then
3121        AX_ADD_CFLAGS([gnome],[`${GNOME_CONFIG} --cflags gtk gnomeui`])
3122        AX_ADD_LDFLAGS([gnome],[`${GNOME_CONFIG} --libs gnomeui | sed 's,-rdynamic,,'`])
3123     fi
3124     # now look for the gnome.h header
3125     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gnome}"
3126     AC_CHECK_HEADERS(gnome.h, [
3127       AX_ADD_PLUGINS([gnome])
3128       NEED_GTK_MAIN=yes
3129       NEED_GNOME_MAIN=yes
3130       ALIASES="${ALIASES} gnome-vlc"
3131       dnl We need this because of some moronic gnomesupport.h flavours
3132       AC_MSG_CHECKING(for strndup in gnome.h)
3133       AC_EGREP_HEADER(strndup,gnome.h,[
3134         AC_MSG_RESULT(yes)
3135         AC_DEFINE(STRNDUP_IN_GNOME_H, 1,
3136                   Define if <gnome.h> defines strndup.)],[
3137         AC_MSG_RESULT(no)])
3138      ],[
3139       AC_MSG_ERROR([Can't find gnome headers. Please install the gnome
3140 developement tools or remove the --enable-gnome option])
3141      ])
3142     CPPFLAGS="${CPPFLAGS_save}"
3143   fi])
3144
3145 dnl
3146 dnl  Gnome2 module ! Disabled for know as it is unuseable and confuses users
3147 dnl
3148 dnl AC_ARG_ENABLE(gnome2,
3149 dnl   [  --enable-gnome2         Gnome2 support (default disabled)])
3150 dnl if test "${enable_gnome2}" = "yes"
3151 dnl then
3152 dnl   PKG_CHECK_MODULES(GNOME2, [libgnomeui-2.0])
3153 dnl   AX_ADD_CFLAGS([gnome2],[${GNOME2_CFLAGS}])
3154 dnl   AX_ADD_LDFLAGS([gnome2],[${GNOME2_LIBS}])
3155 dnl   AX_ADD_PLUGINS([gnome2])
3156 dnl   if test "${SYS}" != "mingw32"; then
3157 dnl     NEED_GNOME2_MAIN=yes
3158 dnl   fi
3159 dnl fi
3160
3161 dnl
3162 dnl  wxWindows module
3163 dnl
3164 AC_ARG_ENABLE(wxwindows,
3165   [  --enable-wxwindows      wxWindows support (default enabled)])
3166 if test "${enable_wxwindows}" != "no"
3167 then
3168   WXWINDOWS_PATH="${PATH}"
3169   AC_ARG_WITH(wx-config-path,
3170     [    --with-wx-config-path=PATH wx-config path (default search in \$PATH)],
3171     [ if test "${with_wx_config_path}" != "no"
3172       then
3173         WXWINDOWS_PATH="${with_wx_config_path}:${PATH}"
3174       fi ])
3175   # look for wx-config
3176   AC_PATH_PROG(WX_CONFIG, wx-config, no, ${WXWINDOWS_PATH})
3177   if test "${WX_CONFIG}" != "no"
3178   then
3179     if expr 2.3.0 \> `${WX_CONFIG} --version` >/dev/null
3180     then
3181       AC_MSG_ERROR([Your development package for wxWindows is too old, you need at least version 2.3.0. Please upgrade and try again. Alternatively you can also configure with --disable-wxwindows.])
3182     fi
3183     AC_LANG_PUSH(C++)
3184     AX_ADD_CXXFLAGS([wxwindows],[`${WX_CONFIG} --cxxflags`])
3185     AX_ADD_LDFLAGS([wxwindows],[`${WX_CONFIG} --libs`])
3186     # now look for the wxprec.h header
3187     CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_wxwindows}"
3188     ac_cv_wx_headers=yes
3189     AC_CHECK_HEADERS(wx/wxprec.h, , [
3190       ac_cv_wx_headers=no
3191       echo "Cannot find wxWindows development headers."
3192     ])
3193     if test "${ac_cv_wx_headers}" = "yes"
3194     then
3195       AX_ADD_PLUGINS([wxwindows])
3196       ALIASES="${ALIASES} wxvlc"
3197     fi
3198     CPPFLAGS="${CPPFLAGS_save}"
3199     AC_LANG_POP(C++)
3200   fi
3201 fi
3202
3203 dnl
3204 dnl  Qt module
3205 dnl
3206 AC_ARG_ENABLE(qt,
3207   [  --enable-qt             Qt interface support (default disabled)],
3208   [if test "${enable_qt}" = "yes"; then
3209      AX_ADD_PLUGINS([qt])
3210      ALIASES="${ALIASES} qvlc"
3211      AX_ADD_LDFLAGS([qt],[-L${QTDIR}/lib])
3212      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt}"
3213      AC_CHECK_LIB(qt-mt,main,[
3214        AX_ADD_LDFLAGS([qt],[-lqt-mt])
3215      ],[
3216        AC_CHECK_LIB(qt,main,[
3217          AX_ADD_LDFLAGS([qt],[-lqt])
3218        ])
3219      ])
3220      LDFLAGS="${LDFLAGS_save}"
3221      AX_ADD_CXXFLAGS([qt],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
3222      if test -x ${QTDIR}/bin/moc
3223      then
3224        MOC=${QTDIR}/bin/moc
3225      else
3226        MOC=moc
3227      fi
3228    fi])
3229
3230 dnl
3231 dnl  KDE module
3232 dnl
3233 AC_ARG_ENABLE(kde,
3234   [  --enable-kde            KDE interface support (default disabled)],
3235   [if test "${enable_kde}" = "yes"; then
3236      AX_ADD_PLUGINS([kde])
3237      ALIASES="${ALIASES} kvlc"
3238      AX_ADD_LDFLAGS([kde],[-L${KDEDIR}/lib])
3239      dnl Check for -lkfile (only in KDE 2) or -lkdeui -lkio (KDE 3)
3240      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3241      AC_CHECK_LIB(kfile,main,[
3242        AX_ADD_LDFLAGS([kde],[-lkfile])
3243      ])
3244      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3245      AC_CHECK_LIB(kdeui,main,[
3246        AX_ADD_LDFLAGS([kde],[-lkdeui])
3247      ])
3248      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3249      AC_CHECK_LIB(kio,main,[
3250        AX_ADD_LDFLAGS([kde],[-lkio])
3251      ])
3252      LDFLAGS="${LDFLAGS_save}"
3253      AX_ADD_CXXFLAGS([kde],[-I/usr/include/kde -I/usr/include/qt3 -I/usr/include/qt])
3254      AX_ADD_CXXFLAGS([kde],[-I${KDEDIR}/include -I${QTDIR}/include])
3255      if test -x ${QTDIR}/bin/moc
3256      then
3257        MOC=${QTDIR}/bin/moc
3258      else
3259        MOC=moc
3260      fi
3261    fi])
3262
3263 dnl
3264 dnl  Opie QT embedded module
3265 dnl
3266 AC_ARG_ENABLE(opie,
3267   [  --enable-opie           Qt embedded interface support (default disabled)],
3268   [if test "${enable_opie}" = "yes"; then
3269      AC_ARG_WITH(qte,
3270      [    --with-qte=PATH       Qt Embedded headers and libraries])
3271      if test "${with_qte}" != "no" -a -n "${with_qte}"
3272      then
3273        AX_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3274        AX_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])
3275      else
3276        AX_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'`])
3277        AX_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'`])
3278      fi
3279      CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
3280      AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
3281        AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
3282      ] )
3283      CPPFLAGS="${CPPFLAGS_save}"
3284
3285      AX_ADD_PLUGINS([opie])
3286      NEED_QTE_MAIN=yes
3287      AX_ADD_LDFLAGS([opie],[-lqpe ${LDFLAGS_qte}])
3288      AX_ADD_CXXFLAGS([opie],[${CXXFLAGS_qte}])
3289      if test "${with_qte}" != "no" -a -n "${with_qte}"
3290      then
3291        MOC=${with_qte}/bin/moc
3292      else
3293        MOC=${QTDIR}/bin/moc
3294      fi
3295    fi])
3296
3297 dnl
3298 dnl  MacOS X module
3299 dnl
3300 AC_ARG_ENABLE(macosx,
3301   [  --enable-macosx         MacOS X support (default enabled on MacOS X)],
3302   [if test "${enable_macosx}" = "yes"
3303    then
3304      AX_ADD_BUILTINS([macosx])
3305      AX_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
3306    fi],
3307   [AC_CHECK_HEADERS(Cocoa/Cocoa.h,
3308      AX_ADD_BUILTINS([macosx])
3309      AX_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
3310    )])
3311
3312 dnl
3313 dnl  QNX RTOS module
3314 dnl
3315 AC_ARG_ENABLE(qnx,
3316   [  --enable-qnx            QNX RTOS support (default enabled on QNX RTOS)])
3317     if test "${enable_qnx}" != "no"
3318     then
3319       AC_CHECK_HEADERS(Ph.h, [
3320         AX_ADD_PLUGINS([qnx])
3321         AX_ADD_LDFLAGS([qnx],[-lasound -lph])
3322       ])
3323     fi
3324
3325 dnl
3326 dnl  ncurses module
3327 dnl
3328 AC_ARG_ENABLE(ncurses,
3329   [  --enable-ncurses        ncurses interface support (default disabled)],
3330   [if test "${enable_ncurses}" = "yes"; then
3331      AX_ADD_PLUGINS([ncurses])
3332      AX_ADD_LDFLAGS([ncurses],[-lncurses])
3333    fi])
3334
3335 dnl
3336 dnl  XOSD plugin
3337 dnl
3338 AC_ARG_ENABLE(xosd,
3339   [  --enable-xosd           xosd interface support (default disabled)])
3340 if test "${enable_xosd}" = "yes"
3341 then
3342   AC_CHECK_HEADER(xosd.h, have_xosd="true", have_xosd="false")
3343   AC_CHECK_LIB(xosd,xosd_set_offset,
3344       AC_DEFINE(HAVE_XOSD_VERSION_1, 1, Define if <xosd.h> is 1.0.x),
3345     AC_CHECK_LIB(xosd,xosd_set_horizontal_offset,
3346         AC_DEFINE(HAVE_XOSD_VERSION_2, 1, Define if <xosd.h> is 2.0.x),
3347       AC_TRY_COMPILE([#include <xosd.h>],
3348          [void foo() { xosd_init("foo","bar",12,XOSD_top,2,12,42); }],,
3349           AC_DEFINE(HAVE_XOSD_VERSION_0, 1, Define if <xosd.h> is pre-1.0.0))))
3350   if test "${have_xosd}" = "true"
3351   then
3352     AX_ADD_PLUGINS([xosd])
3353     AX_ADD_LDFLAGS([xosd],[-lxosd])
3354   fi
3355 fi
3356
3357 dnl
3358 dnl Visualisation plugin
3359 dnl
3360 AC_ARG_ENABLE(visual,
3361   [  --enable-visual          visualisation plugin (default enabled)])
3362 if test "${enable_visual}" != "no"
3363 then
3364     AX_ADD_PLUGINS([visual])
3365 fi
3366
3367 dnl
3368 dnl  goom visualization plugin
3369 dnl
3370 AC_ARG_ENABLE(goom,
3371 [  --enable-goom           goom visualisation plugin (default disabled)])
3372 if test "${enable_goom}" = "yes"
3373 then
3374   AC_ARG_WITH(goom-tree,
3375     [    --with-goom-tree=PATH goom tree for static linking (required)])
3376
3377   dnl
3378   dnl test for --with-goom-tree
3379   dnl
3380   if test "${with_goom_tree}" != "no" -a -n "${with_goom_tree}"; then
3381     AC_MSG_CHECKING(for libgoom.a in ${with_goom_tree})
3382     real_goom_tree="`cd ${with_goom_tree} 2>/dev/null && pwd`"
3383     if test -z "${real_goom_tree}"; then
3384       dnl  The given directory can't be found
3385       AC_MSG_RESULT(no)
3386       AC_MSG_ERROR([cannot cd to ${with_goom_tree}])
3387     fi
3388     if test -f "${real_goom_tree}/libgoom.a"; then
3389       AC_MSG_RESULT(${real_goom_tree}/libgoom.a)
3390       AX_ADD_BUILTINS([goom])
3391       AX_ADD_LDFLAGS([goom],[-L${real_goom_tree} -lgoom])
3392       AX_ADD_CPPFLAGS([goom],[-I${real_goom_tree}])
3393     else
3394       dnl  The given libgoom wasn't built
3395       AC_MSG_RESULT(no)
3396       AC_MSG_ERROR([cannot find ${real_goom_tree}/libgoom.a, make sure you compiled goom in ${with_goom_tree}])
3397     fi
3398   else
3399     dnl  The --with-goom-tree isn't specified wasn't built
3400     AC_MSG_RESULT(no)
3401     AC_MSG_ERROR([You have to specify a tree with --with-goom-tree])
3402   fi
3403 fi
3404
3405 dnl
3406 dnl  SLP access plugin
3407 dnl
3408 AC_ARG_ENABLE(slp,
3409   [  --enable-slp            SLP service discovery support (default enabled)])
3410 if test "${enable_slp}" != "no"
3411 then
3412   AC_ARG_WITH(slp,
3413   [    --with-slp=PATH       libslp headers and libraries])
3414   if test -z "${with_slp}"
3415   then
3416     AC_CHECK_HEADERS(slp.h, have_slp="true", have_slp="false")
3417     if test "${have_slp}" = "true"
3418     then
3419       AX_ADD_PLUGINS([slp])
3420       AX_ADD_LDFLAGS([slp],[-lslp])
3421       AX_ADD_LDFLAGS([stream_out_standard],[-lslp])
3422     fi
3423   else
3424     AC_MSG_CHECKING(for slp headers in ${with_slp})
3425     if test -f ${with_slp}/slp.h
3426     then
3427       dnl  Use ${with_slp}/libslp/slp.h
3428       AC_MSG_RESULT(yes)
3429       AX_ADD_PLUGINS([slp])
3430       AX_ADD_LDFLAGS([slp],[-L${with_slp} -lslp])
3431       AX_ADD_LDFLAGS([stream_out_standard],[-L${with_slp} -lslp])
3432       AX_ADD_CPPFLAGS([slp],[-I${with_slp}])
3433       AC_DEFINE(HAVE_SLP_H)
3434     else
3435       dnl  No libslp could be found, sorry
3436       AC_MSG_RESULT(no)
3437       AC_MSG_ERROR([cannot find ${with_slp}/slp.h])
3438     fi
3439   fi
3440 fi
3441
3442 dnl
3443 dnl  Lirc plugin
3444 dnl
3445 AC_ARG_ENABLE(lirc,
3446   [  --enable-lirc           lirc support (default disabled)])
3447 if test "${enable_lirc}" = "yes"
3448 then
3449   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
3450   if test "${have_lirc}" = "true"
3451   then
3452     AX_ADD_PLUGINS([lirc])
3453     AX_ADD_LDFLAGS([lirc],[-llirc_client])
3454   fi
3455 fi
3456
3457 dnl 
3458 dnl  Joystick plugin
3459 dnl
3460 AC_ARG_ENABLE(joystick,
3461   [  --enable-joystick       joystick control (default disabled)])
3462 if test "${enable_joystick}" = "yes"
3463 then
3464  AC_CHECK_HEADER( linux/joystick.h, 
3465                 [AX_ADD_PLUGINS([joystick])]
3466                 )
3467 fi
3468
3469
3470 dnl
3471 dnl corba (ORBit) plugin
3472 dnl
3473 AC_ARG_ENABLE(corba,
3474   [  --enable-corba          corba interface support (default disabled)])
3475 if test "${enable_corba}" = "yes"; then
3476   ORBIT_PATH="${PATH}"
3477   AC_ARG_WITH(orbit-config-path,
3478   [    --with-orbit-config-path=PATH orbit-config path (default search in \$PATH)])
3479   if test "${with_orbit_config_path}" != "no"; then
3480     ORBIT_PATH="${with_orbit_config_path}:${PATH}"
3481   fi
3482   # look for orbit2-config
3483   AC_PATH_PROG(ORBIT_CONFIG, orbit2-config, no, ${ORBIT_PATH})
3484   if test "${ORBIT_CONFIG}" != "no"; then
3485     AX_ADD_CFLAGS(corba,[`${ORBIT_CONFIG} --cflags server`])
3486     AX_ADD_LDFLAGS(corba,[`${ORBIT_CONFIG} --libs server | sed 's,-rdynamic,,'`])
3487     # now look for the orbit.h header
3488     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_corba}"
3489     ac_cv_corba_headers=yes
3490     AC_CHECK_HEADERS(orbit/orbit.h, , [
3491       ac_cv_corba_headers=no
3492       AC_MSG_ERROR([Could not find corba development headers])
3493     ])
3494     if test "${ac_cv_corba_headers}" = "yes"; then
3495       AX_ADD_PLUGINS(corba)
3496     fi
3497     CPPFLAGS="${CPPFLAGS_save}"
3498   fi
3499 fi
3500
3501 AC_ARG_WITH(,[Misc options:])
3502
3503 dnl
3504 dnl  Endianness check, AC_C_BIGENDIAN doesn't work if we are cross-compiling
3505 dnl
3506 dnl  We give the user the opportunity to specify
3507 dnl  --with-words=big or --with-words=little ; otherwise, try to guess
3508 dnl
3509 AC_ARG_WITH(words,
3510   [  --with-words=endianness set endianness (big or little)])
3511   case "${with_words}" in
3512     big)
3513       ac_cv_c_bigendian=yes
3514       ;;
3515     little)
3516       ac_cv_c_bigendian=no
3517       ;;
3518     *)
3519       dnl  Try to guess endianness by matching patterns on a compiled
3520       dnl  binary, by looking for an ASCII or EBCDIC string
3521       AC_CACHE_CHECK([whether the byte order is big-endian],
3522         [ac_cv_c_bigendian],
3523         [ac_cv_c_bigendian="unknown"
3524         [cat >conftest.c <<EOF
3525         short am[] = { 0x4249, 0x4765, 0x6e44, 0x6961, 0x6e53, 0x7953, 0 };
3526         short ai[] = { 0x694c, 0x5454, 0x656c, 0x6e45, 0x6944, 0x6e61, 0 };
3527         void _a(void) { char*s = (char*)am; s = (char *)ai; }
3528         short ei[] = { 0x89D3, 0xe3e3, 0x8593, 0x95c5, 0x89c4, 0x9581, 0 };
3529         short em[] = { 0xc2c9, 0xc785, 0x95c4, 0x8981, 0x95e2, 0xa8e2, 0 };
3530         void _e(void) { char*s = (char*)em; s = (char*)ei; }
3531         int main(void) { _a(); _e(); return 0; }
3532 EOF
3533         ]
3534         if test -f conftest.c
3535         then
3536           if ${CC-cc} -c conftest.c -o conftest.o >>config.log 2>&1 \
3537               && test -f conftest.o
3538           then
3539             if test "`strings conftest.o | grep BIGenDianSyS`"
3540             then
3541               ac_cv_c_bigendian="yes"
3542             fi
3543             if test "`strings conftest.o | grep LiTTleEnDian`"
3544             then
3545               ac_cv_c_bigendian="no"
3546             fi
3547           fi
3548         fi
3549       ])
3550       if test "${ac_cv_c_bigendian}" = "unknown"
3551       then
3552         AC_MSG_ERROR([Could not guess endianness, please use --with-words])
3553       fi
3554       ;;
3555   esac
3556 dnl  Now we know what to use for endianness, just put it in the header
3557 if test "${ac_cv_c_bigendian}" = "yes"
3558 then
3559   AC_DEFINE(WORDS_BIGENDIAN, 1, big endian system)
3560 fi
3561
3562 dnl
3563 dnl  Mozilla plugin
3564 dnl
3565 mozilla=false
3566 AC_ARG_ENABLE(mozilla,
3567   [  --enable-mozilla        build a vlc-based Mozilla plugin (default disabled)])
3568 if test "${enable_mozilla}" = "yes" -a "${SYS}" != "mingw32"
3569 then
3570   AC_PATH_PROG(MOZILLA_CONFIG, mozilla-config, no)
3571   if test "${MOZILLA_CONFIG}" = "no"
3572   then
3573     AC_MSG_ERROR([Please install the Mozilla development tools, mozilla-config was not found.])
3574   else
3575     if test "${SYS}" != "mingw32"; then
3576       LDFLAGS="${LDFLAGS_save} -L${x_libraries}"
3577       AC_CHECK_LIB(Xt,XtStrings,[
3578         AX_ADD_LDFLAGS([mozilla],[-L${x_libraries} -lXt])
3579       ])
3580       LDFLAGS="${LDFLAGS_save}"
3581     fi
3582     mozilla=:
3583     dnl Workaround for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=150490
3584     AX_ADD_CPPFLAGS([mozilla],[[`${MOZILLA_CONFIG} --cflags plugin xpcom java | sed 's,-I\([^ ]*\)/mozilla/\([^ ]*\),-I\1/\2 -I\1/mozilla/\2,g' | xargs`]])
3585     AX_ADD_LDFLAGS([mozilla],[`${MOZILLA_CONFIG} --libs plugin xpcom`])
3586     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mozilla}"
3587     AC_CHECK_HEADERS(mozilla-config.h)
3588     CPPFLAGS="${CPPFLAGS_save}"
3589   fi
3590
3591 dnl special case for mingw32
3592 elif test "${enable_mozilla}" = "yes"
3593 then
3594   AC_ARG_WITH(mozilla-sdk-path,
3595     [    --with-mozilla-sdk-path=PATH path to win32 mozilla sdk], [
3596     real_mozilla_sdk="`cd ${with_mozilla_sdk_path} 2>/dev/null && pwd`"
3597     CPPFLAGS="${CPPFLAGS_save} ${real_mozilla_sdk}"
3598     AC_CHECK_HEADERS(mozilla-config.h, [
3599       mozilla=:
3600       AX_ADD_CPPFLAGS([mozilla],[-DXPCOM_GLUE -I${real_mozilla_sdk} -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])
3601       AX_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 -lnspr4 -lplds4 -lplc4 -lembedstring -lxpcomglue -Wl,--kill-at])
3602       XPIDL_INCL="-I${real_mozilla_sdk}/xpcom/idl" ])
3603     CPPFLAGS="${CPPFLAGS_save}"
3604   ])
3605 fi
3606
3607 dnl Not necessarily in ${PATH}
3608 if test -z "${XPIDL}" -o ! -x "${XPIDL}"; then
3609   XPIDL="/usr/lib/mozilla/xpidl"
3610 fi
3611 AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
3612
3613 dnl
3614 dnl  test plugins
3615 dnl
3616 AC_ARG_ENABLE(testsuite,
3617   [  --enable-testsuite      build test modules (default disabled)])
3618 if test "${enable_testsuite}" = "yes"
3619 then
3620   TESTS="test1 test2 test3 test4"
3621
3622   dnl  we define those so that bootstrap sets the right linker
3623   AX_ADD_CXXFLAGS([test2],[])
3624   AX_ADD_OBJCFLAGS([test3],[])
3625   dnl  this one is needed until automake knows what to do
3626   AX_ADD_LDFLAGS([test3],[-lobjc])
3627
3628   AX_ADD_PLUGINS([${TESTS}])
3629   #AX_ADD_BUILTINS([${TESTS}])
3630 fi
3631
3632 dnl
3633 dnl  gtk_main plugin
3634 dnl
3635 if test "${NEED_GTK_MAIN}" != "no"
3636 then
3637     AX_ADD_PLUGINS([gtk_main])
3638     AX_ADD_CFLAGS([gtk_main],[${CFLAGS_gtk}])
3639     AX_ADD_LDFLAGS([gtk_main],[${LDFLAGS_gtk}])
3640 fi
3641
3642 if test "${NEED_GNOME_MAIN}" != "no"
3643 then
3644     AX_ADD_PLUGINS([gnome_main])
3645     AX_ADD_CFLAGS([gnome_main],[${CFLAGS_gtk} ${CFLAGS_gnome}])
3646     AX_ADD_LDFLAGS([gnome_main],[${LDFLAGS_gtk} ${LDFLAGS_gnome}])
3647 fi
3648
3649 if test "${NEED_GTK2_MAIN}" != "no"
3650 then
3651     AX_ADD_PLUGINS([gtk2_main])
3652     AX_ADD_CFLAGS([gtk2],[-DNEED_GTK2_MAIN])
3653     AX_ADD_CFLAGS([pda],[-DNEED_GTK2_MAIN])
3654     AX_ADD_CFLAGS([gtk2_main],[${CFLAGS_gtk2} ${CFLAGS_pda}])
3655     AX_ADD_LDFLAGS([gtk2_main],[${LDFLAGS_gtk2} ${LDFLAGS_pda}])
3656 fi
3657
3658 if test "${NEED_GNOME2_MAIN}" != "no"
3659 then
3660     AX_ADD_PLUGINS([gnome2_main])
3661     AX_ADD_CFLAGS([gnome2_main],[${CFLAGS_gtk2} ${CFLAGS_gnome2}])
3662     AX_ADD_LDFLAGS([gnome2_main],[${LDFLAGS_gtk2} ${LDFLAGS_gnome2}])
3663 fi
3664
3665 dnl
3666 dnl  qte_main plugin
3667 dnl
3668 if test "${NEED_QTE_MAIN}" != "no"
3669 then
3670     AX_ADD_PLUGINS([qte_main])
3671     AX_ADD_CPPFLAGS([qte opie vout_sdl],[-DNEED_QTE_MAIN])
3672     AX_ADD_CXXFLAGS([qte_main],[${CPPFLAGS_qte} ${CXXFLAGS_qte}])
3673     AX_ADD_LDFLAGS([qte_main],[${LDFLAGS_qte}])
3674 fi
3675
3676
3677 dnl
3678 dnl  Plugin and builtin checks
3679 dnl
3680 builtin_support=false
3681 plugin_support=:
3682
3683 dnl Support for plugins - this must be AT THE END
3684 AC_ARG_ENABLE(plugins,
3685   [  --disable-plugins       make all plugins built-in (default plugins enabled)],
3686   [if test "${enable_plugins}" = "no"
3687    then
3688      plugin_support=false
3689    fi])
3690
3691 dnl Automagically disable plugins if there is no system support for
3692 dnl dynamically loadable files (.so, .dll, .dylib).
3693 dnl don't forget vlc-win32 still can load .dll as plugins
3694 if test "${ac_cv_have_plugins}" = "no"
3695 then
3696   echo "*** Your system doesn't have plugin support. All plugins will be built"
3697   echo "statically."
3698   plugin_support=false
3699 fi
3700
3701 dnl Export automake variables
3702 if ${plugin_support}
3703 then
3704   for plugin in `echo ${PLUGINS}`
3705   do
3706     eval "${plugin}_p=yes"
3707   done
3708 else
3709   AX_ADD_BUILTINS([${PLUGINS}])
3710   PLUGINS=""
3711 fi
3712 AM_CONDITIONAL(HAVE_PLUGINS, ${plugin_support})
3713
3714 [if echo "${BUILTINS}" | grep '[^ ]' >/dev/null 2>&1
3715 then
3716   builtin_support=:
3717   for builtin in `echo ${BUILTINS}`
3718   do
3719     eval "${builtin}_b=yes"
3720   done
3721 fi]
3722 AM_CONDITIONAL(HAVE_BUILTINS, ${builtin_support})
3723
3724 dnl Import conditional variables generated by bootstrap
3725 AX_VLC_CONDITIONALS
3726
3727 dnl
3728 dnl  Stuff used by the program
3729 dnl
3730 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION} ${CODENAME}", [Simple version string])
3731 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "VLC media player - version ${VERSION} ${CODENAME} - (c) 1996-2003 VideoLAN", [Copyright string])
3732 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
3733
3734 VLC_SYMBOL="`echo ${VERSION} | sed -e 'y/.-+/___/'`"
3735 AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${VLC_SYMBOL}", [String suffix for module functions])
3736 AC_DEFINE_UNQUOTED(MODULE_SYMBOL, ${VLC_SYMBOL}, [Symbol suffix for module functions])
3737 AC_DEFINE_UNQUOTED(LIBEXT, "${LIBEXT}", [Dynamic object extension])
3738
3739 DATA_PATH="${ac_tool_prefix}/share/vlc"
3740 AC_SUBST(DATA_PATH)
3741 PLUGIN_PATH="${ac_tool_prefix}/lib/vlc"
3742 AC_SUBST(PLUGIN_PATH)
3743
3744 dnl
3745 dnl  Handle substvars that use $(top_srcdir)
3746 dnl
3747 VLC_CONFIG="top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config"
3748 AC_SUBST(VLC_CONFIG)
3749 CPPFLAGS_save="${CPPFLAGS_save} -I\$(top_srcdir)/include"
3750
3751 dnl
3752 dnl  Restore *FLAGS
3753 dnl
3754 AX_RESTORE_FLAGS
3755
3756 dnl
3757 dnl  Create the vlc-config script
3758 dnl
3759 LDFLAGS_libvlc="${LDFLAGS_vlc} ${LDFLAGS_builtin}"
3760 for i in `echo "${BUILTINS}" | sed -e 's@[^ ]*/@@g'` ; do LDFLAGS_libvlc="${LDFLAGS_libvlc} ${libdir}/vlc/${i}.a `eval echo '$'{LDFLAGS_${i}}`" ; done
3761
3762 dnl
3763 dnl  Configuration is finished
3764 dnl
3765 AC_SUBST(SYS)
3766 AC_SUBST(ARCH)
3767 AC_SUBST(ALIASES)
3768 AC_SUBST(ASM)
3769 AC_SUBST(MOC)
3770 AC_SUBST(WINDRES)
3771 AC_SUBST(XPIDL)
3772 AC_SUBST(XPIDL_INCL)
3773 AC_SUBST(LIBEXT)
3774 AC_SUBST(INCLUDES)
3775 AC_SUBST(ALL_LINGUAS)
3776
3777 dnl Import substitutions generated by bootstrap
3778 AX_VLC_SUBSTS
3779
3780 dnl Create vlc-config.in
3781 AX_OUTPUT_VLC_CONFIG_IN
3782
3783 AC_CONFIG_FILES([
3784   Makefile
3785   autotools/Makefile
3786   debian/Makefile
3787   doc/Makefile
3788   intl/Makefile
3789   ipkg/Makefile
3790   lib/Makefile
3791   modules/Makefile
3792   mozilla/Makefile
3793   m4/Makefile
3794   po/Makefile.in
3795   share/Makefile
3796   src/Makefile
3797 ])
3798
3799 AC_CONFIG_FILES([
3800   modules/access/Makefile
3801   modules/access/dshow/Makefile
3802   modules/access/dvb/Makefile
3803   modules/access/dvd/Makefile
3804   modules/access/dvdplay/Makefile
3805   modules/access/dvdread/Makefile
3806   modules/access/mms/Makefile
3807   modules/access/pvr/Makefile
3808   modules/access/satellite/Makefile
3809   modules/access/v4l/Makefile
3810   modules/access/cdda/Makefile
3811   modules/access/vcd/Makefile
3812   modules/access/vcdx/Makefile
3813   modules/access_output/Makefile
3814   modules/audio_filter/Makefile
3815   modules/audio_filter/channel_mixer/Makefile
3816   modules/audio_filter/converter/Makefile
3817   modules/audio_filter/resampler/Makefile
3818   modules/audio_mixer/Makefile
3819   modules/audio_output/Makefile
3820   modules/codec/Makefile
3821   modules/codec/cmml/Makefile
3822   modules/codec/ffmpeg/Makefile
3823   modules/codec/ffmpeg/postprocessing/Makefile
3824   modules/codec/ogt/Makefile
3825   modules/codec/spudec/Makefile
3826   modules/control/Makefile
3827   modules/control/corba/Makefile
3828   modules/demux/Makefile
3829   modules/demux/asf/Makefile
3830   modules/demux/avi/Makefile
3831   modules/demux/mp4/Makefile
3832   modules/demux/mpeg/Makefile
3833   modules/demux/playlist/Makefile
3834   modules/demux/util/Makefile
3835   modules/gui/Makefile
3836   modules/gui/beos/Makefile
3837   modules/gui/pda/Makefile
3838   modules/gui/gtk/Makefile
3839   modules/gui/gtk2/Makefile
3840   modules/gui/kde/Makefile
3841   modules/gui/macosx/Makefile
3842   modules/gui/ncurses/Makefile
3843   modules/gui/qnx/Makefile
3844   modules/gui/qt/Makefile
3845   modules/gui/skins/Makefile
3846   modules/gui/skins2/Makefile
3847   modules/gui/wxwindows/Makefile
3848   modules/misc/Makefile
3849   modules/misc/dummy/Makefile
3850   modules/misc/memcpy/Makefile
3851   modules/misc/network/Makefile
3852   modules/misc/testsuite/Makefile
3853   modules/misc/playlist/Makefile
3854   modules/mux/Makefile
3855   modules/mux/mpeg/Makefile
3856   modules/packetizer/Makefile
3857   modules/stream_out/Makefile
3858   modules/stream_out/transrate/Makefile
3859   modules/video_chroma/Makefile
3860   modules/video_filter/Makefile
3861   modules/video_output/Makefile
3862   modules/video_output/directx/Makefile
3863   modules/video_output/qte/Makefile
3864   modules/video_output/x11/Makefile
3865   modules/visualization/Makefile
3866   modules/visualization/visual/Makefile
3867 ])
3868
3869 AC_CONFIG_FILES([vlc-config], [chmod 0755 vlc-config])
3870
3871 dnl Generate makefiles
3872 AC_OUTPUT
3873
3874 printf "
3875 vlc configuration
3876 --------------------
3877 vlc version           : ${VERSION}
3878 system                : ${SYS}
3879 architecture          : ${ARCH}
3880 build flavour         : "
3881 test "${enable_debug}" = "yes" && printf "debug "
3882 test "${enable_cprof}" = "yes" && printf "cprof "
3883 test "${enable_gprof}" = "yes" && printf "gprof "
3884 test "${enable_optimizations}" = "yes" && printf "optim "
3885 test "${enable_release}" = "yes" && printf "release " || printf "devel "
3886 echo "
3887 vlc aliases           :${ALIASES}
3888
3889 You can tune the compiler flags in vlc-config.
3890 To build vlc and its plugins, type \`make'.
3891 "
3892