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