]> git.sesse.net Git - vlc/blob - configure.ac
* all: changed dtd version to 1.99 before the final dtd freeze
[vlc] / configure.ac
1 dnl Autoconf settings for vlc
2 dnl $Id: configure.ac,v 1.186 2004/02/29 19:28:10 gbazin Exp $
3
4 AC_INIT(vlc,0.7.1)
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.1)
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 httpd 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 httpd 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 httpd vlc],[-lnsl])
327   ],[
328     AC_CHECK_LIB(bind,gethostbyname,[
329       AX_ADD_LDFLAGS([ipv4 access_mms httpd],[-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 httpd],[-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 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([scope])
894 AX_ADD_PLUGINS([i420_rgb i420_yuy2 i422_yuy2 i420_ymga])
895 AX_ADD_PLUGINS([id3 m3u playlist export])
896 AX_ADD_PLUGINS([rawvideo])
897 AX_ADD_PLUGINS([wav araw demuxdump demuxsub adpcm a52sys dtssys au])
898 AX_ADD_PLUGINS([access_file access_udp access_tcp access_http ipv4 access_mms])
899 AX_ADD_PLUGINS([access_ftp access_directory sap httpd http])
900
901 dnl
902 dnl  Switch to enable a version of VLC where most modules will be builtin
903 dnl
904 AC_ARG_ENABLE(mostly-builtin,
905 [  --enable-mostly-builtin most modules will be built-in (default disabled)])
906 if test "${enable_mostly_builtin}" = "yes"; then
907   AX_ADD_BUILTINS([${PLUGINS}])
908   PLUGINS=""
909 fi
910
911 dnl
912 dnl Some plugins aren't useful on some platforms
913 dnl
914 if test "${SYS}" != "mingw32"; then
915     AX_ADD_PLUGINS([screensaver])
916 else
917     AX_ADD_PLUGINS([ntservice])
918 fi
919
920 dnl
921 dnl  Accelerated modules
922 dnl
923 MMX_MODULES="memcpymmx i420_rgb_mmx i422_yuy2_mmx i420_ymga_mmx"
924 #MMX_MODULES="${MMX_MODULES} idctmmx motionmmx"
925 MMXEXT_MODULES="memcpymmxext"
926 #MMXEXT_MODULES="${MMXEXT_MODULES} idctmmxext motionmmxext"
927 THREEDNOW_MODULES="memcpy3dn"
928 SSE_MODULES=""
929 ALTIVEC_MODULES="memcpyaltivec i420_yuy2_altivec"
930 #ALTIVEC_MODULES="${ALTIVEC_MODULES} idctaltivec motionaltivec"
931
932 if test "${enable_gprof}" != "yes"
933 then
934   MMX_MODULES="${MMX_MODULES} i420_yuy2_mmx"
935 fi
936
937 AC_CACHE_CHECK([if \$CC groks MMX inline assembly],
938     [ac_cv_mmx_inline],
939     [CFLAGS="${CFLAGS_save}"
940      AC_TRY_COMPILE(,[void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p));],
941                     ac_cv_mmx_inline=yes, ac_cv_mmx_inline=no)])
942 if test "${ac_cv_mmx_inline}" != "no"; then
943   AC_DEFINE(CAN_COMPILE_MMX, 1, Define if \$CC groks MMX inline assembly.)
944   ACCEL_MODULES="${ACCEL_MODULES} ${MMX_MODULES}"
945 fi
946
947 AC_CACHE_CHECK([if \$CC groks MMX EXT inline assembly],
948     [ac_cv_mmxext_inline],
949     [CFLAGS="${CFLAGS_save}"
950      AC_TRY_COMPILE(,[void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p));],
951                     ac_cv_mmxext_inline=yes, ac_cv_mmxext_inline=no)])
952 if test "${ac_cv_mmxext_inline}" != "no"; then
953   AC_DEFINE(CAN_COMPILE_MMXEXT, 1, Define if \$CC groks MMX EXT inline assembly.)
954   ACCEL_MODULES="${ACCEL_MODULES} ${MMXEXT_MODULES}"
955 fi
956
957 AC_CACHE_CHECK([if \$CC groks 3D Now! inline assembly],
958     [ac_cv_3dnow_inline],
959     [CFLAGS="${CFLAGS_save}"
960      AC_TRY_COMPILE(,[void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p));],
961                     ac_cv_3dnow_inline=yes, ac_cv_3dnow_inline=no)])
962 if test "${ac_cv_3dnow_inline}" != "no"; then
963   AC_DEFINE(CAN_COMPILE_3DNOW, 1, Define if \$CC groks 3D Now! inline assembly.)
964   ACCEL_MODULES="${ACCEL_MODULES} ${THREEDNOW_MODULES}"
965 fi
966
967 AC_CACHE_CHECK([if \$CC groks SSE inline assembly],
968     [ac_cv_sse_inline],
969     [CFLAGS="${CFLAGS_save}"
970      AC_TRY_COMPILE(,[void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p));],
971                     ac_cv_sse_inline=yes, ac_cv_sse_inline=no)])
972 if test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "mingw32"; then
973   AC_DEFINE(CAN_COMPILE_SSE, 1, Define if \$CC groks SSE inline assembly.)
974   ACCEL_MODULES="${ACCEL_MODULES} ${SSE_MODULES}"
975 fi
976
977 if test "${SYS}" != "mingw32"; then
978 AC_CACHE_CHECK([if \$CC groks AltiVec inline assembly],
979     [ac_cv_altivec_inline],
980     [CFLAGS="${CFLAGS_save}"
981      AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
982          ac_cv_altivec_inline=yes,
983          [CFLAGS="${CFLAGS_save} -Wa,-m7400"
984           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
985             [ac_cv_altivec_inline="-Wa,-m7400"],
986             ac_cv_altivec_inline=no)
987          ])])
988 if test "${ac_cv_altivec_inline}" != "no"; then
989   AC_DEFINE(CAN_COMPILE_ALTIVEC, 1, Define if \$CC groks AltiVec inline assembly.)
990   if test "${ac_cv_altivec_inline}" != "yes"; then
991     AX_ADD_CFLAGS([idctaltivec],[${ac_cv_altivec_inline}])
992     AX_ADD_CFLAGS([motionaltivec],[${ac_cv_altivec_inline}])
993     AX_ADD_CFLAGS([memcpyaltivec],[${ac_cv_altivec_inline}])
994     AX_ADD_CFLAGS([vlc],[${ac_cv_altivec_inline}])
995   fi
996   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
997 fi
998
999 AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1000     [ac_cv_c_altivec],
1001     [CFLAGS="${CFLAGS_save} -faltivec"
1002      # Darwin test
1003      AC_TRY_COMPILE(,[vec_mtvscr((vector unsigned int)(0));],
1004         ac_cv_c_altivec=-faltivec, [
1005         # Linux/PPC test
1006         CFLAGS="${CFLAGS_save} ${CFLAGS_idctaltivec} -fvec"
1007         AC_TRY_COMPILE(,[vec_mtvscr((vector unsigned int)(0));],
1008             [ac_cv_c_altivec="-fvec"], ac_cv_c_altivec=no)
1009         ])
1010      CFLAGS="${CFLAGS_save}"])
1011 if test "${ac_cv_c_altivec}" != "no"; then
1012   AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, Define if your compiler groks C AltiVec extensions.)
1013   AX_ADD_CFLAGS([vlc idctaltivec motionaltivec memcpyaltivec deinterlace i420_yuy2_altivec],[${ac_cv_c_altivec}])
1014   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
1015 fi
1016
1017 AC_CACHE_CHECK([if linker needs -framework vecLib],
1018     [ac_cv_ld_altivec],
1019     [LDFLAGS="${LDFLAGS_vlc} -framework vecLib"
1020      AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)
1021      LDFLAGS="${LDFLAGS_save}"
1022     ])
1023 if test "${ac_cv_ld_altivec}" != "no"; then
1024   AX_ADD_LDFLAGS([vlc idctaltivec motionaltivec memcpyaltivec],[-framework vecLib])
1025 fi
1026 fi # end "${SYS}" != "mingw32"
1027
1028 AC_ARG_WITH(,[])
1029 AC_ARG_WITH(,[Optimization options:])
1030
1031 dnl
1032 dnl  Special arch tuning
1033 dnl
1034 AC_ARG_WITH(tuning,
1035 [  --with-tuning=ARCH      enable special tuning for an architecture
1036                           (default i686 on IA-32 and 750 on PPC)])
1037 if test -n "${with_tuning}"; then
1038     if test "${target_cpu}" = "powerpc"; then
1039         CFLAGS_TUNING="-mtune=${with_tuning}"
1040     else
1041         CFLAGS_TUNING="-mcpu=${with_tuning}"
1042     fi
1043 else
1044     if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "i486" -o "${target_cpu}" = "i386"; then
1045         CFLAGS_TUNING="-mcpu=pentiumpro"
1046     else
1047         if test "${target_cpu}" = "powerpc"; then CFLAGS_TUNING="-mtune=750"; fi
1048     fi
1049 fi
1050
1051 dnl
1052 dnl  x86 accelerations
1053 dnl
1054 if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "x86" -o "${target_cpu}" = "i386"
1055 then
1056     ARCH="${ARCH} mmx"
1057     AX_ADD_BUILTINS([${ACCEL_MODULES}])
1058 fi
1059
1060 dnl
1061 dnl  Enable/disable optimizations
1062 dnl
1063 AC_ARG_ENABLE(optimizations,
1064 [  --disable-optimizations disable compiler optimizations (default enabled)])
1065 test "${enable_optimizations}" != "no" && enable_optimizations="yes"
1066
1067 dnl
1068 dnl  AltiVec acceleration
1069 dnl
1070 AC_ARG_ENABLE(altivec,
1071 [  --disable-altivec       disable AltiVec optimizations (default enabled on PPC)],
1072 [ if test "${enable_altivec}" = "yes"; then ARCH="${ARCH} altivec";
1073     AX_ADD_BUILTINS([${ACCEL_MODULES}]) fi ],
1074 [ if test "${target_cpu}" = "powerpc"; then ARCH="${ARCH} altivec";
1075     AX_ADD_BUILTINS([${ACCEL_MODULES}]) fi ])
1076
1077 dnl
1078 dnl  Debugging mode
1079 dnl
1080 AC_ARG_ENABLE(debug,
1081 [  --enable-debug          debug mode (default disabled)])
1082 test "${enable_debug}" != "yes" && enable_debug="no"
1083
1084 dnl
1085 dnl  Enable release-specific flags
1086 dnl
1087 AC_ARG_ENABLE(release,
1088 [  --enable-release        activate extra optimizations (default disabled)])
1089 test "${enable_release}" != "yes" && enable_release="no"
1090
1091 dnl
1092 dnl Stream output
1093 dnl
1094 AC_ARG_ENABLE(sout,
1095   [  --enable-sout           Stream output modules (default enabled)])
1096 if test "${enable_sout}" != "no"
1097 then
1098   AX_ADD_PLUGINS([access_output_dummy access_output_udp access_output_file access_output_http])
1099   AX_ADD_PLUGINS([mux_ts mux_ps mux_avi mux_mp4 mux_asf mux_dummy])
1100   AX_ADD_PLUGINS([packetizer_mpegvideo])
1101   AX_ADD_PLUGINS([packetizer_mpeg4video packetizer_mpeg4audio])
1102   AX_ADD_PLUGINS([packetizer_copy])
1103
1104   AX_ADD_PLUGINS([stream_out_dummy stream_out_standard stream_out_es stream_out_rtp])
1105   AX_ADD_PLUGINS([stream_out_duplicate stream_out_display stream_out_gather])
1106 #  AX_ADD_PLUGINS([stream_out_transrate])
1107
1108   dnl Ogg and vorbis are handled in their respective section
1109 fi
1110
1111
1112 dnl
1113 dnl  Input plugins
1114 dnl
1115
1116 AC_ARG_WITH(,[Input plugins:])
1117
1118 dnl
1119 dnl  live.com input
1120 dnl
1121 AC_ARG_ENABLE(livedotcom,
1122 [  --enable-livedotcom     live.com input plugin (default disabled)])
1123 if test "${enable_livedotcom}" = "yes"; then
1124   AC_ARG_WITH(livedotcom-tree,
1125     [    --with-livedotcom-tree=PATH live.com tree for static linking])
1126
1127   dnl
1128   dnl test for --with-livedotcom-tree
1129   dnl
1130   if test -z "${with_livedotcom_tree}"; then
1131     AC_LANG_PUSH(C++)
1132     CPPFLAGS_save="${CPPFLAGS}"
1133     CPPFLAGS_livedotcom="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
1134     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_livedotcom}"
1135     AC_CHECK_HEADERS(liveMedia.hh, [
1136       AX_ADD_CXXFLAGS([livedotcom], [${CPPFLAGS_livedotcom}])
1137       AC_CHECK_LIB(liveMedia_pic, main, [
1138         # We have -lliveMedia_pic, build plugins
1139         AX_ADD_PLUGINS([livedotcom])
1140         AX_ADD_LDFLAGS([livedotcom], [-lliveMedia_pic -lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic])
1141       ], [
1142         AC_CHECK_LIB(liveMedia, main, [
1143           # We only have -lliveMedia, do builtins
1144           AX_ADD_BUILTINS([livedotcom])
1145           AX_ADD_LDFLAGS([livedotcom], [-lliveMedia -lgroupsock -lBasicUsageEnvironment -lUsageEnvironment])
1146         ])
1147       ])
1148       if test "${SYS}" = "mingw32"; then
1149         # add ws2_32 for closesocket, select, recv
1150         AX_ADD_LDFLAGS([livedotcom],[-lws2_32])
1151       fi
1152     ])
1153     CPPFLAGS="${CPPFLAGS_save}"
1154     AC_LANG_POP(C++)
1155   else
1156     AC_MSG_CHECKING(for liveMedia/libliveMedia.a in ${with_livedotcom_tree})
1157     real_livedotcom_tree="`cd ${with_livedotcom_tree} 2>/dev/null && pwd`"
1158     if test -z "${real_livedotcom_tree}"; then
1159       dnl  The given directory can't be found
1160       AC_MSG_RESULT(no)
1161       AC_MSG_ERROR([cannot cd to ${with_livedotcom_tree}])
1162     fi
1163     if test -f "${real_livedotcom_tree}/liveMedia/libliveMedia.a"; then
1164       AC_MSG_RESULT(${real_livedotcom_tree}/liveMedia/libliveMedia.a)
1165
1166       AX_ADD_BUILTINS([livedotcom])
1167
1168       if test "${SYS}" = "mingw32"; then
1169         # add ws2_32 for closesocket, select, recv
1170         AX_ADD_LDFLAGS([livedotcom],[-lws2_32])
1171       fi
1172
1173       AX_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/liveMedia -lliveMedia])
1174       AX_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/BasicUsageEnvironment -lBasicUsageEnvironment])
1175       AX_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/groupsock -lgroupsock])
1176       AX_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/UsageEnvironment -lUsageEnvironment])
1177
1178       AX_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/BasicUsageEnvironment/include])
1179       AX_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/groupsock/include])
1180       AX_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/liveMedia/include])
1181       AX_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/UsageEnvironment/include ])
1182     else
1183       dnl  The given live.com wasn't built
1184       AC_MSG_RESULT(no)
1185       AC_MSG_ERROR([cannot find ${real_livedotcom_tree}/liveMedia/libliveMedia.a, make sure you compiled live.com in ${with_livedotcom_tree}])
1186     fi
1187   fi
1188 fi
1189
1190
1191
1192 dnl
1193 dnl  DVD module: optionally check for installed libdvdcss
1194 dnl
1195 AC_ARG_ENABLE(dvd,
1196 [  --enable-dvd            DVD input module (default enabled)])
1197 if test "${enable_dvd}" != "no"
1198 then
1199   AC_ARG_WITH(dvdcss,
1200   [    --with-dvdcss=PATH    libdvdcss headers and libraries])
1201   AC_ARG_WITH(dvdcss-tree,
1202   [    --with-dvdcss-tree=PATH libdvdcss tree for static linking])
1203   case "${with_dvdcss}" in
1204   ""|yes)
1205     if test -z "${with_dvdcss_tree}"
1206     then
1207       AC_CHECK_HEADERS(dvdcss/dvdcss.h,
1208         [ AX_ADD_PLUGINS([dvd])
1209           AX_ADD_LDFLAGS([dvd dvdcss],[-ldvdcss])],
1210         [ 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.])
1211           AC_MSG_ERROR([cannot find libdvdcss headers]) ])
1212     else
1213       AC_MSG_CHECKING(for libdvdcss.a in ${with_dvdcss_tree})
1214       real_dvdcss_tree="`cd ${with_dvdcss_tree} 2>/dev/null && pwd`"
1215       if test -z "${real_dvdcss_tree}"
1216       then
1217         dnl  The given directory can't be found
1218         AC_MSG_RESULT(no)
1219         AC_MSG_ERROR([cannot cd to ${with_dvdcss_tree}])
1220       fi
1221       if test -f "${real_dvdcss_tree}/src/.libs/libdvdcss.a"
1222       then
1223         dnl  Use a custom libdvdcss
1224         AC_MSG_RESULT(${real_dvdcss_tree}/src/.libs/libdvdcss.a)
1225         AX_ADD_BUILTINS([dvd])
1226         AX_ADD_LDFLAGS([dvd dvdcss],[-L${real_dvdcss_tree}/src/.libs -ldvdcss])
1227         AX_ADD_CPPFLAGS([dvd],[-I${real_dvdcss_tree}/src])
1228       else
1229         dnl  The given libdvdcss wasn't built
1230         AC_MSG_RESULT(no)
1231         AC_MSG_ERROR([cannot find ${real_dvdcss_tree}/src/.libs/libdvdcss.a, make sure you compiled libdvdcss in ${with_dvdcss_tree}])
1232       fi
1233     fi
1234   ;;
1235   no)
1236     dnl  Compile without dvdcss (dlopen version, works only under Linux)
1237     AX_ADD_PLUGINS([dvd])
1238     AX_ADD_CPPFLAGS([dvd],[-DGOD_DAMN_DMCA])
1239     AX_ADD_LDFLAGS([dvd],[-ldl])
1240   ;;
1241   *)
1242     AC_MSG_CHECKING(for dvdcss headers in ${with_dvdcss})
1243     if test -f ${with_dvdcss}/include/dvdcss/dvdcss.h
1244     then
1245       dnl  Use ${with_dvdcss}/include/dvdcss/dvdcss.h
1246       AC_MSG_RESULT(yes)
1247       AX_ADD_PLUGINS([dvd])
1248       AX_ADD_LDFLAGS([dvd dvdcss],[-L${with_dvdcss}/lib -ldvdcss])
1249       AX_ADD_CPPFLAGS([dvd],[-I${with_dvdcss}/include])
1250     else
1251       dnl  No libdvdcss could be found, sorry
1252       AC_MSG_RESULT(no)
1253       AC_MSG_ERROR([cannot find ${with_dvdcss}/include/dvdcss/dvdcss.h])
1254     fi
1255   ;;
1256   esac
1257 fi
1258
1259 dnl
1260 dnl dvdread module: check for libdvdread
1261 dnl
1262 AC_ARG_ENABLE(dvdread,
1263 [  --enable-dvdread        dvdread input module (default disabled)])
1264 if test "${enable_dvdread}" != "no"
1265 then
1266   AC_ARG_WITH(dvdread,
1267   [    --with-dvdread=PATH    libdvdread headers and libraries])
1268   AC_ARG_WITH(dvdread-tree,
1269   [    --with-dvdread-tree=PATH libdvdread tree for static linking])
1270   if test -z "${with_dvdread}"
1271   then
1272     if test -z "${with_dvdread_tree}"
1273     then
1274       AC_CHECK_HEADERS(dvdread/dvd_reader.h,
1275         [ AX_ADD_PLUGINS([dvdread])
1276           AX_ADD_LDFLAGS([dvdread],[-ldvdread ${LDFLAGS_dvdcss}])
1277         ],[
1278           if test -n "${enable_dvdread}"
1279           then
1280             AC_MSG_WARN([Please get libdvdread from http://www.dtek.chalmers.se/groups/dvd/downloads.shtml])
1281             AC_MSG_ERROR([cannot find libdvdread headers])
1282           fi
1283         ])
1284     else
1285       AC_MSG_CHECKING(for libdvdread.a in ${with_dvdread_tree})
1286       real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`"
1287       if test -z "${real_dvdread_tree}"
1288       then
1289         dnl  The given directory can't be found
1290         AC_MSG_RESULT(no)
1291         AC_MSG_ERROR([cannot cd to ${with_dvdread_tree}])
1292       fi
1293       if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a"
1294       then
1295         dnl  Use a custom libdvdread
1296         AC_MSG_RESULT(${real_dvdread_tree}/dvdread/.libs/libdvdread.a)
1297         AX_ADD_BUILTINS([dvdread])
1298         AX_ADD_LDFLAGS([dvdread],[-L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LDFLAGS_dvdcss}])
1299         AX_ADD_CPPFLAGS([dvdread],[-I${real_dvdread_tree}])
1300       else
1301         dnl  The given libdvdread wasn't built
1302         AC_MSG_RESULT(no)
1303         AC_MSG_ERROR([cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}])
1304       fi
1305     fi
1306   else
1307     AC_MSG_CHECKING(for dvdread headers in ${with_dvdread})
1308     if test -f ${with_dvdread}/include/dvdread/dvd_reader.h
1309     then
1310       dnl  Use ${with_dvdread}/include/dvdread/dvd_reader.h
1311       AC_MSG_RESULT(yes)
1312       AX_ADD_PLUGINS([dvdread])
1313       AX_ADD_LDFLAGS([dvdread],[-L${with_dvdread}/lib -ldvdread ${LDFLAGS_dvdcss}])
1314       AX_ADD_CPPFLAGS([dvdread],[-I${with_dvdread}/include])
1315     else
1316       dnl  No libdvdread could be found, sorry
1317       AC_MSG_RESULT(no)
1318       AC_MSG_ERROR([cannot find ${with_dvdread}/include/dvdread/dvd_reader.h])
1319     fi
1320   fi
1321 fi
1322
1323 dnl
1324 dnl dvdplay module: check for libdvdplay
1325 dnl
1326 AC_ARG_ENABLE(dvdplay,
1327 [  --enable-dvdplay        dvdplay input module (default enabled)])
1328 if test "${enable_dvdplay}" != "no"
1329 then
1330   AC_ARG_WITH(dvdplay,
1331   [    --with-dvdplay=PATH    libdvdplay headers and libraries])
1332   AC_ARG_WITH(dvdplay-tree,
1333   [    --with-dvdplay-tree=PATH libdvdplay tree for static linking])
1334   if test -z "${with_dvdplay}"
1335   then
1336     if test -z "${with_dvdplay_tree}"
1337     then
1338       AC_CHECK_HEADERS(dvdplay/dvdplay.h,[
1339           AX_ADD_PLUGINS([dvdplay])
1340           AX_ADD_LDFLAGS([dvdplay],[-ldvdplay ${LDFLAGS_dvdread} ${LDFLAGS_dvdcss}])
1341           AX_ADD_CPPFLAGS([dvdplay],[${CPPFLAGS_dvdread}])
1342         ],[
1343           if test -n "${enable_dvdplay}"
1344           then
1345             AC_MSG_WARN([Please get libdvdplay from http://www.videolan.org/.])
1346             AC_MSG_ERROR([cannot find libdvdplay headers])
1347           fi
1348         ])
1349     else
1350       AC_MSG_CHECKING(for libdvdplay.a in ${with_dvdplay_tree})
1351       real_dvdplay_tree="`cd ${with_dvdplay_tree} 2>/dev/null && pwd`"
1352       if test -z "${real_dvdplay_tree}"
1353       then
1354         dnl  The given directory can't be found
1355         AC_MSG_RESULT(no)
1356         AC_MSG_ERROR([cannot cd to ${with_dvdplay_tree}])
1357       fi
1358       if test -f "${real_dvdplay_tree}/src/.libs/libdvdplay.a"
1359       then
1360         dnl  Use a custom libdvdplay
1361         AC_MSG_RESULT(${real_dvdplay_tree}/src/.libs/libdvdplay.a)
1362         AX_ADD_BUILTINS([dvdplay])
1363         AX_ADD_LDFLAGS([dvdplay],[-L${real_dvdplay_tree}/src/.libs -ldvdplay ${LDFLAGS_dvdread} ${LDFLAGS_dvdcss}])
1364         AX_ADD_CPPFLAGS([dvdplay],[${CPPFLAGS_dvdread} -I${real_dvdplay_tree}/src])
1365       else
1366         dnl  The given libdvdplay wasn't built
1367         AC_MSG_RESULT(no)
1368         AC_MSG_ERROR([cannot find ${real_dvdplay_tree}/src/.libs/libdvdplay.a, make sure you compiled libdvdplay in ${with_dvdplay_tree}])
1369       fi
1370     fi
1371   else
1372     AC_MSG_CHECKING(for dvdplay headers in ${with_dvdplay})
1373     if test -f "${with_dvdplay}/include/dvdplay/dvdplay.h"
1374     then
1375       dnl  Use ${with_dvdplay}/include/dvdplay/dvdplay.h
1376       AC_MSG_RESULT(yes)
1377       AX_ADD_PLUGINS([dvdplay])
1378       AX_ADD_LDFLAGS([dvdplay],[-L${with_dvdplay}/lib -ldvdplay ${LDFLAGS_dvdread} ${LDFLAGS_dvdcss}])
1379       AX_ADD_CPPFLAGS([dvdplay],[${CPPFLAGS_dvdread} -I${with_dvdplay}/include])
1380     else
1381       dnl  No libdvdplay could be found, sorry
1382       AC_MSG_RESULT(no)
1383       AC_MSG_ERROR([cannot find ${with_dvdplay}/include/dvdplay/dvdplay.h])
1384     fi
1385   fi
1386 fi
1387
1388 dnl
1389 dnl  libdvdnav plugin
1390 dnl
1391 AC_ARG_ENABLE(dvdnav,
1392   [  --enable-dvdnav         dvdnav input module (default enabled)])
1393 if test "${enable_caca}" != "no"
1394 then
1395   DVDNAV_PATH="${PATH}"
1396   AC_ARG_WITH(dvdnav-config-path,
1397     [    --with-dvdnav-config-path=PATH dvdnav-config path (default search in \$PATH)],
1398     [ if test "${with_dvdnav_config_path}" != "no"
1399       then
1400         DVDNAV_PATH="${with_dvdnav_config_path}:${PATH}"
1401       fi ])
1402   AC_PATH_PROG(DVDNAV_CONFIG, dvdnav-config, no, ${DVDNAV_PATH})
1403   if test "${DVDNAV_CONFIG}" != "no"
1404   then
1405     AX_ADD_PLUGINS([dvdnav])
1406     AX_ADD_CFLAGS([dvdnav],[`${DVDNAV_CONFIG} --cflags`])
1407     AX_ADD_LDFLAGS([dvdnav],[`${DVDNAV_CONFIG} --libs`])
1408   fi
1409 fi
1410
1411 dnl
1412 dnl  Windows DirectShow access module
1413 dnl
1414 AC_ARG_ENABLE(dshow,
1415   [  --enable-dshow          Win32 DirectShow support (default enabled on Win32)])
1416 if test "${enable_dshow}" != "no"
1417 then
1418   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
1419   then
1420       AC_CHECK_HEADERS(dshow.h,
1421       [ AX_ADD_PLUGINS([dshow])
1422         AX_ADD_CXXFLAGS([dshow],[])
1423         AX_ADD_LDFLAGS([dshow],[-lole32 -loleaut32]) ])
1424   fi
1425 fi
1426
1427 dnl
1428 dnl  libdvbpsi ts demux/mux
1429 dnl
1430 AC_ARG_ENABLE(dvbpsi,
1431 [  --enable-dvbpsi         dvbpsi ts mux and demux module (default enabled)])
1432 if test "${enable_dvbpsi}" != "no"
1433 then
1434   AC_ARG_WITH(dvbpsi,
1435   [    --with-dvbpsi=PATH    libdvbpsi headers and libraries])
1436   AC_ARG_WITH(dvbpsi,
1437   [    --with-dvbpsi-tree=PATH libdvbpsi tree for static linking])
1438   case "${with_dvbpsi}" in
1439   ""|yes)
1440     if test -z "${with_dvbpsi_tree}"
1441     then
1442       AC_CHECK_HEADERS(dvbpsi/dr.h,
1443         [ AX_ADD_PLUGINS([ts_dvbpsi mux_ts_dvbpsi ts2])
1444           AX_ADD_LDFLAGS([ts_dvbpsi mux_ts_dvbpsi ts2],[-ldvbpsi]) ],
1445         [  AC_MSG_WARN([cannot find libdvbpsi headers]) ],
1446         [#if defined( HAVE_STDINT_H )
1447 #   include <stdint.h>
1448 #elif defined( HAVE_INTTYPES_H )
1449 #   include <inttypes.h>
1450 #endif
1451 #include <dvbpsi/dvbpsi.h>
1452 #include <dvbpsi/descriptor.h>
1453 #include <dvbpsi/pat.h>
1454 #include <dvbpsi/pmt.h>])
1455     else
1456       AC_MSG_CHECKING(for libdvbpsi.a in ${with_dvbpsi_tree})
1457       real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
1458       if test -z "${real_dvbpsi_tree}"
1459       then
1460         dnl  The given directory can't be found
1461         AC_MSG_RESULT(no)
1462         AC_MSG_ERROR([cannot cd to ${with_dvbpsi_tree}])
1463       fi
1464       if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
1465       then
1466         dnl  Use a custom libdvbpsi
1467         AC_MSG_RESULT(${real_dvbpsi_tree}/src/.libs/libdvbpsi.a)
1468         AX_ADD_BUILTINS([ts_dvbpsi mux_ts_dvbpsi ts2])
1469         AX_ADD_CPPFLAGS([ts_dvbpsi mux_ts_dvbpsi ts2],[-I${real_dvbpsi_tree}/src])
1470         AX_ADD_LDFLAGS([ts_dvbpsi mux_ts_dvbpsi ts2],[-L${real_dvbpsi_tree}/src/.libs -ldvbpsi])
1471       else
1472         dnl  The given libdvbpsi wasn't built
1473         AC_MSG_RESULT(no)
1474         AC_MSG_ERROR([cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}])
1475       fi
1476     fi
1477   ;;
1478   no)
1479     dnl  Compile without dvbpsi
1480   ;;
1481   *)
1482     AC_MSG_CHECKING(for dvbpsi headers in ${with_dvbpsi})
1483     if test -z "${with_dvbpsi}"
1484     then
1485       LDFLAGS_test=""
1486       CPPFLAGS_test=""
1487     else
1488       LDFLAGS_test="-L${with_dvbpsi}/lib"
1489       CPPFLAGS_test="-I${with_dvbpsi}/include"
1490     fi
1491     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}"
1492     AC_CHECK_HEADERS([dvbpsi/dr.h],[
1493       AX_ADD_PLUGINS([ts_dvbpsi mux_ts_dvbpsi ts2])
1494       AX_ADD_CPPFLAGS([ts_dvbpsi mux_ts_dvbpsi ts2],[${CPPFLAGS_test}])
1495       AX_ADD_LDFLAGS([ts_dvbpsi mux_ts_dvbpsi ts2],[${LDFLAGS_test} -ldvbpsi])
1496
1497     ],[
1498       if test -n "${enable_dvbpsi}"
1499       then
1500         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])
1501       fi
1502     ])
1503     CPPFLAGS="${CPPFLAGS_save}"
1504   ;;
1505   esac
1506 fi
1507
1508 dnl
1509 dnl  Video4Linux plugin
1510 dnl
1511 AC_ARG_ENABLE(v4l,
1512   [  --enable-v4l            Video4Linux input support (default disabled)])
1513 if test "${enable_v4l}" = "yes"
1514 then
1515   AC_ARG_WITH(v4l,
1516     [    --with-v4l=PATH       path to a v4l-enabled kernel tree],[],[])
1517   if test "${with_v4l}" != "no" -a -n "${with_v4l}"
1518   then
1519     AX_ADD_CPPFLAGS([v4l],[-I${with_v4l}/include])
1520   fi
1521
1522   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l}"
1523   AC_CHECK_HEADERS(linux/videodev.h, [
1524     AX_ADD_PLUGINS([v4l])
1525   ],[])
1526   CPPFLAGS="${CPPFLAGS_save}"
1527 fi
1528
1529 dnl
1530 dnl  special access module for Hauppauge PVR cards
1531 dnl
1532 AC_ARG_ENABLE(pvr,
1533   [  --enable-pvr            PVR cards access module (default disabled)])
1534 if test "${enable_pvr}" = "yes"
1535 then
1536   AX_ADD_PLUGINS([pvr])
1537 fi
1538
1539 dnl
1540 dnl  VCDX and CDDAX modules
1541 dnl
1542 AC_ARG_ENABLE(libcdio,
1543   [  --enable-libcdio        CDDA support via libcdio (default enabled)])
1544
1545 AC_ARG_ENABLE(libcddb,
1546   [  --enable-libcddb        CDDB support for CDDAX (default enabled)])
1547
1548 AC_ARG_ENABLE(vcdx,
1549   [  --enable-vcdx           VCD support with Navigation (default enabled)])
1550
1551 AC_ARG_ENABLE(cdda,           
1552   [  --enable-cdda            CDDA plugin support (default enabled)])
1553
1554 if test "${enable_cddax}" != "no"
1555 then
1556   PKG_CHECK_MODULES(LIBCDIO, libcdio >= 0.65,
1557    [enable_cddax="no"
1558     AC_DEFINE(HAVE_CDDAX, [], [Define for the CD-DA plugin using libcdio])
1559     AX_ADD_LDFLAGS([cddax],[$LIBCDIO_LIBS])
1560     AX_ADD_CFLAGS([cddax],[$LIBCDIO_CFLAGS])
1561     AX_ADD_PLUGINS([cddax])], 
1562    [AC_MSG_WARN(libcdio library not found)
1563    HAVE_CDDAX=no])
1564
1565   if test x$enable_libcddb != no; then
1566     PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.4, [
1567       HAVE_LIBCDDB=yes 
1568       AC_DEFINE(HAVE_LIBCDDB, [], [Define this if you have libcddb installed])
1569       AX_ADD_LDFLAGS([cddax],[$LIBCDDB_LIBS])
1570       AX_ADD_CFLAGS([cddax],[$LIBCDDB_CFLAGS])
1571       ],
1572       [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled) 
1573       HAVE_LIBCDDB=no])
1574   fi
1575
1576   if test "${enable_vcdx}" != "no"
1577   then
1578     PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.20,
1579      [enable_vcd="no"
1580       AC_DEFINE(HAVE_VCDX, [], 
1581       [Define for the VCD plugin using libcdio/libvcdinfo])
1582       AX_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
1583       AX_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
1584       AX_ADD_PLUGINS([vcdx])], 
1585      [AC_MSG_WARN(vcdinfo library not found)
1586      HAVE_VCDX=no])
1587   fi
1588 fi
1589
1590 dnl
1591 dnl  VCD module
1592 dnl
1593 AC_ARG_ENABLE(vcd,
1594   [  --enable-vcd            VCD support for Linux, FreeBSD, MacOS X and Win32 (default enabled)])
1595
1596 if test "${enable_vcd}" != "no"
1597 then
1598   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1599   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1600     AC_MSG_RESULT(yes)
1601     AX_ADD_PLUGINS([vcd cdda])
1602   ],[
1603     AC_MSG_RESULT(no)
1604   ])
1605
1606   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1607   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1608     AC_MSG_RESULT(yes)
1609     AX_ADD_PLUGINS([vcd cdda])
1610     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1611   ],[
1612     AC_MSG_RESULT(no)
1613   ])
1614
1615   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1616   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1617     AC_MSG_RESULT(yes)
1618     AX_ADD_PLUGINS([vcd cdda])
1619     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1620   ],[
1621     AC_MSG_RESULT(no)
1622   ])
1623
1624   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32"
1625   then
1626     AX_ADD_PLUGINS([vcd cdda])
1627   fi
1628
1629   if test "${SYS}" = "darwin"
1630   then
1631     AX_ADD_PLUGINS([vcd cdda])
1632     AX_ADD_LDFLAGS([vcd cdda],[-framework IOKit -framework CoreFoundation])
1633   fi
1634 fi
1635
1636 dnl
1637 dnl  Satellite input module
1638 dnl
1639 AC_ARG_ENABLE(satellite,
1640   [  --enable-satellite      satellite card support (default disabled)],
1641   [ if test "${enable_satellite}" = "yes"
1642     then
1643       AC_DEFINE(HAVE_SATELLITE, [], 
1644       [Define for the VCD plugin using libcdio/libvcdinfo])
1645       AX_ADD_PLUGINS([satellite])
1646     fi])
1647
1648 dnl
1649 dnl  DVB-S/DVB-T/DVB-C satellite/teresterial/cable input using v4l2
1650 dnl
1651 AC_ARG_ENABLE(dvb,
1652   [  --enable-dvb            DVB-S/T/C card support (default disabled)])
1653
1654 if test "${enable_dvb}" = "yes"
1655 then
1656   AC_ARG_WITH(dvb,
1657   [    --with-dvb=PATH       path to a dvb- and v4l2-enabled kernel tree],[],[])
1658   if test "${with_dvb}" != "no" -a -n "${with_dvb}"
1659   then
1660     AX_ADD_CFLAGS([dvb],[-I${with_dvb}/include])
1661   fi
1662   CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include"
1663   AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [
1664     AX_ADD_PLUGINS([dvb])
1665   ],[])
1666   CPPFLAGS="${CPPFLAGS_save}"
1667 fi
1668
1669 dnl
1670 dnl  ipv6 plugin - not for QNX yet
1671 dnl
1672 if test "${SYS}" != "nto" && test "${SYS}" != "mingw32"
1673 then
1674   have_ipv6=false
1675   AC_CHECK_FUNCS(inet_pton,[have_ipv6=:],[
1676     AC_CHECK_LIB(resolv,inet_pton,
1677       [have_ipv6=:
1678        AX_ADD_LDFLAGS([ipv6],[-lresolv])])
1679   ])
1680   AC_MSG_CHECKING(for sockaddr_in6 in netinet/in.h)
1681   AC_EGREP_HEADER(sockaddr_in6,netinet/in.h,
1682     [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no) have_ipv6=false])
1683   if ${have_ipv6}; then
1684     AX_ADD_PLUGINS([ipv6])
1685   fi
1686 fi
1687 if test "${SYS}" = "mingw32"
1688 then
1689   AC_MSG_CHECKING(for getaddrinfo in ws2tcpip.h)
1690   AC_EGREP_HEADER(addrinfo,ws2tcpip.h,[AC_MSG_RESULT(yes)
1691     AX_ADD_PLUGINS([ipv6])],[AC_MSG_RESULT(no)])
1692 fi
1693
1694 dnl
1695 dnl  ogg demux plugin
1696 dnl
1697 AC_ARG_ENABLE(ogg,
1698   [  --enable-ogg            Ogg demux support (default enabled)])
1699 if test "${enable_ogg}" != "no"
1700 then
1701   AC_CHECK_HEADERS(ogg/ogg.h, [
1702     AC_CHECK_LIB( ogg, oggpack_read, [
1703       AX_ADD_PLUGINS([ogg mux_ogg])
1704       AX_ADD_LDFLAGS([ogg mux_ogg],[-logg])])
1705    ],[])
1706 fi
1707
1708 dnl
1709 dnl  matroska demux plugin
1710 dnl
1711 AC_ARG_ENABLE(mkv,
1712   [  --enable-mkv            Matroska demux support (default enabled)])
1713 if test "${enable_mkv}" != "no"; then
1714   AC_LANG_PUSH(C++)
1715   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
1716     AC_CHECK_HEADERS(matroska/KaxVersion.h, [
1717       AC_CHECK_HEADERS(matroska/KaxAttachments.h)
1718       AX_ADD_CXXFLAGS([mkv],[])
1719       AC_CHECK_LIB(ebml_pic, main, [
1720         # We have ebml_pic, that's good, we can build an mkv.so plugin !
1721         AX_ADD_PLUGINS([mkv])
1722         AX_ADD_LDFLAGS([mkv],[-lmatroska_pic -lebml_pic])
1723       ], [
1724         AC_CHECK_LIB(ebml, main, [
1725           # We only have libebml, make mkv.a a builtin
1726           AX_ADD_BUILTINS([mkv])
1727           AX_ADD_LDFLAGS([mkv],[-lmatroska -lebml])
1728         ])
1729       ])
1730     ])
1731   ])
1732   AC_LANG_POP(C++)
1733 fi
1734
1735 dnl
1736 dnl  modplug demux plugin
1737 dnl
1738 AC_ARG_ENABLE(mod,
1739   [  --enable-mod            Mod demux support (default enabled)])
1740 if test "${enable_mod}" != "no"
1741 then
1742   AC_CHECK_HEADERS(libmodplug/modplug.h, [
1743     AX_ADD_PLUGINS([mod])
1744     AX_ADD_CXXFLAGS([mod],[])
1745     AX_ADD_LDFLAGS([mod],[-lmodplug])])
1746 fi
1747
1748 dnl
1749 dnl  Codec plugins
1750 dnl
1751
1752 AC_ARG_WITH(,[Codec plugins:])
1753
1754 dnl
1755 dnl  mad plugin
1756 dnl
1757 AC_ARG_ENABLE(mad,
1758   [  --enable-mad            libmad module (default enabled)])
1759 if test "${enable_mad}" != "no"
1760 then
1761   AC_ARG_WITH(mad,
1762     [    --with-mad=PATH       path to libmad],[],[])
1763   if test "${with_mad}" != "no" -a -n "${with_mad}"
1764   then
1765     AX_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
1766     AX_ADD_LDFLAGS([mpgatofixed32],[-L${with_mad}/lib])
1767   fi
1768
1769   AC_ARG_WITH(mad-tree,
1770     [    --with-mad-tree=PATH  mad tree for static linking],[],[])
1771   if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
1772   then
1773     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
1774     if test -z "${real_mad_tree}"
1775     then
1776       dnl  The given directory can't be found
1777       AC_MSG_RESULT(no)
1778       AC_MSG_ERROR([${with_mad_tree} directory doesn't exist])
1779     fi
1780     dnl  Use a custom libmad
1781     AC_MSG_CHECKING(for mad.h in ${real_mad_tree}/libmad)
1782     if test -f ${real_mad_tree}/libmad/mad.h
1783     then
1784       AC_MSG_RESULT(yes)
1785       AX_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}/libmad])
1786       AX_ADD_LDFLAGS([mpgatofixed32],[-L${real_mad_tree}/libmad/.libs])
1787       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
1788       AC_CHECK_LIB(mad, mad_bit_init, [
1789         AX_ADD_BUILTINS([mpgatofixed32])
1790         AX_ADD_LDFLAGS([mpgatofixed32],[-lmad])
1791         ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ])
1792       ],[])
1793       LDFLAGS="${LDFLAGS_save}"
1794     else
1795       AC_MSG_RESULT(no)
1796       AC_MSG_ERROR([the specified tree doesn't have mad.h])
1797     fi
1798   else
1799     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}"
1800     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
1801     AC_CHECK_HEADERS(mad.h, ,
1802       [ 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.]) ])
1803     AC_CHECK_LIB(mad, mad_bit_init, [
1804       AX_ADD_PLUGINS([mpgatofixed32])
1805       AX_ADD_LDFLAGS([mpgatofixed32],[-lmad])],
1806       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
1807     CPPFLAGS="${CPPFLAGS_save}"
1808     LDFLAGS="${LDFLAGS_save}"
1809   fi
1810 fi
1811
1812 dnl
1813 dnl   libid3tag support
1814 dnl
1815 AC_CHECK_HEADERS(id3tag.h, [
1816   AC_CHECK_HEADERS(zlib.h, [
1817     AX_ADD_LDFLAGS([id3tag],[-lid3tag -lz])
1818     AX_ADD_PLUGINS([id3tag])]) ])
1819
1820 dnl
1821 dnl  ffmpeg decoder/demuxer plugin
1822 dnl
1823 AC_ARG_ENABLE(ffmpeg,
1824 [  --enable-ffmpeg         ffmpeg codec (default enabled)])
1825 if test "${enable_ffmpeg}" != "no"
1826 then
1827   AC_ARG_WITH(ffmpeg-mp3lame,
1828     [    --with-ffmpeg-mp3lame   if ffmpeg has been compiled with mp3lame support],
1829     [
1830       dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1831       dnl       linker would miserably barf on multiple definitions.
1832       AX_ADD_LDFLAGS([stream_out_transcode],[])
1833       AX_ADD_LDFLAGS([ffmpeg],[-lmp3lame]) ])
1834
1835   AC_ARG_WITH(ffmpeg-faac,
1836     [    --with-ffmpeg-faac      if ffmpeg has been compiled with faac support],
1837     [
1838       dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1839       dnl       linker would miserably barf on multiple definitions.
1840       AX_ADD_LDFLAGS([stream_out_transcode],[])
1841       AX_ADD_LDFLAGS([ffmpeg],[-lfaac]) ])
1842
1843   AC_ARG_WITH(ffmpeg-tree,
1844     [    --with-ffmpeg-tree=PATH ffmpeg tree for static linking])
1845
1846   dnl
1847   dnl test for !(--with-ffmpeg-tree)
1848   dnl
1849   if test "${with_ffmpeg_tree}" = "no" -o -z "${with_ffmpeg_tree}"; then
1850     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}"
1851     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
1852     AC_CHECK_HEADERS(ffmpeg/avcodec.h, [], [AC_MSG_ERROR([Missing header file ffmpeg/avcodec.h.])] )
1853     AC_CHECK_HEADERS(postproc/postprocess.h, [], [AC_MSG_ERROR([Missing header file postproc/postprocess.h.])] )
1854     AC_CHECK_LIB(avcodec, avcodec_init, [
1855       AX_ADD_BUILTINS([ffmpeg stream_out_transcode])
1856       AX_ADD_LDFLAGS([ffmpeg],[-lavcodec])
1857       dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1858       dnl       linker would miserably barf on multiple definitions.
1859       AX_ADD_LDFLAGS([stream_out_transcode],[]) ],
1860        [ 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.]) ])
1861     AC_CHECK_LIB(avformat, av_open_input_stream, [
1862       AC_DEFINE(HAVE_LIBAVFORMAT, 1,
1863       [Define if you have ffmpeg's libavformat.])
1864       AX_ADD_LDFLAGS([ffmpeg],[-lavformat -lz]) ])
1865     LDFLAGS="${LDFLAGS_save}"
1866     CPPFLAGS="${CPPFLAGS_save}"
1867   fi
1868
1869   dnl
1870   dnl test for --with-ffmpeg-tree
1871   dnl
1872   if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
1873     AC_MSG_CHECKING(for libavcodec.a in ${with_ffmpeg_tree})
1874     real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
1875     if test -z "${real_ffmpeg_tree}"; then
1876       dnl  The given directory can't be found
1877       AC_MSG_RESULT(no)
1878       AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
1879     fi
1880     if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
1881       dnl  The given libavcodec wasn't built
1882       AC_MSG_RESULT(no)
1883       AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}])
1884     fi
1885     if ! grep -q "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
1886       dnl  The given libavcodec wasn't built with --enable-pp
1887       AC_MSG_RESULT(no)
1888       AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
1889     fi
1890     dnl  Use a custom libffmpeg
1891     AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodec.a)
1892     AX_ADD_BUILTINS([ffmpeg stream_out_transcode])
1893     AX_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavcodec -lavcodec])
1894     AX_ADD_CPPFLAGS([ffmpeg],[-I${real_ffmpeg_tree}/libavcodec])
1895
1896     if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
1897       AC_DEFINE(HAVE_LIBAVFORMAT, 1, [Define if you have ffmpeg's libavformat.])
1898       AX_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavformat -lavformat -lz])
1899       AX_ADD_CPPFLAGS([ffmpeg],[-I${real_ffmpeg_tree}/libavformat])
1900     fi
1901
1902     dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1903     dnl       linker would miserably barf on multiple definitions.
1904     AX_ADD_LDFLAGS([stream_out_transcode],[-L${real_ffmpeg_tree}/libavcodec])
1905     AX_ADD_CPPFLAGS([stream_out_transcode],[-I${real_ffmpeg_tree}/libavcodec])
1906   fi
1907 fi
1908
1909 dnl
1910 dnl  faad decoder plugin
1911 dnl
1912 AC_ARG_ENABLE(faad,
1913 [  --enable-faad           faad codec (default disabled)])
1914 if test "${enable_faad}" = "yes"
1915 then
1916   AC_ARG_WITH(faad-tree,
1917   [    --with-faad-tree=PATH faad tree for static linking])
1918   if test -n "${with_faad_tree}"
1919   then
1920     AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
1921     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
1922     if test -z "${real_faad_tree}"
1923     then
1924       dnl  The given directory can't be found
1925       AC_MSG_RESULT(no)
1926       AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
1927     fi
1928     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
1929     then
1930       dnl  Use a custom faad
1931       AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
1932       AX_ADD_BUILTINS([faad])
1933       AX_ADD_LDFLAGS([faad],[-L${real_faad_tree}/libfaad/.libs -lfaad])
1934       AX_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
1935     else
1936       dnl  The given libfaad wasn't built
1937       AC_MSG_RESULT(no)
1938       AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
1939     fi
1940   else
1941     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
1942     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_faad}"
1943     AC_CHECK_HEADERS(faad.h, ,
1944       [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ])
1945     AC_CHECK_LIB(faad, faacDecOpen, [
1946       AX_ADD_PLUGINS([faad])
1947       AX_ADD_LDFLAGS([faad],[-lfaad]) ],
1948       [ AC_MSG_ERROR([Cannot find libfaad library...]) ])
1949     LDFLAGS="${LDFLAGS_save}"
1950     CPPFLAGS="${CPPFLAGS_save}"
1951   fi
1952 fi
1953
1954
1955 dnl dnl
1956 dnl dnl  xvid decoder plugin
1957 dnl dnl
1958 dnl AC_ARG_ENABLE(xvid,
1959 dnl [  --enable-xvid           xvid codec (default disabled)])
1960 dnl if test "${enable_xvid}" = "yes"
1961 dnl then
1962 dnl   AC_ARG_WITH(xvid,
1963 dnl     [    --with-xvid=PATH      path to xvid installation],[],[])
1964 dnl   if test "${with_xvid}" != "no" -a -n "${with_xvid}"
1965 dnl   then
1966 dnl     AX_ADD_CPPFLAGS([xvid],[-I${with_xvid}/include])
1967 dnl     AX_ADD_LDFLAGS([xvid],[-L${with_xvid}/lib])
1968 dnl   fi
1969 dnl 
1970 dnl   AC_ARG_WITH(xvid-tree,
1971 dnl   [    --with-xvid-tree=PATH xvid tree for static linking])
1972 dnl   if test -n "${with_xvid_tree}"
1973 dnl   then
1974 dnl     AC_MSG_CHECKING(for libxvidcore.a in ${with_xvid_tree})
1975 dnl     real_xvid_tree="`cd ${with_xvid_tree} 2>/dev/null && pwd`"
1976 dnl     if test -z "${real_xvid_tree}"
1977 dnl     then
1978 dnl       dnl  The given directory can't be found
1979 dnl       AC_MSG_RESULT(no)
1980 dnl       AC_MSG_ERROR([cannot cd to ${with_xvid_tree}])
1981 dnl     fi
1982 dnl     if test -f "${real_xvid_tree}/build/generic/libxvidcore.a"
1983 dnl     then
1984 dnl       dnl  Use a custom xvid
1985 dnl       AC_MSG_RESULT(${real_xvid_tree}/build/generic/libxvidcore.a)
1986 dnl       AX_ADD_BUILTINS([xvid])
1987 dnl       AX_ADD_LDFLAGS([xvid],[-L${real_xvid_tree}/build/generic -lxvidcore])
1988 dnl       AX_ADD_CPPFLAGS([xvid],[-I${real_xvid_tree}/src])
1989 dnl     else
1990 dnl       dnl  The given libxvidcore wasn't built
1991 dnl       AC_MSG_RESULT(no)
1992 dnl       AC_MSG_ERROR([cannot find ${real_xvid_tree}/build/generic/libxvidcore.a, make sure you compiled libxvidcore in ${with_xvid_tree}])
1993 dnl     fi
1994 dnl   else
1995 dnl     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_xvid}"
1996 dnl     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xvid}"
1997 dnl     AC_CHECK_HEADERS(xvid.h, ,
1998 dnl       [ AC_MSG_ERROR([Cannot find development headers for libxvidcore...]) ])
1999 dnl     AC_CHECK_LIB(xvidcore, xvid_init, [
2000 dnl       AX_ADD_PLUGINS([xvid])
2001 dnl       AX_ADD_LDFLAGS([xvid],[-lxvidcore]) ],
2002 dnl       [ AC_MSG_ERROR([Cannot find libxvidcore library...]) ])
2003 dnl     LDFLAGS="${LDFLAGS_save}"
2004 dnl     CPPFLAGS="${CPPFLAGS_save}"
2005 dnl   fi
2006 dnl fi
2007
2008 dnl
2009 dnl  QuickTime plugin
2010 dnl
2011 AC_ARG_ENABLE(quicktime,
2012   [  --enable-quicktime      QuickTime module (default enabled on MacOS X)])
2013 if test "${enable_quicktime}" != "no" &&
2014   (test "${SYS}" = "darwin" || test "${enable_quicktime}" = "yes")
2015 then
2016   if test "${SYS}" = "mingw32"; then
2017     AX_ADD_BUILTINS([quicktime])
2018   else
2019   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2020     [ AX_ADD_BUILTINS([quicktime])
2021       AX_ADD_LDFLAGS([quicktime],[-framework QuickTime -framework Carbon])
2022     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2023   fi
2024 fi
2025
2026 dnl
2027 dnl MP4 module
2028 dnl
2029 AC_CHECK_HEADERS(zlib.h, [
2030   AX_ADD_LDFLAGS([mp4 skins skins2 sap],[-lz])
2031 ] )
2032
2033 AC_CHECK_HEADERS(sysfs/libsysfs.h, [
2034   AX_ADD_LDFLAGS([mp4],[-lsysfs])
2035 ] )
2036
2037 dnl
2038 dnl skins module
2039 dnl
2040 AC_CHECK_HEADERS(libtar.h, [
2041   AX_ADD_LDFLAGS([skins skins2],[-ltar])
2042 ] )
2043
2044
2045
2046 dnl
2047 dnl A52/AC3 decoder plugin
2048 dnl
2049 AC_ARG_ENABLE(a52,
2050   [  --enable-a52            A/52 support with liba52 (default enabled)])
2051 if test "${enable_a52}" != "no"
2052 then
2053   AC_ARG_WITH(a52,
2054     [    --with-a52=PATH       a52 headers and libraries])
2055   AC_ARG_WITH(a52-tree,
2056     [    --with-a52-tree=PATH  a52dec tree for static linking ],[],[])
2057   if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
2058   then
2059     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
2060     if test -z "${real_a52_tree}"
2061     then
2062       dnl  The given directory can't be found
2063       AC_MSG_RESULT(no)
2064       AC_MSG_ERROR([${with_a52_tree} directory doesn't exist])
2065     fi
2066     dnl  Use a custom a52dec
2067     AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
2068     if test -f ${real_a52_tree}/include/a52.h
2069     then
2070       AC_MSG_RESULT(yes)
2071       AX_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
2072       AX_ADD_LDFLAGS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
2073       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_a52tofloat32}"
2074       AC_CHECK_LIB(a52, a52_free, [
2075         AX_ADD_BUILTINS([a52tofloat32])
2076         AX_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
2077         AX_ADD_LDFLAGS([a52tofloat32],[-la52])
2078         ],[
2079         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
2080         then
2081           AC_MSG_ERROR([make sure you have at least a52dec-0.7.3])
2082         else
2083           AC_MSG_ERROR([the specified tree hasn't been compiled])
2084         fi
2085       ])
2086       LDFLAGS="${LDFLAGS_save}"
2087     else
2088       AC_MSG_RESULT(no)
2089       AC_MSG_ERROR([the specified tree doesn't have a52.h])
2090     fi
2091   else
2092     if test -z "${with_a52}"
2093     then
2094       LDFLAGS_test=""
2095       CPPFLAGS_test=""
2096     else
2097       LDFLAGS_test="-L${with_a52}/lib"
2098       CPPFLAGS_test="-I${with_a52}/include"
2099     fi
2100     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2101     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LDFLAGS_a52tofloat32}"
2102     AC_CHECK_HEADERS(a52dec/a52.h, [
2103       AC_CHECK_LIB(a52, a52_free, [
2104         AX_ADD_PLUGINS([a52tofloat32])
2105         AX_ADD_LDFLAGS([a52tofloat32],[${LDFLAGS_test} -la52])
2106         AX_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2107       ],[
2108         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.])
2109       ])
2110     ])
2111     CPPFLAGS="${CPPFLAGS_save}"
2112     LDFLAGS="${LDFLAGS_save}"
2113   fi
2114 fi
2115
2116 dnl
2117 dnl DTS Coherent Acoustics decoder plugin
2118 dnl
2119 AC_ARG_ENABLE(dts,
2120   [  --enable-dts            DTS Coherent Acoustics support with libdts (default enabled)])
2121 if test "${enable_dts}" != "no"; then
2122   AC_ARG_WITH(dts-tree,
2123     [    --with-dts-tree=PATH  libdts tree for static linking ],[],[])
2124   if test "${with_dts_tree}" != "no" -a -n "${with_dts_tree}"
2125   then
2126     real_dts_tree="`cd ${with_dts_tree} 2>/dev/null && pwd`"
2127     if test -z "${real_dts_tree}"
2128     then
2129       dnl  The given directory can't be found
2130       AC_MSG_RESULT(no)
2131       AC_MSG_ERROR([${with_dts_tree} directory doesn't exist])
2132     fi
2133     dnl  Use a custom libdts
2134     AC_MSG_CHECKING(for dts.h in ${real_dts_tree}/include)
2135     if test -f ${real_dts_tree}/include/dts.h
2136     then
2137       AC_MSG_RESULT(yes)
2138       AX_ADD_CPPFLAGS([dtstofloat32],[-I${real_dts_tree}/include])
2139       AX_ADD_LDFLAGS([dtstofloat32],[-L${real_dts_tree}/libdts])
2140       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
2141       AC_CHECK_LIB(dts, dts_free, [
2142         AX_ADD_BUILTINS([dtstofloat32])
2143         AX_ADD_LDFLAGS([dtstofloat32],[-ldts])
2144         ],[
2145         if test -f ${real_dts_tree}/libdts/libdts.a
2146         then
2147           AC_MSG_ERROR([make sure you have at least libdts-0.0.2])
2148         else
2149           AC_MSG_ERROR([the specified tree hasn't been compiled])
2150         fi
2151       ])
2152       LDFLAGS="${LDFLAGS_save}"
2153     else
2154       AC_MSG_RESULT(no)
2155       AC_MSG_ERROR([the specified tree doesn't have dts.h])
2156     fi
2157   else
2158     AC_CHECK_HEADERS(dts.h, [
2159       AC_CHECK_LIB(dts, dts_free, [
2160         AX_ADD_PLUGINS([dtstofloat32])
2161         AX_ADD_LDFLAGS([dtstofloat32],[-ldts])
2162       ],[
2163         if test "${enable_dts}" = "yes"; then
2164           AC_MSG_ERROR([Could not find libdts on your system: you may get it from http://www.videolan.org/dtsdec.])
2165         fi
2166       ])
2167     ])
2168   fi
2169 fi
2170
2171 dnl dnl
2172 dnl dnl  DV plugin
2173 dnl dnl
2174 dnl AC_ARG_ENABLE(dv,
2175 dnl   [  --enable-dv             DV decoder support (deprecated in favor of ffmpeg) (default disabled)])
2176 dnl if test "${enable_dv}" = "yes"
2177 dnl then
2178 dnl   AC_CHECK_HEADERS(libdv/dv.h, [
2179 dnl     AX_ADD_PLUGINS([dv])
2180 dnl     AX_ADD_LDFLAGS([dv],[-ldv])
2181 dnl    ],[])
2182 dnl fi
2183
2184 dnl
2185 dnl  Flac plugin
2186 dnl
2187 AC_ARG_ENABLE(flac,
2188   [  --enable-flac           flac decoder support (default disabled)])
2189 if test "${enable_flac}" = "yes"
2190 then
2191   AC_CHECK_HEADERS(FLAC/stream_decoder.h, [
2192     AX_ADD_PLUGINS([flac flacdec])
2193     AX_ADD_LDFLAGS([flacdec],[-lFLAC])
2194    ],[])
2195 fi
2196
2197 dnl
2198 dnl  Libmpeg2 plugin
2199 dnl
2200 AC_ARG_ENABLE(libmpeg2,
2201   [  --enable-libmpeg2       libmpeg2 decoder support (default enabled)])
2202 if test "${enable_libmpeg2}" != "no"
2203 then
2204   AC_ARG_WITH(libmpeg2-tree,
2205   [    --with-libmpeg2-tree=PATH libmpeg2 tree for static linking])
2206   if test -n "${with_libmpeg2_tree}"
2207   then
2208     AC_MSG_CHECKING(for libmpeg2.a in ${with_libmpeg2_tree})
2209     real_libmpeg2_tree="`cd ${with_libmpeg2_tree} 2>/dev/null && pwd`"
2210     if test -z "${real_libmpeg2_tree}"
2211     then
2212       dnl  The given directory can't be found
2213       AC_MSG_RESULT(no)
2214       AC_MSG_ERROR([cannot cd to ${with_libmpeg2_tree}])
2215     fi
2216     if test -f "${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a"
2217     then
2218       dnl  Use a custom libmpeg2
2219       AC_MSG_RESULT(${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a)
2220       AX_ADD_PLUGINS([libmpeg2])
2221       AX_ADD_LDFLAGS([libmpeg2],[-L${real_libmpeg2_tree}/libmpeg2/.libs -lmpeg2])
2222       AX_ADD_CFLAGS([libmpeg2],[-I${real_libmpeg2_tree}/include])
2223       eval "`cd ${real_libmpeg2_tree}/include && ln -sf . mpeg2dec 2>/dev/null`"
2224     else
2225       dnl  The given libmpeg2 wasn't built
2226       AC_MSG_RESULT(no)
2227       AC_MSG_ERROR([cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}])
2228     fi
2229   else
2230     AC_CHECK_HEADERS(mpeg2dec/mpeg2.h, [
2231       AC_MSG_CHECKING(for libmpeg2 version >= 0.3.2)
2232       AC_EGREP_CPP(yes,
2233         [#include <mpeg2dec/mpeg2.h>
2234          #ifdef MPEG2_RELEASE
2235          #if MPEG2_RELEASE >= MPEG2_VERSION(0,3,2)
2236          yes
2237          #endif
2238          #endif],
2239         [AC_MSG_RESULT([yes])
2240           AX_ADD_PLUGINS([libmpeg2])
2241           AX_ADD_LDFLAGS([libmpeg2],[-lmpeg2])],
2242         [AC_MSG_RESULT([no])
2243           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.])])],
2244
2245       [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.])]
2246     )
2247   fi
2248 fi
2249
2250 dnl
2251 dnl  Vorbis plugin
2252 dnl
2253 AC_ARG_ENABLE(vorbis,
2254   [  --enable-vorbis         Vorbis decoder support (default enabled)])
2255 if test "${enable_vorbis}" != "no"
2256 then
2257   AC_CHECK_HEADERS(vorbis/codec.h, [
2258     AX_ADD_PLUGINS([vorbis])
2259     AX_ADD_LDFLAGS([vorbis],[-lvorbis -logg]) ],[])
2260
2261   AC_CHECK_HEADERS(vorbis/vorbisenc.h, [
2262     AX_ADD_LDFLAGS([vorbis],[-lvorbisenc]) ],[])
2263 fi
2264
2265 dnl
2266 dnl  Tremor plugin
2267 dnl
2268 AC_ARG_ENABLE(tremor,
2269   [  --enable-tremor         Tremor decoder support (default disabled)])
2270 if test "${enable_tremor}" = "yes"
2271 then
2272   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2273     AX_ADD_PLUGINS([tremor])
2274     AX_ADD_LDFLAGS([tremor],[-lvorbisidec -logg])
2275    ],[])
2276 fi
2277
2278 dnl
2279 dnl  Speex plugin
2280 dnl
2281 AC_ARG_ENABLE(speex,
2282   [  --enable-speex          Speex decoder support (default enabled)])
2283 if test "${enable_speex}" != "no"
2284 then
2285   AC_CHECK_HEADERS(speex.h, [
2286     AX_ADD_PLUGINS([speex])
2287     AX_ADD_LDFLAGS([speex],[-lspeex]) ],[])
2288 fi
2289
2290 dnl
2291 dnl  tarkin decoder plugin
2292 dnl
2293 AC_ARG_ENABLE(tarkin,
2294 [  --enable-tarkin         experimental tarkin codec (default disabled)])
2295 if test "${enable_tarkin}" = "yes"
2296 then
2297   AC_ARG_WITH(tarkin-tree,
2298   [    --with-tarkin-tree=PATH tarkin tree for static linking])
2299   if test -n "${with_tarkin_tree}"
2300   then
2301     AC_MSG_CHECKING(for tarkin.o in ${with_tarkin_tree})
2302     real_tarkin_tree="`cd ${with_tarkin_tree} 2>/dev/null && pwd`"
2303     if test -f "${real_tarkin_tree}/tarkin.o"
2304     then
2305       AX_ADD_BUILTINS([tarkin])
2306       AX_ADD_CPPFLAGS([tarkin],[-I${real_tarkin_tree}])
2307       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])
2308       AC_MSG_RESULT(yes)
2309     else
2310       dnl  The given tarkin tree wasn't built
2311       AC_MSG_RESULT(no)
2312       AC_MSG_ERROR([cannot find ${real_tarkin_tree}/tarkin.o,
2313                     make sure you compiled tarkin in ${with_tarkin_tree}])
2314     fi
2315   fi
2316 fi
2317
2318 dnl
2319 dnl  theora decoder plugin
2320 dnl
2321 AC_ARG_ENABLE(theora,
2322 [  --enable-theora         experimental theora codec (default disabled)])
2323 if test "${enable_theora}" = "yes"
2324 then
2325   AC_CHECK_HEADERS(theora/theora.h, [
2326     AC_CHECK_LIB(theora, theora_granule_time, [
2327       if test "${SYS}" = "mingw32"; then
2328         AX_ADD_PLUGINS([theora])
2329       else
2330         AX_ADD_BUILTINS([theora])
2331       fi
2332       theora_libs="-ltheora -logg"
2333       AX_ADD_LDFLAGS([theora],[${theora_libs}]) ],[
2334       AC_MSG_ERROR([libtheora doesn't appear to be installed on you system.
2335 You also need to check that you have a libogg posterior to the 1.0 release.])],
2336       [-logg])
2337   ])
2338 fi
2339
2340 dnl
2341 dnl   subsdec support
2342 dnl
2343 AX_ADD_LDFLAGS([subsdec],[${LIBICONV}])
2344 AX_ADD_CPPFLAGS([subsdec],[${INCICONV}])
2345 AX_ADD_PLUGINS([subsdec])
2346
2347
2348 dnl
2349 dnl  Video Filters
2350 dnl
2351
2352 dnl
2353 dnl   png
2354 dnl
2355 AC_CHECK_HEADERS(png.h, [
2356     AX_ADD_LDFLAGS([logo],[-lpng -lz])
2357     AX_ADD_PLUGINS([logo])
2358     AX_ADD_LDFLAGS([svcdsub],[-lpng -lz])
2359     AX_ADD_LDFLAGS([cvdsub],[-lpng -lz])
2360     AC_DEFINE(HAVE_LIBPNG, [], [Define if you have the PNG library: libpng])])
2361
2362 dnl
2363 dnl  Video plugins
2364 dnl
2365
2366 AC_ARG_WITH(,[Video plugins:])
2367
2368 dnl Check for DPMS
2369 if test "${SYS}" != "mingw32"
2370 then
2371   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2372   AC_CHECK_HEADERS(X11/extensions/dpms.h, [
2373     AC_MSG_CHECKING(for DPMSInfo in X11/extensions/dpms.h)
2374     AC_EGREP_HEADER(DPMSInfo,X11/extensions/dpms.h,[
2375       AC_MSG_RESULT(yes)
2376       AC_DEFINE(DPMSINFO_IN_DPMS_H, 1,
2377                 Define if <X11/extensions/dpms.h> defines DPMSInfo.)
2378     ],[
2379       AC_MSG_RESULT(no)
2380     ])
2381   ],,[
2382     #include <X11/Xlib.h>
2383   ])
2384   CPPFLAGS="${CPPFLAGS_save}"
2385 fi
2386
2387 dnl
2388 dnl  X11 module
2389 dnl  (enabled by default except on win32)
2390 dnl
2391 AC_ARG_ENABLE(x11,
2392   [  --enable-x11            X11 support (default enabled)])
2393 if test "${enable_x11}" != "no" &&
2394   (test "${SYS}" != "mingw32" || test "${enable_x11}" = "yes"); then
2395   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2396   AC_CHECK_HEADERS(X11/Xlib.h, [
2397     AX_ADD_PLUGINS([x11])
2398     AX_ADD_LDFLAGS([x11],[-L${x_libraries} -lX11 -lXext])
2399     AX_ADD_CPPFLAGS([x11],[-I${x_includes}])
2400     AC_CHECK_HEADERS(X11/extensions/Xinerama.h, [
2401       CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2402       AC_CHECK_LIB(Xinerama, XineramaQueryExtension, [
2403         AC_DEFINE(HAVE_XINERAMA,1,[Define this if you have libXinerama installed])
2404         AX_ADD_LDFLAGS([x11],[-lXinerama])
2405       ])
2406       CFLAGS="${CFLAGS_save}"
2407     ])
2408   ])
2409   CPPFLAGS="${CPPFLAGS_save}"
2410 fi
2411
2412 dnl
2413 dnl  XVideo module
2414 dnl  (enabled by default except on win32)
2415 dnl
2416 AC_ARG_ENABLE(xvideo,
2417   [  --enable-xvideo         XVideo support (default enabled)])
2418 if test "${enable_xvideo}" != "no" &&
2419   (test "${SYS}" != "mingw32" || test "${enable_xvideo}" = "yes"); then
2420   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2421   AC_CHECK_HEADERS(X11/extensions/Xv.h, [
2422     CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2423     AC_CHECK_LIB(Xv_pic,XvPutImage,
2424       # We have Xv_pic, that's good, we can build an xvideo.so plugin !
2425       AX_ADD_PLUGINS([xvideo])
2426       AX_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv_pic])
2427       AX_ADD_CPPFLAGS([xvideo],[-I${x_includes}]),
2428       AC_CHECK_LIB(Xv,XvPutImage,[
2429         # We don't have Xv_pic, but we have Xv, let's make xvideo.a as builtin
2430         AX_ADD_PLUGINS([xvideo])
2431         AX_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
2432         AX_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2433       ],[
2434         # Otherwise... well, do nothing.
2435         :
2436       ])
2437     )
2438     AC_CHECK_HEADERS(X11/extensions/Xinerama.h,[
2439       AC_CHECK_LIB(Xinerama, XineramaQueryExtension,[
2440         AC_DEFINE(HAVE_XINERAMA,1,[Define this if you have libXinerama installed])
2441         AX_ADD_LDFLAGS([xvideo],[-lXinerama])
2442       ])
2443     ])
2444     CFLAGS="${CFLAGS_save}"
2445   ]
2446   CPPFLAGS="${CPPFLAGS_save}")
2447 fi
2448
2449 dnl
2450 dnl  SDL module
2451 dnl
2452 AC_ARG_ENABLE(sdl,
2453   [  --enable-sdl            SDL support (default enabled)])
2454 if test "${enable_sdl}" != "no"
2455 then
2456   SDL_PATH="${PATH}"
2457   AC_ARG_WITH(sdl-config-path,
2458     [    --with-sdl-config-path=PATH sdl-config path (default search in \$PATH)],
2459     [ if test "${with_sdl_config_path}" != "no"
2460       then
2461         SDL_PATH="${with_sdl_config_path}:${PATH}"
2462       fi ])
2463   AC_PATH_PROG(SDL12_CONFIG, sdl12-config, no, ${SDL_PATH})
2464   SDL_CONFIG="${SDL12_CONFIG}"
2465   SDL_HEADER="SDL12/SDL.h"
2466   if test "${SDL_CONFIG}" = "no"
2467   then
2468     AC_PATH_PROG(SDL11_CONFIG, sdl11-config, no, ${SDL_PATH})
2469     SDL_CONFIG=${SDL11_CONFIG}
2470     SDL_HEADER="SDL11/SDL.h"
2471   fi
2472   if test "${SDL_CONFIG}" = "no"
2473   then
2474     AC_PATH_PROG(SDL_CONFIG, sdl-config, no, ${SDL_PATH})
2475     SDL_HEADER="SDL/SDL.h"
2476   fi
2477   # check for cross-compiling
2478   SDL_PREFIX=
2479   AC_ARG_WITH(sdl-prefix,
2480     [    --with-sdl-prefix=PATH path to libsdl (needed for cross-compiling),
2481                                e.g use as:
2482                                --with-sdl-prefix=/usr/local/arm/2.95.3/arm-linux/usr)],[],[])
2483   if test "${with_sdl_prefix}" != "no" -a -n "${with_sdl_prefix}"
2484   then
2485     SDL_PREFIX="--prefix=${with_sdl_prefix}"
2486   fi
2487   if test "${SDL_CONFIG}" != "no"
2488   then
2489     AX_ADD_PLUGINS([vout_sdl aout_sdl])
2490     AX_ADD_CFLAGS([vout_sdl aout_sdl],[`${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`])
2491     AX_ADD_LDFLAGS([vout_sdl aout_sdl],[`${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'`])
2492     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}"
2493     AC_CHECK_HEADERS(${SDL_HEADER}, AC_DEFINE_UNQUOTED(SDL_INCLUDE_FILE,
2494       <${SDL_HEADER}>, Indicate whether we should use SDL/SDL.h or SDL11/SDL.h),
2495       [ AC_CHECK_HEADERS(SDL.h, AC_DEFINE(SDL_INCLUDE_FILE, <SDL.h>,
2496           As a last resort we also test for SDL.h presence),
2497       [ AC_MSG_ERROR([The development package for SDL is not installed.
2498 Please install it and try again. Alternatively you can also configure with
2499 --disable-sdl.])
2500       ])])
2501     CPPFLAGS="${CPPFLAGS_save}"
2502     if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null
2503     then
2504       AC_MSG_ERROR([The development package for SDL is not installed.
2505 Please install it and try again. Alternatively you can also configure with
2506 --disable-sdl.])
2507     fi
2508   elif test "${enable_sdl}" =  "yes"
2509   then
2510     AC_MSG_ERROR([I couldn't find the SDL package. You can download libSDL
2511 from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
2512     ])
2513   fi
2514 fi
2515
2516 dnl
2517 dnl  freetype module
2518 dnl
2519 AC_ARG_ENABLE(freetype,
2520   [  --enable-freetype       freetype support (default enabled)])
2521 AC_ARG_ENABLE(fribidi,
2522   [  --enable-fribidi        fribidi support (default enabled)])
2523 if test "${enable_freetype}" != "no"
2524 then
2525   FREETYPE_PATH="${PATH}"
2526   AC_ARG_WITH(freetype-config-path,
2527     [    --with-freetype-config-path=PATH freetype-config path (default search in \$PATH)],
2528     [ if test "${with_freetype_config_path}" != "no"
2529       then
2530         FREETYPE_PATH="${with_freetype_config_path}:${PATH}"
2531       fi ])
2532   AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no, ${FREETYPE_PATH})
2533
2534   if test "${FREETYPE_CONFIG}" != "no"
2535   then
2536     AX_ADD_PLUGINS([freetype])
2537     AX_ADD_CFLAGS([freetype],[`${FREETYPE_CONFIG} --cflags` ${INCICONV}])
2538     AX_ADD_LDFLAGS([freetype],[`${FREETYPE_CONFIG} --libs` ${LIBICONV}])
2539     AC_CHECK_HEADERS(Carbon/Carbon.h,
2540       [AX_ADD_LDFLAGS([freetype],[-framework Carbon])])
2541   elif test "${enable_freetype}" =  "yes"
2542   then
2543     AC_MSG_ERROR([I couldn't find the freetype package. You can download libfreetype2
2544 from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
2545     ])
2546   fi
2547
2548   dnl fribidi support
2549   if test "${enable_fribidi}" != "no"
2550   then
2551     FRIBIDI_PATH="${PATH}"
2552     AC_ARG_WITH(fribidi-config-path,
2553       [    --with-fribidi-config-path=PATH fribidi-config path (default search in \$PATH)],
2554       [ if test "${with_fribidi_config_path}" != "no"
2555         then
2556           FRIBIDI_PATH="${with_fribidi_config_path}:${PATH}"
2557         fi ])
2558     AC_PATH_PROG(FRIBIDI_CONFIG, fribidi-config, no, ${FRIBIDI_PATH})
2559
2560     if test "${FRIBIDI_CONFIG}" != "no"
2561     then
2562       AX_ADD_CFLAGS([freetype], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
2563       AX_ADD_LDFLAGS([freetype], [`${FRIBIDI_CONFIG} --libs`])
2564     fi
2565   fi
2566 fi
2567
2568 dnl
2569 dnl  Qt Embedded module
2570 dnl  (disabled by default)
2571 dnl
2572 AC_ARG_ENABLE(qte,
2573   [  --enable-qte            QT Embedded support (default disabled)])
2574 if test "${enable_qte}" = "yes"
2575 then
2576   AC_ARG_WITH(qte,
2577   [    --with-qte=PATH       Qt Embedded headers and libraries])
2578   if test "${with_qte}" != "no" -a -n "${with_qte}"
2579   then
2580     AX_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
2581     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])
2582   else
2583     AX_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
2584     AX_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti])
2585   fi
2586   AX_ADD_PLUGINS([qte])
2587   NEED_QTE_MAIN=yes
2588   CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
2589   AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
2590     AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
2591   ] )
2592   CPPFLAGS="${CPPFLAGS_save}"
2593 fi
2594
2595 dnl
2596 dnl  Windows DirectX module
2597 dnl
2598 AC_ARG_ENABLE(directx,
2599   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
2600 if test "${enable_directx}" != "no"
2601 then
2602   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
2603   then
2604     AC_ARG_WITH(directx,
2605     [    --with-directx=PATH   Win32 DirectX headers])
2606     if test -z "${with_directx}"
2607     then
2608       AC_CHECK_HEADERS(ddraw.h,
2609       [ AX_ADD_PLUGINS([vout_directx aout_directx])
2610         AX_ADD_LDFLAGS([vout_directx],[-lgdi32]) ])
2611     else
2612       AC_MSG_CHECKING(for directX headers in ${with_directx})
2613       if test -f ${with_directx}/ddraw.h
2614       then
2615         AX_ADD_PLUGINS([vout_directx aout_directx])
2616         AX_ADD_CPPFLAGS([vout_directx aout_directx],[-I${with_directx}])
2617         AX_ADD_LDFLAGS([vout_directx],[-lgdi32])
2618         AC_MSG_RESULT(yes)
2619       else
2620         AC_MSG_RESULT(no)
2621         AC_MSG_ERROR([Cannot find ${with_directx}/ddraw.h!])
2622       fi
2623     fi
2624   fi
2625 fi
2626
2627 dnl
2628 dnl  Linux framebuffer module
2629 dnl
2630 AC_ARG_ENABLE(fb,
2631   [  --enable-fb             Linux framebuffer support (default enabled on Linux)])
2632     if test "${enable_fb}" != "no"
2633     then
2634       AC_CHECK_HEADERS(linux/fb.h, [
2635         AX_ADD_PLUGINS([fb])
2636       ])
2637     fi
2638
2639 dnl
2640 dnl  Linux MGA module
2641 dnl
2642 AC_ARG_ENABLE(mga,
2643   [  --enable-mga            Linux kernel Matrox support (default disabled)],
2644   [ if test "${enable_mga}" = "yes"
2645     then
2646       AX_ADD_PLUGINS([mga])
2647     fi ])
2648
2649 dnl
2650 dnl  SVGAlib module
2651 dnl
2652 AC_ARG_ENABLE(svgalib,
2653   [  --enable-svgalib        SVGAlib support (default disabled)])
2654 if test "${enable_svgalib}" = "yes"
2655 then
2656   AX_ADD_PLUGINS([svgalib])
2657   AX_ADD_LDFLAGS([svgalib],[-lvgagl -lvga])
2658 fi
2659
2660 dnl
2661 dnl  GGI module
2662 dnl
2663 AC_ARG_ENABLE(ggi,
2664   [  --enable-ggi            GGI support (default disabled)])
2665 if test "${enable_ggi}" = "yes"
2666 then
2667   AX_ADD_PLUGINS([ggi])
2668   AX_ADD_LDFLAGS([ggi],[-lggi])
2669   AC_ARG_WITH(ggi,
2670     [    --with-ggi=PATH       path to libggi],
2671     [ if test "${with_ggi}" != "no" -a -n "${with_ggi}"
2672       then
2673         AX_ADD_CPPFLAGS([ggi],[-I${with_ggi}/include])
2674         AX_ADD_LDFLAGS([ggi],[-L${with_ggi}/lib])
2675       fi ])
2676 fi
2677
2678 dnl
2679 dnl  Glide module
2680 dnl
2681 AC_ARG_ENABLE(glide,
2682   [  --enable-glide          Glide (3dfx) support (default disabled)])
2683 if test "${enable_glide}" = "yes"
2684 then
2685   AX_ADD_PLUGINS([glide])
2686   AX_ADD_LDFLAGS([glide],[-lglide2x -lm])
2687   AX_ADD_CPPFLAGS([glide],[-I/usr/include/glide])
2688   AC_ARG_WITH(glide,
2689     [    --with-glide=PATH     path to libglide],
2690     [ if test "${with_glide}" != "no" -a -n "${with_glide}"
2691       then
2692         AX_ADD_CPPFLAGS([glide],[-I${with_glide}/include])
2693         AX_ADD_LDFLAGS([glide],[-L${with_glide}/lib])
2694       fi ])
2695 fi
2696
2697 dnl
2698 dnl  AA plugin
2699 dnl
2700 AC_ARG_ENABLE(aa,
2701   [  --enable-aa             aalib output (default disabled)])
2702 if test "${enable_aa}" = "yes"
2703 then
2704   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
2705   if test "${have_aa}" = "true"
2706   then
2707     AX_ADD_PLUGINS([aa])
2708     AX_ADD_LDFLAGS([aa],[-laa])
2709   fi
2710 fi
2711
2712 dnl
2713 dnl  libcaca plugin
2714 dnl
2715 AC_ARG_ENABLE(caca,
2716   [  --enable-caca           libcaca output (default disabled)])
2717 if test "${enable_caca}" = "yes"
2718 then
2719   CACA_PATH="${PATH}"
2720   AC_ARG_WITH(caca-config-path,
2721     [    --with-caca-config-path=PATH caca-config path (default search in \$PATH)],
2722     [ if test "${with_caca_config_path}" != "no"
2723       then
2724         CACA_PATH="${with_caca_config_path}:${PATH}"
2725       fi ])
2726   AC_PATH_PROG(CACA_CONFIG, caca-config, no, ${CACA_PATH})
2727   if test "${CACA_CONFIG}" != "no"
2728   then
2729     AX_ADD_PLUGINS([caca])
2730     AX_ADD_CFLAGS([caca],[`${CACA_CONFIG} --cflags`])
2731     AX_ADD_LDFLAGS([caca],[`${CACA_CONFIG} --plugin-libs`])
2732   fi
2733 fi
2734
2735 dnl
2736 dnl  win32 GDI plugin
2737 dnl
2738 AC_ARG_ENABLE(wingdi,
2739   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
2740 if test "${enable_wingdi}" != "no"; then
2741   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
2742     AX_ADD_PLUGINS([wingdi])
2743     AX_ADD_LDFLAGS([wingdi],[-lgdi32])
2744   fi
2745 fi
2746
2747 dnl
2748 dnl  Audio plugins
2749 dnl
2750
2751 AC_ARG_WITH(,[Audio plugins:])
2752
2753 dnl
2754 dnl  OSS /dev/dsp module (enabled by default except on win32)
2755 dnl
2756 AC_ARG_ENABLE(oss,
2757   [  --enable-oss            Linux OSS /dev/dsp support (enabled on Linux)])
2758
2759 if test "${enable_oss}" != "no" &&
2760   (test "${SYS}" != "mingw32" || test "${enable_oss}" = "yes")
2761 then
2762   AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h, [
2763     AX_ADD_PLUGINS([oss])
2764     AC_CHECK_LIB(ossaudio,main,AX_ADD_LDFLAGS([oss],[-lossaudio]))
2765   ])
2766 fi
2767
2768 dnl
2769 dnl  Esound module
2770 dnl
2771 AC_ARG_ENABLE(esd,
2772   [  --enable-esd            Esound library support (default disabled)],
2773   [if test "${enable_esd}" = "yes"
2774    then
2775      AC_PATH_PROG(ESD_CONFIG, esd-config, no)
2776      if test "${ESD_CONFIG}" != "no"
2777      then
2778        AX_ADD_PLUGINS([esd])
2779        AX_ADD_CFLAGS([esd],[`${ESD_CONFIG} --cflags`])
2780        AX_ADD_LDFLAGS([esd],[`${ESD_CONFIG} --libs`])
2781      fi
2782    fi])
2783
2784 dnl
2785 dnl  aRts module
2786 dnl
2787 AC_ARG_ENABLE(arts,
2788   [  --enable-arts           aRts sound server (default disabled)],
2789   [if test "${enable_arts}" = "yes"
2790    then
2791      AC_PATH_PROG(ARTS_CONFIG, artsc-config, no)
2792      if test "${ARTS_CONFIG}" != "no"
2793      then
2794        AX_ADD_PLUGINS([arts])
2795        AX_ADD_CFLAGS([arts],[`${ARTS_CONFIG} --cflags`])
2796        AX_ADD_LDFLAGS([arts],[`${ARTS_CONFIG} --libs `])
2797      fi
2798    fi])
2799
2800 dnl
2801 dnl  ALSA module
2802 dnl
2803 AC_ARG_ENABLE(alsa,
2804   [  --enable-alsa           ALSA sound support for Linux (default disabled)],
2805   [if test "${enable_alsa}" = "yes"
2806    then
2807      AC_CHECK_HEADER(alsa/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false")
2808      if test "${have_alsa}" = "true"
2809      then
2810        AC_TRY_COMPILE([#define ALSA_PCM_NEW_HW_PARAMS_API
2811                        #define ALSA_PCM_NEW_SW_PARAMS_API
2812                        #include <alsa/asoundlib.h>],
2813           [void foo() { snd_pcm_hw_params_get_period_time(0,0,0); }],
2814            AC_DEFINE(HAVE_ALSA_NEW_API, 1, Define if ALSA is at least rc4))
2815        AX_ADD_PLUGINS([alsa])
2816        AX_ADD_LDFLAGS([alsa],[-lasound -lm -ldl])
2817      else
2818        AC_MSG_ERROR([Could not find ALSA development headers])
2819      fi
2820    fi])
2821
2822 dnl
2823 dnl  win32 waveOut plugin
2824 dnl
2825 AC_ARG_ENABLE(waveout,
2826   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
2827 if test "${enable_waveout}" != "no"; then
2828   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
2829     AX_ADD_PLUGINS([waveout])
2830     AX_ADD_LDFLAGS([waveout],[-lwinmm])
2831   fi
2832 fi
2833
2834 dnl
2835 dnl  CoreAudio plugin
2836 dnl
2837 AC_ARG_ENABLE(coreaudio,
2838   [  --enable-coreaudio      CoreAudio module (default enabled on MacOS X)])
2839 if test "${enable_coreaudio}" != "no" &&
2840   (test "${SYS}" = "darwin" || test "${enable_coreaudio}" = "yes")
2841 then
2842   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h, 
2843     [ AX_ADD_BUILTINS([coreaudio])
2844       AX_ADD_LDFLAGS([coreaudio],[-framework CoreAudio])
2845       AC_MSG_CHECKING(for kAudioConverterPrimeMethod in AudioToolbox/AudioConverter.h)
2846       AC_EGREP_HEADER(kAudioConverterPrimeMethod,AudioToolbox/AudioConverter.h,[
2847         AC_MSG_RESULT(yes)
2848         AX_ADD_PLUGINS([coreaudio_resampler])
2849         AX_ADD_LDFLAGS([coreaudio_resampler],[-framework AudioToolbox])
2850       ],[ AC_MSG_RESULT(no) ])
2851     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
2852 fi
2853
2854 dnl
2855 dnl  Interface plugins
2856 dnl
2857
2858 AC_ARG_WITH(,[Interface plugins:])
2859
2860 dnl special case for BeOS
2861 if test "${SYS}" = "beos"
2862 then
2863     AX_ADD_PLUGINS([beos])
2864 fi
2865
2866 dnl
2867 dnl Skins module
2868 dnl
2869 AC_ARG_ENABLE(skins,
2870   [  --enable-skins          Skins interface module (default enabled on Win32)])
2871 if test "${enable_skins}" != "no"; then
2872   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
2873
2874     AX_ADD_PLUGINS([skins])
2875     ALIASES="${ALIASES} svlc"
2876     AX_ADD_CPPFLAGS([skins],[-U_OFF_T_ -U_off_t -Imodules/gui/skins])
2877     AX_ADD_CXXFLAGS([skins],[-O2 -fno-rtti])
2878     AX_ADD_LDFLAGS([skins],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
2879
2880   else if test "${enable_skins}" = "yes"; then
2881     AX_ADD_PLUGINS([skins])
2882     ALIASES="${ALIASES} svlc"
2883     AX_ADD_CPPFLAGS([skins],[-Imodules/gui/skins -I${x_includes} -I/usr/include/freetype2 -DX11_SKINS])
2884     AX_ADD_CXXFLAGS([skins],[-O2 -fno-rtti])
2885     AX_ADD_LDFLAGS([skins],[-L${x_libraries} -lImlib2 -lXext -lX11 -lfreetype -lpng -lz ])
2886   fi fi
2887 fi
2888
2889 dnl
2890 dnl Skins2 module
2891 dnl
2892 AC_ARG_ENABLE(skins2,
2893   [  --enable-skins2         Skins2 interface module (experimental)])
2894 if test "${enable_skins2}" = "yes" || (test "${SYS}" != "darwin" && test "${SYS}" != "beos" && test "${enable_skins2}" != "no"); then
2895
2896   dnl test for the required libraries
2897   skins2_missing_lib="no"
2898
2899   dnl freetype
2900   if test "${FREETYPE_CONFIG}" != "no"; then
2901     AX_ADD_CPPFLAGS([skins2],[`${FREETYPE_CONFIG} --cflags`])
2902     AX_ADD_LDFLAGS([skins2],[`${FREETYPE_CONFIG} --libs`])
2903   else
2904     skins2_missing_lib="yes"
2905     if test "${enable_skins2}" = "yes"; then
2906       AC_MSG_ERROR([Could not find freetype (required for skins2)])
2907     fi
2908   fi
2909
2910   dnl iconv
2911   if test "$am_cv_func_iconv" = "yes"; then
2912     AX_ADD_CPPFLAGS([skins2],[${INCICONV}])
2913     AX_ADD_LDFLAGS([skins2],[${LIBICONV} -lpng])
2914   else
2915     skins2_missing_lib="yes"
2916     if test "${enable_skins2}" = "yes"; then
2917       AC_MSG_ERROR([Could not find iconv (required for skins2)])
2918     fi
2919   fi
2920
2921   dnl libxml2
2922   XML2_PATH="${PATH}"
2923   AC_ARG_WITH(xml2-config-path,
2924     [    --with-xml2-config-path=PATH xml2-config path (default search in \$PATH)],
2925     [ if test "${with_xml2_config_path}" != "no"; then
2926         XML2_PATH="${with_xml2_config_path}:${PATH}"
2927       fi ])
2928   AC_PATH_PROG(XML2_CONFIG, xml2-config, no, ${XML2_PATH})
2929   if test "${XML2_CONFIG}" != "no"; then
2930     AX_ADD_CPPFLAGS([skins2],[`${XML2_CONFIG} --cflags`])
2931     AX_ADD_LDFLAGS([skins2],[`${XML2_CONFIG} --libs`])
2932     dnl skins2 depends on the xmlTextReader extension
2933     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_skins2}"
2934     AC_CHECK_LIB(xml2,xmlTextReaderConstName,[],[
2935       skins2_missing_lib="yes"
2936       AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
2937       if test "${enable_skins2}" = "yes"; then
2938         AC_MSG_ERROR([libxml2 missing the xmlTextReader extension (required for skins2)])
2939       fi])
2940     LDFLAGS="${LDFLAGS_save}"
2941   else
2942     skins2_missing_lib="yes"
2943     if test "${enable_skins2}" = "yes"; then
2944       AC_MSG_ERROR([Could not find libxml2 (required for skins2)])
2945     fi
2946   fi
2947
2948   if test "${skins2_missing_lib}" = "no" && (test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"); then
2949     AX_ADD_PLUGINS([skins2])
2950     ALIASES="${ALIASES} svlc"
2951     AX_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -Imodules/gui/skins2 -DWIN32_SKINS])
2952     AX_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
2953     AX_ADD_LDFLAGS([skins2],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
2954
2955   else if test "${skins2_missing_lib}" = "no"; then
2956     AX_ADD_PLUGINS([skins2])
2957     ALIASES="${ALIASES} svlc"
2958     AX_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 -I${x_includes} -DX11_SKINS])
2959     AX_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
2960     AX_ADD_LDFLAGS([skins2],[-L${x_libraries} -lXext -lX11])
2961   fi fi
2962 fi
2963
2964
2965 dnl
2966 dnl  Gtk+ module
2967 dnl
2968 AC_ARG_ENABLE(gtk,
2969   [  --enable-gtk            Gtk+ support (default enabled)])
2970 if test "${enable_gtk}" != "no"
2971 then
2972   GTK_PATH="${PATH}"
2973   AC_ARG_WITH(gtk-config-path,
2974     [    --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)],
2975     [ if test "${with_gtk_config_path}" != "no"
2976       then
2977         GTK_PATH="${with_gtk_config_path}:${PATH}"
2978       fi ])
2979   # look for gtk-config
2980   AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH})
2981   GTK_CONFIG=${GTK12_CONFIG}
2982   if test "${GTK_CONFIG}" = "no"
2983   then
2984     AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH})
2985   fi
2986   if test "${GTK_CONFIG}" != "no"
2987   then
2988     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
2989     then
2990       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.])
2991     fi
2992     if test "${SYS}" != "mingw32"; then
2993       AX_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk gthread`])
2994       AX_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`])
2995     else
2996       AX_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk`])
2997       AX_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`])
2998     fi
2999     # now look for the gtk.h header
3000     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gtk}"
3001     ac_cv_gtk_headers=yes
3002     AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [
3003       ac_cv_gtk_headers=no
3004       echo "Cannot find gtk development headers."
3005     ])
3006     if test "${ac_cv_gtk_headers}" = "yes"
3007     then
3008       AX_ADD_PLUGINS([gtk])
3009       if test "${SYS}" != "mingw32"; then
3010         NEED_GTK_MAIN=yes
3011       fi
3012       ALIASES="${ALIASES} gvlc"
3013     fi
3014     CPPFLAGS="${CPPFLAGS_save}"
3015   fi
3016 fi
3017
3018 dnl
3019 dnl  Gtk+2 module ! Disabled for now as it is unusable and confuses users
3020 dnl
3021 dnl AC_ARG_ENABLE(gtk2,
3022 dnl   [  --enable-gtk2           Gtk2 support (default disabled)])
3023 dnl if test "${enable_gtk2}" = "yes"
3024 dnl then
3025 dnl   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
3026 dnl   AX_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
3027 dnl   AX_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
3028 dnl   AX_ADD_PLUGINS([gtk2])
3029 dnl   if test "${SYS}" != "mingw32"; then
3030 dnl     NEED_GTK2_MAIN=yes
3031 dnl   fi
3032 dnl fi
3033
3034 dnl
3035 dnl  PDA Gtk+2 module
3036 dnl
3037 AC_ARG_ENABLE(pda,
3038   [  --enable-pda          PDA interface needs Gtk2 support (default disabled)])
3039 if test "x${enable_pda}" = "xyes"
3040 then
3041   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
3042   AX_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
3043   AX_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
3044   AX_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}])
3045   AX_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}])
3046   AX_ADD_PLUGINS([pda])
3047   if test "${SYS}" != "mingw32"; then
3048     NEED_GTK2_MAIN=yes
3049   fi
3050 fi
3051
3052 dnl
3053 dnl  Gnome module
3054 dnl
3055 AC_ARG_ENABLE(gnome,
3056   [  --enable-gnome          Gnome interface support (default disabled)],
3057   [if test "${enable_gnome}" = "yes"; then
3058     # look for gnome-config
3059     AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
3060     if test -x ${GNOME_CONFIG}
3061     then
3062        AX_ADD_CFLAGS([gnome],[`${GNOME_CONFIG} --cflags gtk gnomeui`])
3063        AX_ADD_LDFLAGS([gnome],[`${GNOME_CONFIG} --libs gnomeui | sed 's,-rdynamic,,'`])
3064     fi
3065     # now look for the gnome.h header
3066     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gnome}"
3067     AC_CHECK_HEADERS(gnome.h, [
3068       AX_ADD_PLUGINS([gnome])
3069       NEED_GTK_MAIN=yes
3070       NEED_GNOME_MAIN=yes
3071       ALIASES="${ALIASES} gnome-vlc"
3072       dnl We need this because of some moronic gnomesupport.h flavours
3073       AC_MSG_CHECKING(for strndup in gnome.h)
3074       AC_EGREP_HEADER(strndup,gnome.h,[
3075         AC_MSG_RESULT(yes)
3076         AC_DEFINE(STRNDUP_IN_GNOME_H, 1,
3077                   Define if <gnome.h> defines strndup.)],[
3078         AC_MSG_RESULT(no)])
3079      ],[
3080       AC_MSG_ERROR([Can't find gnome headers. Please install the gnome
3081 developement tools or remove the --enable-gnome option])
3082      ])
3083     CPPFLAGS="${CPPFLAGS_save}"
3084   fi])
3085
3086 dnl
3087 dnl  Gnome2 module ! Disabled for know as it is unuseable and confuses users
3088 dnl
3089 dnl AC_ARG_ENABLE(gnome2,
3090 dnl   [  --enable-gnome2         Gnome2 support (default disabled)])
3091 dnl if test "${enable_gnome2}" = "yes"
3092 dnl then
3093 dnl   PKG_CHECK_MODULES(GNOME2, [libgnomeui-2.0])
3094 dnl   AX_ADD_CFLAGS([gnome2],[${GNOME2_CFLAGS}])
3095 dnl   AX_ADD_LDFLAGS([gnome2],[${GNOME2_LIBS}])
3096 dnl   AX_ADD_PLUGINS([gnome2])
3097 dnl   if test "${SYS}" != "mingw32"; then
3098 dnl     NEED_GNOME2_MAIN=yes
3099 dnl   fi
3100 dnl fi
3101
3102 dnl
3103 dnl  wxWindows module
3104 dnl
3105 AC_ARG_ENABLE(wxwindows,
3106   [  --enable-wxwindows      wxWindows support (default enabled)])
3107 if test "${enable_wxwindows}" != "no"
3108 then
3109   WXWINDOWS_PATH="${PATH}"
3110   AC_ARG_WITH(wx-config-path,
3111     [    --with-wx-config-path=PATH wx-config path (default search in \$PATH)],
3112     [ if test "${with_wx_config_path}" != "no"
3113       then
3114         WXWINDOWS_PATH="${with_wx_config_path}:${PATH}"
3115       fi ])
3116   # look for wx-config
3117   AC_PATH_PROG(WX_CONFIG, wx-config, no, ${WXWINDOWS_PATH})
3118   if test "${WX_CONFIG}" != "no"
3119   then
3120     if expr 2.3.0 \> `${WX_CONFIG} --version` >/dev/null
3121     then
3122       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.])
3123     fi
3124     AC_LANG_PUSH(C++)
3125     AX_ADD_CXXFLAGS([wxwindows],[`${WX_CONFIG} --cxxflags`])
3126     AX_ADD_LDFLAGS([wxwindows],[`${WX_CONFIG} --libs`])
3127     # now look for the wxprec.h header
3128     CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_wxwindows}"
3129     ac_cv_wx_headers=yes
3130     AC_CHECK_HEADERS(wx/wxprec.h, , [
3131       ac_cv_wx_headers=no
3132       echo "Cannot find wxWindows development headers."
3133     ])
3134     if test "${ac_cv_wx_headers}" = "yes"
3135     then
3136       AX_ADD_PLUGINS([wxwindows])
3137       ALIASES="${ALIASES} wxvlc"
3138     fi
3139     CPPFLAGS="${CPPFLAGS_save}"
3140     AC_LANG_POP(C++)
3141   fi
3142 fi
3143
3144 dnl
3145 dnl  Qt module
3146 dnl
3147 AC_ARG_ENABLE(qt,
3148   [  --enable-qt             Qt interface support (default disabled)],
3149   [if test "${enable_qt}" = "yes"; then
3150      AX_ADD_PLUGINS([qt])
3151      ALIASES="${ALIASES} qvlc"
3152      AX_ADD_LDFLAGS([qt],[-L${QTDIR}/lib])
3153      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt}"
3154      AC_CHECK_LIB(qt-mt,main,[
3155        AX_ADD_LDFLAGS([qt],[-lqt-mt])
3156      ],[
3157        AC_CHECK_LIB(qt,main,[
3158          AX_ADD_LDFLAGS([qt],[-lqt])
3159        ])
3160      ])
3161      LDFLAGS="${LDFLAGS_save}"
3162      AX_ADD_CXXFLAGS([qt],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
3163      if test -x ${QTDIR}/bin/moc
3164      then
3165        MOC=${QTDIR}/bin/moc
3166      else
3167        MOC=moc
3168      fi
3169    fi])
3170
3171 dnl
3172 dnl  KDE module
3173 dnl
3174 AC_ARG_ENABLE(kde,
3175   [  --enable-kde            KDE interface support (default disabled)],
3176   [if test "${enable_kde}" = "yes"; then
3177      AX_ADD_PLUGINS([kde])
3178      ALIASES="${ALIASES} kvlc"
3179      AX_ADD_LDFLAGS([kde],[-L${KDEDIR}/lib])
3180      dnl Check for -lkfile (only in KDE 2) or -lkdeui -lkio (KDE 3)
3181      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3182      AC_CHECK_LIB(kfile,main,[
3183        AX_ADD_LDFLAGS([kde],[-lkfile])
3184      ])
3185      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3186      AC_CHECK_LIB(kdeui,main,[
3187        AX_ADD_LDFLAGS([kde],[-lkdeui])
3188      ])
3189      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3190      AC_CHECK_LIB(kio,main,[
3191        AX_ADD_LDFLAGS([kde],[-lkio])
3192      ])
3193      LDFLAGS="${LDFLAGS_save}"
3194      AX_ADD_CXXFLAGS([kde],[-I/usr/include/kde -I/usr/include/qt3 -I/usr/include/qt])
3195      AX_ADD_CXXFLAGS([kde],[-I${KDEDIR}/include -I${QTDIR}/include])
3196      if test -x ${QTDIR}/bin/moc
3197      then
3198        MOC=${QTDIR}/bin/moc
3199      else
3200        MOC=moc
3201      fi
3202    fi])
3203
3204 dnl
3205 dnl  Opie QT embedded module
3206 dnl
3207 AC_ARG_ENABLE(opie,
3208   [  --enable-opie           Qt embedded interface support (default disabled)],
3209   [if test "${enable_opie}" = "yes"; then
3210      AC_ARG_WITH(qte,
3211      [    --with-qte=PATH       Qt Embedded headers and libraries])
3212      if test "${with_qte}" != "no" -a -n "${with_qte}"
3213      then
3214        AX_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3215        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])
3216      else
3217        AX_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'`])
3218        AX_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'`])
3219      fi
3220      CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
3221      AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
3222        AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
3223      ] )
3224      CPPFLAGS="${CPPFLAGS_save}"
3225
3226      AX_ADD_PLUGINS([opie])
3227      NEED_QTE_MAIN=yes
3228      AX_ADD_LDFLAGS([opie],[-lqpe ${LDFLAGS_qte}])
3229      AX_ADD_CXXFLAGS([opie],[${CXXFLAGS_qte}])
3230      if test "${with_qte}" != "no" -a -n "${with_qte}"
3231      then
3232        MOC=${with_qte}/bin/moc
3233      else
3234        MOC=${QTDIR}/bin/moc
3235      fi
3236    fi])
3237
3238 dnl
3239 dnl  MacOS X module
3240 dnl
3241 AC_ARG_ENABLE(macosx,
3242   [  --enable-macosx         MacOS X support (default enabled on MacOS X)],
3243   [if test "${enable_macosx}" = "yes"
3244    then
3245      AX_ADD_BUILTINS([macosx])
3246      AX_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
3247    fi],
3248   [AC_CHECK_HEADERS(Cocoa/Cocoa.h,
3249      AX_ADD_BUILTINS([macosx])
3250      AX_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
3251    )])
3252
3253 dnl
3254 dnl  QNX RTOS module
3255 dnl
3256 AC_ARG_ENABLE(qnx,
3257   [  --enable-qnx            QNX RTOS support (default enabled on QNX RTOS)])
3258     if test "${enable_qnx}" != "no"
3259     then
3260       AC_CHECK_HEADERS(Ph.h, [
3261         AX_ADD_PLUGINS([qnx])
3262         AX_ADD_LDFLAGS([qnx],[-lasound -lph])
3263       ])
3264     fi
3265
3266 dnl
3267 dnl  ncurses module
3268 dnl
3269 AC_ARG_ENABLE(ncurses,
3270   [  --enable-ncurses        ncurses interface support (default disabled)],
3271   [if test "${enable_ncurses}" = "yes"; then
3272      AX_ADD_PLUGINS([ncurses])
3273      AX_ADD_LDFLAGS([ncurses],[-lncurses])
3274    fi])
3275
3276 dnl
3277 dnl  XOSD plugin
3278 dnl
3279 AC_ARG_ENABLE(xosd,
3280   [  --enable-xosd           xosd interface support (default disabled)])
3281 if test "${enable_xosd}" = "yes"
3282 then
3283   AC_CHECK_HEADER(xosd.h, have_xosd="true", have_xosd="false")
3284   AC_CHECK_LIB(xosd,xosd_set_offset,
3285       AC_DEFINE(HAVE_XOSD_VERSION_1, 1, Define if <xosd.h> is 1.0.x),
3286     AC_CHECK_LIB(xosd,xosd_set_horizontal_offset,
3287         AC_DEFINE(HAVE_XOSD_VERSION_2, 1, Define if <xosd.h> is 2.0.x),
3288       AC_TRY_COMPILE([#include <xosd.h>],
3289          [void foo() { xosd_init("foo","bar",12,XOSD_top,2,12,42); }],,
3290           AC_DEFINE(HAVE_XOSD_VERSION_0, 1, Define if <xosd.h> is pre-1.0.0))))
3291   if test "${have_xosd}" = "true"
3292   then
3293     AX_ADD_PLUGINS([xosd])
3294     AX_ADD_LDFLAGS([xosd],[-lxosd])
3295   fi
3296 fi
3297
3298 dnl
3299 dnl Visualisation plugin
3300 dnl
3301 AC_ARG_ENABLE(visual,
3302   [  --enable-visual          visualisation plugin (default enabled)])
3303 if test "${enable_visual}" != "no"
3304 then
3305     AX_ADD_PLUGINS([visual])
3306 fi
3307
3308 dnl
3309 dnl  goom visualization plugin
3310 dnl
3311 AC_ARG_ENABLE(goom,
3312 [  --enable-goom           goom visualisation plugin (default disabled)])
3313 if test "${enable_goom}" = "yes"
3314 then
3315   AC_ARG_WITH(goom-tree,
3316     [    --with-goom-tree=PATH goom tree for static linking (required)])
3317
3318   dnl
3319   dnl test for --with-goom-tree
3320   dnl
3321   if test "${with_goom_tree}" != "no" -a -n "${with_goom_tree}"; then
3322     AC_MSG_CHECKING(for libgoom.a in ${with_goom_tree})
3323     real_goom_tree="`cd ${with_goom_tree} 2>/dev/null && pwd`"
3324     if test -z "${real_goom_tree}"; then
3325       dnl  The given directory can't be found
3326       AC_MSG_RESULT(no)
3327       AC_MSG_ERROR([cannot cd to ${with_goom_tree}])
3328     fi
3329     if test -f "${real_goom_tree}/libgoom.a"; then
3330       AC_MSG_RESULT(${real_goom_tree}/libgoom.a)
3331       AX_ADD_BUILTINS([goom])
3332       AX_ADD_LDFLAGS([goom],[-L${real_goom_tree} -lgoom])
3333       AX_ADD_CPPFLAGS([goom],[-I${real_goom_tree}])
3334     else
3335       dnl  The given libgoom wasn't built
3336       AC_MSG_RESULT(no)
3337       AC_MSG_ERROR([cannot find ${real_goom_tree}/libgoom.a, make sure you compiled goom in ${with_goom_tree}])
3338     fi
3339   else
3340     dnl  The --with-goom-tree isn't specified wasn't built
3341     AC_MSG_RESULT(no)
3342     AC_MSG_ERROR([You have to specify a tree with --with-goom-tree])
3343   fi
3344 fi
3345
3346 dnl
3347 dnl  SLP access plugin
3348 dnl
3349 AC_ARG_ENABLE(slp,
3350   [  --enable-slp            SLP service discovery support (default enabled)])
3351 if test "${enable_slp}" != "no"
3352 then
3353   AC_ARG_WITH(slp,
3354   [    --with-slp=PATH       libslp headers and libraries])
3355   if test -z "${with_slp}"
3356   then
3357     AC_CHECK_HEADERS(slp.h, have_slp="true", have_slp="false")
3358     if test "${have_slp}" = "true"
3359     then
3360       AX_ADD_PLUGINS([slp])
3361       AX_ADD_LDFLAGS([slp],[-lslp])
3362       AX_ADD_LDFLAGS([stream_out_standard],[-lslp])
3363     fi
3364   else
3365     AC_MSG_CHECKING(for slp headers in ${with_slp})
3366     if test -f ${with_slp}/slp.h
3367     then
3368       dnl  Use ${with_slp}/libslp/slp.h
3369       AC_MSG_RESULT(yes)
3370       AX_ADD_PLUGINS([slp])
3371       AX_ADD_LDFLAGS([slp],[-L${with_slp} -lslp])
3372       AX_ADD_LDFLAGS([stream_out_standard],[-L${with_slp} -lslp])
3373       AX_ADD_CPPFLAGS([slp],[-I${with_slp}])
3374       AC_DEFINE(HAVE_SLP_H)
3375     else
3376       dnl  No libslp could be found, sorry
3377       AC_MSG_RESULT(no)
3378       AC_MSG_ERROR([cannot find ${with_slp}/slp.h])
3379     fi
3380   fi
3381 fi
3382
3383 dnl
3384 dnl  Lirc plugin
3385 dnl
3386 AC_ARG_ENABLE(lirc,
3387   [  --enable-lirc           lirc support (default disabled)])
3388 if test "${enable_lirc}" = "yes"
3389 then
3390   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
3391   if test "${have_lirc}" = "true"
3392   then
3393     AX_ADD_PLUGINS([lirc])
3394     AX_ADD_LDFLAGS([lirc],[-llirc_client])
3395   fi
3396 fi
3397
3398 dnl 
3399 dnl  Joystick plugin
3400 dnl
3401 AC_ARG_ENABLE(joystick,
3402   [  --enable-joystick       joystick control (default disabled)])
3403 if test "${enable_joystick}" = "yes"
3404 then
3405  AC_CHECK_HEADER( linux/joystick.h, 
3406                 [AX_ADD_PLUGINS([joystick])]
3407                 )
3408 fi
3409
3410
3411 dnl
3412 dnl corba (ORBit) plugin
3413 dnl
3414 AC_ARG_ENABLE(corba,
3415   [  --enable-corba          corba interface support (default disabled)])
3416 if test "${enable_corba}" = "yes"; then
3417   ORBIT_PATH="${PATH}"
3418   AC_ARG_WITH(orbit-config-path,
3419   [    --with-orbit-config-path=PATH orbit-config path (default search in \$PATH)])
3420   if test "${with_orbit_config_path}" != "no"; then
3421     ORBIT_PATH="${with_orbit_config_path}:${PATH}"
3422   fi
3423   # look for orbit2-config
3424   AC_PATH_PROG(ORBIT_CONFIG, orbit2-config, no, ${ORBIT_PATH})
3425   if test "${ORBIT_CONFIG}" != "no"; then
3426     AX_ADD_CFLAGS(corba,[`${ORBIT_CONFIG} --cflags server`])
3427     AX_ADD_LDFLAGS(corba,[`${ORBIT_CONFIG} --libs server | sed 's,-rdynamic,,'`])
3428     # now look for the orbit.h header
3429     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_corba}"
3430     ac_cv_corba_headers=yes
3431     AC_CHECK_HEADERS(orbit/orbit.h, , [
3432       ac_cv_corba_headers=no
3433       AC_MSG_ERROR([Could not find corba development headers])
3434     ])
3435     if test "${ac_cv_corba_headers}" = "yes"; then
3436       AX_ADD_PLUGINS(corba)
3437     fi
3438     CPPFLAGS="${CPPFLAGS_save}"
3439   fi
3440 fi
3441
3442 AC_ARG_WITH(,[Misc options:])
3443
3444 dnl
3445 dnl  Endianness check, AC_C_BIGENDIAN doesn't work if we are cross-compiling
3446 dnl
3447 dnl  We give the user the opportunity to specify
3448 dnl  --with-words=big or --with-words=little ; otherwise, try to guess
3449 dnl
3450 AC_ARG_WITH(words,
3451   [  --with-words=endianness set endianness (big or little)])
3452   case "${with_words}" in
3453     big)
3454       ac_cv_c_bigendian=yes
3455       ;;
3456     little)
3457       ac_cv_c_bigendian=no
3458       ;;
3459     *)
3460       dnl  Try to guess endianness by matching patterns on a compiled
3461       dnl  binary, by looking for an ASCII or EBCDIC string
3462       AC_CACHE_CHECK([whether the byte order is big-endian],
3463         [ac_cv_c_bigendian],
3464         [ac_cv_c_bigendian="unknown"
3465         [cat >conftest.c <<EOF
3466         short am[] = { 0x4249, 0x4765, 0x6e44, 0x6961, 0x6e53, 0x7953, 0 };
3467         short ai[] = { 0x694c, 0x5454, 0x656c, 0x6e45, 0x6944, 0x6e61, 0 };
3468         void _a(void) { char*s = (char*)am; s = (char *)ai; }
3469         short ei[] = { 0x89D3, 0xe3e3, 0x8593, 0x95c5, 0x89c4, 0x9581, 0 };
3470         short em[] = { 0xc2c9, 0xc785, 0x95c4, 0x8981, 0x95e2, 0xa8e2, 0 };
3471         void _e(void) { char*s = (char*)em; s = (char*)ei; }
3472         int main(void) { _a(); _e(); return 0; }
3473 EOF
3474         ]
3475         if test -f conftest.c
3476         then
3477           if ${CC-cc} -c conftest.c -o conftest.o >>config.log 2>&1 \
3478               && test -f conftest.o
3479           then
3480             if test "`strings conftest.o | grep BIGenDianSyS`"
3481             then
3482               ac_cv_c_bigendian="yes"
3483             fi
3484             if test "`strings conftest.o | grep LiTTleEnDian`"
3485             then
3486               ac_cv_c_bigendian="no"
3487             fi
3488           fi
3489         fi
3490       ])
3491       if test "${ac_cv_c_bigendian}" = "unknown"
3492       then
3493         AC_MSG_ERROR([Could not guess endianness, please use --with-words])
3494       fi
3495       ;;
3496   esac
3497 dnl  Now we know what to use for endianness, just put it in the header
3498 if test "${ac_cv_c_bigendian}" = "yes"
3499 then
3500   AC_DEFINE(WORDS_BIGENDIAN, 1, big endian system)
3501 fi
3502
3503 dnl
3504 dnl  Mozilla plugin
3505 dnl
3506 mozilla=false
3507 AC_ARG_ENABLE(mozilla,
3508   [  --enable-mozilla        build a vlc-based Mozilla plugin (default disabled)])
3509 if test "${enable_mozilla}" = "yes" -a "${SYS}" != "mingw32"
3510 then
3511   AC_PATH_PROG(MOZILLA_CONFIG, mozilla-config, no)
3512   if test "${MOZILLA_CONFIG}" = "no"
3513   then
3514     AC_MSG_ERROR([Please install the Mozilla development tools, mozilla-config was not found.])
3515   else
3516     if test "${SYS}" != "mingw32"; then
3517       LDFLAGS="${LDFLAGS_save} -L${x_libraries}"
3518       AC_CHECK_LIB(Xt,XtStrings,[
3519         AX_ADD_LDFLAGS([mozilla],[-L${x_libraries} -lXt])
3520       ])
3521       LDFLAGS="${LDFLAGS_save}"
3522     fi
3523     mozilla=:
3524     dnl Workaround for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=150490
3525     AX_ADD_CPPFLAGS([mozilla],[[`${MOZILLA_CONFIG} --cflags plugin xpcom java | sed 's,-I\([^ ]*\)/mozilla/\([^ ]*\),-I\1/\2 -I\1/mozilla/\2,g' | xargs`]])
3526     AX_ADD_LDFLAGS([mozilla],[`${MOZILLA_CONFIG} --libs plugin xpcom`])
3527     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mozilla}"
3528     AC_CHECK_HEADERS(mozilla-config.h)
3529     CPPFLAGS="${CPPFLAGS_save}"
3530   fi
3531
3532 dnl special case for mingw32
3533 elif test "${enable_mozilla}" = "yes"
3534 then
3535   AC_ARG_WITH(mozilla-sdk-path,
3536     [    --with-mozilla-sdk-path=PATH path to win32 mozilla sdk], [
3537     real_mozilla_sdk="`cd ${with_mozilla_sdk_path} 2>/dev/null && pwd`"
3538     CPPFLAGS="${CPPFLAGS_save} ${real_mozilla_sdk}"
3539     AC_CHECK_HEADERS(mozilla-config.h, [
3540       mozilla=:
3541       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])
3542       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])
3543       XPIDL_INCL="-I${real_mozilla_sdk}/xpcom/idl" ])
3544     CPPFLAGS="${CPPFLAGS_save}"
3545   ])
3546 fi
3547
3548 dnl Not necessarily in ${PATH}
3549 if test -z "${XPIDL}" -o ! -x "${XPIDL}"; then
3550   XPIDL="/usr/lib/mozilla/xpidl"
3551 fi
3552 AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
3553
3554 dnl
3555 dnl  test plugins
3556 dnl
3557 AC_ARG_ENABLE(testsuite,
3558   [  --enable-testsuite      build test modules (default disabled)])
3559 if test "${enable_testsuite}" = "yes"
3560 then
3561   TESTS="test1 test2 test3 test4"
3562
3563   dnl  we define those so that bootstrap sets the right linker
3564   AX_ADD_CXXFLAGS([test2],[])
3565   AX_ADD_OBJCFLAGS([test3],[])
3566   dnl  this one is needed until automake knows what to do
3567   AX_ADD_LDFLAGS([test3],[-lobjc])
3568
3569   AX_ADD_PLUGINS([${TESTS}])
3570   #AX_ADD_BUILTINS([${TESTS}])
3571 fi
3572
3573 dnl
3574 dnl  gtk_main plugin
3575 dnl
3576 if test "${NEED_GTK_MAIN}" != "no"
3577 then
3578     AX_ADD_PLUGINS([gtk_main])
3579     AX_ADD_CFLAGS([gtk_main],[${CFLAGS_gtk}])
3580     AX_ADD_LDFLAGS([gtk_main],[${LDFLAGS_gtk}])
3581 fi
3582
3583 if test "${NEED_GNOME_MAIN}" != "no"
3584 then
3585     AX_ADD_PLUGINS([gnome_main])
3586     AX_ADD_CFLAGS([gnome_main],[${CFLAGS_gtk} ${CFLAGS_gnome}])
3587     AX_ADD_LDFLAGS([gnome_main],[${LDFLAGS_gtk} ${LDFLAGS_gnome}])
3588 fi
3589
3590 if test "${NEED_GTK2_MAIN}" != "no"
3591 then
3592     AX_ADD_PLUGINS([gtk2_main])
3593     AX_ADD_CFLAGS([gtk2],[-DNEED_GTK2_MAIN])
3594     AX_ADD_CFLAGS([pda],[-DNEED_GTK2_MAIN])
3595     AX_ADD_CFLAGS([gtk2_main],[${CFLAGS_gtk2} ${CFLAGS_pda}])
3596     AX_ADD_LDFLAGS([gtk2_main],[${LDFLAGS_gtk2} ${LDFLAGS_pda}])
3597 fi
3598
3599 if test "${NEED_GNOME2_MAIN}" != "no"
3600 then
3601     AX_ADD_PLUGINS([gnome2_main])
3602     AX_ADD_CFLAGS([gnome2_main],[${CFLAGS_gtk2} ${CFLAGS_gnome2}])
3603     AX_ADD_LDFLAGS([gnome2_main],[${LDFLAGS_gtk2} ${LDFLAGS_gnome2}])
3604 fi
3605
3606 dnl
3607 dnl  qte_main plugin
3608 dnl
3609 if test "${NEED_QTE_MAIN}" != "no"
3610 then
3611     AX_ADD_PLUGINS([qte_main])
3612     AX_ADD_CPPFLAGS([qte opie vout_sdl],[-DNEED_QTE_MAIN])
3613     AX_ADD_CXXFLAGS([qte_main],[${CPPFLAGS_qte} ${CXXFLAGS_qte}])
3614     AX_ADD_LDFLAGS([qte_main],[${LDFLAGS_qte}])
3615 fi
3616
3617
3618 dnl
3619 dnl  Plugin and builtin checks
3620 dnl
3621 builtin_support=false
3622 plugin_support=:
3623
3624 dnl Support for plugins - this must be AT THE END
3625 AC_ARG_ENABLE(plugins,
3626   [  --disable-plugins       make all plugins built-in (default plugins enabled)],
3627   [if test "${enable_plugins}" = "no"
3628    then
3629      plugin_support=false
3630    fi])
3631
3632 dnl Automagically disable plugins if there is no system support for
3633 dnl dynamically loadable files (.so, .dll, .dylib).
3634 dnl don't forget vlc-win32 still can load .dll as plugins
3635 if test "${ac_cv_have_plugins}" = "no"
3636 then
3637   echo "*** Your system doesn't have plugin support. All plugins will be built"
3638   echo "statically."
3639   plugin_support=false
3640 fi
3641
3642 dnl Export automake variables
3643 if ${plugin_support}
3644 then
3645   for plugin in `echo ${PLUGINS}`
3646   do
3647     eval "${plugin}_p=yes"
3648   done
3649 else
3650   AX_ADD_BUILTINS([${PLUGINS}])
3651   PLUGINS=""
3652 fi
3653 AM_CONDITIONAL(HAVE_PLUGINS, ${plugin_support})
3654
3655 [if echo "${BUILTINS}" | grep '[^ ]' >/dev/null 2>&1
3656 then
3657   builtin_support=:
3658   for builtin in `echo ${BUILTINS}`
3659   do
3660     eval "${builtin}_b=yes"
3661   done
3662 fi]
3663 AM_CONDITIONAL(HAVE_BUILTINS, ${builtin_support})
3664
3665 dnl Import conditional variables generated by bootstrap
3666 AX_VLC_CONDITIONALS
3667
3668 dnl
3669 dnl  Stuff used by the program
3670 dnl
3671 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION} ${CODENAME}", [Simple version string])
3672 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "VLC media player - version ${VERSION} ${CODENAME} - (c) 1996-2003 VideoLAN", [Copyright string])
3673 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
3674
3675 VLC_SYMBOL="`echo ${VERSION} | sed -e 'y/.-+/___/'`"
3676 AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${VLC_SYMBOL}", [String suffix for module functions])
3677 AC_DEFINE_UNQUOTED(MODULE_SYMBOL, ${VLC_SYMBOL}, [Symbol suffix for module functions])
3678 AC_DEFINE_UNQUOTED(LIBEXT, "${LIBEXT}", [Dynamic object extension])
3679
3680 DATA_PATH="${ac_tool_prefix}/share/vlc"
3681 AC_SUBST(DATA_PATH)
3682 PLUGIN_PATH="${ac_tool_prefix}/lib/vlc"
3683 AC_SUBST(PLUGIN_PATH)
3684
3685 dnl
3686 dnl  Handle substvars that use $(top_srcdir)
3687 dnl
3688 VLC_CONFIG="top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config"
3689 AC_SUBST(VLC_CONFIG)
3690 CPPFLAGS_save="${CPPFLAGS_save} -I\$(top_srcdir)/include"
3691
3692 dnl
3693 dnl  Restore *FLAGS
3694 dnl
3695 AX_RESTORE_FLAGS
3696
3697 dnl
3698 dnl  Create the vlc-config script
3699 dnl
3700 LDFLAGS_libvlc="${LDFLAGS_vlc} ${LDFLAGS_builtin}"
3701 for i in `echo "${BUILTINS}" | sed -e 's@[^ ]*/@@g'` ; do LDFLAGS_libvlc="${LDFLAGS_libvlc} ${libdir}/vlc/${i}.a `eval echo '$'{LDFLAGS_${i}}`" ; done
3702
3703 dnl
3704 dnl  Configuration is finished
3705 dnl
3706 AC_SUBST(SYS)
3707 AC_SUBST(ARCH)
3708 AC_SUBST(ALIASES)
3709 AC_SUBST(ASM)
3710 AC_SUBST(MOC)
3711 AC_SUBST(WINDRES)
3712 AC_SUBST(XPIDL)
3713 AC_SUBST(XPIDL_INCL)
3714 AC_SUBST(LIBEXT)
3715 AC_SUBST(INCLUDES)
3716 AC_SUBST(ALL_LINGUAS)
3717
3718 dnl Import substitutions generated by bootstrap
3719 AX_VLC_SUBSTS
3720
3721 dnl Create vlc-config.in
3722 AX_OUTPUT_VLC_CONFIG_IN
3723
3724 AC_CONFIG_FILES([
3725   Makefile
3726   autotools/Makefile
3727   debian/Makefile
3728   doc/Makefile
3729   intl/Makefile
3730   ipkg/Makefile
3731   lib/Makefile
3732   modules/Makefile
3733   mozilla/Makefile
3734   m4/Makefile
3735   po/Makefile.in
3736   share/Makefile
3737   src/Makefile
3738 ])
3739
3740 AC_CONFIG_FILES([
3741   modules/access/Makefile
3742   modules/access/dshow/Makefile
3743   modules/access/dvb/Makefile
3744   modules/access/dvd/Makefile
3745   modules/access/dvdplay/Makefile
3746   modules/access/dvdread/Makefile
3747   modules/access/mms/Makefile
3748   modules/access/pvr/Makefile
3749   modules/access/satellite/Makefile
3750   modules/access/v4l/Makefile
3751   modules/access/cdda/Makefile
3752   modules/access/vcd/Makefile
3753   modules/access/vcdx/Makefile
3754   modules/access_output/Makefile
3755   modules/audio_filter/Makefile
3756   modules/audio_filter/channel_mixer/Makefile
3757   modules/audio_filter/converter/Makefile
3758   modules/audio_filter/resampler/Makefile
3759   modules/audio_mixer/Makefile
3760   modules/audio_output/Makefile
3761   modules/codec/Makefile
3762   modules/codec/ffmpeg/Makefile
3763   modules/codec/ffmpeg/postprocessing/Makefile
3764   modules/codec/ogt/Makefile
3765   modules/codec/spudec/Makefile
3766   modules/control/Makefile
3767   modules/control/corba/Makefile
3768   modules/control/lirc/Makefile
3769   modules/control/rc/Makefile
3770   modules/demux/Makefile
3771   modules/demux/asf/Makefile
3772   modules/demux/avi/Makefile
3773   modules/demux/mp4/Makefile
3774   modules/demux/mpeg/Makefile
3775   modules/demux/playlist/Makefile
3776   modules/demux/util/Makefile
3777   modules/gui/Makefile
3778   modules/gui/beos/Makefile
3779   modules/gui/pda/Makefile
3780   modules/gui/gtk/Makefile
3781   modules/gui/gtk2/Makefile
3782   modules/gui/kde/Makefile
3783   modules/gui/macosx/Makefile
3784   modules/gui/ncurses/Makefile
3785   modules/gui/qnx/Makefile
3786   modules/gui/qt/Makefile
3787   modules/gui/skins/Makefile
3788   modules/gui/skins2/Makefile
3789   modules/gui/wxwindows/Makefile
3790   modules/misc/Makefile
3791   modules/misc/dummy/Makefile
3792   modules/misc/logger/Makefile
3793   modules/misc/memcpy/Makefile
3794   modules/misc/network/Makefile
3795   modules/misc/testsuite/Makefile
3796   modules/misc/playlist/Makefile
3797   modules/mux/Makefile
3798   modules/mux/mpeg/Makefile
3799   modules/packetizer/Makefile
3800   modules/stream_out/Makefile
3801   modules/stream_out/transrate/Makefile
3802   modules/video_chroma/Makefile
3803   modules/video_filter/Makefile
3804   modules/video_filter/deinterlace/Makefile
3805   modules/video_output/Makefile
3806   modules/video_output/directx/Makefile
3807   modules/video_output/mga/Makefile
3808   modules/video_output/qte/Makefile
3809   modules/video_output/x11/Makefile
3810   modules/visualization/Makefile
3811   modules/visualization/scope/Makefile
3812   modules/visualization/xosd/Makefile
3813   modules/visualization/visual/Makefile
3814 ])
3815
3816 AC_CONFIG_FILES([vlc-config], [chmod 0755 vlc-config])
3817
3818 dnl Generate makefiles
3819 AC_OUTPUT
3820
3821 printf "
3822 vlc configuration
3823 --------------------
3824 vlc version           : ${VERSION}
3825 system                : ${SYS}
3826 architecture          : ${ARCH}
3827 build flavour         : "
3828 test "${enable_debug}" = "yes" && printf "debug "
3829 test "${enable_cprof}" = "yes" && printf "cprof "
3830 test "${enable_gprof}" = "yes" && printf "gprof "
3831 test "${enable_optimizations}" = "yes" && printf "optim "
3832 test "${enable_release}" = "yes" && printf "release " || printf "devel "
3833 echo "
3834 vlc aliases           :${ALIASES}
3835
3836 You can tune the compiler flags in vlc-config.
3837 To build vlc and its plugins, type \`make'.
3838 "
3839