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