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