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