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