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