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