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