]> git.sesse.net Git - vlc/blob - configure.ac
Accept UID 0 as a valid though dangerous user
[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   AC_CHECK_HEADERS(libdirac_decoder/dirac_parser.h, [
3125     AC_CHECK_LIB(dirac_decoder, dirac_decoder_init, [
3126       VLC_ADD_PLUGINS([dirac])
3127       VLC_ADD_LDFLAGS([dirac],[-ldirac_decoder -ldirac_encoder -lstdc++]) ],[
3128       AC_MSG_ERROR([libdirac doesn't appear to be installed on you system.])],
3129       [-lstdc++])
3130   ])
3131 fi
3132
3133 dnl
3134 dnl  PNG decoder module
3135 dnl
3136 AC_ARG_ENABLE(png,
3137   [  --enable-png            PNG support (default enabled)])
3138 if test "${enable_png}" != "no"; then
3139 AC_CHECK_HEADERS(png.h, [
3140   LDFLAGS="${LDFLAGS_save} -lz"
3141   AC_CHECK_LIB(png, png_set_rows, [
3142     VLC_ADD_LDFLAGS([png],[-lpng -lz])
3143     VLC_ADD_PLUGINS([png])
3144     VLC_ADD_PLUGINS([osdmenu])
3145     AC_DEFINE(HAVE_LIBPNG, [], [Define if you have the PNG library: libpng])],
3146     [],[-lz])
3147   LDFLAGS="${LDFLAGS_save}"
3148   ])
3149 fi
3150
3151 dnl
3152 dnl H264 encoder plugin (using libx264)
3153 dnl
3154 AC_ARG_ENABLE(x264,
3155   [  --enable-x264           H264 encoding support with libx264 (default enabled)])
3156 if test "${enable_x264}" != "no"; then
3157   AC_ARG_WITH(x264-tree,
3158     [    --with-x264-tree=PATH x264 tree for static linking ],[],[])
3159   if test "${with_x264_tree}" != "no" -a -n "${with_x264_tree}"
3160   then
3161     real_x264_tree="`cd ${with_x264_tree} 2>/dev/null && pwd`"
3162     if test -z "${real_x264_tree}"
3163     then
3164       dnl  The given directory can't be found
3165       AC_MSG_RESULT(no)
3166       AC_MSG_ERROR([${with_x264_tree} directory doesn't exist])
3167     fi
3168     dnl  Use a custom libx264
3169     AC_MSG_CHECKING(for x264.h in ${real_x264_tree})
3170     if test -f ${real_x264_tree}/x264.h
3171     then
3172       AC_MSG_RESULT(yes)
3173       VLC_ADD_CPPFLAGS([x264],[-I${real_x264_tree}])
3174       VLC_ADD_LDFLAGS([x264],[-L${real_x264_tree}])
3175       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264} ${THREAD_LIB}"
3176       AC_CHECK_LIB(x264, x264_encoder_open, [
3177         VLC_ADD_BUILTINS([x264])
3178         VLC_ADD_LDFLAGS([x264],[-lx264])
3179       ],[
3180         AC_MSG_ERROR([the specified tree hasn't been compiled])
3181       ])
3182       LDFLAGS="${LDFLAGS_save}"
3183     else
3184       AC_MSG_RESULT(no)
3185       AC_MSG_ERROR([the specified tree doesn't have x264.h])
3186     fi
3187   else
3188     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264} ${THREAD_LIB}"
3189     AC_CHECK_HEADERS(x264.h, [
3190       AC_CHECK_LIB(x264, x264_encoder_open, [
3191         VLC_ADD_PLUGINS([x264])
3192         VLC_ADD_LDFLAGS([x264],[-lx264])
3193       ],[
3194         if test "${enable_x264}" = "yes"; then
3195             AC_MSG_ERROR([Could not find libx264 on your system: you may get it from http://www.videolan.org/x264.html])
3196           fi
3197       ])
3198     ])
3199     LDFLAGS="${LDFLAGS_save}"
3200   fi
3201 fi
3202
3203 dnl
3204 dnl  CMML plugin
3205 dnl
3206 AC_ARG_ENABLE(cmml,
3207   [  --enable-cmml           CMML support (default enabled)])
3208 if test "${enable_cmml}" != "no"
3209 then
3210   VLC_ADD_PLUGINS([cmml])
3211 fi
3212
3213
3214 dnl
3215 dnl  Video plugins
3216 dnl
3217
3218 AC_ARG_WITH(,[Video plugins:])
3219
3220 dnl Check for DPMS
3221 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
3222   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
3223   AC_CHECK_HEADERS(X11/extensions/dpms.h, [
3224     AC_MSG_CHECKING(for DPMSInfo in X11/extensions/dpms.h)
3225     AC_EGREP_HEADER(DPMSInfo,X11/extensions/dpms.h,[
3226       AC_MSG_RESULT(yes)
3227       AC_DEFINE(DPMSINFO_IN_DPMS_H, 1,
3228                 Define if <X11/extensions/dpms.h> defines DPMSInfo.)
3229     ],[
3230       AC_MSG_RESULT(no)
3231     ])
3232   ],,[
3233     #include <X11/Xlib.h>
3234   ])
3235   CPPFLAGS="${CPPFLAGS_save}"
3236 fi
3237
3238 dnl
3239 dnl  X11 module
3240 dnl  (enabled by default except on win32)
3241 dnl
3242 AC_ARG_ENABLE(x11,
3243   [  --enable-x11            X11 support (default enabled)])
3244 if test "${enable_x11}" != "no" &&
3245   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3246    test "${enable_x11}" = "yes"); then
3247   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
3248   AC_CHECK_HEADERS(X11/Xlib.h, [
3249     VLC_ADD_PLUGINS([x11])
3250     VLC_ADD_LDFLAGS([x11],[-L${x_libraries} -lX11 -lXext])
3251     VLC_ADD_CPPFLAGS([x11],[-I${x_includes}])
3252   ])
3253   CPPFLAGS="${CPPFLAGS_save}"
3254 fi
3255
3256 dnl
3257 dnl  XVideo module
3258 dnl  (enabled by default except on win32)
3259 dnl
3260 AC_ARG_ENABLE(xvideo,
3261   [  --enable-xvideo         XVideo support (default enabled)])
3262 if test "${enable_xvideo}" != "no" &&
3263   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3264    test "${enable_xvideo}" = "yes"); then
3265   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
3266   AC_CHECK_HEADERS(X11/extensions/Xv.h, [
3267     CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
3268     AC_CHECK_LIB(Xv,XvPutImage,[
3269       # If libXv.so is available, xvideo can be a plugin. Otherwise, we
3270       # test for libXv_pic.
3271       if test -f /usr/X11R6/lib/libXv.so -o -f "${x_libraries}"/libXv.so; then
3272         VLC_ADD_PLUGINS([xvideo])
3273         VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
3274         VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
3275       else
3276         AC_CHECK_LIB(Xv_pic,XvPutImage,[
3277           VLC_ADD_PLUGINS([xvideo])
3278           VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
3279           VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv_pic])
3280         ],[
3281           VLC_ADD_BUILTINS([xvideo])
3282           VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
3283           VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
3284         ])
3285       fi
3286     ])
3287     CFLAGS="${CFLAGS_save}"
3288   ]
3289   CPPFLAGS="${CPPFLAGS_save}")
3290 fi
3291
3292 dnl
3293 dnl  GLX module
3294 dnl  (enabled by default except on win32)
3295 dnl
3296 AC_ARG_ENABLE(glx,
3297   [  --enable-glx            X11 OpenGL (GLX) support (default enabled)])
3298 if test "${enable_glx}" != "no" &&
3299   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3300    test "${enable_glx}" = "yes"); then
3301   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
3302   AC_CHECK_HEADERS(X11/Xlib.h, [
3303     AC_CHECK_HEADERS(GL/glx.h, [
3304       VLC_ADD_PLUGINS([glx])
3305       VLC_ADD_LDFLAGS([glx],[-L${x_libraries} -lX11 -lXext -lGL -lGLU])
3306       VLC_ADD_CPPFLAGS([glx],[-I${x_includes}])
3307   ]) ])
3308   CPPFLAGS="${CPPFLAGS_save}"
3309 fi
3310
3311 dnl
3312 dnl  Check for the Xinerama extension
3313 dnl
3314 if test "${enable_xvideo}" != "no" &&
3315   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3316    test "${enable_xvideo}" = "yes"); then
3317   ac_cv_have_xinerama="no"
3318   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
3319   CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
3320   AC_CHECK_HEADERS(X11/extensions/Xinerama.h,[
3321     AC_CHECK_LIB(Xinerama_pic, XineramaQueryExtension,[
3322       VLC_ADD_LDFLAGS([xvideo],[-lXinerama_pic])
3323       VLC_ADD_LDFLAGS([x11],[-lXinerama_pic])
3324       VLC_ADD_LDFLAGS([glx],[-lXinerama_pic])
3325       ac_cv_have_xinerama="yes"
3326     ],[
3327       AC_CHECK_LIB(Xinerama, XineramaQueryExtension,[
3328         VLC_ADD_LDFLAGS([xvideo],[-lXinerama])
3329         VLC_ADD_LDFLAGS([x11],[-lXinerama])
3330         VLC_ADD_LDFLAGS([glx],[-lXinerama])
3331         ac_cv_have_xinerama="yes"
3332       ])
3333     ])
3334   ])
3335   if test "${ac_cv_have_xinerama}" = "yes"; then
3336     AC_DEFINE(HAVE_XINERAMA, 1, [Define this if you have libXinerama installed])
3337   fi
3338   CFLAGS="${CFLAGS_save}"
3339   CPPFLAGS="${CPPFLAGS_save}"
3340 fi
3341
3342 dnl
3343 dnl  OpenGL module
3344 dnl  (enabled by default except on beos)
3345 dnl
3346 AC_ARG_ENABLE(opengl,
3347   [  --enable-opengl         OpenGL support (default enabled)])
3348 if test "${enable_opengl}" != "no" &&
3349    test "${SYS}" != "beos" -a "${SYS}" != "mingwce"; then
3350   if test "${SYS}" != "darwin"; then
3351     AC_CHECK_HEADERS(GL/gl.h, [
3352       VLC_ADD_PLUGINS([opengl])
3353       if test "${SYS}" != "mingw32"; then
3354         VLC_ADD_LDFLAGS([opengl],[-L${x_libraries} -lGL -lGLU])
3355       else
3356         VLC_ADD_LDFLAGS([opengl],[-lopengl32])
3357       fi
3358     ])
3359   else
3360     dnl OS X special case (no GL/gl.h but OpenGL/gl.h)
3361     VLC_ADD_PLUGINS([opengl])
3362     VLC_ADD_LDFLAGS([opengl],[-framework OpenGL])
3363   fi
3364 fi
3365
3366 dnl
3367 dnl  SDL module
3368 dnl
3369 AC_ARG_ENABLE(sdl,
3370   [  --enable-sdl            SDL support (default enabled)])
3371 if test "${enable_sdl}" != "no"
3372 then
3373   SDL_PATH="${PATH}"
3374   AC_ARG_WITH(sdl-config-path,
3375     [    --with-sdl-config-path=PATH sdl-config path (default search in \$PATH)],
3376     [ if test "${with_sdl_config_path}" != "no"
3377       then
3378         SDL_PATH="${with_sdl_config_path}:${PATH}"
3379       fi ])
3380   AC_PATH_PROG(SDL12_CONFIG, sdl12-config, no, ${SDL_PATH})
3381   SDL_CONFIG="${SDL12_CONFIG}"
3382   SDL_HEADER="SDL12/SDL.h"
3383   SDL_IMAGE="SDL12/SDL_image.h"
3384   if test "${SDL_CONFIG}" = "no"
3385   then
3386     AC_PATH_PROG(SDL11_CONFIG, sdl11-config, no, ${SDL_PATH})
3387     SDL_CONFIG=${SDL11_CONFIG}
3388     SDL_HEADER="SDL11/SDL.h"
3389     SDL_IMAGE="SDL11/SDL_image.h"
3390   fi
3391   if test "${SDL_CONFIG}" = "no"
3392   then
3393     AC_PATH_PROG(SDL_CONFIG, sdl-config, no, ${SDL_PATH})
3394     SDL_HEADER="SDL/SDL.h"
3395     SDL_IMAGE="SDL/SDL_image.h"
3396   fi
3397   # check for cross-compiling
3398   SDL_PREFIX=
3399   AC_ARG_WITH(sdl-prefix,
3400     [    --with-sdl-prefix=PATH path to libsdl (needed for cross-compiling),
3401                                e.g use as:
3402                                --with-sdl-prefix=/usr/local/arm/2.95.3/arm-linux/usr)],[],[])
3403   if test "${with_sdl_prefix}" != "no" -a -n "${with_sdl_prefix}"
3404   then
3405     SDL_PREFIX="--prefix=${with_sdl_prefix}"
3406   fi
3407   if test "${SDL_CONFIG}" != "no"
3408   then
3409     # SDL on Darwin is heavily patched and can only run SDL_image
3410     if test "${SYS}" != "darwin" -a "${SYS}" != "mingw32"; then
3411       VLC_ADD_PLUGINS([vout_sdl aout_sdl])
3412     fi
3413     VLC_ADD_CFLAGS([vout_sdl aout_sdl sdl_image],[`${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`])
3414     VLC_ADD_LDFLAGS([vout_sdl aout_sdl sdl_image],[`${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'`])
3415     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}"
3416     AC_CHECK_HEADERS(${SDL_HEADER}, AC_DEFINE_UNQUOTED(SDL_INCLUDE_FILE,
3417       <${SDL_HEADER}>, Indicate whether we should use SDL/SDL.h or SDL11/SDL.h),
3418       [ AC_CHECK_HEADERS(SDL.h, AC_DEFINE(SDL_INCLUDE_FILE, <SDL.h>,
3419           As a last resort we also test for SDL.h presence),
3420       [ AC_MSG_ERROR([The development package for SDL is not installed.
3421 Please install it and try again. Alternatively you can also configure with
3422 --disable-sdl.])
3423       ])])
3424     AC_CHECK_HEADERS(${SDL_IMAGE}, [AC_DEFINE_UNQUOTED(SDL_IMAGE_INCLUDE_FILE,
3425       <${SDL_IMAGE}>, Indicate the path of SDL_image.h)
3426       VLC_ADD_PLUGINS([sdl_image])
3427       AC_CHECK_LIB(png, png_set_rows,
3428         [VLC_ADD_LDFLAGS([sdl_image],[-lpng -lz])],[],[-lz])
3429       AC_CHECK_LIB(jpeg, jpeg_start_decompress,
3430         [VLC_ADD_LDFLAGS([sdl_image],[-ljpeg])])
3431       AC_CHECK_LIB(tiff, TIFFClientOpen,
3432         [VLC_ADD_LDFLAGS([sdl_image],[-ltiff])])
3433       VLC_ADD_LDFLAGS([sdl_image], [-lSDL_image])],
3434       [ AC_CHECK_HEADERS(SDL_image.h, AC_DEFINE(SDL_IMAGE_INCLUDE_FILE, <SDL_image.h>,
3435           As a last resort we also test for SDL_image.h presence),
3436       [ AC_MSG_WARN([The development package for SDL_image is not installed.
3437 You should install it alongside your SDL package.])
3438       ])])
3439     CPPFLAGS="${CPPFLAGS_save}"
3440     if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null
3441     then
3442       AC_MSG_ERROR([The development package for SDL is not installed.
3443 Please install it and try again. Alternatively you can also configure with
3444 --disable-sdl.])
3445     fi
3446
3447   elif test "${enable_sdl}" =  "yes"
3448   then
3449     AC_MSG_ERROR([I couldn't find the SDL package. You can download libSDL
3450 from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
3451     ])
3452   fi
3453 fi
3454
3455 dnl
3456 dnl  freetype module
3457 dnl
3458 AC_ARG_ENABLE(freetype,
3459   [  --enable-freetype       freetype support (default enabled)])
3460 AC_ARG_ENABLE(fribidi,
3461   [  --enable-fribidi        fribidi support (default enabled)])
3462 if test "${enable_freetype}" != "no"
3463 then
3464   FREETYPE_PATH="${PATH}"
3465   AC_ARG_WITH(freetype-config-path,
3466     [    --with-freetype-config-path=PATH freetype-config path (default search in \$PATH)],
3467     [ if test "${with_freetype_config_path}" != "no"
3468       then
3469         FREETYPE_PATH="${with_freetype_config_path}:${PATH}"
3470       fi ])
3471   AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no, ${FREETYPE_PATH})
3472
3473   if test "${FREETYPE_CONFIG}" != "no"
3474   then
3475     VLC_ADD_PLUGINS([freetype])
3476     VLC_ADD_CFLAGS([freetype],[`${FREETYPE_CONFIG} --cflags`])
3477     VLC_ADD_LDFLAGS([freetype],[`${FREETYPE_CONFIG} --libs`])
3478     AC_CHECK_HEADERS(Carbon/Carbon.h,
3479       [VLC_ADD_LDFLAGS([freetype],[-framework Carbon])])
3480   elif test "${enable_freetype}" =  "yes"
3481   then
3482     AC_MSG_ERROR([I couldn't find the freetype package. You can download libfreetype2
3483 from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
3484     ])
3485   fi
3486
3487   dnl fribidi support
3488   if test "${enable_fribidi}" != "no"
3489   then
3490     FRIBIDI_PATH="${PATH}"
3491     AC_ARG_WITH(fribidi-config-path,
3492       [    --with-fribidi-config-path=PATH fribidi-config path (default search in \$PATH)],
3493       [ if test "${with_fribidi_config_path}" != "no"
3494         then
3495           FRIBIDI_PATH="${with_fribidi_config_path}:${PATH}"
3496         fi ])
3497     AC_PATH_PROG(FRIBIDI_CONFIG, fribidi-config, no, ${FRIBIDI_PATH})
3498
3499     if test "${FRIBIDI_CONFIG}" != "no"
3500     then
3501       VLC_ADD_CFLAGS([freetype], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
3502       VLC_ADD_CPPFLAGS([skins2], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
3503       VLC_ADD_LDFLAGS([freetype], [`${FRIBIDI_CONFIG} --libs`])
3504       VLC_ADD_LDFLAGS([skins2], [`${FRIBIDI_CONFIG} --libs`])
3505     fi
3506   fi
3507 fi
3508
3509 dnl
3510 dnl  libxml2 module
3511 dnl
3512 AC_ARG_ENABLE(libxml2,
3513   [  --enable-libxml2        libxml2 support (default enabled)])
3514 if test "${enable_libxml2}" != "no"
3515 then
3516   XML2_PATH="${PATH}"
3517   AC_ARG_WITH(xml2-config-path,
3518     [    --with-xml2-config-path=PATH xml2-config path (default search in \$PATH)],
3519     [ if test "${with_xml2_config_path}" != "no"; then
3520         XML2_PATH="${with_xml2_config_path}:${PATH}"
3521       fi ])
3522   AC_PATH_PROG(XML2_CONFIG, xml2-config, no, ${XML2_PATH})
3523   if test "${XML2_CONFIG}" != "no"; then
3524     VLC_ADD_CPPFLAGS([xml],[`${XML2_CONFIG} --cflags`])
3525     VLC_ADD_LDFLAGS([xml],[`${XML2_CONFIG} --libs`])
3526     dnl depends on the xmlTextReader extension
3527     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_xml}"
3528     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xml}"
3529     AC_CHECK_LIB(xml2,xmlTextReaderConstName,[
3530       AC_EGREP_HEADER(xmlTextReaderConstName,libxml/xmlreader.h,[
3531         VLC_ADD_PLUGINS([xml]) ],[
3532           AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
3533           if test "${enable_xml2}" = "yes"; then
3534             AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
3535           fi])
3536        ],[
3537       AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
3538       if test "${enable_xml2}" = "yes"; then
3539         AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
3540       fi])
3541     LDFLAGS="${LDFLAGS_save}"
3542     CPPFLAGS="${CPPFLAGS_save}"
3543   else
3544     if test "${enable_xml2}" = "yes"; then
3545       AC_MSG_ERROR([Could not find libxml2])
3546     fi
3547   fi
3548 fi
3549
3550 dnl
3551 dnl  SVG module
3552 dnl
3553 AC_ARG_ENABLE(svg,
3554   [  --enable-svg            SVG support (default disabled)])
3555 if test "${enable_svg}" = "yes"
3556 then
3557   PKG_CHECK_MODULES(SVG, 
3558         librsvg-2.0 >= 2.5.0,
3559         [
3560           VLC_ADD_LDFLAGS([svg],[$SVG_LIBS])
3561           VLC_ADD_CFLAGS([svg],[$SVG_CFLAGS])
3562           VLC_ADD_PLUGINS([svg]) ],
3563         [AC_MSG_WARN(SVG library not found)])
3564 fi
3565
3566 dnl
3567 dnl Snapshot vout module (with cache)
3568 dnl
3569 AC_ARG_ENABLE(snapshot,
3570   [  --enable-snapshot       snapshot module (default disabled)])
3571 if test "${enable_snapshot}" = "yes"
3572 then
3573   VLC_ADD_PLUGINS([snapshot])
3574 fi
3575
3576 dnl
3577 dnl  Qt Embedded module
3578 dnl  (disabled by default)
3579 dnl
3580 AC_ARG_ENABLE(qte,
3581   [  --enable-qte            QT Embedded support (default disabled)])
3582 if test "${enable_qte}" = "yes"
3583 then
3584   AC_ARG_WITH(qte,
3585   [    --with-qte=PATH       Qt Embedded headers and libraries])
3586   if test "${with_qte}" != "no" -a -n "${with_qte}"
3587   then
3588     VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3589     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])
3590   else
3591     VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3592     VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti])
3593   fi
3594   VLC_ADD_PLUGINS([qte])
3595   NEED_QTE_MAIN=yes
3596   CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
3597   AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
3598     AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
3599   ] )
3600   CPPFLAGS="${CPPFLAGS_save}"
3601 fi
3602
3603 dnl
3604 dnl  Qt Video output module
3605 dnl  (disabled by default)
3606 dnl
3607 dnl AC_ARG_ENABLE(qt_video,
3608 dnl   [  --enable-qt_video            QT Video Output support (default disabled)])
3609 dnl if test "${enable_qt_video}" = "yes"
3610 dnl then
3611 dnl  VLC_ADD_PLUGINS([qt_video])
3612 dnl  VLC_ADD_LDFLAGS([qt_video],[-L${QTDIR}/lib])
3613 dnl  LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt_video}"
3614 dnl   AC_CHECK_LIB(qt-mt,main,[
3615 dnl    VLC_ADD_LDFLAGS([qt_video],[-lqt-mt])
3616 dnl  ],[
3617 dnl    AC_CHECK_LIB(qt,main,[
3618 dnl      VLC_ADD_LDFLAGS([qt_video],[-lqt])
3619 dnl    ])
3620 dnl  ])
3621 dnl  NEED_QTE_MAIN=yes
3622 dnl  LDFLAGS="${LDFLAGS_save}"
3623 dnl  VLC_ADD_CXXFLAGS([qt_video],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
3624 dnl fi
3625
3626 dnl
3627 dnl Roku HD1000 Video output module
3628 dnl
3629 AC_ARG_ENABLE(hd1000v,
3630   [  --enable-hd1000v        HD1000 Video Output module (default enabled on HD1000)])
3631 if test "${enable_hd1000v}" != "no" -a "${CXX}" != "" &&
3632   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3633    test "${enable_hd1000v}" = "yes"); then
3634   AC_LANG_PUSH([C++])
3635   AC_CHECK_HEADERS([cascade/graphics/CascadeScreen.h cascade/graphics/CascadeBitmap.h],
3636   [
3637     can_build_roku="yes"
3638   ],
3639   [
3640     can_build_roku="no"
3641     AC_MSG_WARN([Not building Roku HD1000 compatible video output])
3642   ])
3643   if test "$can_build_roku" = "yes"
3644   then
3645     VLC_ADD_PLUGINS([hd1000v])
3646     VLC_ADD_LDFLAGS([hd1000v],[-lCascade -ldvbpsi -lmad])
3647   fi
3648   AC_LANG_POP([C++])
3649 fi
3650
3651 dnl
3652 dnl  Windows DirectX module
3653 dnl
3654 AC_ARG_ENABLE(directx,
3655   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
3656 if test "${enable_directx}" != "no"
3657 then
3658   if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "cygwin"
3659   then
3660     AC_ARG_WITH(directx,
3661     [    --with-directx=PATH   Win32 DirectX headers])
3662     if test -z "${with_directx}"
3663     then
3664       AC_CHECK_HEADERS(ddraw.h,
3665       [ VLC_ADD_PLUGINS([vout_directx aout_directx])
3666         VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
3667         dnl to be moved when dependance is removed
3668         AC_CHECK_HEADERS(GL/gl.h, [
3669             VLC_ADD_PLUGINS([glwin32])
3670             VLC_ADD_LDFLAGS([glwin32],[-lopengl32 -lgdi32])
3671         ]) ])
3672     else
3673       AC_MSG_CHECKING(for directX headers in ${with_directx})
3674       if test -f ${with_directx}/ddraw.h
3675       then
3676         VLC_ADD_PLUGINS([vout_directx aout_directx])
3677         VLC_ADD_CPPFLAGS([vout_directx aout_directx],[-I${with_directx}])
3678         VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
3679         AC_MSG_RESULT(yes)
3680       else
3681         AC_MSG_RESULT(no)
3682         AC_MSG_ERROR([Cannot find ${with_directx}/ddraw.h!])
3683       fi
3684     fi
3685   fi
3686 fi
3687
3688 dnl
3689 dnl  Linux framebuffer module
3690 dnl
3691 AC_ARG_ENABLE(fb,
3692   [  --enable-fb             Linux framebuffer support (default enabled on Linux)])
3693     if test "${enable_fb}" != "no"
3694     then
3695       AC_CHECK_HEADERS(linux/fb.h, [
3696         VLC_ADD_PLUGINS([fb])
3697       ])
3698     fi
3699
3700 dnl
3701 dnl  Linux MGA module
3702 dnl
3703 AC_ARG_ENABLE(mga,
3704   [  --enable-mga            Linux kernel Matrox support (default disabled)],
3705   [ if test "${enable_mga}" = "yes"
3706     then
3707       VLC_ADD_PLUGINS([mga])
3708     fi ])
3709
3710 dnl
3711 dnl  SVGAlib module
3712 dnl
3713 AC_ARG_ENABLE(svgalib,
3714   [  --enable-svgalib        SVGAlib support (default disabled)])
3715 if test "${enable_svgalib}" = "yes"
3716 then
3717   VLC_ADD_PLUGINS([svgalib])
3718   VLC_ADD_LDFLAGS([svgalib],[-lvgagl -lvga])
3719 fi
3720
3721 dnl
3722 dnl  GGI module
3723 dnl
3724 AC_ARG_ENABLE(ggi,
3725   [  --enable-ggi            GGI support (default disabled)])
3726 if test "${enable_ggi}" = "yes"
3727 then
3728   VLC_ADD_PLUGINS([ggi])
3729   VLC_ADD_LDFLAGS([ggi],[-lggi])
3730   AC_ARG_WITH(ggi,
3731     [    --with-ggi=PATH       path to libggi],
3732     [ if test "${with_ggi}" != "no" -a -n "${with_ggi}"
3733       then
3734         VLC_ADD_CPPFLAGS([ggi],[-I${with_ggi}/include])
3735         VLC_ADD_LDFLAGS([ggi],[-L${with_ggi}/lib])
3736       fi ])
3737 fi
3738
3739 dnl
3740 dnl  Glide module
3741 dnl
3742 AC_ARG_ENABLE(glide,
3743   [  --enable-glide          Glide (3dfx) support (default disabled)])
3744 if test "${enable_glide}" = "yes"
3745 then
3746   VLC_ADD_PLUGINS([glide])
3747   VLC_ADD_LDFLAGS([glide],[-lglide2x -lm])
3748   VLC_ADD_CPPFLAGS([glide],[-I/usr/include/glide])
3749   AC_ARG_WITH(glide,
3750     [    --with-glide=PATH     path to libglide],
3751     [ if test "${with_glide}" != "no" -a -n "${with_glide}"
3752       then
3753         VLC_ADD_CPPFLAGS([glide],[-I${with_glide}/include])
3754         VLC_ADD_LDFLAGS([glide],[-L${with_glide}/lib])
3755       fi ])
3756 fi
3757
3758 dnl
3759 dnl  AA plugin
3760 dnl
3761 AC_ARG_ENABLE(aa,
3762   [  --enable-aa             aalib output (default disabled)])
3763 if test "${enable_aa}" = "yes"
3764 then
3765   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3766   if test "${have_aa}" = "true"
3767   then
3768     VLC_ADD_PLUGINS([aa])
3769     VLC_ADD_LDFLAGS([aa],[-laa])
3770   fi
3771 fi
3772
3773 dnl
3774 dnl  libcaca plugin
3775 dnl
3776 AC_ARG_ENABLE(caca,
3777   [  --enable-caca           libcaca output (default disabled)])
3778 if test "${enable_caca}" = "yes"
3779 then
3780   CACA_PATH="${PATH}"
3781   AC_ARG_WITH(caca-config-path,
3782     [    --with-caca-config-path=PATH caca-config path (default search in \$PATH)],
3783     [ if test "${with_caca_config_path}" != "no"
3784       then
3785         CACA_PATH="${with_caca_config_path}:${PATH}"
3786       fi ])
3787   AC_PATH_PROG(CACA_CONFIG, caca-config, no, ${CACA_PATH})
3788   if test "${CACA_CONFIG}" != "no"
3789   then
3790     VLC_ADD_PLUGINS([caca])
3791     VLC_ADD_CFLAGS([caca],[`${CACA_CONFIG} --cflags`])
3792     VLC_ADD_LDFLAGS([caca],[`${CACA_CONFIG} --plugin-libs`])
3793   fi
3794 fi
3795
3796 dnl
3797 dnl  win32 GDI plugin
3798 dnl
3799 AC_ARG_ENABLE(wingdi,
3800   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
3801 if test "${enable_wingdi}" != "no"; then
3802   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
3803     VLC_ADD_PLUGINS([wingdi])
3804     VLC_ADD_LDFLAGS([wingdi],[-lgdi32])
3805   fi
3806   if test "${SYS}" = "mingwce"; then
3807     VLC_ADD_PLUGINS([wingdi wingapi])
3808   fi
3809 fi
3810
3811 dnl
3812 dnl  Audio plugins
3813 dnl
3814
3815 AC_ARG_WITH(,[Audio plugins:])
3816
3817 dnl
3818 dnl  OSS /dev/dsp module (enabled by default except on win32)
3819 dnl
3820 AC_ARG_ENABLE(oss,
3821   [  --enable-oss            Linux OSS /dev/dsp support (enabled on Linux)])
3822
3823 if test "${enable_oss}" != "no" &&
3824   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3825    test "${enable_oss}" = "yes")
3826 then
3827   AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h, [
3828     VLC_ADD_PLUGINS([oss])
3829     AC_CHECK_LIB(ossaudio,main,VLC_ADD_LDFLAGS([oss],[-lossaudio]))
3830   ])
3831 fi
3832
3833 dnl
3834 dnl  Esound module
3835 dnl
3836 AC_ARG_ENABLE(esd,
3837   [  --enable-esd            Esound library support (default disabled)],
3838   [if test "${enable_esd}" = "yes"
3839    then
3840      AC_PATH_PROG(ESD_CONFIG, esd-config, no)
3841      if test "${ESD_CONFIG}" != "no"
3842      then
3843        VLC_ADD_PLUGINS([esd])
3844        VLC_ADD_CFLAGS([esd],[`${ESD_CONFIG} --cflags`])
3845        VLC_ADD_LDFLAGS([esd],[`${ESD_CONFIG} --libs`])
3846      fi
3847    fi])
3848
3849 dnl
3850 dnl  Portaudio module
3851 dnl
3852 AC_ARG_ENABLE(portaudio,
3853   [  --enable-portaudio      Portaudio library support (default disabled)],
3854   [if test "${enable_portaudio}" = "yes"
3855    then
3856      VLC_ADD_PLUGINS([portaudio])
3857      VLC_ADD_CXXFLAGS([portaudio],[])
3858      if test "${SYS}" = "mingw32"; then
3859         VLC_ADD_LDFLAGS([portaudio],[-lportaudio -lwinmm -lole32])
3860      else
3861         VLC_ADD_LDFLAGS([portaudio],[-lportaudio])
3862      fi
3863    fi])
3864
3865 dnl
3866 dnl  aRts module -- broken (freeze wxWidgets)
3867 dnl
3868 AC_ARG_ENABLE(arts,
3869  [  --enable-arts           aRts sound server (default disabled)],
3870  [if test "${enable_arts}" = "yes"
3871   then
3872     AC_PATH_PROG(ARTS_CONFIG, artsc-config, no)
3873     if test "${ARTS_CONFIG}" != "no"
3874     then
3875       VLC_ADD_PLUGINS([arts])
3876       VLC_ADD_CFLAGS([arts],[`${ARTS_CONFIG} --cflags`])
3877       VLC_ADD_LDFLAGS([arts],[`${ARTS_CONFIG} --libs `])
3878     fi
3879   fi])
3880
3881 dnl
3882 dnl  ALSA module
3883 dnl
3884 AC_ARG_ENABLE(alsa,
3885   [  --enable-alsa           ALSA sound support for Linux (default enabled)])
3886 if test "${enable_alsa}" != "no"
3887 then
3888   AC_CHECK_HEADER(alsa/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false")
3889   if test "${have_alsa}" = "true"
3890   then
3891     CFLAGS="${CFLAGS_save}"
3892     AC_TRY_COMPILE([#define ALSA_PCM_NEW_HW_PARAMS_API
3893                     #define ALSA_PCM_NEW_SW_PARAMS_API
3894                     #include <alsa/asoundlib.h>],
3895        [void foo() { snd_pcm_hw_params_get_period_time(0,0,0); }],
3896         AC_DEFINE(HAVE_ALSA_NEW_API, 1, Define if ALSA is at least rc4))
3897     VLC_ADD_PLUGINS([alsa])
3898     VLC_ADD_LDFLAGS([alsa],[-lasound -lm -ldl])
3899   else
3900     if test "${enable_alsa}" = "yes"; then
3901       AC_MSG_ERROR([Could not find ALSA development headers])
3902     fi
3903   fi
3904 fi
3905
3906 dnl
3907 dnl  win32 waveOut plugin
3908 dnl
3909 AC_ARG_ENABLE(waveout,
3910   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
3911 if test "${enable_waveout}" != "no"; then
3912   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
3913     VLC_ADD_PLUGINS([waveout])
3914     VLC_ADD_LDFLAGS([waveout],[-lwinmm])
3915   fi
3916   if test "${SYS}" = "mingwce"; then
3917     VLC_ADD_PLUGINS([waveout])
3918   fi
3919 fi
3920
3921 dnl
3922 dnl  CoreAudio plugin
3923 dnl
3924 AC_ARG_ENABLE(macosx-audio,
3925   [  --enable-macosx-audio   Mac OS X audio module (default enabled on MacOS X)])
3926 if test "${enable_macosx-audio}" != "no" &&
3927   (test "${SYS}" = "darwin" || test "${enable_macosx-audio}" = "yes")
3928 then
3929   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h, 
3930     [ VLC_ADD_BUILTINS([auhal])
3931       VLC_ADD_LDFLAGS([auhal],[-framework CoreAudio -framework AudioUnit -framework AudioToolbox])
3932     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
3933 fi
3934
3935 dnl
3936 dnl  Roku HD1000 audio
3937 dnl
3938 AC_ARG_ENABLE(hd1000a,
3939   [  --enable-hd1000a        HD1000 audio module (default enabled on HD1000)])
3940 if test "${enable_hd1000a}" != "no" -a "${CXX}" != "" &&
3941   (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3942    test "${enable_hd1000a}" = "yes")
3943 then
3944   AC_LANG_PUSH([C++])
3945   AC_CHECK_HEADERS(deschutes/libraries/hdmachinex225/PCMAudioPlayer.h, [
3946     VLC_ADD_PLUGINS([hd1000a])
3947     AC_CHECK_LIB(HDMachineX225,main,VLC_ADD_LDFLAGS([hd1000a],[-lHDMachineX225]))  ])
3948   AC_LANG_POP([C++])
3949 fi
3950
3951 dnl
3952 dnl  CyberLink for C++ UPnP stack
3953 dnl
3954 AC_ARG_ENABLE(cyberlink,
3955   [  --enable-cyberlink      CyberLink for C++ UPnP stack (default disabled)])
3956 AS_IF([test "${CXX}" != "" -a "${enable_cyberlink}" = "yes" || (test "${enable_cyberlink}" != "no")], [
3957   AC_ARG_WITH(cyberlink-tree,
3958     [    --with-cyberlink-tree=PATH CyberLink for C++ tree for static linking])
3959
3960   dnl
3961   dnl test for --with-cyberlink-tree
3962   dnl
3963   AS_IF([test ! -z "${with_cyberlink_tree}" -a "${CXX}" != ""], [
3964     AC_LANG_PUSH(C++)
3965     real_cyberlink_tree="`cd ${with_cyberlink_tree} 2>/dev/null && pwd`"
3966     AS_IF([test -z "${real_cyberlink_tree}"], [
3967       dnl  The given directory can't be found
3968       AC_MSG_RESULT(no)
3969       AC_MSG_ERROR([cannot cd to ${with_cyberlink_tree}])
3970     ])
3971     CPPFLAGS_save="${CPPFLAGS}"
3972     CPPFLAGS_cyberlink="-I${real_cyberlink_tree}/include"
3973     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_cyberlink}"
3974     AC_CHECK_HEADERS([cybergarage/upnp/MediaServer.h],
3975       [ VLC_ADD_CXXFLAGS([upnp], [${CPPFLAGS_cyberlink}])
3976         VLC_ADD_PLUGINS([upnp]) 
3977       ],[
3978         AC_MSG_ERROR([cannot find CyberLink for C++ headers])
3979       ])
3980     AC_MSG_CHECKING(for libclink.a in ${with_cyberlink_tree})
3981     AS_IF([test -f "${real_cyberlink_tree}/lib/unix/libclink.a"], [
3982       AC_MSG_RESULT(${real_cyberlink_tree}/lib/unix/libclink.a)
3983       VLC_ADD_LDFLAGS([upnp], [${real_cyberlink_tree}/lib/unix/libclink.a -lexpat])
3984     ], [
3985       AC_MSG_RESULT(no)
3986       AC_MSG_ERROR([cannot find ${real_cyberlink_tree}/lib/unix/libclink.a, make sure you compiled CyberLink for C++ in ${with_cyberlink_tree}])
3987     ])
3988     CPPFLAGS="${CPPFLAGS_save}"
3989     AC_LANG_POP([C++])
3990   ])
3991 ])
3992
3993 dnl
3994 dnl  Interface plugins
3995 dnl
3996
3997 AC_ARG_WITH(,[Interface plugins:])
3998
3999 dnl special case for BeOS
4000 if test "${SYS}" = "beos"
4001 then
4002     VLC_ADD_BUILTINS([beos])
4003 fi
4004
4005 dnl
4006 dnl Skins2 module
4007 dnl
4008 AC_ARG_ENABLE(skins2,
4009   [  --enable-skins2         Skins2 interface module (experimental)])
4010 if test "${enable_skins2}" = "yes" ||
4011   (test "${SYS}" != "darwin" && test "${SYS}" != "beos" &&
4012    test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then
4013
4014   dnl test for the required libraries
4015   skins2_missing_lib="no"
4016
4017   dnl freetype
4018   if test "${FREETYPE_CONFIG}" != "no"; then
4019     VLC_ADD_CPPFLAGS([skins2],[`${FREETYPE_CONFIG} --cflags`])
4020     VLC_ADD_LDFLAGS([skins2],[`${FREETYPE_CONFIG} --libs`])
4021   else
4022     skins2_missing_lib="yes"
4023     if test "${enable_skins2}" = "yes"; then
4024       AC_MSG_ERROR([Could not find freetype (required for skins2)])
4025     fi
4026   fi
4027
4028   if test "${skins2_missing_lib}" = "no" && (test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"); then
4029     VLC_ADD_PLUGINS([skins2])
4030     ALIASES="${ALIASES} svlc"
4031     VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -Imodules/gui/skins2 -DWIN32_SKINS])
4032     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
4033     VLC_ADD_LDFLAGS([skins2],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
4034
4035   else if test "${skins2_missing_lib}" = "no"; then
4036     VLC_ADD_PLUGINS([skins2])
4037     ALIASES="${ALIASES} svlc"
4038     VLC_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 -I${x_includes} -DX11_SKINS])
4039     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
4040     VLC_ADD_LDFLAGS([skins2],[-L${x_libraries} -lXext -lX11])
4041   fi fi
4042 fi
4043
4044
4045 dnl dnl
4046 dnl dnl  Gtk+ module
4047 dnl dnl
4048 dnl AC_ARG_ENABLE(gtk,
4049 dnl   [  --enable-gtk            Gtk+ support (default enabled)])
4050 dnl if test "${enable_gtk}" != "no"
4051 dnl then
4052 dnl   GTK_PATH="${PATH}"
4053 dnl   AC_ARG_WITH(gtk-config-path,
4054 dnl     [    --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)],
4055 dnl     [ if test "${with_gtk_config_path}" != "no"
4056 dnl       then
4057 dnl         GTK_PATH="${with_gtk_config_path}:${PATH}"
4058 dnl       fi ])
4059 dnl   # look for gtk-config
4060 dnl   AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH})
4061 dnl   GTK_CONFIG=${GTK12_CONFIG}
4062 dnl   if test "${GTK_CONFIG}" = "no"
4063 dnl   then
4064 dnl     AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH})
4065 dnl   fi
4066 dnl   if test "${GTK_CONFIG}" != "no"
4067 dnl   then
4068 dnl     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
4069 dnl     then
4070 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.])
4071 dnl     fi
4072 dnl     if test "${SYS}" != "mingw32"; then
4073 dnl       VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk gthread`])
4074 dnl       VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`])
4075 dnl     else
4076 dnl       VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk`])
4077 dnl       VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`])
4078 dnl     fi
4079 dnl     # now look for the gtk.h header
4080 dnl     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gtk}"
4081 dnl     ac_cv_gtk_headers=yes
4082 dnl     AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [
4083 dnl       ac_cv_gtk_headers=no
4084 dnl       echo "Cannot find gtk development headers."
4085 dnl     ])
4086 dnl     if test "${ac_cv_gtk_headers}" = "yes"
4087 dnl     then
4088 dnl       VLC_ADD_PLUGINS([gtk])
4089 dnl       if test "${SYS}" != "mingw32"; then
4090 dnl         NEED_GTK_MAIN=yes
4091 dnl       fi
4092 dnl       ALIASES="${ALIASES} gvlc"
4093 dnl     fi
4094 dnl     CPPFLAGS="${CPPFLAGS_save}"
4095 dnl   fi
4096 dnl fi
4097 dnl 
4098 dnl
4099 dnl  Gtk+2 module ! Disabled for now as it is unusable and confuses users
4100 dnl
4101 dnl AC_ARG_ENABLE(gtk2,
4102 dnl   [  --enable-gtk2           Gtk2 support (default disabled)])
4103 dnl if test "${enable_gtk2}" = "yes"
4104 dnl then
4105 dnl   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
4106 dnl   VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
4107 dnl   VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
4108 dnl   VLC_ADD_PLUGINS([gtk2])
4109 dnl   if test "${SYS}" != "mingw32"; then
4110 dnl     NEED_GTK2_MAIN=yes
4111 dnl   fi
4112 dnl fi
4113
4114 dnl
4115 dnl  PDA Gtk+2 module
4116 dnl
4117 AC_ARG_ENABLE(pda,
4118   [  --enable-pda            PDA interface needs Gtk2 support (default disabled)])
4119 if test "${enable_pda}" = "yes"
4120 then
4121   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
4122   VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
4123   VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
4124   VLC_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}])
4125   VLC_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}])
4126   VLC_ADD_PLUGINS([pda])
4127   if test "${SYS}" != "mingw32"; then
4128     NEED_GTK2_MAIN=yes
4129   fi
4130 fi
4131
4132 dnl dnl
4133 dnl dnl  Gnome module
4134 dnl dnl
4135 dnl AC_ARG_ENABLE(gnome,
4136 dnl   [  --enable-gnome          Gnome interface support (default disabled)],
4137 dnl   [if test "${enable_gnome}" = "yes"; then
4138 dnl     # look for gnome-config
4139 dnl     AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
4140 dnl     if test -x ${GNOME_CONFIG}
4141 dnl     then
4142 dnl        VLC_ADD_CFLAGS([gnome],[`${GNOME_CONFIG} --cflags gtk gnomeui`])
4143 dnl        VLC_ADD_LDFLAGS([gnome],[`${GNOME_CONFIG} --libs gnomeui | sed 's,-rdynamic,,'`])
4144 dnl     fi
4145 dnl     # now look for the gnome.h header
4146 dnl     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gnome}"
4147 dnl     AC_CHECK_HEADERS(gnome.h, [
4148 dnl       VLC_ADD_PLUGINS([gnome])
4149 dnl       NEED_GTK_MAIN=yes
4150 dnl       NEED_GNOME_MAIN=yes
4151 dnl       ALIASES="${ALIASES} gnome-vlc"
4152 dnl       dnl We need this because of some moronic gnomesupport.h flavours
4153 dnl       AC_MSG_CHECKING(for strndup in gnome.h)
4154 dnl       AC_EGREP_HEADER(strndup,gnome.h,[
4155 dnl         AC_MSG_RESULT(yes)
4156 dnl         AC_DEFINE(STRNDUP_IN_GNOME_H, 1,
4157 dnl                   Define if <gnome.h> defines strndup.)],[
4158 dnl         AC_MSG_RESULT(no)])
4159 dnl      ],[
4160 dnl       AC_MSG_ERROR([Can't find gnome headers. Please install the gnome
4161 dnl developement tools or remove the --enable-gnome option])
4162 dnl      ])
4163 dnl     CPPFLAGS="${CPPFLAGS_save}"
4164 dnl   fi])
4165
4166 dnl
4167 dnl  Gnome2 module ! Disabled for know as it is unuseable and confuses users
4168 dnl
4169 dnl AC_ARG_ENABLE(gnome2,
4170 dnl   [  --enable-gnome2         Gnome2 support (default disabled)])
4171 dnl if test "${enable_gnome2}" = "yes"
4172 dnl then
4173 dnl   PKG_CHECK_MODULES(GNOME2, [libgnomeui-2.0])
4174 dnl   VLC_ADD_CFLAGS([gnome2],[${GNOME2_CFLAGS}])
4175 dnl   VLC_ADD_LDFLAGS([gnome2],[${GNOME2_LIBS}])
4176 dnl   VLC_ADD_PLUGINS([gnome2])
4177 dnl   if test "${SYS}" != "mingw32"; then
4178 dnl     NEED_GNOME2_MAIN=yes
4179 dnl   fi
4180 dnl fi
4181
4182 dnl
4183 dnl  wxWidgets module
4184 dnl
4185 AC_ARG_ENABLE(wxwidgets,
4186   [  --enable-wxwidgets      wxWidgets support (default enabled)])
4187 if test "${enable_wxwindows}" 
4188 then
4189   AC_MSG_WARN(--{en|dis}able-wxwindows is deprecated. Use --{en|dis}able-wxwidgets instead.)
4190 fi
4191
4192 if test "${enable_wxwindows}" = "no"
4193 then
4194   enable_wxwidgets="no"
4195 fi
4196 if test "${enable_wxwidgets}" != "no"
4197 then
4198   WXWIDGETS_PATH="${PATH}"
4199   AC_ARG_WITH(wx-config-path,
4200     [    --with-wx-config-path=PATH wx-config path (default search in \$PATH)],
4201     [ if test "${with_wx_config_path}" != "no"
4202       then
4203         WXWIDGETS_PATH="${with_wx_config_path}:${PATH}"
4204       fi ])
4205   WXWIDGETS_NAME="wx-config"
4206   AC_ARG_WITH(wx-config,
4207     [    --with-wx-config=NAME      wx-config name (default is wx-config)],
4208     [ if test "${with_wx_config}" != "no"
4209       then
4210         WXWIDGETS_NAME="${with_wx_config}"
4211       fi ])
4212   # look for wx-config
4213   AC_PATH_PROG(WX_CONFIG, ${WXWIDGETS_NAME}, no, ${WXWIDGETS_PATH})
4214   if test "${WX_CONFIG}" != "no" -a "${CXX}" != ""
4215   then
4216     if expr 2.3.0 \> `${WX_CONFIG} --version` >/dev/null
4217     then
4218       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.])
4219     fi
4220     AC_LANG_PUSH(C++)
4221     # Turn this error:
4222     #   playlist.cpp:1351: error: ISO C++ forbids cast to non-reference type
4223     # into a warning. However better would be to fix playlist.cpp
4224     AC_CACHE_CHECK([if \$CXX accepts -fpermissive],
4225         [ac_cv_cxx_fpermissive],
4226         [CXXFLAGS="${CXXFLAGS_save} -fpermissive"
4227          AC_TRY_COMPILE([],,ac_cv_cxx_fpermissive=yes,
4228                         ac_cv_cxx_fpermissive=no)])
4229     if test "${ac_cv_cxx_fpermissive}" = "yes"; then
4230       VLC_ADD_CXXFLAGS([wxwidgets],-fpermissive)
4231     fi
4232     VLC_ADD_LDFLAGS([wxwidgets],[`${WX_CONFIG} --libs`])
4233     VLC_ADD_CXXFLAGS([wxwidgets],[`${WX_CONFIG} --cxxflags`])
4234     if ${WX_CONFIG} --unicode
4235     then 
4236       # wxwidgets should provide the following flags but does not
4237       # the following is required to compile for win32
4238       VLC_ADD_CXXFLAGS([wxwidgets],[-D_UNICODE -DUNICODE])
4239     fi
4240     if test "$have_libcdio" = "yes"
4241     then 
4242       VLC_ADD_LDFLAGS([wxwidgets],[$LIBCDIO_LIBS])
4243       VLC_ADD_CXXFLAGS([wxwidgets],[$LIBCDIO_CFLAGS])
4244     else 
4245       AC_MSG_WARN([Probe disc disabled because ok libcdio library not found])
4246     fi
4247
4248     if test "$have_libvcdinfo" = "yes"
4249     then 
4250       VLC_ADD_LDFLAGS([wxwidgets],[$VCDINFO_LIBS])
4251       VLC_ADD_CXXFLAGS([wxwidgets],[$VCDINFO_CFLAGS])
4252     else 
4253       AC_MSG_WARN([VCD information on Probe disc disabled because ok libvcdinfo not found])
4254     fi
4255
4256     # now look for the wxprec.h header
4257     CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_wxwidgets}"
4258     ac_cv_wx_headers=yes
4259     AC_CHECK_HEADERS(wx/wxprec.h, , [
4260       ac_cv_wx_headers=no
4261       echo "Cannot find wxWidgets development headers."
4262     ])
4263     if test "${ac_cv_wx_headers}" = "yes"
4264     then
4265       VLC_ADD_PLUGINS([wxwidgets])
4266       ALIASES="${ALIASES} wxvlc"
4267     fi
4268     CPPFLAGS="${CPPFLAGS_save}"
4269     AC_LANG_POP(C++)
4270   fi
4271 fi
4272
4273 dnl
4274 dnl  WinCE GUI module
4275 dnl
4276 if test "${SYS}" = "mingwce"; then
4277   VLC_ADD_BUILTINS([wince])
4278   VLC_ADD_CXXFLAGS([wince],[])
4279   VLC_ADD_LDFLAGS([wince],[-lcommctrl -lcommdlg -laygshell])
4280   dnl Gross hack
4281   VLC_ADD_LDFLAGS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
4282 elif test "${SYS}" = "mingw32"; then
4283   VLC_ADD_CXXFLAGS([wince],[])
4284   VLC_ADD_LDFLAGS([wince],[-lcomctl32 -lcomdlg32 -lgdi32 -lole32])
4285   dnl Gross hack
4286   VLC_ADD_LDFLAGS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
4287 fi
4288
4289 dnl
4290 dnl Simple test for skins2 dependency
4291 dnl
4292 if test "${enable_skins2}" != "no"
4293 then
4294   if test "${WX_CONFIG}" = "no"
4295   then
4296     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.])
4297   fi
4298 fi
4299
4300 dnl dnl
4301 dnl dnl  Qt module
4302 dnl dnl
4303 dnl AC_ARG_ENABLE(qt,
4304 dnl   [  --enable-qt             Qt interface support (default disabled)],
4305 dnl   [if test "${enable_qt}" = "yes"; then
4306 dnl      VLC_ADD_PLUGINS([qt])
4307 dnl      ALIASES="${ALIASES} qvlc"
4308 dnl      VLC_ADD_LDFLAGS([qt],[-L${QTDIR}/lib])
4309 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt}"
4310 dnl      AC_CHECK_LIB(qt-mt,main,[
4311 dnl        VLC_ADD_LDFLAGS([qt],[-lqt-mt])
4312 dnl      ],[
4313 dnl        AC_CHECK_LIB(qt,main,[
4314 dnl          VLC_ADD_LDFLAGS([qt],[-lqt])
4315 dnl        ])
4316 dnl      ])
4317 dnl      LDFLAGS="${LDFLAGS_save}"
4318 dnl      VLC_ADD_CXXFLAGS([qt],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
4319 dnl      if test -x ${QTDIR}/bin/moc
4320 dnl      then
4321 dnl        MOC=${QTDIR}/bin/moc
4322 dnl      else
4323 dnl        MOC=moc
4324 dnl      fi
4325 dnl    fi])
4326 dnl 
4327 dnl dnl
4328 dnl dnl  KDE module
4329 dnl dnl
4330 dnl AC_ARG_ENABLE(kde,
4331 dnl   [  --enable-kde            KDE interface support (default disabled)],
4332 dnl   [if test "${enable_kde}" = "yes"; then
4333 dnl      VLC_ADD_PLUGINS([kde])
4334 dnl      ALIASES="${ALIASES} kvlc"
4335 dnl      VLC_ADD_LDFLAGS([kde],[-L${KDEDIR}/lib])
4336 dnl      dnl Check for -lkfile (only in KDE 2) or -lkdeui -lkio (KDE 3)
4337 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
4338 dnl      AC_CHECK_LIB(kfile,main,[
4339 dnl        VLC_ADD_LDFLAGS([kde],[-lkfile])
4340 dnl      ])
4341 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
4342 dnl      AC_CHECK_LIB(kdeui,main,[
4343 dnl        VLC_ADD_LDFLAGS([kde],[-lkdeui])
4344 dnl      ])
4345 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
4346 dnl      AC_CHECK_LIB(kio,main,[
4347 dnl        VLC_ADD_LDFLAGS([kde],[-lkio])
4348 dnl      ])
4349 dnl      LDFLAGS="${LDFLAGS_save}"
4350 dnl      VLC_ADD_CXXFLAGS([kde],[-I/usr/include/kde -I/usr/include/qt3 -I/usr/include/qt])
4351 dnl      VLC_ADD_CXXFLAGS([kde],[-I${KDEDIR}/include -I${QTDIR}/include])
4352 dnl      if test -x ${QTDIR}/bin/moc
4353 dnl      then
4354 dnl        MOC=${QTDIR}/bin/moc
4355 dnl      else
4356 dnl        MOC=moc
4357 dnl      fi
4358 dnl    fi])
4359
4360 dnl
4361 dnl  Opie QT embedded module
4362 dnl
4363 AC_ARG_ENABLE(opie,
4364   [  --enable-opie           Qt embedded interface support (default disabled)],
4365   [if test "${enable_opie}" = "yes"; then
4366      AC_ARG_WITH(qte,
4367      [    --with-qte=PATH       Qt Embedded headers and libraries])
4368      if test "${with_qte}" != "no" -a -n "${with_qte}"
4369      then
4370        VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
4371        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])
4372      else
4373        VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'`])
4374        VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'`])
4375      fi
4376      CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
4377      AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
4378        AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
4379      ] )
4380      CPPFLAGS="${CPPFLAGS_save}"
4381
4382      VLC_ADD_PLUGINS([opie])
4383      NEED_QTE_MAIN=yes
4384      VLC_ADD_LDFLAGS([opie],[-lqpe ${LDFLAGS_qte}])
4385      VLC_ADD_CXXFLAGS([opie],[${CXXFLAGS_qte}])
4386      if test "${with_qte}" != "no" -a -n "${with_qte}"
4387      then
4388        MOC=${with_qte}/bin/moc
4389      else
4390        MOC=${QTDIR}/bin/moc
4391      fi
4392    fi])
4393
4394 dnl
4395 dnl  MacOS X module
4396 dnl
4397 AC_ARG_ENABLE(macosx,
4398   [  --enable-macosx         MacOS X support (default enabled on MacOS X)],
4399   [if test "${enable_macosx}" = "yes"
4400    then
4401      VLC_ADD_BUILTINS([macosx])
4402      VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
4403    fi],
4404   [AC_CHECK_HEADERS(Cocoa/Cocoa.h,
4405      VLC_ADD_BUILTINS([macosx])
4406      VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
4407    )])
4408
4409 dnl
4410 dnl  QNX RTOS module
4411 dnl
4412 AC_ARG_ENABLE(qnx,
4413   [  --enable-qnx            QNX RTOS support (default enabled on QNX RTOS)])
4414     if test "${enable_qnx}" != "no"
4415     then
4416       AC_CHECK_HEADERS(Ph.h, [
4417         VLC_ADD_PLUGINS([qnx])
4418         VLC_ADD_LDFLAGS([qnx],[-lasound -lph])
4419       ])
4420     fi
4421
4422 dnl
4423 dnl  ncurses module
4424 dnl
4425 AC_ARG_ENABLE(ncurses,
4426   [  --enable-ncurses        ncurses interface support (default disabled)],
4427   [if test "${enable_ncurses}" = "yes"; then
4428      VLC_ADD_PLUGINS([ncurses])
4429      VLC_ADD_LDFLAGS([ncurses],[-lncurses])
4430    fi])
4431
4432 dnl
4433 dnl  XOSD plugin
4434 dnl
4435 AC_ARG_ENABLE(xosd,
4436   [  --enable-xosd           xosd interface support (default disabled)])
4437 if test "${enable_xosd}" = "yes"
4438 then
4439   AC_CHECK_HEADER(xosd.h, have_xosd="true", have_xosd="false")
4440   AC_CHECK_LIB(xosd,xosd_set_offset,
4441       AC_DEFINE(HAVE_XOSD_VERSION_1, 1, Define if <xosd.h> is 1.0.x),
4442     AC_CHECK_LIB(xosd,xosd_set_horizontal_offset,
4443         AC_DEFINE(HAVE_XOSD_VERSION_2, 1, Define if <xosd.h> is 2.0.x),
4444       AC_TRY_COMPILE([#include <xosd.h>],
4445          [void foo() { xosd_init("foo","bar",12,XOSD_top,2,12,42); }],,
4446           AC_DEFINE(HAVE_XOSD_VERSION_0, 1, Define if <xosd.h> is pre-1.0.0))))
4447   if test "${have_xosd}" = "true"
4448   then
4449     VLC_ADD_PLUGINS([xosd])
4450     VLC_ADD_LDFLAGS([xosd],[-lxosd])
4451   fi
4452 fi
4453
4454 dnl
4455 dnl Visualisation plugin
4456 dnl
4457 AC_ARG_ENABLE(visual,
4458   [  --enable-visual         visualisation plugin (default enabled)])
4459 if test "${enable_visual}" != "no"
4460 then
4461     VLC_ADD_PLUGINS([visual])
4462 fi
4463
4464 dnl
4465 dnl OpenGL visualisation plugin
4466 dnl
4467 AC_ARG_ENABLE(galaktos,
4468   [  --enable-galaktos       OpenGL visualisation plugin (default disabled)])
4469 if test "${enable_galaktos}" = "yes"
4470 then
4471   AC_CHECK_HEADERS(GL/gl.h, [
4472     VLC_ADD_PLUGINS([galaktos])
4473     if test "${SYS}" != "mingw32"; then
4474       VLC_ADD_LDFLAGS([galaktos],[-L${x_libraries} -lGL -lGLU])
4475     else
4476       VLC_ADD_LDFLAGS([galaktos],[-lopengl32])
4477     fi
4478   ])
4479 fi
4480
4481 dnl
4482 dnl  goom visualization plugin
4483 dnl
4484 AC_ARG_ENABLE(goom,
4485 [  --enable-goom           goom visualisation plugin (default disabled)])
4486 if test "${enable_goom}" = "yes"
4487 then
4488   AC_ARG_WITH(goom-tree,
4489     [    --with-goom-tree=PATH goom tree for static linking (required)])
4490
4491   dnl
4492   dnl test for --with-goom-tree
4493   dnl
4494   if test "${with_goom_tree}" != "no" -a -n "${with_goom_tree}"; then
4495     AC_MSG_CHECKING(for libgoom2.a in ${with_goom_tree})
4496     real_goom_tree="`cd ${with_goom_tree} 2>/dev/null && pwd`"
4497     if test -z "${real_goom_tree}"; then
4498       dnl  The given directory can't be found
4499       AC_MSG_RESULT(no)
4500       AC_MSG_ERROR([cannot cd to ${with_goom_tree}])
4501     fi
4502     if test -f "${real_goom_tree}/src/.libs/libgoom2.a"; then
4503       AC_MSG_RESULT(${real_goom_tree}/src/.libs/libgoom2.a)
4504       VLC_ADD_BUILTINS([goom])
4505       VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree}/src/.libs -lgoom2])
4506       VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree}/src -DUSE_GOOM_TREE])
4507     else
4508       dnl  The given libgoom2 wasn't built, try to look for the old goom
4509       AC_MSG_RESULT(no)
4510       AC_MSG_CHECKING(for libgoom.a in ${with_goom_tree})
4511       if test -f "${real_goom_tree}/libgoom.a"; then
4512         AC_MSG_RESULT(${real_goom_tree}/libgoom.a)
4513         VLC_ADD_BUILTINS([goom])
4514         VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree} -lgoom])
4515         VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree} -DUSE_GOOM_TREE -DOLD_GOOM])
4516       else
4517         dnl  The given libgoom wasn't built
4518         AC_MSG_RESULT(no)
4519         AC_MSG_ERROR([cannot find ${real_goom_tree}/src/.libs/libgoom2.a, make sure you compiled goom in ${with_goom_tree}])
4520       fi
4521     fi
4522   else
4523     AC_CHECK_HEADERS(goom/goom.h, [
4524       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_goom}"
4525       AC_CHECK_LIB(goom2, goom_init, [
4526         VLC_ADD_PLUGINS([goom])
4527         VLC_ADD_LDFLAGS([goom],[-lgoom2])
4528       ],[
4529         AC_MSG_ERROR([Could not find goom on your system: you may get it from http://www.ios-software.com/.])
4530       ])
4531       LDFLAGS="${LDFLAGS_save}"
4532     ])
4533   fi
4534 fi
4535
4536 dnl
4537 dnl DAAP access plugin and services discovery 
4538 dnl
4539 AC_ARG_ENABLE(daap,
4540   [  --enable-daap                DAAP shares services discovery support (default enabled)])
4541 if test "$enable_daap" != "no"
4542 then
4543    PKG_CHECK_MODULES(DAAP, opendaap >= 0.3.0,
4544       [ VLC_ADD_PLUGINS([daap])
4545        VLC_ADD_LDFLAGS([daap],[$DAAP_LIBS])
4546        VLC_ADD_CFLAGS([daap],[$DAAP_CFLAGS])]:,
4547       [AC_MSG_WARN(DAAP library not found)])
4548 fi
4549
4550 dnl
4551 dnl  Bonjour services discovery
4552 dnl
4553 AC_ARG_ENABLE(bonjour,
4554   [  --enable-bonjour        Bonjour services discovery (default enabled)])
4555 if test "${enable_bonjour}" != "no"
4556 then
4557   PKG_CHECK_MODULES(BONJOUR, avahi-client >= 0.3,
4558     [PKG_CHECK_MODULES(BONJOUR, avahi-client >= 0.6,
4559        [AC_DEFINE(HAVE_AVAHI_06, [], [Define if you have avahi-client 0.6 or greater])],)
4560       AC_DEFINE(HAVE_AVAHI_CLIENT, [], [Define if you have the avahi-client library])
4561       VLC_ADD_LDFLAGS([bonjour access_output_http],[$BONJOUR_LIBS])
4562       VLC_ADD_CFLAGS([bonjour access_output_http],[$BONJOUR_CFLAGS])
4563       VLC_ADD_PLUGINS([bonjour]) ],
4564     [AC_MSG_WARN(avahi-client library not found)])
4565 fi
4566
4567 dnl
4568 dnl  Lirc plugin
4569 dnl
4570 AC_ARG_ENABLE(lirc,
4571   [  --enable-lirc           lirc support (default disabled)])
4572 if test "${enable_lirc}" = "yes"
4573 then
4574   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
4575   if test "${have_lirc}" = "true"
4576   then
4577     VLC_ADD_PLUGINS([lirc])
4578     VLC_ADD_LDFLAGS([lirc],[-llirc_client])
4579   fi
4580 fi
4581
4582
4583 dnl
4584 dnl corba (ORBit) plugin
4585 dnl
4586 dnl Default: do not enable corba
4587 enablecorba=false
4588 AC_ARG_ENABLE(corba,
4589   [  --enable-corba          corba interface support (default disabled)])
4590 if test "${enable_corba}" = "yes"; then
4591       GLIB_VERSION=2.3.2
4592       PKG_CHECK_MODULES(CORBA, 
4593         ORBit-2.0 >= 2.8.0 \
4594         glib-2.0 >= $GLIB_VERSION \
4595         gobject-2.0 >= $GLIB_VERSION \
4596         gthread-2.0 >= $GLIB_VERSION,
4597         [
4598           enablecorba=true
4599           VLC_ADD_LDFLAGS([corba],[$CORBA_LIBS])
4600           VLC_ADD_CFLAGS([corba],[$CORBA_CFLAGS])
4601           VLC_ADD_PLUGINS([corba snapshot]) ],
4602         [ enablecorba=false
4603           AC_MSG_WARN(corba library not found) ])
4604 fi
4605 AM_CONDITIONAL(ENABLE_CORBA, test "$enablecorba" = "true")
4606
4607 AC_ARG_WITH(,[Misc options:])
4608
4609 dnl
4610 dnl  Endianness check, AC_C_BIGENDIAN doesn't work if we are cross-compiling
4611 dnl
4612 dnl  We give the user the opportunity to specify
4613 dnl  --with-words=big or --with-words=little ; otherwise, try to guess
4614 dnl
4615 AC_ARG_WITH(words,
4616   [    --with-words=endianness set endianness (big or little)])
4617   case "${with_words}" in
4618     big)
4619       ac_cv_c_bigendian=yes
4620       ;;
4621     little)
4622       ac_cv_c_bigendian=no
4623       ;;
4624     *)
4625       dnl  Try to guess endianness by matching patterns on a compiled
4626       dnl  binary, by looking for an ASCII or EBCDIC string
4627       AC_CACHE_CHECK([whether the byte order is big-endian],
4628         [ac_cv_c_bigendian],
4629         [ac_cv_c_bigendian="unknown"
4630         [cat >conftest.c <<EOF
4631         short am[] = { 0x4249, 0x4765, 0x6e44, 0x6961, 0x6e53, 0x7953, 0 };
4632         short ai[] = { 0x694c, 0x5454, 0x656c, 0x6e45, 0x6944, 0x6e61, 0 };
4633         void _a(void) { char*s = (char*)am; s = (char *)ai; }
4634         short ei[] = { 0x89D3, 0xe3e3, 0x8593, 0x95c5, 0x89c4, 0x9581, 0 };
4635         short em[] = { 0xc2c9, 0xc785, 0x95c4, 0x8981, 0x95e2, 0xa8e2, 0 };
4636         void _e(void) { char*s = (char*)em; s = (char*)ei; }
4637         int main(void) { _a(); _e(); return 0; }
4638 EOF
4639         ]
4640         if test -f conftest.c
4641         then
4642           if ${CC-cc} -c conftest.c -o conftest.o >>config.log 2>&1 \
4643               && test -f conftest.o
4644           then
4645             if test "`strings conftest.o | grep BIGenDianSyS`"
4646             then
4647               ac_cv_c_bigendian="yes"
4648             fi
4649             if test "`strings conftest.o | grep LiTTleEnDian`"
4650             then
4651               ac_cv_c_bigendian="no"
4652             fi
4653           fi
4654         fi
4655       ])
4656       if test "${ac_cv_c_bigendian}" = "unknown"
4657       then
4658         AC_MSG_ERROR([Could not guess endianness, please use --with-words])
4659       fi
4660       ;;
4661   esac
4662 dnl  Now we know what to use for endianness, just put it in the header
4663 if test "${ac_cv_c_bigendian}" = "yes"
4664 then
4665   AC_DEFINE(WORDS_BIGENDIAN, 1, big endian system)
4666 fi
4667
4668 dnl
4669 dnl  DLL loader copied from MPlayer copied from somewhere else (WINE ?)
4670 dnl
4671 loader=false
4672 AC_ARG_ENABLE(loader,
4673   [  --enable-loader         build DLL loader for ELF i386 platforms (default disabled)])
4674 AM_CONDITIONAL(LOADER, [test "${enable_loader}" = "yes"])
4675 AS_IF([test "${enable_loader}" = "yes"],
4676   [ VLC_ADD_PLUGINS([dmo quicktime])
4677     VLC_ADD_CPPFLAGS([dmo],[-I../../../@top_srcdir@/loader])
4678     VLC_ADD_LDFLAGS([dmo],[../../../loader/libloader.a])
4679     VLC_ADD_CPPFLAGS([quicktime],[-I../../@top_srcdir@/loader])
4680     VLC_ADD_LDFLAGS([quicktime],[../../loader/libloader.a])
4681     VLC_ADD_CPPFLAGS([realaudio],[-I../../@top_srcdir@/loader -DLOADER])
4682     VLC_ADD_LDFLAGS([realaudio],[../../loader/libloader.a])
4683   ])
4684
4685 dnl
4686 dnl  Microsoft ActiveX support
4687 dnl
4688 activex=false
4689 AC_ARG_ENABLE(activex,
4690   [  --enable-activex        build a vlc-based ActiveX control (default enabled on Win32)])
4691 if test "${enable_activex}" != "no"
4692 then
4693   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
4694   then
4695     AC_CHECK_PROGS(MIDL, [midl widl], no)
4696     AC_LANG_PUSH(C++)
4697     AC_CHECK_HEADERS(ole2.h olectl.h,
4698       [ VLC_ADD_CXXFLAGS([activex],[-fno-exceptions])
4699         VLC_ADD_LDFLAGS([activex],[-lole32 -loleaut32 -luuid -lshlwapi]) 
4700         AC_CHECK_HEADERS(objsafe.h,
4701           VLC_ADD_CXXFLAGS([activex],[-DHAVE_OBJSAFE_HEADER]),,
4702           [#if HAVE_OLE2_H
4703            #   include <ole2.h>
4704            #endif]
4705         )
4706         activex=:
4707       ],
4708       [ AC_MSG_ERROR([required OLE headers are missing from your system]) ]
4709     )
4710     AC_LANG_POP(C++)
4711   fi
4712 fi
4713 AC_ARG_VAR(MIDL, [Microsoft IDL compiler (Win32 platform only)])
4714 AM_CONDITIONAL(HAS_MIDL_COMPILER, test "${MIDL}" != "no")
4715 AM_CONDITIONAL(BUILD_ACTIVEX,${activex})
4716
4717 dnl
4718 dnl  Mozilla plugin
4719 dnl
4720 mozilla=false
4721 AC_ARG_ENABLE(mozilla,
4722   [  --enable-mozilla        build a vlc-based Mozilla plugin (default disabled)])
4723 AC_ARG_WITH(mozilla-sdk-path,
4724   [    --with-mozilla-sdk-path=PATH path to mozilla sdk])
4725
4726 if test "${enable_mozilla}" = "yes" -a "${with_mozilla_sdk_path}" = ""
4727 then
4728   AC_PATH_PROG(MOZILLA_CONFIG, mozilla-config, no)
4729   if test "${MOZILLA_CONFIG}" = "no"
4730   then
4731     AC_MSG_ERROR([Please install the Mozilla development tools, mozilla-config was not found.])
4732   else
4733     if test "${SYS}" != "mingw32"; then
4734       LDFLAGS="${LDFLAGS_save} -L${x_libraries}"
4735       AC_CHECK_LIB(Xt,XtStrings,
4736        [VLC_ADD_LDFLAGS([mozilla],[-L${x_libraries} -lXt -lX11 -lSM -lICE])],
4737        [],
4738        [[-L${x_libraries} -lX11 -lSM -lICE]
4739       ])
4740       LDFLAGS="${LDFLAGS_save}"
4741     fi
4742     mozilla=:
4743     dnl Workaround for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=150490
4744     VLC_ADD_CPPFLAGS([mozilla],[[`${MOZILLA_CONFIG} --cflags plugin xpcom java | sed 's,-I\([^ ]*\)/mozilla/\([^ ]*\),-I\1/\2 -I\1/mozilla/\2,g' | xargs`]])
4745     VLC_ADD_LDFLAGS([mozilla],[`${MOZILLA_CONFIG} --libs plugin xpcom`])
4746     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mozilla}"
4747     AC_CHECK_HEADERS(mozilla-config.h)
4748     CPPFLAGS="${CPPFLAGS_save}"
4749   fi
4750
4751 dnl special case for mingw32
4752 elif test "${enable_mozilla}" = "yes"
4753 then
4754   if test "${SYS}" = "mingw32"; then
4755     AC_CHECK_TOOL(CYGPATH, cygpath, "")
4756     mozilla_sdk_xpcom="/xpcom"
4757   fi
4758
4759   real_mozilla_sdk="`cd ${with_mozilla_sdk_path} 2>/dev/null && pwd`"
4760   CPPFLAGS="${CPPFLAGS_save} -I${real_mozilla_sdk} -I${real_mozilla_sdk}/include"
4761   AC_CHECK_HEADERS(mozilla-config.h, [
4762     mozilla=:
4763     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])
4764     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])
4765     if test "${SYS}" = "mingw32"; then
4766       VLC_ADD_LDFLAGS([mozilla],[-lembedstring -Wl,--kill-at])
4767     fi
4768
4769     XPIDL_INCL="-I${real_mozilla_sdk}${mozilla_sdk_xpcom}/idl"
4770     XPIDL="${real_mozilla_sdk}${mozilla_sdk_xpcom}/bin/xpidl"
4771
4772     if test -n "${CYGPATH}"; then
4773       real_mozilla_sdk="`${CYGPATH} -w ${real_mozilla_sdk}`"
4774       XPIDL_INCL="${XPIDL_INCL} -I\"${real_mozilla_sdk}${mozilla_sdk_xpcom}/idl\""
4775     fi ])
4776   CPPFLAGS="${CPPFLAGS_save}"
4777 fi
4778
4779 dnl Not necessarily in ${PATH}
4780 if test -z "${XPIDL}" -o ! -x "${XPIDL}"; then
4781   XPIDL="/usr/lib/mozilla/xpidl"
4782 fi
4783 AS_IF([test "${MOZILLA_CONFIG}"], [
4784   if test -z "${XPIDL_INCL}"; then
4785     XPIDL_INCL="`${MOZILLA_CONFIG} --cflags plugin xpcom java` \
4786     `${MOZILLA_CONFIG} --idlflags plugin xpcom java` "
4787   fi
4788 ])
4789 AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
4790 if test "${mozilla}" != "false"
4791 then
4792   build_pic=yes
4793 fi
4794
4795 dnl
4796 dnl  Python bindings
4797 dnl
4798 AC_ARG_ENABLE(python-bindings,
4799   [  --enable-python-bindings    Enable Python bindings (default disabled)])
4800 dnl TODO: look for python dev headers
4801 AM_CONDITIONAL( BUILD_PYTHON, [test "${enable_python_bindings}" = "yes"] )
4802 if test "${enable_python_bindings}" = "yes"
4803 then
4804   build_pic=yes
4805 fi
4806
4807 dnl
4808 dnl  Java bindings
4809 dnl
4810 AC_ARG_ENABLE(java-bindings,
4811   [  --enable-java-bindings    Enable Java bindings (default disabled)])
4812 AM_CONDITIONAL( BUILD_JAVA, [test "${enable_java_bindings}" = "yes"] )
4813 if test "${enable_java_bindings}" = "yes"
4814 then
4815   build_pic=yes
4816 fi
4817
4818
4819 dnl
4820 dnl  test plugins
4821 dnl
4822 AC_ARG_ENABLE(testsuite,
4823   [  --enable-testsuite      build test modules (default disabled)])
4824 if test "${enable_testsuite}" = "yes"
4825 then
4826   TESTS="test1 test2 test3 test4"
4827
4828   dnl  we define those so that bootstrap sets the right linker
4829   VLC_ADD_CXXFLAGS([test2],[])
4830   VLC_ADD_OBJCFLAGS([test3],[])
4831   dnl  this one is needed until automake knows what to do
4832   VLC_ADD_LDFLAGS([test3],[-lobjc])
4833
4834   VLC_ADD_PLUGINS([${TESTS}])
4835   #VLC_ADD_BUILTINS([${TESTS}])
4836 fi
4837
4838 dnl
4839 dnl  gtk_main plugin
4840 dnl
4841 if test "${NEED_GTK_MAIN}" != "no"
4842 then
4843     VLC_ADD_PLUGINS([gtk_main])
4844     VLC_ADD_CFLAGS([gtk_main],[${CFLAGS_gtk}])
4845     VLC_ADD_LDFLAGS([gtk_main],[${LDFLAGS_gtk}])
4846 fi
4847
4848 if test "${NEED_GNOME_MAIN}" != "no"
4849 then
4850     VLC_ADD_PLUGINS([gnome_main])
4851     VLC_ADD_CFLAGS([gnome_main],[${CFLAGS_gtk} ${CFLAGS_gnome}])
4852     VLC_ADD_LDFLAGS([gnome_main],[${LDFLAGS_gtk} ${LDFLAGS_gnome}])
4853 fi
4854
4855 if test "${NEED_GTK2_MAIN}" != "no"
4856 then
4857     VLC_ADD_PLUGINS([gtk2_main])
4858     VLC_ADD_CFLAGS([gtk2],[-DNEED_GTK2_MAIN])
4859     VLC_ADD_CFLAGS([pda],[-DNEED_GTK2_MAIN])
4860     VLC_ADD_CFLAGS([gtk2_main],[${CFLAGS_gtk2} ${CFLAGS_pda}])
4861     VLC_ADD_LDFLAGS([gtk2_main],[${LDFLAGS_gtk2} ${LDFLAGS_pda}])
4862 fi
4863
4864 if test "${NEED_GNOME2_MAIN}" != "no"
4865 then
4866     VLC_ADD_PLUGINS([gnome2_main])
4867     VLC_ADD_CFLAGS([gnome2_main],[${CFLAGS_gtk2} ${CFLAGS_gnome2}])
4868     VLC_ADD_LDFLAGS([gnome2_main],[${LDFLAGS_gtk2} ${LDFLAGS_gnome2}])
4869 fi
4870
4871 dnl
4872 dnl  qte_main plugin
4873 dnl
4874 if test "${NEED_QTE_MAIN}" != "no"
4875 then
4876     VLC_ADD_PLUGINS([qte_main])
4877     VLC_ADD_CXXFLAGS([opie qte qt_video],[-DNEED_QTE_MAIN])
4878     VLC_ADD_CXXFLAGS([qte_main],[${CXXFLAGS_qte} ${CXXFLAGS_qt_video}])
4879     VLC_ADD_LDFLAGS([qte_main],[${LDFLAGS_qte} ${LDFLAGS_qt_video}])
4880 fi
4881
4882
4883 dnl
4884 dnl  Plugin and builtin checks
4885 dnl
4886 builtin_support=false
4887 plugin_support=:
4888
4889 dnl Support for plugins - this must be AT THE END
4890 AC_ARG_ENABLE(plugins,
4891   [  --disable-plugins       make all plugins built-in (default plugins enabled)],
4892   [if test "${enable_plugins}" = "no"
4893    then
4894      plugin_support=false
4895    fi])
4896
4897 dnl Automagically disable plugins if there is no system support for
4898 dnl dynamically loadable files (.so, .dll, .dylib).
4899 dnl don't forget vlc-win32 still can load .dll as plugins
4900 if test "${ac_cv_have_plugins}" = "no"
4901 then
4902   echo "*** Your system doesn't have plugin support. All plugins will be built"
4903   echo "statically."
4904   plugin_support=false
4905 fi
4906
4907 dnl Export automake variables
4908 if ${plugin_support}
4909 then
4910   AC_DEFINE(HAVE_DYNAMIC_PLUGINS, 1, Define if we have support for dynamic plugins)
4911   for plugin in `echo ${PLUGINS}`
4912   do
4913     eval "${plugin}_p=yes"
4914   done
4915 else
4916   VLC_ADD_BUILTINS([${PLUGINS}])
4917   PLUGINS=""
4918 fi
4919 AM_CONDITIONAL(HAVE_PLUGINS, ${plugin_support})
4920
4921 [if echo "${BUILTINS}" | grep '[^ ]' >/dev/null 2>&1
4922 then
4923   builtin_support=:
4924   for builtin in `echo ${BUILTINS}`
4925   do
4926     eval "${builtin}_b=yes"
4927   done
4928 fi]
4929 AM_CONDITIONAL(HAVE_BUILTINS, ${builtin_support})
4930
4931 dnl
4932 dnl Pic and shared libvlc stuff
4933 dnl
4934 AM_CONDITIONAL(BUILD_SHARED, [test "${shared_libvlc}" != "no"])
4935 AM_CONDITIONAL(BUILD_PIC, [test "${build_pic}" = "yes" -o "${shared_libvlc}" != "no"] )
4936 AS_IF([test "${shared_libvlc}" != "no"], [
4937   AC_DEFINE(HAVE_SHARED_LIBVLC, 1, [Define to 1 if libvlc is built as a shared library.])
4938 ])
4939
4940 pic=no
4941 AS_IF([test "${shared_libvlc}" != "no" -o "${build_pic}" = "yes"], [pic=pic])
4942 AS_IF([test "${SYS}" = "mingw32"], [pic=no])
4943 AS_IF([test "${pic}" = "no"], [pic=])
4944 AC_SUBST(pic)
4945
4946 dnl Import conditional variables generated by bootstrap
4947 VLC_CONDITIONALS
4948
4949 dnl
4950 dnl  Stuff used by the program
4951 dnl
4952 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION} ${CODENAME}", [Simple version string])
4953 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "VLC media player - version ${VERSION} ${CODENAME} - (c) 1996-2005 the VideoLAN team", [Copyright string])
4954 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4955 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,"${VERSION_MAJOR}", [version major number])
4956 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,"${VERSION_MINOR}", [version minor number])
4957 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,"${VERSION_REVISION}", [version minor number])
4958 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,"${VERSION_EXTRA}", [version minor number])
4959 AC_SUBST(VERSION_MAJOR)
4960 AC_SUBST(VERSION_MINOR)
4961 AC_SUBST(VERSION_REVISION)
4962 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami`", [user who ran configure]) 
4963 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname`", [host which ran configure]) 
4964 AC_DEFINE_UNQUOTED(VLC_COMPILE_DOMAIN, "`dnsdomainname 2>/dev/null || domainname 2>/dev/null || echo unknown`", [domain of the host which ran configure]) 
4965 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1`", [compiler]) 
4966
4967 dnl Old definitions for version-dependant plugins
4968 dnl VLC_SYMBOL="`echo ${VERSION} | sed -e 'y/.-+/___/'`"
4969 dnl AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${VLC_SYMBOL}", [String suffix for module functions])
4970 dnl AC_DEFINE_UNQUOTED(MODULE_SYMBOL, ${VLC_SYMBOL}, [Symbol suffix for module functions])
4971
4972 dnl New definitions with value matching 0.8.4 release
4973 module_symbol="0_8_4"
4974 AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${module_symbol}", [String suffix for module functions])
4975 AC_DEFINE_UNQUOTED(MODULE_SYMBOL, $module_symbol, [Symbol suffix for module functions])
4976 VLC_ENTRY="vlc_entry__${module_symbol}"
4977 AC_SUBST(VLC_ENTRY)
4978
4979 dnl
4980 dnl  Handle substvars that use $(top_srcdir)
4981 dnl
4982 VLC_CONFIG="top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config"
4983 AC_SUBST(VLC_CONFIG)
4984 CPPFLAGS_save="${CPPFLAGS_save} -I\$(top_srcdir)/include"
4985
4986 dnl
4987 dnl  Restore *FLAGS
4988 dnl
4989 VLC_RESTORE_FLAGS
4990
4991 dnl
4992 dnl  Create the vlc-config script
4993 dnl
4994 LDFLAGS_libvlc="${LDFLAGS_vlc} ${LDFLAGS_builtin}"
4995 for i in `echo "${BUILTINS}" | sed -e 's@[^ ]*/@@g'` ; do LDFLAGS_libvlc="${LDFLAGS_libvlc} ${libdir}/vlc/${i}.a `eval echo '$'{LDFLAGS_${i}}`" ; done
4996
4997 dnl
4998 dnl  Configuration is finished
4999 dnl
5000 AC_SUBST(SYS)
5001 AC_SUBST(ARCH)
5002 AC_SUBST(ALIASES)
5003 AC_SUBST(ASM)
5004 AC_SUBST(MOC)
5005 AC_SUBST(WINDRES)
5006 AC_SUBST(XPIDL)
5007 AC_SUBST(XPIDL_INCL)
5008 AC_SUBST(LIBEXT)
5009 AC_SUBST(INCLUDES)
5010 AC_SUBST(ALL_LINGUAS)
5011
5012 dnl Import substitutions generated by bootstrap
5013 VLC_SUBSTS
5014
5015 dnl Create vlc-config.in
5016 VLC_OUTPUT_VLC_CONFIG_IN
5017
5018 AC_CONFIG_FILES([
5019   Makefile
5020   activex/Makefile
5021   activex/axvlc.inf
5022   bindings/Makefile
5023   bindings/java/Makefile
5024   bindings/python/Makefile
5025   debian/Makefile
5026   doc/Makefile
5027   intl/Makefile
5028   ipkg/Makefile
5029   lib/Makefile
5030   loader/Makefile
5031   modules/Makefile
5032   mozilla/Makefile
5033   m4/Makefile
5034   po/Makefile.in
5035   share/Makefile
5036 ])
5037
5038 AC_CONFIG_FILES([
5039   modules/access/Makefile
5040   modules/access/dshow/Makefile
5041   modules/access/dvb/Makefile
5042   modules/access/mms/Makefile
5043   modules/access/pvr/Makefile
5044   modules/access/v4l/Makefile
5045   modules/access/cdda/Makefile
5046   modules/access/rtsp/Makefile
5047   modules/access/vcd/Makefile
5048   modules/access/vcdx/Makefile
5049   modules/access/screen/Makefile
5050   modules/access_filter/Makefile
5051   modules/access_output/Makefile
5052   modules/audio_filter/Makefile
5053   modules/audio_filter/channel_mixer/Makefile
5054   modules/audio_filter/converter/Makefile
5055   modules/audio_filter/resampler/Makefile
5056   modules/audio_mixer/Makefile
5057   modules/audio_output/Makefile
5058   modules/codec/Makefile
5059   modules/codec/cmml/Makefile
5060   modules/codec/dmo/Makefile
5061   modules/codec/ffmpeg/Makefile
5062   modules/codec/spudec/Makefile
5063   modules/control/Makefile
5064   modules/control/http/Makefile
5065   modules/control/corba/Makefile
5066   modules/demux/Makefile
5067   modules/demux/asf/Makefile
5068   modules/demux/avi/Makefile
5069   modules/demux/mp4/Makefile
5070   modules/demux/mpeg/Makefile
5071   modules/demux/playlist/Makefile
5072   modules/demux/util/Makefile
5073   modules/gui/Makefile
5074   modules/gui/beos/Makefile
5075   modules/gui/pda/Makefile
5076   modules/gui/macosx/Makefile
5077   modules/gui/qnx/Makefile
5078   modules/gui/skins2/Makefile
5079   modules/gui/wxwidgets/Makefile
5080   modules/gui/wince/Makefile
5081   modules/misc/Makefile
5082   modules/misc/dummy/Makefile
5083   modules/misc/memcpy/Makefile
5084   modules/misc/network/Makefile
5085   modules/misc/testsuite/Makefile
5086   modules/misc/playlist/Makefile
5087   modules/misc/xml/Makefile
5088   modules/mux/Makefile
5089   modules/mux/mpeg/Makefile
5090   modules/packetizer/Makefile
5091   modules/services_discovery/Makefile
5092   modules/stream_out/Makefile
5093   modules/stream_out/transrate/Makefile
5094   modules/video_chroma/Makefile
5095   modules/video_filter/Makefile
5096   modules/video_filter/swscale/Makefile
5097   modules/video_output/Makefile
5098   modules/video_output/directx/Makefile
5099   modules/video_output/qte/Makefile
5100   modules/video_output/x11/Makefile
5101   modules/visualization/Makefile
5102   modules/visualization/visual/Makefile
5103   modules/visualization/galaktos/Makefile
5104 ])
5105
5106 dnl Generate makefiles
5107 AC_OUTPUT
5108
5109 # Cannot use AC_CONFIG_FILES([vlc-config]) as is automatically built,
5110 # not provided with the source
5111 ${SHELL} ./config.status --file=vlc-config
5112 chmod 0755 vlc-config
5113
5114 dnl echo "Enabled builtin modules :"
5115 dnl for a in `./vlc-config --target builtin` ; do echo $a; done | sed -e 's,modules\/\(.*\)\/lib\(.*\)\.a,\2 (\1),'
5116
5117 dnl echo "Enabled plugin modules :"
5118 dnl for a in `./vlc-config --target plugin` ; do echo $a; done | sed -e 's,modules\/\(.*\)\/lib\(.*\)_plugin,\2 (\1),'
5119
5120 dnl Shortcut to nice compile message
5121 rm -f compile
5122 echo '#! /bin/sh' >compile
5123 echo "PATH=$PATH LANG=C make \$* 2>&1| ${srcdir}/extras/make.pl" >>compile
5124 chmod a+x compile
5125
5126 printf "
5127 vlc configuration
5128 --------------------
5129 vlc version           : ${VERSION}
5130 system                : ${SYS}
5131 architecture          : ${ARCH}
5132 build flavour         : "
5133 test "${enable_debug}" = "yes" && printf "debug "
5134 test "${enable_cprof}" = "yes" && printf "cprof "
5135 test "${enable_gprof}" = "yes" && printf "gprof "
5136 test "${enable_optimizations}" = "yes" && printf "optim "
5137 test "${enable_release}" = "yes" && printf "release " || printf "devel "
5138 echo "
5139 vlc aliases           :${ALIASES}
5140
5141 You can tune the compiler flags in vlc-config.
5142 To build vlc and its plugins, type \`./compile' or \`make'.
5143 "
5144