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