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