]> git.sesse.net Git - vlc/blob - configure.ac
* modules/mux/mpeg/ts.c: Support for SDT and multiple PMTs, original
[vlc] / configure.ac
1 dnl Autoconf settings for vlc
2 dnl $Id$
3
4 AC_INIT(vlc,0.8.4-svn)
5 VERSION_MAJOR="0"
6 VERSION_MINOR="8"
7 VERSION_REVISION="4"
8 VERSION_EXTRA="svn"
9
10 CONFIGURE_LINE="$0 $*"
11 CODENAME="Janus"
12
13 AC_PREREQ(2.50)
14 AC_CONFIG_SRCDIR(src/libvlc.c)
15 AC_CONFIG_AUX_DIR(autotools)
16 AC_CANONICAL_SYSTEM
17
18 dnl XXX: we don't put any flags here, because automake 1.5 doesn't support
19 dnl them. And we need the comma otherwize automake will choke on it.
20 AM_INIT_AUTOMAKE(vlc,0.8.4-svn)
21 AM_CONFIG_HEADER(config.h)
22
23 dnl
24 dnl  Save *FLAGS
25 dnl
26 VLC_SAVE_FLAGS
27
28 dnl
29 dnl Check for tools
30 dnl
31 AC_PROG_CC
32 AM_PROG_CC_C_O
33 AC_PROG_CPP
34 AC_PROG_CXX
35 eval "${CXX} --version" >/dev/null 2>&1 || CXX=""
36 if test "${CXX}" != ""; then
37   AC_PROG_CXXCPP
38 fi
39 AC_PROG_MAKE_SET
40 AC_PROG_INSTALL
41 AM_PROG_AS
42
43 dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right
44 dnl now otherwise it might be set in an obscure if statement.
45 AC_EGREP_CPP(foo,foo)
46
47 dnl AC_PROG_OBJC doesn't seem to exist, this is the KDE workaround
48 AC_MSG_CHECKING(for an Objective-C compiler)
49 OBJC="${CXX}"
50 AC_SUBST(OBJC)
51 OBJCFLAGS="${CXXFLAGS} -fgnu-runtime -fconstant-string-class=NSConstantString"
52 AC_SUBST(OBJCFLAGS)
53 dnl _AM_DEPENDENCIES(OBJC) doesn't work, so hard code OBJCDEPMODE here
54 #OBJCDEPMODE="depmode=gcc3"
55 #AC_SUBST(OBJCDEPMODE)
56 _AM_DEPENDENCIES(OBJC)
57 AC_MSG_RESULT(not implemented yet)
58
59 dnl Find the right ranlib, even when cross-compiling
60 AC_CHECK_TOOL(RANLIB, ranlib, :)
61 AC_CHECK_TOOL(STRIP, strip, :)
62 AC_CHECK_TOOL(AR, ar, :)
63 AC_CHECK_TOOL(LD, ld, :)
64
65 dnl Sam, if you think I didn't see that... --Meuuh
66 dnl AM_PROG_LIBTOOL
67 AC_PROG_INSTALL
68
69 dnl Check for compiler properties
70 AC_C_CONST
71 AC_C_INLINE
72
73 dnl
74 dnl  Check for the contrib directory
75 dnl
76 AC_ARG_WITH(contrib,
77     [  --without-contrib       do not use the libraries in extras/contrib],[],[])
78   if test "${with_contrib}" != "no"; then 
79
80     topdir="`dirname $0`"
81     if test "`echo \"$topdir\" | cut -c 1`" != "/"; then
82        topdir="`pwd`/$topdir"
83     fi
84
85   if test -d ${topdir}/extras/contrib/lib; then
86     export PATH=${topdir}/extras/contrib/bin:$PATH
87     CPPFLAGS="${CPPFLAGS} -I${topdir}/extras/contrib/include"
88     CPPFLAGS_save="${CPPFLAGS_save} -I${topdir}/extras/contrib/include"
89     CFLAGS="${CFLAGS} -I${topdir}/extras/contrib/include"
90     CFLAGS_save="${CFLAGS_save} -I${topdir}/extras/contrib/include"
91     CXXFLAGS="${CXXFLAGS} -I${topdir}/extras/contrib/include"
92     CXXFLAGS_save="${CXXFLAGS_save} -I${topdir}/extras/contrib/include"
93     OBJCFLAGS="${OBJCFLAGS} -I${topdir}/extras/contrib/include"
94     OBJCFLAGS_save="${OBJCFLAGS_save} -I${topdir}/extras/contrib/include"
95     if test -d ${topdir}/extras/contrib/vlc-lib; then
96       LDFLAGS="${LDFLAGS} -L${topdir}/extras/contrib/vlc-lib"
97       LDFLAGS_save="${LDFLAGS_save} -L${topdir}/extras/contrib/vlc-lib"
98     fi
99     LDFLAGS="${LDFLAGS} -L${topdir}/extras/contrib/lib"
100     LDFLAGS_save="${LDFLAGS_save} -L${topdir}/extras/contrib/lib"
101     with_livedotcom_tree=${topdir}/extras/contrib/src/live
102     with_goom_tree=${topdir}/extras/contrib/src/goom
103     if test ".`uname -s`" = ".Darwin"; then
104       export LD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$LD_LIBRARY_PATH
105       export DYLD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$DYLD_LIBRARY_PATH
106     elif test ".`uname -s`" = ".BeOS"; then
107       export LIBRARY_PATH=${topdir}/extras/contrib/lib:$LIBRARY_PATH
108       export BELIBRARIES=${topdir}/extras/contrib/lib:$BELIBRARIES
109     fi
110   fi
111 fi
112 dnl
113 dnl  Set default values
114 dnl
115 LDFLAGS_vlc="${LDFLAGS}"
116
117 dnl
118 dnl  Check the operating system
119 dnl
120 case "${target_os}" in
121   "")
122     SYS=unknown
123     ;;
124   linux*)
125     SYS=linux
126     ;;
127   bsdi*)
128     SYS=bsdi
129     CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
130     VLC_ADD_LDFLAGS([dvd dvdcss vcd cdda vcdx cddax],[-ldvd])
131     ;;
132   *bsd*)
133     SYS="${target_os}"
134     CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
135     ;;
136   darwin*)
137     SYS=darwin
138     CFLAGS_save="${CFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; CFLAGS="${CFLAGS_save}"
139     CXXFLAGS_save="${CXXFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; CXXFLAGS="${CXXFLAGS_save}"
140     OBJCFLAGS_save="${OBJCFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; OBJCFLAGS="${OBJCFLAGS_save}"
141     VLC_ADD_LDFLAGS([vlc ffmpeg ffmpegaltivec],[-all_load])
142     VLC_ADD_LDFLAGS([mp4], [-framework IOKit -framework CoreFoundation])
143     VLC_ADD_CFLAGS([libvlc],[-x objective-c])
144     VLC_ADD_CFLAGS([vlc],[-x objective-c])
145     VLC_ADD_LDFLAGS([vlc],[-Wl,-m -Wl,-multiply_defined -Wl,suppress])
146     ;;
147   *mingw32* | *cygwin* | *wince* | *mingwce* | *pe*)
148     AC_CHECK_TOOL(WINDRES, windres, :)
149
150     case "${target_os}" in
151       *mingw32*)
152         SYS=mingw32
153         ;;
154       *cygwin*)
155         dnl Check if we are using the mno-cygwin mode in which case we are
156         dnl actually dealing with a mingw32 compiler.
157         AC_EGREP_CPP(yes,
158             [#ifdef WIN32
159              yes
160              #endif],
161             SYS=mingw32, SYS=cygwin)
162         ;;
163       *wince* | *mingwce* | *pe*)
164         SYS=mingwce
165         ;;
166     esac
167
168     if test "${SYS}" = "mingw32"; then
169         # add ws2_32 for closesocket, select, recv
170         CPPFLAGS_save="${CPPFLAGS_save} -D_OFF_T_ -D_off_t=long"; CPPFLAGS="${CPPFLAGS_save}"
171         VLC_ADD_LDFLAGS([vlc],[-lws2_32 -lnetapi32 -lwinmm -mwindows])
172         VLC_ADD_LDFLAGS([vcdx cddax],[-lwinmm])
173         VLC_ADD_LDFLAGS([ipv4 ipv6 access_http access_mms access_udp access_tcp access_ftp access_output_udp sap slp http stream_out_standard stream_out_rtp vod_rtsp telnet netsync],[-lws2_32])
174     fi
175     if test "${SYS}" = "mingwce"; then
176         # add ws2 for closesocket, select, recv
177         CPPFLAGS_save="${CPPFLAGS_save} -D_OFF_T_ -D_off_t=long"; CPPFLAGS="${CPPFLAGS_save}"
178         VLC_ADD_CPPFLAGS([vlc],[-Dmain(a,b)=maince(a,b)])
179         VLC_ADD_LDFLAGS([vlc],[-lws2 -e WinMainCRTStartup])
180         VLC_ADD_LDFLAGS([ipv4 ipv6 access_http access_mms access_udp access_tcp access_ftp access_output_udp sap http netsync],[-lws2])
181    fi
182     ;;
183   *nto*)
184     SYS=nto
185     VLC_ADD_LDFLAGS([x11 xvideo],[-lsocket])
186     ;;
187   solaris*)
188     SYS=solaris
189     # _POSIX_PTHREAD_SEMANTICS is needed to get the POSIX ctime_r
190     # Perhaps it is useful other places as well? 
191     CFLAGS_save="${CFLAGS_save} -D_POSIX_PTHREAD_SEMANTICS"; CFLAGS="${CFLAGS_save}"
192     ;;
193   hpux*)
194     SYS=hpux
195     ;;
196   beos)
197     SYS=beos
198     CFLAGS_save="${CFLAGS_save} -Wno-multichar"; CFLAGS="${CFLAGS_save}"
199     CXXFLAGS_save="${CXXFLAGS_save} -Wno-multichar"; CXXFLAGS="${CXXFLAGS_save}"
200     VLC_ADD_CXXFLAGS([beos],[])
201     VLC_ADD_LDFLAGS([vlc beos],[-lbe])
202     VLC_ADD_LDFLAGS([beos],[-lmedia -ltranslation -ltracker -lgame])
203     VLC_ADD_LDFLAGS([access_file access_ftp access_mms access_output_udp telnet netsync sap ipv4 vlc],[-lnet])
204
205     dnl Ugly check for Zeta
206     if test -f /boot/beos/system/lib/libzeta.so; then
207         VLC_ADD_LDFLAGS([beos],[-lzeta])
208     fi
209     ;;
210   *)
211     SYS="${target_os}"
212     ;;
213 esac
214 AM_CONDITIONAL(HAVE_BEOS, test "${SYS}" = "beos")
215 AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin")
216 AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32")
217 AM_CONDITIONAL(HAVE_WINCE, test "${SYS}" = "mingwce")
218
219 dnl
220 dnl Gettext stuff
221 dnl
222 ALL_LINGUAS="ca da de en_GB es fr it ja ko nl pt_BR ro ru tr zh_TW"
223 AM_GNU_GETTEXT_VERSION(0.11.5)
224 AM_GNU_GETTEXT
225 if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then
226   AC_DEFINE(HAVE_INCLUDED_GETTEXT, 1, Define if we use the local libintl)
227   INCLUDES="${INCLUDES} -I\$(top_builddir)/intl"
228 else
229   AC_CHECK_FUNCS(textdomain,,[
230     AC_CHECK_LIB(intl,textdomain,
231       VLC_ADD_LDFLAGS([vlc],[${LIBINTL}]),,
232       ${LIBINTL}
233     )
234   ])
235 fi
236 AM_CONDITIONAL(BUILD_INTL, test "${nls_cv_force_use_gnu_gettext}" = "yes")
237 XGETTEXT="${XGETTEXT} --keyword=_NS --keyword=_ANS"
238
239 dnl
240 dnl Iconv stuff
241 dnl
242 if test "${SYS}" != "mingwce"; then
243 AS_IF([test "$am_cv_func_iconv" != "yes"],
244         [AC_MSG_ERROR([libiconv is needed for VLC to work properly])])
245 fi
246 VLC_ADD_CFLAGS([vlc],[${INCICONV}])
247 VLC_ADD_LDFLAGS([vlc],[${LIBICONV}])
248
249 dnl Check for the need to include the mingwex lib for mingw32
250 if test "${SYS}" = "mingw32"
251 then
252     AC_CHECK_LIB(mingwex,opendir,
253         AC_CHECK_LIB(mingw32,opendir,VLC_ADD_LDFLAGS([vlc],[]),
254             [VLC_ADD_LDFLAGS([vlc gtk],[-lmingwex])])
255     )
256 fi
257
258 dnl Check for fnative-struct or mms-bitfields support for mingw32
259 if test "${SYS}" = "mingw32"
260 then
261     AC_CACHE_CHECK([if \$CC accepts -mms-bitfields],
262         [ac_cv_c_mms_bitfields],
263         [CFLAGS="${CFLAGS_save} -mms-bitfields"
264          AC_TRY_COMPILE([],,ac_cv_c_mms_bitfields=yes, ac_cv_c_mms_bitfields=no)])
265     if test "${ac_cv_c_mms_bitfields}" != "no"; then
266         CFLAGS_save="${CFLAGS_save} -mms-bitfields";
267         CXXFLAGS_save="${CXXFLAGS_save} -mms-bitfields";
268     else
269         AC_CACHE_CHECK([if \$CC accepts -fnative-struct],
270             [ac_cv_c_fnative_struct],
271             [CFLAGS="${CFLAGS_save} -fnative-struct"
272              AC_TRY_COMPILE([],,ac_cv_c_fnative_struct=yes, ac_cv_c_fnative_struct=no)])
273         if test "${ac_cv_c_fnative_struct}" != "no"; then
274             CFLAGS_save="${CFLAGS_save} -fnative-struct";
275             CXXFLAGS_save="${CXXFLAGS_save} -fnative-struct";
276         fi
277     fi
278
279     CFLAGS="${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
280 fi
281
282 dnl Check for fvtable-thunks support for mingw32
283 if test "${SYS}" = "mingw32" -a "${CXX}" != ""
284 then
285 AC_LANG_PUSH(C++)
286     AC_CACHE_CHECK([if \$CXX accepts -fvtable-thunks],
287         [ac_cv_cxx_fvtable_thunks],
288         [CXXFLAGS="${CXXFLAGS_save} -Wall -Werror -fvtable-thunks"
289          AC_TRY_COMPILE([],,ac_cv_cxx_fvtable_thunks=yes,
290                         ac_cv_cxx_fvtable_thunks=no)])
291     if test "${ac_cv_cxx_fvtable_thunks}" = "yes"; then
292         CXXFLAGS_mingw32_special="-fvtable-thunks"
293     fi
294
295     CXXFLAGS_save="${CXXFLAGS_save} ${CXXFLAGS_mingw32_special}"; CXXFLAGS="${CXXFLAGS_save}"
296 AC_LANG_POP(C++)
297 fi
298
299 dnl Plugin compilation stuff
300
301 VLC_LIBRARY_SUFFIX
302
303 VLC_SYMBOL_PREFIX
304 AC_SUBST(SYMPREF)
305
306 case "${SYS}" in
307   mingw32|cygwin)
308     VLC_ADD_CFLAGS([pic plugin mozilla activex],[${CFLAGS_mingw32_special}])
309     VLC_ADD_CXXFLAGS([pic plugin mozilla activex],[${CFLAGS_mingw32_special} ${CXXFLAGS_mingw32_special}])
310     VLC_ADD_OBJCFLAGS([pic plugin mozilla activex],[${CFLAGS_mingw32_special}])
311     ;;
312   mingwce)
313     ;;
314   *)
315     VLC_ADD_CFLAGS([pic plugin mozilla],[-fpic -fPIC])
316     VLC_ADD_CXXFLAGS([pic plugin mozilla],[-fpic -fPIC])
317     VLC_ADD_OBJCFLAGS([pic plugin mozilla],[-fpic -fPIC])
318     VLC_ADD_LDFLAGS([plugin mozilla],[-fpic -fPIC])
319     ;;
320 esac
321
322 dnl The -DSYS_FOO flag
323 CPPFLAGS_save="${CPPFLAGS_save} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcdefghijklmnopqrstuvwxyz.' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`"; CPPFLAGS="${CPPFLAGS_save}"
324
325 dnl Check for system libs needed
326 need_libc=false
327
328 AC_CHECK_FUNCS(gettimeofday select strerror strtod strtol strtof strtoll strtoull strsep isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf daemon scandir fork bsearch)
329
330 dnl Check for usual libc functions
331 AC_CHECK_FUNCS(strdup strndup atof)
332 AC_CHECK_FUNCS(strcasecmp,,[AC_CHECK_FUNCS(stricmp)])
333 AC_CHECK_FUNCS(strncasecmp,,[AC_CHECK_FUNCS(strnicmp)])
334 AC_CHECK_FUNCS(strcasestr,,[AC_CHECK_FUNCS(stristr)])
335
336 dnl Check for setlocal and langinfo
337 AC_CHECK_FUNCS(setlocale)
338 AC_CHECK_HEADERS(langinfo.h)
339 AC_CHECK_FUNCS(nl_langinfo)
340
341 AC_CACHE_CHECK([for nl_langinfo and CODESET], ac_cv_langinfo_codeset,
342   [AC_TRY_LINK([#include <langinfo.h>],
343     [char* cs = nl_langinfo(CODESET);],
344     ac_cv_langinfo_codeset=yes,
345     ac_cv_langinfo_codeset=no)
346   ])
347 if test ${ac_cv_langinfo_codeset} = yes; then
348   AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
349     [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
350 fi
351
352 AC_CHECK_FUNCS(connect,,[
353   AC_CHECK_LIB(socket,connect,[
354     VLC_ADD_LDFLAGS([vlc ipv4 cddax],-lsocket)
355   ])
356 ])
357
358 AC_CHECK_FUNCS(send,,[
359   AC_CHECK_LIB(socket,send,[
360     VLC_ADD_LDFLAGS([access_http access_mms access_udp access_tcp access_ftp sap access_output_udp stream_out_standard],[-lsocket])
361   ])
362 ])
363
364 AC_CHECK_FUNCS(gethostbyname,,[
365   AC_CHECK_LIB(nsl,gethostbyname,[
366     VLC_ADD_LDFLAGS([cddax ipv4 vlc],[-lnsl])
367   ],[
368     AC_CHECK_LIB(bind,gethostbyname,[
369       VLC_ADD_LDFLAGS([ipv4 access_mms],[-lbind])
370     ])
371   ])
372 ])
373
374 dnl Check for socklen_t
375 AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
376   [AC_TRY_COMPILE(
377      [#include <sys/types.h>
378       #include <sys/socket.h>],
379      [socklen_t len = 42; return len;],
380      ac_cv_type_socklen_t=yes,
381      ac_cv_type_socklen_t=no)])
382 if test "${ac_cv_type_socklen_t}" != "no"; then
383   AC_DEFINE(HAVE_SOCKLEN_T, 1, [Define if <sys/socket.h> defines socklen_t.])
384 fi
385
386 dnl Check for struct sockaddr_storage
387 AH_TEMPLATE(sockaddr_storage, [Define to `sockaddr' if <sys/socket.h> does not define.])
388 AH_TEMPLATE(ss_family, [Define to `sa_family' if <sys/socket.h> does not define.])
389 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_struct_sockaddr_storage,
390   [AC_TRY_COMPILE(
391     [#include <sys/types.h>
392      #if defined( UNDER_CE )
393      # include <winsock.h>
394      #elif defined( WIN32 )
395      # include <winsock2.h>
396      #else
397      # include <sys/socket.h>
398      #endif], [struct sockaddr_storage addr;],
399      ac_cv_struct_sockaddr_storage=yes,
400      ac_cv_struct_sockaddr_storage=no)])
401 if test $ac_cv_struct_sockaddr_storage = no; then
402   AC_DEFINE(sockaddr_storage, sockaddr)
403   AC_DEFINE(ss_family, sa_family)
404 fi
405
406 dnl getaddrinfo, getnameinfo and gai_strerror check
407 dnl  -lresolv is NOT needed on Solaris
408 dnl  we purposedly make the test fail on Windows
409 AC_CHECK_FUNCS([getaddrinfo getnameinfo gai_strerror])
410 AH_TEMPLATE(HAVE_ADDRINFO, [Define to `1' if <netdb.h> defines struct addrinfo.])
411 AC_CHECK_TYPES([struct addrinfo],[AC_DEFINE(HAVE_ADDRINFO)],,
412 [#include <sys/types.h>
413 #if defined( WIN32 ) || defined( UNDER_CE )
414 # if defined(UNDER_CE) && defined(sockaddr_storage)
415 #  undef sockaddr_storage
416 # endif
417 # include <winsock2.h>
418 # include <ws2tcpip.h>
419 #else
420 # include <netdb.h>
421 #endif])
422
423 dnl Check for va_copy
424 AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
425   AC_TRY_LINK(
426     [#include <stdarg.h>],
427     [va_list ap1, ap2; va_copy(ap1,ap2);],
428     [ac_cv_c_va_copy="yes"],
429     [ac_cv_c_va_copy="no"]))
430 if test "${ac_cv_c_va_copy}" = "yes"; then
431   AC_DEFINE(HAVE_VA_COPY, 1, [Define if <stdarg.h> defines va_copy.])
432 fi
433 AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy,
434   AC_TRY_LINK(
435     [#include <stdarg.h>],
436     [va_list ap1, ap2; __va_copy(ap1,ap2);],
437     [ac_cv_c___va_copy="yes"],
438     [ac_cv_c___va_copy="no"]))
439 if test "${ac_cv_c___va_copy}" = "yes"; then
440   AC_DEFINE(HAVE___VA_COPY, 1, [Define if <stdarg.h> defines __va_copy.])
441 fi
442
443 AC_CHECK_FUNCS(inet_aton,,[
444   AC_CHECK_LIB(resolv,inet_aton,[
445     VLC_ADD_LDFLAGS([ipv4 vlc],[-lresolv])
446   ])
447 ])
448
449 dnl Check for getopt (always use builtin one on win32)
450 if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"; then
451 need_getopt=:
452 else
453 need_getopt=false
454 AC_CHECK_FUNCS(getopt_long,[AC_DEFINE(HAVE_GETOPT_LONG,1,long getopt support)],
455 [ # FreeBSD has a gnugetopt library for this:
456   AC_CHECK_LIB([gnugetopt],[getopt_long],
457     [AC_DEFINE(HAVE_GETOPT_LONG,1,getopt support)
458      VLC_ADD_LDFLAGS([vlc],[-lgnugetopt])],
459     [need_getopt=:])])
460 fi
461 AM_CONDITIONAL(BUILD_GETOPT, ${need_getopt})
462
463 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
464 AC_TYPE_SIGNAL
465 AC_CHECK_LIB(m,cos,[
466   VLC_ADD_LDFLAGS([adjust distort a52tofloat32 dtstofloat32 x264 goom],[-lm])
467 ])
468 AC_CHECK_LIB(m,pow,[
469   VLC_ADD_LDFLAGS([ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad twolame equalizer vlc freetype],[-lm])
470 ])
471 AC_CHECK_LIB(m,sqrt,[
472   VLC_ADD_LDFLAGS([headphone_channel_mixer normvol speex],[-lm])
473 ])
474 AC_CHECK_LIB(mx,sqrtf,[
475   VLC_ADD_LDFLAGS([x264],[-lmx])
476 ])
477 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
478
479 dnl Check for dynamic plugins
480 ac_cv_have_plugins=no
481
482 # OS X style
483 AC_CHECK_HEADERS(mach-o/dyld.h,
484   [AC_CHECK_FUNCS(NSLinkModule,
485     [AC_DEFINE(HAVE_DL_DYLD, 1, [Define if you have the Darwin dyld API])
486      ac_cv_have_plugins=yes])])
487
488 # HP-UX style
489 if test "${ac_cv_have_plugins}" = "no"; then
490   AC_CHECK_HEADERS(dl.h)
491   ac_cv_my_have_shl_load=no
492   AC_CHECK_FUNC(shl_load,
493    [ac_cv_my_have_shl_load=yes,
494     AC_CHECK_LIB(dld, shl_load,
495      [ac_cv_my_have_shl_load=yes
496       VLC_ADD_LDFLAGS([vlc],[-ldld])])])
497   if test "${ac_cv_my_have_shl_load}" = "yes"; then
498     AC_DEFINE(HAVE_DL_SHL_LOAD, 1, [Define if you have the shl_load API])
499     ac_cv_have_plugins=yes
500   fi
501 fi
502
503 # Whatever style
504 if test "${ac_cv_have_plugins}" = "no"; then
505   AC_CHECK_LIB(dld, dld_link,
506    [VLC_ADD_LDFLAGS([vlc],[-ldld])
507     AC_DEFINE(HAVE_DL_DLD_LINK, 1, [Define if you have the GNU dld library])
508     ac_cv_have_plugins=yes])
509 fi
510
511 # Win32 style
512 if test "${ac_cv_have_plugins}" = "no"; then
513   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
514     AC_CHECK_LIB(kernel32, main,
515      [VLC_ADD_LDFLAGS([vlc],[-lkernel32])
516       AC_DEFINE(HAVE_DL_WINDOWS, 1, [Define if you have Windows' LoadLibrary])
517       ac_cv_have_plugins=yes])
518   fi
519 fi
520
521 # WinCE style
522 if test "${ac_cv_have_plugins}" = "no"; then
523   if test "${SYS}" = "mingwce"; then
524     AC_DEFINE(HAVE_DL_WINDOWS, 1, [Define if you have Windows' LoadLibrary])
525     ac_cv_have_plugins=yes
526   fi
527 fi
528
529 # BeOS style
530 if test "${ac_cv_have_plugins}" = "no"; then
531   AC_CHECK_HEADERS(image.h)
532   AC_CHECK_FUNCS(load_add_on,
533    [AC_DEFINE(HAVE_DL_BEOS, 1, [Define if you have the BeOS dl])
534     ac_cv_have_plugins=yes])
535 fi
536
537 # Only test for dlopen() if the others didn't work
538 if test "${ac_cv_have_plugins}" = "no"; then
539   AC_CHECK_HEADERS(dlfcn.h sys/dl.h)
540   ac_cv_my_have_dlopen=no
541   AC_CHECK_FUNC(dlopen,
542     ac_cv_my_have_dlopen=yes,
543     AC_CHECK_LIB(dl, dlopen,
544       ac_cv_my_have_dlopen=yes
545       VLC_ADD_LDFLAGS([vlc],[-ldl]),
546       AC_CHECK_LIB(svld, dlopen,
547         ac_cv_my_have_dlopen=yes
548         VLC_ADD_LDFLAGS([vlc],[-lsvld]))))
549   if test "${ac_cv_my_have_dlopen}" = "yes"; then
550     AC_DEFINE(HAVE_DL_DLOPEN, 1, [Define if you have the dlopen API])
551     ac_cv_have_plugins=yes
552   fi
553 fi
554
555 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
556 dnl Check for pthreads - borrowed from XMMS
557 THREAD_LIB=error
558 if test "${THREAD_LIB}" = "error"; then
559   AC_CHECK_LIB(pthread,main,THREAD_LIB="-lpthread")
560 fi
561 if test "${THREAD_LIB}" = "error"; then
562   AC_CHECK_LIB(pthreads,main,THREAD_LIB="-lpthreads")
563 fi
564 if test "${THREAD_LIB}" = "error"; then
565   AC_CHECK_LIB(c_r,main,THREAD_LIB="-lc_r")
566 fi
567 if test "${THREAD_LIB}" = "error"; then
568   AC_CHECK_FUNCS(pthread_mutex_lock)
569   THREAD_LIB=""
570 fi
571
572 dnl Check for cthreads under GNU/Hurd for instance
573 AC_CHECK_LIB(threads,cthread_fork,THREAD_LIB="-lthreads")
574
575 dnl
576 dnl  GNU portable threads
577 dnl
578 AC_ARG_ENABLE(pth,
579   [  --enable-pth            GNU Pth support (default disabled)],
580   [ if test "${enable_pth}" = "yes"; then
581     AC_CHECK_LIB(pth,pth_init)
582     AC_MSG_CHECKING(for pth_init in pth.h)
583     AC_EGREP_HEADER(pth_init,pth.h,[
584       AC_MSG_RESULT(yes)
585       AC_DEFINE(PTH_INIT_IN_PTH_H, 1,
586                 Define if <pth.h> defines pth_init)
587       THREAD_LIB="-lpth"
588     ],[
589       AC_MSG_RESULT(no)
590     ])
591     fi
592 ])
593
594 dnl
595 dnl  State Threads
596 dnl
597 AC_ARG_ENABLE(st,
598   [  --enable-st             State Threads (default disabled)],
599   [ if test "${enable_st}" = "yes"; then
600     AC_CHECK_LIB(st,st_init)
601     AC_MSG_CHECKING(for st_init in st.h)
602     AC_EGREP_HEADER(st_init,st.h,[
603       AC_MSG_RESULT(yes)
604       AC_DEFINE(ST_INIT_IN_ST_H, 1,
605                 Define if <st.h> defines st_init)
606       THREAD_LIB="-lst"
607     ],[
608       AC_MSG_RESULT(yes)
609     ])
610     fi
611 ])
612
613 VLC_ADD_LDFLAGS([vlc plugin],[${THREAD_LIB}])
614
615 dnl Don't link with rt when using GNU-pth
616 if test "${THREAD_LIB}" != "-lpth" && test "${THREAD_LIB}" != "-lst"; then
617   dnl HP/UX port
618   AC_CHECK_LIB(rt,sem_init, [VLC_ADD_LDFLAGS([vlc],[-lrt])])
619
620   have_nanosleep=false
621   AC_CHECK_FUNCS(nanosleep,have_nanosleep=:,[
622     AC_CHECK_LIB(rt,nanosleep,
623       [VLC_ADD_LDFLAGS([vlc],[-lrt]) have_nanosleep=:],
624       [AC_CHECK_LIB(posix4,nanosleep,
625           [VLC_ADD_LDFLAGS([vlc],[-lposix4]) have_nanosleep=:])]
626     )
627   ])
628   if ${have_nanosleep}; then
629     AC_DEFINE(HAVE_NANOSLEEP, 1,
630               Define if nanosleep is available.)
631   fi
632 fi
633
634 dnl Check for misc headers
635 AC_MSG_CHECKING(for pthread_cond_t in pthread.h)
636 AC_EGREP_HEADER(pthread_cond_t,pthread.h,[
637   AC_MSG_RESULT(yes)
638   AC_DEFINE(PTHREAD_COND_T_IN_PTHREAD_H, 1,
639             Define if <pthread.h> defines pthread_cond_t.)],[
640   AC_MSG_RESULT(no)])
641
642 AC_MSG_CHECKING(for pthread_once in pthread.h)
643 AC_EGREP_HEADER(pthread_once,pthread.h,[
644   AC_MSG_RESULT(yes)
645   AC_DEFINE(PTHREAD_ONCE_IN_PTHREAD_H, 1,
646             Define if <pthread.h> defines pthread_once.)],[
647   AC_MSG_RESULT(no)])
648 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
649
650 AC_MSG_CHECKING(for strncasecmp in strings.h)
651 AC_EGREP_HEADER(strncasecmp,strings.h,[
652   AC_MSG_RESULT(yes)
653   AC_DEFINE(STRNCASECMP_IN_STRINGS_H, 1,
654             Define if <strings.h> defines strncasecmp.)],[
655   AC_MSG_RESULT(no)])
656
657 dnl Check for headers
658 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)
659 AC_CHECK_HEADERS(sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h)
660 AC_CHECK_HEADERS(arpa/inet.h net/if.h netinet/in.h sys/socket.h)
661 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
662 AC_CHECK_HEADERS(machine/param.h sys/shm.h)
663 AC_CHECK_HEADERS(linux/version.h)
664 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
665
666 AC_HEADER_TIME
667
668 dnl Check for dirent
669 need_dirent=false
670 AC_CHECK_HEADERS(dirent.h,,[need_dirent=:])
671 AM_CONDITIONAL(BUILD_DIRENT, ${need_dirent})
672
673 dnl Mac OS X and other OSes don't have declaration for nanosleep
674 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
675 AC_MSG_CHECKING(for nanosleep in time.h)
676 AC_EGREP_HEADER(nanosleep,time.h,[
677   AC_MSG_RESULT(yes)
678   AC_DEFINE(HAVE_DECL_NANOSLEEP, 1,
679             Define if <time.h> defines nanosleep.)
680 ],[
681   AC_MSG_RESULT(no)
682 ])
683 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
684
685 dnl Make sure we have timespecs
686 AC_MSG_CHECKING(for timespec in sys/time.h)
687 AC_EGREP_HEADER(timespec,sys/time.h,[
688   AC_MSG_RESULT(yes)
689   AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1,
690             Define if <sys/time.h> defines struct timespec.)
691 ],[
692   AC_MSG_RESULT(no)
693 ])
694
695 dnl Check for threads library
696 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
697 AC_CHECK_HEADERS(cthreads.h pthread.h kernel/scheduler.h kernel/OS.h)
698 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
699
700 dnl Default X headers and libraries
701 if test "${x_includes}" = "NONE"; then
702   x_includes="/usr/X11R6/include"
703 fi
704 if test "${x_libraries}" = "NONE"; then
705   x_libraries="/usr/X11R6/lib"
706 fi
707
708 dnl Check for hal
709 AC_ARG_ENABLE(hal,
710   [  --enable-hal            Linux HAL services discovery (default enabled)])
711  
712 if test "${enable_hal}" != "no"
713 then
714   PKG_CHECK_MODULES(HAL, hal >= 0.2.97,
715     [AC_DEFINE(HAVE_HAL, [], [Define if you have the HAL library])
716      VLC_ADD_PLUGINS([hal])
717      VLC_ADD_LDFLAGS([vlc hal],[$HAL_LIBS])
718      VLC_ADD_CFLAGS([vlc hal],[$HAL_CFLAGS])],
719     [AC_MSG_WARN(HAL library not found)])
720 fi
721
722 dnl Build the gtk_main plugins?
723 NEED_GTK_MAIN=no
724 NEED_GNOME_MAIN=no
725 NEED_GTK2_MAIN=no
726 NEED_GNOME2_MAIN=no
727
728 dnl build the qte plugin ?
729 NEED_QTE_MAIN=no
730
731 dnl Check for ntohl, etc.
732 AC_CACHE_CHECK([for ntohl in sys/param.h],
733     [ac_cv_c_ntohl_sys_param_h],
734     [CFLAGS="${CFLAGS_save} -Wall -Werror"
735      AC_TRY_COMPILE([#include <sys/param.h>],
736         [void foo() { int meuh; ntohl(meuh); }],
737         ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
738 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
739     AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
740 fi
741
742 # XXX: do this with an M4 macro?
743 #dnl Check for various -W flags
744 #for flag in "" all unreachable-code conversion sign-compare disabled-optimization
745 #do
746 #    AC_CACHE_CHECK([if \$CC accepts -W${flag}],
747 #        [ac_cv_c_W${flag}],
748 #        [CFLAGS="-W${flag} ${CFLAGS_save}"
749 #         AC_TRY_COMPILE([],,ac_cv_c_W${flag}=yes, ac_cv_c_W${flag}=no)])
750 #    if test "${ac_cv_c_W${flag}}" != "no"; then
751 #        CFLAGS_save="-W${flag} ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
752 #        CXXFLAGS_save="-W${flag} ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
753 #        OBJCFLAGS_save="-W${flag} ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
754 #    fi
755 #done
756
757 AC_CACHE_CHECK([if \$CC accepts -Wall],
758     [ac_cv_c_Wall],
759     [CFLAGS="-Wall ${CFLAGS_save}"
760      AC_TRY_COMPILE([],,ac_cv_c_Wall=yes, ac_cv_c_Wall=no)])
761
762 AC_CACHE_CHECK([if \$CC accepts -Wconversion],
763     [ac_cv_c_Wconversion],
764     [CFLAGS="-Wconversion ${CFLAGS_save}"
765      AC_TRY_COMPILE([],,ac_cv_c_Wconversion=yes, ac_cv_c_Wconversion=no)])
766
767 AC_CACHE_CHECK([if \$CC accepts -Wunreachable-code],
768     [ac_cv_c_Wunreachable_code],
769     [CFLAGS="-Wunreachable-code ${CFLAGS_save}"
770      AC_TRY_COMPILE([],,ac_cv_c_Wunreachable_code=yes, ac_cv_c_Wunreachable_code=no)])
771
772 AC_CACHE_CHECK([if \$CC accepts -Wsign-compare],
773     [ac_cv_c_Wsign_compare],
774     [CFLAGS="-Wsign-compare ${CFLAGS_save}"
775      AC_TRY_COMPILE([],,ac_cv_c_Wsign_compare=yes, ac_cv_c_Wsign_compare=no)])
776
777 if test "${ac_cv_c_Wall}" != "no"; then
778     CFLAGS_save="-Wall ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
779     CXXFLAGS_save="-Wall ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
780     OBJCFLAGS_save="-Wall ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
781 fi
782
783 if test "${ac_cv_c_Wsign_compare}" != "no"; then
784     CFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
785     CXXFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
786     OBJCFLAGS_save="-Wsign-compare ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
787 fi
788
789 dnl Check for -pipe
790 AC_CACHE_CHECK([if \$CC accepts -pipe],
791     [ac_cv_c_pipe],
792     [CFLAGS="${CFLAGS_save} -pipe"
793      AC_TRY_COMPILE([],,ac_cv_c_pipe=yes, ac_cv_c_pipe=no)])
794 if test "${ac_cv_c_pipe}" != "no"; then
795     CFLAGS_save="${CFLAGS_save} -pipe"; CFLAGS="${CFLAGS_save}"
796     CXXFLAGS_save="${CXXFLAGS_save} -pipe"; CXXFLAGS="${CXXFLAGS_save}"
797     OBJCFLAGS_save="${OBJCFLAGS_save} -pipe"; OBJCFLAGS="${OBJCFLAGS_save}"
798 fi
799
800 dnl Check for various optimization flags
801 AC_CACHE_CHECK([if \$CC accepts -Os],
802     [ac_cv_c_os],
803     [CFLAGS="${CFLAGS_save} -Os"
804      AC_TRY_COMPILE([],,ac_cv_c_os=yes, ac_cv_c_os=no)])
805 if test "${ac_cv_c_os}" != "no" -a "${target_cpu}" = "mipsel"; then
806     CFLAGS_OPTIM="${CFLAGS_OPTIM} -Os"
807 fi
808
809 AC_CACHE_CHECK([if \$CC accepts -O3],
810     [ac_cv_c_o3],
811     [CFLAGS="${CFLAGS_save} -O3"
812      AC_TRY_COMPILE([],,ac_cv_c_o3=yes, ac_cv_c_o3=no)])
813 if test "${ac_cv_c_o3}" != "no" -a "${target_cpu}" != "mipsel"; then
814     CFLAGS_OPTIM="${CFLAGS_OPTIM} -O3"
815 fi
816
817 AC_CACHE_CHECK([if \$CC accepts -O2],
818     [ac_cv_c_o2],
819     [CFLAGS="${CFLAGS_save} -O2"
820      AC_TRY_COMPILE([],,ac_cv_c_o2=yes, ac_cv_c_o2=no)])
821 if test "${ac_cv_c_o2}" != "no" -a "${target_cpu}" != "mipsel"; then
822     if test "${ac_cv_c_o3}" = "no"; then
823         CFLAGS_OPTIM="${CFLAGS_OPTIM} -O2"
824     fi
825     CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O2"
826 else 
827     AC_CACHE_CHECK([if \$CC accepts -O],
828         [ac_cv_c_o],
829         [CFLAGS="${CFLAGS_save} -O"
830          AC_TRY_COMPILE([],,ac_cv_c_o=yes, ac_cv_c_o=no)])
831     if test "${ac_cv_c_o}" != "no" -a "${target_cpu}" != "mipsel"; then
832         if test "${ac_cv_c_o3}" = "no"; then
833             CFLAGS_OPTIM="${CFLAGS_OPTIM} -O"
834         fi
835         CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O"
836     fi
837 fi
838
839 dnl Check for -ffast-math
840 AC_CACHE_CHECK([if \$CC accepts -ffast-math],
841     [ac_cv_c_fast_math],
842     [CFLAGS="${CFLAGS_save} -ffast-math"
843      AC_TRY_COMPILE([],,ac_cv_c_fast_math=yes, ac_cv_c_fast_math=no)])
844 if test "${ac_cv_c_fast_math}" != "no"; then
845     CFLAGS_OPTIM="${CFLAGS_OPTIM} -ffast-math"
846 fi
847
848 dnl Check for -funroll-loops
849 dnl Disabled on BeOS because BeOS' gcc is buggy and may crash with it
850 if test "${SYS}" != "beos"
851 then
852   AC_CACHE_CHECK([if \$CC accepts -funroll-loops],
853       [ac_cv_c_unroll_loops],
854       [CFLAGS="${CFLAGS_save} -funroll-loops"
855        AC_TRY_COMPILE([],,ac_cv_c_unroll_loops=yes, ac_cv_c_unroll_loops=no)])
856   if test "${ac_cv_c_unroll_loops}" != "no"; then
857       CFLAGS_OPTIM="${CFLAGS_OPTIM} -funroll-loops"
858   fi
859 fi
860
861 dnl Check for -fomit-frame-pointer
862 AC_CACHE_CHECK([if \$CC accepts -fomit-frame-pointer],
863     [ac_cv_c_omit_frame_pointer],
864     [CFLAGS="${CFLAGS_save} -fomit-frame-pointer"
865      AC_TRY_COMPILE([],,ac_cv_c_omit_frame_pointer=yes, ac_cv_c_omit_frame_pointer=no)])
866 if test "${ac_cv_c_omit_frame_pointer}" != "no"; then
867     CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fomit-frame-pointer"
868     # this plugin does not compile without -fomit-frame-pointer, damn gcc!
869     VLC_ADD_CFLAGS([i420_yuy2_mmx],[-fomit-frame-pointer])
870 fi
871
872 dnl Check for -mdynamic-no-pic
873 AC_CACHE_CHECK([if \$CC accepts -mdynamic-no-pic],
874     [ac_cv_c_dynamic_no_pic],
875     [CFLAGS="${CFLAGS_save} -mdynamic-no-pic"
876      AC_TRY_COMPILE([],,ac_cv_c_dynamic_no_pic=yes, ac_cv_c_dynamic_no_pic=no)])
877 if test "${ac_cv_c_dynamic_no_pic}" != "no"; then
878     VLC_ADD_CFLAGS([builtin],[-mdynamic-no-pic])
879     VLC_ADD_CFLAGS([libvlc],[-mdynamic-no-pic])
880 fi
881
882 dnl Check for Darwin plugin linking flags
883 AC_CACHE_CHECK([if \$CC accepts -bundle -undefined error -lcc_dynamic],
884     [ac_cv_ld_darwin],
885     [CFLAGS="${CFLAGS_save} -bundle -undefined error -lcc_dynamic"
886      AC_TRY_COMPILE([],,ac_cv_ld_darwin=yes, ac_cv_ld_darwin=no)])
887 if test "${ac_cv_ld_darwin}" != "no"; then
888     VLC_ADD_LDFLAGS([plugin],[-bundle -undefined error])
889     AC_CHECK_LIB(cc_dynamic, main,[
890       VLC_ADD_LDFLAGS([plugin],[-lcc_dynamic])
891     ])
892 fi
893
894 dnl Check for standard plugin linking flags
895 dnl BeOS' gcc needs -nostart instead of -shared, even if -shared isn't harmful (just a warning)
896 if test "${SYS}" = "beos"; then
897   VLC_ADD_LDFLAGS([plugin mozilla],[-nostart])
898 else
899   AC_CACHE_CHECK([if \$CC accepts -shared],
900       [ac_cv_ld_plugins],
901       [CFLAGS="${CFLAGS_save} -shared"
902        AC_TRY_COMPILE([],, ac_cv_ld_plugins=yes, ac_cv_ld_plugins=no)])
903   if test "${ac_cv_ld_plugins}" != "no"; then
904     VLC_ADD_LDFLAGS([plugin mozilla],[-shared])
905   fi
906 fi
907
908 dnl Check for variadic macros
909 AC_CACHE_CHECK([for variadic cpp macros],
910     [ac_cv_cpp_variadic_macros],
911     [CFLAGS="${CFLAGS_save}"
912      AC_TRY_COMPILE(
913          [#include <stdio.h>
914           #define a(b,c...) printf(b,##c)],
915          [a("foo");a("%s","bar");a("%s%s","baz","quux");],
916          ac_cv_cpp_variadic_macros=yes,
917          ac_cv_cpp_variadic_macros=no)])
918 if test "${ac_cv_cpp_variadic_macros}" != "no"; then
919     AC_DEFINE(HAVE_VARIADIC_MACROS, 1, Support for variadic macros)
920 fi
921
922 dnl Checks for __attribute__(aligned()) directive
923 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
924     [ac_cv_c_attribute_aligned],
925     [ac_cv_c_attribute_aligned=0
926         CFLAGS="${CFLAGS_save} -Werror"
927     for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
928         AC_TRY_COMPILE([],
929         [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
930         [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
931     done
932         CFLAGS="${CFLAGS_save}"])
933 if test "${ac_cv_c_attribute_aligned}" != "0"; then
934     AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
935         [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
936 fi
937
938 dnl Checks for __attribute__(format()) directive
939 AC_CACHE_CHECK([__attribute__ ((format ())) support with function pointers],
940     [ac_cv_c_attribute_format],
941     [ac_cv_c_attribute_format=no
942         CFLAGS="${CFLAGS_save} -Werror"
943         AC_TRY_COMPILE([],
944         [static void (*pf_printf)(const char *, ...) __attribute__ ((format(printf,1,2)));(void)pf_printf;],
945         [ac_cv_c_attribute_format=yes])
946         CFLAGS="${CFLAGS_save}"])
947 if test "${ac_cv_c_attribute_format}" != "no"; then
948     AC_DEFINE(HAVE_ATTRIBUTE_FORMAT, 1, Support for __attribute__((format())) with function pointers)
949 fi
950
951 dnl Check for __attribute__(())
952 AC_CACHE_CHECK([for __attribute__((packed))],
953   [ac_cv_c_attribute_packed],
954   [ac_cv_c_attribute_packed=no
955    AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b;],
956                     [ac_cv_c_attribute_packed=yes])])
957 if test "${ac_cv_c_attribute_packed}" != "no"; then
958   AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
959 fi
960
961 dnl
962 dnl  Check the CPU
963 dnl
964 case "${target_cpu}" in
965   "")
966     ARCH=unknown
967     ;;
968   *)
969     ARCH="${target_cpu}"
970     ;;
971 esac
972
973 dnl
974 dnl  Enable profiling
975 dnl
976 AC_ARG_ENABLE(gprof,
977 [  --enable-gprof          gprof profiling (default disabled)])
978 AC_ARG_ENABLE(cprof,
979 [  --enable-cprof          cprof profiling (default disabled)])
980 test "${enable_gprof}" != "yes" && enable_gprof="no"
981 test "${enable_cprof}" != "yes" && enable_cprof="no"
982
983 dnl
984 dnl  default modules
985 dnl
986 VLC_ADD_PLUGINS([dummy logger memcpy])
987 VLC_ADD_PLUGINS([mpgv mpga m4v m4a h264 ps pva avi asf mp4 rawdv nsv real aiff mjpeg demuxdump flac])
988 VLC_ADD_PLUGINS([cvdsub svcdsub spudec subsdec dvbsub mpeg_audio lpcm a52 dts cinepak flacdec])
989 VLC_ADD_PLUGINS([deinterlace invert adjust transform distort motionblur rv32])
990 VLC_ADD_PLUGINS([fixed32tos16 s16tofixed32 u8tofixed32])
991 VLC_ADD_PLUGINS([trivial_resampler ugly_resampler])
992 VLC_ADD_PLUGINS([trivial_channel_mixer trivial_mixer])
993 VLC_ADD_PLUGINS([playlist export sgimb m3u nsc xtag])
994 VLC_ADD_PLUGINS([i420_rgb rawvideo blend scale image logo])
995 VLC_ADD_PLUGINS([wav araw subtitle vobsub adpcm a52sys dtssys au ty voc xa nuv])
996 VLC_ADD_PLUGINS([access_directory access_file access_udp access_tcp])
997 VLC_ADD_PLUGINS([access_http access_mms access_ftp ipv4])
998 VLC_ADD_PLUGINS([packetizer_mpegvideo packetizer_h264])
999 VLC_ADD_PLUGINS([packetizer_mpeg4video packetizer_mpeg4audio])
1000
1001 if test "${SYS}" != "mingwce"; then
1002 dnl  VLC_ADD_PLUGINS([externrun])
1003   VLC_ADD_PLUGINS([access_fake access_filter_timeshift access_filter_record])
1004   VLC_ADD_PLUGINS([gestures rc telnet hotkeys netsync showintf time marq shout sap fake])
1005   VLC_ADD_PLUGINS([rss mosaic wall motiondetect clone crop])
1006   VLC_ADD_PLUGINS([i420_yuy2 i422_yuy2 i420_ymga])
1007   VLC_ADD_PLUGINS([aout_file linear_resampler bandlimited_resampler])
1008   VLC_ADD_PLUGINS([float32_mixer spdif_mixer simple_channel_mixer])
1009   VLC_ADD_PLUGINS([headphone_channel_mixer normvol equalizer])
1010   VLC_ADD_PLUGINS([fixed32tofloat32 float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif s16tofloat32 s16tofloat32swab s8tofloat32 u8tofloat32 audio_format])
1011 fi
1012
1013 dnl
1014 dnl  Switch to enable a version of VLC where most modules will be builtin
1015 dnl
1016 AC_ARG_ENABLE(mostly-builtin,
1017 [  --enable-mostly-builtin most modules will be built-in (default disabled)])
1018 if test "${enable_mostly_builtin}" = "yes"; then
1019   VLC_ADD_BUILTINS([${PLUGINS}])
1020   PLUGINS=""
1021 fi
1022
1023 dnl
1024 dnl Some plugins aren't useful on some platforms
1025 dnl
1026 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
1027     VLC_ADD_PLUGINS([screensaver])
1028 elif test "${SYS}" != "mingwce"; then
1029     VLC_ADD_PLUGINS([ntservice access_smb dmo])
1030     VLC_ADD_LDFLAGS([dmo],[-lole32])
1031 else
1032     VLC_ADD_PLUGINS([win32text])
1033 fi
1034
1035 dnl
1036 dnl  Accelerated modules
1037 dnl
1038 MMX_MODULES="memcpymmx i420_rgb_mmx i422_yuy2_mmx i420_ymga_mmx"
1039 #MMX_MODULES="${MMX_MODULES} idctmmx motionmmx"
1040 MMXEXT_MODULES="memcpymmxext"
1041 #MMXEXT_MODULES="${MMXEXT_MODULES} idctmmxext motionmmxext"
1042 THREEDNOW_MODULES="memcpy3dn"
1043 SSE_MODULES=""
1044 ALTIVEC_MODULES="memcpyaltivec i420_yuy2_altivec"
1045 #ALTIVEC_MODULES="${ALTIVEC_MODULES} idctaltivec motionaltivec"
1046
1047 if test "${enable_gprof}" != "yes"
1048 then
1049   MMX_MODULES="${MMX_MODULES} i420_yuy2_mmx"
1050 fi
1051
1052 AC_CACHE_CHECK([if \$CC groks MMX inline assembly],
1053     [ac_cv_mmx_inline],
1054     [CFLAGS="${CFLAGS_save}"
1055      AC_TRY_COMPILE(,[void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p));],
1056                     ac_cv_mmx_inline=yes, ac_cv_mmx_inline=no)])
1057 if test "${ac_cv_mmx_inline}" != "no"; then
1058   AC_DEFINE(CAN_COMPILE_MMX, 1, Define if \$CC groks MMX inline assembly.)
1059   ACCEL_MODULES="${ACCEL_MODULES} ${MMX_MODULES}"
1060 fi
1061
1062 AC_CACHE_CHECK([if \$CC groks MMX EXT inline assembly],
1063     [ac_cv_mmxext_inline],
1064     [CFLAGS="${CFLAGS_save}"
1065      AC_TRY_COMPILE(,[void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p));],
1066                     ac_cv_mmxext_inline=yes, ac_cv_mmxext_inline=no)])
1067 if test "${ac_cv_mmxext_inline}" != "no"; then
1068   AC_DEFINE(CAN_COMPILE_MMXEXT, 1, Define if \$CC groks MMX EXT inline assembly.)
1069   ACCEL_MODULES="${ACCEL_MODULES} ${MMXEXT_MODULES}"
1070 fi
1071
1072 AC_CACHE_CHECK([if \$CC groks 3D Now! inline assembly],
1073     [ac_cv_3dnow_inline],
1074     [CFLAGS="${CFLAGS_save}"
1075      AC_TRY_COMPILE(,[void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p));],
1076                     ac_cv_3dnow_inline=yes, ac_cv_3dnow_inline=no)])
1077 if test "${ac_cv_3dnow_inline}" != "no"; then
1078   AC_DEFINE(CAN_COMPILE_3DNOW, 1, Define if \$CC groks 3D Now! inline assembly.)
1079   ACCEL_MODULES="${ACCEL_MODULES} ${THREEDNOW_MODULES}"
1080 fi
1081
1082 AC_CACHE_CHECK([if \$CC groks SSE inline assembly],
1083     [ac_cv_sse_inline],
1084     [CFLAGS="${CFLAGS_save}"
1085      AC_TRY_COMPILE(,[void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p));],
1086                     ac_cv_sse_inline=yes, ac_cv_sse_inline=no)])
1087 if test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "solaris"; then
1088   AC_DEFINE(CAN_COMPILE_SSE, 1, Define if \$CC groks SSE inline assembly.)
1089   ACCEL_MODULES="${ACCEL_MODULES} ${SSE_MODULES}"
1090 fi
1091
1092 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
1093 AC_CACHE_CHECK([if \$CC groks AltiVec inline assembly],
1094     [ac_cv_altivec_inline],
1095     [CFLAGS="${CFLAGS_save}"
1096      AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1097          ac_cv_altivec_inline=yes,
1098          [CFLAGS="${CFLAGS_save} -Wa,-m7400"
1099           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1100             [ac_cv_altivec_inline="-Wa,-m7400"],
1101             ac_cv_altivec_inline=no)
1102          ])])
1103 if test "${ac_cv_altivec_inline}" != "no"; then
1104   AC_DEFINE(CAN_COMPILE_ALTIVEC, 1, Define if \$CC groks AltiVec inline assembly.)
1105   if test "${ac_cv_altivec_inline}" != "yes"; then
1106     VLC_ADD_CFLAGS([idctaltivec],[${ac_cv_altivec_inline}])
1107     VLC_ADD_CFLAGS([motionaltivec],[${ac_cv_altivec_inline}])
1108     VLC_ADD_CFLAGS([memcpyaltivec],[${ac_cv_altivec_inline}])
1109     VLC_ADD_CFLAGS([i420_yuy2_altivec],[${ac_cv_altivec_inline}])
1110     VLC_ADD_CFLAGS([vlc],[${ac_cv_altivec_inline}])
1111   fi
1112   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
1113 fi
1114
1115 dnl The AltiVec C extensions
1116 dnl
1117 dnl There are several possible cases:
1118 dnl - OS X PPC, gcc 4.x: use -mpim-altivec, don't need <altivec.h>
1119 dnl - OS X PPC, gcc 3.x: need -faltivec, don't need <altivec.h>
1120 dnl - Linux PPC, gcc 4.x: need <altivec.h> which itself requires -maltivec
1121 dnl - Linux PPC, gcc 3.3: need <altivec.h> and -maltivec -mabi=altivec
1122 dnl - Linux PPC, gcc 3.x: need <altivec.h> and -fvec
1123 dnl - Others: test should fail
1124 AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1125   [ac_cv_c_altivec],
1126   [# OS X/PPC test (gcc 4.x)
1127    CFLAGS="${CFLAGS_save} -mpim-altivec"
1128    AC_TRY_COMPILE([],
1129      [vec_ld(0, (unsigned char *)0);],
1130      [ac_cv_c_altivec="-mpim-altivec"],
1131      [# OS X/PPC test (gcc 3.x)
1132       CFLAGS="${CFLAGS_save} -faltivec"
1133       AC_TRY_COMPILE([],
1134         [vec_ld(0, (unsigned char *)0);],
1135         [ac_cv_c_altivec="-faltivec"],
1136         dnl Below this are the Linux tests
1137         [# Linux/PPC test (gcc 4.x)
1138          CFLAGS="${CFLAGS_save} -maltivec"
1139          AC_TRY_COMPILE([#include <altivec.h>],
1140            [vec_ld(0, (unsigned char *)0);],
1141            [ac_cv_c_altivec="-maltivec"],
1142            [# Linux/PPC test (gcc 3.3)
1143             CFLAGS="${CFLAGS_save} -maltivec -mabi=altivec"
1144             AC_TRY_COMPILE([#include <altivec.h>],
1145               [vec_ld(0, (unsigned char *)0);],
1146               [ac_cv_c_altivec=""
1147                ac_cv_c_altivec_abi="-maltivec -mabi=altivec"],
1148               [# Linux/PPC test (gcc 3.3)
1149                CFLAGS="${CFLAGS_save} -fvec"
1150                AC_TRY_COMPILE([#include <altivec.h>],
1151                  [vec_ld(0, (unsigned char *)0);],
1152                  [ac_cv_c_altivec="-fvec"],
1153                  [ac_cv_c_altivec=no])
1154               ])
1155            ])
1156         ])
1157      ])
1158    CFLAGS="${CFLAGS_save}"
1159   ])
1160
1161 if test "${ac_cv_c_maltivec}" != "no"; then
1162   CPPFLAGS="${CPPFLAGS_save} ${ac_cv_c_maltivec}"
1163 fi
1164 AC_CHECK_HEADERS(altivec.h)
1165 CPPFLAGS="${CPPFLAGS_save}"
1166
1167 if test "${ac_cv_c_altivec}" != "no"; then
1168   AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, Define if your compiler groks C AltiVec extensions.)
1169   VLC_ADD_CFLAGS([vlc],[${ac_cv_c_altivec}])
1170   VLC_ADD_CFLAGS([idctaltivec motionaltivec],[${ac_cv_c_altivec}])
1171   VLC_ADD_CFLAGS([i420_yuy2_altivec memcpyaltivec deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1172   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
1173 fi
1174
1175 AC_CACHE_CHECK([if linker needs -framework vecLib],
1176     [ac_cv_ld_altivec],
1177     [LDFLAGS="${LDFLAGS_vlc} -framework vecLib"
1178      AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)
1179      LDFLAGS="${LDFLAGS_save}"
1180     ])
1181 if test "${ac_cv_ld_altivec}" != "no"; then
1182   VLC_ADD_LDFLAGS([vlc idctaltivec motionaltivec memcpyaltivec],[-framework vecLib])
1183 fi
1184 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
1185
1186 AC_ARG_WITH(,[])
1187 AC_ARG_WITH(,[Optimization options:])
1188
1189 dnl
1190 dnl  Special arch tuning
1191 dnl
1192 AC_ARG_WITH(tuning,
1193 [  --with-tuning=ARCH      enable special tuning for an architecture
1194                           (default Pentium 2 on IA-32 and 750 on PPC)])
1195 if test -n "${with_tuning}"; then
1196     CFLAGS_TUNING="-mtune=${with_tuning}"
1197 else
1198     if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "i486" -o "${target_cpu}" = "i386"; then
1199         CFLAGS_TUNING="-mtune=pentium2"
1200     elif test "${target_cpu}" = "x86_64"; then
1201         CFLAGS_TUNING="-mtune=athlon64"
1202     elif test "${target_cpu}" = "powerpc"; then
1203         CFLAGS_TUNING="-mtune=750";
1204     fi
1205 fi
1206
1207 dnl NOTE: this can't be cached cleanly
1208 AS_IF([test "${CFLAGS_TUNING}"],
1209    [CFLAGS_save="${CFLAGS}"
1210     CFLAGS="${CFLAGS} ${CFLAGS_TUNING}"
1211
1212     AC_MSG_CHECKING([whether $CC accepts ${CFLAGS_TUNING}])
1213     AC_COMPILE_IFELSE([ ],
1214                       [tuning="yes"],
1215                       [CFLAGS_TUNING=""; tuning="no"
1216                        AS_IF([test "${with_tuning}"],
1217                              [AC_MSG_ERROR([requested tuning not supported])])])
1218
1219     AC_MSG_RESULT([$tuning])
1220     CFLAGS="${CFLAGS_save}"
1221 ])
1222
1223 dnl
1224 dnl  x86 accelerations
1225 dnl
1226 if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "x86" -o "${target_cpu}" = "i386" -o "${target_cpu}" = "x86_64"
1227 then
1228     ARCH="${ARCH} mmx"
1229     VLC_ADD_BUILTINS([${ACCEL_MODULES}])
1230 fi
1231
1232 dnl
1233 dnl  Memory usage
1234 dnl
1235 AC_ARG_ENABLE(optimize-memory,
1236 [  --enable-optimize-memory      optimize memory usage over performance])
1237 if test "${enable_optimize_memory}" = "yes"; then
1238   AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1239 fi
1240
1241 dnl
1242 dnl  Enable/disable optimizations
1243 dnl
1244 AC_ARG_ENABLE(optimizations,
1245 [  --disable-optimizations disable compiler optimizations (default enabled)])
1246 test "${enable_optimizations}" != "no" && enable_optimizations="yes"
1247
1248 dnl
1249 dnl  AltiVec acceleration
1250 dnl
1251 AC_ARG_ENABLE(altivec,
1252 [  --disable-altivec       disable AltiVec optimizations (default enabled on PPC)],
1253 [ if test "${enable_altivec}" = "yes"; then ARCH="${ARCH} altivec";
1254     VLC_ADD_BUILTINS([${ACCEL_MODULES}]) fi ],
1255 [ if test "${target_cpu}" = "powerpc"; then ARCH="${ARCH} altivec";
1256     VLC_ADD_BUILTINS([${ACCEL_MODULES}]) fi ])
1257
1258 dnl
1259 dnl  Debugging mode
1260 dnl
1261 AC_ARG_ENABLE(debug,
1262 [  --enable-debug          debug mode (default disabled)])
1263 test "${enable_debug}" != "yes" && enable_debug="no"
1264
1265 dnl
1266 dnl  Enable release-specific flags
1267 dnl
1268 AC_ARG_ENABLE(release,
1269 [  --enable-release        activate extra optimizations (default disabled)])
1270 test "${enable_release}" != "yes" && enable_release="no"
1271
1272 dnl
1273 dnl Stream output
1274 dnl
1275 AC_ARG_ENABLE(sout,
1276   [  --enable-sout           Stream output modules (default enabled)])
1277 if test "${enable_sout}" != "no"
1278 then
1279   VLC_ADD_PLUGINS([access_output_dummy access_output_udp access_output_file access_output_http])
1280   VLC_ADD_PLUGINS([mux_ps mux_avi mux_mp4 mux_asf mux_dummy mux_wav mux_mpjpeg])
1281   VLC_ADD_PLUGINS([packetizer_copy])
1282
1283   VLC_ADD_PLUGINS([stream_out_dummy stream_out_standard stream_out_es stream_out_rtp stream_out_description vod_rtsp])
1284   VLC_ADD_PLUGINS([stream_out_duplicate stream_out_gather stream_out_display stream_out_transcode stream_out_bridge stream_out_mosaic_bridge])
1285 #  VLC_ADD_PLUGINS([stream_out_transrate])
1286
1287   AC_DEFINE(ENABLE_SOUT, 1, Define if you want the stream output support)
1288 fi
1289
1290 dnl Check for libshout
1291 AC_ARG_ENABLE(shout,
1292   [  --enable-shout          libshout output plugin (default disabled)])
1293 if test "${enable_shout}" = "yes"; then
1294   PKG_CHECK_MODULES(SHOUT, shout >= 2.1,
1295     [AC_DEFINE(HAVE_SHOUT, [], [Define if you have the libshout library])
1296      VLC_ADD_PLUGINS([access_output_shout])
1297      VLC_ADD_LDFLAGS([vlc access_output_shout],[$SHOUT_LIBS])
1298      VLC_ADD_CFLAGS([vlc access_output_shout],[$SHOUT_CFLAGS])],
1299     [AC_MSG_WARN(libshout library not found)])
1300 fi
1301
1302 dnl
1303 dnl HTTP daemon
1304 dnl
1305 AC_ARG_ENABLE(httpd,
1306   [  --enable-httpd          HTTP daemon (default enabled)])
1307 if test "${enable_httpd}" != "no"
1308 then
1309   VLC_ADD_PLUGINS([http])
1310   AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP dameon support)
1311 fi
1312
1313 dnl
1314 dnl VideoLAN manager
1315 dnl
1316 AC_ARG_ENABLE(vlm,
1317   [  --enable-vlm            VideoLAN manager (default enabled)])
1318 if test "${enable_vlm}" != "no"
1319 then
1320   AC_DEFINE(ENABLE_VLM, 1, Define if you want the VideoLAN manager support)
1321 fi
1322
1323 dnl
1324 dnl TLS/SSL
1325 dnl
1326 AC_ARG_ENABLE(gnutls,
1327   [  --enable-gnutls         gnutls TLS/SSL support (default enabled)])
1328 AS_IF([test "${enable_gnutls}" != "no"], [
1329
1330   gcrypt_LIBS="-lgpg-error"
1331   AS_IF([test "${SYS}" = "mingw32"],
1332     [gcrypt_LIBS="${gcrypt_LIBS} -lws2_32"
1333      VLC_ADD_LDFLAGS([gnutls],[-lws2_32])]
1334   )
1335
1336   gnutls_LIBS="-lgcrypt -lz ${gcrypt_LIBS}"
1337
1338   AC_CHECK_HEADER(gcrypt.h,
1339     [AC_CHECK_LIB(gcrypt, gcry_control,
1340       [AC_CHECK_HEADER(gnutls/gnutls.h,
1341         [AC_CHECK_LIB(gnutls, gnutls_certificate_verify_peers2,
1342           [have_gnutls="yes"],[old_gnutls="yes"], ${gnutls_LIBS})])],,
1343      ${gcrypt_LIBS})])
1344
1345   AS_IF([test "${have_gnutls}" = "yes"], [
1346     VLC_ADD_PLUGINS([gnutls])
1347     VLC_ADD_LDFLAGS([gnutls], [-lgnutls ${gnutls_LIBS}])
1348   ], [
1349     AS_IF([test "${enable_gnutls}" = "yes"], [
1350       AC_MSG_ERROR([gnutls not present or too old (version 1.0.17 required)])]
1351     )]
1352   )]
1353 )
1354
1355
1356 dnl
1357 dnl  Input plugins
1358 dnl
1359
1360 AC_ARG_WITH(,[Input plugins:])
1361
1362 dnl  live.com input
1363 dnl
1364 AC_ARG_ENABLE(livedotcom,
1365 [  --enable-livedotcom     live.com RTSP input plugin (default disabled)])
1366 if test "${enable_livedotcom}" = "yes"; then
1367   AC_ARG_WITH(livedotcom-tree,
1368     [    --with-livedotcom-tree=PATH live.com tree for static linking])
1369
1370   dnl
1371   dnl test for --with-livedotcom-tree
1372   dnl
1373   if test -z "${with_livedotcom_tree}" -a "${CXX}" != ""; then
1374     AC_LANG_PUSH(C++)
1375     CPPFLAGS_save="${CPPFLAGS}"
1376     CPPFLAGS_livedotcom="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
1377     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_livedotcom}"
1378     AC_CHECK_HEADERS(liveMedia.hh, [
1379       VLC_ADD_CXXFLAGS([livedotcom], [${CPPFLAGS_livedotcom}])
1380       AC_CHECK_LIB(liveMedia_pic, main, [
1381         # We have -lliveMedia_pic, build plugins
1382         VLC_ADD_PLUGINS([livedotcom])
1383         VLC_ADD_LDFLAGS([livedotcom], [-lliveMedia_pic -lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic])
1384       ], [
1385         AC_CHECK_LIB(liveMedia, main, [
1386           # We only have -lliveMedia, do builtins
1387           VLC_ADD_BUILTINS([livedotcom])
1388           VLC_ADD_LDFLAGS([livedotcom], [-lliveMedia -lgroupsock -lBasicUsageEnvironment -lUsageEnvironment])
1389         ])
1390       ])
1391       if test "${SYS}" = "mingw32"; then
1392         # add ws2_32 for closesocket, select, recv
1393         VLC_ADD_LDFLAGS([livedotcom],[-lws2_32])
1394       fi
1395     ])
1396     CPPFLAGS="${CPPFLAGS_save}"
1397     AC_LANG_POP(C++)
1398   else
1399     AC_MSG_CHECKING(for liveMedia/libliveMedia.a in ${with_livedotcom_tree})
1400     real_livedotcom_tree="`cd ${with_livedotcom_tree} 2>/dev/null && pwd`"
1401     if test -z "${real_livedotcom_tree}"; then
1402       dnl  The given directory can't be found
1403       AC_MSG_RESULT(no)
1404       AC_MSG_ERROR([cannot cd to ${with_livedotcom_tree}])
1405     fi
1406     if test -f "${real_livedotcom_tree}/liveMedia/libliveMedia.a"; then
1407       AC_MSG_RESULT(${real_livedotcom_tree}/liveMedia/libliveMedia.a)
1408
1409       VLC_ADD_BUILTINS([livedotcom])
1410
1411       if test "${SYS}" = "mingw32"; then
1412         # add ws2_32 for closesocket, select, recv
1413         VLC_ADD_LDFLAGS([livedotcom],[-lws2_32])
1414       fi
1415
1416       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/liveMedia -lliveMedia])
1417       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/BasicUsageEnvironment -lBasicUsageEnvironment])
1418       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/groupsock -lgroupsock])
1419       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/UsageEnvironment -lUsageEnvironment])
1420
1421       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/BasicUsageEnvironment/include])
1422       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/groupsock/include])
1423       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/liveMedia/include])
1424       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/UsageEnvironment/include ])
1425     else
1426       dnl  The given live.com wasn't built
1427       AC_MSG_RESULT(no)
1428       AC_MSG_ERROR([cannot find ${real_livedotcom_tree}/liveMedia/libliveMedia.a, make sure you compiled live.com in ${with_livedotcom_tree}])
1429     fi
1430   fi
1431 fi
1432
1433
1434 dnl
1435 dnl dvdread module: check for libdvdread
1436 dnl
1437 AC_ARG_ENABLE(dvdread,
1438 [  --enable-dvdread        dvdread input module (default disabled)])
1439 if test "${enable_dvdread}" != "no"
1440 then
1441   AC_ARG_WITH(dvdread,
1442   [    --with-dvdread=PATH   libdvdread headers and libraries])
1443   AC_ARG_WITH(dvdread-tree,
1444   [    --with-dvdread-tree=PATH libdvdread tree for static linking])
1445
1446   dnl Temporary hack (yeah, sure ;)
1447   if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
1448       VLC_ADD_LDFLAGS([dvdread],[-ldvdcss])
1449   fi
1450
1451   if test -z "${with_dvdread}"
1452   then
1453     if test -z "${with_dvdread_tree}"
1454     then
1455       AC_CHECK_HEADERS(dvdread/dvd_reader.h,
1456         [ VLC_ADD_PLUGINS([dvdread])
1457           VLC_ADD_LDFLAGS([dvdread],[-ldvdread ${LDFLAGS_dvdcss}])
1458         ],[
1459           if test -n "${enable_dvdread}"
1460           then
1461             AC_MSG_ERROR([cannot find libdvdread headers])
1462           fi
1463         ])
1464     else
1465       AC_MSG_CHECKING(for libdvdread.a in ${with_dvdread_tree})
1466       real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`"
1467       if test -z "${real_dvdread_tree}"
1468       then
1469         dnl  The given directory can't be found
1470         AC_MSG_RESULT(no)
1471         AC_MSG_ERROR([cannot cd to ${with_dvdread_tree}])
1472       fi
1473       if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a"
1474       then
1475         dnl  Use a custom libdvdread
1476         AC_MSG_RESULT(${real_dvdread_tree}/dvdread/.libs/libdvdread.a)
1477         VLC_ADD_BUILTINS([dvdread])
1478         VLC_ADD_LDFLAGS([dvdread],[-L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LDFLAGS_dvdcss}])
1479         VLC_ADD_CPPFLAGS([dvdread],[-I${real_dvdread_tree}])
1480       else
1481         dnl  The given libdvdread wasn't built
1482         AC_MSG_RESULT(no)
1483         AC_MSG_ERROR([cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}])
1484       fi
1485     fi
1486   else
1487     AC_MSG_CHECKING(for dvdread headers in ${with_dvdread})
1488     if test -f ${with_dvdread}/include/dvdread/dvd_reader.h
1489     then
1490       dnl  Use ${with_dvdread}/include/dvdread/dvd_reader.h
1491       AC_MSG_RESULT(yes)
1492       VLC_ADD_PLUGINS([dvdread])
1493       VLC_ADD_LDFLAGS([dvdread],[-L${with_dvdread}/lib -ldvdread ${LDFLAGS_dvdcss}])
1494       VLC_ADD_CPPFLAGS([dvdread],[-I${with_dvdread}/include])
1495     else
1496       dnl  No libdvdread could be found, sorry
1497       AC_MSG_RESULT(no)
1498       AC_MSG_ERROR([cannot find ${with_dvdread}/include/dvdread/dvd_reader.h])
1499     fi
1500   fi
1501 fi
1502
1503 dnl
1504 dnl  libdvdnav plugin
1505 dnl
1506 AC_ARG_ENABLE(dvdnav,
1507   [  --enable-dvdnav         dvdnav input module (default enabled)])
1508 if test "${enable_dvdnav}" != "no"
1509 then
1510   dnl Same hack than dvdread
1511   if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
1512       VLC_ADD_LDFLAGS([dvdnav],[-ldvdcss])
1513   fi
1514
1515   DVDNAV_PATH="${PATH}"
1516   AC_ARG_WITH(dvdnav-config-path,
1517     [    --with-dvdnav-config-path=PATH dvdnav-config path (default search in \$PATH)],
1518     [ if test "${with_dvdnav_config_path}" != "no"
1519       then
1520         DVDNAV_PATH="${with_dvdnav_config_path}:${PATH}"
1521       fi ])
1522   AC_PATH_PROG(DVDNAV_CONFIG, dvdnav-config, no, ${DVDNAV_PATH})
1523   if test "${DVDNAV_CONFIG}" != "no"
1524   then
1525     VLC_ADD_PLUGINS([dvdnav])
1526     VLC_ADD_CFLAGS([dvdnav],[`${DVDNAV_CONFIG} --cflags`])
1527     VLC_ADD_LDFLAGS([dvdnav],[`${DVDNAV_CONFIG} --libs`])
1528   fi
1529 fi
1530
1531 dnl
1532 dnl  Windows DirectShow access module
1533 dnl
1534 AC_ARG_ENABLE(dshow,
1535   [  --enable-dshow          Win32 DirectShow support (default enabled on Win32)])
1536 if test "${enable_dshow}" != "no"
1537 then
1538   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
1539   then
1540       AC_CHECK_HEADERS(dshow.h,
1541       [ VLC_ADD_PLUGINS([dshow])
1542         VLC_ADD_CXXFLAGS([dshow],[])
1543         VLC_ADD_LDFLAGS([dshow],[-lole32 -loleaut32 -luuid]) ])
1544   fi
1545 fi
1546
1547 dnl
1548 dnl  libsmbclient plugin
1549 dnl
1550 AC_ARG_ENABLE(smb,
1551   [  --enable-smb            smb input module (default enabled)])
1552 if test "${enable_smb}" != "no"; then
1553   AC_CHECK_HEADERS(libsmbclient.h,
1554     [ VLC_ADD_PLUGINS([access_smb])
1555       VLC_ADD_LDFLAGS([access_smb],[-lsmbclient]) ],
1556     [ if test -n "${enable_smb}"; then
1557         AC_MSG_ERROR([cannot find libsmbclient headers])
1558      fi ])
1559   AC_CHECK_MEMBER([struct _SMBCCTX.close_fn],
1560     AC_DEFINE([HAVE__SMBCCTX_CLOSE_FN], [1], [Define if samba has _SMBCCTX.close_fn]),,
1561     [#include <libsmbclient.h>])
1562 fi
1563
1564 dnl
1565 dnl  libdvbpsi ts demux/mux
1566 dnl
1567 AC_ARG_ENABLE(dvbpsi,
1568 [  --enable-dvbpsi         dvbpsi ts mux and demux module (default enabled)])
1569 if test "${enable_dvbpsi}" != "no"
1570 then
1571   AC_ARG_WITH(dvbpsi,
1572   [    --with-dvbpsi=PATH    libdvbpsi headers and libraries])
1573   AC_ARG_WITH(dvbpsi,
1574   [    --with-dvbpsi-tree=PATH libdvbpsi tree for static linking])
1575   case "${with_dvbpsi}" in
1576   ""|yes)
1577     if test -z "${with_dvbpsi_tree}"
1578     then
1579       AC_CHECK_HEADERS(dvbpsi/dr.h,
1580         [ VLC_ADD_PLUGINS([ts])
1581           if test "${enable_sout}" != "no"; then
1582             VLC_ADD_BUILTINS([mux_ts])
1583           fi
1584           VLC_ADD_LDFLAGS([mux_ts ts dvb],[-ldvbpsi]) ],
1585         [  AC_MSG_WARN([cannot find libdvbpsi headers]) ],
1586         [#if defined( HAVE_STDINT_H )
1587 #   include <stdint.h>
1588 #elif defined( HAVE_INTTYPES_H )
1589 #   include <inttypes.h>
1590 #endif
1591 #include <dvbpsi/dvbpsi.h>
1592 #include <dvbpsi/descriptor.h>
1593 #include <dvbpsi/pat.h>
1594 #include <dvbpsi/pmt.h>])
1595     else
1596       AC_MSG_CHECKING(for libdvbpsi.a in ${with_dvbpsi_tree})
1597       real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
1598       if test -z "${real_dvbpsi_tree}"
1599       then
1600         dnl  The given directory can't be found
1601         AC_MSG_RESULT(no)
1602         AC_MSG_ERROR([cannot cd to ${with_dvbpsi_tree}])
1603       fi
1604       if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
1605       then
1606         dnl  Use a custom libdvbpsi
1607         AC_MSG_RESULT(${real_dvbpsi_tree}/src/.libs/libdvbpsi.a)
1608         VLC_ADD_BUILTINS([ts])
1609         if test "${enable_sout}" != "no"; then
1610           VLC_ADD_BUILTINS([mux_ts])
1611         fi
1612         VLC_ADD_CPPFLAGS([mux_ts ts dvb],[-I${real_dvbpsi_tree}/src])
1613         VLC_ADD_LDFLAGS([mux_ts ts dvb],[${real_dvbpsi_tree}/src/.libs/libdvbpsi.a])
1614       else
1615         dnl  The given libdvbpsi wasn't built
1616         AC_MSG_RESULT(no)
1617         AC_MSG_ERROR([cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}])
1618       fi
1619     fi
1620   ;;
1621   no)
1622     dnl  Compile without dvbpsi
1623   ;;
1624   *)
1625     AC_MSG_CHECKING(for dvbpsi headers in ${with_dvbpsi})
1626     if test -z "${with_dvbpsi}"
1627     then
1628       LDFLAGS_test=""
1629       CPPFLAGS_test=""
1630     else
1631       LDFLAGS_test="-L${with_dvbpsi}/lib"
1632       CPPFLAGS_test="-I${with_dvbpsi}/include"
1633     fi
1634     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}"
1635     AC_CHECK_HEADERS([dvbpsi/dr.h],[
1636       VLC_ADD_PLUGINS([ts])
1637       if test "${enable_sout}" != "no"; then
1638         VLC_ADD_PLUGINS([mux_ts])
1639       fi
1640       VLC_ADD_CPPFLAGS([mux_ts ts dvb],[${CPPFLAGS_test}])
1641       VLC_ADD_LDFLAGS([mux_ts ts dvb],[${LDFLAGS_test} -ldvbpsi])
1642
1643     ],[
1644       if test -n "${enable_dvbpsi}"
1645       then
1646         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])
1647       fi
1648     ])
1649     CPPFLAGS="${CPPFLAGS_save}"
1650   ;;
1651   esac
1652 fi
1653
1654 dnl
1655 dnl  Video4Linux plugin
1656 dnl
1657 AC_ARG_ENABLE(v4l,
1658   [  --enable-v4l            Video4Linux input support (default disabled)])
1659 if test "${enable_v4l}" = "yes"
1660 then
1661   AC_ARG_WITH(v4l,
1662     [    --with-v4l=PATH       path to a v4l-enabled kernel tree],[],[])
1663   if test "${with_v4l}" != "no" -a -n "${with_v4l}"
1664   then
1665     VLC_ADD_CPPFLAGS([v4l],[-I${with_v4l}/include])
1666   fi
1667
1668   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l}"
1669   AC_CHECK_HEADERS(linux/videodev.h, [
1670     VLC_ADD_PLUGINS([v4l])
1671   ],[])
1672   CPPFLAGS="${CPPFLAGS_save}"
1673 fi
1674
1675 dnl
1676 dnl  special access module for Hauppauge PVR cards
1677 dnl
1678 AC_ARG_ENABLE(pvr,
1679   [  --enable-pvr            PVR cards access module (default disabled)])
1680 if test "${enable_pvr}" = "yes"
1681 then
1682   VLC_ADD_PLUGINS([pvr])
1683 fi
1684
1685 dnl
1686 dnl  gnomeVFS access module
1687 dnl
1688 AC_ARG_ENABLE(gnomevfs,
1689   [  --enable-gnomevfs      GnomeVFS access module (default enables)])
1690 if test "{enable_gnomevfs}" != "no"
1691 then
1692   PKG_CHECK_MODULES(GNOMEVFS, gnome-vfs-2.0,
1693     VLC_ADD_LDFLAGS([access_gnomevfs],[$GNOMEVFS_LIBS])
1694     VLC_ADD_CPPFLAGS([access_gnomevfs],[$GNOMEVFS_CPPFLAGS])
1695     VLC_ADD_CFLAGS([access_gnomevfs],[$GNOMEVFS_CFLAGS])
1696     VLC_ADD_PLUGINS([access_gnomevfs]),
1697     AC_MSG_WARN([GnomeVFS support disbaled because GnomeVFS development headers not found]))
1698 fi
1699
1700 dnl Need to test libcdio and libvcdinfo for a number of things. Do it now.
1701 AC_ARG_ENABLE(libcdio,
1702   [  --enable-libcdio        CD input and control library support (default enabled)])
1703
1704
1705 have_libcdio=no
1706 have_libvcdinfo=no
1707 if test "${enable_libcdio}" != "no"
1708 then
1709   PKG_CHECK_MODULES(LIBCDIO, libcdio >= 0.72,
1710      have_libcdio=yes
1711      AC_DEFINE(HAVE_LIBCDIO, [], 
1712      [Define if you have libcdio 0.72 or greater installed]),
1713      [AC_MSG_WARN(CD Reading and information library not found)])
1714
1715   PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.21,
1716      [have_libvcdinfo=yes
1717      AC_DEFINE(HAVE_VCDINFO, [], 
1718      [Define if you have libvcdinfo 0.7.21 or greater installed])],
1719      [AC_MSG_WARN(VCD information library not found)])
1720 fi
1721
1722 dnl
1723 dnl  VCDX and CDDAX modules
1724 dnl
1725 AC_ARG_ENABLE(cddax,
1726   [  --enable-cddax          audio CD plugin with CD Text and CD paranoia via libcdio (default disabled)])
1727  
1728 AC_ARG_ENABLE(libcddb,
1729   [  --enable-libcddb        CDDB support for libcdio audio CD (default enabled)])
1730  
1731 if test "${enable_cddax}" = "yes"
1732 then
1733   if test "$have_libcdio" = "yes"
1734   then
1735     AC_DEFINE(HAVE_CDDAX, [], [Define for the audio CD plugin using libcdio])
1736     VLC_ADD_LDFLAGS([cddax],[$LIBCDIO_LIBS])
1737     VLC_ADD_CFLAGS([cddax],[$LIBCDIO_CFLAGS])
1738     VLC_ADD_PLUGINS([cddax])
1739     PKG_CHECK_MODULES(LIBCDIO_PARANOIA, libcdio_paranoia >= 0.72, [
1740     VLC_ADD_LDFLAGS([cddax],[$LIBCDIO_CDDA_LIBS $LIBCDIO_CDDA_LIBS $LIBCDIO_PARANOIA_LIBS])],
1741     AC_MSG_WARN([CD Paranoia support disabled because no libcdio >= 0.72 found]))
1742   else 
1743     AC_MSG_WARN([cddax plugin disabled because ok libcdio library not found or disabled])
1744     HAVE_CDDAX=no
1745   fi
1746
1747   if test "$enable_libcddb" != "no"; then
1748     PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.5, [
1749       HAVE_LIBCDDB=yes 
1750       AC_DEFINE(HAVE_LIBCDDB, [], [Define this if you have libcddb installed])
1751       VLC_ADD_LDFLAGS([cddax],[$LIBCDDB_LIBS])
1752       VLC_ADD_CFLAGS([cddax],[$LIBCDDB_CFLAGS])
1753       ],
1754       [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled) 
1755       HAVE_LIBCDDB=no])
1756   fi
1757  
1758 fi
1759
1760 AC_ARG_ENABLE(vcdx,
1761   [  --enable-vcdx           VCD with navigation via libvcdinfo (default disabled)])
1762  
1763 if test "${enable_vcdx}" = "yes"
1764 then
1765   if test "${have_libvcdinfo}" = "yes"
1766   then
1767     VLC_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
1768     VLC_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
1769   else 
1770     AC_MSG_WARN([vcdx plugin disabled because ok libvcdinfo library not found or disabled])
1771     HAVE_VCDX=no
1772   fi
1773
1774   PKG_CHECK_MODULES(LIBCDIO, libiso9660 >= 0.72,
1775    [VLC_ADD_LDFLAGS([vcdx],[$LIBISO9660_LIBS])
1776     VLC_ADD_CFLAGS([vcdx],[$LIBISO9660_CFLAGS])],
1777     [AC_MSG_WARN([vcdx plugin disabled because ok libiso9660 library not found])
1778     HAVE_VCDX=no])
1779
1780   if test "$have_libvcdinfo" = "yes"
1781   then
1782     AC_DEFINE(HAVE_VCDX, [], 
1783     [Define for the VCD plugin using libcdio/libvcdinfo])
1784     VLC_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
1785     VLC_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
1786     VLC_ADD_PLUGINS([vcdx])
1787   else 
1788     AC_MSG_WARN([vcdx plugin disabled because ok libvcdinfo library not found])
1789     HAVE_VCDX=no
1790   fi
1791 fi
1792
1793 dnl
1794 dnl  Built-in CD-DA and VCD module
1795 dnl
1796 AC_ARG_ENABLE(cdda,           
1797   [  --enable-cdda           audio CD via built-in VCD (default enabled)])
1798  
1799 AC_ARG_ENABLE(vcd,
1800   [  --enable-vcd            built-in VCD (default enabled)])
1801
1802 if test "${enable_vcd}" != "no"
1803 then
1804   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1805   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1806     AC_MSG_RESULT(yes)
1807     VLC_ADD_PLUGINS([vcd cdda])
1808   ],[
1809     AC_MSG_RESULT(no)
1810   ])
1811
1812   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1813   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1814     AC_MSG_RESULT(yes)
1815     VLC_ADD_PLUGINS([vcd cdda])
1816     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1817   ],[
1818     AC_MSG_RESULT(no)
1819   ])
1820
1821   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1822   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1823     AC_MSG_RESULT(yes)
1824     VLC_ADD_PLUGINS([vcd cdda])
1825     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1826   ],[
1827     AC_MSG_RESULT(no)
1828   ])
1829
1830   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32"
1831   then
1832     VLC_ADD_PLUGINS([vcd cdda])
1833   fi
1834
1835   if test "${SYS}" = "darwin"
1836   then
1837     VLC_ADD_PLUGINS([vcd cdda])
1838     VLC_ADD_LDFLAGS([vcd vcdx cdda cddax],[-framework IOKit -framework CoreFoundation])
1839     VLC_ADD_LDFLAGS([vcdx cddax],[-liconv])
1840   fi
1841 fi
1842
1843 dnl
1844 dnl  DVB-S/DVB-T/DVB-C satellite/teresterial/cable input using v4l2
1845 dnl
1846 AC_ARG_ENABLE(dvb,
1847   [  --enable-dvb            DVB-S/T/C card support (default disabled)])
1848
1849 if test "${enable_dvb}" = "yes"
1850 then
1851   AC_ARG_WITH(dvb,
1852   [    --with-dvb=PATH       path to a dvb- and v4l2-enabled kernel tree],[],[])
1853   if test "${with_dvb}" != "no" -a -n "${with_dvb}"
1854   then
1855     VLC_ADD_CFLAGS([dvb],[-I${with_dvb}/include])
1856   fi
1857   CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include"
1858   AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [
1859     if test -z "${with_dvbpsi_tree}"
1860     then
1861       VLC_ADD_PLUGINS([dvb])
1862     else
1863       VLC_ADD_BUILTINS([dvb])
1864     fi
1865   ],[AC_MSG_WARN(linux-dvb headers not found, dvb disabled)])
1866   CPPFLAGS="${CPPFLAGS_save}"
1867 fi
1868
1869 dnl
1870 dnl  Screen capture module
1871 dnl
1872 AC_ARG_ENABLE(screen,
1873   [  --enable-screen         Screen capture support (default enabled)])
1874 if test "${enable_screen}" != "no"; then
1875   if test "${SYS}" = "darwin"; then
1876     AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
1877       VLC_ADD_PLUGINS([screen])
1878       VLC_ADD_LDFLAGS([screen],[-framework ApplicationServices])
1879     ])
1880   elif test "${SYS}" = "mingw32"; then
1881     VLC_ADD_PLUGINS([screen])
1882     VLC_ADD_LDFLAGS([screen],[-lgdi32])
1883   elif test "${SYS}" = "mingwce"; then
1884     CPPFLAGS="${CPPFLAGS_save}"
1885   elif test "${SYS}" = "beos"; then
1886     VLC_ADD_PLUGINS([screen])
1887     VLC_ADD_CXXFLAGS([screen],[])
1888     VLC_ADD_LDFLAGS([screen],[-lbe])
1889   else
1890     CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
1891     AC_CHECK_HEADERS(X11/Xlib.h, [
1892       VLC_ADD_PLUGINS([screen])
1893       VLC_ADD_LDFLAGS([screen],[-L${x_libraries} -lX11 -lXext])
1894       VLC_ADD_CPPFLAGS([screen],[-I${x_includes}])
1895     ])
1896     CPPFLAGS="${CPPFLAGS_save}"
1897   fi
1898 fi
1899
1900 dnl
1901 dnl  ipv6 plugin - not for QNX yet
1902 dnl
1903 have_ipv6=no
1904 AC_CHECK_FUNCS(inet_pton,[have_ipv6=yes],[
1905   AC_CHECK_LIB(resolv,inet_pton,
1906     [have_ipv6=yes
1907      VLC_ADD_LDFLAGS([ipv6 vlc],[-lresolv])])
1908 ])
1909
1910 AS_IF([test "${have_ipv6}" == "yes"], [
1911   AC_DEFINE(HAVE_INET_PTON, 1, [Define to 1 if you have inet_pton().])])
1912
1913 if test "${SYS}" != "nto" &&
1914    test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
1915 then
1916   AC_MSG_CHECKING(for sockaddr_in6 in netinet/in.h)
1917   AC_EGREP_HEADER(sockaddr_in6,netinet/in.h,
1918     [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no); have_ipv6=no])
1919   AS_IF([test "${have_ipv6}" != "no"], [
1920     VLC_ADD_PLUGINS([ipv6])])
1921 fi
1922 if test "${SYS}" = "mingw32"
1923 then
1924   AC_MSG_CHECKING(for getaddrinfo in ws2tcpip.h)
1925   AC_EGREP_HEADER(addrinfo,ws2tcpip.h,[AC_MSG_RESULT(yes)
1926     VLC_ADD_PLUGINS([ipv6])],[AC_MSG_RESULT(no)])
1927 fi
1928
1929 dnl
1930 dnl  ogg demux plugin
1931 dnl
1932 AC_ARG_ENABLE(ogg,
1933   [  --enable-ogg            Ogg demux support (default enabled)])
1934 if test "${enable_ogg}" != "no"
1935 then
1936   AC_CHECK_HEADERS(ogg/ogg.h, [
1937     AC_CHECK_LIB( ogg, oggpack_read, [
1938       VLC_ADD_PLUGINS([ogg])
1939       if test "${enable_sout}" != "no"; then
1940         VLC_ADD_PLUGINS([mux_ogg])
1941       fi
1942       VLC_ADD_LDFLAGS([ogg mux_ogg],[-logg])])
1943    ],[])
1944 fi
1945
1946 dnl
1947 dnl  matroska demux plugin
1948 dnl
1949 AC_ARG_ENABLE(mkv,
1950   [  --enable-mkv            Matroska demux support (default enabled)])
1951 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
1952   AC_LANG_PUSH(C++)
1953   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
1954     AC_MSG_CHECKING(for libebml version >= 0.7.3)
1955     AC_EGREP_CPP(yes,
1956       [#include <ebml/EbmlVersion.h>
1957        #ifdef LIBEBML_VERSION
1958        #if LIBEBML_VERSION >= 0x000703
1959        yes
1960        #endif
1961        #endif],
1962       [AC_MSG_RESULT([yes])
1963         AC_CHECK_HEADERS(matroska/KaxVersion.h, [
1964           AC_MSG_CHECKING(for libmatroska version >= 0.7.5)
1965           AC_EGREP_CPP(yes,
1966             [#include <matroska/KaxVersion.h>
1967              #ifdef LIBMATROSKA_VERSION
1968              #if LIBMATROSKA_VERSION >= 0x000705
1969              yes
1970              #endif
1971              #endif],
1972             [AC_MSG_RESULT([yes])
1973               AC_CHECK_HEADERS(matroska/KaxAttachments.h)
1974               VLC_ADD_CXXFLAGS([mkv],[])
1975               if test "${SYS}" = "darwin"; then
1976                 VLC_ADD_CXXFLAGS([mkv],[-O1])
1977               fi
1978               AC_CHECK_LIB(ebml_pic, main, [
1979                 # We have ebml_pic, that's good, we can build an mkv.so plugin !
1980                 VLC_ADD_PLUGINS([mkv])
1981                 VLC_ADD_LDFLAGS([mkv],[-lmatroska_pic -lebml_pic])
1982               ], [
1983                 AC_CHECK_LIB(ebml, main, [
1984                   # We only have libebml, make mkv.a a builtin
1985                   VLC_ADD_BUILTINS([mkv])
1986                   VLC_ADD_LDFLAGS([mkv],[-lmatroska -lebml])
1987                 ])
1988               ])
1989             ],
1990             [AC_MSG_RESULT([no])
1991               AC_MSG_ERROR([Your libmatroska is too old: you may get a more recent one from http://dl.matroska.org/downloads/libmatroska/. Alternatively you can use --disable-mkv to disable the matroska plugin.])
1992           ])
1993         ])
1994       ],
1995       [AC_MSG_RESULT([no])
1996         AC_MSG_ERROR([Your libebml is too old: you may get a more recent one from http://dl.matroska.org/downloads/libebml/. Alternatively you can use --disable-mkv to disable the matroska plugin.])
1997     ])
1998   ])
1999   AC_LANG_POP(C++)
2000 fi
2001
2002 dnl
2003 dnl  modplug demux plugin
2004 dnl
2005 AC_ARG_ENABLE(mod,
2006   [  --enable-mod            Mod demux support (default enabled)])
2007 if test "${enable_mod}" != "no"
2008 then
2009   AC_CHECK_HEADERS(libmodplug/modplug.h, [
2010     VLC_ADD_PLUGINS([mod])
2011     VLC_ADD_CXXFLAGS([mod],[])
2012     VLC_ADD_LDFLAGS([mod],[-lmodplug])])
2013 fi
2014
2015 dnl
2016 dnl  Codec plugins
2017 dnl
2018
2019 AC_ARG_WITH(,[Codec plugins:])
2020
2021 dnl
2022 dnl  mad plugin
2023 dnl
2024 AC_ARG_ENABLE(mad,
2025   [  --enable-mad            libmad module (default enabled)])
2026 if test "${enable_mad}" != "no"
2027 then
2028   AC_ARG_WITH(mad,
2029     [    --with-mad=PATH       path to libmad],[],[])
2030   if test "${with_mad}" != "no" -a -n "${with_mad}"
2031   then
2032     VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
2033     VLC_ADD_LDFLAGS([mpgatofixed32],[-L${with_mad}/lib])
2034   fi
2035
2036   AC_ARG_WITH(mad-tree,
2037     [    --with-mad-tree=PATH  mad tree for static linking],[],[])
2038   if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
2039   then
2040     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
2041     if test -z "${real_mad_tree}"
2042     then
2043       dnl  The given directory can't be found
2044       AC_MSG_RESULT(no)
2045       AC_MSG_ERROR([${with_mad_tree} directory doesn't exist])
2046     fi
2047     dnl  Use a custom libmad
2048     AC_MSG_CHECKING(for mad.h in ${real_mad_tree})
2049     if test -f ${real_mad_tree}/mad.h
2050     then
2051       AC_MSG_RESULT(yes)
2052       VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}])
2053       VLC_ADD_LDFLAGS([mpgatofixed32],[-L${real_mad_tree}/.libs])
2054       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
2055       AC_CHECK_LIB(mad, mad_bit_init, [
2056         VLC_ADD_BUILTINS([mpgatofixed32])
2057         VLC_ADD_LDFLAGS([mpgatofixed32],[-lmad])
2058         ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ])
2059       ],[])
2060       LDFLAGS="${LDFLAGS_save}"
2061     else
2062       AC_MSG_RESULT(no)
2063       AC_MSG_ERROR([the specified tree doesn't have mad.h])
2064     fi
2065   else
2066     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}"
2067     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
2068     AC_CHECK_HEADERS(mad.h, ,
2069       [ 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.]) ])
2070     AC_CHECK_LIB(mad, mad_bit_init, [
2071       VLC_ADD_PLUGINS([mpgatofixed32])
2072       VLC_ADD_LDFLAGS([mpgatofixed32],[-lmad])],
2073       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
2074     CPPFLAGS="${CPPFLAGS_save}"
2075     LDFLAGS="${LDFLAGS_save}"
2076   fi
2077 fi
2078
2079 dnl
2080 dnl   libid3tag support (FIXME!!! doesn't work with new input)
2081 dnl
2082 AC_CHECK_HEADERS(id3tag.h, [
2083   AC_CHECK_HEADERS(zlib.h, [
2084     VLC_ADD_LDFLAGS([id3tag],[-lid3tag -lz])
2085     VLC_ADD_PLUGINS([id3tag])]) ])
2086
2087 dnl
2088 dnl  ffmpeg decoder/demuxer plugin
2089 dnl
2090 AC_ARG_ENABLE(ffmpeg,
2091 [  --enable-ffmpeg         ffmpeg codec (default enabled)])
2092 if test "${enable_ffmpeg}" != "no"
2093 then
2094 dnl Look for a ffmpeg-config (we are on debian )
2095  
2096    FFMPEG_PATH="${PATH}"
2097    AC_ARG_WITH(ffmpeg-config-path,
2098      [    --with-ffmpeg-config-path=PATH ffmpeg-config path (default search in \$PATH)],
2099      [ if test "${with_ffmpeg_config_path}" != "no"
2100        then
2101          FFMPEG_PATH="${with_ffmpeg_config_path}"
2102        fi ])
2103    AC_PATH_PROG(FFMPEG_CONFIG, ffmpeg-config, no, ${FFMPEG_PATH})
2104    if test "${FFMPEG_CONFIG}" != "no"
2105    then
2106      AC_CHECK_HEADERS(ffmpeg/avcodec.h)
2107      AC_CHECK_HEADERS(postproc/postprocess.h)
2108      VLC_ADD_PLUGINS([ffmpeg])
2109      if test "${enable_sout}" != "no"; then
2110          VLC_ADD_PLUGINS([stream_out_switcher])
2111      fi
2112      VLC_ADD_CFLAGS([ffmpeg stream_out_switcher],[`${FFMPEG_CONFIG} --cflags`])
2113      VLC_ADD_LDFLAGS([ffmpeg stream_out_switcher],[`${FFMPEG_CONFIG} --plugin-libs avcodec avformat postproc`])
2114   
2115   else
2116     AC_ARG_WITH(ffmpeg-mp3lame,
2117       [    --with-ffmpeg-mp3lame specify if ffmpeg has been compiled with mp3lame support],
2118       [
2119         VLC_ADD_LDFLAGS([ffmpeg],[-lmp3lame]) ])
2120
2121     AC_ARG_WITH(ffmpeg-faac,
2122       [    --with-ffmpeg-faac    specify if ffmpeg has been compiled with faac support],
2123       [
2124         VLC_ADD_LDFLAGS([ffmpeg],[-lfaac]) ])
2125
2126     AC_ARG_WITH(ffmpeg-dts,
2127       [    --with-ffmpeg-dts     specify if ffmpeg has been compiled with dts support],
2128       [
2129         VLC_ADD_LDFLAGS([ffmpeg],[-ldts]) ])
2130
2131     AC_ARG_WITH(ffmpeg-zlib,
2132       [    --with-ffmpeg-zlib    specify if ffmpeg has been compiled with zlib support],
2133       [
2134         VLC_ADD_LDFLAGS([ffmpeg],[-lz]) ])
2135
2136     AC_ARG_WITH(ffmpeg-tree,
2137       [    --with-ffmpeg-tree=PATH ffmpeg tree for static linking])
2138
2139     dnl
2140     dnl test for !(--with-ffmpeg-tree)
2141     dnl
2142     if test "${with_ffmpeg_tree}" = "no" -o -z "${with_ffmpeg_tree}"; then
2143       CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}"
2144       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
2145       AC_CHECK_HEADERS(ffmpeg/avcodec.h, [], [AC_MSG_ERROR([Missing header file ffmpeg/avcodec.h.])] )
2146       AC_CHECK_HEADERS(postproc/postprocess.h, [], [AC_MSG_ERROR([Missing header file postproc/postprocess.h.])] )
2147
2148       AC_CHECK_LIB(avutil, av_add_i, [
2149         VLC_ADD_LDFLAGS([ffmpeg],[-lavutil])
2150         LDAVUTIL="-lavutil"])
2151
2152       AC_CHECK_LIB(avcodec, avcodec_init, [
2153         VLC_ADD_BUILTINS([ffmpeg])
2154         VLC_ADD_LDFLAGS([ffmpeg],[-lavcodec])
2155         if test "${enable_sout}" != "no"; then
2156             VLC_ADD_BUILTINS([stream_out_switcher])
2157         fi],
2158          [ 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.]) ], [$LDAVUTIL])
2159       AC_CHECK_LIB(avformat, av_open_input_stream, [
2160         AC_DEFINE(HAVE_LIBAVFORMAT, 1,
2161         [Define if you have ffmpeg's libavformat.])
2162         VLC_ADD_LDFLAGS([ffmpeg],[-lavformat -lz]) ], [], [-lavcodec -lz $LDAVUTIL])
2163       LDFLAGS="${LDFLAGS_save}"
2164       CPPFLAGS="${CPPFLAGS_save}"
2165     fi
2166
2167     dnl
2168     dnl test for --with-ffmpeg-tree
2169     dnl
2170     if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
2171       AC_MSG_CHECKING(for libavcodec.a in ${with_ffmpeg_tree})
2172       real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
2173       if test -z "${real_ffmpeg_tree}"; then
2174         dnl  The given directory can't be found
2175         AC_MSG_RESULT(no)
2176         AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
2177       fi
2178       if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
2179         dnl  The given libavcodec wasn't built
2180         AC_MSG_RESULT(no)
2181         AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}])
2182       fi
2183       if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
2184         dnl  The given libavcodec wasn't built with --enable-pp
2185         AC_MSG_RESULT(no)
2186         AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
2187       fi
2188       dnl  Use a custom libffmpeg
2189       AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodec.a)
2190
2191       if fgrep -s "CONFIG_ZLIB=yes" "${real_ffmpeg_tree}/config.mak"; then
2192         if test "${with_ffmpeg_zlib}" != "yes"; then
2193           VLC_ADD_LDFLAGS([ffmpeg],[-lz])
2194         fi
2195       fi
2196       if fgrep -s "CONFIG_MP3LAME=yes" "${real_ffmpeg_tree}/config.mak"; then
2197         if test "${with_ffmpeg_mp3lame}" != "yes"; then
2198           VLC_ADD_LDFLAGS([ffmpeg],[-lmp3lame])
2199         fi
2200       fi
2201       if fgrep -s "CONFIG_FAAC=yes" "${real_ffmpeg_tree}/config.mak"; then
2202         if test "${with_ffmpeg_faac}" != "yes"; then
2203           VLC_ADD_LDFLAGS([ffmpeg],[-lfaac])
2204         fi
2205       fi
2206       if fgrep -s "CONFIG_DTS=yes" "${real_ffmpeg_tree}/config.mak"; then
2207         if test "${with_ffmpeg_dts}" != "yes"; then
2208           VLC_ADD_LDFLAGS([ffmpeg],[-ldts])
2209         fi
2210       fi
2211       if fgrep -s "CONFIG_VORBIS=yes" "${real_ffmpeg_tree}/config.mak"; then
2212         VLC_ADD_LDFLAGS([ffmpeg],[-lvorbis -lvorbisenc])
2213       fi
2214       if fgrep -s "CONFIG_FAAD=yes" "${real_ffmpeg_tree}/config.mak"; then
2215         VLC_ADD_LDFLAGS([ffmpeg],[-lfaad])
2216       fi
2217       if fgrep -s "CONFIG_XVID=yes" "${real_ffmpeg_tree}/config.mak"; then
2218         VLC_ADD_LDFLAGS([ffmpeg],[-lxvidcore])
2219       fi
2220
2221       VLC_ADD_BUILTINS([ffmpeg])
2222       if test "${enable_sout}" != "no"; then
2223         VLC_ADD_BUILTINS([stream_out_switcher])
2224       fi
2225
2226       if test -f "${real_ffmpeg_tree}/libavutil/libavutil.a"; then
2227         VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavutil ${real_ffmpeg_tree}/libavutil/libavutil.a])
2228         VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavutil])
2229       fi
2230
2231       VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavcodec ${real_ffmpeg_tree}/libavcodec/libavcodec.a])
2232       VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavcodec])
2233
2234       if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
2235         AC_DEFINE(HAVE_LIBAVFORMAT, 1, [Define if you have ffmpeg's libavformat.])
2236         VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavformat ${real_ffmpeg_tree}/libavformat/libavformat.a])
2237         VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavformat])
2238       fi
2239     fi
2240   fi
2241 fi
2242
2243 dnl
2244 dnl  ffmpeg decoder/demuxer plugin
2245 dnl
2246 AC_ARG_ENABLE(ffmpegaltivec,
2247 [  --enable-ffmpegaltivec  ffmpegaltivec codec (DO NOT USE)])
2248 if test "${enable_ffmpegaltivec}" == "yes"
2249 then
2250   if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
2251     AC_MSG_CHECKING(for libavcodecaltivec.a in ${with_ffmpeg_tree})
2252     real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
2253     if test -z "${real_ffmpeg_tree}"; then
2254       dnl  The given directory can't be found
2255       AC_MSG_RESULT(no)
2256       AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
2257     fi
2258     if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then
2259       dnl  The given libavcodecaltivec wasn't built
2260       AC_MSG_RESULT(no)
2261       AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a, make sure you compiled libavcodecaltivec in ${with_ffmpeg_tree}])
2262     fi
2263     if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then
2264       dnl  The given libavcodecaltivec wasn't built with --enable-pp
2265       AC_MSG_RESULT(no)
2266       AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
2267     fi
2268     dnl  Use a custom libffmpeg
2269     AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a)
2270     VLC_ADD_BUILTINS([ffmpegaltivec])
2271     VLC_ADD_LDFLAGS([ffmpegaltivec],[-L${real_ffmpeg_tree}/libavcodec -lavcodecaltivec])
2272     VLC_ADD_CPPFLAGS([ffmpeg],[-DNO_ALTIVEC_IN_FFMPEG])
2273     VLC_ADD_CPPFLAGS([ffmpegaltivec],[-I${real_ffmpeg_tree}/libavcodec -I${real_ffmpeg_tree}/libavformat])
2274
2275     if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
2276       AC_DEFINE(HAVE_LIBAVFORMAT, 1, [Define if you have ffmpeg's libavformat.])
2277       VLC_ADD_LDFLAGS([ffmpegaltivec],[-L${real_ffmpeg_tree}/libavformat -lavformataltivec -lz])
2278       VLC_ADD_CPPFLAGS([ffmpegaltivec],[-I${real_ffmpeg_tree}/libavformat])
2279     fi
2280     VLC_ADD_LDFLAGS([stream_out_switcher],[-L${real_ffmpeg_tree}/libavcodec])
2281     VLC_ADD_CPPFLAGS([stream_out_switcher],[-I${real_ffmpeg_tree}/libavcodec -I${real_ffmpeg_tree}/libavformat])
2282   fi
2283 fi
2284
2285 dnl
2286 dnl  faad decoder plugin
2287 dnl
2288 AC_ARG_ENABLE(faad,
2289 [  --enable-faad           faad codec (default disabled)])
2290 if test "${enable_faad}" = "yes"
2291 then
2292   AC_ARG_WITH(faad-tree,
2293   [    --with-faad-tree=PATH faad tree for static linking])
2294   if test -n "${with_faad_tree}"
2295   then
2296     AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
2297     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
2298     if test -z "${real_faad_tree}"
2299     then
2300       dnl  The given directory can't be found
2301       AC_MSG_RESULT(no)
2302       AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
2303     fi
2304     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
2305     then
2306       dnl  Use a custom faad
2307       AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
2308       VLC_ADD_BUILTINS([faad])
2309       VLC_ADD_LDFLAGS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
2310       VLC_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
2311     else
2312       dnl  The given libfaad wasn't built
2313       AC_MSG_RESULT(no)
2314       AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
2315     fi
2316   else
2317     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
2318     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_faad}"
2319     AC_CHECK_HEADERS(faad.h, ,
2320       [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ])
2321     AC_CHECK_LIB(faad, faacDecOpen, [
2322       VLC_ADD_PLUGINS([faad])
2323       VLC_ADD_LDFLAGS([faad],[-lfaad]) ],
2324       AC_CHECK_LIB(faad, NeAACDecOpen, [
2325         VLC_ADD_PLUGINS([faad])
2326         VLC_ADD_LDFLAGS([faad],[-lfaad]) ],
2327         [ AC_MSG_ERROR([Cannot find libfaad library...]) ]))
2328     LDFLAGS="${LDFLAGS_save}"
2329     CPPFLAGS="${CPPFLAGS_save}"
2330   fi
2331 fi
2332
2333 dnl
2334 dnl twolame encoder plugin
2335 dnl
2336 AC_ARG_ENABLE(twolame,
2337 [  --enable-twolame        twolame codec (default disabled)])
2338 if test "${enable_twolame}" = "yes"
2339 then
2340   AC_ARG_WITH(twolame-tree,
2341   [    --with-twolame-tree=PATH twolame tree for static linking])
2342   if test -n "${with_twolame_tree}"
2343   then
2344     AC_MSG_CHECKING(for libtwolame.a in ${with_twolame_tree})
2345     real_twolame_tree="`cd ${with_twolame_tree} 2>/dev/null && pwd`"
2346     if test -z "${real_twolame_tree}"
2347     then
2348       dnl  The given directory can't be found
2349       AC_MSG_RESULT(no)
2350       AC_MSG_ERROR([cannot cd to ${with_twolame_tree}])
2351     fi
2352     if test -f "${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a"
2353     then
2354       dnl  Use a custom twolame
2355       AC_MSG_RESULT(${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a)
2356       VLC_ADD_BUILTINS([twolame])
2357       VLC_ADD_LDFLAGS([twolame],[${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a])
2358       VLC_ADD_CPPFLAGS([twolame],[-I${real_twolame_tree}/src/libtwolame])
2359     else
2360       dnl  The given libtwolame wasn't built
2361       AC_MSG_RESULT(no)
2362       AC_MSG_ERROR([cannot find ${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a, make sure you compiled libtwolame in ${with_twolame_tree}])
2363     fi
2364   else
2365     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_twolame}"
2366     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_twolame}"
2367     AC_CHECK_HEADERS(twolame.h, ,
2368       [ AC_MSG_ERROR([Cannot find development header for libtwolame...]) ])
2369     AC_CHECK_LIB(twolame, twolame_init, [
2370       VLC_ADD_PLUGINS([twolame])
2371       VLC_ADD_LDFLAGS([twolame],[-ltwolame]) ],
2372         [ AC_MSG_ERROR([Cannot find libtwolame library...]) ])
2373     LDFLAGS="${LDFLAGS_save}"  
2374     CPPFLAGS="${CPPFLAGS_save}"
2375   fi
2376 fi
2377
2378 dnl
2379 dnl  QuickTime plugin
2380 dnl
2381 AC_ARG_ENABLE(quicktime,
2382   [  --enable-quicktime      QuickTime module (default enabled on MacOS X)])
2383 if test "${enable_quicktime}" != "no" &&
2384   (test "${SYS}" = "darwin" || test "${enable_quicktime}" = "yes")
2385 then
2386   if test "${SYS}" = "mingw32"; then
2387     VLC_ADD_BUILTINS([quicktime])
2388   else
2389   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2390     [ VLC_ADD_BUILTINS([quicktime])
2391       VLC_ADD_LDFLAGS([quicktime],[-framework QuickTime -framework Carbon])
2392     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2393   fi
2394 fi
2395
2396 dnl
2397 dnl MP4 module
2398 dnl
2399 AC_CHECK_HEADERS(zlib.h, [
2400   VLC_ADD_LDFLAGS([mp4 skins2 sap mkv],[-lz])
2401 ] )
2402
2403 AC_CHECK_HEADERS(sysfs/libsysfs.h, [
2404   VLC_ADD_LDFLAGS([mp4 mkv],[-lsysfs])
2405 ] )
2406
2407 dnl
2408 dnl skins2 module
2409 dnl
2410 AC_CHECK_HEADERS(libtar.h, [
2411   VLC_ADD_LDFLAGS([skins2],[-ltar])
2412 ] )
2413
2414
2415
2416 dnl
2417 dnl A52/AC3 decoder plugin
2418 dnl
2419 AC_ARG_ENABLE(a52,
2420   [  --enable-a52            A/52 support with liba52 (default enabled)])
2421 if test "${enable_a52}" != "no"
2422 then
2423   AC_ARG_WITH(a52,
2424     [    --with-a52=PATH       a52 headers and libraries])
2425   AC_ARG_WITH(a52-tree,
2426     [    --with-a52-tree=PATH  a52dec tree for static linking ],[],[])
2427   if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
2428   then
2429     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
2430     if test -z "${real_a52_tree}"
2431     then
2432       dnl  The given directory can't be found
2433       AC_MSG_RESULT(no)
2434       AC_MSG_ERROR([${with_a52_tree} directory doesn't exist])
2435     fi
2436     dnl  Use a custom a52dec
2437     AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
2438     if test -f ${real_a52_tree}/include/a52.h
2439     then
2440       AC_MSG_RESULT(yes)
2441       VLC_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
2442       VLC_ADD_LDFLAGS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
2443       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_a52tofloat32}"
2444       AC_CHECK_LIB(a52, a52_free, [
2445         VLC_ADD_BUILTINS([a52tofloat32])
2446         VLC_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
2447         VLC_ADD_LDFLAGS([a52tofloat32],[-la52])
2448         ],[
2449         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
2450         then
2451           AC_MSG_ERROR([make sure you have at least a52dec-0.7.3])
2452         else
2453           AC_MSG_ERROR([the specified tree hasn't been compiled])
2454         fi
2455       ])
2456       LDFLAGS="${LDFLAGS_save}"
2457     else
2458       AC_MSG_RESULT(no)
2459       AC_MSG_ERROR([the specified tree doesn't have a52.h])
2460     fi
2461   else
2462     if test -z "${with_a52}"
2463     then
2464       LDFLAGS_test=""
2465       CPPFLAGS_test=""
2466     else
2467       LDFLAGS_test="-L${with_a52}/lib"
2468       CPPFLAGS_test="-I${with_a52}/include"
2469     fi
2470     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2471     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LDFLAGS_a52tofloat32}"
2472     AC_CHECK_HEADERS(a52dec/a52.h, [
2473       AC_CHECK_LIB(a52, a52_free, [
2474         VLC_ADD_PLUGINS([a52tofloat32])
2475         VLC_ADD_LDFLAGS([a52tofloat32],[${LDFLAGS_test} -la52])
2476         VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2477       ],[
2478         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.])
2479       ])
2480     ])
2481     CPPFLAGS="${CPPFLAGS_save}"
2482     LDFLAGS="${LDFLAGS_save}"
2483   fi
2484 fi
2485
2486 AC_ARG_WITH(a52-fixed,
2487       [    --with-a52-fixed      specify if liba52 has been compiled with fixed point support],
2488       [
2489         VLC_ADD_CPPFLAGS([a52tofloat32],[-DLIBA52_FIXED]) ])
2490
2491 dnl
2492 dnl DTS Coherent Acoustics decoder plugin
2493 dnl
2494 AC_ARG_ENABLE(dts,
2495   [  --enable-dts            DTS Coherent Acoustics support with libdts (default enabled)])
2496 if test "${enable_dts}" != "no"; then
2497   AC_ARG_WITH(dts-tree,
2498     [    --with-dts-tree=PATH  libdts tree for static linking ],[],[])
2499   if test "${with_dts_tree}" != "no" -a -n "${with_dts_tree}"
2500   then
2501     real_dts_tree="`cd ${with_dts_tree} 2>/dev/null && pwd`"
2502     if test -z "${real_dts_tree}"
2503     then
2504       dnl  The given directory can't be found
2505       AC_MSG_RESULT(no)
2506       AC_MSG_ERROR([${with_dts_tree} directory doesn't exist])
2507     fi
2508     dnl  Use a custom libdts
2509     AC_MSG_CHECKING(for dts.h in ${real_dts_tree}/include)
2510     if test -f ${real_dts_tree}/include/dts.h
2511     then
2512       AC_MSG_RESULT(yes)
2513       VLC_ADD_CPPFLAGS([dtstofloat32],[-I${real_dts_tree}/include])
2514       VLC_ADD_LDFLAGS([dtstofloat32],[-L${real_dts_tree}/libdts])
2515       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
2516       AC_CHECK_LIB(dts_pic, dts_free, [
2517         VLC_ADD_PLUGINS([dtstofloat32])
2518         VLC_ADD_LDFLAGS([dtstofloat32],[-ldts_pic])
2519         ],[
2520         AC_CHECK_LIB(dts, dts_free, [
2521           VLC_ADD_BUILTINS([dtstofloat32])
2522           VLC_ADD_LDFLAGS([dtstofloat32],[-ldts])
2523           ],[
2524           if test -f ${real_dts_tree}/libdts/libdts.a
2525           then
2526             AC_MSG_ERROR([make sure you have at least libdts-0.0.2])
2527           else
2528             AC_MSG_ERROR([the specified tree hasn't been compiled])
2529           fi
2530         ])
2531       ])
2532       LDFLAGS="${LDFLAGS_save}"
2533     else
2534       AC_MSG_RESULT(no)
2535       AC_MSG_ERROR([the specified tree doesn't have dts.h])
2536     fi
2537   else
2538     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
2539     AC_CHECK_HEADERS(dts.h, [
2540       AC_CHECK_LIB(dts_pic, dts_free, [
2541         VLC_ADD_PLUGINS([dtstofloat32])
2542         VLC_ADD_LDFLAGS([dtstofloat32],[-ldts_pic])
2543       ],[
2544         AC_CHECK_LIB(dts, dts_free, [
2545           VLC_ADD_BUILTINS([dtstofloat32])
2546           VLC_ADD_LDFLAGS([dtstofloat32],[-ldts])
2547         ],[
2548           if test "${enable_dts}" = "yes"; then
2549             AC_MSG_ERROR([Could not find libdts on your system: you may get it from http://www.videolan.org/dtsdec.html])
2550           fi
2551         ])
2552       ])
2553     ])
2554     LDFLAGS="${LDFLAGS_save}"
2555   fi
2556 fi
2557
2558 dnl
2559 dnl  Flac plugin
2560 dnl
2561 AC_ARG_ENABLE(flac,
2562   [  --enable-flac           flac decoder support (default disabled)])
2563 if test "${enable_flac}" = "yes"
2564 then
2565   AC_CHECK_HEADERS(FLAC/stream_decoder.h, [
2566     VLC_ADD_LDFLAGS([flacdec],[-lFLAC])
2567    ],[])
2568 fi
2569
2570 dnl
2571 dnl  Libmpeg2 plugin
2572 dnl
2573 AC_ARG_ENABLE(libmpeg2,
2574   [  --enable-libmpeg2       libmpeg2 decoder support (default enabled)])
2575 if test "${enable_libmpeg2}" != "no"
2576 then
2577   AC_ARG_WITH(libmpeg2-tree,
2578   [    --with-libmpeg2-tree=PATH libmpeg2 tree for static linking])
2579   if test -n "${with_libmpeg2_tree}"
2580   then
2581     AC_MSG_CHECKING(for libmpeg2.a in ${with_libmpeg2_tree})
2582     real_libmpeg2_tree="`cd ${with_libmpeg2_tree} 2>/dev/null && pwd`"
2583     if test -z "${real_libmpeg2_tree}"
2584     then
2585       dnl  The given directory can't be found
2586       AC_MSG_RESULT(no)
2587       AC_MSG_ERROR([cannot cd to ${with_libmpeg2_tree}])
2588     fi
2589     if test -f "${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a"
2590     then
2591       dnl  Use a custom libmpeg2
2592       AC_MSG_RESULT(${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a)
2593       VLC_ADD_BUILTINS([libmpeg2])
2594       VLC_ADD_LDFLAGS([libmpeg2],[-L${real_libmpeg2_tree}/libmpeg2/.libs -lmpeg2])
2595       VLC_ADD_CFLAGS([libmpeg2],[-I${real_libmpeg2_tree}/include])
2596       eval "`cd ${real_libmpeg2_tree}/include && ln -sf . mpeg2dec 2>/dev/null`"
2597     else
2598       dnl  The given libmpeg2 wasn't built
2599       AC_MSG_RESULT(no)
2600       AC_MSG_ERROR([cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}])
2601     fi
2602   else
2603     AC_CHECK_HEADERS(mpeg2dec/mpeg2.h, [
2604       AC_MSG_CHECKING(for libmpeg2 version >= 0.3.2)
2605       AC_EGREP_CPP(yes,
2606         [#include <mpeg2dec/mpeg2.h>
2607          #ifdef MPEG2_RELEASE
2608          #if MPEG2_RELEASE >= MPEG2_VERSION(0,3,2)
2609          yes
2610          #endif
2611          #endif],
2612         [AC_MSG_RESULT([yes])
2613           VLC_ADD_PLUGINS([libmpeg2])
2614           VLC_ADD_LDFLAGS([libmpeg2],[-lmpeg2])],
2615         [AC_MSG_RESULT([no])
2616           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.])])],
2617
2618       [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.])]
2619     )
2620   fi
2621 fi
2622
2623 dnl
2624 dnl  Vorbis plugin
2625 dnl
2626 AC_ARG_ENABLE(vorbis,
2627   [  --enable-vorbis         Vorbis decoder support (default enabled)])
2628 if test "${enable_vorbis}" != "no"
2629 then
2630   AC_CHECK_HEADERS(vorbis/codec.h, [
2631     VLC_ADD_PLUGINS([vorbis])
2632     VLC_ADD_LDFLAGS([vorbis],[-lvorbis -logg]) ],[])
2633
2634   AC_CHECK_HEADERS(vorbis/vorbisenc.h, [
2635     VLC_ADD_LDFLAGS([vorbis],[-lvorbisenc]) ],[])
2636 fi
2637
2638 dnl
2639 dnl  Tremor plugin
2640 dnl
2641 AC_ARG_ENABLE(tremor,
2642   [  --enable-tremor         Tremor decoder support (default disabled)])
2643 if test "${enable_tremor}" = "yes"
2644 then
2645   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2646     VLC_ADD_PLUGINS([tremor])
2647     VLC_ADD_LDFLAGS([tremor],[-lvorbisidec -logg])
2648    ],[])
2649 fi
2650
2651 dnl
2652 dnl  Speex plugin
2653 dnl
2654 AC_ARG_ENABLE(speex,
2655   [  --enable-speex          Speex decoder support (default enabled)])
2656 if test "${enable_speex}" != "no"
2657 then
2658   AC_CHECK_HEADERS(speex/speex.h, [
2659     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_speex}"
2660     AC_CHECK_LIB(speex, speex_decode_int, [
2661       VLC_ADD_PLUGINS([speex])
2662       VLC_ADD_LDFLAGS([speex],[-lspeex]) ],
2663       [ AC_MSG_RESULT([no])
2664         AC_MSG_WARN([Your libspeex is too old, please get the development
2665                      version.]) ],[])
2666     LDFLAGS="${LDFLAGS_save}"
2667     ],[])
2668 fi
2669
2670 dnl
2671 dnl  tarkin decoder plugin
2672 dnl
2673 AC_ARG_ENABLE(tarkin,
2674 [  --enable-tarkin         experimental tarkin codec (default disabled)])
2675 if test "${enable_tarkin}" = "yes"
2676 then
2677   AC_ARG_WITH(tarkin-tree,
2678   [    --with-tarkin-tree=PATH tarkin tree for static linking])
2679   if test -n "${with_tarkin_tree}"
2680   then
2681     AC_MSG_CHECKING(for tarkin.o in ${with_tarkin_tree})
2682     real_tarkin_tree="`cd ${with_tarkin_tree} 2>/dev/null && pwd`"
2683     if test -f "${real_tarkin_tree}/tarkin.o"
2684     then
2685       VLC_ADD_BUILTINS([tarkin])
2686       VLC_ADD_CPPFLAGS([tarkin],[-I${real_tarkin_tree}])
2687       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])
2688       AC_MSG_RESULT(yes)
2689     else
2690       dnl  The given tarkin tree wasn't built
2691       AC_MSG_RESULT(no)
2692       AC_MSG_ERROR([cannot find ${real_tarkin_tree}/tarkin.o,
2693                     make sure you compiled tarkin in ${with_tarkin_tree}])
2694     fi
2695   fi
2696 fi
2697
2698 dnl
2699 dnl  theora decoder plugin
2700 dnl
2701 AC_ARG_ENABLE(theora,
2702 [  --enable-theora         experimental theora codec (default disabled)])
2703 if test "${enable_theora}" = "yes"
2704 then
2705   AC_CHECK_HEADERS(theora/theora.h, [
2706     AC_CHECK_LIB(theora, theora_granule_time, [
2707       if test "${SYS}" = "mingw32"; then
2708         VLC_ADD_PLUGINS([theora])
2709       else
2710         VLC_ADD_BUILTINS([theora])
2711       fi
2712       theora_libs="-ltheora -logg"
2713       VLC_ADD_LDFLAGS([theora],[${theora_libs}]) ],[
2714       AC_MSG_ERROR([libtheora doesn't appear to be installed on your system.
2715 You also need to check that you have a libogg posterior to the 1.0 release.])],
2716       [-logg])
2717   ])
2718 fi
2719
2720 dnl
2721 dnl  dirac decoder plugin
2722 dnl
2723 AC_ARG_ENABLE(dirac,
2724 [  --enable-dirac          experimental dirac codec (default disabled)])
2725 if test "${enable_dirac}" = "yes"; then
2726   AC_CHECK_HEADERS(libdirac_decoder/dirac_parser.h, [
2727     AC_CHECK_LIB(dirac_decoder, dirac_decoder_init, [
2728       VLC_ADD_PLUGINS([dirac])
2729       VLC_ADD_LDFLAGS([dirac],[-ldirac_decoder -ldirac_encoder -lstdc++]) ],[
2730       AC_MSG_ERROR([libdirac doesn't appear to be installed on you system.])],
2731       [-lstdc++])
2732   ])
2733 fi
2734
2735 dnl
2736 dnl  PNG decoder module
2737 dnl
2738 AC_ARG_ENABLE(png,
2739   [  --enable-png            PNG support (default enabled)])
2740 if test "${enable_png}" != "no"; then
2741 AC_CHECK_HEADERS(png.h, [
2742   LDFLAGS="${LDFLAGS_save} -lz"
2743   AC_CHECK_LIB(png, png_set_rows, [
2744     VLC_ADD_LDFLAGS([png],[-lpng -lz])
2745     VLC_ADD_PLUGINS([png])
2746     VLC_ADD_PLUGINS([osdmenu])
2747     AC_DEFINE(HAVE_LIBPNG, [], [Define if you have the PNG library: libpng])],
2748     [],[-lz])
2749   LDFLAGS="${LDFLAGS_save}"
2750   ])
2751 fi
2752
2753 dnl
2754 dnl H264 encoder plugin (using libx264)
2755 dnl
2756 AC_ARG_ENABLE(x264,
2757   [  --enable-x264           H264 encoding support with libx264 (default enabled)])
2758 if test "${enable_x264}" != "no"; then
2759   AC_ARG_WITH(x264-tree,
2760     [    --with-x264-tree=PATH x264 tree for static linking ],[],[])
2761   if test "${with_x264_tree}" != "no" -a -n "${with_x264_tree}"
2762   then
2763     real_x264_tree="`cd ${with_x264_tree} 2>/dev/null && pwd`"
2764     if test -z "${real_x264_tree}"
2765     then
2766       dnl  The given directory can't be found
2767       AC_MSG_RESULT(no)
2768       AC_MSG_ERROR([${with_x264_tree} directory doesn't exist])
2769     fi
2770     dnl  Use a custom libx264
2771     AC_MSG_CHECKING(for x264.h in ${real_x264_tree})
2772     if test -f ${real_x264_tree}/x264.h
2773     then
2774       AC_MSG_RESULT(yes)
2775       VLC_ADD_CPPFLAGS([x264],[-I${real_x264_tree}])
2776       VLC_ADD_LDFLAGS([x264],[-L${real_x264_tree}])
2777       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264}"
2778       AC_CHECK_LIB(x264, x264_encoder_open, [
2779         VLC_ADD_BUILTINS([x264])
2780         VLC_ADD_LDFLAGS([x264],[-lx264])
2781       ],[
2782         AC_MSG_ERROR([the specified tree hasn't been compiled])
2783       ])
2784       LDFLAGS="${LDFLAGS_save}"
2785     else
2786       AC_MSG_RESULT(no)
2787       AC_MSG_ERROR([the specified tree doesn't have x264.h])
2788     fi
2789   else
2790     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264}"
2791     AC_CHECK_HEADERS(x264.h, [
2792       AC_CHECK_LIB(x264, x264_encoder_open, [
2793         VLC_ADD_PLUGINS([x264])
2794         VLC_ADD_LDFLAGS([x264],[-lx264])
2795       ],[
2796         if test "${enable_x264}" = "yes"; then
2797             AC_MSG_ERROR([Could not find libx264 on your system: you may get it from http://www.videolan.org/x264.html])
2798           fi
2799       ])
2800     ])
2801     LDFLAGS="${LDFLAGS_save}"
2802   fi
2803 fi
2804
2805 dnl
2806 dnl  CMML plugin
2807 dnl
2808 AC_ARG_ENABLE(cmml,
2809   [  --enable-cmml           CMML support (default enabled)])
2810 if test "${enable_cmml}" != "no"
2811 then
2812   VLC_ADD_PLUGINS([cmml])
2813 fi
2814
2815
2816 dnl
2817 dnl  Video plugins
2818 dnl
2819
2820 AC_ARG_WITH(,[Video plugins:])
2821
2822 dnl Check for DPMS
2823 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
2824   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2825   AC_CHECK_HEADERS(X11/extensions/dpms.h, [
2826     AC_MSG_CHECKING(for DPMSInfo in X11/extensions/dpms.h)
2827     AC_EGREP_HEADER(DPMSInfo,X11/extensions/dpms.h,[
2828       AC_MSG_RESULT(yes)
2829       AC_DEFINE(DPMSINFO_IN_DPMS_H, 1,
2830                 Define if <X11/extensions/dpms.h> defines DPMSInfo.)
2831     ],[
2832       AC_MSG_RESULT(no)
2833     ])
2834   ],,[
2835     #include <X11/Xlib.h>
2836   ])
2837   CPPFLAGS="${CPPFLAGS_save}"
2838 fi
2839
2840 dnl
2841 dnl  X11 module
2842 dnl  (enabled by default except on win32)
2843 dnl
2844 AC_ARG_ENABLE(x11,
2845   [  --enable-x11            X11 support (default enabled)])
2846 if test "${enable_x11}" != "no" &&
2847   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
2848    test "${enable_x11}" = "yes"); then
2849   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2850   AC_CHECK_HEADERS(X11/Xlib.h, [
2851     VLC_ADD_PLUGINS([x11])
2852     VLC_ADD_LDFLAGS([x11],[-L${x_libraries} -lX11 -lXext])
2853     VLC_ADD_CPPFLAGS([x11],[-I${x_includes}])
2854   ])
2855   CPPFLAGS="${CPPFLAGS_save}"
2856 fi
2857
2858 dnl
2859 dnl  XVideo module
2860 dnl  (enabled by default except on win32)
2861 dnl
2862 AC_ARG_ENABLE(xvideo,
2863   [  --enable-xvideo         XVideo support (default enabled)])
2864 if test "${enable_xvideo}" != "no" &&
2865   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
2866    test "${enable_xvideo}" = "yes"); then
2867   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2868   AC_CHECK_HEADERS(X11/extensions/Xv.h, [
2869     CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2870     AC_CHECK_LIB(Xv,XvPutImage,[
2871       # If libXv.so is available, xvideo can be a plugin. Otherwise, we
2872       # test for libXv_pic.
2873       if test -f /usr/X11R6/lib/libXv.so -o -f "${x_libraries}"/libXv.so; then
2874         VLC_ADD_PLUGINS([xvideo])
2875         VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2876         VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
2877       else
2878         AC_CHECK_LIB(Xv_pic,XvPutImage,[
2879           VLC_ADD_PLUGINS([xvideo])
2880           VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2881           VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv_pic])
2882         ],[
2883           VLC_ADD_BUILTINS([xvideo])
2884           VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
2885           VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2886         ])
2887       fi
2888     ])
2889     CFLAGS="${CFLAGS_save}"
2890   ]
2891   CPPFLAGS="${CPPFLAGS_save}")
2892 fi
2893
2894 dnl
2895 dnl  GLX module
2896 dnl  (enabled by default except on win32)
2897 dnl
2898 AC_ARG_ENABLE(glx,
2899   [  --enable-glx            X11 OpenGL (GLX) support (default enabled)])
2900 if test "${enable_glx}" != "no" &&
2901   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
2902    test "${enable_glx}" = "yes"); then
2903   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2904   AC_CHECK_HEADERS(X11/Xlib.h, [
2905     AC_CHECK_HEADERS(GL/glx.h, [
2906       VLC_ADD_PLUGINS([glx])
2907       VLC_ADD_LDFLAGS([glx],[-L${x_libraries} -lX11 -lXext -lGL -lGLU])
2908       VLC_ADD_CPPFLAGS([glx],[-I${x_includes}])
2909   ]) ])
2910   CPPFLAGS="${CPPFLAGS_save}"
2911 fi
2912
2913 dnl
2914 dnl  Check for the Xinerama extension
2915 dnl
2916 if test "${enable_xvideo}" != "no" &&
2917   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
2918    test "${enable_xvideo}" = "yes"); then
2919   ac_cv_have_xinerama="no"
2920   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2921   CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2922   AC_CHECK_HEADERS(X11/extensions/Xinerama.h,[
2923     AC_CHECK_LIB(Xinerama_pic, XineramaQueryExtension,[
2924       VLC_ADD_LDFLAGS([xvideo],[-lXinerama_pic])
2925       VLC_ADD_LDFLAGS([x11],[-lXinerama_pic])
2926       VLC_ADD_LDFLAGS([glx],[-lXinerama_pic])
2927       ac_cv_have_xinerama="yes"
2928     ],[
2929       AC_CHECK_LIB(Xinerama, XineramaQueryExtension,[
2930         VLC_ADD_LDFLAGS([xvideo],[-lXinerama])
2931         VLC_ADD_LDFLAGS([x11],[-lXinerama])
2932         VLC_ADD_LDFLAGS([glx],[-lXinerama])
2933         ac_cv_have_xinerama="yes"
2934       ])
2935     ])
2936   ])
2937   if test "${ac_cv_have_xinerama}" = "yes"; then
2938     AC_DEFINE(HAVE_XINERAMA, 1, [Define this if you have libXinerama installed])
2939   fi
2940   CFLAGS="${CFLAGS_save}"
2941   CPPFLAGS="${CPPFLAGS_save}"
2942 fi
2943
2944 dnl
2945 dnl  OpenGL module
2946 dnl  (enabled by default except on beos)
2947 dnl
2948 AC_ARG_ENABLE(opengl,
2949   [  --enable-opengl         OpenGL support (default enabled)])
2950 if test "${enable_opengl}" != "no" &&
2951    test "${SYS}" != "beos" -a "${SYS}" != "mingwce"; then
2952   if test "${SYS}" != "darwin"; then
2953     AC_CHECK_HEADERS(GL/gl.h, [
2954       VLC_ADD_PLUGINS([opengl])
2955       if test "${SYS}" != "mingw32"; then
2956         VLC_ADD_LDFLAGS([opengl],[-L${x_libraries} -lGL -lGLU])
2957       else
2958         VLC_ADD_LDFLAGS([opengl],[-lopengl32])
2959       fi
2960     ])
2961   else
2962     dnl OS X special case (no GL/gl.h but OpenGL/gl.h)
2963     VLC_ADD_PLUGINS([opengl])
2964     VLC_ADD_LDFLAGS([opengl],[-framework OpenGL])
2965   fi
2966 fi
2967
2968 dnl
2969 dnl  SDL module
2970 dnl
2971 AC_ARG_ENABLE(sdl,
2972   [  --enable-sdl            SDL support (default enabled)])
2973 if test "${enable_sdl}" != "no"
2974 then
2975   SDL_PATH="${PATH}"
2976   AC_ARG_WITH(sdl-config-path,
2977     [    --with-sdl-config-path=PATH sdl-config path (default search in \$PATH)],
2978     [ if test "${with_sdl_config_path}" != "no"
2979       then
2980         SDL_PATH="${with_sdl_config_path}:${PATH}"
2981       fi ])
2982   AC_PATH_PROG(SDL12_CONFIG, sdl12-config, no, ${SDL_PATH})
2983   SDL_CONFIG="${SDL12_CONFIG}"
2984   SDL_HEADER="SDL12/SDL.h"
2985   SDL_IMAGE="SDL12/SDL_image.h"
2986   if test "${SDL_CONFIG}" = "no"
2987   then
2988     AC_PATH_PROG(SDL11_CONFIG, sdl11-config, no, ${SDL_PATH})
2989     SDL_CONFIG=${SDL11_CONFIG}
2990     SDL_HEADER="SDL11/SDL.h"
2991     SDL_IMAGE="SDL11/SDL_image.h"
2992   fi
2993   if test "${SDL_CONFIG}" = "no"
2994   then
2995     AC_PATH_PROG(SDL_CONFIG, sdl-config, no, ${SDL_PATH})
2996     SDL_HEADER="SDL/SDL.h"
2997     SDL_IMAGE="SDL/SDL_image.h"
2998   fi
2999   # check for cross-compiling
3000   SDL_PREFIX=
3001   AC_ARG_WITH(sdl-prefix,
3002     [    --with-sdl-prefix=PATH path to libsdl (needed for cross-compiling),
3003                                e.g use as:
3004                                --with-sdl-prefix=/usr/local/arm/2.95.3/arm-linux/usr)],[],[])
3005   if test "${with_sdl_prefix}" != "no" -a -n "${with_sdl_prefix}"
3006   then
3007     SDL_PREFIX="--prefix=${with_sdl_prefix}"
3008   fi
3009   if test "${SDL_CONFIG}" != "no"
3010   then
3011     # SDL on Darwin is heavily patched and can only run SDL_image
3012     if test "${SYS}" != "darwin" -a "${SYS}" != "mingw32"; then
3013       VLC_ADD_PLUGINS([vout_sdl aout_sdl])
3014     fi
3015     VLC_ADD_CFLAGS([vout_sdl aout_sdl sdl_image],[`${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`])
3016     VLC_ADD_LDFLAGS([vout_sdl aout_sdl sdl_image],[`${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'`])
3017     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}"
3018     AC_CHECK_HEADERS(${SDL_HEADER}, AC_DEFINE_UNQUOTED(SDL_INCLUDE_FILE,
3019       <${SDL_HEADER}>, Indicate whether we should use SDL/SDL.h or SDL11/SDL.h),
3020       [ AC_CHECK_HEADERS(SDL.h, AC_DEFINE(SDL_INCLUDE_FILE, <SDL.h>,
3021           As a last resort we also test for SDL.h presence),
3022       [ AC_MSG_ERROR([The development package for SDL is not installed.
3023 Please install it and try again. Alternatively you can also configure with
3024 --disable-sdl.])
3025       ])])
3026     AC_CHECK_HEADERS(${SDL_IMAGE}, [AC_DEFINE_UNQUOTED(SDL_IMAGE_INCLUDE_FILE,
3027       <${SDL_IMAGE}>, Indicate the path of SDL_image.h)
3028       VLC_ADD_PLUGINS([sdl_image])
3029       AC_CHECK_LIB(png, png_set_rows,
3030         [VLC_ADD_LDFLAGS([sdl_image],[-lpng -lz])],[],[-lz])
3031       AC_CHECK_LIB(jpeg, jpeg_start_decompress,
3032         [VLC_ADD_LDFLAGS([sdl_image],[-ljpeg])])
3033       AC_CHECK_LIB(tiff, TIFFClientOpen,
3034         [VLC_ADD_LDFLAGS([sdl_image],[-ltiff])])
3035       VLC_ADD_LDFLAGS([sdl_image], [-lSDL_image])],
3036       [ AC_CHECK_HEADERS(SDL_image.h, AC_DEFINE(SDL_IMAGE_INCLUDE_FILE, <SDL_image.h>,
3037           As a last resort we also test for SDL_image.h presence),
3038       [ AC_MSG_WARN([The development package for SDL_image is not installed.
3039 You should install it alongside your SDL package.])
3040       ])])
3041     CPPFLAGS="${CPPFLAGS_save}"
3042     if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null
3043     then
3044       AC_MSG_ERROR([The development package for SDL is not installed.
3045 Please install it and try again. Alternatively you can also configure with
3046 --disable-sdl.])
3047     fi
3048
3049   elif test "${enable_sdl}" =  "yes"
3050   then
3051     AC_MSG_ERROR([I couldn't find the SDL package. You can download libSDL
3052 from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
3053     ])
3054   fi
3055 fi
3056
3057 dnl
3058 dnl  freetype module
3059 dnl
3060 AC_ARG_ENABLE(freetype,
3061   [  --enable-freetype       freetype support (default enabled)])
3062 AC_ARG_ENABLE(fribidi,
3063   [  --enable-fribidi        fribidi support (default enabled)])
3064 if test "${enable_freetype}" != "no"
3065 then
3066   FREETYPE_PATH="${PATH}"
3067   AC_ARG_WITH(freetype-config-path,
3068     [    --with-freetype-config-path=PATH freetype-config path (default search in \$PATH)],
3069     [ if test "${with_freetype_config_path}" != "no"
3070       then
3071         FREETYPE_PATH="${with_freetype_config_path}:${PATH}"
3072       fi ])
3073   AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no, ${FREETYPE_PATH})
3074
3075   if test "${FREETYPE_CONFIG}" != "no"
3076   then
3077     VLC_ADD_PLUGINS([freetype])
3078     VLC_ADD_CFLAGS([freetype],[`${FREETYPE_CONFIG} --cflags`])
3079     VLC_ADD_LDFLAGS([freetype],[`${FREETYPE_CONFIG} --libs`])
3080     AC_CHECK_HEADERS(Carbon/Carbon.h,
3081       [VLC_ADD_LDFLAGS([freetype],[-framework Carbon])])
3082   elif test "${enable_freetype}" =  "yes"
3083   then
3084     AC_MSG_ERROR([I couldn't find the freetype package. You can download libfreetype2
3085 from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
3086     ])
3087   fi
3088
3089   dnl fribidi support
3090   if test "${enable_fribidi}" != "no"
3091   then
3092     FRIBIDI_PATH="${PATH}"
3093     AC_ARG_WITH(fribidi-config-path,
3094       [    --with-fribidi-config-path=PATH fribidi-config path (default search in \$PATH)],
3095       [ if test "${with_fribidi_config_path}" != "no"
3096         then
3097           FRIBIDI_PATH="${with_fribidi_config_path}:${PATH}"
3098         fi ])
3099     AC_PATH_PROG(FRIBIDI_CONFIG, fribidi-config, no, ${FRIBIDI_PATH})
3100
3101     if test "${FRIBIDI_CONFIG}" != "no"
3102     then
3103       VLC_ADD_CFLAGS([freetype], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
3104       VLC_ADD_CPPFLAGS([skins2], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
3105       VLC_ADD_LDFLAGS([freetype], [`${FRIBIDI_CONFIG} --libs`])
3106       VLC_ADD_LDFLAGS([skins2], [`${FRIBIDI_CONFIG} --libs`])
3107     fi
3108   fi
3109 fi
3110
3111 dnl
3112 dnl  libxml2 module
3113 dnl
3114 AC_ARG_ENABLE(libxml2,
3115   [  --enable-libxml2        libxml2 support (default enabled)])
3116 if test "${enable_libxml2}" != "no"
3117 then
3118   XML2_PATH="${PATH}"
3119   AC_ARG_WITH(xml2-config-path,
3120     [    --with-xml2-config-path=PATH xml2-config path (default search in \$PATH)],
3121     [ if test "${with_xml2_config_path}" != "no"; then
3122         XML2_PATH="${with_xml2_config_path}:${PATH}"
3123       fi ])
3124   AC_PATH_PROG(XML2_CONFIG, xml2-config, no, ${XML2_PATH})
3125   if test "${XML2_CONFIG}" != "no"; then
3126     VLC_ADD_CPPFLAGS([xml],[`${XML2_CONFIG} --cflags`])
3127     VLC_ADD_LDFLAGS([xml],[`${XML2_CONFIG} --libs`])
3128     dnl depends on the xmlTextReader extension
3129     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_xml}"
3130     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xml}"
3131     AC_CHECK_LIB(xml2,xmlTextReaderConstName,[
3132       AC_EGREP_HEADER(xmlTextReaderConstName,libxml/xmlreader.h,[
3133         VLC_ADD_PLUGINS([xml]) ],[
3134           AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
3135           if test "${enable_xml2}" = "yes"; then
3136             AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
3137           fi])
3138        ],[
3139       AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
3140       if test "${enable_xml2}" = "yes"; then
3141         AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
3142       fi])
3143     LDFLAGS="${LDFLAGS_save}"
3144     CPPFLAGS="${CPPFLAGS_save}"
3145   else
3146     if test "${enable_xml2}" = "yes"; then
3147       AC_MSG_ERROR([Could not find libxml2])
3148     fi
3149   fi
3150 fi
3151
3152 dnl
3153 dnl  SVG module
3154 dnl
3155 AC_ARG_ENABLE(svg,
3156   [  --enable-svg            SVG support (default disabled)])
3157 if test "${enable_svg}" == "yes"
3158 then
3159   PKG_CHECK_MODULES(SVG, 
3160         librsvg-2.0 >= 2.5.0,
3161         [
3162           VLC_ADD_LDFLAGS([svg],[$SVG_LIBS])
3163           VLC_ADD_CFLAGS([svg],[$SVG_CFLAGS])
3164           VLC_ADD_PLUGINS([svg]) ],
3165         [AC_MSG_WARN(SVG library not found)])
3166 fi
3167
3168 dnl
3169 dnl  Qt Embedded module
3170 dnl  (disabled by default)
3171 dnl
3172 AC_ARG_ENABLE(qte,
3173   [  --enable-qte            QT Embedded support (default disabled)])
3174 if test "${enable_qte}" = "yes"
3175 then
3176   AC_ARG_WITH(qte,
3177   [    --with-qte=PATH       Qt Embedded headers and libraries])
3178   if test "${with_qte}" != "no" -a -n "${with_qte}"
3179   then
3180     VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3181     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])
3182   else
3183     VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3184     VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti])
3185   fi
3186   VLC_ADD_PLUGINS([qte])
3187   NEED_QTE_MAIN=yes
3188   CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
3189   AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
3190     AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
3191   ] )
3192   CPPFLAGS="${CPPFLAGS_save}"
3193 fi
3194
3195 dnl
3196 dnl  Qt Video output module
3197 dnl  (disabled by default)
3198 dnl
3199 dnl AC_ARG_ENABLE(qt_video,
3200 dnl   [  --enable-qt_video            QT Video Output support (default disabled)])
3201 dnl if test "${enable_qt_video}" = "yes"
3202 dnl then
3203 dnl  VLC_ADD_PLUGINS([qt_video])
3204 dnl  VLC_ADD_LDFLAGS([qt_video],[-L${QTDIR}/lib])
3205 dnl  LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt_video}"
3206 dnl   AC_CHECK_LIB(qt-mt,main,[
3207 dnl    VLC_ADD_LDFLAGS([qt_video],[-lqt-mt])
3208 dnl  ],[
3209 dnl    AC_CHECK_LIB(qt,main,[
3210 dnl      VLC_ADD_LDFLAGS([qt_video],[-lqt])
3211 dnl    ])
3212 dnl  ])
3213 dnl  NEED_QTE_MAIN=yes
3214 dnl  LDFLAGS="${LDFLAGS_save}"
3215 dnl  VLC_ADD_CXXFLAGS([qt_video],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
3216 dnl fi
3217
3218 dnl
3219 dnl Roku HD1000 Video output module
3220 dnl
3221 AC_ARG_ENABLE(hd1000v,
3222   [  --enable-hd1000v        HD1000 Video Output module (default enabled on HD1000)])
3223 if test "${enable_hd1000v}" != "no" -a "${CXX}" != "" &&
3224   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3225    test "${enable_hd1000v}" = "yes"); then
3226   AC_LANG_PUSH([C++])
3227   AC_CHECK_HEADERS([cascade/graphics/CascadeScreen.h cascade/graphics/CascadeBitmap.h],
3228   [
3229     can_build_roku="yes"
3230   ],
3231   [
3232     can_build_roku="no"
3233     AC_MSG_WARN([Not building Roku HD1000 compatible video output])
3234   ])
3235   if test "$can_build_roku" = "yes"
3236   then
3237     VLC_ADD_PLUGINS([hd1000v])
3238     VLC_ADD_LDFLAGS([hd1000v],[-lCascade -ldvbpsi -lmad])
3239   fi
3240   AC_LANG_POP([C++])
3241 fi
3242
3243 dnl
3244 dnl  Windows DirectX module
3245 dnl
3246 AC_ARG_ENABLE(directx,
3247   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
3248 if test "${enable_directx}" != "no"
3249 then
3250   if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "cygwin"
3251   then
3252     AC_ARG_WITH(directx,
3253     [    --with-directx=PATH   Win32 DirectX headers])
3254     if test -z "${with_directx}"
3255     then
3256       AC_CHECK_HEADERS(ddraw.h,
3257       [ VLC_ADD_PLUGINS([vout_directx aout_directx])
3258         VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
3259         dnl to be moved when dependance is removed
3260         AC_CHECK_HEADERS(GL/gl.h, [
3261             VLC_ADD_PLUGINS([glwin32])
3262             VLC_ADD_LDFLAGS([glwin32],[-lopengl32 -lgdi32])
3263         ]) ])
3264     else
3265       AC_MSG_CHECKING(for directX headers in ${with_directx})
3266       if test -f ${with_directx}/ddraw.h
3267       then
3268         VLC_ADD_PLUGINS([vout_directx aout_directx])
3269         VLC_ADD_CPPFLAGS([vout_directx aout_directx],[-I${with_directx}])
3270         VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
3271         AC_MSG_RESULT(yes)
3272       else
3273         AC_MSG_RESULT(no)
3274         AC_MSG_ERROR([Cannot find ${with_directx}/ddraw.h!])
3275       fi
3276     fi
3277   fi
3278 fi
3279
3280 dnl
3281 dnl  Linux framebuffer module
3282 dnl
3283 AC_ARG_ENABLE(fb,
3284   [  --enable-fb             Linux framebuffer support (default enabled on Linux)])
3285     if test "${enable_fb}" != "no"
3286     then
3287       AC_CHECK_HEADERS(linux/fb.h, [
3288         VLC_ADD_PLUGINS([fb])
3289       ])
3290     fi
3291
3292 dnl
3293 dnl  Linux MGA module
3294 dnl
3295 AC_ARG_ENABLE(mga,
3296   [  --enable-mga            Linux kernel Matrox support (default disabled)],
3297   [ if test "${enable_mga}" = "yes"
3298     then
3299       VLC_ADD_PLUGINS([mga])
3300     fi ])
3301
3302 dnl
3303 dnl  SVGAlib module
3304 dnl
3305 AC_ARG_ENABLE(svgalib,
3306   [  --enable-svgalib        SVGAlib support (default disabled)])
3307 if test "${enable_svgalib}" = "yes"
3308 then
3309   VLC_ADD_PLUGINS([svgalib])
3310   VLC_ADD_LDFLAGS([svgalib],[-lvgagl -lvga])
3311 fi
3312
3313 dnl
3314 dnl  GGI module
3315 dnl
3316 AC_ARG_ENABLE(ggi,
3317   [  --enable-ggi            GGI support (default disabled)])
3318 if test "${enable_ggi}" = "yes"
3319 then
3320   VLC_ADD_PLUGINS([ggi])
3321   VLC_ADD_LDFLAGS([ggi],[-lggi])
3322   AC_ARG_WITH(ggi,
3323     [    --with-ggi=PATH       path to libggi],
3324     [ if test "${with_ggi}" != "no" -a -n "${with_ggi}"
3325       then
3326         VLC_ADD_CPPFLAGS([ggi],[-I${with_ggi}/include])
3327         VLC_ADD_LDFLAGS([ggi],[-L${with_ggi}/lib])
3328       fi ])
3329 fi
3330
3331 dnl
3332 dnl  Glide module
3333 dnl
3334 AC_ARG_ENABLE(glide,
3335   [  --enable-glide          Glide (3dfx) support (default disabled)])
3336 if test "${enable_glide}" = "yes"
3337 then
3338   VLC_ADD_PLUGINS([glide])
3339   VLC_ADD_LDFLAGS([glide],[-lglide2x -lm])
3340   VLC_ADD_CPPFLAGS([glide],[-I/usr/include/glide])
3341   AC_ARG_WITH(glide,
3342     [    --with-glide=PATH     path to libglide],
3343     [ if test "${with_glide}" != "no" -a -n "${with_glide}"
3344       then
3345         VLC_ADD_CPPFLAGS([glide],[-I${with_glide}/include])
3346         VLC_ADD_LDFLAGS([glide],[-L${with_glide}/lib])
3347       fi ])
3348 fi
3349
3350 dnl
3351 dnl  AA plugin
3352 dnl
3353 AC_ARG_ENABLE(aa,
3354   [  --enable-aa             aalib output (default disabled)])
3355 if test "${enable_aa}" = "yes"
3356 then
3357   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3358   if test "${have_aa}" = "true"
3359   then
3360     VLC_ADD_PLUGINS([aa])
3361     VLC_ADD_LDFLAGS([aa],[-laa])
3362   fi
3363 fi
3364
3365 dnl
3366 dnl  libcaca plugin
3367 dnl
3368 AC_ARG_ENABLE(caca,
3369   [  --enable-caca           libcaca output (default disabled)])
3370 if test "${enable_caca}" = "yes"
3371 then
3372   CACA_PATH="${PATH}"
3373   AC_ARG_WITH(caca-config-path,
3374     [    --with-caca-config-path=PATH caca-config path (default search in \$PATH)],
3375     [ if test "${with_caca_config_path}" != "no"
3376       then
3377         CACA_PATH="${with_caca_config_path}:${PATH}"
3378       fi ])
3379   AC_PATH_PROG(CACA_CONFIG, caca-config, no, ${CACA_PATH})
3380   if test "${CACA_CONFIG}" != "no"
3381   then
3382     VLC_ADD_PLUGINS([caca])
3383     VLC_ADD_CFLAGS([caca],[`${CACA_CONFIG} --cflags`])
3384     VLC_ADD_LDFLAGS([caca],[`${CACA_CONFIG} --plugin-libs`])
3385   fi
3386 fi
3387
3388 dnl
3389 dnl  win32 GDI plugin
3390 dnl
3391 AC_ARG_ENABLE(wingdi,
3392   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
3393 if test "${enable_wingdi}" != "no"; then
3394   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
3395     VLC_ADD_PLUGINS([wingdi])
3396     VLC_ADD_LDFLAGS([wingdi],[-lgdi32])
3397   fi
3398   if test "${SYS}" = "mingwce"; then
3399     VLC_ADD_PLUGINS([wingdi wingapi])
3400   fi
3401 fi
3402
3403 dnl
3404 dnl  Audio plugins
3405 dnl
3406
3407 AC_ARG_WITH(,[Audio plugins:])
3408
3409 dnl
3410 dnl  OSS /dev/dsp module (enabled by default except on win32)
3411 dnl
3412 AC_ARG_ENABLE(oss,
3413   [  --enable-oss            Linux OSS /dev/dsp support (enabled on Linux)])
3414
3415 if test "${enable_oss}" != "no" &&
3416   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3417    test "${enable_oss}" = "yes")
3418 then
3419   AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h, [
3420     VLC_ADD_PLUGINS([oss])
3421     AC_CHECK_LIB(ossaudio,main,VLC_ADD_LDFLAGS([oss],[-lossaudio]))
3422   ])
3423 fi
3424
3425 dnl
3426 dnl  Esound module
3427 dnl
3428 AC_ARG_ENABLE(esd,
3429   [  --enable-esd            Esound library support (default disabled)],
3430   [if test "${enable_esd}" = "yes"
3431    then
3432      AC_PATH_PROG(ESD_CONFIG, esd-config, no)
3433      if test "${ESD_CONFIG}" != "no"
3434      then
3435        VLC_ADD_PLUGINS([esd])
3436        VLC_ADD_CFLAGS([esd],[`${ESD_CONFIG} --cflags`])
3437        VLC_ADD_LDFLAGS([esd],[`${ESD_CONFIG} --libs`])
3438      fi
3439    fi])
3440
3441 dnl
3442 dnl  Portaudio module
3443 dnl
3444 AC_ARG_ENABLE(portaudio,
3445   [  --enable-portaudio      Portaudio library support (default disabled)],
3446   [if test "${enable_portaudio}" = "yes"
3447    then
3448      VLC_ADD_PLUGINS([portaudio])
3449      VLC_ADD_CXXFLAGS([portaudio],[])
3450      if test "${SYS}" = "mingw32"; then
3451         VLC_ADD_LDFLAGS([portaudio],[-lportaudio -lwinmm -lole32])
3452      else
3453         VLC_ADD_LDFLAGS([portaudio],[-lportaudio])
3454      fi
3455    fi])
3456
3457 dnl
3458 dnl  aRts module -- broken (freeze wxWidgets)
3459 dnl
3460 AC_ARG_ENABLE(arts,
3461  [  --enable-arts           aRts sound server (default disabled)],
3462  [if test "${enable_arts}" = "yes"
3463   then
3464     AC_PATH_PROG(ARTS_CONFIG, artsc-config, no)
3465     if test "${ARTS_CONFIG}" != "no"
3466     then
3467       VLC_ADD_PLUGINS([arts])
3468       VLC_ADD_CFLAGS([arts],[`${ARTS_CONFIG} --cflags`])
3469       VLC_ADD_LDFLAGS([arts],[`${ARTS_CONFIG} --libs `])
3470     fi
3471   fi])
3472
3473 dnl
3474 dnl  ALSA module
3475 dnl
3476 AC_ARG_ENABLE(alsa,
3477   [  --enable-alsa           ALSA sound support for Linux (default enabled)])
3478 if test "${enable_alsa}" != "no"
3479 then
3480   AC_CHECK_HEADER(alsa/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false")
3481   if test "${have_alsa}" = "true"
3482   then
3483     AC_TRY_COMPILE([#define ALSA_PCM_NEW_HW_PARAMS_API
3484                     #define ALSA_PCM_NEW_SW_PARAMS_API
3485                     #include <alsa/asoundlib.h>],
3486        [void foo() { snd_pcm_hw_params_get_period_time(0,0,0); }],
3487         AC_DEFINE(HAVE_ALSA_NEW_API, 1, Define if ALSA is at least rc4))
3488     VLC_ADD_PLUGINS([alsa])
3489     VLC_ADD_LDFLAGS([alsa],[-lasound -lm -ldl])
3490   else
3491     if test "${enable_alsa}" = "yes"; then
3492       AC_MSG_ERROR([Could not find ALSA development headers])
3493     fi
3494   fi
3495 fi
3496
3497 dnl
3498 dnl  win32 waveOut plugin
3499 dnl
3500 AC_ARG_ENABLE(waveout,
3501   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
3502 if test "${enable_waveout}" != "no"; then
3503   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
3504     VLC_ADD_PLUGINS([waveout])
3505     VLC_ADD_LDFLAGS([waveout],[-lwinmm])
3506   fi
3507   if test "${SYS}" = "mingwce"; then
3508     VLC_ADD_PLUGINS([waveout])
3509   fi
3510 fi
3511
3512 dnl
3513 dnl  CoreAudio plugin
3514 dnl
3515 AC_ARG_ENABLE(coreaudio,
3516   [  --enable-coreaudio      CoreAudio module (default enabled on MacOS X)])
3517 if test "${enable_coreaudio}" != "no" &&
3518   (test "${SYS}" = "darwin" || test "${enable_coreaudio}" = "yes")
3519 then
3520   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h, 
3521     [ VLC_ADD_BUILTINS([coreaudio auhal])
3522       VLC_ADD_LDFLAGS([coreaudio auhal],[-framework CoreAudio -framework AudioUnit -framework AudioToolbox])
3523     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
3524 fi
3525
3526 dnl
3527 dnl  Roku HD1000 audio
3528 dnl
3529 AC_ARG_ENABLE(hd1000a,
3530   [  --enable-hd1000a        HD1000 audio module (default enabled on HD1000)])
3531 if test "${enable_hd1000a}" != "no" -a "${CXX}" != "" &&
3532   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3533    test "${enable_hd1000a}" = "yes")
3534 then
3535   AC_LANG_PUSH([C++])
3536   AC_CHECK_HEADERS(deschutes/libraries/hdmachinex225/PCMAudioPlayer.h, [
3537     VLC_ADD_PLUGINS([hd1000a])
3538     AC_CHECK_LIB(HDMachineX225,main,VLC_ADD_LDFLAGS([hd1000a],[-lHDMachineX225]))  ])
3539   AC_LANG_POP([C++])
3540 fi
3541
3542 dnl
3543 dnl  CyberLink for C++ UPnP stack
3544 dnl
3545 AC_ARG_ENABLE(cyberlink,
3546   [  --enable-cyberlink      CyberLink for C++ UPnP stack (default disabled)])
3547 if test "${CXX}" != "" -a "${enable_cyberlink}" = "yes" || (test "${enable_cyberlink}" != "no"); then
3548   AC_ARG_WITH(cyberlink-tree,
3549     [    --with-cyberlink-tree=PATH CyberLink for C++ tree for static linking])
3550
3551   dnl
3552   dnl test for --with-cyberlink-tree
3553   dnl
3554   if test ! -z "${with_cyberlink_tree}" -a "${CXX}" != ""; then
3555     AC_LANG_PUSH(C++)
3556     real_cyberlink_tree="`cd ${with_cyberlink_tree} 2>/dev/null && pwd`"
3557     if test -z "${real_cyberlink_tree}"
3558     then
3559       dnl  The given directory can't be found
3560       AC_MSG_RESULT(no)
3561       AC_MSG_ERROR([cannot cd to ${with_cyberlink_tree}])
3562     fi
3563     CXXFLAGS_save="${CXXFLAGS}"
3564     CXXFLAGS_cyberlink="-I${real_cyberlink_tree}/include"
3565     CXXFLAGS="${CXXFLAGS} ${CXXFLAGS_cyberlink}"
3566     AC_CHECK_HEADERS([cybergarage/upnp/MediaServer.h],
3567       [ VLC_ADD_CXXFLAGS([upnp], [${CXXFLAGS_cyberlink}])
3568         VLC_ADD_PLUGINS([upnp]) 
3569       ],[
3570         AC_MSG_ERROR([cannot find CyberLink for C++ headers])
3571       ])
3572     AC_MSG_CHECKING(for libclink.a in ${with_cyberlink_tree})
3573     if test -f "${real_cyberlink_tree}/lib/unix/libclink.a"
3574     then
3575       AC_MSG_RESULT(${real_cyberlink_tree}/lib/unix/libclink.a)
3576       VLC_ADD_LDFLAGS([upnp], [${real_cyberlink_tree}/lib/unix/libclink.a -lexpat])
3577     else
3578       AC_MSG_RESULT(no)
3579        AC_MSG_ERROR([cannot find ${real_cyberlink_tree}/lib/unix/libclink.a, make sure you compiled CyberLink for C++ in ${with_cyberlink_tree}])
3580     fi
3581     CXXFLAGS="${CXXFLAGS_save}"
3582     AC_LANG_POP([C++])
3583   fi
3584 fi
3585
3586 dnl
3587 dnl  Interface plugins
3588 dnl
3589
3590 AC_ARG_WITH(,[Interface plugins:])
3591
3592 dnl special case for BeOS
3593 if test "${SYS}" = "beos"
3594 then
3595     VLC_ADD_BUILTINS([beos])
3596 fi
3597
3598 dnl
3599 dnl Skins2 module
3600 dnl
3601 AC_ARG_ENABLE(skins2,
3602   [  --enable-skins2         Skins2 interface module (experimental)])
3603 if test "${enable_skins2}" = "yes" ||
3604   (test "${SYS}" != "darwin" && test "${SYS}" != "beos" &&
3605    test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then
3606
3607   dnl test for the required libraries
3608   skins2_missing_lib="no"
3609
3610   dnl freetype
3611   if test "${FREETYPE_CONFIG}" != "no"; then
3612     VLC_ADD_CPPFLAGS([skins2],[`${FREETYPE_CONFIG} --cflags`])
3613     VLC_ADD_LDFLAGS([skins2],[`${FREETYPE_CONFIG} --libs`])
3614   else
3615     skins2_missing_lib="yes"
3616     if test "${enable_skins2}" = "yes"; then
3617       AC_MSG_ERROR([Could not find freetype (required for skins2)])
3618     fi
3619   fi
3620
3621   if test "${skins2_missing_lib}" = "no" && (test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"); then
3622     VLC_ADD_PLUGINS([skins2])
3623     ALIASES="${ALIASES} svlc"
3624     VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -Imodules/gui/skins2 -DWIN32_SKINS])
3625     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3626     VLC_ADD_LDFLAGS([skins2],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
3627
3628   else if test "${skins2_missing_lib}" = "no"; then
3629     VLC_ADD_PLUGINS([skins2])
3630     ALIASES="${ALIASES} svlc"
3631     VLC_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 -I${x_includes} -DX11_SKINS])
3632     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3633     VLC_ADD_LDFLAGS([skins2],[-L${x_libraries} -lXext -lX11])
3634   fi fi
3635 fi
3636
3637
3638 dnl dnl
3639 dnl dnl  Gtk+ module
3640 dnl dnl
3641 dnl AC_ARG_ENABLE(gtk,
3642 dnl   [  --enable-gtk            Gtk+ support (default enabled)])
3643 dnl if test "${enable_gtk}" != "no"
3644 dnl then
3645 dnl   GTK_PATH="${PATH}"
3646 dnl   AC_ARG_WITH(gtk-config-path,
3647 dnl     [    --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)],
3648 dnl     [ if test "${with_gtk_config_path}" != "no"
3649 dnl       then
3650 dnl         GTK_PATH="${with_gtk_config_path}:${PATH}"
3651 dnl       fi ])
3652 dnl   # look for gtk-config
3653 dnl   AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH})
3654 dnl   GTK_CONFIG=${GTK12_CONFIG}
3655 dnl   if test "${GTK_CONFIG}" = "no"
3656 dnl   then
3657 dnl     AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH})
3658 dnl   fi
3659 dnl   if test "${GTK_CONFIG}" != "no"
3660 dnl   then
3661 dnl     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
3662 dnl     then
3663 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.])
3664 dnl     fi
3665 dnl     if test "${SYS}" != "mingw32"; then
3666 dnl       VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk gthread`])
3667 dnl       VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`])
3668 dnl     else
3669 dnl       VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk`])
3670 dnl       VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`])
3671 dnl     fi
3672 dnl     # now look for the gtk.h header
3673 dnl     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gtk}"
3674 dnl     ac_cv_gtk_headers=yes
3675 dnl     AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [
3676 dnl       ac_cv_gtk_headers=no
3677 dnl       echo "Cannot find gtk development headers."
3678 dnl     ])
3679 dnl     if test "${ac_cv_gtk_headers}" = "yes"
3680 dnl     then
3681 dnl       VLC_ADD_PLUGINS([gtk])
3682 dnl       if test "${SYS}" != "mingw32"; then
3683 dnl         NEED_GTK_MAIN=yes
3684 dnl       fi
3685 dnl       ALIASES="${ALIASES} gvlc"
3686 dnl     fi
3687 dnl     CPPFLAGS="${CPPFLAGS_save}"
3688 dnl   fi
3689 dnl fi
3690 dnl 
3691 dnl
3692 dnl  Gtk+2 module ! Disabled for now as it is unusable and confuses users
3693 dnl
3694 dnl AC_ARG_ENABLE(gtk2,
3695 dnl   [  --enable-gtk2           Gtk2 support (default disabled)])
3696 dnl if test "${enable_gtk2}" = "yes"
3697 dnl then
3698 dnl   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
3699 dnl   VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
3700 dnl   VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
3701 dnl   VLC_ADD_PLUGINS([gtk2])
3702 dnl   if test "${SYS}" != "mingw32"; then
3703 dnl     NEED_GTK2_MAIN=yes
3704 dnl   fi
3705 dnl fi
3706
3707 dnl
3708 dnl  PDA Gtk+2 module
3709 dnl
3710 AC_ARG_ENABLE(pda,
3711   [  --enable-pda            PDA interface needs Gtk2 support (default disabled)])
3712 if test "${enable_pda}" = "yes"
3713 then
3714   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
3715   VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
3716   VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
3717   VLC_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}])
3718   VLC_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}])
3719   VLC_ADD_PLUGINS([pda])
3720   if test "${SYS}" != "mingw32"; then
3721     NEED_GTK2_MAIN=yes
3722   fi
3723 fi
3724
3725 dnl dnl
3726 dnl dnl  Gnome module
3727 dnl dnl
3728 dnl AC_ARG_ENABLE(gnome,
3729 dnl   [  --enable-gnome          Gnome interface support (default disabled)],
3730 dnl   [if test "${enable_gnome}" = "yes"; then
3731 dnl     # look for gnome-config
3732 dnl     AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
3733 dnl     if test -x ${GNOME_CONFIG}
3734 dnl     then
3735 dnl        VLC_ADD_CFLAGS([gnome],[`${GNOME_CONFIG} --cflags gtk gnomeui`])
3736 dnl        VLC_ADD_LDFLAGS([gnome],[`${GNOME_CONFIG} --libs gnomeui | sed 's,-rdynamic,,'`])
3737 dnl     fi
3738 dnl     # now look for the gnome.h header
3739 dnl     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gnome}"
3740 dnl     AC_CHECK_HEADERS(gnome.h, [
3741 dnl       VLC_ADD_PLUGINS([gnome])
3742 dnl       NEED_GTK_MAIN=yes
3743 dnl       NEED_GNOME_MAIN=yes
3744 dnl       ALIASES="${ALIASES} gnome-vlc"
3745 dnl       dnl We need this because of some moronic gnomesupport.h flavours
3746 dnl       AC_MSG_CHECKING(for strndup in gnome.h)
3747 dnl       AC_EGREP_HEADER(strndup,gnome.h,[
3748 dnl         AC_MSG_RESULT(yes)
3749 dnl         AC_DEFINE(STRNDUP_IN_GNOME_H, 1,
3750 dnl                   Define if <gnome.h> defines strndup.)],[
3751 dnl         AC_MSG_RESULT(no)])
3752 dnl      ],[
3753 dnl       AC_MSG_ERROR([Can't find gnome headers. Please install the gnome
3754 dnl developement tools or remove the --enable-gnome option])
3755 dnl      ])
3756 dnl     CPPFLAGS="${CPPFLAGS_save}"
3757 dnl   fi])
3758
3759 dnl
3760 dnl  Gnome2 module ! Disabled for know as it is unuseable and confuses users
3761 dnl
3762 dnl AC_ARG_ENABLE(gnome2,
3763 dnl   [  --enable-gnome2         Gnome2 support (default disabled)])
3764 dnl if test "${enable_gnome2}" = "yes"
3765 dnl then
3766 dnl   PKG_CHECK_MODULES(GNOME2, [libgnomeui-2.0])
3767 dnl   VLC_ADD_CFLAGS([gnome2],[${GNOME2_CFLAGS}])
3768 dnl   VLC_ADD_LDFLAGS([gnome2],[${GNOME2_LIBS}])
3769 dnl   VLC_ADD_PLUGINS([gnome2])
3770 dnl   if test "${SYS}" != "mingw32"; then
3771 dnl     NEED_GNOME2_MAIN=yes
3772 dnl   fi
3773 dnl fi
3774
3775 dnl
3776 dnl  wxWidgets module
3777 dnl
3778 AC_ARG_ENABLE(wxwidgets,
3779   [  --enable-wxwidgets      wxWidgets support (default enabled)])
3780 if test "${enable_wxwindows}" 
3781 then
3782   AC_MSG_WARN(--{en|dis}able-wxwindows is deprecated. Use --{en|dis}able-wxwidgets instead.)
3783 fi
3784
3785 if test "${enable_wxwindows}" = "no"
3786 then
3787   enable_wxwidgets="no"
3788 fi
3789 if test "${enable_wxwidgets}" != "no"
3790 then
3791   WXWIDGETS_PATH="${PATH}"
3792   AC_ARG_WITH(wx-config-path,
3793     [    --with-wx-config-path=PATH wx-config path (default search in \$PATH)],
3794     [ if test "${with_wx_config_path}" != "no"
3795       then
3796         WXWIDGETS_PATH="${with_wx_config_path}:${PATH}"
3797       fi ])
3798   WXWIDGETS_NAME="wx-config"
3799   AC_ARG_WITH(wx-config,
3800     [    --with-wx-config=NAME      wx-config name (default is wx-config)],
3801     [ if test "${with_wx_config}" != "no"
3802       then
3803         WXWIDGETS_NAME="${with_wx_config}"
3804       fi ])
3805   # look for wx-config
3806   AC_PATH_PROG(WX_CONFIG, ${WXWIDGETS_NAME}, no, ${WXWIDGETS_PATH})
3807   if test "${WX_CONFIG}" != "no" -a "${CXX}" != ""
3808   then
3809     if expr 2.3.0 \> `${WX_CONFIG} --version` >/dev/null
3810     then
3811       AC_MSG_ERROR([Your development package for wxWidgets is too old, you need at least version 2.3.0. Please upgrade and try again. Alternatively you can also configure with --disable-wxwidgets.])
3812     fi
3813     AC_LANG_PUSH(C++)
3814     # Turn this error:
3815     #   playlist.cpp:1351: error: ISO C++ forbids cast to non-reference type
3816     # into a warning. However better would be to fix playlist.cpp
3817     AC_CACHE_CHECK([if \$CXX accepts -fpermissive],
3818         [ac_cv_cxx_fpermissive],
3819         [CXXFLAGS="${CXXFLAGS_save} -fpermissive"
3820          AC_TRY_COMPILE([],,ac_cv_cxx_fpermissive=yes,
3821                         ac_cv_cxx_fpermissive=no)])
3822     if test "${ac_cv_cxx_fpermissive}" = "yes"; then
3823       VLC_ADD_CXXFLAGS([wxwidgets],-fpermissive)
3824     fi
3825     VLC_ADD_LDFLAGS([wxwidgets],[`${WX_CONFIG} --libs`])
3826     VLC_ADD_CXXFLAGS([wxwidgets],[`${WX_CONFIG} --cxxflags`])
3827     if test "$have_libcdio" = "yes"
3828     then 
3829       VLC_ADD_LDFLAGS([wxwidgets],[$LIBCDIO_LIBS])
3830       VLC_ADD_CXXFLAGS([wxwidgets],[$LIBCDIO_CFLAGS])
3831     else 
3832       AC_MSG_WARN([Probe disc disabled because ok libcdio library not found])
3833     fi
3834
3835     if test "$have_libvcdinfo" = "yes"
3836     then 
3837       VLC_ADD_LDFLAGS([wxwidgets],[$VCDINFO_LIBS])
3838       VLC_ADD_CXXFLAGS([wxwidgets],[$VCDINFO_CFLAGS])
3839     else 
3840       AC_MSG_WARN([VCD information on Probe disc disabled because ok libvcdinfo not found])
3841     fi
3842
3843     # now look for the wxprec.h header
3844     CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_wxwidgets}"
3845     ac_cv_wx_headers=yes
3846     AC_CHECK_HEADERS(wx/wxprec.h, , [
3847       ac_cv_wx_headers=no
3848       echo "Cannot find wxWidgets development headers."
3849     ])
3850     if test "${ac_cv_wx_headers}" = "yes"
3851     then
3852       VLC_ADD_PLUGINS([wxwidgets])
3853       ALIASES="${ALIASES} wxvlc"
3854     fi
3855     CPPFLAGS="${CPPFLAGS_save}"
3856     AC_LANG_POP(C++)
3857   fi
3858 fi
3859
3860 dnl
3861 dnl  WinCE GUI module
3862 dnl
3863 if test "${SYS}" = "mingwce"; then
3864   VLC_ADD_BUILTINS([wince])
3865   VLC_ADD_CXXFLAGS([wince],[])
3866   VLC_ADD_LDFLAGS([wince],[-lcommctrl -lcommdlg -laygshell])
3867   dnl Gross hack
3868   VLC_ADD_LDFLAGS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
3869 elif test "${SYS}" = "mingw32"; then
3870   VLC_ADD_CXXFLAGS([wince],[])
3871   VLC_ADD_LDFLAGS([wince],[-lcomctl32 -lcomdlg32 -lgdi32 -lole32])
3872   dnl Gross hack
3873   VLC_ADD_LDFLAGS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
3874 fi
3875
3876 dnl
3877 dnl Simple test for skins2 dependency
3878 dnl
3879 if test "${enable_skins2}" != "no"
3880 then
3881   if test "${WX_CONFIG}" = "no"
3882   then
3883     AC_MSG_ERROR([The skins2 module depends on the wxWidgets development package. Without it you won't be able to open any dialog box from the interface, which makes the skins2 interface rather useless. Install the wxWidgets development package or alternatively you can also configure with: --disable-wxwidgets --disable-skins2.])
3884   fi
3885 fi
3886
3887 dnl dnl
3888 dnl dnl  Qt module
3889 dnl dnl
3890 dnl AC_ARG_ENABLE(qt,
3891 dnl   [  --enable-qt             Qt interface support (default disabled)],
3892 dnl   [if test "${enable_qt}" = "yes"; then
3893 dnl      VLC_ADD_PLUGINS([qt])
3894 dnl      ALIASES="${ALIASES} qvlc"
3895 dnl      VLC_ADD_LDFLAGS([qt],[-L${QTDIR}/lib])
3896 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt}"
3897 dnl      AC_CHECK_LIB(qt-mt,main,[
3898 dnl        VLC_ADD_LDFLAGS([qt],[-lqt-mt])
3899 dnl      ],[
3900 dnl        AC_CHECK_LIB(qt,main,[
3901 dnl          VLC_ADD_LDFLAGS([qt],[-lqt])
3902 dnl        ])
3903 dnl      ])
3904 dnl      LDFLAGS="${LDFLAGS_save}"
3905 dnl      VLC_ADD_CXXFLAGS([qt],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
3906 dnl      if test -x ${QTDIR}/bin/moc
3907 dnl      then
3908 dnl        MOC=${QTDIR}/bin/moc
3909 dnl      else
3910 dnl        MOC=moc
3911 dnl      fi
3912 dnl    fi])
3913 dnl 
3914 dnl dnl
3915 dnl dnl  KDE module
3916 dnl dnl
3917 dnl AC_ARG_ENABLE(kde,
3918 dnl   [  --enable-kde            KDE interface support (default disabled)],
3919 dnl   [if test "${enable_kde}" = "yes"; then
3920 dnl      VLC_ADD_PLUGINS([kde])
3921 dnl      ALIASES="${ALIASES} kvlc"
3922 dnl      VLC_ADD_LDFLAGS([kde],[-L${KDEDIR}/lib])
3923 dnl      dnl Check for -lkfile (only in KDE 2) or -lkdeui -lkio (KDE 3)
3924 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3925 dnl      AC_CHECK_LIB(kfile,main,[
3926 dnl        VLC_ADD_LDFLAGS([kde],[-lkfile])
3927 dnl      ])
3928 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3929 dnl      AC_CHECK_LIB(kdeui,main,[
3930 dnl        VLC_ADD_LDFLAGS([kde],[-lkdeui])
3931 dnl      ])
3932 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3933 dnl      AC_CHECK_LIB(kio,main,[
3934 dnl        VLC_ADD_LDFLAGS([kde],[-lkio])
3935 dnl      ])
3936 dnl      LDFLAGS="${LDFLAGS_save}"
3937 dnl      VLC_ADD_CXXFLAGS([kde],[-I/usr/include/kde -I/usr/include/qt3 -I/usr/include/qt])
3938 dnl      VLC_ADD_CXXFLAGS([kde],[-I${KDEDIR}/include -I${QTDIR}/include])
3939 dnl      if test -x ${QTDIR}/bin/moc
3940 dnl      then
3941 dnl        MOC=${QTDIR}/bin/moc
3942 dnl      else
3943 dnl        MOC=moc
3944 dnl      fi
3945 dnl    fi])
3946
3947 dnl
3948 dnl  Opie QT embedded module
3949 dnl
3950 AC_ARG_ENABLE(opie,
3951   [  --enable-opie           Qt embedded interface support (default disabled)],
3952   [if test "${enable_opie}" = "yes"; then
3953      AC_ARG_WITH(qte,
3954      [    --with-qte=PATH       Qt Embedded headers and libraries])
3955      if test "${with_qte}" != "no" -a -n "${with_qte}"
3956      then
3957        VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3958        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])
3959      else
3960        VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'`])
3961        VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'`])
3962      fi
3963      CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
3964      AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
3965        AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
3966      ] )
3967      CPPFLAGS="${CPPFLAGS_save}"
3968
3969      VLC_ADD_PLUGINS([opie])
3970      NEED_QTE_MAIN=yes
3971      VLC_ADD_LDFLAGS([opie],[-lqpe ${LDFLAGS_qte}])
3972      VLC_ADD_CXXFLAGS([opie],[${CXXFLAGS_qte}])
3973      if test "${with_qte}" != "no" -a -n "${with_qte}"
3974      then
3975        MOC=${with_qte}/bin/moc
3976      else
3977        MOC=${QTDIR}/bin/moc
3978      fi
3979    fi])
3980
3981 dnl
3982 dnl  MacOS X module
3983 dnl
3984 AC_ARG_ENABLE(macosx,
3985   [  --enable-macosx         MacOS X support (default enabled on MacOS X)],
3986   [if test "${enable_macosx}" = "yes"
3987    then
3988      VLC_ADD_BUILTINS([macosx])
3989      VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
3990    fi],
3991   [AC_CHECK_HEADERS(Cocoa/Cocoa.h,
3992      VLC_ADD_BUILTINS([macosx])
3993      VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
3994    )])
3995
3996 dnl
3997 dnl  QNX RTOS module
3998 dnl
3999 AC_ARG_ENABLE(qnx,
4000   [  --enable-qnx            QNX RTOS support (default enabled on QNX RTOS)])
4001     if test "${enable_qnx}" != "no"
4002     then
4003       AC_CHECK_HEADERS(Ph.h, [
4004         VLC_ADD_PLUGINS([qnx])
4005         VLC_ADD_LDFLAGS([qnx],[-lasound -lph])
4006       ])
4007     fi
4008
4009 dnl
4010 dnl  ncurses module
4011 dnl
4012 AC_ARG_ENABLE(ncurses,
4013   [  --enable-ncurses        ncurses interface support (default disabled)],
4014   [if test "${enable_ncurses}" = "yes"; then
4015      VLC_ADD_PLUGINS([ncurses])
4016      VLC_ADD_LDFLAGS([ncurses],[-lncurses])
4017    fi])
4018
4019 dnl
4020 dnl  XOSD plugin
4021 dnl
4022 AC_ARG_ENABLE(xosd,
4023   [  --enable-xosd           xosd interface support (default disabled)])
4024 if test "${enable_xosd}" = "yes"
4025 then
4026   AC_CHECK_HEADER(xosd.h, have_xosd="true", have_xosd="false")
4027   AC_CHECK_LIB(xosd,xosd_set_offset,
4028       AC_DEFINE(HAVE_XOSD_VERSION_1, 1, Define if <xosd.h> is 1.0.x),
4029     AC_CHECK_LIB(xosd,xosd_set_horizontal_offset,
4030         AC_DEFINE(HAVE_XOSD_VERSION_2, 1, Define if <xosd.h> is 2.0.x),
4031       AC_TRY_COMPILE([#include <xosd.h>],
4032          [void foo() { xosd_init("foo","bar",12,XOSD_top,2,12,42); }],,
4033           AC_DEFINE(HAVE_XOSD_VERSION_0, 1, Define if <xosd.h> is pre-1.0.0))))
4034   if test "${have_xosd}" = "true"
4035   then
4036     VLC_ADD_PLUGINS([xosd])
4037     VLC_ADD_LDFLAGS([xosd],[-lxosd])
4038   fi
4039 fi
4040
4041 dnl
4042 dnl Visualisation plugin
4043 dnl
4044 AC_ARG_ENABLE(visual,
4045   [  --enable-visual         visualisation plugin (default enabled)])
4046 if test "${enable_visual}" != "no"
4047 then
4048     VLC_ADD_PLUGINS([visual])
4049 fi
4050
4051 dnl
4052 dnl OpenGL visualisation plugin
4053 dnl
4054 AC_ARG_ENABLE(galaktos,
4055   [  --enable-galaktos       OpenGL visualisation plugin (default disabled)])
4056 if test "${enable_galaktos}" = "yes"
4057 then
4058   AC_CHECK_HEADERS(GL/gl.h, [
4059     VLC_ADD_PLUGINS([galaktos])
4060     if test "${SYS}" != "mingw32"; then
4061       VLC_ADD_LDFLAGS([galaktos],[-L${x_libraries} -lGL -lGLU])
4062     else
4063       VLC_ADD_LDFLAGS([galaktos],[-lopengl32])
4064     fi
4065   ])
4066 fi
4067
4068 dnl
4069 dnl  goom visualization plugin
4070 dnl
4071 AC_ARG_ENABLE(goom,
4072 [  --enable-goom           goom visualisation plugin (default disabled)])
4073 if test "${enable_goom}" = "yes"
4074 then
4075   AC_ARG_WITH(goom-tree,
4076     [    --with-goom-tree=PATH goom tree for static linking (required)])
4077
4078   dnl
4079   dnl test for --with-goom-tree
4080   dnl
4081   if test "${with_goom_tree}" != "no" -a -n "${with_goom_tree}"; then
4082     AC_MSG_CHECKING(for libgoom2.a in ${with_goom_tree})
4083     real_goom_tree="`cd ${with_goom_tree} 2>/dev/null && pwd`"
4084     if test -z "${real_goom_tree}"; then
4085       dnl  The given directory can't be found
4086       AC_MSG_RESULT(no)
4087       AC_MSG_ERROR([cannot cd to ${with_goom_tree}])
4088     fi
4089     if test -f "${real_goom_tree}/src/.libs/libgoom2.a"; then
4090       AC_MSG_RESULT(${real_goom_tree}/src/.libs/libgoom2.a)
4091       VLC_ADD_BUILTINS([goom])
4092       VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree}/src/.libs -lgoom2])
4093       VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree}/src -DUSE_GOOM_TREE])
4094     else
4095       dnl  The given libgoom2 wasn't built, try to look for the old goom
4096       AC_MSG_RESULT(no)
4097       AC_MSG_CHECKING(for libgoom.a in ${with_goom_tree})
4098       if test -f "${real_goom_tree}/libgoom.a"; then
4099         AC_MSG_RESULT(${real_goom_tree}/libgoom.a)
4100         VLC_ADD_BUILTINS([goom])
4101         VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree} -lgoom])
4102         VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree} -DUSE_GOOM_TREE -DOLD_GOOM])
4103       else
4104         dnl  The given libgoom wasn't built
4105         AC_MSG_RESULT(no)
4106         AC_MSG_ERROR([cannot find ${real_goom_tree}/src/.libs/libgoom2.a, make sure you compiled goom in ${with_goom_tree}])
4107       fi
4108     fi
4109   else
4110     AC_CHECK_HEADERS(goom/goom.h, [
4111       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_goom}"
4112       AC_CHECK_LIB(goom2, goom_init, [
4113         VLC_ADD_PLUGINS([goom])
4114         VLC_ADD_LDFLAGS([goom],[-lgoom2])
4115       ],[
4116         AC_MSG_ERROR([Could not find goom on your system: you may get it from http://www.ios-software.com/.])
4117       ])
4118       LDFLAGS="${LDFLAGS_save}"
4119     ])
4120   fi
4121 fi
4122
4123 dnl
4124 dnl  SLP access plugin
4125 dnl
4126 AC_ARG_ENABLE(slp,
4127   [  --enable-slp            SLP service discovery support (default disabled)])
4128 if test "${enable_slp}" = "yes"
4129 then
4130   AC_ARG_WITH(slp,
4131   [    --with-slp=PATH       libslp headers and libraries])
4132   if test -z "${with_slp}"
4133   then
4134     AC_CHECK_HEADERS(slp.h, have_slp="true", have_slp="false")
4135     if test "${have_slp}" = "true"
4136     then
4137       VLC_ADD_PLUGINS([slp])
4138       VLC_ADD_LDFLAGS([slp],[-lslp])
4139       VLC_ADD_LDFLAGS([stream_out_standard],[-lslp])
4140     fi
4141   else
4142     AC_MSG_CHECKING(for slp headers in ${with_slp})
4143     if test -f ${with_slp}/slp.h
4144     then
4145       dnl  Use ${with_slp}/libslp/slp.h
4146       AC_MSG_RESULT(yes)
4147       VLC_ADD_PLUGINS([slp])
4148       VLC_ADD_LDFLAGS([slp],[-L${with_slp} -lslp])
4149       VLC_ADD_LDFLAGS([stream_out_standard],[-L${with_slp} -lslp])
4150       VLC_ADD_CPPFLAGS([slp],[-I${with_slp}])
4151       AC_DEFINE(HAVE_SLP_H)
4152     else
4153       dnl  No libslp could be found, sorry
4154       AC_MSG_RESULT(no)
4155       AC_MSG_ERROR([cannot find ${with_slp}/slp.h])
4156     fi
4157   fi
4158 fi
4159
4160 dnl
4161 dnl DAAP access plugin and services discovery 
4162 dnl
4163 AC_ARG_ENABLE(daap,
4164   [  --enable-daap                DAAP shares services discovery support (default enabled)])
4165 if test "$enable_daap" != "no"
4166 then
4167    PKG_CHECK_MODULES(DAAP, opendaap >= 0.3.0,
4168       [ VLC_ADD_PLUGINS([daap])
4169        VLC_ADD_LDFLAGS([daap],[$DAAP_LIBS])
4170        VLC_ADD_CFLAGS([daap],[$DAAP_CFLAGS])]:,
4171       [AC_MSG_WARN(DAAP library not found)])
4172 fi
4173
4174 dnl
4175 dnl  Bonjour services discovery
4176 dnl
4177 AC_ARG_ENABLE(bonjour,
4178   [  --enable-bonjour        Bonjour services discovery (default enabled)])
4179 if test "${enable_bonjour}" != "no"
4180 then
4181   PKG_CHECK_MODULES(BONJOUR, avahi-client >= 0.3,
4182     [AC_DEFINE(HAVE_AVAHI_CLIENT, [], [Define if you have the avahi-client library])
4183       VLC_ADD_LDFLAGS([bonjour access_output_http],[$BONJOUR_LIBS])
4184       VLC_ADD_CFLAGS([bonjour access_output_http],[$BONJOUR_CFLAGS])
4185       VLC_ADD_PLUGINS([bonjour]) ],
4186     [AC_MSG_WARN(avahi-client library not found)])
4187 fi
4188
4189 dnl
4190 dnl  Lirc plugin
4191 dnl
4192 AC_ARG_ENABLE(lirc,
4193   [  --enable-lirc           lirc support (default disabled)])
4194 if test "${enable_lirc}" = "yes"
4195 then
4196   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
4197   if test "${have_lirc}" = "true"
4198   then
4199     VLC_ADD_PLUGINS([lirc])
4200     VLC_ADD_LDFLAGS([lirc],[-llirc_client])
4201   fi
4202 fi
4203
4204 dnl 
4205 dnl  Joystick plugin
4206 dnl
4207 AC_ARG_ENABLE(joystick,
4208   [  --enable-joystick       joystick control (default enabled)])
4209 if test "${enable_joystick}" = "yes"; then
4210   AC_CHECK_HEADER(linux/joystick.h, [VLC_ADD_PLUGINS([joystick])])
4211 fi
4212
4213 dnl
4214 dnl corba (ORBit) plugin
4215 dnl
4216 dnl Default: do not enable corba
4217 enablecorba=false
4218 AC_ARG_ENABLE(corba,
4219   [  --enable-corba          corba interface support (default disabled)])
4220 if test "${enable_corba}" = "yes"; then
4221       GLIB_VERSION=2.3.2
4222       PKG_CHECK_MODULES(CORBA, 
4223         ORBit-2.0 >= 2.8.0 \
4224         glib-2.0 >= $GLIB_VERSION \
4225         gobject-2.0 >= $GLIB_VERSION \
4226         gthread-2.0 >= $GLIB_VERSION,
4227         [
4228           enablecorba=true
4229           VLC_ADD_LDFLAGS([corba],[$CORBA_LIBS])
4230           VLC_ADD_CFLAGS([corba],[$CORBA_CFLAGS])
4231           VLC_ADD_PLUGINS([corba snapshot]) ],
4232         [ enablecorba=false
4233           AC_MSG_WARN(corba library not found) ])
4234 fi
4235 AM_CONDITIONAL(ENABLE_CORBA, test "$enablecorba" = "true")
4236
4237 AC_ARG_WITH(,[Misc options:])
4238
4239 dnl
4240 dnl  Endianness check, AC_C_BIGENDIAN doesn't work if we are cross-compiling
4241 dnl
4242 dnl  We give the user the opportunity to specify
4243 dnl  --with-words=big or --with-words=little ; otherwise, try to guess
4244 dnl
4245 AC_ARG_WITH(words,
4246   [    --with-words=endianness set endianness (big or little)])
4247   case "${with_words}" in
4248     big)
4249       ac_cv_c_bigendian=yes
4250       ;;
4251     little)
4252       ac_cv_c_bigendian=no
4253       ;;
4254     *)
4255       dnl  Try to guess endianness by matching patterns on a compiled
4256       dnl  binary, by looking for an ASCII or EBCDIC string
4257       AC_CACHE_CHECK([whether the byte order is big-endian],
4258         [ac_cv_c_bigendian],
4259         [ac_cv_c_bigendian="unknown"
4260         [cat >conftest.c <<EOF
4261         short am[] = { 0x4249, 0x4765, 0x6e44, 0x6961, 0x6e53, 0x7953, 0 };
4262         short ai[] = { 0x694c, 0x5454, 0x656c, 0x6e45, 0x6944, 0x6e61, 0 };
4263         void _a(void) { char*s = (char*)am; s = (char *)ai; }
4264         short ei[] = { 0x89D3, 0xe3e3, 0x8593, 0x95c5, 0x89c4, 0x9581, 0 };
4265         short em[] = { 0xc2c9, 0xc785, 0x95c4, 0x8981, 0x95e2, 0xa8e2, 0 };
4266         void _e(void) { char*s = (char*)em; s = (char*)ei; }
4267         int main(void) { _a(); _e(); return 0; }
4268 EOF
4269         ]
4270         if test -f conftest.c
4271         then
4272           if ${CC-cc} -c conftest.c -o conftest.o >>config.log 2>&1 \
4273               && test -f conftest.o
4274           then
4275             if test "`strings conftest.o | grep BIGenDianSyS`"
4276             then
4277               ac_cv_c_bigendian="yes"
4278             fi
4279             if test "`strings conftest.o | grep LiTTleEnDian`"
4280             then
4281               ac_cv_c_bigendian="no"
4282             fi
4283           fi
4284         fi
4285       ])
4286       if test "${ac_cv_c_bigendian}" = "unknown"
4287       then
4288         AC_MSG_ERROR([Could not guess endianness, please use --with-words])
4289       fi
4290       ;;
4291   esac
4292 dnl  Now we know what to use for endianness, just put it in the header
4293 if test "${ac_cv_c_bigendian}" = "yes"
4294 then
4295   AC_DEFINE(WORDS_BIGENDIAN, 1, big endian system)
4296 fi
4297
4298 dnl
4299 dnl  DLL loader copied from MPlayer copied from somewhere else (WINE ?)
4300 dnl
4301 loader=false
4302 AC_ARG_ENABLE(loader,
4303   [  --enable-loader         build DLL loader for ELF i386 platforms (default disabled)])
4304 AM_CONDITIONAL(LOADER, [test "${enable_loader}" = "yes"])
4305 AS_IF([test "${enable_loader}" = "yes"],
4306   [ VLC_ADD_PLUGINS([dmo quicktime])
4307     VLC_ADD_CPPFLAGS([dmo],[-I../../../@top_srcdir@/loader])
4308     VLC_ADD_LDFLAGS([dmo],[../../../loader/libloader.a])
4309     VLC_ADD_CPPFLAGS([quicktime],[-I../../@top_srcdir@/loader])
4310     VLC_ADD_LDFLAGS([quicktime],[../../loader/libloader.a])
4311   ])
4312
4313 dnl
4314 dnl  Microsoft ActiveX support
4315 dnl
4316 activex=false
4317 AC_ARG_ENABLE(activex,
4318   [  --enable-activex        build a vlc-based ActiveX control (default enabled on Win32)])
4319 if test "${enable_activex}" != "no"
4320 then
4321   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
4322   then
4323     AC_CHECK_PROGS(MIDL, [midl widl], no)
4324     AC_CHECK_HEADERS(ole2.h olectl.h,
4325       [ VLC_ADD_CXXFLAGS([activex],[-fno-exceptions])
4326         VLC_ADD_LDFLAGS([activex],[-lole32 -loleaut32 -luuid -lshlwapi]) 
4327         AC_CHECK_HEADERS(objsafe.h,
4328           VLC_ADD_CXXFLAGS([activex],[-DHAVE_OBJSAFE_HEADER])
4329         )
4330         activex=:
4331       ],
4332       [ AC_MSG_ERROR([required OLE headers are missing from your system]) ]
4333     )
4334   fi
4335 fi
4336 AC_ARG_VAR(MIDL, [Microsoft IDL compiler (Win32 platform only)])
4337 AM_CONDITIONAL(HAS_MIDL_COMPILER, test "${MIDL}" != "no")
4338 AM_CONDITIONAL(BUILD_ACTIVEX,${activex})
4339
4340 dnl
4341 dnl  Mozilla plugin
4342 dnl
4343 mozilla=false
4344 AC_ARG_ENABLE(mozilla,
4345   [  --enable-mozilla        build a vlc-based Mozilla plugin (default disabled)])
4346 AC_ARG_WITH(mozilla-sdk-path,
4347   [    --with-mozilla-sdk-path=PATH path to mozilla sdk])
4348
4349 if test "${enable_mozilla}" = "yes" -a "${with_mozilla_sdk_path}" = ""
4350 then
4351   AC_PATH_PROG(MOZILLA_CONFIG, mozilla-config, no)
4352   if test "${MOZILLA_CONFIG}" = "no"
4353   then
4354     AC_MSG_ERROR([Please install the Mozilla development tools, mozilla-config was not found.])
4355   else
4356     if test "${SYS}" != "mingw32"; then
4357       LDFLAGS="${LDFLAGS_save} -L${x_libraries}"
4358       AC_CHECK_LIB(Xt,XtStrings,
4359        [VLC_ADD_LDFLAGS([mozilla],[-L${x_libraries} -lXt -lX11 -lSM -lICE])],
4360        [],
4361        [[-L${x_libraries} -lX11 -lSM -lICE]
4362       ])
4363       LDFLAGS="${LDFLAGS_save}"
4364     fi
4365     mozilla=:
4366     dnl Workaround for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=150490
4367     VLC_ADD_CPPFLAGS([mozilla],[[`${MOZILLA_CONFIG} --cflags plugin xpcom java | sed 's,-I\([^ ]*\)/mozilla/\([^ ]*\),-I\1/\2 -I\1/mozilla/\2,g' | xargs`]])
4368     VLC_ADD_LDFLAGS([mozilla],[`${MOZILLA_CONFIG} --libs plugin xpcom`])
4369     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mozilla}"
4370     AC_CHECK_HEADERS(mozilla-config.h)
4371     CPPFLAGS="${CPPFLAGS_save}"
4372   fi
4373
4374 dnl special case for mingw32
4375 elif test "${enable_mozilla}" = "yes"
4376 then
4377   if test "${SYS}" = "mingw32"; then
4378     AC_CHECK_TOOL(CYGPATH, cygpath, "")
4379     mozilla_sdk_xpcom="/xpcom"
4380   fi
4381
4382   real_mozilla_sdk="`cd ${with_mozilla_sdk_path} 2>/dev/null && pwd`"
4383   CPPFLAGS="${CPPFLAGS_save} -I${real_mozilla_sdk} -I${real_mozilla_sdk}/include"
4384   AC_CHECK_HEADERS(mozilla-config.h, [
4385     mozilla=:
4386     VLC_ADD_CPPFLAGS([mozilla],[-DXPCOM_GLUE -I${real_mozilla_sdk} -I${real_mozilla_sdk}/include -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])
4387     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 -L${real_mozilla_sdk}/lib -lnspr4 -lplds4 -lplc4 -lxpcomglue])
4388     if test "${SYS}" = "mingw32"; then
4389       VLC_ADD_LDFLAGS([mozilla],[-lembedstring -Wl,--kill-at])
4390     fi
4391
4392     XPIDL_INCL="-I${real_mozilla_sdk}${mozilla_sdk_xpcom}/idl"
4393     XPIDL="${real_mozilla_sdk}${mozilla_sdk_xpcom}/bin/xpidl"
4394
4395     if test -n "${CYGPATH}"; then
4396       real_mozilla_sdk="`${CYGPATH} -w ${real_mozilla_sdk}`"
4397       XPIDL_INCL="${XPIDL_INCL} -I\"${real_mozilla_sdk}${mozilla_sdk_xpcom}/idl\""
4398     fi ])
4399   CPPFLAGS="${CPPFLAGS_save}"
4400 fi
4401
4402 dnl Not necessarily in ${PATH}
4403 if test -z "${XPIDL}" -o ! -x "${XPIDL}"; then
4404   XPIDL="/usr/lib/mozilla/xpidl"
4405 fi
4406 AS_IF([test "${MOZILLA_CONFIG}"], [
4407   if test -z "${XPIDL_INCL}"; then
4408     XPIDL_INCL="`${MOZILLA_CONFIG} --cflags plugin xpcom java` \
4409     `${MOZILLA_CONFIG} --idlflags plugin xpcom java` "
4410   fi
4411 ])
4412 AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
4413
4414 dnl
4415 dnl  test plugins
4416 dnl
4417 AC_ARG_ENABLE(testsuite,
4418   [  --enable-testsuite      build test modules (default disabled)])
4419 if test "${enable_testsuite}" = "yes"
4420 then
4421   TESTS="test1 test2 test3 test4"
4422
4423   dnl  we define those so that bootstrap sets the right linker
4424   VLC_ADD_CXXFLAGS([test2],[])
4425   VLC_ADD_OBJCFLAGS([test3],[])
4426   dnl  this one is needed until automake knows what to do
4427   VLC_ADD_LDFLAGS([test3],[-lobjc])
4428
4429   VLC_ADD_PLUGINS([${TESTS}])
4430   #VLC_ADD_BUILTINS([${TESTS}])
4431 fi
4432
4433 dnl
4434 dnl  gtk_main plugin
4435 dnl
4436 if test "${NEED_GTK_MAIN}" != "no"
4437 then
4438     VLC_ADD_PLUGINS([gtk_main])
4439     VLC_ADD_CFLAGS([gtk_main],[${CFLAGS_gtk}])
4440     VLC_ADD_LDFLAGS([gtk_main],[${LDFLAGS_gtk}])
4441 fi
4442
4443 if test "${NEED_GNOME_MAIN}" != "no"
4444 then
4445     VLC_ADD_PLUGINS([gnome_main])
4446     VLC_ADD_CFLAGS([gnome_main],[${CFLAGS_gtk} ${CFLAGS_gnome}])
4447     VLC_ADD_LDFLAGS([gnome_main],[${LDFLAGS_gtk} ${LDFLAGS_gnome}])
4448 fi
4449
4450 if test "${NEED_GTK2_MAIN}" != "no"
4451 then
4452     VLC_ADD_PLUGINS([gtk2_main])
4453     VLC_ADD_CFLAGS([gtk2],[-DNEED_GTK2_MAIN])
4454     VLC_ADD_CFLAGS([pda],[-DNEED_GTK2_MAIN])
4455     VLC_ADD_CFLAGS([gtk2_main],[${CFLAGS_gtk2} ${CFLAGS_pda}])
4456     VLC_ADD_LDFLAGS([gtk2_main],[${LDFLAGS_gtk2} ${LDFLAGS_pda}])
4457 fi
4458
4459 if test "${NEED_GNOME2_MAIN}" != "no"
4460 then
4461     VLC_ADD_PLUGINS([gnome2_main])
4462     VLC_ADD_CFLAGS([gnome2_main],[${CFLAGS_gtk2} ${CFLAGS_gnome2}])
4463     VLC_ADD_LDFLAGS([gnome2_main],[${LDFLAGS_gtk2} ${LDFLAGS_gnome2}])
4464 fi
4465
4466 dnl
4467 dnl  qte_main plugin
4468 dnl
4469 if test "${NEED_QTE_MAIN}" != "no"
4470 then
4471     VLC_ADD_PLUGINS([qte_main])
4472     VLC_ADD_CXXFLAGS([opie qte qt_video],[-DNEED_QTE_MAIN])
4473     VLC_ADD_CXXFLAGS([qte_main],[${CXXFLAGS_qte} ${CXXFLAGS_qt_video}])
4474     VLC_ADD_LDFLAGS([qte_main],[${LDFLAGS_qte} ${LDFLAGS_qt_video}])
4475 fi
4476
4477
4478 dnl
4479 dnl  Plugin and builtin checks
4480 dnl
4481 builtin_support=false
4482 plugin_support=:
4483
4484 dnl Support for plugins - this must be AT THE END
4485 AC_ARG_ENABLE(plugins,
4486   [  --disable-plugins       make all plugins built-in (default plugins enabled)],
4487   [if test "${enable_plugins}" = "no"
4488    then
4489      plugin_support=false
4490    fi])
4491
4492 dnl Automagically disable plugins if there is no system support for
4493 dnl dynamically loadable files (.so, .dll, .dylib).
4494 dnl don't forget vlc-win32 still can load .dll as plugins
4495 if test "${ac_cv_have_plugins}" = "no"
4496 then
4497   echo "*** Your system doesn't have plugin support. All plugins will be built"
4498   echo "statically."
4499   plugin_support=false
4500 fi
4501
4502 dnl Export automake variables
4503 if ${plugin_support}
4504 then
4505   AC_DEFINE(HAVE_DYNAMIC_PLUGINS, 1, Define if we have support for dynamic plugins)
4506   for plugin in `echo ${PLUGINS}`
4507   do
4508     eval "${plugin}_p=yes"
4509   done
4510 else
4511   VLC_ADD_BUILTINS([${PLUGINS}])
4512   PLUGINS=""
4513 fi
4514 AM_CONDITIONAL(HAVE_PLUGINS, ${plugin_support})
4515
4516 [if echo "${BUILTINS}" | grep '[^ ]' >/dev/null 2>&1
4517 then
4518   builtin_support=:
4519   for builtin in `echo ${BUILTINS}`
4520   do
4521     eval "${builtin}_b=yes"
4522   done
4523 fi]
4524 AM_CONDITIONAL(HAVE_BUILTINS, ${builtin_support})
4525
4526 AC_ARG_ENABLE(shared-libvlc,
4527   [  --enable-shared-libvlc  shared libvlc (default disabled EXPERIMENTAL)],
4528   ,[shared_libvlc=no])
4529
4530 AM_CONDITIONAL(BUILD_SHARED, [test "${shared_libvlc}" != "no"])
4531 AS_IF([test "${shared_libvlc}" != "no"], [
4532   AC_DEFINE(HAVE_SHARED_LIBVLC, 1, [Define to 1 if libvlc is built as a shared library.])
4533 ])
4534
4535 pic=no
4536 AS_IF([test "${shared_libvlc}" != "no"], [pic=pic])
4537 AS_IF([${mozilla}], [pic=pic])
4538 AS_IF([test "${SYS}" = "mingw32"], [pic=no])
4539
4540 AS_IF([test "${pic}" = "no"], [pic=])
4541 AC_SUBST(pic)
4542
4543 dnl Import conditional variables generated by bootstrap
4544 VLC_CONDITIONALS
4545
4546 dnl
4547 dnl  Stuff used by the program
4548 dnl
4549 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION} ${CODENAME}", [Simple version string])
4550 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "VLC media player - version ${VERSION} ${CODENAME} - (c) 1996-2005 the VideoLAN team", [Copyright string])
4551 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4552 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,"${VERSION_MAJOR}", [version major number])
4553 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,"${VERSION_MINOR}", [version minor number])
4554 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,"${VERSION_REVISION}", [version minor number])
4555 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,"${VERSION_EXTRA}", [version minor number])
4556 AC_SUBST(VERSION_MAJOR)
4557 AC_SUBST(VERSION_MINOR)
4558 AC_SUBST(VERSION_REVISION)
4559 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami`", [user who ran configure]) 
4560 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname`", [host which ran configure]) 
4561 AC_DEFINE_UNQUOTED(VLC_COMPILE_DOMAIN, "`dnsdomainname 2>/dev/null || domainname 2>/dev/null || echo unknown`", [domain of the host which ran configure]) 
4562 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1`", [compiler]) 
4563
4564 dnl Old definitions for version-dependant plugins
4565 dnl VLC_SYMBOL="`echo ${VERSION} | sed -e 'y/.-+/___/'`"
4566 dnl AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${VLC_SYMBOL}", [String suffix for module functions])
4567 dnl AC_DEFINE_UNQUOTED(MODULE_SYMBOL, ${VLC_SYMBOL}, [Symbol suffix for module functions])
4568
4569 dnl New definitions with value matching 0.8.4 release
4570 module_symbol="0_8_4"
4571 AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${module_symbol}", [String suffix for module functions])
4572 AC_DEFINE_UNQUOTED(MODULE_SYMBOL, $module_symbol, [Symbol suffix for module functions])
4573 VLC_ENTRY="vlc_entry__${module_symbol}"
4574 AC_SUBST(VLC_ENTRY)
4575
4576 DATA_PATH="${ac_tool_prefix}/share/vlc"
4577 AC_SUBST(DATA_PATH)
4578 PLUGIN_PATH="${ac_tool_prefix}/lib/vlc"
4579 AC_SUBST(PLUGIN_PATH)
4580
4581 dnl
4582 dnl  Handle substvars that use $(top_srcdir)
4583 dnl
4584 VLC_CONFIG="top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config"
4585 AC_SUBST(VLC_CONFIG)
4586 CPPFLAGS_save="${CPPFLAGS_save} -I\$(top_srcdir)/include"
4587
4588 dnl
4589 dnl  Restore *FLAGS
4590 dnl
4591 VLC_RESTORE_FLAGS
4592
4593 dnl
4594 dnl  Create the vlc-config script
4595 dnl
4596 LDFLAGS_libvlc="${LDFLAGS_vlc} ${LDFLAGS_builtin}"
4597 for i in `echo "${BUILTINS}" | sed -e 's@[^ ]*/@@g'` ; do LDFLAGS_libvlc="${LDFLAGS_libvlc} ${libdir}/vlc/${i}.a `eval echo '$'{LDFLAGS_${i}}`" ; done
4598
4599 dnl
4600 dnl  Configuration is finished
4601 dnl
4602 AC_SUBST(SYS)
4603 AC_SUBST(ARCH)
4604 AC_SUBST(ALIASES)
4605 AC_SUBST(ASM)
4606 AC_SUBST(MOC)
4607 AC_SUBST(WINDRES)
4608 AC_SUBST(XPIDL)
4609 AC_SUBST(XPIDL_INCL)
4610 AC_SUBST(LIBEXT)
4611 AC_SUBST(INCLUDES)
4612 AC_SUBST(ALL_LINGUAS)
4613
4614 dnl Import substitutions generated by bootstrap
4615 VLC_SUBSTS
4616
4617 dnl Create vlc-config.in
4618 VLC_OUTPUT_VLC_CONFIG_IN
4619
4620 AC_CONFIG_FILES([
4621   Makefile
4622   activex/Makefile
4623   activex/axvlc.inf
4624   debian/Makefile
4625   doc/Makefile
4626   intl/Makefile
4627   ipkg/Makefile
4628   lib/Makefile
4629   loader/Makefile
4630   modules/Makefile
4631   mozilla/Makefile
4632   m4/Makefile
4633   po/Makefile.in
4634   share/Makefile
4635 ])
4636
4637 AC_CONFIG_FILES([
4638   modules/access/Makefile
4639   modules/access/dshow/Makefile
4640   modules/access/dvb/Makefile
4641   modules/access/mms/Makefile
4642   modules/access/pvr/Makefile
4643   modules/access/v4l/Makefile
4644   modules/access/cdda/Makefile
4645   modules/access/vcd/Makefile
4646   modules/access/vcdx/Makefile
4647   modules/access/screen/Makefile
4648   modules/access_filter/Makefile
4649   modules/access_output/Makefile
4650   modules/audio_filter/Makefile
4651   modules/audio_filter/channel_mixer/Makefile
4652   modules/audio_filter/converter/Makefile
4653   modules/audio_filter/resampler/Makefile
4654   modules/audio_mixer/Makefile
4655   modules/audio_output/Makefile
4656   modules/codec/Makefile
4657   modules/codec/cmml/Makefile
4658   modules/codec/dmo/Makefile
4659   modules/codec/ffmpeg/Makefile
4660   modules/codec/spudec/Makefile
4661   modules/control/Makefile
4662   modules/control/http/Makefile
4663   modules/control/corba/Makefile
4664   modules/demux/Makefile
4665   modules/demux/asf/Makefile
4666   modules/demux/avi/Makefile
4667   modules/demux/mp4/Makefile
4668   modules/demux/mpeg/Makefile
4669   modules/demux/playlist/Makefile
4670   modules/demux/util/Makefile
4671   modules/gui/Makefile
4672   modules/gui/beos/Makefile
4673   modules/gui/pda/Makefile
4674   modules/gui/macosx/Makefile
4675   modules/gui/qnx/Makefile
4676   modules/gui/skins2/Makefile
4677   modules/gui/wxwidgets/Makefile
4678   modules/gui/wince/Makefile
4679   modules/misc/Makefile
4680   modules/misc/dummy/Makefile
4681   modules/misc/memcpy/Makefile
4682   modules/misc/network/Makefile
4683   modules/misc/testsuite/Makefile
4684   modules/misc/playlist/Makefile
4685   modules/misc/xml/Makefile
4686   modules/mux/Makefile
4687   modules/mux/mpeg/Makefile
4688   modules/packetizer/Makefile
4689   modules/services_discovery/Makefile
4690   modules/stream_out/Makefile
4691   modules/stream_out/transrate/Makefile
4692   modules/video_chroma/Makefile
4693   modules/video_filter/Makefile
4694   modules/video_filter/swscale/Makefile
4695   modules/video_output/Makefile
4696   modules/video_output/directx/Makefile
4697   modules/video_output/qte/Makefile
4698   modules/video_output/x11/Makefile
4699   modules/visualization/Makefile
4700   modules/visualization/visual/Makefile
4701   modules/visualization/galaktos/Makefile
4702 ])
4703
4704 dnl Generate makefiles
4705 AC_OUTPUT
4706
4707 # Cannot use AC_CONFIG_FILES([vlc-config]) as is automatically built,
4708 # not provided with the source
4709 ${SHELL} ./config.status --file=vlc-config
4710 chmod 0755 vlc-config
4711
4712 dnl echo "Enabled builtin modules :"
4713 dnl for a in `./vlc-config --target builtin` ; do echo $a; done | sed -e 's,modules\/\(.*\)\/lib\(.*\)\.a,\2 (\1),'
4714
4715 dnl echo "Enabled plugin modules :"
4716 dnl for a in `./vlc-config --target plugin` ; do echo $a; done | sed -e 's,modules\/\(.*\)\/lib\(.*\)_plugin,\2 (\1),'
4717
4718 printf "
4719 vlc configuration
4720 --------------------
4721 vlc version           : ${VERSION}
4722 system                : ${SYS}
4723 architecture          : ${ARCH}
4724 build flavour         : "
4725 test "${enable_debug}" = "yes" && printf "debug "
4726 test "${enable_cprof}" = "yes" && printf "cprof "
4727 test "${enable_gprof}" = "yes" && printf "gprof "
4728 test "${enable_optimizations}" = "yes" && printf "optim "
4729 test "${enable_release}" = "yes" && printf "release " || printf "devel "
4730 echo "
4731 vlc aliases           :${ALIASES}
4732
4733 You can tune the compiler flags in vlc-config.
4734 To build vlc and its plugins, type \`make'.
4735 "
4736