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