1 dnl Autoconf settings for vlc
10 CONFIGURE_LINE="$0 $*"
14 AC_CONFIG_SRCDIR(src/libvlc.c)
15 AC_CONFIG_AUX_DIR(autotools)
18 dnl XXX: we don't put any flags here, because automake 1.5 doesn't support
19 dnl them. And we need the comma otherwize automake will choke on it.
20 AM_INIT_AUTOMAKE(vlc,0.8.4-svn)
21 AM_CONFIG_HEADER(config.h)
35 eval "${CXX} --version" >/dev/null 2>&1 || CXX=""
36 if test "${CXX}" != ""; then
43 dnl AC_PROG_EGREP only exists in autoconf 2.54+, so we use AC_EGREP_CPP right
44 dnl now otherwise it might be set in an obscure if statement.
47 dnl AC_PROG_OBJC doesn't seem to exist, this is the KDE workaround
48 AC_MSG_CHECKING(for an Objective-C compiler)
51 OBJCFLAGS="${CXXFLAGS} -fgnu-runtime -fconstant-string-class=NSConstantString"
53 dnl _AM_DEPENDENCIES(OBJC) doesn't work, so hard code OBJCDEPMODE here
54 #OBJCDEPMODE="depmode=gcc3"
55 #AC_SUBST(OBJCDEPMODE)
56 _AM_DEPENDENCIES(OBJC)
57 AC_MSG_RESULT(not implemented yet)
59 dnl Find the right ranlib, even when cross-compiling
60 AC_CHECK_TOOL(RANLIB, ranlib, :)
61 AC_CHECK_TOOL(STRIP, strip, :)
62 AC_CHECK_TOOL(AR, ar, :)
63 AC_CHECK_TOOL(LD, ld, :)
65 dnl Sam, if you think I didn't see that... --Meuuh
69 dnl Check for compiler properties
74 dnl Check for the contrib directory
77 [ --without-contrib do not use the libraries in extras/contrib],[],[])
78 if test "${with_contrib}" != "no"; then
81 if test "`echo \"$topdir\" | cut -c 1`" != "/"; then
82 topdir="`pwd`/$topdir"
85 if test -d ${topdir}/extras/contrib/lib; then
86 export PATH=${topdir}/extras/contrib/bin:$PATH
87 CPPFLAGS="${CPPFLAGS} -I${topdir}/extras/contrib/include"
88 CPPFLAGS_save="${CPPFLAGS_save} -I${topdir}/extras/contrib/include"
89 CFLAGS="${CFLAGS} -I${topdir}/extras/contrib/include"
90 CFLAGS_save="${CFLAGS_save} -I${topdir}/extras/contrib/include"
91 CXXFLAGS="${CXXFLAGS} -I${topdir}/extras/contrib/include"
92 CXXFLAGS_save="${CXXFLAGS_save} -I${topdir}/extras/contrib/include"
93 OBJCFLAGS="${OBJCFLAGS} -I${topdir}/extras/contrib/include"
94 OBJCFLAGS_save="${OBJCFLAGS_save} -I${topdir}/extras/contrib/include"
95 if test -d ${topdir}/extras/contrib/vlc-lib; then
96 LDFLAGS="${LDFLAGS} -L${topdir}/extras/contrib/vlc-lib"
97 LDFLAGS_save="${LDFLAGS_save} -L${topdir}/extras/contrib/vlc-lib"
99 LDFLAGS="${LDFLAGS} -L${topdir}/extras/contrib/lib"
100 LDFLAGS_save="${LDFLAGS_save} -L${topdir}/extras/contrib/lib"
101 with_livedotcom_tree=${topdir}/extras/contrib/src/live
102 with_goom_tree=${topdir}/extras/contrib/src/goom
103 if test ".`uname -s`" = ".Darwin"; then
104 export LD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$LD_LIBRARY_PATH
105 export DYLD_LIBRARY_PATH=${topdir}/extras/contrib/lib:$DYLD_LIBRARY_PATH
106 elif test ".`uname -s`" = ".BeOS"; then
107 export LIBRARY_PATH=${topdir}/extras/contrib/lib:$LIBRARY_PATH
108 export BELIBRARIES=${topdir}/extras/contrib/lib:$BELIBRARIES
113 dnl Set default values
115 LDFLAGS_vlc="${LDFLAGS}"
118 dnl Check the operating system
120 case "${target_os}" in
129 CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
130 VLC_ADD_LDFLAGS([dvd dvdcss vcd cdda vcdx cddax],[-ldvd])
134 CFLAGS_save="${CFLAGS_save} -pthread"; CFLAGS="${CFLAGS_save}"
138 CFLAGS_save="${CFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; CFLAGS="${CFLAGS_save}"
139 CXXFLAGS_save="${CXXFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; CXXFLAGS="${CXXFLAGS_save}"
140 OBJCFLAGS_save="${OBJCFLAGS_save} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"; OBJCFLAGS="${OBJCFLAGS_save}"
141 VLC_ADD_LDFLAGS([vlc ffmpeg ffmpegaltivec],[-all_load])
142 VLC_ADD_LDFLAGS([mp4], [-framework IOKit -framework CoreFoundation])
143 VLC_ADD_CFLAGS([libvlc],[-x objective-c])
144 VLC_ADD_CFLAGS([vlc],[-x objective-c])
145 VLC_ADD_LDFLAGS([vlc],[-Wl,-m -Wl,-multiply_defined -Wl,suppress])
147 *mingw32* | *cygwin* | *wince* | *mingwce* | *pe*)
148 AC_CHECK_TOOL(WINDRES, windres, :)
150 case "${target_os}" in
155 dnl Check if we are using the mno-cygwin mode in which case we are
156 dnl actually dealing with a mingw32 compiler.
161 SYS=mingw32, SYS=cygwin)
163 *wince* | *mingwce* | *pe*)
168 if test "${SYS}" = "mingw32"; then
169 # add ws2_32 for closesocket, select, recv
170 CPPFLAGS_save="${CPPFLAGS_save} -D_OFF_T_ -D_off_t=long"; CPPFLAGS="${CPPFLAGS_save}"
171 VLC_ADD_LDFLAGS([vlc],[-lws2_32 -lnetapi32 -lwinmm -mwindows])
172 VLC_ADD_LDFLAGS([vcdx cddax],[-lwinmm])
173 VLC_ADD_LDFLAGS([ipv4 ipv6 access_http access_mms access_udp access_tcp access_ftp access_output_udp sap slp http stream_out_standard stream_out_rtp vod_rtsp telnet netsync],[-lws2_32])
174 VLC_ADD_LDFLAGS([ipv4],[-liphlpapi])
176 if test "${SYS}" = "mingwce"; then
177 # add ws2 for closesocket, select, recv
178 CPPFLAGS_save="${CPPFLAGS_save} -D_OFF_T_ -D_off_t=long"; CPPFLAGS="${CPPFLAGS_save}"
179 VLC_ADD_CPPFLAGS([vlc],[-Dmain(a,b)=maince(a,b)])
180 VLC_ADD_LDFLAGS([vlc],[-lws2 -e WinMainCRTStartup])
181 VLC_ADD_LDFLAGS([ipv4 ipv6 access_http access_mms access_udp access_tcp access_ftp access_output_udp sap http netsync],[-lws2])
182 VLC_ADD_LDFLAGS([ipv4],[-liphlpapi])
187 VLC_ADD_LDFLAGS([x11 xvideo],[-lsocket])
191 # _POSIX_PTHREAD_SEMANTICS is needed to get the POSIX ctime_r
192 # Perhaps it is useful other places as well?
193 CFLAGS_save="${CFLAGS_save} -D_POSIX_PTHREAD_SEMANTICS"; CFLAGS="${CFLAGS_save}"
200 CFLAGS_save="${CFLAGS_save} -Wno-multichar"; CFLAGS="${CFLAGS_save}"
201 CXXFLAGS_save="${CXXFLAGS_save} -Wno-multichar"; CXXFLAGS="${CXXFLAGS_save}"
202 VLC_ADD_CXXFLAGS([beos],[])
203 VLC_ADD_LDFLAGS([vlc beos],[-lbe])
204 VLC_ADD_LDFLAGS([beos],[-lmedia -ltranslation -ltracker -lgame])
205 VLC_ADD_LDFLAGS([access_file access_ftp access_mms access_output_udp telnet netsync sap ipv4 vlc],[-lnet])
207 dnl Ugly check for Zeta
208 if test -f /boot/beos/system/lib/libzeta.so; then
209 VLC_ADD_LDFLAGS([beos],[-lzeta])
216 AM_CONDITIONAL(HAVE_BEOS, test "${SYS}" = "beos")
217 AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin")
218 AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32")
219 AM_CONDITIONAL(HAVE_WINCE, test "${SYS}" = "mingwce")
224 ALL_LINGUAS="ca da de en_GB es fr it ja nl pt_BR ro ru tr zh_TW"
225 AM_GNU_GETTEXT_VERSION(0.11.5)
227 if test "${nls_cv_force_use_gnu_gettext}" = "yes"; then
228 AC_DEFINE(HAVE_INCLUDED_GETTEXT, 1, Define if we use the local libintl)
229 INCLUDES="${INCLUDES} -I\$(top_builddir)/intl"
231 AC_CHECK_FUNCS(textdomain,,[
232 AC_CHECK_LIB(intl,textdomain,
233 VLC_ADD_LDFLAGS([vlc],[${LIBINTL}]),,
238 AM_CONDITIONAL(BUILD_INTL, test "${nls_cv_force_use_gnu_gettext}" = "yes")
239 XGETTEXT="${XGETTEXT} --keyword=_NS --keyword=_ANS"
244 AS_IF([test "$am_cv_func_iconv" != "yes"],
245 [AC_MSG_ERROR([libiconv is needed for VLC to work properly])])
246 VLC_ADD_CFLAGS([vlc],[${INCICONV}])
247 VLC_ADD_LDFLAGS([vlc],[${LIBICONV}])
249 dnl Check for the need to include the mingwex lib for mingw32
250 if test "${SYS}" = "mingw32"
252 AC_CHECK_LIB(mingwex,opendir,
253 AC_CHECK_LIB(mingw32,opendir,VLC_ADD_LDFLAGS([vlc],[]),
254 [VLC_ADD_LDFLAGS([vlc gtk],[-lmingwex])])
258 dnl Check for fnative-struct or mms-bitfields support for mingw32
259 if test "${SYS}" = "mingw32"
261 AC_CACHE_CHECK([if \$CC accepts -mms-bitfields],
262 [ac_cv_c_mms_bitfields],
263 [CFLAGS="${CFLAGS_save} -mms-bitfields"
264 AC_TRY_COMPILE([],,ac_cv_c_mms_bitfields=yes, ac_cv_c_mms_bitfields=no)])
265 if test "${ac_cv_c_mms_bitfields}" != "no"; then
266 CFLAGS_save="${CFLAGS_save} -mms-bitfields";
267 CXXFLAGS_save="${CXXFLAGS_save} -mms-bitfields";
269 AC_CACHE_CHECK([if \$CC accepts -fnative-struct],
270 [ac_cv_c_fnative_struct],
271 [CFLAGS="${CFLAGS_save} -fnative-struct"
272 AC_TRY_COMPILE([],,ac_cv_c_fnative_struct=yes, ac_cv_c_fnative_struct=no)])
273 if test "${ac_cv_c_fnative_struct}" != "no"; then
274 CFLAGS_save="${CFLAGS_save} -fnative-struct";
275 CXXFLAGS_save="${CXXFLAGS_save} -fnative-struct";
279 CFLAGS="${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
282 dnl Check for fvtable-thunks support for mingw32
283 if test "${SYS}" = "mingw32" -a "${CXX}" != ""
286 AC_CACHE_CHECK([if \$CXX accepts -fvtable-thunks],
287 [ac_cv_cxx_fvtable_thunks],
288 [CXXFLAGS="${CXXFLAGS_save} -Wall -Werror -fvtable-thunks"
289 AC_TRY_COMPILE([],,ac_cv_cxx_fvtable_thunks=yes,
290 ac_cv_cxx_fvtable_thunks=no)])
291 if test "${ac_cv_cxx_fvtable_thunks}" = "yes"; then
292 CXXFLAGS_mingw32_special="-fvtable-thunks"
295 CXXFLAGS_save="${CXXFLAGS_save} ${CXXFLAGS_mingw32_special}"; CXXFLAGS="${CXXFLAGS_save}"
299 dnl Plugin compilation stuff
308 VLC_ADD_CFLAGS([pic plugin mozilla activex],[${CFLAGS_mingw32_special}])
309 VLC_ADD_CXXFLAGS([pic plugin mozilla activex],[${CFLAGS_mingw32_special} ${CXXFLAGS_mingw32_special}])
310 VLC_ADD_OBJCFLAGS([pic plugin mozilla activex],[${CFLAGS_mingw32_special}])
315 VLC_ADD_CFLAGS([pic plugin mozilla],[-fpic -fPIC])
316 VLC_ADD_CXXFLAGS([pic plugin mozilla],[-fpic -fPIC])
317 VLC_ADD_OBJCFLAGS([pic plugin mozilla],[-fpic -fPIC])
318 VLC_ADD_LDFLAGS([plugin mozilla],[-fpic -fPIC])
322 dnl The -DSYS_FOO flag
323 CPPFLAGS_save="${CPPFLAGS_save} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcdefghijklmnopqrstuvwxyz.' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`"; CPPFLAGS="${CPPFLAGS_save}"
325 dnl Check for system libs needed
328 AC_CHECK_FUNCS(gettimeofday select strerror strtod strtol strtof strtoll strtoull strsep isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf daemon scandir fork)
330 dnl Check for usual libc functions
331 AC_CHECK_FUNCS(strdup strndup atof)
332 AC_CHECK_FUNCS(strcasecmp,,[AC_CHECK_FUNCS(stricmp)])
333 AC_CHECK_FUNCS(strncasecmp,,[AC_CHECK_FUNCS(strnicmp)])
334 AC_CHECK_FUNCS(strcasestr,,[AC_CHECK_FUNCS(stristr)])
336 dnl Check for setlocal and langinfo
337 AC_CHECK_FUNCS(setlocale)
338 AC_CHECK_HEADERS(langinfo.h)
339 AC_CHECK_FUNCS(nl_langinfo)
341 AC_CACHE_CHECK([for nl_langinfo and CODESET], ac_cv_langinfo_codeset,
342 [AC_TRY_LINK([#include <langinfo.h>],
343 [char* cs = nl_langinfo(CODESET);],
344 ac_cv_langinfo_codeset=yes,
345 ac_cv_langinfo_codeset=no)
347 if test ${ac_cv_langinfo_codeset} = yes; then
348 AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
349 [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
352 AC_CHECK_FUNCS(connect,,[
353 AC_CHECK_LIB(socket,connect,[
354 VLC_ADD_LDFLAGS([vlc ipv4 cddax],-lsocket)
358 AC_CHECK_FUNCS(send,,[
359 AC_CHECK_LIB(socket,send,[
360 VLC_ADD_LDFLAGS([access_http access_mms access_udp access_tcp access_ftp sap access_output_udp stream_out_standard],[-lsocket])
364 AC_CHECK_FUNCS(gethostbyname,,[
365 AC_CHECK_LIB(nsl,gethostbyname,[
366 VLC_ADD_LDFLAGS([cddax ipv4 vlc],[-lnsl])
368 AC_CHECK_LIB(bind,gethostbyname,[
369 VLC_ADD_LDFLAGS([ipv4 access_mms],[-lbind])
374 dnl Check for socklen_t
375 AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
377 [#include <sys/types.h>
378 #include <sys/socket.h>],
379 [socklen_t len = 42; return len;],
380 ac_cv_type_socklen_t=yes,
381 ac_cv_type_socklen_t=no)])
382 if test "${ac_cv_type_socklen_t}" != "no"; then
383 AC_DEFINE(HAVE_SOCKLEN_T, 1, [Define if <sys/socket.h> defines socklen_t.])
386 dnl Check for struct sockaddr_storage
387 AH_TEMPLATE(sockaddr_storage, [Define to `sockaddr' if <sys/socket.h> does not define.])
388 AH_TEMPLATE(ss_family, [Define to `sa_family' if <sys/socket.h> does not define.])
389 AC_CACHE_CHECK([for struct sockaddr_storage], ac_cv_struct_sockaddr_storage,
391 [#include <sys/types.h>
392 #if defined( UNDER_CE )
393 # include <winsock.h>
394 #elif defined( WIN32 )
395 # include <winsock2.h>
397 # include <sys/socket.h>
398 #endif], [struct sockaddr_storage addr;],
399 ac_cv_struct_sockaddr_storage=yes,
400 ac_cv_struct_sockaddr_storage=no)])
401 if test $ac_cv_struct_sockaddr_storage = no; then
402 AC_DEFINE(sockaddr_storage, sockaddr)
403 AC_DEFINE(ss_family, sa_family)
406 dnl getaddrinfo, getnameinfo and gai_strerror check
407 dnl -lresolv is NOT needed on Solaris
408 dnl we purposedly make the test fail on Windows
409 AC_CHECK_FUNCS([getaddrinfo getnameinfo gai_strerror])
410 AH_TEMPLATE(HAVE_ADDRINFO, [Define to `1' if <netdb.h> defines struct addrinfo.])
411 AC_CHECK_TYPES([struct addrinfo],[AC_DEFINE(HAVE_ADDRINFO)],,
412 [#include <sys/types.h>
413 #if defined( WIN32 ) || defined( UNDER_CE )
414 # if defined(UNDER_CE) && defined(sockaddr_storage)
415 # undef sockaddr_storage
417 # include <winsock2.h>
418 # include <ws2tcpip.h>
423 dnl Check for va_copy
424 AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
426 [#include <stdarg.h>],
427 [va_list ap1, ap2; va_copy(ap1,ap2);],
428 [ac_cv_c_va_copy="yes"],
429 [ac_cv_c_va_copy="no"]))
430 if test "${ac_cv_c_va_copy}" = "yes"; then
431 AC_DEFINE(HAVE_VA_COPY, 1, [Define if <stdarg.h> defines va_copy.])
433 AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy,
435 [#include <stdarg.h>],
436 [va_list ap1, ap2; __va_copy(ap1,ap2);],
437 [ac_cv_c___va_copy="yes"],
438 [ac_cv_c___va_copy="no"]))
439 if test "${ac_cv_c___va_copy}" = "yes"; then
440 AC_DEFINE(HAVE___VA_COPY, 1, [Define if <stdarg.h> defines __va_copy.])
443 AC_CHECK_FUNCS(inet_aton,,[
444 AC_CHECK_LIB(resolv,inet_aton,[
445 VLC_ADD_LDFLAGS([ipv4 vlc],[-lresolv])
449 dnl Check for getopt (always use builtin one on win32)
450 if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce"; then
454 AC_CHECK_FUNCS(getopt_long,[AC_DEFINE(HAVE_GETOPT_LONG,1,long getopt support)],
455 [ # FreeBSD has a gnugetopt library for this:
456 AC_CHECK_LIB([gnugetopt],[getopt_long],
457 [AC_DEFINE(HAVE_GETOPT_LONG,1,getopt support)
458 VLC_ADD_LDFLAGS([vlc],[-lgnugetopt])],
461 AM_CONDITIONAL(BUILD_GETOPT, ${need_getopt})
463 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
466 VLC_ADD_LDFLAGS([adjust distort a52tofloat32 dtstofloat32 x264 goom],[-lm])
469 VLC_ADD_LDFLAGS([ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad twolame equalizer vlc freetype],[-lm])
471 AC_CHECK_LIB(m,sqrt,[
472 VLC_ADD_LDFLAGS([headphone_channel_mixer normvol speex],[-lm])
474 AC_CHECK_LIB(mx,sqrtf,[
475 VLC_ADD_LDFLAGS([x264],[-lmx])
477 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
479 dnl Check for dynamic plugins
480 ac_cv_have_plugins=no
483 AC_CHECK_HEADERS(mach-o/dyld.h,
484 [AC_CHECK_FUNCS(NSLinkModule,
485 [AC_DEFINE(HAVE_DL_DYLD, 1, [Define if you have the Darwin dyld API])
486 ac_cv_have_plugins=yes])])
489 if test "${ac_cv_have_plugins}" = "no"; then
490 AC_CHECK_HEADERS(dl.h)
491 ac_cv_my_have_shl_load=no
492 AC_CHECK_FUNC(shl_load,
493 [ac_cv_my_have_shl_load=yes,
494 AC_CHECK_LIB(dld, shl_load,
495 [ac_cv_my_have_shl_load=yes
496 VLC_ADD_LDFLAGS([vlc],[-ldld])])])
497 if test "${ac_cv_my_have_shl_load}" = "yes"; then
498 AC_DEFINE(HAVE_DL_SHL_LOAD, 1, [Define if you have the shl_load API])
499 ac_cv_have_plugins=yes
504 if test "${ac_cv_have_plugins}" = "no"; then
505 AC_CHECK_LIB(dld, dld_link,
506 [VLC_ADD_LDFLAGS([vlc],[-ldld])
507 AC_DEFINE(HAVE_DL_DLD_LINK, 1, [Define if you have the GNU dld library])
508 ac_cv_have_plugins=yes])
512 if test "${ac_cv_have_plugins}" = "no"; then
513 if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
514 AC_CHECK_LIB(kernel32, main,
515 [VLC_ADD_LDFLAGS([vlc],[-lkernel32])
516 AC_DEFINE(HAVE_DL_WINDOWS, 1, [Define if you have Windows' LoadLibrary])
517 ac_cv_have_plugins=yes])
522 if test "${ac_cv_have_plugins}" = "no"; then
523 if test "${SYS}" = "mingwce"; then
524 AC_DEFINE(HAVE_DL_WINDOWS, 1, [Define if you have Windows' LoadLibrary])
525 ac_cv_have_plugins=yes
530 if test "${ac_cv_have_plugins}" = "no"; then
531 AC_CHECK_HEADERS(image.h)
532 AC_CHECK_FUNCS(load_add_on,
533 [AC_DEFINE(HAVE_DL_BEOS, 1, [Define if you have the BeOS dl])
534 ac_cv_have_plugins=yes])
537 # Only test for dlopen() if the others didn't work
538 if test "${ac_cv_have_plugins}" = "no"; then
539 AC_CHECK_HEADERS(dlfcn.h sys/dl.h)
540 ac_cv_my_have_dlopen=no
541 AC_CHECK_FUNC(dlopen,
542 ac_cv_my_have_dlopen=yes,
543 AC_CHECK_LIB(dl, dlopen,
544 ac_cv_my_have_dlopen=yes
545 VLC_ADD_LDFLAGS([vlc],[-ldl]),
546 AC_CHECK_LIB(svld, dlopen,
547 ac_cv_my_have_dlopen=yes
548 VLC_ADD_LDFLAGS([vlc],[-lsvld]))))
549 if test "${ac_cv_my_have_dlopen}" = "yes"; then
550 AC_DEFINE(HAVE_DL_DLOPEN, 1, [Define if you have the dlopen API])
551 ac_cv_have_plugins=yes
555 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
556 dnl Check for pthreads - borrowed from XMMS
558 if test "${THREAD_LIB}" = "error"; then
559 AC_CHECK_LIB(pthread,main,THREAD_LIB="-lpthread")
561 if test "${THREAD_LIB}" = "error"; then
562 AC_CHECK_LIB(pthreads,main,THREAD_LIB="-lpthreads")
564 if test "${THREAD_LIB}" = "error"; then
565 AC_CHECK_LIB(c_r,main,THREAD_LIB="-lc_r")
567 if test "${THREAD_LIB}" = "error"; then
568 AC_CHECK_FUNCS(pthread_mutex_lock)
572 dnl Check for cthreads under GNU/Hurd for instance
573 AC_CHECK_LIB(threads,cthread_fork,THREAD_LIB="-lthreads")
576 dnl GNU portable threads
579 [ --enable-pth GNU Pth support (default disabled)],
580 [ if test "${enable_pth}" = "yes"; then
581 AC_CHECK_LIB(pth,pth_init)
582 AC_MSG_CHECKING(for pth_init in pth.h)
583 AC_EGREP_HEADER(pth_init,pth.h,[
585 AC_DEFINE(PTH_INIT_IN_PTH_H, 1,
586 Define if <pth.h> defines pth_init)
598 [ --enable-st State Threads (default disabled)],
599 [ if test "${enable_st}" = "yes"; then
600 AC_CHECK_LIB(st,st_init)
601 AC_MSG_CHECKING(for st_init in st.h)
602 AC_EGREP_HEADER(st_init,st.h,[
604 AC_DEFINE(ST_INIT_IN_ST_H, 1,
605 Define if <st.h> defines st_init)
613 VLC_ADD_LDFLAGS([vlc plugin],[${THREAD_LIB}])
615 dnl Don't link with rt when using GNU-pth
616 if test "${THREAD_LIB}" != "-lpth" && test "${THREAD_LIB}" != "-lst"; then
618 AC_CHECK_LIB(rt,sem_init, [VLC_ADD_LDFLAGS([vlc],[-lrt])])
621 AC_CHECK_FUNCS(nanosleep,have_nanosleep=:,[
622 AC_CHECK_LIB(rt,nanosleep,
623 [VLC_ADD_LDFLAGS([vlc],[-lrt]) have_nanosleep=:],
624 [AC_CHECK_LIB(posix4,nanosleep,
625 [VLC_ADD_LDFLAGS([vlc],[-lposix4]) have_nanosleep=:])]
628 if ${have_nanosleep}; then
629 AC_DEFINE(HAVE_NANOSLEEP, 1,
630 Define if nanosleep is available.)
634 dnl Check for misc headers
635 AC_MSG_CHECKING(for pthread_cond_t in pthread.h)
636 AC_EGREP_HEADER(pthread_cond_t,pthread.h,[
638 AC_DEFINE(PTHREAD_COND_T_IN_PTHREAD_H, 1,
639 Define if <pthread.h> defines pthread_cond_t.)],[
642 AC_MSG_CHECKING(for pthread_once in pthread.h)
643 AC_EGREP_HEADER(pthread_once,pthread.h,[
645 AC_DEFINE(PTHREAD_ONCE_IN_PTHREAD_H, 1,
646 Define if <pthread.h> defines pthread_once.)],[
648 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
650 AC_MSG_CHECKING(for strncasecmp in strings.h)
651 AC_EGREP_HEADER(strncasecmp,strings.h,[
653 AC_DEFINE(STRNCASECMP_IN_STRINGS_H, 1,
654 Define if <strings.h> defines strncasecmp.)],[
657 dnl Check for headers
658 AC_CHECK_HEADERS(signal.h time.h errno.h stdint.h stdbool.h getopt.h strings.h inttypes.h sys/int_types.h wchar.h)
659 AC_CHECK_HEADERS(sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h)
660 AC_CHECK_HEADERS(arpa/inet.h net/if.h netinet/in.h sys/socket.h)
661 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
662 AC_CHECK_HEADERS(machine/param.h sys/shm.h)
663 AC_CHECK_HEADERS(linux/version.h)
664 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
670 AC_CHECK_HEADERS(dirent.h,,[need_dirent=:])
671 AM_CONDITIONAL(BUILD_DIRENT, ${need_dirent})
673 dnl Mac OS X and other OSes don't have declaration for nanosleep
674 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
675 AC_MSG_CHECKING(for nanosleep in time.h)
676 AC_EGREP_HEADER(nanosleep,time.h,[
678 AC_DEFINE(HAVE_DECL_NANOSLEEP, 1,
679 Define if <time.h> defines nanosleep.)
683 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
685 dnl Make sure we have timespecs
686 AC_MSG_CHECKING(for timespec in sys/time.h)
687 AC_EGREP_HEADER(timespec,sys/time.h,[
689 AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1,
690 Define if <sys/time.h> defines struct timespec.)
695 dnl Check for threads library
696 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
697 AC_CHECK_HEADERS(cthreads.h pthread.h kernel/scheduler.h kernel/OS.h)
698 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
700 dnl Default X headers and libraries
701 if test "${x_includes}" = "NONE"; then
702 x_includes="/usr/X11R6/include"
704 if test "${x_libraries}" = "NONE"; then
705 x_libraries="/usr/X11R6/lib"
710 [ --enable-hal Linux HAL services discovery (default enabled)])
712 if test "${enable_hal}" != "no"
714 PKG_CHECK_MODULES(HAL, hal >= 0.2.97,
715 [AC_DEFINE(HAVE_HAL, [], [Define if you have the HAL library])
716 VLC_ADD_PLUGINS([hal])
717 VLC_ADD_LDFLAGS([vlc hal],[$HAL_LIBS])
718 VLC_ADD_CFLAGS([vlc hal],[$HAL_CFLAGS])],
719 [AC_MSG_WARN(HAL library not found)])
722 dnl Build the gtk_main plugins?
728 dnl build the qte plugin ?
731 dnl Check for ntohl, etc.
732 AC_CACHE_CHECK([for ntohl in sys/param.h],
733 [ac_cv_c_ntohl_sys_param_h],
734 [CFLAGS="${CFLAGS_save} -Wall -Werror"
735 AC_TRY_COMPILE([#include <sys/param.h>],
736 [void foo() { int meuh; ntohl(meuh); }],
737 ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
738 if test "${ac_cv_c_ntohl_sys_param_h}" != "no"; then
739 AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
742 # XXX: do this with an M4 macro?
743 #dnl Check for various -W flags
744 #for flag in "" all unreachable-code conversion sign-compare disabled-optimization
746 # AC_CACHE_CHECK([if \$CC accepts -W${flag}],
747 # [ac_cv_c_W${flag}],
748 # [CFLAGS="-W${flag} ${CFLAGS_save}"
749 # AC_TRY_COMPILE([],,ac_cv_c_W${flag}=yes, ac_cv_c_W${flag}=no)])
750 # if test "${ac_cv_c_W${flag}}" != "no"; then
751 # CFLAGS_save="-W${flag} ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
752 # CXXFLAGS_save="-W${flag} ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
753 # OBJCFLAGS_save="-W${flag} ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
757 AC_CACHE_CHECK([if \$CC accepts -Wall],
759 [CFLAGS="-Wall ${CFLAGS_save}"
760 AC_TRY_COMPILE([],,ac_cv_c_Wall=yes, ac_cv_c_Wall=no)])
762 AC_CACHE_CHECK([if \$CC accepts -Wconversion],
763 [ac_cv_c_Wconversion],
764 [CFLAGS="-Wconversion ${CFLAGS_save}"
765 AC_TRY_COMPILE([],,ac_cv_c_Wconversion=yes, ac_cv_c_Wconversion=no)])
767 AC_CACHE_CHECK([if \$CC accepts -Wunreachable-code],
768 [ac_cv_c_Wunreachable_code],
769 [CFLAGS="-Wunreachable-code ${CFLAGS_save}"
770 AC_TRY_COMPILE([],,ac_cv_c_Wunreachable_code=yes, ac_cv_c_Wunreachable_code=no)])
772 AC_CACHE_CHECK([if \$CC accepts -Wsign-compare],
773 [ac_cv_c_Wsign_compare],
774 [CFLAGS="-Wsign-compare ${CFLAGS_save}"
775 AC_TRY_COMPILE([],,ac_cv_c_Wsign_compare=yes, ac_cv_c_Wsign_compare=no)])
777 if test "${ac_cv_c_Wall}" != "no"; then
778 CFLAGS_save="-Wall ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
779 CXXFLAGS_save="-Wall ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
780 OBJCFLAGS_save="-Wall ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
783 if test "${ac_cv_c_Wsign_compare}" != "no"; then
784 CFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CFLAGS="${CFLAGS_save}"
785 CXXFLAGS_save="-Wsign-compare ${CFLAGS_save}"; CXXFLAGS="${CXXFLAGS_save}"
786 OBJCFLAGS_save="-Wsign-compare ${OBJCFLAGS_save}"; OBJCFLAGS="${OBJCFLAGS_save}"
790 AC_CACHE_CHECK([if \$CC accepts -pipe],
792 [CFLAGS="${CFLAGS_save} -pipe"
793 AC_TRY_COMPILE([],,ac_cv_c_pipe=yes, ac_cv_c_pipe=no)])
794 if test "${ac_cv_c_pipe}" != "no"; then
795 CFLAGS_save="${CFLAGS_save} -pipe"; CFLAGS="${CFLAGS_save}"
796 CXXFLAGS_save="${CXXFLAGS_save} -pipe"; CXXFLAGS="${CXXFLAGS_save}"
797 OBJCFLAGS_save="${OBJCFLAGS_save} -pipe"; OBJCFLAGS="${OBJCFLAGS_save}"
800 dnl Check for various optimization flags
801 AC_CACHE_CHECK([if \$CC accepts -Os],
803 [CFLAGS="${CFLAGS_save} -Os"
804 AC_TRY_COMPILE([],,ac_cv_c_os=yes, ac_cv_c_os=no)])
805 if test "${ac_cv_c_os}" != "no" -a "${target_cpu}" = "mipsel"; then
806 CFLAGS_OPTIM="${CFLAGS_OPTIM} -Os"
809 AC_CACHE_CHECK([if \$CC accepts -O3],
811 [CFLAGS="${CFLAGS_save} -O3"
812 AC_TRY_COMPILE([],,ac_cv_c_o3=yes, ac_cv_c_o3=no)])
813 if test "${ac_cv_c_o3}" != "no" -a "${target_cpu}" != "mipsel"; then
814 CFLAGS_OPTIM="${CFLAGS_OPTIM} -O3"
817 AC_CACHE_CHECK([if \$CC accepts -O2],
819 [CFLAGS="${CFLAGS_save} -O2"
820 AC_TRY_COMPILE([],,ac_cv_c_o2=yes, ac_cv_c_o2=no)])
821 if test "${ac_cv_c_o2}" != "no" -a "${target_cpu}" != "mipsel"; then
822 if test "${ac_cv_c_o3}" = "no"; then
823 CFLAGS_OPTIM="${CFLAGS_OPTIM} -O2"
825 CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O2"
827 AC_CACHE_CHECK([if \$CC accepts -O],
829 [CFLAGS="${CFLAGS_save} -O"
830 AC_TRY_COMPILE([],,ac_cv_c_o=yes, ac_cv_c_o=no)])
831 if test "${ac_cv_c_o}" != "no" -a "${target_cpu}" != "mipsel"; then
832 if test "${ac_cv_c_o3}" = "no"; then
833 CFLAGS_OPTIM="${CFLAGS_OPTIM} -O"
835 CFLAGS_NOOPTIM="${CFLAGS_NOOPTIM} -O"
839 dnl Check for -ffast-math
840 AC_CACHE_CHECK([if \$CC accepts -ffast-math],
842 [CFLAGS="${CFLAGS_save} -ffast-math"
843 AC_TRY_COMPILE([],,ac_cv_c_fast_math=yes, ac_cv_c_fast_math=no)])
844 if test "${ac_cv_c_fast_math}" != "no"; then
845 CFLAGS_OPTIM="${CFLAGS_OPTIM} -ffast-math"
848 dnl Check for -funroll-loops
849 dnl Disabled on BeOS because BeOS' gcc is buggy and may crash with it
850 if test "${SYS}" != "beos"
852 AC_CACHE_CHECK([if \$CC accepts -funroll-loops],
853 [ac_cv_c_unroll_loops],
854 [CFLAGS="${CFLAGS_save} -funroll-loops"
855 AC_TRY_COMPILE([],,ac_cv_c_unroll_loops=yes, ac_cv_c_unroll_loops=no)])
856 if test "${ac_cv_c_unroll_loops}" != "no"; then
857 CFLAGS_OPTIM="${CFLAGS_OPTIM} -funroll-loops"
861 dnl Check for -fomit-frame-pointer
862 AC_CACHE_CHECK([if \$CC accepts -fomit-frame-pointer],
863 [ac_cv_c_omit_frame_pointer],
864 [CFLAGS="${CFLAGS_save} -fomit-frame-pointer"
865 AC_TRY_COMPILE([],,ac_cv_c_omit_frame_pointer=yes, ac_cv_c_omit_frame_pointer=no)])
866 if test "${ac_cv_c_omit_frame_pointer}" != "no"; then
867 CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fomit-frame-pointer"
868 # this plugin does not compile without -fomit-frame-pointer, damn gcc!
869 VLC_ADD_CFLAGS([i420_yuy2_mmx],[-fomit-frame-pointer])
872 dnl Check for -mdynamic-no-pic
873 AC_CACHE_CHECK([if \$CC accepts -mdynamic-no-pic],
874 [ac_cv_c_dynamic_no_pic],
875 [CFLAGS="${CFLAGS_save} -mdynamic-no-pic"
876 AC_TRY_COMPILE([],,ac_cv_c_dynamic_no_pic=yes, ac_cv_c_dynamic_no_pic=no)])
877 if test "${ac_cv_c_dynamic_no_pic}" != "no"; then
878 VLC_ADD_CFLAGS([builtin],[-mdynamic-no-pic])
879 VLC_ADD_CFLAGS([libvlc],[-mdynamic-no-pic])
882 dnl Check for Darwin plugin linking flags
883 AC_CACHE_CHECK([if \$CC accepts -bundle -undefined error -lcc_dynamic],
885 [CFLAGS="${CFLAGS_save} -bundle -undefined error -lcc_dynamic"
886 AC_TRY_COMPILE([],,ac_cv_ld_darwin=yes, ac_cv_ld_darwin=no)])
887 if test "${ac_cv_ld_darwin}" != "no"; then
888 VLC_ADD_LDFLAGS([plugin],[-bundle -undefined error])
889 AC_CHECK_LIB(cc_dynamic, main,[
890 VLC_ADD_LDFLAGS([plugin],[-lcc_dynamic])
894 dnl Check for standard plugin linking flags
895 dnl BeOS' gcc needs -nostart instead of -shared, even if -shared isn't harmful (just a warning)
896 if test "${SYS}" = "beos"; then
897 VLC_ADD_LDFLAGS([plugin mozilla],[-nostart])
899 AC_CACHE_CHECK([if \$CC accepts -shared],
901 [CFLAGS="${CFLAGS_save} -shared"
902 AC_TRY_COMPILE([],, ac_cv_ld_plugins=yes, ac_cv_ld_plugins=no)])
903 if test "${ac_cv_ld_plugins}" != "no"; then
904 VLC_ADD_LDFLAGS([plugin mozilla],[-shared])
908 dnl Check for variadic macros
909 AC_CACHE_CHECK([for variadic cpp macros],
910 [ac_cv_cpp_variadic_macros],
911 [CFLAGS="${CFLAGS_save}"
914 #define a(b,c...) printf(b,##c)],
915 [a("foo");a("%s","bar");a("%s%s","baz","quux");],
916 ac_cv_cpp_variadic_macros=yes,
917 ac_cv_cpp_variadic_macros=no)])
918 if test "${ac_cv_cpp_variadic_macros}" != "no"; then
919 AC_DEFINE(HAVE_VARIADIC_MACROS, 1, Support for variadic macros)
922 dnl Checks for __attribute__(aligned()) directive
923 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
924 [ac_cv_c_attribute_aligned],
925 [ac_cv_c_attribute_aligned=0
926 CFLAGS="${CFLAGS_save} -Werror"
927 for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
929 [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
930 [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
932 CFLAGS="${CFLAGS_save}"])
933 if test "${ac_cv_c_attribute_aligned}" != "0"; then
934 AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
935 [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
938 dnl Checks for __attribute__(format()) directive
939 AC_CACHE_CHECK([__attribute__ ((format ())) support with function pointers],
940 [ac_cv_c_attribute_format],
941 [ac_cv_c_attribute_format=no
942 CFLAGS="${CFLAGS_save} -Werror"
944 [static void (*pf_printf)(const char *, ...) __attribute__ ((format(printf,1,2)));(void)pf_printf;],
945 [ac_cv_c_attribute_format=yes])
946 CFLAGS="${CFLAGS_save}"])
947 if test "${ac_cv_c_attribute_format}" != "no"; then
948 AC_DEFINE(HAVE_ATTRIBUTE_FORMAT, 1, Support for __attribute__((format())) with function pointers)
951 dnl Check for __attribute__(())
952 AC_CACHE_CHECK([for __attribute__((packed))],
953 [ac_cv_c_attribute_packed],
954 [ac_cv_c_attribute_packed=no
955 AC_TRY_COMPILE(, [struct __attribute__((__packed__)) foo { int a; } b;],
956 [ac_cv_c_attribute_packed=yes])])
957 if test "${ac_cv_c_attribute_packed}" != "no"; then
958 AC_DEFINE(HAVE_ATTRIBUTE_PACKED, 1, Support for __attribute__((packed)) for structs)
964 case "${target_cpu}" in
977 [ --enable-gprof gprof profiling (default disabled)])
979 [ --enable-cprof cprof profiling (default disabled)])
980 test "${enable_gprof}" != "yes" && enable_gprof="no"
981 test "${enable_cprof}" != "yes" && enable_cprof="no"
986 VLC_ADD_PLUGINS([dummy logger memcpy])
987 VLC_ADD_PLUGINS([mpgv mpga m4v m4a h264 ps pva avi asf mp4 rawdv nsv real aiff mjpeg demuxdump flac])
988 VLC_ADD_PLUGINS([cvdsub svcdsub spudec subsdec dvbsub mpeg_audio lpcm a52 dts cinepak flacdec])
989 VLC_ADD_PLUGINS([deinterlace invert adjust transform distort motionblur rv32])
990 VLC_ADD_PLUGINS([fixed32tos16 s16tofixed32 u8tofixed32])
991 VLC_ADD_PLUGINS([trivial_resampler ugly_resampler])
992 VLC_ADD_PLUGINS([trivial_channel_mixer trivial_mixer])
993 VLC_ADD_PLUGINS([playlist export sgimb m3u nsc xtag])
994 VLC_ADD_PLUGINS([i420_rgb rawvideo blend scale image logo])
995 VLC_ADD_PLUGINS([wav araw subtitle vobsub adpcm a52sys dtssys au ty voc xa nuv])
996 VLC_ADD_PLUGINS([access_directory access_file access_udp access_tcp])
997 VLC_ADD_PLUGINS([access_http access_mms access_ftp ipv4])
998 VLC_ADD_PLUGINS([packetizer_mpegvideo packetizer_h264])
999 VLC_ADD_PLUGINS([packetizer_mpeg4video packetizer_mpeg4audio])
1001 if test "${SYS}" != "mingwce"; then
1002 dnl VLC_ADD_PLUGINS([externrun])
1003 VLC_ADD_PLUGINS([access_fake access_filter_timeshift access_filter_record])
1004 VLC_ADD_PLUGINS([gestures rc telnet hotkeys netsync showintf time marq shout sap fake])
1005 VLC_ADD_PLUGINS([rss mosaic wall motiondetect clone crop])
1006 VLC_ADD_PLUGINS([i420_yuy2 i422_yuy2 i420_ymga])
1007 VLC_ADD_PLUGINS([aout_file linear_resampler bandlimited_resampler])
1008 VLC_ADD_PLUGINS([float32_mixer spdif_mixer simple_channel_mixer])
1009 VLC_ADD_PLUGINS([headphone_channel_mixer normvol equalizer])
1010 VLC_ADD_PLUGINS([fixed32tofloat32 float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif s16tofloat32 s16tofloat32swab s8tofloat32 u8tofloat32 audio_format])
1014 dnl Switch to enable a version of VLC where most modules will be builtin
1016 AC_ARG_ENABLE(mostly-builtin,
1017 [ --enable-mostly-builtin most modules will be built-in (default disabled)])
1018 if test "${enable_mostly_builtin}" = "yes"; then
1019 VLC_ADD_BUILTINS([${PLUGINS}])
1024 dnl Some plugins aren't useful on some platforms
1026 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
1027 VLC_ADD_PLUGINS([screensaver])
1028 elif test "${SYS}" != "mingwce"; then
1029 VLC_ADD_PLUGINS([ntservice access_smb dmo])
1030 VLC_ADD_LDFLAGS([dmo],[-lole32])
1032 VLC_ADD_PLUGINS([win32text])
1036 dnl Accelerated modules
1038 MMX_MODULES="memcpymmx i420_rgb_mmx i422_yuy2_mmx i420_ymga_mmx"
1039 #MMX_MODULES="${MMX_MODULES} idctmmx motionmmx"
1040 MMXEXT_MODULES="memcpymmxext"
1041 #MMXEXT_MODULES="${MMXEXT_MODULES} idctmmxext motionmmxext"
1042 THREEDNOW_MODULES="memcpy3dn"
1044 ALTIVEC_MODULES="memcpyaltivec i420_yuy2_altivec"
1045 #ALTIVEC_MODULES="${ALTIVEC_MODULES} idctaltivec motionaltivec"
1047 if test "${enable_gprof}" != "yes"
1049 MMX_MODULES="${MMX_MODULES} i420_yuy2_mmx"
1052 AC_CACHE_CHECK([if \$CC groks MMX inline assembly],
1054 [CFLAGS="${CFLAGS_save}"
1055 AC_TRY_COMPILE(,[void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p));],
1056 ac_cv_mmx_inline=yes, ac_cv_mmx_inline=no)])
1057 if test "${ac_cv_mmx_inline}" != "no"; then
1058 AC_DEFINE(CAN_COMPILE_MMX, 1, Define if \$CC groks MMX inline assembly.)
1059 ACCEL_MODULES="${ACCEL_MODULES} ${MMX_MODULES}"
1062 AC_CACHE_CHECK([if \$CC groks MMX EXT inline assembly],
1063 [ac_cv_mmxext_inline],
1064 [CFLAGS="${CFLAGS_save}"
1065 AC_TRY_COMPILE(,[void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p));],
1066 ac_cv_mmxext_inline=yes, ac_cv_mmxext_inline=no)])
1067 if test "${ac_cv_mmxext_inline}" != "no"; then
1068 AC_DEFINE(CAN_COMPILE_MMXEXT, 1, Define if \$CC groks MMX EXT inline assembly.)
1069 ACCEL_MODULES="${ACCEL_MODULES} ${MMXEXT_MODULES}"
1072 AC_CACHE_CHECK([if \$CC groks 3D Now! inline assembly],
1073 [ac_cv_3dnow_inline],
1074 [CFLAGS="${CFLAGS_save}"
1075 AC_TRY_COMPILE(,[void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p));],
1076 ac_cv_3dnow_inline=yes, ac_cv_3dnow_inline=no)])
1077 if test "${ac_cv_3dnow_inline}" != "no"; then
1078 AC_DEFINE(CAN_COMPILE_3DNOW, 1, Define if \$CC groks 3D Now! inline assembly.)
1079 ACCEL_MODULES="${ACCEL_MODULES} ${THREEDNOW_MODULES}"
1082 AC_CACHE_CHECK([if \$CC groks SSE inline assembly],
1084 [CFLAGS="${CFLAGS_save}"
1085 AC_TRY_COMPILE(,[void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p));],
1086 ac_cv_sse_inline=yes, ac_cv_sse_inline=no)])
1087 if test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "solaris"; then
1088 AC_DEFINE(CAN_COMPILE_SSE, 1, Define if \$CC groks SSE inline assembly.)
1089 ACCEL_MODULES="${ACCEL_MODULES} ${SSE_MODULES}"
1092 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
1093 AC_CACHE_CHECK([if \$CC groks AltiVec inline assembly],
1094 [ac_cv_altivec_inline],
1095 [CFLAGS="${CFLAGS_save}"
1096 AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1097 ac_cv_altivec_inline=yes,
1098 [CFLAGS="${CFLAGS_save} -Wa,-m7400"
1099 AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1100 [ac_cv_altivec_inline="-Wa,-m7400"],
1101 ac_cv_altivec_inline=no)
1103 if test "${ac_cv_altivec_inline}" != "no"; then
1104 AC_DEFINE(CAN_COMPILE_ALTIVEC, 1, Define if \$CC groks AltiVec inline assembly.)
1105 if test "${ac_cv_altivec_inline}" != "yes"; then
1106 VLC_ADD_CFLAGS([idctaltivec],[${ac_cv_altivec_inline}])
1107 VLC_ADD_CFLAGS([motionaltivec],[${ac_cv_altivec_inline}])
1108 VLC_ADD_CFLAGS([memcpyaltivec],[${ac_cv_altivec_inline}])
1109 VLC_ADD_CFLAGS([i420_yuy2_altivec],[${ac_cv_altivec_inline}])
1110 VLC_ADD_CFLAGS([vlc],[${ac_cv_altivec_inline}])
1112 ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
1115 dnl The AltiVec C extensions
1117 dnl There are several possible cases:
1118 dnl - OS X PPC, gcc 4.x: use -mpim-altivec, don't need <altivec.h>
1119 dnl - OS X PPC, gcc 3.x: need -faltivec, don't need <altivec.h>
1120 dnl - Linux PPC, gcc 4.x: need <altivec.h> which itself requires -maltivec
1121 dnl - Linux PPC, gcc 3.3: need <altivec.h> and -maltivec -mabi=altivec
1122 dnl - Linux PPC, gcc 3.x: need <altivec.h> and -fvec
1123 dnl - Others: test should fail
1124 AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1126 [# OS X/PPC test (gcc 4.x)
1127 CFLAGS="${CFLAGS_save} -mpim-altivec"
1129 [vec_ld(0, (unsigned char *)0);],
1130 [ac_cv_c_altivec="-mpim-altivec"],
1131 [# OS X/PPC test (gcc 3.x)
1132 CFLAGS="${CFLAGS_save} -faltivec"
1134 [vec_ld(0, (unsigned char *)0);],
1135 [ac_cv_c_altivec="-faltivec"],
1136 dnl Below this are the Linux tests
1137 [# Linux/PPC test (gcc 4.x)
1138 CFLAGS="${CFLAGS_save} -maltivec"
1139 AC_TRY_COMPILE([#include <altivec.h>],
1140 [vec_ld(0, (unsigned char *)0);],
1141 [ac_cv_c_altivec="-maltivec"],
1142 [# Linux/PPC test (gcc 3.3)
1143 CFLAGS="${CFLAGS_save} -maltivec -mabi=altivec"
1144 AC_TRY_COMPILE([#include <altivec.h>],
1145 [vec_ld(0, (unsigned char *)0);],
1147 ac_cv_c_altivec_abi="-maltivec -mabi=altivec"],
1148 [# Linux/PPC test (gcc 3.3)
1149 CFLAGS="${CFLAGS_save} -fvec"
1150 AC_TRY_COMPILE([#include <altivec.h>],
1151 [vec_ld(0, (unsigned char *)0);],
1152 [ac_cv_c_altivec="-fvec"],
1153 [ac_cv_c_altivec=no])
1158 CFLAGS="${CFLAGS_save}"
1161 if test "${ac_cv_c_maltivec}" != "no"; then
1162 CPPFLAGS="${CPPFLAGS_save} ${ac_cv_c_maltivec}"
1164 AC_CHECK_HEADERS(altivec.h)
1165 CPPFLAGS="${CPPFLAGS_save}"
1167 if test "${ac_cv_c_altivec}" != "no"; then
1168 AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, Define if your compiler groks C AltiVec extensions.)
1169 VLC_ADD_CFLAGS([vlc],[${ac_cv_c_altivec}])
1170 VLC_ADD_CFLAGS([idctaltivec motionaltivec],[${ac_cv_c_altivec}])
1171 VLC_ADD_CFLAGS([i420_yuy2_altivec memcpyaltivec deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1172 ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
1175 AC_CACHE_CHECK([if linker needs -framework vecLib],
1177 [LDFLAGS="${LDFLAGS_vlc} -framework vecLib"
1178 AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)
1179 LDFLAGS="${LDFLAGS_save}"
1181 if test "${ac_cv_ld_altivec}" != "no"; then
1182 VLC_ADD_LDFLAGS([vlc idctaltivec motionaltivec memcpyaltivec],[-framework vecLib])
1184 fi # end "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
1187 AC_ARG_WITH(,[Optimization options:])
1190 dnl Special arch tuning
1193 [ --with-tuning=ARCH enable special tuning for an architecture
1194 (default Pentium 2 on IA-32 and 750 on PPC)])
1195 if test -n "${with_tuning}"; then
1196 CFLAGS_TUNING="-mtune=${with_tuning}"
1198 if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "i486" -o "${target_cpu}" = "i386"; then
1199 CFLAGS_TUNING="-mtune=pentium2"
1200 elif test "${target_cpu}" = "x86_64"; then
1201 CFLAGS_TUNING="-mtune=athlon64"
1202 elif test "${target_cpu}" = "powerpc"; then
1203 CFLAGS_TUNING="-mtune=750";
1206 dnl NOTE: this can't be cached cleanly
1207 AS_IF([test "${CFLAGS_TUNING}"],
1208 [CFLAGS_save="${CFLAGS}"
1209 CFLAGS="${CFLAGS} ${CFLAGS_TUNING}"
1211 AC_MSG_CHECKING([whether $CC accepts ${CFLAGS_TUNING}])
1212 AC_COMPILE_IFELSE([ ], [tuning="yes"],
1213 [CFLAGS_TUNING=""; tuning="no"])
1215 AC_MSG_RESULT([$tuning])
1216 CFLAGS="${CFLAGS_save}"
1221 dnl x86 accelerations
1223 if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "x86" -o "${target_cpu}" = "i386" -o "${target_cpu}" = "x86_64"
1226 VLC_ADD_BUILTINS([${ACCEL_MODULES}])
1232 AC_ARG_ENABLE(optimize-memory,
1233 [ --enable-optimize-memory optimize memory usage over performance])
1234 if test "${enable_optimize_memory}" = "yes"; then
1235 AC_DEFINE(OPTIMIZE_MEMORY, 1, Define if you want to optimize memory usage over performance)
1239 dnl Enable/disable optimizations
1241 AC_ARG_ENABLE(optimizations,
1242 [ --disable-optimizations disable compiler optimizations (default enabled)])
1243 test "${enable_optimizations}" != "no" && enable_optimizations="yes"
1246 dnl AltiVec acceleration
1248 AC_ARG_ENABLE(altivec,
1249 [ --disable-altivec disable AltiVec optimizations (default enabled on PPC)],
1250 [ if test "${enable_altivec}" = "yes"; then ARCH="${ARCH} altivec";
1251 VLC_ADD_BUILTINS([${ACCEL_MODULES}]) fi ],
1252 [ if test "${target_cpu}" = "powerpc"; then ARCH="${ARCH} altivec";
1253 VLC_ADD_BUILTINS([${ACCEL_MODULES}]) fi ])
1258 AC_ARG_ENABLE(debug,
1259 [ --enable-debug debug mode (default disabled)])
1260 test "${enable_debug}" != "yes" && enable_debug="no"
1263 dnl Enable release-specific flags
1265 AC_ARG_ENABLE(release,
1266 [ --enable-release activate extra optimizations (default disabled)])
1267 test "${enable_release}" != "yes" && enable_release="no"
1273 [ --enable-sout Stream output modules (default enabled)])
1274 if test "${enable_sout}" != "no"
1276 VLC_ADD_PLUGINS([access_output_dummy access_output_udp access_output_file access_output_http])
1277 VLC_ADD_PLUGINS([mux_ps mux_avi mux_mp4 mux_asf mux_dummy mux_wav mux_mpjpeg])
1278 VLC_ADD_PLUGINS([packetizer_copy])
1280 VLC_ADD_PLUGINS([stream_out_dummy stream_out_standard stream_out_es stream_out_rtp stream_out_description vod_rtsp])
1281 VLC_ADD_PLUGINS([stream_out_duplicate stream_out_gather stream_out_display stream_out_transcode stream_out_bridge stream_out_mosaic_bridge])
1282 # VLC_ADD_PLUGINS([stream_out_transrate])
1284 AC_DEFINE(ENABLE_SOUT, 1, Define if you want the stream output support)
1287 dnl Check for libshout
1288 AC_ARG_ENABLE(shout,
1289 [ --enable-shout libshout output plugin (default disabled)])
1290 if test "${enable_shout}" = "yes"; then
1291 PKG_CHECK_MODULES(SHOUT, shout >= 2.1,
1292 [AC_DEFINE(HAVE_SHOUT, [], [Define if you have the libshout library])
1293 VLC_ADD_PLUGINS([access_output_shout])
1294 VLC_ADD_LDFLAGS([vlc access_output_shout],[$SHOUT_LIBS])
1295 VLC_ADD_CFLAGS([vlc access_output_shout],[$SHOUT_CFLAGS])],
1296 [AC_MSG_WARN(libshout library not found)])
1302 AC_ARG_ENABLE(httpd,
1303 [ --enable-httpd HTTP daemon (default enabled)])
1304 if test "${enable_httpd}" != "no"
1306 VLC_ADD_PLUGINS([http])
1307 AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP dameon support)
1311 dnl VideoLAN manager
1314 [ --enable-vlm VideoLAN manager (default enabled)])
1315 if test "${enable_vlm}" != "no"
1317 AC_DEFINE(ENABLE_VLM, 1, Define if you want the VideoLAN manager support)
1323 AC_ARG_ENABLE(gnutls,
1324 [ --enable-gnutls gnutls TLS/SSL support (default enabled)])
1325 AS_IF([test "${enable_gnutls}" != "no"], [
1327 gcrypt_LIBS="-lgpg-error"
1328 AS_IF([test "${SYS}" = "mingw32"],
1329 [gcrypt_LIBS="${gcrypt_LIBS} -lws2_32"
1330 VLC_ADD_LDFLAGS([gnutls],[-lws2_32])]
1333 gnutls_LIBS="-lgcrypt -lz ${gcrypt_LIBS}"
1335 AC_CHECK_HEADER(gcrypt.h,
1336 [AC_CHECK_LIB(gcrypt, gcry_control,
1337 [AC_CHECK_HEADER(gnutls/gnutls.h,
1338 [AC_CHECK_LIB(gnutls, gnutls_certificate_verify_peers2,
1339 [have_gnutls="yes"],[old_gnutls="yes"], ${gnutls_LIBS})])],,
1342 AS_IF([test "${have_gnutls}" = "yes"], [
1343 VLC_ADD_PLUGINS([gnutls])
1344 VLC_ADD_LDFLAGS([gnutls], [-lgnutls ${gnutls_LIBS}])
1346 AS_IF([test "${enable_gnutls}" = "yes"], [
1347 AC_MSG_ERROR([gnutls not present or too old (version 1.0.17 required)])]
1357 AC_ARG_WITH(,[Input plugins:])
1361 AC_ARG_ENABLE(livedotcom,
1362 [ --enable-livedotcom live.com RTSP input plugin (default disabled)])
1363 if test "${enable_livedotcom}" = "yes"; then
1364 AC_ARG_WITH(livedotcom-tree,
1365 [ --with-livedotcom-tree=PATH live.com tree for static linking])
1368 dnl test for --with-livedotcom-tree
1370 if test -z "${with_livedotcom_tree}" -a "${CXX}" != ""; then
1372 CPPFLAGS_save="${CPPFLAGS}"
1373 CPPFLAGS_livedotcom="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
1374 CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_livedotcom}"
1375 AC_CHECK_HEADERS(liveMedia.hh, [
1376 VLC_ADD_CXXFLAGS([livedotcom], [${CPPFLAGS_livedotcom}])
1377 AC_CHECK_LIB(liveMedia_pic, main, [
1378 # We have -lliveMedia_pic, build plugins
1379 VLC_ADD_PLUGINS([livedotcom])
1380 VLC_ADD_LDFLAGS([livedotcom], [-lliveMedia_pic -lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic])
1382 AC_CHECK_LIB(liveMedia, main, [
1383 # We only have -lliveMedia, do builtins
1384 VLC_ADD_BUILTINS([livedotcom])
1385 VLC_ADD_LDFLAGS([livedotcom], [-lliveMedia -lgroupsock -lBasicUsageEnvironment -lUsageEnvironment])
1388 if test "${SYS}" = "mingw32"; then
1389 # add ws2_32 for closesocket, select, recv
1390 VLC_ADD_LDFLAGS([livedotcom],[-lws2_32])
1393 CPPFLAGS="${CPPFLAGS_save}"
1396 AC_MSG_CHECKING(for liveMedia/libliveMedia.a in ${with_livedotcom_tree})
1397 real_livedotcom_tree="`cd ${with_livedotcom_tree} 2>/dev/null && pwd`"
1398 if test -z "${real_livedotcom_tree}"; then
1399 dnl The given directory can't be found
1401 AC_MSG_ERROR([cannot cd to ${with_livedotcom_tree}])
1403 if test -f "${real_livedotcom_tree}/liveMedia/libliveMedia.a"; then
1404 AC_MSG_RESULT(${real_livedotcom_tree}/liveMedia/libliveMedia.a)
1406 VLC_ADD_BUILTINS([livedotcom])
1408 if test "${SYS}" = "mingw32"; then
1409 # add ws2_32 for closesocket, select, recv
1410 VLC_ADD_LDFLAGS([livedotcom],[-lws2_32])
1413 VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/liveMedia -lliveMedia])
1414 VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/BasicUsageEnvironment -lBasicUsageEnvironment])
1415 VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/groupsock -lgroupsock])
1416 VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/UsageEnvironment -lUsageEnvironment])
1418 VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/BasicUsageEnvironment/include])
1419 VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/groupsock/include])
1420 VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/liveMedia/include])
1421 VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/UsageEnvironment/include ])
1423 dnl The given live.com wasn't built
1425 AC_MSG_ERROR([cannot find ${real_livedotcom_tree}/liveMedia/libliveMedia.a, make sure you compiled live.com in ${with_livedotcom_tree}])
1432 dnl dvdread module: check for libdvdread
1434 AC_ARG_ENABLE(dvdread,
1435 [ --enable-dvdread dvdread input module (default disabled)])
1436 if test "${enable_dvdread}" != "no"
1438 AC_ARG_WITH(dvdread,
1439 [ --with-dvdread=PATH libdvdread headers and libraries])
1440 AC_ARG_WITH(dvdread-tree,
1441 [ --with-dvdread-tree=PATH libdvdread tree for static linking])
1443 dnl Temporary hack (yeah, sure ;)
1444 if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
1445 VLC_ADD_LDFLAGS([dvdread],[-ldvdcss])
1448 if test -z "${with_dvdread}"
1450 if test -z "${with_dvdread_tree}"
1452 AC_CHECK_HEADERS(dvdread/dvd_reader.h,
1453 [ VLC_ADD_PLUGINS([dvdread])
1454 VLC_ADD_LDFLAGS([dvdread],[-ldvdread ${LDFLAGS_dvdcss}])
1456 if test -n "${enable_dvdread}"
1458 AC_MSG_ERROR([cannot find libdvdread headers])
1462 AC_MSG_CHECKING(for libdvdread.a in ${with_dvdread_tree})
1463 real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`"
1464 if test -z "${real_dvdread_tree}"
1466 dnl The given directory can't be found
1468 AC_MSG_ERROR([cannot cd to ${with_dvdread_tree}])
1470 if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a"
1472 dnl Use a custom libdvdread
1473 AC_MSG_RESULT(${real_dvdread_tree}/dvdread/.libs/libdvdread.a)
1474 VLC_ADD_BUILTINS([dvdread])
1475 VLC_ADD_LDFLAGS([dvdread],[-L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LDFLAGS_dvdcss}])
1476 VLC_ADD_CPPFLAGS([dvdread],[-I${real_dvdread_tree}])
1478 dnl The given libdvdread wasn't built
1480 AC_MSG_ERROR([cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}])
1484 AC_MSG_CHECKING(for dvdread headers in ${with_dvdread})
1485 if test -f ${with_dvdread}/include/dvdread/dvd_reader.h
1487 dnl Use ${with_dvdread}/include/dvdread/dvd_reader.h
1489 VLC_ADD_PLUGINS([dvdread])
1490 VLC_ADD_LDFLAGS([dvdread],[-L${with_dvdread}/lib -ldvdread ${LDFLAGS_dvdcss}])
1491 VLC_ADD_CPPFLAGS([dvdread],[-I${with_dvdread}/include])
1493 dnl No libdvdread could be found, sorry
1495 AC_MSG_ERROR([cannot find ${with_dvdread}/include/dvdread/dvd_reader.h])
1501 dnl libdvdnav plugin
1503 AC_ARG_ENABLE(dvdnav,
1504 [ --enable-dvdnav dvdnav input module (default enabled)])
1505 if test "${enable_dvdnav}" != "no"
1507 dnl Same hack than dvdread
1508 if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
1509 VLC_ADD_LDFLAGS([dvdnav],[-ldvdcss])
1512 DVDNAV_PATH="${PATH}"
1513 AC_ARG_WITH(dvdnav-config-path,
1514 [ --with-dvdnav-config-path=PATH dvdnav-config path (default search in \$PATH)],
1515 [ if test "${with_dvdnav_config_path}" != "no"
1517 DVDNAV_PATH="${with_dvdnav_config_path}:${PATH}"
1519 AC_PATH_PROG(DVDNAV_CONFIG, dvdnav-config, no, ${DVDNAV_PATH})
1520 if test "${DVDNAV_CONFIG}" != "no"
1522 VLC_ADD_PLUGINS([dvdnav])
1523 VLC_ADD_CFLAGS([dvdnav],[`${DVDNAV_CONFIG} --cflags`])
1524 VLC_ADD_LDFLAGS([dvdnav],[`${DVDNAV_CONFIG} --libs`])
1529 dnl Windows DirectShow access module
1531 AC_ARG_ENABLE(dshow,
1532 [ --enable-dshow Win32 DirectShow support (default enabled on Win32)])
1533 if test "${enable_dshow}" != "no"
1535 if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
1537 AC_CHECK_HEADERS(dshow.h,
1538 [ VLC_ADD_PLUGINS([dshow])
1539 VLC_ADD_CXXFLAGS([dshow],[])
1540 VLC_ADD_LDFLAGS([dshow],[-lole32 -loleaut32 -luuid]) ])
1545 dnl libsmbclient plugin
1548 [ --enable-smb smb input module (default enabled)])
1549 if test "${enable_smb}" != "no"; then
1550 AC_CHECK_HEADERS(libsmbclient.h,
1551 [ VLC_ADD_PLUGINS([access_smb])
1552 VLC_ADD_LDFLAGS([access_smb],[-lsmbclient]) ],
1553 [ if test -n "${enable_smb}"; then
1554 AC_MSG_ERROR([cannot find libsmbclient headers])
1556 AC_CHECK_MEMBER([struct _SMBCCTX.close_fn],
1557 AC_DEFINE([HAVE__SMBCCTX_CLOSE_FN], [1], [Define if samba has _SMBCCTX.close_fn]),,
1558 [#include <libsmbclient.h>])
1562 dnl libdvbpsi ts demux/mux
1564 AC_ARG_ENABLE(dvbpsi,
1565 [ --enable-dvbpsi dvbpsi ts mux and demux module (default enabled)])
1566 if test "${enable_dvbpsi}" != "no"
1569 [ --with-dvbpsi=PATH libdvbpsi headers and libraries])
1571 [ --with-dvbpsi-tree=PATH libdvbpsi tree for static linking])
1572 case "${with_dvbpsi}" in
1574 if test -z "${with_dvbpsi_tree}"
1576 AC_CHECK_HEADERS(dvbpsi/dr.h,
1577 [ VLC_ADD_PLUGINS([ts])
1578 if test "${enable_sout}" != "no"; then
1579 VLC_ADD_BUILTINS([mux_ts])
1581 VLC_ADD_LDFLAGS([mux_ts ts dvb],[-ldvbpsi]) ],
1582 [ AC_MSG_WARN([cannot find libdvbpsi headers]) ],
1583 [#if defined( HAVE_STDINT_H )
1584 # include <stdint.h>
1585 #elif defined( HAVE_INTTYPES_H )
1586 # include <inttypes.h>
1588 #include <dvbpsi/dvbpsi.h>
1589 #include <dvbpsi/descriptor.h>
1590 #include <dvbpsi/pat.h>
1591 #include <dvbpsi/pmt.h>])
1593 AC_MSG_CHECKING(for libdvbpsi.a in ${with_dvbpsi_tree})
1594 real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
1595 if test -z "${real_dvbpsi_tree}"
1597 dnl The given directory can't be found
1599 AC_MSG_ERROR([cannot cd to ${with_dvbpsi_tree}])
1601 if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
1603 dnl Use a custom libdvbpsi
1604 AC_MSG_RESULT(${real_dvbpsi_tree}/src/.libs/libdvbpsi.a)
1605 VLC_ADD_BUILTINS([ts])
1606 if test "${enable_sout}" != "no"; then
1607 VLC_ADD_BUILTINS([mux_ts])
1609 VLC_ADD_CPPFLAGS([mux_ts ts dvb],[-I${real_dvbpsi_tree}/src])
1610 VLC_ADD_LDFLAGS([mux_ts ts dvb],[-L${real_dvbpsi_tree}/src/.libs -ldvbpsi])
1612 dnl The given libdvbpsi wasn't built
1614 AC_MSG_ERROR([cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}])
1619 dnl Compile without dvbpsi
1622 AC_MSG_CHECKING(for dvbpsi headers in ${with_dvbpsi})
1623 if test -z "${with_dvbpsi}"
1628 LDFLAGS_test="-L${with_dvbpsi}/lib"
1629 CPPFLAGS_test="-I${with_dvbpsi}/include"
1631 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}"
1632 AC_CHECK_HEADERS([dvbpsi/dr.h],[
1633 VLC_ADD_PLUGINS([ts])
1634 if test "${enable_sout}" != "no"; then
1635 VLC_ADD_PLUGINS([mux_ts])
1637 VLC_ADD_CPPFLAGS([mux_ts ts dvb],[${CPPFLAGS_test}])
1638 VLC_ADD_LDFLAGS([mux_ts ts dvb],[${LDFLAGS_test} -ldvbpsi])
1641 if test -n "${enable_dvbpsi}"
1643 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])
1646 CPPFLAGS="${CPPFLAGS_save}"
1652 dnl Video4Linux plugin
1655 [ --enable-v4l Video4Linux input support (default disabled)])
1656 if test "${enable_v4l}" = "yes"
1659 [ --with-v4l=PATH path to a v4l-enabled kernel tree],[],[])
1660 if test "${with_v4l}" != "no" -a -n "${with_v4l}"
1662 VLC_ADD_CPPFLAGS([v4l],[-I${with_v4l}/include])
1665 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l}"
1666 AC_CHECK_HEADERS(linux/videodev.h, [
1667 VLC_ADD_PLUGINS([v4l])
1669 CPPFLAGS="${CPPFLAGS_save}"
1673 dnl special access module for Hauppauge PVR cards
1676 [ --enable-pvr PVR cards access module (default disabled)])
1677 if test "${enable_pvr}" = "yes"
1679 VLC_ADD_PLUGINS([pvr])
1682 dnl Need to test libcdio and libvcdinfo for a number of things. Do it now.
1683 AC_ARG_ENABLE(libcdio,
1684 [ --enable-libcdio CD input and control library support (default enabled)])
1688 if test "${enable_libcdio}" != "no"
1690 PKG_CHECK_MODULES(LIBCDIO, libcdio >= 0.72,
1692 AC_DEFINE(HAVE_LIBCDIO, [],
1693 [Define if you have libcdio 0.72 or greater installed]),
1694 [AC_MSG_WARN(CD Reading and information library not found)])
1696 PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.21,
1697 [have_libvcdinfo=yes
1698 AC_DEFINE(HAVE_VCDINFO, [],
1699 [Define if you have libvcdinfo 0.7.21 or greater installed])],
1700 [AC_MSG_WARN(VCD information library not found)])
1704 dnl VCDX and CDDAX modules
1706 AC_ARG_ENABLE(cddax,
1707 [ --enable-cddax audio CD plugin with CD Text and CD paranoia via libcdio (default disabled)])
1709 AC_ARG_ENABLE(libcddb,
1710 [ --enable-libcddb CDDB support for libcdio audio CD (default enabled)])
1712 if test "${enable_cddax}" = "yes"
1714 if test "$have_libcdio" = "yes"
1716 AC_DEFINE(HAVE_CDDAX, [], [Define for the audio CD plugin using libcdio])
1717 VLC_ADD_LDFLAGS([cddax],[$LIBCDIO_LIBS])
1718 VLC_ADD_CFLAGS([cddax],[$LIBCDIO_CFLAGS])
1719 VLC_ADD_PLUGINS([cddax])
1720 PKG_CHECK_MODULES(LIBCDIO_PARANOIA, libcdio_paranoia >= 0.72, [
1721 VLC_ADD_LDFLAGS([cddax],[$LIBCDIO_CDDA_LIBS $LIBCDIO_CDDA_LIBS $LIBCDIO_PARANOIA_LIBS])],
1722 AC_MSG_WARN([CD Paranoia support disabled because no libcdio >= 0.72 found]))
1724 AC_MSG_WARN([cddax plugin disabled because ok libcdio library not found or disabled])
1728 if test "$enable_libcddb" != "no"; then
1729 PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.5, [
1731 AC_DEFINE(HAVE_LIBCDDB, [], [Define this if you have libcddb installed])
1732 VLC_ADD_LDFLAGS([cddax],[$LIBCDDB_LIBS])
1733 VLC_ADD_CFLAGS([cddax],[$LIBCDDB_CFLAGS])
1735 [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled)
1742 [ --enable-vcdx VCD with navigation via libvcdinfo (default disabled)])
1744 if test "${enable_vcdx}" = "yes"
1746 if test "${have_libvcdinfo}" = "yes"
1748 VLC_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
1749 VLC_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
1751 AC_MSG_WARN([vcdx plugin disabled because ok libvcdinfo library not found or disabled])
1755 PKG_CHECK_MODULES(LIBCDIO, libiso9660 >= 0.72,
1756 [VLC_ADD_LDFLAGS([vcdx],[$LIBISO9660_LIBS])
1757 VLC_ADD_CFLAGS([vcdx],[$LIBISO9660_CFLAGS])],
1758 [AC_MSG_WARN([vcdx plugin disabled because ok libiso9660 library not found])
1761 if test "$have_libvcdinfo" = "yes"
1763 AC_DEFINE(HAVE_VCDX, [],
1764 [Define for the VCD plugin using libcdio/libvcdinfo])
1765 VLC_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
1766 VLC_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
1767 VLC_ADD_PLUGINS([vcdx])
1769 AC_MSG_WARN([vcdx plugin disabled because ok libvcdinfo library not found])
1775 dnl Built-in CD-DA and VCD module
1778 [ --enable-cdda audio CD via built-in VCD (default enabled)])
1781 [ --enable-vcd built-in VCD (default enabled)])
1783 if test "${enable_vcd}" != "no"
1785 AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1786 AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1788 VLC_ADD_PLUGINS([vcd cdda])
1793 AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1794 AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1796 VLC_ADD_PLUGINS([vcd cdda])
1797 AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1802 AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1803 AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1805 VLC_ADD_PLUGINS([vcd cdda])
1806 AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1811 if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32"
1813 VLC_ADD_PLUGINS([vcd cdda])
1816 if test "${SYS}" = "darwin"
1818 VLC_ADD_PLUGINS([vcd cdda])
1819 VLC_ADD_LDFLAGS([vcd vcdx cdda cddax],[-framework IOKit -framework CoreFoundation])
1820 VLC_ADD_LDFLAGS([vcdx cddax],[-liconv])
1825 dnl DVB-S/DVB-T/DVB-C satellite/teresterial/cable input using v4l2
1828 [ --enable-dvb DVB-S/T/C card support (default disabled)])
1830 if test "${enable_dvb}" = "yes"
1833 [ --with-dvb=PATH path to a dvb- and v4l2-enabled kernel tree],[],[])
1834 if test "${with_dvb}" != "no" -a -n "${with_dvb}"
1836 VLC_ADD_CFLAGS([dvb],[-I${with_dvb}/include])
1838 CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include"
1839 AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [
1840 if test -z "${with_dvbpsi_tree}"
1842 VLC_ADD_PLUGINS([dvb])
1844 VLC_ADD_BUILTINS([dvb])
1846 ],[AC_MSG_WARN(linux-dvb headers not found, dvb disabled)])
1847 CPPFLAGS="${CPPFLAGS_save}"
1851 dnl Screen capture module
1853 AC_ARG_ENABLE(screen,
1854 [ --enable-screen Screen capture support (default enabled)])
1855 if test "${enable_screen}" != "no"; then
1856 if test "${SYS}" = "darwin"; then
1857 AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
1858 VLC_ADD_PLUGINS([screen])
1859 VLC_ADD_LDFLAGS([screen],[-framework ApplicationServices])
1861 elif test "${SYS}" = "mingw32"; then
1862 VLC_ADD_PLUGINS([screen])
1863 VLC_ADD_LDFLAGS([screen],[-lgdi32])
1864 elif test "${SYS}" = "mingwce"; then
1865 CPPFLAGS="${CPPFLAGS_save}"
1866 elif test "${SYS}" = "beos"; then
1867 VLC_ADD_PLUGINS([screen])
1868 VLC_ADD_CXXFLAGS([screen],[])
1869 VLC_ADD_LDFLAGS([screen],[-lbe])
1871 CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
1872 AC_CHECK_HEADERS(X11/Xlib.h, [
1873 VLC_ADD_PLUGINS([screen])
1874 VLC_ADD_LDFLAGS([screen],[-L${x_libraries} -lX11 -lXext])
1875 VLC_ADD_CPPFLAGS([screen],[-I${x_includes}])
1877 CPPFLAGS="${CPPFLAGS_save}"
1882 dnl ipv6 plugin - not for QNX yet
1885 AC_CHECK_FUNCS(inet_pton,[have_ipv6=yes],[
1886 AC_CHECK_LIB(resolv,inet_pton,
1888 VLC_ADD_LDFLAGS([ipv6 vlc],[-lresolv])])
1891 AS_IF([test "${have_ipv6}" == "yes"], [
1892 AC_DEFINE(HAVE_INET_PTON, 1, [Define to 1 if you have inet_pton().])])
1894 if test "${SYS}" != "nto" &&
1895 test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"
1897 AC_MSG_CHECKING(for sockaddr_in6 in netinet/in.h)
1898 AC_EGREP_HEADER(sockaddr_in6,netinet/in.h,
1899 [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no); have_ipv6=no])
1900 AS_IF([test "${have_ipv6}" != "no"], [
1901 VLC_ADD_PLUGINS([ipv6])])
1903 if test "${SYS}" = "mingw32"
1905 AC_MSG_CHECKING(for getaddrinfo in ws2tcpip.h)
1906 AC_EGREP_HEADER(addrinfo,ws2tcpip.h,[AC_MSG_RESULT(yes)
1907 VLC_ADD_PLUGINS([ipv6])],[AC_MSG_RESULT(no)])
1911 dnl ogg demux plugin
1914 [ --enable-ogg Ogg demux support (default enabled)])
1915 if test "${enable_ogg}" != "no"
1917 AC_CHECK_HEADERS(ogg/ogg.h, [
1918 AC_CHECK_LIB( ogg, oggpack_read, [
1919 VLC_ADD_PLUGINS([ogg])
1920 if test "${enable_sout}" != "no"; then
1921 VLC_ADD_PLUGINS([mux_ogg])
1923 VLC_ADD_LDFLAGS([ogg mux_ogg],[-logg])])
1928 dnl matroska demux plugin
1931 [ --enable-mkv Matroska demux support (default enabled)])
1932 if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
1934 AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
1935 AC_MSG_CHECKING(for libebml version >= 0.7.3)
1937 [#include <ebml/EbmlVersion.h>
1938 #ifdef LIBEBML_VERSION
1939 #if LIBEBML_VERSION >= 0x000703
1943 [AC_MSG_RESULT([yes])
1944 AC_CHECK_HEADERS(matroska/KaxVersion.h, [
1945 AC_MSG_CHECKING(for libmatroska version >= 0.7.5)
1947 [#include <matroska/KaxVersion.h>
1948 #ifdef LIBMATROSKA_VERSION
1949 #if LIBMATROSKA_VERSION >= 0x000705
1953 [AC_MSG_RESULT([yes])
1954 AC_CHECK_HEADERS(matroska/KaxAttachments.h)
1955 VLC_ADD_CXXFLAGS([mkv],[])
1956 if test "${SYS}" = "darwin"; then
1957 VLC_ADD_CXXFLAGS([mkv],[-O1])
1959 AC_CHECK_LIB(ebml_pic, main, [
1960 # We have ebml_pic, that's good, we can build an mkv.so plugin !
1961 VLC_ADD_PLUGINS([mkv])
1962 VLC_ADD_LDFLAGS([mkv],[-lmatroska_pic -lebml_pic])
1964 AC_CHECK_LIB(ebml, main, [
1965 # We only have libebml, make mkv.a a builtin
1966 VLC_ADD_BUILTINS([mkv])
1967 VLC_ADD_LDFLAGS([mkv],[-lmatroska -lebml])
1971 [AC_MSG_RESULT([no])
1972 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.])
1976 [AC_MSG_RESULT([no])
1977 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.])
1984 dnl modplug demux plugin
1987 [ --enable-mod Mod demux support (default enabled)])
1988 if test "${enable_mod}" != "no"
1990 AC_CHECK_HEADERS(libmodplug/modplug.h, [
1991 VLC_ADD_PLUGINS([mod])
1992 VLC_ADD_CXXFLAGS([mod],[])
1993 VLC_ADD_LDFLAGS([mod],[-lmodplug])])
2000 AC_ARG_WITH(,[Codec plugins:])
2006 [ --enable-mad libmad module (default enabled)])
2007 if test "${enable_mad}" != "no"
2010 [ --with-mad=PATH path to libmad],[],[])
2011 if test "${with_mad}" != "no" -a -n "${with_mad}"
2013 VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
2014 VLC_ADD_LDFLAGS([mpgatofixed32],[-L${with_mad}/lib])
2017 AC_ARG_WITH(mad-tree,
2018 [ --with-mad-tree=PATH mad tree for static linking],[],[])
2019 if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
2021 real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
2022 if test -z "${real_mad_tree}"
2024 dnl The given directory can't be found
2026 AC_MSG_ERROR([${with_mad_tree} directory doesn't exist])
2028 dnl Use a custom libmad
2029 AC_MSG_CHECKING(for mad.h in ${real_mad_tree})
2030 if test -f ${real_mad_tree}/mad.h
2033 VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}])
2034 VLC_ADD_LDFLAGS([mpgatofixed32],[-L${real_mad_tree}/.libs])
2035 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
2036 AC_CHECK_LIB(mad, mad_bit_init, [
2037 VLC_ADD_BUILTINS([mpgatofixed32])
2038 VLC_ADD_LDFLAGS([mpgatofixed32],[-lmad])
2039 ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ])
2041 LDFLAGS="${LDFLAGS_save}"
2044 AC_MSG_ERROR([the specified tree doesn't have mad.h])
2047 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}"
2048 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
2049 AC_CHECK_HEADERS(mad.h, ,
2050 [ 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.]) ])
2051 AC_CHECK_LIB(mad, mad_bit_init, [
2052 VLC_ADD_PLUGINS([mpgatofixed32])
2053 VLC_ADD_LDFLAGS([mpgatofixed32],[-lmad])],
2054 [ AC_MSG_ERROR([Cannot find libmad library...]) ])
2055 CPPFLAGS="${CPPFLAGS_save}"
2056 LDFLAGS="${LDFLAGS_save}"
2061 dnl libid3tag support (FIXME!!! doesn't work with new input)
2063 AC_CHECK_HEADERS(id3tag.h, [
2064 AC_CHECK_HEADERS(zlib.h, [
2065 VLC_ADD_LDFLAGS([id3tag],[-lid3tag -lz])
2066 VLC_ADD_PLUGINS([id3tag])]) ])
2069 dnl ffmpeg decoder/demuxer plugin
2071 AC_ARG_ENABLE(ffmpeg,
2072 [ --enable-ffmpeg ffmpeg codec (default enabled)])
2073 if test "${enable_ffmpeg}" != "no"
2075 dnl Look for a ffmpeg-config (we are on debian )
2077 FFMPEG_PATH="${PATH}"
2078 AC_ARG_WITH(ffmpeg-config-path,
2079 [ --with-ffmpeg-config-path=PATH ffmpeg-config path (default search in \$PATH)],
2080 [ if test "${with_ffmpeg_config_path}" != "no"
2082 FFMPEG_PATH="${with_ffmpeg_config_path}"
2084 AC_PATH_PROG(FFMPEG_CONFIG, ffmpeg-config, no, ${FFMPEG_PATH})
2085 if test "${FFMPEG_CONFIG}" != "no"
2087 AC_CHECK_HEADERS(ffmpeg/avcodec.h)
2088 AC_CHECK_HEADERS(postproc/postprocess.h)
2089 VLC_ADD_PLUGINS([ffmpeg])
2090 if test "${enable_sout}" != "no"; then
2091 VLC_ADD_PLUGINS([stream_out_switcher])
2093 VLC_ADD_CFLAGS([ffmpeg stream_out_switcher],[`${FFMPEG_CONFIG} --cflags`])
2094 VLC_ADD_LDFLAGS([ffmpeg stream_out_switcher],[`${FFMPEG_CONFIG} --plugin-libs avcodec avformat postproc`])
2097 AC_ARG_WITH(ffmpeg-mp3lame,
2098 [ --with-ffmpeg-mp3lame specify if ffmpeg has been compiled with mp3lame support],
2100 VLC_ADD_LDFLAGS([ffmpeg],[-lmp3lame]) ])
2102 AC_ARG_WITH(ffmpeg-faac,
2103 [ --with-ffmpeg-faac specify if ffmpeg has been compiled with faac support],
2105 VLC_ADD_LDFLAGS([ffmpeg],[-lfaac]) ])
2107 AC_ARG_WITH(ffmpeg-dts,
2108 [ --with-ffmpeg-dts specify if ffmpeg has been compiled with dts support],
2110 VLC_ADD_LDFLAGS([ffmpeg],[-ldts]) ])
2112 AC_ARG_WITH(ffmpeg-zlib,
2113 [ --with-ffmpeg-zlib specify if ffmpeg has been compiled with zlib support],
2115 VLC_ADD_LDFLAGS([ffmpeg],[-lz]) ])
2117 AC_ARG_WITH(ffmpeg-tree,
2118 [ --with-ffmpeg-tree=PATH ffmpeg tree for static linking])
2121 dnl test for !(--with-ffmpeg-tree)
2123 if test "${with_ffmpeg_tree}" = "no" -o -z "${with_ffmpeg_tree}"; then
2124 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}"
2125 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
2126 AC_CHECK_HEADERS(ffmpeg/avcodec.h, [], [AC_MSG_ERROR([Missing header file ffmpeg/avcodec.h.])] )
2127 AC_CHECK_HEADERS(postproc/postprocess.h, [], [AC_MSG_ERROR([Missing header file postproc/postprocess.h.])] )
2129 AC_CHECK_LIB(avutil, av_add_i, [
2130 VLC_ADD_LDFLAGS([ffmpeg],[-lavutil])
2131 LDAVUTIL="-lavutil"])
2133 AC_CHECK_LIB(avcodec, avcodec_init, [
2134 VLC_ADD_BUILTINS([ffmpeg])
2135 VLC_ADD_LDFLAGS([ffmpeg],[-lavcodec])
2136 if test "${enable_sout}" != "no"; then
2137 VLC_ADD_BUILTINS([stream_out_switcher])
2139 [ 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])
2140 AC_CHECK_LIB(avformat, av_open_input_stream, [
2141 AC_DEFINE(HAVE_LIBAVFORMAT, 1,
2142 [Define if you have ffmpeg's libavformat.])
2143 VLC_ADD_LDFLAGS([ffmpeg],[-lavformat -lz]) ], [], [-lavcodec -lz $LDAVUTIL])
2144 LDFLAGS="${LDFLAGS_save}"
2145 CPPFLAGS="${CPPFLAGS_save}"
2149 dnl test for --with-ffmpeg-tree
2151 if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
2152 AC_MSG_CHECKING(for libavcodec.a in ${with_ffmpeg_tree})
2153 real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
2154 if test -z "${real_ffmpeg_tree}"; then
2155 dnl The given directory can't be found
2157 AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
2159 if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
2160 dnl The given libavcodec wasn't built
2162 AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}])
2164 if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
2165 dnl The given libavcodec wasn't built with --enable-pp
2167 AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
2169 dnl Use a custom libffmpeg
2170 AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodec.a)
2172 if fgrep -s "CONFIG_ZLIB=yes" "${real_ffmpeg_tree}/config.mak"; then
2173 if test "${with_ffmpeg_zlib}" != "yes"; then
2174 VLC_ADD_LDFLAGS([ffmpeg],[-lz])
2177 if fgrep -s "CONFIG_MP3LAME=yes" "${real_ffmpeg_tree}/config.mak"; then
2178 if test "${with_ffmpeg_mp3lame}" != "yes"; then
2179 VLC_ADD_LDFLAGS([ffmpeg],[-lmp3lame])
2182 if fgrep -s "CONFIG_FAAC=yes" "${real_ffmpeg_tree}/config.mak"; then
2183 if test "${with_ffmpeg_faac}" != "yes"; then
2184 VLC_ADD_LDFLAGS([ffmpeg],[-lfaac])
2187 if fgrep -s "CONFIG_DTS=yes" "${real_ffmpeg_tree}/config.mak"; then
2188 if test "${with_ffmpeg_dts}" != "yes"; then
2189 VLC_ADD_LDFLAGS([ffmpeg],[-ldts])
2192 if fgrep -s "CONFIG_VORBIS=yes" "${real_ffmpeg_tree}/config.mak"; then
2193 VLC_ADD_LDFLAGS([ffmpeg],[-lvorbis -lvorbisenc])
2195 if fgrep -s "CONFIG_FAAD=yes" "${real_ffmpeg_tree}/config.mak"; then
2196 VLC_ADD_LDFLAGS([ffmpeg],[-lfaad])
2198 if fgrep -s "CONFIG_XVID=yes" "${real_ffmpeg_tree}/config.mak"; then
2199 VLC_ADD_LDFLAGS([ffmpeg],[-lxvidcore])
2202 VLC_ADD_BUILTINS([ffmpeg])
2203 if test "${enable_sout}" != "no"; then
2204 VLC_ADD_BUILTINS([stream_out_switcher])
2207 if test -f "${real_ffmpeg_tree}/libavutil/libavutil.a"; then
2208 VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavutil ${real_ffmpeg_tree}/libavutil/libavutil.a])
2209 VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavutil])
2212 VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavcodec ${real_ffmpeg_tree}/libavcodec/libavcodec.a])
2213 VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavcodec])
2215 if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
2216 AC_DEFINE(HAVE_LIBAVFORMAT, 1, [Define if you have ffmpeg's libavformat.])
2217 VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavformat ${real_ffmpeg_tree}/libavformat/libavformat.a])
2218 VLC_ADD_CPPFLAGS([ffmpeg stream_out_switcher],[-I${real_ffmpeg_tree}/libavformat])
2225 dnl ffmpeg decoder/demuxer plugin
2227 AC_ARG_ENABLE(ffmpegaltivec,
2228 [ --enable-ffmpegaltivec ffmpegaltivec codec (DO NOT USE)])
2229 if test "${enable_ffmpegaltivec}" == "yes"
2231 if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
2232 AC_MSG_CHECKING(for libavcodecaltivec.a in ${with_ffmpeg_tree})
2233 real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
2234 if test -z "${real_ffmpeg_tree}"; then
2235 dnl The given directory can't be found
2237 AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
2239 if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then
2240 dnl The given libavcodecaltivec wasn't built
2242 AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a, make sure you compiled libavcodecaltivec in ${with_ffmpeg_tree}])
2244 if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then
2245 dnl The given libavcodecaltivec wasn't built with --enable-pp
2247 AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
2249 dnl Use a custom libffmpeg
2250 AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a)
2251 VLC_ADD_BUILTINS([ffmpegaltivec])
2252 VLC_ADD_LDFLAGS([ffmpegaltivec],[-L${real_ffmpeg_tree}/libavcodec -lavcodecaltivec])
2253 VLC_ADD_CPPFLAGS([ffmpeg],[-DNO_ALTIVEC_IN_FFMPEG])
2254 VLC_ADD_CPPFLAGS([ffmpegaltivec],[-I${real_ffmpeg_tree}/libavcodec -I${real_ffmpeg_tree}/libavformat])
2256 if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
2257 AC_DEFINE(HAVE_LIBAVFORMAT, 1, [Define if you have ffmpeg's libavformat.])
2258 VLC_ADD_LDFLAGS([ffmpegaltivec],[-L${real_ffmpeg_tree}/libavformat -lavformataltivec -lz])
2259 VLC_ADD_CPPFLAGS([ffmpegaltivec],[-I${real_ffmpeg_tree}/libavformat])
2261 VLC_ADD_LDFLAGS([stream_out_switcher],[-L${real_ffmpeg_tree}/libavcodec])
2262 VLC_ADD_CPPFLAGS([stream_out_switcher],[-I${real_ffmpeg_tree}/libavcodec -I${real_ffmpeg_tree}/libavformat])
2267 dnl faad decoder plugin
2270 [ --enable-faad faad codec (default disabled)])
2271 if test "${enable_faad}" = "yes"
2273 AC_ARG_WITH(faad-tree,
2274 [ --with-faad-tree=PATH faad tree for static linking])
2275 if test -n "${with_faad_tree}"
2277 AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
2278 real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
2279 if test -z "${real_faad_tree}"
2281 dnl The given directory can't be found
2283 AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
2285 if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
2287 dnl Use a custom faad
2288 AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
2289 VLC_ADD_BUILTINS([faad])
2290 VLC_ADD_LDFLAGS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
2291 VLC_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
2293 dnl The given libfaad wasn't built
2295 AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
2298 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
2299 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_faad}"
2300 AC_CHECK_HEADERS(faad.h, ,
2301 [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ])
2302 AC_CHECK_LIB(faad, faacDecOpen, [
2303 VLC_ADD_PLUGINS([faad])
2304 VLC_ADD_LDFLAGS([faad],[-lfaad]) ],
2305 AC_CHECK_LIB(faad, NeAACDecOpen, [
2306 VLC_ADD_PLUGINS([faad])
2307 VLC_ADD_LDFLAGS([faad],[-lfaad]) ],
2308 [ AC_MSG_ERROR([Cannot find libfaad library...]) ]))
2309 LDFLAGS="${LDFLAGS_save}"
2310 CPPFLAGS="${CPPFLAGS_save}"
2315 dnl twolame encoder plugin
2317 AC_ARG_ENABLE(twolame,
2318 [ --enable-twolame twolame codec (default disabled)])
2319 if test "${enable_twolame}" = "yes"
2321 AC_ARG_WITH(twolame-tree,
2322 [ --with-twolame-tree=PATH twolame tree for static linking])
2323 if test -n "${with_twolame_tree}"
2325 AC_MSG_CHECKING(for libtwolame.a in ${with_twolame_tree})
2326 real_twolame_tree="`cd ${with_twolame_tree} 2>/dev/null && pwd`"
2327 if test -z "${real_twolame_tree}"
2329 dnl The given directory can't be found
2331 AC_MSG_ERROR([cannot cd to ${with_twolame_tree}])
2333 if test -f "${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a"
2335 dnl Use a custom twolame
2336 AC_MSG_RESULT(${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a)
2337 VLC_ADD_BUILTINS([twolame])
2338 VLC_ADD_LDFLAGS([twolame],[${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a])
2339 VLC_ADD_CPPFLAGS([twolame],[-I${real_twolame_tree}/src/libtwolame])
2341 dnl The given libtwolame wasn't built
2343 AC_MSG_ERROR([cannot find ${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a, make sure you compiled libtwolame in ${with_twolame_tree}])
2346 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_twolame}"
2347 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_twolame}"
2348 AC_CHECK_HEADERS(twolame.h, ,
2349 [ AC_MSG_ERROR([Cannot find development header for libtwolame...]) ])
2350 AC_CHECK_LIB(twolame, twolame_init, [
2351 VLC_ADD_PLUGINS([twolame])
2352 VLC_ADD_LDFLAGS([twolame],[-ltwolame]) ],
2353 [ AC_MSG_ERROR([Cannot find libtwolame library...]) ])
2354 LDFLAGS="${LDFLAGS_save}"
2355 CPPFLAGS="${CPPFLAGS_save}"
2360 dnl QuickTime plugin
2362 AC_ARG_ENABLE(quicktime,
2363 [ --enable-quicktime QuickTime module (default enabled on MacOS X)])
2364 if test "${enable_quicktime}" != "no" &&
2365 (test "${SYS}" = "darwin" || test "${enable_quicktime}" = "yes")
2367 if test "${SYS}" = "mingw32"; then
2368 VLC_ADD_BUILTINS([quicktime])
2370 AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2371 [ VLC_ADD_BUILTINS([quicktime])
2372 VLC_ADD_LDFLAGS([quicktime],[-framework QuickTime -framework Carbon])
2373 ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2380 AC_CHECK_HEADERS(zlib.h, [
2381 VLC_ADD_LDFLAGS([mp4 skins2 sap mkv],[-lz])
2384 AC_CHECK_HEADERS(sysfs/libsysfs.h, [
2385 VLC_ADD_LDFLAGS([mp4 mkv],[-lsysfs])
2391 AC_CHECK_HEADERS(libtar.h, [
2392 VLC_ADD_LDFLAGS([skins2],[-ltar])
2398 dnl A52/AC3 decoder plugin
2401 [ --enable-a52 A/52 support with liba52 (default enabled)])
2402 if test "${enable_a52}" != "no"
2405 [ --with-a52=PATH a52 headers and libraries])
2406 AC_ARG_WITH(a52-tree,
2407 [ --with-a52-tree=PATH a52dec tree for static linking ],[],[])
2408 if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
2410 real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
2411 if test -z "${real_a52_tree}"
2413 dnl The given directory can't be found
2415 AC_MSG_ERROR([${with_a52_tree} directory doesn't exist])
2417 dnl Use a custom a52dec
2418 AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
2419 if test -f ${real_a52_tree}/include/a52.h
2422 VLC_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
2423 VLC_ADD_LDFLAGS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
2424 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_a52tofloat32}"
2425 AC_CHECK_LIB(a52, a52_free, [
2426 VLC_ADD_BUILTINS([a52tofloat32])
2427 VLC_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
2428 VLC_ADD_LDFLAGS([a52tofloat32],[-la52])
2430 if test -f ${real_a52_tree}/liba52/.libs/liba52.a
2432 AC_MSG_ERROR([make sure you have at least a52dec-0.7.3])
2434 AC_MSG_ERROR([the specified tree hasn't been compiled])
2437 LDFLAGS="${LDFLAGS_save}"
2440 AC_MSG_ERROR([the specified tree doesn't have a52.h])
2443 if test -z "${with_a52}"
2448 LDFLAGS_test="-L${with_a52}/lib"
2449 CPPFLAGS_test="-I${with_a52}/include"
2451 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2452 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LDFLAGS_a52tofloat32}"
2453 AC_CHECK_HEADERS(a52dec/a52.h, [
2454 AC_CHECK_LIB(a52, a52_free, [
2455 VLC_ADD_PLUGINS([a52tofloat32])
2456 VLC_ADD_LDFLAGS([a52tofloat32],[${LDFLAGS_test} -la52])
2457 VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2459 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.])
2462 CPPFLAGS="${CPPFLAGS_save}"
2463 LDFLAGS="${LDFLAGS_save}"
2467 AC_ARG_WITH(a52-fixed,
2468 [ --with-a52-fixed specify if liba52 has been compiled with fixed point support],
2470 VLC_ADD_CPPFLAGS([a52tofloat32],[-DLIBA52_FIXED]) ])
2473 dnl DTS Coherent Acoustics decoder plugin
2476 [ --enable-dts DTS Coherent Acoustics support with libdts (default enabled)])
2477 if test "${enable_dts}" != "no"; then
2478 AC_ARG_WITH(dts-tree,
2479 [ --with-dts-tree=PATH libdts tree for static linking ],[],[])
2480 if test "${with_dts_tree}" != "no" -a -n "${with_dts_tree}"
2482 real_dts_tree="`cd ${with_dts_tree} 2>/dev/null && pwd`"
2483 if test -z "${real_dts_tree}"
2485 dnl The given directory can't be found
2487 AC_MSG_ERROR([${with_dts_tree} directory doesn't exist])
2489 dnl Use a custom libdts
2490 AC_MSG_CHECKING(for dts.h in ${real_dts_tree}/include)
2491 if test -f ${real_dts_tree}/include/dts.h
2494 VLC_ADD_CPPFLAGS([dtstofloat32],[-I${real_dts_tree}/include])
2495 VLC_ADD_LDFLAGS([dtstofloat32],[-L${real_dts_tree}/libdts])
2496 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
2497 AC_CHECK_LIB(dts_pic, dts_free, [
2498 VLC_ADD_PLUGINS([dtstofloat32])
2499 VLC_ADD_LDFLAGS([dtstofloat32],[-ldts_pic])
2501 AC_CHECK_LIB(dts, dts_free, [
2502 VLC_ADD_BUILTINS([dtstofloat32])
2503 VLC_ADD_LDFLAGS([dtstofloat32],[-ldts])
2505 if test -f ${real_dts_tree}/libdts/libdts.a
2507 AC_MSG_ERROR([make sure you have at least libdts-0.0.2])
2509 AC_MSG_ERROR([the specified tree hasn't been compiled])
2513 LDFLAGS="${LDFLAGS_save}"
2516 AC_MSG_ERROR([the specified tree doesn't have dts.h])
2519 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
2520 AC_CHECK_HEADERS(dts.h, [
2521 AC_CHECK_LIB(dts_pic, dts_free, [
2522 VLC_ADD_PLUGINS([dtstofloat32])
2523 VLC_ADD_LDFLAGS([dtstofloat32],[-ldts_pic])
2525 AC_CHECK_LIB(dts, dts_free, [
2526 VLC_ADD_BUILTINS([dtstofloat32])
2527 VLC_ADD_LDFLAGS([dtstofloat32],[-ldts])
2529 if test "${enable_dts}" = "yes"; then
2530 AC_MSG_ERROR([Could not find libdts on your system: you may get it from http://www.videolan.org/dtsdec.html])
2535 LDFLAGS="${LDFLAGS_save}"
2543 [ --enable-flac flac decoder support (default disabled)])
2544 if test "${enable_flac}" = "yes"
2546 AC_CHECK_HEADERS(FLAC/stream_decoder.h, [
2547 VLC_ADD_LDFLAGS([flacdec],[-lFLAC])
2554 AC_ARG_ENABLE(libmpeg2,
2555 [ --enable-libmpeg2 libmpeg2 decoder support (default enabled)])
2556 if test "${enable_libmpeg2}" != "no"
2558 AC_ARG_WITH(libmpeg2-tree,
2559 [ --with-libmpeg2-tree=PATH libmpeg2 tree for static linking])
2560 if test -n "${with_libmpeg2_tree}"
2562 AC_MSG_CHECKING(for libmpeg2.a in ${with_libmpeg2_tree})
2563 real_libmpeg2_tree="`cd ${with_libmpeg2_tree} 2>/dev/null && pwd`"
2564 if test -z "${real_libmpeg2_tree}"
2566 dnl The given directory can't be found
2568 AC_MSG_ERROR([cannot cd to ${with_libmpeg2_tree}])
2570 if test -f "${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a"
2572 dnl Use a custom libmpeg2
2573 AC_MSG_RESULT(${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a)
2574 VLC_ADD_BUILTINS([libmpeg2])
2575 VLC_ADD_LDFLAGS([libmpeg2],[-L${real_libmpeg2_tree}/libmpeg2/.libs -lmpeg2])
2576 VLC_ADD_CFLAGS([libmpeg2],[-I${real_libmpeg2_tree}/include])
2577 eval "`cd ${real_libmpeg2_tree}/include && ln -sf . mpeg2dec 2>/dev/null`"
2579 dnl The given libmpeg2 wasn't built
2581 AC_MSG_ERROR([cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}])
2584 AC_CHECK_HEADERS(mpeg2dec/mpeg2.h, [
2585 AC_MSG_CHECKING(for libmpeg2 version >= 0.3.2)
2587 [#include <mpeg2dec/mpeg2.h>
2588 #ifdef MPEG2_RELEASE
2589 #if MPEG2_RELEASE >= MPEG2_VERSION(0,3,2)
2593 [AC_MSG_RESULT([yes])
2594 VLC_ADD_PLUGINS([libmpeg2])
2595 VLC_ADD_LDFLAGS([libmpeg2],[-lmpeg2])],
2596 [AC_MSG_RESULT([no])
2597 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.])])],
2599 [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.])]
2607 AC_ARG_ENABLE(vorbis,
2608 [ --enable-vorbis Vorbis decoder support (default enabled)])
2609 if test "${enable_vorbis}" != "no"
2611 AC_CHECK_HEADERS(vorbis/codec.h, [
2612 VLC_ADD_PLUGINS([vorbis])
2613 VLC_ADD_LDFLAGS([vorbis],[-lvorbis -logg]) ],[])
2615 AC_CHECK_HEADERS(vorbis/vorbisenc.h, [
2616 VLC_ADD_LDFLAGS([vorbis],[-lvorbisenc]) ],[])
2622 AC_ARG_ENABLE(tremor,
2623 [ --enable-tremor Tremor decoder support (default disabled)])
2624 if test "${enable_tremor}" = "yes"
2626 AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2627 VLC_ADD_PLUGINS([tremor])
2628 VLC_ADD_LDFLAGS([tremor],[-lvorbisidec -logg])
2635 AC_ARG_ENABLE(speex,
2636 [ --enable-speex Speex decoder support (default enabled)])
2637 if test "${enable_speex}" != "no"
2639 AC_CHECK_HEADERS(speex/speex.h, [
2640 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_speex}"
2641 AC_CHECK_LIB(speex, speex_decode_int, [
2642 VLC_ADD_PLUGINS([speex])
2643 VLC_ADD_LDFLAGS([speex],[-lspeex]) ],
2644 [ AC_MSG_RESULT([no])
2645 AC_MSG_WARN([Your libspeex is too old, please get the development
2647 LDFLAGS="${LDFLAGS_save}"
2652 dnl tarkin decoder plugin
2654 AC_ARG_ENABLE(tarkin,
2655 [ --enable-tarkin experimental tarkin codec (default disabled)])
2656 if test "${enable_tarkin}" = "yes"
2658 AC_ARG_WITH(tarkin-tree,
2659 [ --with-tarkin-tree=PATH tarkin tree for static linking])
2660 if test -n "${with_tarkin_tree}"
2662 AC_MSG_CHECKING(for tarkin.o in ${with_tarkin_tree})
2663 real_tarkin_tree="`cd ${with_tarkin_tree} 2>/dev/null && pwd`"
2664 if test -f "${real_tarkin_tree}/tarkin.o"
2666 VLC_ADD_BUILTINS([tarkin])
2667 VLC_ADD_CPPFLAGS([tarkin],[-I${real_tarkin_tree}])
2668 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])
2671 dnl The given tarkin tree wasn't built
2673 AC_MSG_ERROR([cannot find ${real_tarkin_tree}/tarkin.o,
2674 make sure you compiled tarkin in ${with_tarkin_tree}])
2680 dnl theora decoder plugin
2682 AC_ARG_ENABLE(theora,
2683 [ --enable-theora experimental theora codec (default disabled)])
2684 if test "${enable_theora}" = "yes"
2686 AC_CHECK_HEADERS(theora/theora.h, [
2687 AC_CHECK_LIB(theora, theora_granule_time, [
2688 if test "${SYS}" = "mingw32"; then
2689 VLC_ADD_PLUGINS([theora])
2691 VLC_ADD_BUILTINS([theora])
2693 theora_libs="-ltheora -logg"
2694 VLC_ADD_LDFLAGS([theora],[${theora_libs}]) ],[
2695 AC_MSG_ERROR([libtheora doesn't appear to be installed on your system.
2696 You also need to check that you have a libogg posterior to the 1.0 release.])],
2702 dnl dirac decoder plugin
2704 AC_ARG_ENABLE(dirac,
2705 [ --enable-dirac experimental dirac codec (default disabled)])
2706 if test "${enable_dirac}" = "yes"; then
2707 AC_CHECK_HEADERS(libdirac_decoder/dirac_parser.h, [
2708 AC_CHECK_LIB(dirac_decoder, dirac_decoder_init, [
2709 VLC_ADD_PLUGINS([dirac])
2710 VLC_ADD_LDFLAGS([dirac],[-ldirac_decoder -ldirac_encoder -lstdc++]) ],[
2711 AC_MSG_ERROR([libdirac doesn't appear to be installed on you system.])],
2717 dnl PNG decoder module
2720 [ --enable-png PNG support (default enabled)])
2721 if test "${enable_png}" != "no"; then
2722 AC_CHECK_HEADERS(png.h, [
2723 LDFLAGS="${LDFLAGS_save} -lz"
2724 AC_CHECK_LIB(png, png_set_rows, [
2725 VLC_ADD_LDFLAGS([png],[-lpng -lz])
2726 VLC_ADD_PLUGINS([png])
2727 VLC_ADD_PLUGINS([osdmenu])
2728 AC_DEFINE(HAVE_LIBPNG, [], [Define if you have the PNG library: libpng])],
2730 LDFLAGS="${LDFLAGS_save}"
2735 dnl H264 encoder plugin (using libx264)
2738 [ --enable-x264 H264 encoding support with libx264 (default enabled)])
2739 if test "${enable_x264}" != "no"; then
2740 AC_ARG_WITH(x264-tree,
2741 [ --with-x264-tree=PATH x264 tree for static linking ],[],[])
2742 if test "${with_x264_tree}" != "no" -a -n "${with_x264_tree}"
2744 real_x264_tree="`cd ${with_x264_tree} 2>/dev/null && pwd`"
2745 if test -z "${real_x264_tree}"
2747 dnl The given directory can't be found
2749 AC_MSG_ERROR([${with_x264_tree} directory doesn't exist])
2751 dnl Use a custom libx264
2752 AC_MSG_CHECKING(for x264.h in ${real_x264_tree})
2753 if test -f ${real_x264_tree}/x264.h
2756 VLC_ADD_CPPFLAGS([x264],[-I${real_x264_tree}])
2757 VLC_ADD_LDFLAGS([x264],[-L${real_x264_tree}])
2758 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264}"
2759 AC_CHECK_LIB(x264, x264_encoder_open, [
2760 VLC_ADD_BUILTINS([x264])
2761 VLC_ADD_LDFLAGS([x264],[-lx264])
2763 AC_MSG_ERROR([the specified tree hasn't been compiled])
2765 LDFLAGS="${LDFLAGS_save}"
2768 AC_MSG_ERROR([the specified tree doesn't have x264.h])
2771 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264}"
2772 AC_CHECK_HEADERS(x264.h, [
2773 AC_CHECK_LIB(x264, x264_encoder_open, [
2774 VLC_ADD_PLUGINS([x264])
2775 VLC_ADD_LDFLAGS([x264],[-lx264])
2777 if test "${enable_x264}" = "yes"; then
2778 AC_MSG_ERROR([Could not find libx264 on your system: you may get it from http://www.videolan.org/x264.html])
2782 LDFLAGS="${LDFLAGS_save}"
2790 [ --enable-cmml CMML support (default enabled)])
2791 if test "${enable_cmml}" != "no"
2793 VLC_ADD_PLUGINS([cmml])
2801 AC_ARG_WITH(,[Video plugins:])
2804 if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
2805 CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2806 AC_CHECK_HEADERS(X11/extensions/dpms.h, [
2807 AC_MSG_CHECKING(for DPMSInfo in X11/extensions/dpms.h)
2808 AC_EGREP_HEADER(DPMSInfo,X11/extensions/dpms.h,[
2810 AC_DEFINE(DPMSINFO_IN_DPMS_H, 1,
2811 Define if <X11/extensions/dpms.h> defines DPMSInfo.)
2816 #include <X11/Xlib.h>
2818 CPPFLAGS="${CPPFLAGS_save}"
2823 dnl (enabled by default except on win32)
2826 [ --enable-x11 X11 support (default enabled)])
2827 if test "${enable_x11}" != "no" &&
2828 (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
2829 test "${enable_x11}" = "yes"); then
2830 CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2831 AC_CHECK_HEADERS(X11/Xlib.h, [
2832 VLC_ADD_PLUGINS([x11])
2833 VLC_ADD_LDFLAGS([x11],[-L${x_libraries} -lX11 -lXext])
2834 VLC_ADD_CPPFLAGS([x11],[-I${x_includes}])
2836 CPPFLAGS="${CPPFLAGS_save}"
2841 dnl (enabled by default except on win32)
2843 AC_ARG_ENABLE(xvideo,
2844 [ --enable-xvideo XVideo support (default enabled)])
2845 if test "${enable_xvideo}" != "no" &&
2846 (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
2847 test "${enable_xvideo}" = "yes"); then
2848 CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2849 AC_CHECK_HEADERS(X11/extensions/Xv.h, [
2850 CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2851 AC_CHECK_LIB(Xv,XvPutImage,[
2852 # If libXv.so is available, xvideo can be a plugin. Otherwise, we
2853 # test for libXv_pic.
2854 if test -f /usr/X11R6/lib/libXv.so -o -f "${x_libraries}"/libXv.so; then
2855 VLC_ADD_PLUGINS([xvideo])
2856 VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2857 VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
2859 AC_CHECK_LIB(Xv_pic,XvPutImage,[
2860 VLC_ADD_PLUGINS([xvideo])
2861 VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2862 VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv_pic])
2864 VLC_ADD_BUILTINS([xvideo])
2865 VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
2866 VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2870 CFLAGS="${CFLAGS_save}"
2872 CPPFLAGS="${CPPFLAGS_save}")
2877 dnl (enabled by default except on win32)
2880 [ --enable-glx X11 OpenGL (GLX) support (default enabled)])
2881 if test "${enable_glx}" != "no" &&
2882 (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
2883 test "${enable_glx}" = "yes"); then
2884 CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2885 AC_CHECK_HEADERS(X11/Xlib.h, [
2886 AC_CHECK_HEADERS(GL/glx.h, [
2887 VLC_ADD_PLUGINS([glx])
2888 VLC_ADD_LDFLAGS([glx],[-L${x_libraries} -lX11 -lXext -lGL -lGLU])
2889 VLC_ADD_CPPFLAGS([glx],[-I${x_includes}])
2891 CPPFLAGS="${CPPFLAGS_save}"
2895 dnl Check for the Xinerama extension
2897 if test "${enable_xvideo}" != "no" &&
2898 (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
2899 test "${enable_xvideo}" = "yes"); then
2900 ac_cv_have_xinerama="no"
2901 CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2902 CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2903 AC_CHECK_HEADERS(X11/extensions/Xinerama.h,[
2904 AC_CHECK_LIB(Xinerama_pic, XineramaQueryExtension,[
2905 VLC_ADD_LDFLAGS([xvideo],[-lXinerama_pic])
2906 VLC_ADD_LDFLAGS([x11],[-lXinerama_pic])
2907 VLC_ADD_LDFLAGS([glx],[-lXinerama_pic])
2908 ac_cv_have_xinerama="yes"
2910 AC_CHECK_LIB(Xinerama, XineramaQueryExtension,[
2911 VLC_ADD_LDFLAGS([xvideo],[-lXinerama])
2912 VLC_ADD_LDFLAGS([x11],[-lXinerama])
2913 VLC_ADD_LDFLAGS([glx],[-lXinerama])
2914 ac_cv_have_xinerama="yes"
2918 if test "${ac_cv_have_xinerama}" = "yes"; then
2919 AC_DEFINE(HAVE_XINERAMA, 1, [Define this if you have libXinerama installed])
2921 CFLAGS="${CFLAGS_save}"
2922 CPPFLAGS="${CPPFLAGS_save}"
2927 dnl (enabled by default except on beos)
2929 AC_ARG_ENABLE(opengl,
2930 [ --enable-opengl OpenGL support (default enabled)])
2931 if test "${enable_opengl}" != "no" &&
2932 test "${SYS}" != "beos" -a "${SYS}" != "mingwce"; then
2933 if test "${SYS}" != "darwin"; then
2934 AC_CHECK_HEADERS(GL/gl.h, [
2935 VLC_ADD_PLUGINS([opengl])
2936 if test "${SYS}" != "mingw32"; then
2937 VLC_ADD_LDFLAGS([opengl],[-L${x_libraries} -lGL -lGLU])
2939 VLC_ADD_LDFLAGS([opengl],[-lopengl32])
2943 dnl OS X special case (no GL/gl.h but OpenGL/gl.h)
2944 VLC_ADD_PLUGINS([opengl])
2945 VLC_ADD_LDFLAGS([opengl],[-framework OpenGL])
2953 [ --enable-sdl SDL support (default enabled)])
2954 if test "${enable_sdl}" != "no"
2957 AC_ARG_WITH(sdl-config-path,
2958 [ --with-sdl-config-path=PATH sdl-config path (default search in \$PATH)],
2959 [ if test "${with_sdl_config_path}" != "no"
2961 SDL_PATH="${with_sdl_config_path}:${PATH}"
2963 AC_PATH_PROG(SDL12_CONFIG, sdl12-config, no, ${SDL_PATH})
2964 SDL_CONFIG="${SDL12_CONFIG}"
2965 SDL_HEADER="SDL12/SDL.h"
2966 SDL_IMAGE="SDL12/SDL_image.h"
2967 if test "${SDL_CONFIG}" = "no"
2969 AC_PATH_PROG(SDL11_CONFIG, sdl11-config, no, ${SDL_PATH})
2970 SDL_CONFIG=${SDL11_CONFIG}
2971 SDL_HEADER="SDL11/SDL.h"
2972 SDL_IMAGE="SDL11/SDL_image.h"
2974 if test "${SDL_CONFIG}" = "no"
2976 AC_PATH_PROG(SDL_CONFIG, sdl-config, no, ${SDL_PATH})
2977 SDL_HEADER="SDL/SDL.h"
2978 SDL_IMAGE="SDL/SDL_image.h"
2980 # check for cross-compiling
2982 AC_ARG_WITH(sdl-prefix,
2983 [ --with-sdl-prefix=PATH path to libsdl (needed for cross-compiling),
2985 --with-sdl-prefix=/usr/local/arm/2.95.3/arm-linux/usr)],[],[])
2986 if test "${with_sdl_prefix}" != "no" -a -n "${with_sdl_prefix}"
2988 SDL_PREFIX="--prefix=${with_sdl_prefix}"
2990 if test "${SDL_CONFIG}" != "no"
2992 # SDL on Darwin is heavily patched and can only run SDL_image
2993 if test "${SYS}" != "darwin" -a "${SYS}" != "mingw32"; then
2994 VLC_ADD_PLUGINS([vout_sdl aout_sdl])
2996 VLC_ADD_CFLAGS([vout_sdl aout_sdl sdl_image],[`${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`])
2997 VLC_ADD_LDFLAGS([vout_sdl aout_sdl sdl_image],[`${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'`])
2998 CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}"
2999 AC_CHECK_HEADERS(${SDL_HEADER}, AC_DEFINE_UNQUOTED(SDL_INCLUDE_FILE,
3000 <${SDL_HEADER}>, Indicate whether we should use SDL/SDL.h or SDL11/SDL.h),
3001 [ AC_CHECK_HEADERS(SDL.h, AC_DEFINE(SDL_INCLUDE_FILE, <SDL.h>,
3002 As a last resort we also test for SDL.h presence),
3003 [ AC_MSG_ERROR([The development package for SDL is not installed.
3004 Please install it and try again. Alternatively you can also configure with
3007 AC_CHECK_HEADERS(${SDL_IMAGE}, [AC_DEFINE_UNQUOTED(SDL_IMAGE_INCLUDE_FILE,
3008 <${SDL_IMAGE}>, Indicate the path of SDL_image.h)
3009 VLC_ADD_PLUGINS([sdl_image])
3010 AC_CHECK_LIB(png, png_set_rows,
3011 [VLC_ADD_LDFLAGS([sdl_image],[-lpng -lz])],[],[-lz])
3012 AC_CHECK_LIB(jpeg, jpeg_start_decompress,
3013 [VLC_ADD_LDFLAGS([sdl_image],[-ljpeg])])
3014 AC_CHECK_LIB(tiff, TIFFClientOpen,
3015 [VLC_ADD_LDFLAGS([sdl_image],[-ltiff])])
3016 VLC_ADD_LDFLAGS([sdl_image], [-lSDL_image])],
3017 [ AC_CHECK_HEADERS(SDL_image.h, AC_DEFINE(SDL_IMAGE_INCLUDE_FILE, <SDL_image.h>,
3018 As a last resort we also test for SDL_image.h presence),
3019 [ AC_MSG_WARN([The development package for SDL_image is not installed.
3020 You should install it alongside your SDL package.])
3022 CPPFLAGS="${CPPFLAGS_save}"
3023 if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null
3025 AC_MSG_ERROR([The development package for SDL is not installed.
3026 Please install it and try again. Alternatively you can also configure with
3030 elif test "${enable_sdl}" = "yes"
3032 AC_MSG_ERROR([I couldn't find the SDL package. You can download libSDL
3033 from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
3041 AC_ARG_ENABLE(freetype,
3042 [ --enable-freetype freetype support (default enabled)])
3043 AC_ARG_ENABLE(fribidi,
3044 [ --enable-fribidi fribidi support (default enabled)])
3045 if test "${enable_freetype}" != "no"
3047 FREETYPE_PATH="${PATH}"
3048 AC_ARG_WITH(freetype-config-path,
3049 [ --with-freetype-config-path=PATH freetype-config path (default search in \$PATH)],
3050 [ if test "${with_freetype_config_path}" != "no"
3052 FREETYPE_PATH="${with_freetype_config_path}:${PATH}"
3054 AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no, ${FREETYPE_PATH})
3056 if test "${FREETYPE_CONFIG}" != "no"
3058 VLC_ADD_PLUGINS([freetype])
3059 VLC_ADD_CFLAGS([freetype],[`${FREETYPE_CONFIG} --cflags`])
3060 VLC_ADD_LDFLAGS([freetype],[`${FREETYPE_CONFIG} --libs`])
3061 AC_CHECK_HEADERS(Carbon/Carbon.h,
3062 [VLC_ADD_LDFLAGS([freetype],[-framework Carbon])])
3063 elif test "${enable_freetype}" = "yes"
3065 AC_MSG_ERROR([I couldn't find the freetype package. You can download libfreetype2
3066 from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
3071 if test "${enable_fribidi}" != "no"
3073 FRIBIDI_PATH="${PATH}"
3074 AC_ARG_WITH(fribidi-config-path,
3075 [ --with-fribidi-config-path=PATH fribidi-config path (default search in \$PATH)],
3076 [ if test "${with_fribidi_config_path}" != "no"
3078 FRIBIDI_PATH="${with_fribidi_config_path}:${PATH}"
3080 AC_PATH_PROG(FRIBIDI_CONFIG, fribidi-config, no, ${FRIBIDI_PATH})
3082 if test "${FRIBIDI_CONFIG}" != "no"
3084 VLC_ADD_CFLAGS([freetype], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
3085 VLC_ADD_CPPFLAGS([skins2], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
3086 VLC_ADD_LDFLAGS([freetype], [`${FRIBIDI_CONFIG} --libs`])
3087 VLC_ADD_LDFLAGS([skins2], [`${FRIBIDI_CONFIG} --libs`])
3095 AC_ARG_ENABLE(libxml2,
3096 [ --enable-libxml2 libxml2 support (default enabled)])
3097 if test "${enable_libxml2}" != "no"
3100 AC_ARG_WITH(xml2-config-path,
3101 [ --with-xml2-config-path=PATH xml2-config path (default search in \$PATH)],
3102 [ if test "${with_xml2_config_path}" != "no"; then
3103 XML2_PATH="${with_xml2_config_path}:${PATH}"
3105 AC_PATH_PROG(XML2_CONFIG, xml2-config, no, ${XML2_PATH})
3106 if test "${XML2_CONFIG}" != "no"; then
3107 VLC_ADD_CPPFLAGS([xml],[`${XML2_CONFIG} --cflags`])
3108 VLC_ADD_LDFLAGS([xml],[`${XML2_CONFIG} --libs`])
3109 dnl depends on the xmlTextReader extension
3110 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_xml}"
3111 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xml}"
3112 AC_CHECK_LIB(xml2,xmlTextReaderConstName,[
3113 AC_EGREP_HEADER(xmlTextReaderConstName,libxml/xmlreader.h,[
3114 VLC_ADD_PLUGINS([xml]) ],[
3115 AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
3116 if test "${enable_xml2}" = "yes"; then
3117 AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
3120 AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
3121 if test "${enable_xml2}" = "yes"; then
3122 AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
3124 LDFLAGS="${LDFLAGS_save}"
3125 CPPFLAGS="${CPPFLAGS_save}"
3127 if test "${enable_xml2}" = "yes"; then
3128 AC_MSG_ERROR([Could not find libxml2])
3137 [ --enable-svg SVG support (default disabled)])
3138 if test "${enable_svg}" == "yes"
3140 PKG_CHECK_MODULES(SVG,
3141 librsvg-2.0 >= 2.5.0,
3143 VLC_ADD_LDFLAGS([svg],[$SVG_LIBS])
3144 VLC_ADD_CFLAGS([svg],[$SVG_CFLAGS])
3145 VLC_ADD_PLUGINS([svg]) ],
3146 [AC_MSG_WARN(SVG library not found)])
3150 dnl Qt Embedded module
3151 dnl (disabled by default)
3154 [ --enable-qte QT Embedded support (default disabled)])
3155 if test "${enable_qte}" = "yes"
3158 [ --with-qte=PATH Qt Embedded headers and libraries])
3159 if test "${with_qte}" != "no" -a -n "${with_qte}"
3161 VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3162 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])
3164 VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3165 VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti])
3167 VLC_ADD_PLUGINS([qte])
3169 CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
3170 AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
3171 AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
3173 CPPFLAGS="${CPPFLAGS_save}"
3177 dnl Qt Video output module
3178 dnl (disabled by default)
3180 dnl AC_ARG_ENABLE(qt_video,
3181 dnl [ --enable-qt_video QT Video Output support (default disabled)])
3182 dnl if test "${enable_qt_video}" = "yes"
3184 dnl VLC_ADD_PLUGINS([qt_video])
3185 dnl VLC_ADD_LDFLAGS([qt_video],[-L${QTDIR}/lib])
3186 dnl LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt_video}"
3187 dnl AC_CHECK_LIB(qt-mt,main,[
3188 dnl VLC_ADD_LDFLAGS([qt_video],[-lqt-mt])
3190 dnl AC_CHECK_LIB(qt,main,[
3191 dnl VLC_ADD_LDFLAGS([qt_video],[-lqt])
3194 dnl NEED_QTE_MAIN=yes
3195 dnl LDFLAGS="${LDFLAGS_save}"
3196 dnl VLC_ADD_CXXFLAGS([qt_video],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
3200 dnl Roku HD1000 Video output module
3202 AC_ARG_ENABLE(hd1000v,
3203 [ --enable-hd1000v HD1000 Video Output module (default enabled on HD1000)])
3204 if test "${enable_hd1000v}" != "no" -a "${CXX}" != "" &&
3205 (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3206 test "${enable_hd1000v}" = "yes"); then
3208 AC_CHECK_HEADERS([cascade/graphics/CascadeScreen.h cascade/graphics/CascadeBitmap.h],
3210 can_build_roku="yes"
3214 AC_MSG_WARN([Not building Roku HD1000 compatible video output])
3216 if test "$can_build_roku" = "yes"
3218 VLC_ADD_PLUGINS([hd1000v])
3219 VLC_ADD_LDFLAGS([hd1000v],[-lCascade -ldvbpsi -lmad])
3225 dnl Windows DirectX module
3227 AC_ARG_ENABLE(directx,
3228 [ --enable-directx Win32 DirectX support (default enabled on Win32)])
3229 if test "${enable_directx}" != "no"
3231 if test "${SYS}" = "mingw32" -o "${SYS}" = "mingwce" -o "${SYS}" = "cygwin"
3233 AC_ARG_WITH(directx,
3234 [ --with-directx=PATH Win32 DirectX headers])
3235 if test -z "${with_directx}"
3237 AC_CHECK_HEADERS(ddraw.h,
3238 [ VLC_ADD_PLUGINS([vout_directx aout_directx])
3239 VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
3240 dnl to be moved when dependance is removed
3241 AC_CHECK_HEADERS(GL/gl.h, [
3242 VLC_ADD_PLUGINS([glwin32])
3243 VLC_ADD_LDFLAGS([glwin32],[-lopengl32 -lgdi32])
3246 AC_MSG_CHECKING(for directX headers in ${with_directx})
3247 if test -f ${with_directx}/ddraw.h
3249 VLC_ADD_PLUGINS([vout_directx aout_directx])
3250 VLC_ADD_CPPFLAGS([vout_directx aout_directx],[-I${with_directx}])
3251 VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
3255 AC_MSG_ERROR([Cannot find ${with_directx}/ddraw.h!])
3262 dnl Linux framebuffer module
3265 [ --enable-fb Linux framebuffer support (default enabled on Linux)])
3266 if test "${enable_fb}" != "no"
3268 AC_CHECK_HEADERS(linux/fb.h, [
3269 VLC_ADD_PLUGINS([fb])
3274 dnl Linux MGA module
3277 [ --enable-mga Linux kernel Matrox support (default disabled)],
3278 [ if test "${enable_mga}" = "yes"
3280 VLC_ADD_PLUGINS([mga])
3286 AC_ARG_ENABLE(svgalib,
3287 [ --enable-svgalib SVGAlib support (default disabled)])
3288 if test "${enable_svgalib}" = "yes"
3290 VLC_ADD_PLUGINS([svgalib])
3291 VLC_ADD_LDFLAGS([svgalib],[-lvgagl -lvga])
3298 [ --enable-ggi GGI support (default disabled)])
3299 if test "${enable_ggi}" = "yes"
3301 VLC_ADD_PLUGINS([ggi])
3302 VLC_ADD_LDFLAGS([ggi],[-lggi])
3304 [ --with-ggi=PATH path to libggi],
3305 [ if test "${with_ggi}" != "no" -a -n "${with_ggi}"
3307 VLC_ADD_CPPFLAGS([ggi],[-I${with_ggi}/include])
3308 VLC_ADD_LDFLAGS([ggi],[-L${with_ggi}/lib])
3315 AC_ARG_ENABLE(glide,
3316 [ --enable-glide Glide (3dfx) support (default disabled)])
3317 if test "${enable_glide}" = "yes"
3319 VLC_ADD_PLUGINS([glide])
3320 VLC_ADD_LDFLAGS([glide],[-lglide2x -lm])
3321 VLC_ADD_CPPFLAGS([glide],[-I/usr/include/glide])
3323 [ --with-glide=PATH path to libglide],
3324 [ if test "${with_glide}" != "no" -a -n "${with_glide}"
3326 VLC_ADD_CPPFLAGS([glide],[-I${with_glide}/include])
3327 VLC_ADD_LDFLAGS([glide],[-L${with_glide}/lib])
3335 [ --enable-aa aalib output (default disabled)])
3336 if test "${enable_aa}" = "yes"
3338 AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3339 if test "${have_aa}" = "true"
3341 VLC_ADD_PLUGINS([aa])
3342 VLC_ADD_LDFLAGS([aa],[-laa])
3350 [ --enable-caca libcaca output (default disabled)])
3351 if test "${enable_caca}" = "yes"
3354 AC_ARG_WITH(caca-config-path,
3355 [ --with-caca-config-path=PATH caca-config path (default search in \$PATH)],
3356 [ if test "${with_caca_config_path}" != "no"
3358 CACA_PATH="${with_caca_config_path}:${PATH}"
3360 AC_PATH_PROG(CACA_CONFIG, caca-config, no, ${CACA_PATH})
3361 if test "${CACA_CONFIG}" != "no"
3363 VLC_ADD_PLUGINS([caca])
3364 VLC_ADD_CFLAGS([caca],[`${CACA_CONFIG} --cflags`])
3365 VLC_ADD_LDFLAGS([caca],[`${CACA_CONFIG} --plugin-libs`])
3370 dnl win32 GDI plugin
3372 AC_ARG_ENABLE(wingdi,
3373 [ --enable-wingdi Win32 GDI module (default enabled on Win32)])
3374 if test "${enable_wingdi}" != "no"; then
3375 if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
3376 VLC_ADD_PLUGINS([wingdi])
3377 VLC_ADD_LDFLAGS([wingdi],[-lgdi32])
3379 if test "${SYS}" = "mingwce"; then
3380 VLC_ADD_PLUGINS([wingdi wingapi])
3388 AC_ARG_WITH(,[Audio plugins:])
3391 dnl OSS /dev/dsp module (enabled by default except on win32)
3394 [ --enable-oss Linux OSS /dev/dsp support (enabled on Linux)])
3396 if test "${enable_oss}" != "no" &&
3397 (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3398 test "${enable_oss}" = "yes")
3400 AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h, [
3401 VLC_ADD_PLUGINS([oss])
3402 AC_CHECK_LIB(ossaudio,main,VLC_ADD_LDFLAGS([oss],[-lossaudio]))
3410 [ --enable-esd Esound library support (default disabled)],
3411 [if test "${enable_esd}" = "yes"
3413 AC_PATH_PROG(ESD_CONFIG, esd-config, no)
3414 if test "${ESD_CONFIG}" != "no"
3416 VLC_ADD_PLUGINS([esd])
3417 VLC_ADD_CFLAGS([esd],[`${ESD_CONFIG} --cflags`])
3418 VLC_ADD_LDFLAGS([esd],[`${ESD_CONFIG} --libs`])
3423 dnl Portaudio module
3425 AC_ARG_ENABLE(portaudio,
3426 [ --enable-portaudio Portaudio library support (default disabled)],
3427 [if test "${enable_portaudio}" = "yes"
3429 VLC_ADD_PLUGINS([portaudio])
3430 VLC_ADD_CXXFLAGS([portaudio],[])
3431 if test "${SYS}" = "mingw32"; then
3432 VLC_ADD_LDFLAGS([portaudio],[-lportaudio -lwinmm -lole32])
3434 VLC_ADD_LDFLAGS([portaudio],[-lportaudio])
3439 dnl aRts module -- broken (freeze wxWidgets)
3442 [ --enable-arts aRts sound server (default disabled)],
3443 [if test "${enable_arts}" = "yes"
3445 AC_PATH_PROG(ARTS_CONFIG, artsc-config, no)
3446 if test "${ARTS_CONFIG}" != "no"
3448 VLC_ADD_PLUGINS([arts])
3449 VLC_ADD_CFLAGS([arts],[`${ARTS_CONFIG} --cflags`])
3450 VLC_ADD_LDFLAGS([arts],[`${ARTS_CONFIG} --libs `])
3458 [ --enable-alsa ALSA sound support for Linux (default enabled)])
3459 if test "${enable_alsa}" != "no"
3461 AC_CHECK_HEADER(alsa/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false")
3462 if test "${have_alsa}" = "true"
3464 AC_TRY_COMPILE([#define ALSA_PCM_NEW_HW_PARAMS_API
3465 #define ALSA_PCM_NEW_SW_PARAMS_API
3466 #include <alsa/asoundlib.h>],
3467 [void foo() { snd_pcm_hw_params_get_period_time(0,0,0); }],
3468 AC_DEFINE(HAVE_ALSA_NEW_API, 1, Define if ALSA is at least rc4))
3469 VLC_ADD_PLUGINS([alsa])
3470 VLC_ADD_LDFLAGS([alsa],[-lasound -lm -ldl])
3472 if test "${enable_alsa}" = "yes"; then
3473 AC_MSG_ERROR([Could not find ALSA development headers])
3479 dnl win32 waveOut plugin
3481 AC_ARG_ENABLE(waveout,
3482 [ --enable-waveout Win32 waveOut module (default enabled on Win32)])
3483 if test "${enable_waveout}" != "no"; then
3484 if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
3485 VLC_ADD_PLUGINS([waveout])
3486 VLC_ADD_LDFLAGS([waveout],[-lwinmm])
3488 if test "${SYS}" = "mingwce"; then
3489 VLC_ADD_PLUGINS([waveout])
3494 dnl CoreAudio plugin
3496 AC_ARG_ENABLE(coreaudio,
3497 [ --enable-coreaudio CoreAudio module (default enabled on MacOS X)])
3498 if test "${enable_coreaudio}" != "no" &&
3499 (test "${SYS}" = "darwin" || test "${enable_coreaudio}" = "yes")
3501 AC_CHECK_HEADERS(CoreAudio/CoreAudio.h,
3502 [ VLC_ADD_BUILTINS([coreaudio auhal])
3503 VLC_ADD_LDFLAGS([coreaudio auhal],[-framework CoreAudio -framework AudioUnit -framework AudioToolbox])
3504 ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
3508 dnl Roku HD1000 audio
3510 AC_ARG_ENABLE(hd1000a,
3511 [ --enable-hd1000a HD1000 audio module (default enabled on HD1000)])
3512 if test "${enable_hd1000a}" != "no" -a "${CXX}" != "" &&
3513 (test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" ||
3514 test "${enable_hd1000a}" = "yes")
3517 AC_CHECK_HEADERS(deschutes/libraries/hdmachinex225/PCMAudioPlayer.h, [
3518 VLC_ADD_PLUGINS([hd1000a])
3519 AC_CHECK_LIB(HDMachineX225,main,VLC_ADD_LDFLAGS([hd1000a],[-lHDMachineX225])) ])
3524 dnl CyberLink for C++ UPnP stack
3526 AC_ARG_ENABLE(cyberlink,
3527 [ --enable-cyberlink CyberLink for C++ UPnP stack (default disabled)])
3528 if test "${CXX}" != "" -a "${enable_cyberlink}" = "yes" || (test "${enable_cyberlink}" != "no"); then
3529 AC_ARG_WITH(cyberlink-tree,
3530 [ --with-cyberlink-tree=PATH CyberLink for C++ tree for static linking])
3533 dnl test for --with-cyberlink-tree
3535 if test ! -z "${with_cyberlink_tree}" -a "${CXX}" != ""; then
3537 real_cyberlink_tree="`cd ${with_cyberlink_tree} 2>/dev/null && pwd`"
3538 if test -z "${real_cyberlink_tree}"
3540 dnl The given directory can't be found
3542 AC_MSG_ERROR([cannot cd to ${with_cyberlink_tree}])
3544 CXXFLAGS_save="${CXXFLAGS}"
3545 CXXFLAGS_cyberlink="-I${real_cyberlink_tree}/include"
3546 CXXFLAGS="${CXXFLAGS} ${CXXFLAGS_cyberlink}"
3547 AC_CHECK_HEADERS([cybergarage/upnp/MediaServer.h],
3548 [ VLC_ADD_CXXFLAGS([upnp], [${CXXFLAGS_cyberlink}])
3549 VLC_ADD_PLUGINS([upnp])
3551 AC_MSG_ERROR([cannot find CyberLink for C++ headers])
3553 AC_MSG_CHECKING(for libclink.a in ${with_cyberlink_tree})
3554 if test -f "${real_cyberlink_tree}/lib/unix/libclink.a"
3556 AC_MSG_RESULT(${real_cyberlink_tree}/lib/unix/libclink.a)
3557 VLC_ADD_LDFLAGS([upnp], [${real_cyberlink_tree}/lib/unix/libclink.a -lexpat])
3560 AC_MSG_ERROR([cannot find ${real_cyberlink_tree}/lib/unix/libclink.a, make sure you compiled CyberLink for C++ in ${with_cyberlink_tree}])
3562 CXXFLAGS="${CXXFLAGS_save}"
3568 dnl Interface plugins
3571 AC_ARG_WITH(,[Interface plugins:])
3573 dnl special case for BeOS
3574 if test "${SYS}" = "beos"
3576 VLC_ADD_BUILTINS([beos])
3582 AC_ARG_ENABLE(skins2,
3583 [ --enable-skins2 Skins2 interface module (experimental)])
3584 if test "${enable_skins2}" = "yes" ||
3585 (test "${SYS}" != "darwin" && test "${SYS}" != "beos" &&
3586 test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no"); then
3588 dnl test for the required libraries
3589 skins2_missing_lib="no"
3592 if test "${FREETYPE_CONFIG}" != "no"; then
3593 VLC_ADD_CPPFLAGS([skins2],[`${FREETYPE_CONFIG} --cflags`])
3594 VLC_ADD_LDFLAGS([skins2],[`${FREETYPE_CONFIG} --libs`])
3596 skins2_missing_lib="yes"
3597 if test "${enable_skins2}" = "yes"; then
3598 AC_MSG_ERROR([Could not find freetype (required for skins2)])
3602 if test "${skins2_missing_lib}" = "no" && (test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"); then
3603 VLC_ADD_PLUGINS([skins2])
3604 ALIASES="${ALIASES} svlc"
3605 VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -Imodules/gui/skins2 -DWIN32_SKINS])
3606 VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3607 VLC_ADD_LDFLAGS([skins2],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
3609 else if test "${skins2_missing_lib}" = "no"; then
3610 VLC_ADD_PLUGINS([skins2])
3611 ALIASES="${ALIASES} svlc"
3612 VLC_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 -I${x_includes} -DX11_SKINS])
3613 VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3614 VLC_ADD_LDFLAGS([skins2],[-L${x_libraries} -lXext -lX11])
3622 dnl AC_ARG_ENABLE(gtk,
3623 dnl [ --enable-gtk Gtk+ support (default enabled)])
3624 dnl if test "${enable_gtk}" != "no"
3626 dnl GTK_PATH="${PATH}"
3627 dnl AC_ARG_WITH(gtk-config-path,
3628 dnl [ --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)],
3629 dnl [ if test "${with_gtk_config_path}" != "no"
3631 dnl GTK_PATH="${with_gtk_config_path}:${PATH}"
3633 dnl # look for gtk-config
3634 dnl AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH})
3635 dnl GTK_CONFIG=${GTK12_CONFIG}
3636 dnl if test "${GTK_CONFIG}" = "no"
3638 dnl AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH})
3640 dnl if test "${GTK_CONFIG}" != "no"
3642 dnl if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
3644 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.])
3646 dnl if test "${SYS}" != "mingw32"; then
3647 dnl VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk gthread`])
3648 dnl VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`])
3650 dnl VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk`])
3651 dnl VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`])
3653 dnl # now look for the gtk.h header
3654 dnl CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gtk}"
3655 dnl ac_cv_gtk_headers=yes
3656 dnl AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [
3657 dnl ac_cv_gtk_headers=no
3658 dnl echo "Cannot find gtk development headers."
3660 dnl if test "${ac_cv_gtk_headers}" = "yes"
3662 dnl VLC_ADD_PLUGINS([gtk])
3663 dnl if test "${SYS}" != "mingw32"; then
3664 dnl NEED_GTK_MAIN=yes
3666 dnl ALIASES="${ALIASES} gvlc"
3668 dnl CPPFLAGS="${CPPFLAGS_save}"
3673 dnl Gtk+2 module ! Disabled for now as it is unusable and confuses users
3675 dnl AC_ARG_ENABLE(gtk2,
3676 dnl [ --enable-gtk2 Gtk2 support (default disabled)])
3677 dnl if test "${enable_gtk2}" = "yes"
3679 dnl PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
3680 dnl VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
3681 dnl VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
3682 dnl VLC_ADD_PLUGINS([gtk2])
3683 dnl if test "${SYS}" != "mingw32"; then
3684 dnl NEED_GTK2_MAIN=yes
3689 dnl PDA Gtk+2 module
3692 [ --enable-pda PDA interface needs Gtk2 support (default disabled)])
3693 if test "${enable_pda}" = "yes"
3695 PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
3696 VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
3697 VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
3698 VLC_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}])
3699 VLC_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}])
3700 VLC_ADD_PLUGINS([pda])
3701 if test "${SYS}" != "mingw32"; then
3707 dnl dnl Gnome module
3709 dnl AC_ARG_ENABLE(gnome,
3710 dnl [ --enable-gnome Gnome interface support (default disabled)],
3711 dnl [if test "${enable_gnome}" = "yes"; then
3712 dnl # look for gnome-config
3713 dnl AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
3714 dnl if test -x ${GNOME_CONFIG}
3716 dnl VLC_ADD_CFLAGS([gnome],[`${GNOME_CONFIG} --cflags gtk gnomeui`])
3717 dnl VLC_ADD_LDFLAGS([gnome],[`${GNOME_CONFIG} --libs gnomeui | sed 's,-rdynamic,,'`])
3719 dnl # now look for the gnome.h header
3720 dnl CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gnome}"
3721 dnl AC_CHECK_HEADERS(gnome.h, [
3722 dnl VLC_ADD_PLUGINS([gnome])
3723 dnl NEED_GTK_MAIN=yes
3724 dnl NEED_GNOME_MAIN=yes
3725 dnl ALIASES="${ALIASES} gnome-vlc"
3726 dnl dnl We need this because of some moronic gnomesupport.h flavours
3727 dnl AC_MSG_CHECKING(for strndup in gnome.h)
3728 dnl AC_EGREP_HEADER(strndup,gnome.h,[
3729 dnl AC_MSG_RESULT(yes)
3730 dnl AC_DEFINE(STRNDUP_IN_GNOME_H, 1,
3731 dnl Define if <gnome.h> defines strndup.)],[
3732 dnl AC_MSG_RESULT(no)])
3734 dnl AC_MSG_ERROR([Can't find gnome headers. Please install the gnome
3735 dnl developement tools or remove the --enable-gnome option])
3737 dnl CPPFLAGS="${CPPFLAGS_save}"
3741 dnl Gnome2 module ! Disabled for know as it is unuseable and confuses users
3743 dnl AC_ARG_ENABLE(gnome2,
3744 dnl [ --enable-gnome2 Gnome2 support (default disabled)])
3745 dnl if test "${enable_gnome2}" = "yes"
3747 dnl PKG_CHECK_MODULES(GNOME2, [libgnomeui-2.0])
3748 dnl VLC_ADD_CFLAGS([gnome2],[${GNOME2_CFLAGS}])
3749 dnl VLC_ADD_LDFLAGS([gnome2],[${GNOME2_LIBS}])
3750 dnl VLC_ADD_PLUGINS([gnome2])
3751 dnl if test "${SYS}" != "mingw32"; then
3752 dnl NEED_GNOME2_MAIN=yes
3757 dnl wxWidgets module
3759 AC_ARG_ENABLE(wxwidgets,
3760 [ --enable-wxwidgets wxWidgets support (default enabled)])
3761 if test "${enable_wxwindows}"
3763 AC_MSG_WARN(--{en|dis}able-wxwindows is deprecated. Use --{en|dis}able-wxwidgets instead.)
3766 if test "${enable_wxwindows}" = "no"
3768 enable_wxwidgets="no"
3770 if test "${enable_wxwidgets}" != "no"
3772 WXWIDGETS_PATH="${PATH}"
3773 AC_ARG_WITH(wx-config-path,
3774 [ --with-wx-config-path=PATH wx-config path (default search in \$PATH)],
3775 [ if test "${with_wx_config_path}" != "no"
3777 WXWIDGETS_PATH="${with_wx_config_path}:${PATH}"
3779 WXWIDGETS_NAME="wx-config"
3780 AC_ARG_WITH(wx-config,
3781 [ --with-wx-config=NAME wx-config name (default is wx-config)],
3782 [ if test "${with_wx_config}" != "no"
3784 WXWIDGETS_NAME="${with_wx_config}"
3786 # look for wx-config
3787 AC_PATH_PROG(WX_CONFIG, ${WXWIDGETS_NAME}, no, ${WXWIDGETS_PATH})
3788 if test "${WX_CONFIG}" != "no" -a "${CXX}" != ""
3790 if expr 2.3.0 \> `${WX_CONFIG} --version` >/dev/null
3792 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.])
3796 # playlist.cpp:1351: error: ISO C++ forbids cast to non-reference type
3797 # into a warning. However better would be to fix playlist.cpp
3798 AC_CACHE_CHECK([if \$CXX accepts -fpermissive],
3799 [ac_cv_cxx_fpermissive],
3800 [CXXFLAGS="${CXXFLAGS_save} -fpermissive"
3801 AC_TRY_COMPILE([],,ac_cv_cxx_fpermissive=yes,
3802 ac_cv_cxx_fpermissive=no)])
3803 if test "${ac_cv_cxx_fpermissive}" = "yes"; then
3804 VLC_ADD_CXXFLAGS([wxwidgets],-fpermissive)
3806 VLC_ADD_LDFLAGS([wxwidgets],[`${WX_CONFIG} --libs`])
3807 VLC_ADD_CXXFLAGS([wxwidgets],[`${WX_CONFIG} --cxxflags`])
3808 if test "$have_libcdio" = "yes"
3810 VLC_ADD_LDFLAGS([wxwidgets],[$LIBCDIO_LIBS])
3811 VLC_ADD_CXXFLAGS([wxwidgets],[$LIBCDIO_CFLAGS])
3813 AC_MSG_WARN([Probe disc disabled because ok libcdio library not found])
3816 if test "$have_libvcdinfo" = "yes"
3818 VLC_ADD_LDFLAGS([wxwidgets],[$VCDINFO_LIBS])
3819 VLC_ADD_CXXFLAGS([wxwidgets],[$VCDINFO_CFLAGS])
3821 AC_MSG_WARN([VCD information on Probe disc disabled because ok libvcdinfo not found])
3824 # now look for the wxprec.h header
3825 CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_wxwidgets}"
3826 ac_cv_wx_headers=yes
3827 AC_CHECK_HEADERS(wx/wxprec.h, , [
3829 echo "Cannot find wxWidgets development headers."
3831 if test "${ac_cv_wx_headers}" = "yes"
3833 VLC_ADD_PLUGINS([wxwidgets])
3834 ALIASES="${ALIASES} wxvlc"
3836 CPPFLAGS="${CPPFLAGS_save}"
3842 dnl WinCE GUI module
3844 if test "${SYS}" = "mingwce"; then
3845 VLC_ADD_BUILTINS([wince])
3846 VLC_ADD_CXXFLAGS([wince],[])
3847 VLC_ADD_LDFLAGS([wince],[-lcommctrl -lcommdlg -laygshell])
3849 VLC_ADD_LDFLAGS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
3850 elif test "${SYS}" = "mingw32"; then
3851 VLC_ADD_CXXFLAGS([wince],[])
3852 VLC_ADD_LDFLAGS([wince],[-lcomctl32 -lcomdlg32 -lgdi32 -lole32])
3854 VLC_ADD_LDFLAGS([wince],[\\\${top_builddir}modules/gui/wince/wince_rc.o])
3858 dnl Simple test for skins2 dependency
3860 if test "${enable_skins2}" != "no"
3862 if test "${WX_CONFIG}" = "no"
3864 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.])
3871 dnl AC_ARG_ENABLE(qt,
3872 dnl [ --enable-qt Qt interface support (default disabled)],
3873 dnl [if test "${enable_qt}" = "yes"; then
3874 dnl VLC_ADD_PLUGINS([qt])
3875 dnl ALIASES="${ALIASES} qvlc"
3876 dnl VLC_ADD_LDFLAGS([qt],[-L${QTDIR}/lib])
3877 dnl LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt}"
3878 dnl AC_CHECK_LIB(qt-mt,main,[
3879 dnl VLC_ADD_LDFLAGS([qt],[-lqt-mt])
3881 dnl AC_CHECK_LIB(qt,main,[
3882 dnl VLC_ADD_LDFLAGS([qt],[-lqt])
3885 dnl LDFLAGS="${LDFLAGS_save}"
3886 dnl VLC_ADD_CXXFLAGS([qt],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
3887 dnl if test -x ${QTDIR}/bin/moc
3889 dnl MOC=${QTDIR}/bin/moc
3898 dnl AC_ARG_ENABLE(kde,
3899 dnl [ --enable-kde KDE interface support (default disabled)],
3900 dnl [if test "${enable_kde}" = "yes"; then
3901 dnl VLC_ADD_PLUGINS([kde])
3902 dnl ALIASES="${ALIASES} kvlc"
3903 dnl VLC_ADD_LDFLAGS([kde],[-L${KDEDIR}/lib])
3904 dnl dnl Check for -lkfile (only in KDE 2) or -lkdeui -lkio (KDE 3)
3905 dnl LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3906 dnl AC_CHECK_LIB(kfile,main,[
3907 dnl VLC_ADD_LDFLAGS([kde],[-lkfile])
3909 dnl LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3910 dnl AC_CHECK_LIB(kdeui,main,[
3911 dnl VLC_ADD_LDFLAGS([kde],[-lkdeui])
3913 dnl LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3914 dnl AC_CHECK_LIB(kio,main,[
3915 dnl VLC_ADD_LDFLAGS([kde],[-lkio])
3917 dnl LDFLAGS="${LDFLAGS_save}"
3918 dnl VLC_ADD_CXXFLAGS([kde],[-I/usr/include/kde -I/usr/include/qt3 -I/usr/include/qt])
3919 dnl VLC_ADD_CXXFLAGS([kde],[-I${KDEDIR}/include -I${QTDIR}/include])
3920 dnl if test -x ${QTDIR}/bin/moc
3922 dnl MOC=${QTDIR}/bin/moc
3929 dnl Opie QT embedded module
3932 [ --enable-opie Qt embedded interface support (default disabled)],
3933 [if test "${enable_opie}" = "yes"; then
3935 [ --with-qte=PATH Qt Embedded headers and libraries])
3936 if test "${with_qte}" != "no" -a -n "${with_qte}"
3938 VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3939 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])
3941 VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'`])
3942 VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'`])
3944 CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
3945 AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
3946 AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
3948 CPPFLAGS="${CPPFLAGS_save}"
3950 VLC_ADD_PLUGINS([opie])
3952 VLC_ADD_LDFLAGS([opie],[-lqpe ${LDFLAGS_qte}])
3953 VLC_ADD_CXXFLAGS([opie],[${CXXFLAGS_qte}])
3954 if test "${with_qte}" != "no" -a -n "${with_qte}"
3956 MOC=${with_qte}/bin/moc
3958 MOC=${QTDIR}/bin/moc
3965 AC_ARG_ENABLE(macosx,
3966 [ --enable-macosx MacOS X support (default enabled on MacOS X)],
3967 [if test "${enable_macosx}" = "yes"
3969 VLC_ADD_BUILTINS([macosx])
3970 VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
3972 [AC_CHECK_HEADERS(Cocoa/Cocoa.h,
3973 VLC_ADD_BUILTINS([macosx])
3974 VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
3981 [ --enable-qnx QNX RTOS support (default enabled on QNX RTOS)])
3982 if test "${enable_qnx}" != "no"
3984 AC_CHECK_HEADERS(Ph.h, [
3985 VLC_ADD_PLUGINS([qnx])
3986 VLC_ADD_LDFLAGS([qnx],[-lasound -lph])
3993 AC_ARG_ENABLE(ncurses,
3994 [ --enable-ncurses ncurses interface support (default disabled)],
3995 [if test "${enable_ncurses}" = "yes"; then
3996 VLC_ADD_PLUGINS([ncurses])
3997 VLC_ADD_LDFLAGS([ncurses],[-lncurses])
4004 [ --enable-xosd xosd interface support (default disabled)])
4005 if test "${enable_xosd}" = "yes"
4007 AC_CHECK_HEADER(xosd.h, have_xosd="true", have_xosd="false")
4008 AC_CHECK_LIB(xosd,xosd_set_offset,
4009 AC_DEFINE(HAVE_XOSD_VERSION_1, 1, Define if <xosd.h> is 1.0.x),
4010 AC_CHECK_LIB(xosd,xosd_set_horizontal_offset,
4011 AC_DEFINE(HAVE_XOSD_VERSION_2, 1, Define if <xosd.h> is 2.0.x),
4012 AC_TRY_COMPILE([#include <xosd.h>],
4013 [void foo() { xosd_init("foo","bar",12,XOSD_top,2,12,42); }],,
4014 AC_DEFINE(HAVE_XOSD_VERSION_0, 1, Define if <xosd.h> is pre-1.0.0))))
4015 if test "${have_xosd}" = "true"
4017 VLC_ADD_PLUGINS([xosd])
4018 VLC_ADD_LDFLAGS([xosd],[-lxosd])
4023 dnl Visualisation plugin
4025 AC_ARG_ENABLE(visual,
4026 [ --enable-visual visualisation plugin (default enabled)])
4027 if test "${enable_visual}" != "no"
4029 VLC_ADD_PLUGINS([visual])
4033 dnl OpenGL visualisation plugin
4035 AC_ARG_ENABLE(galaktos,
4036 [ --enable-galaktos OpenGL visualisation plugin (default disabled)])
4037 if test "${enable_galaktos}" = "yes"
4039 AC_CHECK_HEADERS(GL/gl.h, [
4040 VLC_ADD_PLUGINS([galaktos])
4041 if test "${SYS}" != "mingw32"; then
4042 VLC_ADD_LDFLAGS([galaktos],[-L${x_libraries} -lGL -lGLU])
4044 VLC_ADD_LDFLAGS([galaktos],[-lopengl32])
4050 dnl goom visualization plugin
4053 [ --enable-goom goom visualisation plugin (default disabled)])
4054 if test "${enable_goom}" = "yes"
4056 AC_ARG_WITH(goom-tree,
4057 [ --with-goom-tree=PATH goom tree for static linking (required)])
4060 dnl test for --with-goom-tree
4062 if test "${with_goom_tree}" != "no" -a -n "${with_goom_tree}"; then
4063 AC_MSG_CHECKING(for libgoom2.a in ${with_goom_tree})
4064 real_goom_tree="`cd ${with_goom_tree} 2>/dev/null && pwd`"
4065 if test -z "${real_goom_tree}"; then
4066 dnl The given directory can't be found
4068 AC_MSG_ERROR([cannot cd to ${with_goom_tree}])
4070 if test -f "${real_goom_tree}/src/.libs/libgoom2.a"; then
4071 AC_MSG_RESULT(${real_goom_tree}/src/.libs/libgoom2.a)
4072 VLC_ADD_BUILTINS([goom])
4073 VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree}/src/.libs -lgoom2])
4074 VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree}/src -DUSE_GOOM_TREE])
4076 dnl The given libgoom2 wasn't built, try to look for the old goom
4078 AC_MSG_CHECKING(for libgoom.a in ${with_goom_tree})
4079 if test -f "${real_goom_tree}/libgoom.a"; then
4080 AC_MSG_RESULT(${real_goom_tree}/libgoom.a)
4081 VLC_ADD_BUILTINS([goom])
4082 VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree} -lgoom])
4083 VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree} -DUSE_GOOM_TREE -DOLD_GOOM])
4085 dnl The given libgoom wasn't built
4087 AC_MSG_ERROR([cannot find ${real_goom_tree}/src/.libs/libgoom2.a, make sure you compiled goom in ${with_goom_tree}])
4091 AC_CHECK_HEADERS(goom/goom.h, [
4092 LDFLAGS="${LDFLAGS_save} ${LDFLAGS_goom}"
4093 AC_CHECK_LIB(goom2, goom_init, [
4094 VLC_ADD_PLUGINS([goom])
4095 VLC_ADD_LDFLAGS([goom],[-lgoom2])
4097 AC_MSG_ERROR([Could not find goom on your system: you may get it from http://www.ios-software.com/.])
4099 LDFLAGS="${LDFLAGS_save}"
4105 dnl SLP access plugin
4108 [ --enable-slp SLP service discovery support (default disabled)])
4109 if test "${enable_slp}" = "yes"
4112 [ --with-slp=PATH libslp headers and libraries])
4113 if test -z "${with_slp}"
4115 AC_CHECK_HEADERS(slp.h, have_slp="true", have_slp="false")
4116 if test "${have_slp}" = "true"
4118 VLC_ADD_PLUGINS([slp])
4119 VLC_ADD_LDFLAGS([slp],[-lslp])
4120 VLC_ADD_LDFLAGS([stream_out_standard],[-lslp])
4123 AC_MSG_CHECKING(for slp headers in ${with_slp})
4124 if test -f ${with_slp}/slp.h
4126 dnl Use ${with_slp}/libslp/slp.h
4128 VLC_ADD_PLUGINS([slp])
4129 VLC_ADD_LDFLAGS([slp],[-L${with_slp} -lslp])
4130 VLC_ADD_LDFLAGS([stream_out_standard],[-L${with_slp} -lslp])
4131 VLC_ADD_CPPFLAGS([slp],[-I${with_slp}])
4132 AC_DEFINE(HAVE_SLP_H)
4134 dnl No libslp could be found, sorry
4136 AC_MSG_ERROR([cannot find ${with_slp}/slp.h])
4142 dnl DAAP access plugin and services discovery
4145 [ --enable-daap DAAP shares services discovery support (default enabled)])
4146 if test "$enable_daap" != "no"
4148 PKG_CHECK_MODULES(DAAP, opendaap >= 0.3.0,
4149 [ VLC_ADD_PLUGINS([daap])
4150 VLC_ADD_LDFLAGS([daap],[$DAAP_LIBS])
4151 VLC_ADD_CFLAGS([daap],[$DAAP_CFLAGS])]:,
4152 [AC_MSG_WARN(DAAP library not found)])
4159 [ --enable-lirc lirc support (default disabled)])
4160 if test "${enable_lirc}" = "yes"
4162 AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
4163 if test "${have_lirc}" = "true"
4165 VLC_ADD_PLUGINS([lirc])
4166 VLC_ADD_LDFLAGS([lirc],[-llirc_client])
4173 AC_ARG_ENABLE(joystick,
4174 [ --enable-joystick joystick control (default enabled)])
4175 if test "${enable_joystick}" = "yes"; then
4176 AC_CHECK_HEADER(linux/joystick.h, [VLC_ADD_PLUGINS([joystick])])
4180 dnl corba (ORBit) plugin
4182 dnl Default: do not enable corba
4184 AC_ARG_ENABLE(corba,
4185 [ --enable-corba corba interface support (default disabled)])
4186 if test "${enable_corba}" = "yes"; then
4188 PKG_CHECK_MODULES(CORBA,
4189 ORBit-2.0 >= 2.8.0 \
4190 glib-2.0 >= $GLIB_VERSION \
4191 gobject-2.0 >= $GLIB_VERSION \
4192 gthread-2.0 >= $GLIB_VERSION,
4195 VLC_ADD_LDFLAGS([corba],[$CORBA_LIBS])
4196 VLC_ADD_CFLAGS([corba],[$CORBA_CFLAGS])
4197 VLC_ADD_PLUGINS([corba snapshot]) ],
4199 AC_MSG_WARN(corba library not found) ])
4201 AM_CONDITIONAL(ENABLE_CORBA, test "$enablecorba" = "true")
4203 AC_ARG_WITH(,[Misc options:])
4206 dnl Endianness check, AC_C_BIGENDIAN doesn't work if we are cross-compiling
4208 dnl We give the user the opportunity to specify
4209 dnl --with-words=big or --with-words=little ; otherwise, try to guess
4212 [ --with-words=endianness set endianness (big or little)])
4213 case "${with_words}" in
4215 ac_cv_c_bigendian=yes
4218 ac_cv_c_bigendian=no
4221 dnl Try to guess endianness by matching patterns on a compiled
4222 dnl binary, by looking for an ASCII or EBCDIC string
4223 AC_CACHE_CHECK([whether the byte order is big-endian],
4224 [ac_cv_c_bigendian],
4225 [ac_cv_c_bigendian="unknown"
4226 [cat >conftest.c <<EOF
4227 short am[] = { 0x4249, 0x4765, 0x6e44, 0x6961, 0x6e53, 0x7953, 0 };
4228 short ai[] = { 0x694c, 0x5454, 0x656c, 0x6e45, 0x6944, 0x6e61, 0 };
4229 void _a(void) { char*s = (char*)am; s = (char *)ai; }
4230 short ei[] = { 0x89D3, 0xe3e3, 0x8593, 0x95c5, 0x89c4, 0x9581, 0 };
4231 short em[] = { 0xc2c9, 0xc785, 0x95c4, 0x8981, 0x95e2, 0xa8e2, 0 };
4232 void _e(void) { char*s = (char*)em; s = (char*)ei; }
4233 int main(void) { _a(); _e(); return 0; }
4236 if test -f conftest.c
4238 if ${CC-cc} -c conftest.c -o conftest.o >>config.log 2>&1 \
4239 && test -f conftest.o
4241 if test "`strings conftest.o | grep BIGenDianSyS`"
4243 ac_cv_c_bigendian="yes"
4245 if test "`strings conftest.o | grep LiTTleEnDian`"
4247 ac_cv_c_bigendian="no"
4252 if test "${ac_cv_c_bigendian}" = "unknown"
4254 AC_MSG_ERROR([Could not guess endianness, please use --with-words])
4258 dnl Now we know what to use for endianness, just put it in the header
4259 if test "${ac_cv_c_bigendian}" = "yes"
4261 AC_DEFINE(WORDS_BIGENDIAN, 1, big endian system)
4265 dnl DLL loader copied from MPlayer copied from somewhere else (WINE ?)
4268 AC_ARG_ENABLE(loader,
4269 [ --enable-loader build DLL loader for ELF i386 platforms (default disabled)])
4270 AM_CONDITIONAL(LOADER, [test "${enable_loader}" = "yes"])
4271 AS_IF([test "${enable_loader}" = "yes"],
4272 [ VLC_ADD_PLUGINS([dmo quicktime])
4273 VLC_ADD_CPPFLAGS([dmo],[-I../../../@top_srcdir@/loader])
4274 VLC_ADD_LDFLAGS([dmo],[../../../loader/libloader.a])
4275 VLC_ADD_CPPFLAGS([quicktime],[-I../../@top_srcdir@/loader])
4276 VLC_ADD_LDFLAGS([quicktime],[../../loader/libloader.a])
4280 dnl Microsoft ActiveX support
4283 AC_ARG_ENABLE(activex,
4284 [ --enable-activex build a vlc-based ActiveX control (default enabled on Win32)])
4285 if test "${enable_activex}" != "no"
4287 if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
4289 AC_CHECK_PROGS(MIDL, [midl widl], no)
4290 AC_CHECK_HEADERS(ole2.h olectl.h,
4291 [ VLC_ADD_CXXFLAGS([activex],[-fno-exceptions])
4292 VLC_ADD_LDFLAGS([activex],[-lole32 -loleaut32 -luuid -lshlwapi])
4293 AC_CHECK_HEADERS(objsafe.h,
4294 VLC_ADD_CXXFLAGS([activex],[-DHAVE_OBJSAFE_HEADER])
4298 [ AC_MSG_ERROR([required OLE headers are missing from your system]) ]
4302 AC_ARG_VAR(MIDL, [Microsoft IDL compiler (Win32 platform only)])
4303 AM_CONDITIONAL(HAS_MIDL_COMPILER, test "${MIDL}" != "no")
4304 AM_CONDITIONAL(BUILD_ACTIVEX,${activex})
4310 AC_ARG_ENABLE(mozilla,
4311 [ --enable-mozilla build a vlc-based Mozilla plugin (default disabled)])
4312 AC_ARG_WITH(mozilla-sdk-path,
4313 [ --with-mozilla-sdk-path=PATH path to mozilla sdk])
4315 if test "${enable_mozilla}" = "yes" -a "${with_mozilla_sdk_path}" = ""
4317 AC_PATH_PROG(MOZILLA_CONFIG, mozilla-config, no)
4318 if test "${MOZILLA_CONFIG}" = "no"
4320 AC_MSG_ERROR([Please install the Mozilla development tools, mozilla-config was not found.])
4322 if test "${SYS}" != "mingw32"; then
4323 LDFLAGS="${LDFLAGS_save} -L${x_libraries}"
4324 AC_CHECK_LIB(Xt,XtStrings,
4325 [VLC_ADD_LDFLAGS([mozilla],[-L${x_libraries} -lXt -lX11 -lSM -lICE])],
4327 [[-L${x_libraries} -lX11 -lSM -lICE]
4329 LDFLAGS="${LDFLAGS_save}"
4332 dnl Workaround for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=150490
4333 VLC_ADD_CPPFLAGS([mozilla],[[`${MOZILLA_CONFIG} --cflags plugin xpcom java | sed 's,-I\([^ ]*\)/mozilla/\([^ ]*\),-I\1/\2 -I\1/mozilla/\2,g' | xargs`]])
4334 VLC_ADD_LDFLAGS([mozilla],[`${MOZILLA_CONFIG} --libs plugin xpcom`])
4335 CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mozilla}"
4336 AC_CHECK_HEADERS(mozilla-config.h)
4337 CPPFLAGS="${CPPFLAGS_save}"
4340 dnl special case for mingw32
4341 elif test "${enable_mozilla}" = "yes"
4343 if test "${SYS}" = "mingw32"; then
4344 AC_CHECK_TOOL(CYGPATH, cygpath, "")
4345 mozilla_sdk_xpcom="/xpcom"
4348 real_mozilla_sdk="`cd ${with_mozilla_sdk_path} 2>/dev/null && pwd`"
4349 CPPFLAGS="${CPPFLAGS_save} -I${real_mozilla_sdk} -I${real_mozilla_sdk}/include"
4350 AC_CHECK_HEADERS(mozilla-config.h, [
4352 VLC_ADD_CPPFLAGS([mozilla],[-DXPCOM_GLUE -I${real_mozilla_sdk} -I${real_mozilla_sdk}/include -I${real_mozilla_sdk}/embedstring/include -I${real_mozilla_sdk}/xpcom/include -I${real_mozilla_sdk}/nspr/include -I${real_mozilla_sdk}/string/include -I${real_mozilla_sdk}/plugin/include -I${real_mozilla_sdk}/java/include])
4353 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])
4354 if test "${SYS}" = "mingw32"; then
4355 VLC_ADD_LDFLAGS([mozilla],[-lembedstring -Wl,--kill-at])
4358 XPIDL_INCL="-I${real_mozilla_sdk}${mozilla_sdk_xpcom}/idl"
4359 XPIDL="${real_mozilla_sdk}${mozilla_sdk_xpcom}/bin/xpidl"
4361 if test -n "${CYGPATH}"; then
4362 real_mozilla_sdk="`${CYGPATH} -w ${real_mozilla_sdk}`"
4363 XPIDL_INCL="${XPIDL_INCL} -I\"${real_mozilla_sdk}${mozilla_sdk_xpcom}/idl\""
4365 CPPFLAGS="${CPPFLAGS_save}"
4368 dnl Not necessarily in ${PATH}
4369 if test -z "${XPIDL}" -o ! -x "${XPIDL}"; then
4370 XPIDL="/usr/lib/mozilla/xpidl"
4372 AS_IF([test "${MOZILLA_CONFIG}"], [
4373 if test -z "${XPIDL_INCL}"; then
4374 XPIDL_INCL="`${MOZILLA_CONFIG} --cflags plugin xpcom java` \
4375 `${MOZILLA_CONFIG} --idlflags plugin xpcom java` "
4378 AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
4383 AC_ARG_ENABLE(testsuite,
4384 [ --enable-testsuite build test modules (default disabled)])
4385 if test "${enable_testsuite}" = "yes"
4387 TESTS="test1 test2 test3 test4"
4389 dnl we define those so that bootstrap sets the right linker
4390 VLC_ADD_CXXFLAGS([test2],[])
4391 VLC_ADD_OBJCFLAGS([test3],[])
4392 dnl this one is needed until automake knows what to do
4393 VLC_ADD_LDFLAGS([test3],[-lobjc])
4395 VLC_ADD_PLUGINS([${TESTS}])
4396 #VLC_ADD_BUILTINS([${TESTS}])
4402 if test "${NEED_GTK_MAIN}" != "no"
4404 VLC_ADD_PLUGINS([gtk_main])
4405 VLC_ADD_CFLAGS([gtk_main],[${CFLAGS_gtk}])
4406 VLC_ADD_LDFLAGS([gtk_main],[${LDFLAGS_gtk}])
4409 if test "${NEED_GNOME_MAIN}" != "no"
4411 VLC_ADD_PLUGINS([gnome_main])
4412 VLC_ADD_CFLAGS([gnome_main],[${CFLAGS_gtk} ${CFLAGS_gnome}])
4413 VLC_ADD_LDFLAGS([gnome_main],[${LDFLAGS_gtk} ${LDFLAGS_gnome}])
4416 if test "${NEED_GTK2_MAIN}" != "no"
4418 VLC_ADD_PLUGINS([gtk2_main])
4419 VLC_ADD_CFLAGS([gtk2],[-DNEED_GTK2_MAIN])
4420 VLC_ADD_CFLAGS([pda],[-DNEED_GTK2_MAIN])
4421 VLC_ADD_CFLAGS([gtk2_main],[${CFLAGS_gtk2} ${CFLAGS_pda}])
4422 VLC_ADD_LDFLAGS([gtk2_main],[${LDFLAGS_gtk2} ${LDFLAGS_pda}])
4425 if test "${NEED_GNOME2_MAIN}" != "no"
4427 VLC_ADD_PLUGINS([gnome2_main])
4428 VLC_ADD_CFLAGS([gnome2_main],[${CFLAGS_gtk2} ${CFLAGS_gnome2}])
4429 VLC_ADD_LDFLAGS([gnome2_main],[${LDFLAGS_gtk2} ${LDFLAGS_gnome2}])
4435 if test "${NEED_QTE_MAIN}" != "no"
4437 VLC_ADD_PLUGINS([qte_main])
4438 VLC_ADD_CXXFLAGS([opie qte qt_video],[-DNEED_QTE_MAIN])
4439 VLC_ADD_CXXFLAGS([qte_main],[${CXXFLAGS_qte} ${CXXFLAGS_qt_video}])
4440 VLC_ADD_LDFLAGS([qte_main],[${LDFLAGS_qte} ${LDFLAGS_qt_video}])
4445 dnl Plugin and builtin checks
4447 builtin_support=false
4450 dnl Support for plugins - this must be AT THE END
4451 AC_ARG_ENABLE(plugins,
4452 [ --disable-plugins make all plugins built-in (default plugins enabled)],
4453 [if test "${enable_plugins}" = "no"
4455 plugin_support=false
4458 dnl Automagically disable plugins if there is no system support for
4459 dnl dynamically loadable files (.so, .dll, .dylib).
4460 dnl don't forget vlc-win32 still can load .dll as plugins
4461 if test "${ac_cv_have_plugins}" = "no"
4463 echo "*** Your system doesn't have plugin support. All plugins will be built"
4465 plugin_support=false
4468 dnl Export automake variables
4469 if ${plugin_support}
4471 AC_DEFINE(HAVE_DYNAMIC_PLUGINS, 1, Define if we have support for dynamic plugins)
4472 for plugin in `echo ${PLUGINS}`
4474 eval "${plugin}_p=yes"
4477 VLC_ADD_BUILTINS([${PLUGINS}])
4480 AM_CONDITIONAL(HAVE_PLUGINS, ${plugin_support})
4482 [if echo "${BUILTINS}" | grep '[^ ]' >/dev/null 2>&1
4485 for builtin in `echo ${BUILTINS}`
4487 eval "${builtin}_b=yes"
4490 AM_CONDITIONAL(HAVE_BUILTINS, ${builtin_support})
4492 AC_ARG_ENABLE(shared-libvlc,
4493 [ --enable-shared-libvlc shared libvlc (default disabled EXPERIMENTAL)],
4494 ,[shared_libvlc=no])
4496 AM_CONDITIONAL(BUILD_SHARED, [test "${shared_libvlc}" != "no"])
4497 AS_IF([test "${shared_libvlc}" != "no"], [
4498 AC_DEFINE(HAVE_SHARED_LIBVLC, 1, [Define to 1 if libvlc is built as a shared library.])
4502 AS_IF([test "${shared_libvlc}" != "no"], [pic=pic])
4503 AS_IF([${mozilla}], [pic=pic])
4504 AS_IF([test "${SYS}" = "mingw32"], [pic=no])
4506 AS_IF([test "${pic}" = "no"], [pic=])
4509 dnl Import conditional variables generated by bootstrap
4513 dnl Stuff used by the program
4515 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION} ${CODENAME}", [Simple version string])
4516 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "VLC media player - version ${VERSION} ${CODENAME} - (c) 1996-2005 the VideoLAN team", [Copyright string])
4517 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4518 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MAJOR,"${VERSION_MAJOR}", [version major number])
4519 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_MINOR,"${VERSION_MINOR}", [version minor number])
4520 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_REVISION,"${VERSION_REVISION}", [version minor number])
4521 AC_DEFINE_UNQUOTED(PACKAGE_VERSION_EXTRA,"${VERSION_EXTRA}", [version minor number])
4522 AC_SUBST(VERSION_MAJOR)
4523 AC_SUBST(VERSION_MINOR)
4524 AC_SUBST(VERSION_REVISION)
4525 AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami`", [user who ran configure])
4526 AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname`", [host which ran configure])
4527 AC_DEFINE_UNQUOTED(VLC_COMPILE_DOMAIN, "`dnsdomainname 2>/dev/null || domainname 2>/dev/null || echo unknown`", [domain of the host which ran configure])
4528 AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1`", [compiler])
4530 dnl Old definitions for version-dependant plugins
4531 dnl VLC_SYMBOL="`echo ${VERSION} | sed -e 'y/.-+/___/'`"
4532 dnl AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${VLC_SYMBOL}", [String suffix for module functions])
4533 dnl AC_DEFINE_UNQUOTED(MODULE_SYMBOL, ${VLC_SYMBOL}, [Symbol suffix for module functions])
4535 dnl New definitions with value matching 0.8.4 release
4536 module_symbol="0_8_4"
4537 AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${module_symbol}", [String suffix for module functions])
4538 AC_DEFINE_UNQUOTED(MODULE_SYMBOL, $module_symbol, [Symbol suffix for module functions])
4539 VLC_ENTRY="vlc_entry__${module_symbol}"
4542 DATA_PATH="${ac_tool_prefix}/share/vlc"
4544 PLUGIN_PATH="${ac_tool_prefix}/lib/vlc"
4545 AC_SUBST(PLUGIN_PATH)
4548 dnl Handle substvars that use $(top_srcdir)
4550 VLC_CONFIG="top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config"
4551 AC_SUBST(VLC_CONFIG)
4552 CPPFLAGS_save="${CPPFLAGS_save} -I\$(top_srcdir)/include"
4560 dnl Create the vlc-config script
4562 LDFLAGS_libvlc="${LDFLAGS_vlc} ${LDFLAGS_builtin}"
4563 for i in `echo "${BUILTINS}" | sed -e 's@[^ ]*/@@g'` ; do LDFLAGS_libvlc="${LDFLAGS_libvlc} ${libdir}/vlc/${i}.a `eval echo '$'{LDFLAGS_${i}}`" ; done
4566 dnl Configuration is finished
4575 AC_SUBST(XPIDL_INCL)
4578 AC_SUBST(ALL_LINGUAS)
4580 dnl Import substitutions generated by bootstrap
4583 dnl Create vlc-config.in
4584 VLC_OUTPUT_VLC_CONFIG_IN
4604 modules/access/Makefile
4605 modules/access/dshow/Makefile
4606 modules/access/dvb/Makefile
4607 modules/access/mms/Makefile
4608 modules/access/pvr/Makefile
4609 modules/access/v4l/Makefile
4610 modules/access/cdda/Makefile
4611 modules/access/vcd/Makefile
4612 modules/access/vcdx/Makefile
4613 modules/access/screen/Makefile
4614 modules/access_filter/Makefile
4615 modules/access_output/Makefile
4616 modules/audio_filter/Makefile
4617 modules/audio_filter/channel_mixer/Makefile
4618 modules/audio_filter/converter/Makefile
4619 modules/audio_filter/resampler/Makefile
4620 modules/audio_mixer/Makefile
4621 modules/audio_output/Makefile
4622 modules/codec/Makefile
4623 modules/codec/cmml/Makefile
4624 modules/codec/dmo/Makefile
4625 modules/codec/ffmpeg/Makefile
4626 modules/codec/spudec/Makefile
4627 modules/control/Makefile
4628 modules/control/http/Makefile
4629 modules/control/corba/Makefile
4630 modules/demux/Makefile
4631 modules/demux/asf/Makefile
4632 modules/demux/avi/Makefile
4633 modules/demux/mp4/Makefile
4634 modules/demux/mpeg/Makefile
4635 modules/demux/playlist/Makefile
4636 modules/demux/util/Makefile
4637 modules/gui/Makefile
4638 modules/gui/beos/Makefile
4639 modules/gui/pda/Makefile
4640 modules/gui/macosx/Makefile
4641 modules/gui/qnx/Makefile
4642 modules/gui/skins2/Makefile
4643 modules/gui/wxwidgets/Makefile
4644 modules/gui/wince/Makefile
4645 modules/misc/Makefile
4646 modules/misc/dummy/Makefile
4647 modules/misc/memcpy/Makefile
4648 modules/misc/network/Makefile
4649 modules/misc/testsuite/Makefile
4650 modules/misc/playlist/Makefile
4651 modules/misc/xml/Makefile
4652 modules/mux/Makefile
4653 modules/mux/mpeg/Makefile
4654 modules/packetizer/Makefile
4655 modules/services_discovery/Makefile
4656 modules/stream_out/Makefile
4657 modules/stream_out/transrate/Makefile
4658 modules/video_chroma/Makefile
4659 modules/video_filter/Makefile
4660 modules/video_filter/swscale/Makefile
4661 modules/video_output/Makefile
4662 modules/video_output/directx/Makefile
4663 modules/video_output/qte/Makefile
4664 modules/video_output/x11/Makefile
4665 modules/visualization/Makefile
4666 modules/visualization/visual/Makefile
4667 modules/visualization/galaktos/Makefile
4670 dnl Generate makefiles
4673 # Cannot use AC_CONFIG_FILES([vlc-config]) as is automatically built,
4674 # not provided with the source
4675 ${SHELL} ./config.status --file=vlc-config
4676 chmod 0755 vlc-config
4678 dnl echo "Enabled builtin modules :"
4679 dnl for a in `./vlc-config --target builtin` ; do echo $a; done | sed -e 's,modules\/\(.*\)\/lib\(.*\)\.a,\2 (\1),'
4681 dnl echo "Enabled plugin modules :"
4682 dnl for a in `./vlc-config --target plugin` ; do echo $a; done | sed -e 's,modules\/\(.*\)\/lib\(.*\)_plugin,\2 (\1),'
4686 --------------------
4687 vlc version : ${VERSION}
4689 architecture : ${ARCH}
4691 test "${enable_debug}" = "yes" && printf "debug "
4692 test "${enable_cprof}" = "yes" && printf "cprof "
4693 test "${enable_gprof}" = "yes" && printf "gprof "
4694 test "${enable_optimizations}" = "yes" && printf "optim "
4695 test "${enable_release}" = "yes" && printf "release " || printf "devel "
4697 vlc aliases :${ALIASES}
4699 You can tune the compiler flags in vlc-config.
4700 To build vlc and its plugins, type \`make'.