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