]> git.sesse.net Git - vlc/blob - configure.ac
Compile fix
[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([id3 playlist export sgimb m3u xtag])
958 VLC_ADD_PLUGINS([rawvideo blend scale time marq])
959 VLC_ADD_PLUGINS([wav araw subtitle vobsub adpcm a52sys dtssys au])
960 VLC_ADD_PLUGINS([access_file access_udp access_tcp access_http ipv4 access_mms])
961 VLC_ADD_PLUGINS([access_ftp access_directory sap http])
962
963 dnl
964 dnl  Switch to enable a version of VLC where most modules will be builtin
965 dnl
966 AC_ARG_ENABLE(mostly-builtin,
967 [  --enable-mostly-builtin most modules will be built-in (default disabled)])
968 if test "${enable_mostly_builtin}" = "yes"; then
969   VLC_ADD_BUILTINS([${PLUGINS}])
970   PLUGINS=""
971 fi
972
973 dnl
974 dnl Some plugins aren't useful on some platforms
975 dnl
976 if test "${SYS}" != "mingw32"; then
977     VLC_ADD_PLUGINS([screensaver])
978 else
979     VLC_ADD_PLUGINS([ntservice])
980     VLC_ADD_PLUGINS([dmo])
981     VLC_ADD_LDFLAGS([dmo],[-lole32])
982 fi
983
984 dnl
985 dnl  Accelerated modules
986 dnl
987 MMX_MODULES="memcpymmx i420_rgb_mmx i422_yuy2_mmx i420_ymga_mmx"
988 #MMX_MODULES="${MMX_MODULES} idctmmx motionmmx"
989 MMXEXT_MODULES="memcpymmxext"
990 #MMXEXT_MODULES="${MMXEXT_MODULES} idctmmxext motionmmxext"
991 THREEDNOW_MODULES="memcpy3dn"
992 SSE_MODULES=""
993 ALTIVEC_MODULES="memcpyaltivec i420_yuy2_altivec"
994 #ALTIVEC_MODULES="${ALTIVEC_MODULES} idctaltivec motionaltivec"
995
996 if test "${enable_gprof}" != "yes"
997 then
998   MMX_MODULES="${MMX_MODULES} i420_yuy2_mmx"
999 fi
1000
1001 AC_CACHE_CHECK([if \$CC groks MMX inline assembly],
1002     [ac_cv_mmx_inline],
1003     [CFLAGS="${CFLAGS_save}"
1004      AC_TRY_COMPILE(,[void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p));],
1005                     ac_cv_mmx_inline=yes, ac_cv_mmx_inline=no)])
1006 if test "${ac_cv_mmx_inline}" != "no"; then
1007   AC_DEFINE(CAN_COMPILE_MMX, 1, Define if \$CC groks MMX inline assembly.)
1008   ACCEL_MODULES="${ACCEL_MODULES} ${MMX_MODULES}"
1009 fi
1010
1011 AC_CACHE_CHECK([if \$CC groks MMX EXT inline assembly],
1012     [ac_cv_mmxext_inline],
1013     [CFLAGS="${CFLAGS_save}"
1014      AC_TRY_COMPILE(,[void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p));],
1015                     ac_cv_mmxext_inline=yes, ac_cv_mmxext_inline=no)])
1016 if test "${ac_cv_mmxext_inline}" != "no"; then
1017   AC_DEFINE(CAN_COMPILE_MMXEXT, 1, Define if \$CC groks MMX EXT inline assembly.)
1018   ACCEL_MODULES="${ACCEL_MODULES} ${MMXEXT_MODULES}"
1019 fi
1020
1021 AC_CACHE_CHECK([if \$CC groks 3D Now! inline assembly],
1022     [ac_cv_3dnow_inline],
1023     [CFLAGS="${CFLAGS_save}"
1024      AC_TRY_COMPILE(,[void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p));],
1025                     ac_cv_3dnow_inline=yes, ac_cv_3dnow_inline=no)])
1026 if test "${ac_cv_3dnow_inline}" != "no"; then
1027   AC_DEFINE(CAN_COMPILE_3DNOW, 1, Define if \$CC groks 3D Now! inline assembly.)
1028   ACCEL_MODULES="${ACCEL_MODULES} ${THREEDNOW_MODULES}"
1029 fi
1030
1031 AC_CACHE_CHECK([if \$CC groks SSE inline assembly],
1032     [ac_cv_sse_inline],
1033     [CFLAGS="${CFLAGS_save}"
1034      AC_TRY_COMPILE(,[void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p));],
1035                     ac_cv_sse_inline=yes, ac_cv_sse_inline=no)])
1036 if test "${ac_cv_sse_inline}" != "no" -a "${SYS}" != "mingw32" -a "${SYS}" != "solaris"; then
1037   AC_DEFINE(CAN_COMPILE_SSE, 1, Define if \$CC groks SSE inline assembly.)
1038   ACCEL_MODULES="${ACCEL_MODULES} ${SSE_MODULES}"
1039 fi
1040
1041 if test "${SYS}" != "mingw32"; then
1042 AC_CACHE_CHECK([if \$CC groks AltiVec inline assembly],
1043     [ac_cv_altivec_inline],
1044     [CFLAGS="${CFLAGS_save}"
1045      AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1046          ac_cv_altivec_inline=yes,
1047          [CFLAGS="${CFLAGS_save} -Wa,-m7400"
1048           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
1049             [ac_cv_altivec_inline="-Wa,-m7400"],
1050             ac_cv_altivec_inline=no)
1051          ])])
1052 if test "${ac_cv_altivec_inline}" != "no"; then
1053   AC_DEFINE(CAN_COMPILE_ALTIVEC, 1, Define if \$CC groks AltiVec inline assembly.)
1054   if test "${ac_cv_altivec_inline}" != "yes"; then
1055     VLC_ADD_CFLAGS([idctaltivec],[${ac_cv_altivec_inline}])
1056     VLC_ADD_CFLAGS([motionaltivec],[${ac_cv_altivec_inline}])
1057     VLC_ADD_CFLAGS([memcpyaltivec],[${ac_cv_altivec_inline}])
1058     VLC_ADD_CFLAGS([i420_yuy2_altivec],[${ac_cv_altivec_inline}])
1059     VLC_ADD_CFLAGS([vlc],[${ac_cv_altivec_inline}])
1060   fi
1061   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
1062 fi
1063
1064 AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
1065     [ac_cv_c_altivec],
1066     [# Darwin test
1067      CFLAGS="${CFLAGS_save} -faltivec"
1068      AC_TRY_COMPILE([],
1069        [vec_ld(0, (unsigned char *)0);],
1070        [ac_cv_c_altivec="-faltivec"],
1071        [# Linux/PPC test (no flags)
1072         CFLAGS="${CFLAGS_save} ${CFLAGS_idctaltivec} -maltivec -mabi=altivec"
1073         AC_TRY_COMPILE([#ifdef HAVE_ALTIVEC_H
1074                         #include <altivec.h>
1075                         #endif],
1076           [vec_ld(0, (unsigned char *)0);],
1077           [ac_cv_c_altivec=""
1078            ac_cv_c_altivec_abi="-maltivec -mabi=altivec"],
1079           [# Linux/PPC test (old GCC versions)
1080            CFLAGS="${CFLAGS_save} ${CFLAGS_idctaltivec} -fvec"
1081            AC_TRY_COMPILE([#ifdef HAVE_ALTIVEC_H
1082                            #include <altivec.h>
1083                            #endif],
1084              [vec_ld(0, (unsigned char *)0);],
1085              [ac_cv_c_altivec="-fvec"],
1086              [ac_cv_c_altivec=no])
1087            ])
1088         ])
1089      CFLAGS="${CFLAGS_save}"])
1090 if test "${ac_cv_c_altivec}" != "no"; then
1091   AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, Define if your compiler groks C AltiVec extensions.)
1092   VLC_ADD_CFLAGS([vlc],[${ac_cv_c_altivec}])
1093   VLC_ADD_CFLAGS([idctaltivec motionaltivec],[${ac_cv_c_altivec}])
1094   VLC_ADD_CFLAGS([i420_yuy2_altivec memcpyaltivec deinterlace],[${ac_cv_c_altivec} ${ac_cv_c_altivec_abi}])
1095   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
1096 fi
1097
1098 AC_CACHE_CHECK([if linker needs -framework vecLib],
1099     [ac_cv_ld_altivec],
1100     [LDFLAGS="${LDFLAGS_vlc} -framework vecLib"
1101      AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)
1102      LDFLAGS="${LDFLAGS_save}"
1103     ])
1104 if test "${ac_cv_ld_altivec}" != "no"; then
1105   VLC_ADD_LDFLAGS([vlc idctaltivec motionaltivec memcpyaltivec],[-framework vecLib])
1106 fi
1107 fi # end "${SYS}" != "mingw32"
1108
1109 AC_ARG_WITH(,[])
1110 AC_ARG_WITH(,[Optimization options:])
1111
1112 dnl
1113 dnl  Special arch tuning
1114 dnl
1115 AC_ARG_WITH(tuning,
1116 [  --with-tuning=ARCH      enable special tuning for an architecture
1117                           (default i686 on IA-32 and 750 on PPC)])
1118 if test -n "${with_tuning}"; then
1119     if test "${target_cpu}" = "powerpc"; then
1120         CFLAGS_TUNING="-mtune=${with_tuning}"
1121     else
1122         CFLAGS_TUNING="-mcpu=${with_tuning}"
1123     fi
1124 else
1125     if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "i486" -o "${target_cpu}" = "i386"; then
1126         CFLAGS_TUNING="-mcpu=pentiumpro"
1127     else
1128         if test "${target_cpu}" = "powerpc"; then CFLAGS_TUNING="-mtune=750"; fi
1129     fi
1130 fi
1131
1132 dnl
1133 dnl  x86 accelerations
1134 dnl
1135 if test "${target_cpu}" = "i686" -o "${target_cpu}" = "i586" -o "${target_cpu}" = "x86" -o "${target_cpu}" = "i386"
1136 then
1137     ARCH="${ARCH} mmx"
1138     VLC_ADD_BUILTINS([${ACCEL_MODULES}])
1139 fi
1140
1141 dnl
1142 dnl  Enable/disable optimizations
1143 dnl
1144 AC_ARG_ENABLE(optimizations,
1145 [  --disable-optimizations disable compiler optimizations (default enabled)])
1146 test "${enable_optimizations}" != "no" && enable_optimizations="yes"
1147
1148 dnl
1149 dnl  AltiVec acceleration
1150 dnl
1151 AC_ARG_ENABLE(altivec,
1152 [  --disable-altivec       disable AltiVec optimizations (default enabled on PPC)],
1153 [ if test "${enable_altivec}" = "yes"; then ARCH="${ARCH} altivec";
1154     VLC_ADD_BUILTINS([${ACCEL_MODULES}]) fi ],
1155 [ if test "${target_cpu}" = "powerpc"; then ARCH="${ARCH} altivec";
1156     VLC_ADD_BUILTINS([${ACCEL_MODULES}]) fi ])
1157
1158 dnl
1159 dnl  Debugging mode
1160 dnl
1161 AC_ARG_ENABLE(debug,
1162 [  --enable-debug          debug mode (default disabled)])
1163 test "${enable_debug}" != "yes" && enable_debug="no"
1164
1165 dnl
1166 dnl  Enable release-specific flags
1167 dnl
1168 AC_ARG_ENABLE(release,
1169 [  --enable-release        activate extra optimizations (default disabled)])
1170 test "${enable_release}" != "yes" && enable_release="no"
1171
1172 dnl
1173 dnl Stream output
1174 dnl
1175 AC_ARG_ENABLE(sout,
1176   [  --enable-sout           Stream output modules (default enabled)])
1177 if test "${enable_sout}" != "no"
1178 then
1179   VLC_ADD_PLUGINS([access_output_dummy access_output_udp access_output_file access_output_http])
1180   VLC_ADD_PLUGINS([mux_ps mux_avi mux_mp4 mux_asf mux_dummy mux_wav mux_mpjpeg])
1181   VLC_ADD_PLUGINS([packetizer_mpegvideo packetizer_h264])
1182   VLC_ADD_PLUGINS([packetizer_mpeg4video packetizer_mpeg4audio])
1183   VLC_ADD_PLUGINS([packetizer_copy])
1184
1185   VLC_ADD_PLUGINS([stream_out_dummy stream_out_standard stream_out_es stream_out_rtp stream_out_description vod_rtsp])
1186   VLC_ADD_PLUGINS([stream_out_duplicate stream_out_gather stream_out_display stream_out_transcode])
1187 #  VLC_ADD_PLUGINS([stream_out_transrate])
1188
1189   AC_DEFINE(ENABLE_SOUT, 1, Define if you want the stream output support)
1190 fi
1191
1192 dnl
1193 dnl HTTP daemon
1194 dnl
1195 AC_ARG_ENABLE(httpd,
1196   [  --enable-httpd          HTTP daemon (default enabled)])
1197 if test "${enable_httpd}" != "no"
1198 then
1199   AC_DEFINE(ENABLE_HTTPD, 1, Define if you want the HTTP dameon support)
1200 fi
1201
1202 dnl
1203 dnl VideoLAN manager
1204 dnl
1205 AC_ARG_ENABLE(vlm,
1206   [  --enable-vlm            VideoLAN manager (default enabled)])
1207 if test "${enable_vlm}" != "no"
1208 then
1209   AC_DEFINE(ENABLE_VLM, 1, Define if you want the VideoLAN manager support)
1210 fi
1211
1212 dnl
1213 dnl TLS/SSL
1214 dnl
1215 AC_ARG_ENABLE(gnutls,
1216   [  --enable-gnutls         gnutls TLS/SSL support (default disabled)])
1217 AS_IF([test "${enable_gnutls}" == "yes"], VLC_ADD_PLUGINS([gnutls]))
1218
1219
1220 dnl
1221 dnl  Input plugins
1222 dnl
1223
1224 AC_ARG_WITH(,[Input plugins:])
1225
1226 dnl
1227 dnl  live.com input
1228 dnl
1229 AC_ARG_ENABLE(livedotcom,
1230 [  --enable-livedotcom     live.com input plugin (default disabled)])
1231 if test "${enable_livedotcom}" = "yes"; then
1232   AC_ARG_WITH(livedotcom-tree,
1233     [    --with-livedotcom-tree=PATH live.com tree for static linking])
1234
1235   dnl
1236   dnl test for --with-livedotcom-tree
1237   dnl
1238   if test -z "${with_livedotcom_tree}"; then
1239     AC_LANG_PUSH(C++)
1240     CPPFLAGS_save="${CPPFLAGS}"
1241     CPPFLAGS_livedotcom="-I/usr/include/liveMedia -I/usr/include/groupsock -I/usr/include/BasicUsageEnvironment -I/usr/include/UsageEnvironment"
1242     CPPFLAGS="${CPPFLAGS} ${CPPFLAGS_livedotcom}"
1243     AC_CHECK_HEADERS(liveMedia.hh, [
1244       VLC_ADD_CXXFLAGS([livedotcom], [${CPPFLAGS_livedotcom}])
1245       AC_CHECK_LIB(liveMedia_pic, main, [
1246         # We have -lliveMedia_pic, build plugins
1247         VLC_ADD_PLUGINS([livedotcom])
1248         VLC_ADD_LDFLAGS([livedotcom], [-lliveMedia_pic -lgroupsock_pic -lBasicUsageEnvironment_pic -lUsageEnvironment_pic])
1249       ], [
1250         AC_CHECK_LIB(liveMedia, main, [
1251           # We only have -lliveMedia, do builtins
1252           VLC_ADD_BUILTINS([livedotcom])
1253           VLC_ADD_LDFLAGS([livedotcom], [-lliveMedia -lgroupsock -lBasicUsageEnvironment -lUsageEnvironment])
1254         ])
1255       ])
1256       if test "${SYS}" = "mingw32"; then
1257         # add ws2_32 for closesocket, select, recv
1258         VLC_ADD_LDFLAGS([livedotcom],[-lws2_32])
1259       fi
1260     ])
1261     CPPFLAGS="${CPPFLAGS_save}"
1262     AC_LANG_POP(C++)
1263   else
1264     AC_MSG_CHECKING(for liveMedia/libliveMedia.a in ${with_livedotcom_tree})
1265     real_livedotcom_tree="`cd ${with_livedotcom_tree} 2>/dev/null && pwd`"
1266     if test -z "${real_livedotcom_tree}"; then
1267       dnl  The given directory can't be found
1268       AC_MSG_RESULT(no)
1269       AC_MSG_ERROR([cannot cd to ${with_livedotcom_tree}])
1270     fi
1271     if test -f "${real_livedotcom_tree}/liveMedia/libliveMedia.a"; then
1272       AC_MSG_RESULT(${real_livedotcom_tree}/liveMedia/libliveMedia.a)
1273
1274       VLC_ADD_BUILTINS([livedotcom])
1275
1276       if test "${SYS}" = "mingw32"; then
1277         # add ws2_32 for closesocket, select, recv
1278         VLC_ADD_LDFLAGS([livedotcom],[-lws2_32])
1279       fi
1280
1281       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/liveMedia -lliveMedia])
1282       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/BasicUsageEnvironment -lBasicUsageEnvironment])
1283       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/groupsock -lgroupsock])
1284       VLC_ADD_LDFLAGS([livedotcom],[-L${real_livedotcom_tree}/UsageEnvironment -lUsageEnvironment])
1285
1286       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/BasicUsageEnvironment/include])
1287       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/groupsock/include])
1288       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/liveMedia/include])
1289       VLC_ADD_CXXFLAGS([livedotcom],[-I${real_livedotcom_tree}/UsageEnvironment/include ])
1290     else
1291       dnl  The given live.com wasn't built
1292       AC_MSG_RESULT(no)
1293       AC_MSG_ERROR([cannot find ${real_livedotcom_tree}/liveMedia/libliveMedia.a, make sure you compiled live.com in ${with_livedotcom_tree}])
1294     fi
1295   fi
1296 fi
1297
1298
1299 dnl
1300 dnl dvdread module: check for libdvdread
1301 dnl
1302 AC_ARG_ENABLE(dvdread,
1303 [  --enable-dvdread        dvdread input module (default disabled)])
1304 if test "${enable_dvdread}" != "no"
1305 then
1306   AC_ARG_WITH(dvdread,
1307   [    --with-dvdread=PATH    libdvdread headers and libraries])
1308   AC_ARG_WITH(dvdread-tree,
1309   [    --with-dvdread-tree=PATH libdvdread tree for static linking])
1310
1311   dnl Temporary hack (yeah, sure ;)
1312   if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
1313       VLC_ADD_LDFLAGS([dvdread],[-ldvdcss])
1314   fi
1315
1316   if test -z "${with_dvdread}"
1317   then
1318     if test -z "${with_dvdread_tree}"
1319     then
1320       AC_CHECK_HEADERS(dvdread/dvd_reader.h,
1321         [ VLC_ADD_PLUGINS([dvdread])
1322           VLC_ADD_LDFLAGS([dvdread],[-ldvdread ${LDFLAGS_dvdcss}])
1323         ],[
1324           if test -n "${enable_dvdread}"
1325           then
1326             AC_MSG_ERROR([cannot find libdvdread headers])
1327           fi
1328         ])
1329     else
1330       AC_MSG_CHECKING(for libdvdread.a in ${with_dvdread_tree})
1331       real_dvdread_tree="`cd ${with_dvdread_tree} 2>/dev/null && pwd`"
1332       if test -z "${real_dvdread_tree}"
1333       then
1334         dnl  The given directory can't be found
1335         AC_MSG_RESULT(no)
1336         AC_MSG_ERROR([cannot cd to ${with_dvdread_tree}])
1337       fi
1338       if test -f "${real_dvdread_tree}/dvdread/.libs/libdvdread.a"
1339       then
1340         dnl  Use a custom libdvdread
1341         AC_MSG_RESULT(${real_dvdread_tree}/dvdread/.libs/libdvdread.a)
1342         VLC_ADD_BUILTINS([dvdread])
1343         VLC_ADD_LDFLAGS([dvdread],[-L${real_dvdread_tree}/dvdread/.libs -ldvdread ${LDFLAGS_dvdcss}])
1344         VLC_ADD_CPPFLAGS([dvdread],[-I${real_dvdread_tree}])
1345       else
1346         dnl  The given libdvdread wasn't built
1347         AC_MSG_RESULT(no)
1348         AC_MSG_ERROR([cannot find ${real_dvdread_tree}/dvdread/.libs/libdvdread.a, make sure you compiled libdvdread in ${with_dvdread_tree}])
1349       fi
1350     fi
1351   else
1352     AC_MSG_CHECKING(for dvdread headers in ${with_dvdread})
1353     if test -f ${with_dvdread}/include/dvdread/dvd_reader.h
1354     then
1355       dnl  Use ${with_dvdread}/include/dvdread/dvd_reader.h
1356       AC_MSG_RESULT(yes)
1357       VLC_ADD_PLUGINS([dvdread])
1358       VLC_ADD_LDFLAGS([dvdread],[-L${with_dvdread}/lib -ldvdread ${LDFLAGS_dvdcss}])
1359       VLC_ADD_CPPFLAGS([dvdread],[-I${with_dvdread}/include])
1360     else
1361       dnl  No libdvdread could be found, sorry
1362       AC_MSG_RESULT(no)
1363       AC_MSG_ERROR([cannot find ${with_dvdread}/include/dvdread/dvd_reader.h])
1364     fi
1365   fi
1366 fi
1367
1368 dnl
1369 dnl  libdvdnav plugin
1370 dnl
1371 AC_ARG_ENABLE(dvdnav,
1372   [  --enable-dvdnav         dvdnav input module (default enabled)])
1373 if test "${enable_dvdnav}" != "no"
1374 then
1375   dnl Same hack than dvdread
1376   if test "${SYS}" = "mingw32" || test "${SYS}" = "darwin" || test "${SYS}" = "beos" ; then
1377       VLC_ADD_LDFLAGS([dvdnav],[-ldvdcss])
1378   fi
1379
1380   DVDNAV_PATH="${PATH}"
1381   AC_ARG_WITH(dvdnav-config-path,
1382     [    --with-dvdnav-config-path=PATH dvdnav-config path (default search in \$PATH)],
1383     [ if test "${with_dvdnav_config_path}" != "no"
1384       then
1385         DVDNAV_PATH="${with_dvdnav_config_path}:${PATH}"
1386       fi ])
1387   AC_PATH_PROG(DVDNAV_CONFIG, dvdnav-config, no, ${DVDNAV_PATH})
1388   if test "${DVDNAV_CONFIG}" != "no"
1389   then
1390     VLC_ADD_PLUGINS([dvdnav])
1391     VLC_ADD_CFLAGS([dvdnav],[`${DVDNAV_CONFIG} --cflags`])
1392     VLC_ADD_LDFLAGS([dvdnav],[`${DVDNAV_CONFIG} --libs`])
1393   fi
1394 fi
1395
1396 dnl
1397 dnl  Windows DirectShow access module
1398 dnl
1399 AC_ARG_ENABLE(dshow,
1400   [  --enable-dshow          Win32 DirectShow support (default enabled on Win32)])
1401 if test "${enable_dshow}" != "no"
1402 then
1403   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
1404   then
1405       AC_CHECK_HEADERS(dshow.h,
1406       [ VLC_ADD_PLUGINS([dshow])
1407         VLC_ADD_CXXFLAGS([dshow],[])
1408         VLC_ADD_LDFLAGS([dshow],[-lole32 -loleaut32]) ])
1409   fi
1410 fi
1411
1412 dnl
1413 dnl  libdvbpsi ts demux/mux
1414 dnl
1415 AC_ARG_ENABLE(dvbpsi,
1416 [  --enable-dvbpsi         dvbpsi ts mux and demux module (default enabled)])
1417 if test "${enable_dvbpsi}" != "no"
1418 then
1419   AC_ARG_WITH(dvbpsi,
1420   [    --with-dvbpsi=PATH    libdvbpsi headers and libraries])
1421   AC_ARG_WITH(dvbpsi,
1422   [    --with-dvbpsi-tree=PATH libdvbpsi tree for static linking])
1423   case "${with_dvbpsi}" in
1424   ""|yes)
1425     if test -z "${with_dvbpsi_tree}"
1426     then
1427       AC_CHECK_HEADERS(dvbpsi/dr.h,
1428         [ VLC_ADD_PLUGINS([mux_ts ts])
1429           VLC_ADD_LDFLAGS([mux_ts ts],[-ldvbpsi]) ],
1430         [  AC_MSG_WARN([cannot find libdvbpsi headers]) ],
1431         [#if defined( HAVE_STDINT_H )
1432 #   include <stdint.h>
1433 #elif defined( HAVE_INTTYPES_H )
1434 #   include <inttypes.h>
1435 #endif
1436 #include <dvbpsi/dvbpsi.h>
1437 #include <dvbpsi/descriptor.h>
1438 #include <dvbpsi/pat.h>
1439 #include <dvbpsi/pmt.h>])
1440     else
1441       AC_MSG_CHECKING(for libdvbpsi.a in ${with_dvbpsi_tree})
1442       real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
1443       if test -z "${real_dvbpsi_tree}"
1444       then
1445         dnl  The given directory can't be found
1446         AC_MSG_RESULT(no)
1447         AC_MSG_ERROR([cannot cd to ${with_dvbpsi_tree}])
1448       fi
1449       if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
1450       then
1451         dnl  Use a custom libdvbpsi
1452         AC_MSG_RESULT(${real_dvbpsi_tree}/src/.libs/libdvbpsi.a)
1453         VLC_ADD_BUILTINS([mux_ts ts])
1454         VLC_ADD_CPPFLAGS([mux_ts ts],[-I${real_dvbpsi_tree}/src])
1455         VLC_ADD_LDFLAGS([mux_ts ts],[-L${real_dvbpsi_tree}/src/.libs -ldvbpsi])
1456       else
1457         dnl  The given libdvbpsi wasn't built
1458         AC_MSG_RESULT(no)
1459         AC_MSG_ERROR([cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}])
1460       fi
1461     fi
1462   ;;
1463   no)
1464     dnl  Compile without dvbpsi
1465   ;;
1466   *)
1467     AC_MSG_CHECKING(for dvbpsi headers in ${with_dvbpsi})
1468     if test -z "${with_dvbpsi}"
1469     then
1470       LDFLAGS_test=""
1471       CPPFLAGS_test=""
1472     else
1473       LDFLAGS_test="-L${with_dvbpsi}/lib"
1474       CPPFLAGS_test="-I${with_dvbpsi}/include"
1475     fi
1476     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test}"
1477     AC_CHECK_HEADERS([dvbpsi/dr.h],[
1478       VLC_ADD_PLUGINS([mux_ts ts])
1479       VLC_ADD_CPPFLAGS([mux_ts ts],[${CPPFLAGS_test}])
1480       VLC_ADD_LDFLAGS([mux_ts ts],[${LDFLAGS_test} -ldvbpsi])
1481
1482     ],[
1483       if test -n "${enable_dvbpsi}"
1484       then
1485         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])
1486       fi
1487     ])
1488     CPPFLAGS="${CPPFLAGS_save}"
1489   ;;
1490   esac
1491 fi
1492
1493 dnl
1494 dnl  Video4Linux plugin
1495 dnl
1496 AC_ARG_ENABLE(v4l,
1497   [  --enable-v4l            Video4Linux input support (default disabled)])
1498 if test "${enable_v4l}" = "yes"
1499 then
1500   AC_ARG_WITH(v4l,
1501     [    --with-v4l=PATH       path to a v4l-enabled kernel tree],[],[])
1502   if test "${with_v4l}" != "no" -a -n "${with_v4l}"
1503   then
1504     VLC_ADD_CPPFLAGS([v4l],[-I${with_v4l}/include])
1505   fi
1506
1507   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l}"
1508   AC_CHECK_HEADERS(linux/videodev.h, [
1509     VLC_ADD_PLUGINS([v4l])
1510   ],[])
1511   CPPFLAGS="${CPPFLAGS_save}"
1512 fi
1513
1514 dnl
1515 dnl  special access module for Hauppauge PVR cards
1516 dnl
1517 AC_ARG_ENABLE(pvr,
1518   [  --enable-pvr            PVR cards access module (default disabled)])
1519 if test "${enable_pvr}" = "yes"
1520 then
1521   VLC_ADD_PLUGINS([pvr])
1522 fi
1523
1524 dnl
1525 dnl  VCDX and CDDAX modules
1526 dnl
1527 AC_ARG_ENABLE(libcdio,
1528   [  --enable-libcdio        CDDA support via libcdio (default enabled)])
1529  
1530 AC_ARG_ENABLE(libcddb,
1531   [  --enable-libcddb        CDDB support for CDDAX (default enabled)])
1532  
1533 dnl AC_ARG_ENABLE(vcdx,
1534 dnl   [  --enable-vcdx           VCD support with Navigation (default enabled)])
1535  
1536 AC_ARG_ENABLE(cdda,           
1537   [  --enable-cdda           CDDA plugin support (default enabled)])
1538  
1539 AC_ARG_ENABLE(cddax,
1540   [  --enable-cddax          CDDAX plugin support (default enabled)])
1541  
1542 if test "${enable_cddax}" != "no"
1543 then
1544   PKG_CHECK_MODULES(LIBCDIO, libcdio >= 0.71,
1545    [enable_cddax="no"
1546     AC_DEFINE(HAVE_CDDAX, [], [Define for the CD-DA plugin using libcdio])
1547     VLC_ADD_LDFLAGS([cddax],[$LIBCDIO_LIBS])
1548     VLC_ADD_CFLAGS([cddax],[$LIBCDIO_CFLAGS])
1549     VLC_ADD_PLUGINS([cddax])], 
1550     [AC_MSG_WARN(libcdio library not found)
1551     HAVE_CDDAX=no])
1552
1553   if test "$enable_libcddb" != "no"; then
1554     PKG_CHECK_MODULES(LIBCDDB, libcddb >= 0.9.5, [
1555       HAVE_LIBCDDB=yes 
1556       AC_DEFINE(HAVE_LIBCDDB, [], [Define this if you have libcddb installed])
1557       VLC_ADD_LDFLAGS([cddax],[$LIBCDDB_LIBS])
1558       VLC_ADD_CFLAGS([cddax],[$LIBCDDB_CFLAGS])
1559       ],
1560       [AC_MSG_WARN(new enough libcddb not found. CDDB access disabled) 
1561       HAVE_LIBCDDB=no])
1562   fi
1563  
1564 dnl   if test "${enable_vcdx}" != "no"
1565 dnl   then
1566 dnl     PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.21,
1567 dnl      [enable_vcd="no"
1568 dnl       AC_DEFINE(HAVE_VCDX, [], 
1569 dnl       [Define for the VCD plugin using libcdio/libvcdinfo])
1570 dnl       VLC_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
1571 dnl       VLC_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
1572 dnl       VLC_ADD_PLUGINS([vcdx])], 
1573 dnl      [AC_MSG_WARN(vcdinfo library not found)
1574 dnl      HAVE_VCDX=no])
1575 dnl   fi
1576 fi
1577
1578 dnl
1579 dnl  VCD module
1580 dnl
1581 AC_ARG_ENABLE(vcd,
1582   [  --enable-vcd            VCD support for Linux, FreeBSD, MacOS X and Win32 (default enabled)])
1583
1584 if test "${enable_vcd}" != "no"
1585 then
1586   AC_MSG_CHECKING(for cdrom_msf0 in linux/cdrom.h)
1587   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
1588     AC_MSG_RESULT(yes)
1589     VLC_ADD_PLUGINS([vcd cdda])
1590   ],[
1591     AC_MSG_RESULT(no)
1592   ])
1593
1594   AC_MSG_CHECKING(for scsireq in sys/scsiio.h)
1595   AC_EGREP_HEADER(scsireq,sys/scsiio.h,[
1596     AC_MSG_RESULT(yes)
1597     VLC_ADD_PLUGINS([vcd cdda])
1598     AC_DEFINE(HAVE_SCSIREQ_IN_SYS_SCSIIO_H, 1, For NetBSD VCD support)
1599   ],[
1600     AC_MSG_RESULT(no)
1601   ])
1602
1603   AC_MSG_CHECKING(for ioc_toc_header in sys/cdio.h)
1604   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
1605     AC_MSG_RESULT(yes)
1606     VLC_ADD_PLUGINS([vcd cdda])
1607     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
1608   ],[
1609     AC_MSG_RESULT(no)
1610   ])
1611
1612   if test "${SYS}" = "bsdi" -o "${SYS}" = "mingw32"
1613   then
1614     VLC_ADD_PLUGINS([vcd cdda])
1615   fi
1616
1617   if test "${SYS}" = "darwin"
1618   then
1619     VLC_ADD_PLUGINS([vcd cdda])
1620     VLC_ADD_LDFLAGS([vcd vcdx cdda],[-framework IOKit -framework CoreFoundation])
1621   fi
1622 fi
1623
1624 dnl
1625 dnl  Satellite input module
1626 dnl
1627 AC_ARG_ENABLE(satellite,
1628   [  --enable-satellite      satellite card support (default disabled)],
1629   [ if test "${enable_satellite}" = "yes"
1630     then
1631       AC_DEFINE(HAVE_SATELLITE, [], 
1632       [Define for the VCD plugin using libcdio/libvcdinfo])
1633       VLC_ADD_PLUGINS([satellite])
1634     fi])
1635
1636 dnl
1637 dnl  DVB-S/DVB-T/DVB-C satellite/teresterial/cable input using v4l2
1638 dnl
1639 AC_ARG_ENABLE(dvb,
1640   [  --enable-dvb            DVB-S/T/C card support (default disabled)])
1641
1642 if test "${enable_dvb}" = "yes"
1643 then
1644   AC_ARG_WITH(dvb,
1645   [    --with-dvb=PATH       path to a dvb- and v4l2-enabled kernel tree],[],[])
1646   if test "${with_dvb}" != "no" -a -n "${with_dvb}"
1647   then
1648     VLC_ADD_CFLAGS([dvb],[-I${with_dvb}/include])
1649   fi
1650   CPPFLAGS="${CPPFLAGS_save} -I${with_dvb}/include"
1651   AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [
1652     VLC_ADD_PLUGINS([dvb])
1653   ],[])
1654   CPPFLAGS="${CPPFLAGS_save}"
1655 fi
1656
1657 dnl
1658 dnl  Screen capture module
1659 dnl
1660 AC_ARG_ENABLE(screen,
1661   [  --enable-screen         Screen capture support (default enabled)])
1662 if test "${enable_screen}" != "no"; then
1663   if test "${SYS}" = "darwin"; then
1664     AC_CHECK_HEADERS(ApplicationServices/ApplicationServices.h, [
1665       VLC_ADD_PLUGINS([screen])
1666       VLC_ADD_LDFLAGS([screen],[-framework ApplicationServices])
1667     ])
1668   elif test "${SYS}" = "mingw32"; then
1669     VLC_ADD_PLUGINS([screen])
1670     VLC_ADD_LDFLAGS([screen],[-lgdi32])
1671   elif test "${SYS}" = "beos"; then
1672     VLC_ADD_PLUGINS([screen])
1673     VLC_ADD_CXXFLAGS([screen],[])
1674     VLC_ADD_LDFLAGS([screen],[-lbe])
1675   else
1676     CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
1677     AC_CHECK_HEADERS(X11/Xlib.h, [
1678       VLC_ADD_PLUGINS([screen])
1679       VLC_ADD_LDFLAGS([screen],[-L${x_libraries} -lX11 -lXext])
1680       VLC_ADD_CPPFLAGS([screen],[-I${x_includes}])
1681     ])
1682     CPPFLAGS="${CPPFLAGS_save}"
1683   fi
1684 fi
1685
1686 dnl
1687 dnl  ipv6 plugin - not for QNX yet
1688 dnl
1689 if test "${SYS}" != "nto" && test "${SYS}" != "mingw32"
1690 then
1691   have_ipv6=false
1692   AC_CHECK_FUNCS(inet_pton,[have_ipv6=:],[
1693     AC_CHECK_LIB(resolv,inet_pton,
1694       [have_ipv6=:
1695        VLC_ADD_LDFLAGS([ipv6],[-lresolv])])
1696   ])
1697   AC_MSG_CHECKING(for sockaddr_in6 in netinet/in.h)
1698   AC_EGREP_HEADER(sockaddr_in6,netinet/in.h,
1699     [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no) have_ipv6=false])
1700   if ${have_ipv6}; then
1701     VLC_ADD_PLUGINS([ipv6])
1702   fi
1703 fi
1704 if test "${SYS}" = "mingw32"
1705 then
1706   AC_MSG_CHECKING(for getaddrinfo in ws2tcpip.h)
1707   AC_EGREP_HEADER(addrinfo,ws2tcpip.h,[AC_MSG_RESULT(yes)
1708     VLC_ADD_PLUGINS([ipv6])],[AC_MSG_RESULT(no)])
1709 fi
1710
1711 dnl
1712 dnl  ogg demux plugin
1713 dnl
1714 AC_ARG_ENABLE(ogg,
1715   [  --enable-ogg            Ogg demux support (default enabled)])
1716 if test "${enable_ogg}" != "no"
1717 then
1718   AC_CHECK_HEADERS(ogg/ogg.h, [
1719     AC_CHECK_LIB( ogg, oggpack_read, [
1720       VLC_ADD_PLUGINS([ogg mux_ogg])
1721       VLC_ADD_LDFLAGS([ogg mux_ogg],[-logg])])
1722    ],[])
1723 fi
1724
1725 dnl
1726 dnl  matroska demux plugin
1727 dnl
1728 AC_ARG_ENABLE(mkv,
1729   [  --enable-mkv            Matroska demux support (default enabled)])
1730 if test "${enable_mkv}" != "no"; then
1731   AC_LANG_PUSH(C++)
1732   AC_CHECK_HEADERS(ebml/EbmlVersion.h, [
1733     AC_CHECK_HEADERS(matroska/KaxVersion.h, [
1734       AC_CHECK_HEADERS(matroska/KaxAttachments.h)
1735       VLC_ADD_CXXFLAGS([mkv],[])
1736       AC_CHECK_LIB(ebml_pic, main, [
1737         # We have ebml_pic, that's good, we can build an mkv.so plugin !
1738         VLC_ADD_PLUGINS([mkv])
1739         VLC_ADD_LDFLAGS([mkv],[-lmatroska_pic -lebml_pic])
1740       ], [
1741         AC_CHECK_LIB(ebml, main, [
1742           # We only have libebml, make mkv.a a builtin
1743           VLC_ADD_BUILTINS([mkv])
1744           VLC_ADD_LDFLAGS([mkv],[-lmatroska -lebml])
1745         ])
1746       ])
1747     ])
1748   ])
1749   AC_LANG_POP(C++)
1750 fi
1751
1752 dnl
1753 dnl  modplug demux plugin
1754 dnl
1755 AC_ARG_ENABLE(mod,
1756   [  --enable-mod            Mod demux support (default enabled)])
1757 if test "${enable_mod}" != "no"
1758 then
1759   AC_CHECK_HEADERS(libmodplug/modplug.h, [
1760     VLC_ADD_PLUGINS([mod])
1761     VLC_ADD_CXXFLAGS([mod],[])
1762     VLC_ADD_LDFLAGS([mod],[-lmodplug])])
1763 fi
1764
1765 dnl
1766 dnl  Codec plugins
1767 dnl
1768
1769 AC_ARG_WITH(,[Codec plugins:])
1770
1771 dnl
1772 dnl  mad plugin
1773 dnl
1774 AC_ARG_ENABLE(mad,
1775   [  --enable-mad            libmad module (default enabled)])
1776 if test "${enable_mad}" != "no"
1777 then
1778   AC_ARG_WITH(mad,
1779     [    --with-mad=PATH       path to libmad],[],[])
1780   if test "${with_mad}" != "no" -a -n "${with_mad}"
1781   then
1782     VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
1783     VLC_ADD_LDFLAGS([mpgatofixed32],[-L${with_mad}/lib])
1784   fi
1785
1786   AC_ARG_WITH(mad-tree,
1787     [    --with-mad-tree=PATH  mad tree for static linking],[],[])
1788   if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
1789   then
1790     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
1791     if test -z "${real_mad_tree}"
1792     then
1793       dnl  The given directory can't be found
1794       AC_MSG_RESULT(no)
1795       AC_MSG_ERROR([${with_mad_tree} directory doesn't exist])
1796     fi
1797     dnl  Use a custom libmad
1798     AC_MSG_CHECKING(for mad.h in ${real_mad_tree})
1799     if test -f ${real_mad_tree}/mad.h
1800     then
1801       AC_MSG_RESULT(yes)
1802       VLC_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}])
1803       VLC_ADD_LDFLAGS([mpgatofixed32],[-L${real_mad_tree}/.libs])
1804       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
1805       AC_CHECK_LIB(mad, mad_bit_init, [
1806         VLC_ADD_BUILTINS([mpgatofixed32])
1807         VLC_ADD_LDFLAGS([mpgatofixed32],[-lmad])
1808         ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ])
1809       ],[])
1810       LDFLAGS="${LDFLAGS_save}"
1811     else
1812       AC_MSG_RESULT(no)
1813       AC_MSG_ERROR([the specified tree doesn't have mad.h])
1814     fi
1815   else
1816     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}"
1817     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
1818     AC_CHECK_HEADERS(mad.h, ,
1819       [ 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.]) ])
1820     AC_CHECK_LIB(mad, mad_bit_init, [
1821       VLC_ADD_PLUGINS([mpgatofixed32])
1822       VLC_ADD_LDFLAGS([mpgatofixed32],[-lmad])],
1823       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
1824     CPPFLAGS="${CPPFLAGS_save}"
1825     LDFLAGS="${LDFLAGS_save}"
1826   fi
1827 fi
1828
1829 dnl
1830 dnl   libid3tag support (FIXME!!! doesn't work with new input)
1831 dnl
1832 AC_CHECK_HEADERS(id3tag.h, [
1833   AC_CHECK_HEADERS(zlib.h, [
1834     VLC_ADD_LDFLAGS([id3tag],[-lid3tag -lz])
1835     VLC_ADD_PLUGINS([id3tag])]) ])
1836
1837 dnl
1838 dnl  ffmpeg decoder/demuxer plugin
1839 dnl
1840 AC_ARG_ENABLE(ffmpeg,
1841 [  --enable-ffmpeg         ffmpeg codec (default enabled)])
1842 if test "${enable_ffmpeg}" != "no"
1843 then
1844   FFMPEG_PATH="${PATH}"
1845   AC_ARG_WITH(ffmpeg-config-path,
1846     [    --with-ffmpeg-config-path=PATH ffmpeg-config path (default search in \$PATH)],
1847     [ if test "${with_ffmpeg_config_path}" != "no"
1848       then
1849         FFMPEG_PATH="${with_ffmpeg_config_path}:${PATH}"
1850       fi ])
1851   AC_PATH_PROG(FFMPEG_CONFIG, ffmpeg-config, no, ${FFMPEG_PATH})
1852   if test "${FFMPEG_CONFIG}" != "no"
1853   then
1854     AC_CHECK_HEADERS(ffmpeg/avcodec.h)
1855     AC_CHECK_HEADERS(postproc/postprocess.h)
1856     VLC_ADD_PLUGINS([ffmpeg])
1857     VLC_ADD_CFLAGS([ffmpeg],[`${FFMPEG_CONFIG} --cflags`])
1858     VLC_ADD_LDFLAGS([ffmpeg],[`${FFMPEG_CONFIG} --plugin-libs avcodec avformat postproc`])
1859   else
1860     AC_ARG_WITH(ffmpeg-mp3lame,
1861       [    --with-ffmpeg-mp3lame   if ffmpeg has been compiled with mp3lame support],
1862       [
1863         VLC_ADD_LDFLAGS([ffmpeg],[-lmp3lame]) ])
1864
1865     AC_ARG_WITH(ffmpeg-faac,
1866       [    --with-ffmpeg-faac      if ffmpeg has been compiled with faac support],
1867       [
1868         VLC_ADD_LDFLAGS([ffmpeg],[-lfaac]) ])
1869
1870     AC_ARG_WITH(ffmpeg-dts,
1871       [    --with-ffmpeg-dts   if ffmpeg has been compiled with dts support],
1872       [
1873         VLC_ADD_LDFLAGS([ffmpeg],[-ldts]) ])
1874
1875     AC_ARG_WITH(ffmpeg-zlib,
1876       [    --with-ffmpeg-zlib   if ffmpeg has been compiled with zlib support],
1877       [
1878         VLC_ADD_LDFLAGS([ffmpeg],[-lz]) ])
1879
1880     AC_ARG_WITH(ffmpeg-tree,
1881       [    --with-ffmpeg-tree=PATH ffmpeg tree for static linking])
1882
1883     dnl
1884     dnl test for !(--with-ffmpeg-tree)
1885     dnl
1886     if test "${with_ffmpeg_tree}" = "no" -o -z "${with_ffmpeg_tree}"; then
1887       CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}"
1888       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
1889       AC_CHECK_HEADERS(ffmpeg/avcodec.h, [], [AC_MSG_ERROR([Missing header file ffmpeg/avcodec.h.])] )
1890       AC_CHECK_HEADERS(postproc/postprocess.h, [], [AC_MSG_ERROR([Missing header file postproc/postprocess.h.])] )
1891       AC_CHECK_LIB(avcodec, avcodec_init, [
1892         VLC_ADD_BUILTINS([ffmpeg])
1893         VLC_ADD_LDFLAGS([ffmpeg],[-lavcodec])],
1894          [ 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.]) ])
1895       AC_CHECK_LIB(avformat, av_open_input_stream, [
1896         AC_DEFINE(HAVE_LIBAVFORMAT, 1,
1897         [Define if you have ffmpeg's libavformat.])
1898         VLC_ADD_LDFLAGS([ffmpeg],[-lavformat -lz]) ], [], [-lavcodec -lz])
1899       LDFLAGS="${LDFLAGS_save}"
1900       CPPFLAGS="${CPPFLAGS_save}"
1901     fi
1902
1903     dnl
1904     dnl test for --with-ffmpeg-tree
1905     dnl
1906     if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
1907       AC_MSG_CHECKING(for libavcodec.a in ${with_ffmpeg_tree})
1908       real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
1909       if test -z "${real_ffmpeg_tree}"; then
1910         dnl  The given directory can't be found
1911         AC_MSG_RESULT(no)
1912         AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
1913       fi
1914       if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
1915         dnl  The given libavcodec wasn't built
1916         AC_MSG_RESULT(no)
1917         AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}])
1918       fi
1919       if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
1920         dnl  The given libavcodec wasn't built with --enable-pp
1921         AC_MSG_RESULT(no)
1922         AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
1923       fi
1924       dnl  Use a custom libffmpeg
1925       AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodec.a)
1926
1927       if fgrep -s "CONFIG_ZLIB=yes" "${real_ffmpeg_tree}/config.mak"; then
1928         if test "${with_ffmpeg_zlib}" != "yes"; then
1929           VLC_ADD_LDFLAGS([ffmpeg],[-lz])
1930         fi
1931       fi
1932       if fgrep -s "CONFIG_MP3LAME=yes" "${real_ffmpeg_tree}/config.mak"; then
1933         if test "${with_ffmpeg_mp3lame}" != "yes"; then
1934           VLC_ADD_LDFLAGS([ffmpeg],[-lmp3lame])
1935         fi
1936       fi
1937       if fgrep -s "CONFIG_FAAC=yes" "${real_ffmpeg_tree}/config.mak"; then
1938         if test "${with_ffmpeg_faac}" != "yes"; then
1939           VLC_ADD_LDFLAGS([ffmpeg],[-lfaac])
1940         fi
1941       fi
1942       if fgrep -s "CONFIG_DTS=yes" "${real_ffmpeg_tree}/config.mak"; then
1943         if test "${with_ffmpeg_dts}" != "yes"; then
1944           VLC_ADD_LDFLAGS([ffmpeg],[-ldts])
1945         fi
1946       fi
1947       if fgrep -s "CONFIG_VORBIS=yes" "${real_ffmpeg_tree}/config.mak"; then
1948         VLC_ADD_LDFLAGS([ffmpeg],[-lvorbis -lvorbisenc])
1949       fi
1950       if fgrep -s "CONFIG_FAAD=yes" "${real_ffmpeg_tree}/config.mak"; then
1951         VLC_ADD_LDFLAGS([ffmpeg],[-lfaad])
1952       fi
1953       if fgrep -s "CONFIG_XVID=yes" "${real_ffmpeg_tree}/config.mak"; then
1954         VLC_ADD_LDFLAGS([ffmpeg],[-lxvidcore])
1955       fi
1956
1957       VLC_ADD_BUILTINS([ffmpeg])
1958       VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavcodec ${real_ffmpeg_tree}/libavcodec/libavcodec.a])
1959       VLC_ADD_CPPFLAGS([ffmpeg],[-I${real_ffmpeg_tree}/libavcodec])
1960
1961       if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
1962         AC_DEFINE(HAVE_LIBAVFORMAT, 1, [Define if you have ffmpeg's libavformat.])
1963         VLC_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavformat ${real_ffmpeg_tree}/libavformat/libavformat.a])
1964         VLC_ADD_CPPFLAGS([ffmpeg],[-I${real_ffmpeg_tree}/libavformat])
1965       fi
1966     fi
1967   fi
1968 fi
1969
1970 dnl
1971 dnl  ffmpeg decoder/demuxer plugin
1972 dnl
1973 AC_ARG_ENABLE(ffmpegaltivec,
1974 [  --enable-ffmpegaltivec  ffmpegaltivec codec (DO NOT USE)])
1975 if test "${enable_ffmpegaltivec}" == "yes"
1976 then
1977   if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}"; then
1978     AC_MSG_CHECKING(for libavcodecaltivec.a in ${with_ffmpeg_tree})
1979     real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
1980     if test -z "${real_ffmpeg_tree}"; then
1981       dnl  The given directory can't be found
1982       AC_MSG_RESULT(no)
1983       AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
1984     fi
1985     if ! test -f "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then
1986       dnl  The given libavcodecaltivec wasn't built
1987       AC_MSG_RESULT(no)
1988       AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a, make sure you compiled libavcodecaltivec in ${with_ffmpeg_tree}])
1989     fi
1990     if ! fgrep -s "pp_get_context" "${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a"; then
1991       dnl  The given libavcodecaltivec wasn't built with --enable-pp
1992       AC_MSG_RESULT(no)
1993       AC_MSG_ERROR([${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a was not compiled with postprocessing support, make sure you configured ffmpeg with --enable-pp])
1994     fi
1995     dnl  Use a custom libffmpeg
1996     AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodecaltivec.a)
1997     VLC_ADD_BUILTINS([ffmpegaltivec])
1998     VLC_ADD_LDFLAGS([ffmpegaltivec],[-L${real_ffmpeg_tree}/libavcodec -lavcodecaltivec])
1999     VLC_ADD_CPPFLAGS([ffmpeg],[-DNO_ALTIVEC_IN_FFMPEG])
2000     VLC_ADD_CPPFLAGS([ffmpegaltivec],[-I${real_ffmpeg_tree}/libavcodec -I${real_ffmpeg_tree}/libavformat])
2001
2002     if test -f "${real_ffmpeg_tree}/libavformat/libavformat.a"; then
2003       AC_DEFINE(HAVE_LIBAVFORMAT, 1, [Define if you have ffmpeg's libavformat.])
2004       VLC_ADD_LDFLAGS([ffmpegaltivec],[-L${real_ffmpeg_tree}/libavformat -lavformataltivec -lz])
2005       VLC_ADD_CPPFLAGS([ffmpegaltivec],[-I${real_ffmpeg_tree}/libavformat])
2006     fi
2007   fi
2008 fi
2009
2010 dnl
2011 dnl  faad decoder plugin
2012 dnl
2013 AC_ARG_ENABLE(faad,
2014 [  --enable-faad           faad codec (default disabled)])
2015 if test "${enable_faad}" = "yes"
2016 then
2017   AC_ARG_WITH(faad-tree,
2018   [    --with-faad-tree=PATH faad tree for static linking])
2019   if test -n "${with_faad_tree}"
2020   then
2021     AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
2022     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
2023     if test -z "${real_faad_tree}"
2024     then
2025       dnl  The given directory can't be found
2026       AC_MSG_RESULT(no)
2027       AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
2028     fi
2029     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
2030     then
2031       dnl  Use a custom faad
2032       AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
2033       VLC_ADD_BUILTINS([faad])
2034       VLC_ADD_LDFLAGS([faad],[${real_faad_tree}/libfaad/.libs/libfaad.a])
2035       VLC_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
2036     else
2037       dnl  The given libfaad wasn't built
2038       AC_MSG_RESULT(no)
2039       AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
2040     fi
2041   else
2042     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
2043     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_faad}"
2044     AC_CHECK_HEADERS(faad.h, ,
2045       [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ])
2046     AC_CHECK_LIB(faad, faacDecOpen, [
2047       VLC_ADD_PLUGINS([faad])
2048       VLC_ADD_LDFLAGS([faad],[-lfaad]) ],
2049       AC_CHECK_LIB(faad, NeAACDecOpen, [
2050         VLC_ADD_PLUGINS([faad])
2051         VLC_ADD_LDFLAGS([faad],[-lfaad]) ],
2052         [ AC_MSG_ERROR([Cannot find libfaad library...]) ]))
2053     LDFLAGS="${LDFLAGS_save}"
2054     CPPFLAGS="${CPPFLAGS_save}"
2055   fi
2056 fi
2057
2058 dnl
2059 dnl toolame encoder plugin
2060 dnl
2061 AC_ARG_ENABLE(toolame,
2062 [  --enable-toolame        toolame codec (default disabled)])
2063 if test "${enable_toolame}" = "yes"
2064 then
2065   AC_ARG_WITH(toolame-tree,
2066   [    --with-toolame-tree=PATH toolame tree for static linking])
2067   if test -n "${with_toolame_tree}"
2068   then
2069     AC_MSG_CHECKING(for libtoolame.a in ${with_toolame_tree})
2070     real_toolame_tree="`cd ${with_toolame_tree} 2>/dev/null && pwd`"
2071     if test -z "${real_toolame_tree}"
2072     then
2073       dnl  The given directory can't be found
2074       AC_MSG_RESULT(no)
2075       AC_MSG_ERROR([cannot cd to ${with_toolame_tree}])
2076     fi
2077     if test -f "${real_toolame_tree}/libtoolame/libtoolame.a"
2078     then
2079       dnl  Use a custom toolame
2080       AC_MSG_RESULT(${real_toolame_tree}/libtoolame/libtoolame.a)
2081       VLC_ADD_BUILTINS([toolame])
2082       VLC_ADD_LDFLAGS([toolame],[${real_faad_tree}/libtoolame/libtoolame.a])
2083       VLC_ADD_CPPFLAGS([toolame],[-I${real_toolame_tree}/libtoolame])
2084     else
2085       dnl  The given libtoolame wasn't built
2086       AC_MSG_RESULT(no)
2087       AC_MSG_ERROR([cannot find ${real_toolame_tree}/libtoolame/libtoolame.a, make sure you compiled libtoolame in ${with_toolame_tree}])
2088     fi
2089   else
2090     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_toolame}"
2091     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_toolame}"
2092     AC_CHECK_HEADERS(toolame.h, ,
2093       [ AC_MSG_ERROR([Cannot find development header for libtoolame...]) ])
2094     AC_CHECK_LIB(toolame, toolame_init, [
2095       VLC_ADD_PLUGINS([toolame])
2096       VLC_ADD_LDFLAGS([toolame],[-ltoolame]) ],
2097         [ AC_MSG_ERROR([Cannot find libtoolame library...]) ])
2098     LDFLAGS="${LDFLAGS_save}"
2099     CPPFLAGS="${CPPFLAGS_save}"
2100   fi
2101 fi
2102
2103 dnl
2104 dnl  QuickTime plugin
2105 dnl
2106 AC_ARG_ENABLE(quicktime,
2107   [  --enable-quicktime      QuickTime module (default enabled on MacOS X)])
2108 if test "${enable_quicktime}" != "no" &&
2109   (test "${SYS}" = "darwin" || test "${enable_quicktime}" = "yes")
2110 then
2111   if test "${SYS}" = "mingw32"; then
2112     VLC_ADD_BUILTINS([quicktime])
2113   else
2114   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
2115     [ VLC_ADD_BUILTINS([quicktime])
2116       VLC_ADD_LDFLAGS([quicktime],[-framework QuickTime -framework Carbon])
2117     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
2118   fi
2119 fi
2120
2121 dnl
2122 dnl MP4 module
2123 dnl
2124 AC_CHECK_HEADERS(zlib.h, [
2125   VLC_ADD_LDFLAGS([mp4 skins2 sap mkv],[-lz])
2126 ] )
2127
2128 AC_CHECK_HEADERS(sysfs/libsysfs.h, [
2129   VLC_ADD_LDFLAGS([mp4 mkv],[-lsysfs])
2130 ] )
2131
2132 dnl
2133 dnl skins2 module
2134 dnl
2135 AC_CHECK_HEADERS(libtar.h, [
2136   VLC_ADD_LDFLAGS([skins2],[-ltar])
2137 ] )
2138
2139
2140
2141 dnl
2142 dnl A52/AC3 decoder plugin
2143 dnl
2144 AC_ARG_ENABLE(a52,
2145   [  --enable-a52            A/52 support with liba52 (default enabled)])
2146 if test "${enable_a52}" != "no"
2147 then
2148   AC_ARG_WITH(a52,
2149     [    --with-a52=PATH       a52 headers and libraries])
2150   AC_ARG_WITH(a52-tree,
2151     [    --with-a52-tree=PATH  a52dec tree for static linking ],[],[])
2152   if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
2153   then
2154     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
2155     if test -z "${real_a52_tree}"
2156     then
2157       dnl  The given directory can't be found
2158       AC_MSG_RESULT(no)
2159       AC_MSG_ERROR([${with_a52_tree} directory doesn't exist])
2160     fi
2161     dnl  Use a custom a52dec
2162     AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
2163     if test -f ${real_a52_tree}/include/a52.h
2164     then
2165       AC_MSG_RESULT(yes)
2166       VLC_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
2167       VLC_ADD_LDFLAGS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
2168       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_a52tofloat32}"
2169       AC_CHECK_LIB(a52, a52_free, [
2170         VLC_ADD_BUILTINS([a52tofloat32])
2171         VLC_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
2172         VLC_ADD_LDFLAGS([a52tofloat32],[-la52])
2173         ],[
2174         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
2175         then
2176           AC_MSG_ERROR([make sure you have at least a52dec-0.7.3])
2177         else
2178           AC_MSG_ERROR([the specified tree hasn't been compiled])
2179         fi
2180       ])
2181       LDFLAGS="${LDFLAGS_save}"
2182     else
2183       AC_MSG_RESULT(no)
2184       AC_MSG_ERROR([the specified tree doesn't have a52.h])
2185     fi
2186   else
2187     if test -z "${with_a52}"
2188     then
2189       LDFLAGS_test=""
2190       CPPFLAGS_test=""
2191     else
2192       LDFLAGS_test="-L${with_a52}/lib"
2193       CPPFLAGS_test="-I${with_a52}/include"
2194     fi
2195     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
2196     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LDFLAGS_a52tofloat32}"
2197     AC_CHECK_HEADERS(a52dec/a52.h, [
2198       AC_CHECK_LIB(a52, a52_free, [
2199         VLC_ADD_PLUGINS([a52tofloat32])
2200         VLC_ADD_LDFLAGS([a52tofloat32],[${LDFLAGS_test} -la52])
2201         VLC_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
2202       ],[
2203         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.])
2204       ])
2205     ])
2206     CPPFLAGS="${CPPFLAGS_save}"
2207     LDFLAGS="${LDFLAGS_save}"
2208   fi
2209 fi
2210
2211 dnl
2212 dnl DTS Coherent Acoustics decoder plugin
2213 dnl
2214 AC_ARG_ENABLE(dts,
2215   [  --enable-dts            DTS Coherent Acoustics support with libdts (default enabled)])
2216 if test "${enable_dts}" != "no"; then
2217   AC_ARG_WITH(dts-tree,
2218     [    --with-dts-tree=PATH  libdts tree for static linking ],[],[])
2219   if test "${with_dts_tree}" != "no" -a -n "${with_dts_tree}"
2220   then
2221     real_dts_tree="`cd ${with_dts_tree} 2>/dev/null && pwd`"
2222     if test -z "${real_dts_tree}"
2223     then
2224       dnl  The given directory can't be found
2225       AC_MSG_RESULT(no)
2226       AC_MSG_ERROR([${with_dts_tree} directory doesn't exist])
2227     fi
2228     dnl  Use a custom libdts
2229     AC_MSG_CHECKING(for dts.h in ${real_dts_tree}/include)
2230     if test -f ${real_dts_tree}/include/dts.h
2231     then
2232       AC_MSG_RESULT(yes)
2233       VLC_ADD_CPPFLAGS([dtstofloat32],[-I${real_dts_tree}/include])
2234       VLC_ADD_LDFLAGS([dtstofloat32],[-L${real_dts_tree}/libdts])
2235       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
2236       AC_CHECK_LIB(dts_pic, dts_free, [
2237         VLC_ADD_PLUGINS([dtstofloat32])
2238         VLC_ADD_LDFLAGS([dtstofloat32],[-ldts_pic])
2239         ],[
2240         AC_CHECK_LIB(dts, dts_free, [
2241           VLC_ADD_BUILTINS([dtstofloat32])
2242           VLC_ADD_LDFLAGS([dtstofloat32],[-ldts])
2243           ],[
2244           if test -f ${real_dts_tree}/libdts/libdts.a
2245           then
2246             AC_MSG_ERROR([make sure you have at least libdts-0.0.2])
2247           else
2248             AC_MSG_ERROR([the specified tree hasn't been compiled])
2249           fi
2250         ])
2251       ])
2252       LDFLAGS="${LDFLAGS_save}"
2253     else
2254       AC_MSG_RESULT(no)
2255       AC_MSG_ERROR([the specified tree doesn't have dts.h])
2256     fi
2257   else
2258     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_dtstofloat32}"
2259     AC_CHECK_HEADERS(dts.h, [
2260       AC_CHECK_LIB(dts_pic, dts_free, [
2261         VLC_ADD_PLUGINS([dtstofloat32])
2262         VLC_ADD_LDFLAGS([dtstofloat32],[-ldts_pic])
2263       ],[
2264         AC_CHECK_LIB(dts, dts_free, [
2265           VLC_ADD_BUILTINS([dtstofloat32])
2266           VLC_ADD_LDFLAGS([dtstofloat32],[-ldts])
2267         ],[
2268           if test "${enable_dts}" = "yes"; then
2269             AC_MSG_ERROR([Could not find libdts on your system: you may get it from http://www.videolan.org/dtsdec.html])
2270           fi
2271         ])
2272       ])
2273     ])
2274     LDFLAGS="${LDFLAGS_save}"
2275   fi
2276 fi
2277
2278 dnl
2279 dnl  Flac plugin
2280 dnl
2281 AC_ARG_ENABLE(flac,
2282   [  --enable-flac           flac decoder support (default disabled)])
2283 if test "${enable_flac}" = "yes"
2284 then
2285   AC_CHECK_HEADERS(FLAC/stream_decoder.h, [
2286     VLC_ADD_PLUGINS([flac flacdec])
2287     VLC_ADD_LDFLAGS([flacdec],[-lFLAC])
2288    ],[])
2289 fi
2290
2291 dnl
2292 dnl  Libmpeg2 plugin
2293 dnl
2294 AC_ARG_ENABLE(libmpeg2,
2295   [  --enable-libmpeg2       libmpeg2 decoder support (default enabled)])
2296 if test "${enable_libmpeg2}" != "no"
2297 then
2298   AC_ARG_WITH(libmpeg2-tree,
2299   [    --with-libmpeg2-tree=PATH libmpeg2 tree for static linking])
2300   if test -n "${with_libmpeg2_tree}"
2301   then
2302     AC_MSG_CHECKING(for libmpeg2.a in ${with_libmpeg2_tree})
2303     real_libmpeg2_tree="`cd ${with_libmpeg2_tree} 2>/dev/null && pwd`"
2304     if test -z "${real_libmpeg2_tree}"
2305     then
2306       dnl  The given directory can't be found
2307       AC_MSG_RESULT(no)
2308       AC_MSG_ERROR([cannot cd to ${with_libmpeg2_tree}])
2309     fi
2310     if test -f "${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a"
2311     then
2312       dnl  Use a custom libmpeg2
2313       AC_MSG_RESULT(${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a)
2314       VLC_ADD_PLUGINS([libmpeg2])
2315       VLC_ADD_LDFLAGS([libmpeg2],[-L${real_libmpeg2_tree}/libmpeg2/.libs -lmpeg2])
2316       VLC_ADD_CFLAGS([libmpeg2],[-I${real_libmpeg2_tree}/include])
2317       eval "`cd ${real_libmpeg2_tree}/include && ln -sf . mpeg2dec 2>/dev/null`"
2318     else
2319       dnl  The given libmpeg2 wasn't built
2320       AC_MSG_RESULT(no)
2321       AC_MSG_ERROR([cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}])
2322     fi
2323   else
2324     AC_CHECK_HEADERS(mpeg2dec/mpeg2.h, [
2325       AC_MSG_CHECKING(for libmpeg2 version >= 0.3.2)
2326       AC_EGREP_CPP(yes,
2327         [#include <mpeg2dec/mpeg2.h>
2328          #ifdef MPEG2_RELEASE
2329          #if MPEG2_RELEASE >= MPEG2_VERSION(0,3,2)
2330          yes
2331          #endif
2332          #endif],
2333         [AC_MSG_RESULT([yes])
2334           VLC_ADD_PLUGINS([libmpeg2])
2335           VLC_ADD_LDFLAGS([libmpeg2],[-lmpeg2])],
2336         [AC_MSG_RESULT([no])
2337           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.])])],
2338
2339       [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.])]
2340     )
2341   fi
2342 fi
2343
2344 dnl
2345 dnl  Vorbis plugin
2346 dnl
2347 AC_ARG_ENABLE(vorbis,
2348   [  --enable-vorbis         Vorbis decoder support (default enabled)])
2349 if test "${enable_vorbis}" != "no"
2350 then
2351   AC_CHECK_HEADERS(vorbis/codec.h, [
2352     VLC_ADD_PLUGINS([vorbis])
2353     VLC_ADD_LDFLAGS([vorbis],[-lvorbis -logg]) ],[])
2354
2355   AC_CHECK_HEADERS(vorbis/vorbisenc.h, [
2356     VLC_ADD_LDFLAGS([vorbis],[-lvorbisenc]) ],[])
2357 fi
2358
2359 dnl
2360 dnl  Tremor plugin
2361 dnl
2362 AC_ARG_ENABLE(tremor,
2363   [  --enable-tremor         Tremor decoder support (default disabled)])
2364 if test "${enable_tremor}" = "yes"
2365 then
2366   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2367     VLC_ADD_PLUGINS([tremor])
2368     VLC_ADD_LDFLAGS([tremor],[-lvorbisidec -logg])
2369    ],[])
2370 fi
2371
2372 dnl
2373 dnl  Speex plugin
2374 dnl
2375 AC_ARG_ENABLE(speex,
2376   [  --enable-speex          Speex decoder support (default enabled)])
2377 if test "${enable_speex}" != "no"
2378 then
2379   AC_CHECK_HEADERS(speex/speex.h, [
2380     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_toolame}"
2381     AC_CHECK_LIB(speex, speex_decode_int, [
2382       VLC_ADD_PLUGINS([speex])
2383       VLC_ADD_LDFLAGS([speex],[-lspeex]) ],
2384       [ AC_MSG_RESULT([no])
2385         AC_MSG_WARN([Your libspeex is too old, please get the development
2386                      version.]) ],[])
2387     LDFLAGS="${LDFLAGS_save}"
2388     ],[])
2389 fi
2390
2391 dnl
2392 dnl  tarkin decoder plugin
2393 dnl
2394 AC_ARG_ENABLE(tarkin,
2395 [  --enable-tarkin         experimental tarkin codec (default disabled)])
2396 if test "${enable_tarkin}" = "yes"
2397 then
2398   AC_ARG_WITH(tarkin-tree,
2399   [    --with-tarkin-tree=PATH tarkin tree for static linking])
2400   if test -n "${with_tarkin_tree}"
2401   then
2402     AC_MSG_CHECKING(for tarkin.o in ${with_tarkin_tree})
2403     real_tarkin_tree="`cd ${with_tarkin_tree} 2>/dev/null && pwd`"
2404     if test -f "${real_tarkin_tree}/tarkin.o"
2405     then
2406       VLC_ADD_BUILTINS([tarkin])
2407       VLC_ADD_CPPFLAGS([tarkin],[-I${real_tarkin_tree}])
2408       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])
2409       AC_MSG_RESULT(yes)
2410     else
2411       dnl  The given tarkin tree wasn't built
2412       AC_MSG_RESULT(no)
2413       AC_MSG_ERROR([cannot find ${real_tarkin_tree}/tarkin.o,
2414                     make sure you compiled tarkin in ${with_tarkin_tree}])
2415     fi
2416   fi
2417 fi
2418
2419 dnl
2420 dnl  theora decoder plugin
2421 dnl
2422 AC_ARG_ENABLE(theora,
2423 [  --enable-theora         experimental theora codec (default disabled)])
2424 if test "${enable_theora}" = "yes"
2425 then
2426   AC_CHECK_HEADERS(theora/theora.h, [
2427     AC_CHECK_LIB(theora, theora_granule_time, [
2428       if test "${SYS}" = "mingw32"; then
2429         VLC_ADD_PLUGINS([theora])
2430       else
2431         VLC_ADD_BUILTINS([theora])
2432       fi
2433       theora_libs="-ltheora -logg"
2434       VLC_ADD_LDFLAGS([theora],[${theora_libs}]) ],[
2435       AC_MSG_ERROR([libtheora doesn't appear to be installed on you system.
2436 You also need to check that you have a libogg posterior to the 1.0 release.])],
2437       [-logg])
2438   ])
2439 fi
2440
2441 dnl
2442 dnl  dirac decoder plugin
2443 dnl
2444 AC_ARG_ENABLE(dirac,
2445 [  --enable-dirac         experimental dirac codec (default disabled)])
2446 if test "${enable_dirac}" = "yes"
2447 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 -ldirac_motionest -ldirac_common]) ],[
2452       AC_MSG_ERROR([libdirac doesn't appear to be installed on you system.])],
2453       [-ldirac_common])
2454   ])
2455 fi
2456
2457 dnl
2458 dnl H264 encoder plugin (using libx264)
2459 dnl
2460 AC_ARG_ENABLE(x264,
2461   [  --enable-x264           H264 encoding support with libx264 (default enabled)])
2462 if test "${enable_x264}" != "no"; then
2463   AC_ARG_WITH(x264-tree,
2464     [    --with-x264-tree=PATH  x264 tree for static linking ],[],[])
2465   if test "${with_x264_tree}" != "no" -a -n "${with_x264_tree}"
2466   then
2467     real_x264_tree="`cd ${with_x264_tree} 2>/dev/null && pwd`"
2468     if test -z "${real_x264_tree}"
2469     then
2470       dnl  The given directory can't be found
2471       AC_MSG_RESULT(no)
2472       AC_MSG_ERROR([${with_x264_tree} directory doesn't exist])
2473     fi
2474     dnl  Use a custom libx264
2475     AC_MSG_CHECKING(for x264.h in ${real_x264_tree})
2476     if test -f ${real_x264_tree}/x264.h
2477     then
2478       AC_MSG_RESULT(yes)
2479       VLC_ADD_CPPFLAGS([x264],[-I${real_x264_tree}])
2480       VLC_ADD_LDFLAGS([x264],[-L${real_x264_tree}])
2481       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264}"
2482       AC_CHECK_LIB(x264, x264_encoder_open, [
2483         VLC_ADD_BUILTINS([x264])
2484         VLC_ADD_LDFLAGS([x264],[-lx264])
2485       ],[
2486         AC_MSG_ERROR([the specified tree hasn't been compiled])
2487       ])
2488       LDFLAGS="${LDFLAGS_save}"
2489     else
2490       AC_MSG_RESULT(no)
2491       AC_MSG_ERROR([the specified tree doesn't have x264.h])
2492     fi
2493   else
2494     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_x264}"
2495     AC_CHECK_HEADERS(x264.h, [
2496       AC_CHECK_LIB(x264, x264_encoder_open, [
2497         VLC_ADD_PLUGINS([x264])
2498         VLC_ADD_LDFLAGS([x264],[-lx264])
2499       ],[
2500         if test "${enable_x264}" = "yes"; then
2501             AC_MSG_ERROR([Could not find libx264 on your system: you may get it from http://www.videolan.org/x264.html])
2502           fi
2503       ])
2504     ])
2505     LDFLAGS="${LDFLAGS_save}"
2506   fi
2507 fi
2508
2509 dnl
2510 dnl  CMML plugin
2511 dnl
2512 AC_ARG_ENABLE(cmml,
2513   [  --enable-cmml           CMML support (default enabled)])
2514 if test "${enable_cmml}" != "no"
2515 then
2516   VLC_ADD_PLUGINS([cmml])
2517 fi
2518
2519
2520 dnl
2521 dnl  Video Filters
2522 dnl
2523
2524 dnl
2525 dnl   png
2526 dnl
2527 AC_CHECK_HEADERS(png.h, [
2528   LDFLAGS="${LDFLAGS_save} -lz"
2529   AC_CHECK_LIB(png, png_set_rows, [
2530     VLC_ADD_LDFLAGS([logo],[-lpng -lz])
2531     VLC_ADD_PLUGINS([logo])
2532     VLC_ADD_LDFLAGS([svcdsub],[-lpng -lz])
2533     VLC_ADD_LDFLAGS([cvdsub],[-lpng -lz -lm])
2534     AC_DEFINE(HAVE_LIBPNG, [], [Define if you have the PNG library: libpng])],
2535     [],[-lz])
2536   ])
2537   LDFLAGS="${LDFLAGS_save}"
2538
2539 dnl
2540 dnl  Video plugins
2541 dnl
2542
2543 AC_ARG_WITH(,[Video plugins:])
2544
2545 dnl Check for DPMS
2546 if test "${SYS}" != "mingw32"
2547 then
2548   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2549   AC_CHECK_HEADERS(X11/extensions/dpms.h, [
2550     AC_MSG_CHECKING(for DPMSInfo in X11/extensions/dpms.h)
2551     AC_EGREP_HEADER(DPMSInfo,X11/extensions/dpms.h,[
2552       AC_MSG_RESULT(yes)
2553       AC_DEFINE(DPMSINFO_IN_DPMS_H, 1,
2554                 Define if <X11/extensions/dpms.h> defines DPMSInfo.)
2555     ],[
2556       AC_MSG_RESULT(no)
2557     ])
2558   ],,[
2559     #include <X11/Xlib.h>
2560   ])
2561   CPPFLAGS="${CPPFLAGS_save}"
2562 fi
2563
2564 dnl
2565 dnl  X11 module
2566 dnl  (enabled by default except on win32)
2567 dnl
2568 AC_ARG_ENABLE(x11,
2569   [  --enable-x11            X11 support (default enabled)])
2570 if test "${enable_x11}" != "no" &&
2571   (test "${SYS}" != "mingw32" || test "${enable_x11}" = "yes"); then
2572   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2573   AC_CHECK_HEADERS(X11/Xlib.h, [
2574     VLC_ADD_PLUGINS([x11])
2575     VLC_ADD_LDFLAGS([x11],[-L${x_libraries} -lX11 -lXext])
2576     VLC_ADD_CPPFLAGS([x11],[-I${x_includes}])
2577   ])
2578   CPPFLAGS="${CPPFLAGS_save}"
2579 fi
2580
2581 dnl
2582 dnl  XVideo module
2583 dnl  (enabled by default except on win32)
2584 dnl
2585 AC_ARG_ENABLE(xvideo,
2586   [  --enable-xvideo         XVideo support (default enabled)])
2587 if test "${enable_xvideo}" != "no" &&
2588   (test "${SYS}" != "mingw32" || test "${enable_xvideo}" = "yes"); then
2589   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2590   AC_CHECK_HEADERS(X11/extensions/Xv.h, [
2591     CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2592     AC_CHECK_LIB(Xv,XvPutImage,[
2593       # If libXv.so is available, xvideo can be a plugin. Otherwise, we
2594       # test for libXv_pic.
2595       if test -f /usr/X11R6/lib/libXv.so -o -f "${x_libraries}"/libXv.so; then
2596         VLC_ADD_PLUGINS([xvideo])
2597         VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2598         VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
2599       else
2600         AC_CHECK_LIB(Xv_pic,XvPutImage,[
2601           VLC_ADD_PLUGINS([xvideo])
2602           VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2603           VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv_pic])
2604         ],[
2605           VLC_ADD_BUILTINS([xvideo])
2606           VLC_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
2607           VLC_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2608         ])
2609       fi
2610     ])
2611     CFLAGS="${CFLAGS_save}"
2612   ]
2613   CPPFLAGS="${CPPFLAGS_save}")
2614 fi
2615
2616 dnl
2617 dnl  GLX module
2618 dnl  (enabled by default except on win32)
2619 dnl
2620 AC_ARG_ENABLE(glx,
2621   [  --enable-glx            X11 OpenGL (GLX) support (default enabled)])
2622 if test "${enable_glx}" != "no" &&
2623   (test "${SYS}" != "mingw32" || test "${enable_glx}" = "yes"); then
2624   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2625   AC_CHECK_HEADERS(X11/Xlib.h, [
2626     AC_CHECK_HEADERS(GL/glx.h, [
2627       VLC_ADD_PLUGINS([glx])
2628       VLC_ADD_LDFLAGS([glx],[-L${x_libraries} -lX11 -lXext -lGL -lGLU])
2629       VLC_ADD_CPPFLAGS([glx],[-I${x_includes}])
2630   ]) ])
2631   CPPFLAGS="${CPPFLAGS_save}"
2632 fi
2633
2634 dnl
2635 dnl  Check for the Xinerama extension
2636 dnl
2637 if test "${enable_xvideo}" != "no" &&
2638   (test "${SYS}" != "mingw32" || test "${enable_xvideo}" = "yes"); then
2639   ac_cv_have_xinerama="no"
2640   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2641   CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2642   AC_CHECK_HEADERS(X11/extensions/Xinerama.h,[
2643     AC_CHECK_LIB(Xinerama_pic, XineramaQueryExtension,[
2644       VLC_ADD_LDFLAGS([xvideo],[-lXinerama_pic])
2645       VLC_ADD_LDFLAGS([x11],[-lXinerama_pic])
2646       VLC_ADD_LDFLAGS([glx],[-lXinerama_pic])
2647       ac_cv_have_xinerama="yes"
2648     ],[
2649       AC_CHECK_LIB(Xinerama, XineramaQueryExtension,[
2650         VLC_ADD_LDFLAGS([xvideo],[-lXinerama])
2651         VLC_ADD_LDFLAGS([x11],[-lXinerama])
2652         VLC_ADD_LDFLAGS([glx],[-lXinerama])
2653         ac_cv_have_xinerama="yes"
2654       ])
2655     ])
2656   ])
2657   if test "${ac_cv_have_xinerama}" = "yes"; then
2658     AC_DEFINE(HAVE_XINERAMA, 1, [Define this if you have libXinerama installed])
2659   fi
2660   CFLAGS="${CFLAGS_save}"
2661   CPPFLAGS="${CPPFLAGS_save}"
2662 fi
2663
2664 dnl
2665 dnl  OpenGL module
2666 dnl  (enabled by default except on beos)
2667 dnl
2668 AC_ARG_ENABLE(opengl,
2669   [  --enable-opengl         OpenGL support (default enabled)])
2670 if test "${enable_opengl}" != "no" && test "${SYS}" != "beos"; then
2671   if test "${SYS}" != "darwin"; then
2672     AC_CHECK_HEADERS(GL/gl.h, [
2673       VLC_ADD_PLUGINS([opengl])
2674       if test "${SYS}" != "mingw32"; then
2675         VLC_ADD_LDFLAGS([opengl],[-L${x_libraries} -lGL -lGLU])
2676       else
2677         VLC_ADD_LDFLAGS([opengl],[-lopengl32])
2678       fi
2679     ])
2680   else
2681     dnl OS X special case (no GL/gl.h but OpenGL/gl.h)
2682     VLC_ADD_PLUGINS([opengl])
2683     VLC_ADD_LDFLAGS([opengl],[-framework OpenGL])
2684   fi
2685 fi
2686
2687 dnl
2688 dnl  SDL module
2689 dnl
2690 AC_ARG_ENABLE(sdl,
2691   [  --enable-sdl            SDL support (default enabled)])
2692 if test "${enable_sdl}" != "no"
2693 then
2694   SDL_PATH="${PATH}"
2695   AC_ARG_WITH(sdl-config-path,
2696     [    --with-sdl-config-path=PATH sdl-config path (default search in \$PATH)],
2697     [ if test "${with_sdl_config_path}" != "no"
2698       then
2699         SDL_PATH="${with_sdl_config_path}:${PATH}"
2700       fi ])
2701   AC_PATH_PROG(SDL12_CONFIG, sdl12-config, no, ${SDL_PATH})
2702   SDL_CONFIG="${SDL12_CONFIG}"
2703   SDL_HEADER="SDL12/SDL.h"
2704   if test "${SDL_CONFIG}" = "no"
2705   then
2706     AC_PATH_PROG(SDL11_CONFIG, sdl11-config, no, ${SDL_PATH})
2707     SDL_CONFIG=${SDL11_CONFIG}
2708     SDL_HEADER="SDL11/SDL.h"
2709   fi
2710   if test "${SDL_CONFIG}" = "no"
2711   then
2712     AC_PATH_PROG(SDL_CONFIG, sdl-config, no, ${SDL_PATH})
2713     SDL_HEADER="SDL/SDL.h"
2714   fi
2715   # check for cross-compiling
2716   SDL_PREFIX=
2717   AC_ARG_WITH(sdl-prefix,
2718     [    --with-sdl-prefix=PATH path to libsdl (needed for cross-compiling),
2719                                e.g use as:
2720                                --with-sdl-prefix=/usr/local/arm/2.95.3/arm-linux/usr)],[],[])
2721   if test "${with_sdl_prefix}" != "no" -a -n "${with_sdl_prefix}"
2722   then
2723     SDL_PREFIX="--prefix=${with_sdl_prefix}"
2724   fi
2725   if test "${SDL_CONFIG}" != "no"
2726   then
2727     VLC_ADD_PLUGINS([vout_sdl aout_sdl])
2728     VLC_ADD_CFLAGS([vout_sdl aout_sdl],[`${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`])
2729     VLC_ADD_LDFLAGS([vout_sdl aout_sdl],[`${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'`])
2730     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}"
2731     AC_CHECK_HEADERS(${SDL_HEADER}, AC_DEFINE_UNQUOTED(SDL_INCLUDE_FILE,
2732       <${SDL_HEADER}>, Indicate whether we should use SDL/SDL.h or SDL11/SDL.h),
2733       [ AC_CHECK_HEADERS(SDL.h, AC_DEFINE(SDL_INCLUDE_FILE, <SDL.h>,
2734           As a last resort we also test for SDL.h presence),
2735       [ AC_MSG_ERROR([The development package for SDL is not installed.
2736 Please install it and try again. Alternatively you can also configure with
2737 --disable-sdl.])
2738       ])])
2739     CPPFLAGS="${CPPFLAGS_save}"
2740     if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null
2741     then
2742       AC_MSG_ERROR([The development package for SDL is not installed.
2743 Please install it and try again. Alternatively you can also configure with
2744 --disable-sdl.])
2745     fi
2746   elif test "${enable_sdl}" =  "yes"
2747   then
2748     AC_MSG_ERROR([I couldn't find the SDL package. You can download libSDL
2749 from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
2750     ])
2751   fi
2752 fi
2753
2754 dnl
2755 dnl  freetype module
2756 dnl
2757 AC_ARG_ENABLE(freetype,
2758   [  --enable-freetype       freetype support (default enabled)])
2759 AC_ARG_ENABLE(fribidi,
2760   [  --enable-fribidi        fribidi support (default enabled)])
2761 if test "${enable_freetype}" != "no"
2762 then
2763   FREETYPE_PATH="${PATH}"
2764   AC_ARG_WITH(freetype-config-path,
2765     [    --with-freetype-config-path=PATH freetype-config path (default search in \$PATH)],
2766     [ if test "${with_freetype_config_path}" != "no"
2767       then
2768         FREETYPE_PATH="${with_freetype_config_path}:${PATH}"
2769       fi ])
2770   AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no, ${FREETYPE_PATH})
2771
2772   if test "${FREETYPE_CONFIG}" != "no"
2773   then
2774     VLC_ADD_PLUGINS([freetype])
2775     VLC_ADD_CFLAGS([freetype],[`${FREETYPE_CONFIG} --cflags`])
2776     VLC_ADD_LDFLAGS([freetype],[`${FREETYPE_CONFIG} --libs`])
2777     AC_CHECK_HEADERS(Carbon/Carbon.h,
2778       [VLC_ADD_LDFLAGS([freetype],[-framework Carbon])])
2779   elif test "${enable_freetype}" =  "yes"
2780   then
2781     AC_MSG_ERROR([I couldn't find the freetype package. You can download libfreetype2
2782 from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
2783     ])
2784   fi
2785
2786   dnl fribidi support
2787   if test "${enable_fribidi}" != "no"
2788   then
2789     FRIBIDI_PATH="${PATH}"
2790     AC_ARG_WITH(fribidi-config-path,
2791       [    --with-fribidi-config-path=PATH fribidi-config path (default search in \$PATH)],
2792       [ if test "${with_fribidi_config_path}" != "no"
2793         then
2794           FRIBIDI_PATH="${with_fribidi_config_path}:${PATH}"
2795         fi ])
2796     AC_PATH_PROG(FRIBIDI_CONFIG, fribidi-config, no, ${FRIBIDI_PATH})
2797
2798     if test "${FRIBIDI_CONFIG}" != "no"
2799     then
2800       VLC_ADD_CFLAGS([freetype], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
2801       VLC_ADD_LDFLAGS([freetype], [`${FRIBIDI_CONFIG} --libs`])
2802     fi
2803   fi
2804 fi
2805
2806 dnl
2807 dnl  libxml2 module
2808 dnl
2809 AC_ARG_ENABLE(libxml2,
2810   [  --enable-libxml2       libxml2 support (default enabled)])
2811 if test "${enable_libxml2}" != "no"
2812 then
2813   XML2_PATH="${PATH}"
2814   AC_ARG_WITH(xml2-config-path,
2815     [    --with-xml2-config-path=PATH xml2-config path (default search in \$PATH)],
2816     [ if test "${with_xml2_config_path}" != "no"; then
2817         XML2_PATH="${with_xml2_config_path}:${PATH}"
2818       fi ])
2819   AC_PATH_PROG(XML2_CONFIG, xml2-config, no, ${XML2_PATH})
2820   if test "${XML2_CONFIG}" != "no"; then
2821     VLC_ADD_CPPFLAGS([xml],[`${XML2_CONFIG} --cflags`])
2822     VLC_ADD_LDFLAGS([xml],[`${XML2_CONFIG} --libs`])
2823     dnl depends on the xmlTextReader extension
2824     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_xml}"
2825     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xml}"
2826     AC_CHECK_LIB(xml2,xmlTextReaderConstName,[
2827       AC_EGREP_HEADER(xmlTextReaderConstName,libxml/xmlreader.h,[
2828         VLC_ADD_PLUGINS([xml]) ],[
2829           AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
2830           if test "${enable_xml2}" = "yes"; then
2831             AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
2832           fi])
2833        ],[
2834       AC_MSG_WARN([libxml2 missing the xmlTextReader extension, you should update your version])
2835       if test "${enable_xml2}" = "yes"; then
2836         AC_MSG_ERROR([libxml2 missing the xmlTextReader extension])
2837       fi])
2838     LDFLAGS="${LDFLAGS_save}"
2839     CPPFLAGS="${CPPFLAGS_save}"
2840   else
2841     if test "${enable_xml2}" = "yes"; then
2842       AC_MSG_ERROR([Could not find libxml2])
2843     fi
2844   fi
2845 fi
2846
2847 dnl
2848 dnl  SVG module
2849 dnl
2850 AC_ARG_ENABLE(svg,
2851   [  --enable-svg            SVG support (default disabled)])
2852 if test "${enable_svg}" == "yes"
2853 then
2854   PKG_CHECK_MODULES(SVG, 
2855         librsvg-2.0 >= 2.5.0,
2856         [
2857           VLC_ADD_LDFLAGS([svg],[$SVG_LIBS])
2858           VLC_ADD_CFLAGS([svg],[$SVG_CFLAGS])
2859           VLC_ADD_PLUGINS([svg]) ],
2860         [AC_MSG_WARN(SVG library not found)])
2861 fi
2862
2863 dnl
2864 dnl  Qt Embedded module
2865 dnl  (disabled by default)
2866 dnl
2867 AC_ARG_ENABLE(qte,
2868   [  --enable-qte            QT Embedded support (default disabled)])
2869 if test "${enable_qte}" = "yes"
2870 then
2871   AC_ARG_WITH(qte,
2872   [    --with-qte=PATH       Qt Embedded headers and libraries])
2873   if test "${with_qte}" != "no" -a -n "${with_qte}"
2874   then
2875     VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
2876     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])
2877   else
2878     VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
2879     VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti])
2880   fi
2881   VLC_ADD_PLUGINS([qte])
2882   NEED_QTE_MAIN=yes
2883   CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
2884   AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
2885     AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
2886   ] )
2887   CPPFLAGS="${CPPFLAGS_save}"
2888 fi
2889
2890 dnl
2891 dnl  Qt Video output module
2892 dnl  (disabled by default)
2893 dnl
2894 dnl AC_ARG_ENABLE(qt_video,
2895 dnl   [  --enable-qt_video            QT Video Output support (default disabled)])
2896 dnl if test "${enable_qt_video}" = "yes"
2897 dnl then
2898 dnl  VLC_ADD_PLUGINS([qt_video])
2899 dnl  VLC_ADD_LDFLAGS([qt_video],[-L${QTDIR}/lib])
2900 dnl  LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt_video}"
2901 dnl   AC_CHECK_LIB(qt-mt,main,[
2902 dnl    VLC_ADD_LDFLAGS([qt_video],[-lqt-mt])
2903 dnl  ],[
2904 dnl    AC_CHECK_LIB(qt,main,[
2905 dnl      VLC_ADD_LDFLAGS([qt_video],[-lqt])
2906 dnl    ])
2907 dnl  ])
2908 dnl  NEED_QTE_MAIN=yes
2909 dnl  LDFLAGS="${LDFLAGS_save}"
2910 dnl  VLC_ADD_CXXFLAGS([qt_video],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
2911 dnl fi
2912
2913 dnl
2914 dnl Roku HD1000 Video output module
2915 dnl
2916 AC_ARG_ENABLE(hd1000v,
2917   [  --enable-hd1000v        HD1000 Video Output module (default enabled on HD1000)])
2918 if test "${enable_hd1000v}" != "no" &&
2919   (test "${SYS}" != "mingw32" || test "${enable_hd1000v}" = "yes")
2920 then
2921   AC_LANG_PUSH([C++])
2922   AC_CHECK_HEADERS([cascade/graphics/CascadeScreen.h cascade/graphics/CascadeBitmap.h],
2923   [
2924     can_build_roku="yes"
2925   ],
2926   [
2927     can_build_roku="no"
2928     AC_MSG_WARN([Not building Roku HD1000 compatible video output])
2929   ])
2930   if test "$can_build_roku" = "yes"
2931   then
2932     VLC_ADD_PLUGINS([hd1000v])
2933     VLC_ADD_LDFLAGS([hd1000v],[-lCascade -ldvbpsi -lmad])
2934   fi
2935   AC_LANG_POP([C++])
2936 fi
2937
2938 dnl
2939 dnl  Windows DirectX module
2940 dnl
2941 AC_ARG_ENABLE(directx,
2942   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
2943 if test "${enable_directx}" != "no"
2944 then
2945   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
2946   then
2947     AC_ARG_WITH(directx,
2948     [    --with-directx=PATH   Win32 DirectX headers])
2949     if test -z "${with_directx}"
2950     then
2951       AC_CHECK_HEADERS(ddraw.h,
2952       [ VLC_ADD_PLUGINS([vout_directx aout_directx])
2953         VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
2954         dnl to be moved when dependance is removed
2955         AC_CHECK_HEADERS(GL/gl.h, [
2956             VLC_ADD_PLUGINS([glwin32])
2957             VLC_ADD_LDFLAGS([glwin32],[-lopengl32 -lgdi32])
2958         ]) ])
2959     else
2960       AC_MSG_CHECKING(for directX headers in ${with_directx})
2961       if test -f ${with_directx}/ddraw.h
2962       then
2963         VLC_ADD_PLUGINS([vout_directx aout_directx])
2964         VLC_ADD_CPPFLAGS([vout_directx aout_directx],[-I${with_directx}])
2965         VLC_ADD_LDFLAGS([vout_directx],[-lgdi32])
2966         AC_MSG_RESULT(yes)
2967       else
2968         AC_MSG_RESULT(no)
2969         AC_MSG_ERROR([Cannot find ${with_directx}/ddraw.h!])
2970       fi
2971     fi
2972   fi
2973 fi
2974
2975 dnl
2976 dnl  Linux framebuffer module
2977 dnl
2978 AC_ARG_ENABLE(fb,
2979   [  --enable-fb             Linux framebuffer support (default enabled on Linux)])
2980     if test "${enable_fb}" != "no"
2981     then
2982       AC_CHECK_HEADERS(linux/fb.h, [
2983         VLC_ADD_PLUGINS([fb])
2984       ])
2985     fi
2986
2987 dnl
2988 dnl  Linux MGA module
2989 dnl
2990 AC_ARG_ENABLE(mga,
2991   [  --enable-mga            Linux kernel Matrox support (default disabled)],
2992   [ if test "${enable_mga}" = "yes"
2993     then
2994       VLC_ADD_PLUGINS([mga])
2995     fi ])
2996
2997 dnl
2998 dnl  SVGAlib module
2999 dnl
3000 AC_ARG_ENABLE(svgalib,
3001   [  --enable-svgalib        SVGAlib support (default disabled)])
3002 if test "${enable_svgalib}" = "yes"
3003 then
3004   VLC_ADD_PLUGINS([svgalib])
3005   VLC_ADD_LDFLAGS([svgalib],[-lvgagl -lvga])
3006 fi
3007
3008 dnl
3009 dnl  GGI module
3010 dnl
3011 AC_ARG_ENABLE(ggi,
3012   [  --enable-ggi            GGI support (default disabled)])
3013 if test "${enable_ggi}" = "yes"
3014 then
3015   VLC_ADD_PLUGINS([ggi])
3016   VLC_ADD_LDFLAGS([ggi],[-lggi])
3017   AC_ARG_WITH(ggi,
3018     [    --with-ggi=PATH       path to libggi],
3019     [ if test "${with_ggi}" != "no" -a -n "${with_ggi}"
3020       then
3021         VLC_ADD_CPPFLAGS([ggi],[-I${with_ggi}/include])
3022         VLC_ADD_LDFLAGS([ggi],[-L${with_ggi}/lib])
3023       fi ])
3024 fi
3025
3026 dnl
3027 dnl  Glide module
3028 dnl
3029 AC_ARG_ENABLE(glide,
3030   [  --enable-glide          Glide (3dfx) support (default disabled)])
3031 if test "${enable_glide}" = "yes"
3032 then
3033   VLC_ADD_PLUGINS([glide])
3034   VLC_ADD_LDFLAGS([glide],[-lglide2x -lm])
3035   VLC_ADD_CPPFLAGS([glide],[-I/usr/include/glide])
3036   AC_ARG_WITH(glide,
3037     [    --with-glide=PATH     path to libglide],
3038     [ if test "${with_glide}" != "no" -a -n "${with_glide}"
3039       then
3040         VLC_ADD_CPPFLAGS([glide],[-I${with_glide}/include])
3041         VLC_ADD_LDFLAGS([glide],[-L${with_glide}/lib])
3042       fi ])
3043 fi
3044
3045 dnl
3046 dnl  AA plugin
3047 dnl
3048 AC_ARG_ENABLE(aa,
3049   [  --enable-aa             aalib output (default disabled)])
3050 if test "${enable_aa}" = "yes"
3051 then
3052   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
3053   if test "${have_aa}" = "true"
3054   then
3055     VLC_ADD_PLUGINS([aa])
3056     VLC_ADD_LDFLAGS([aa],[-laa])
3057   fi
3058 fi
3059
3060 dnl
3061 dnl  libcaca plugin
3062 dnl
3063 AC_ARG_ENABLE(caca,
3064   [  --enable-caca           libcaca output (default disabled)])
3065 if test "${enable_caca}" = "yes"
3066 then
3067   CACA_PATH="${PATH}"
3068   AC_ARG_WITH(caca-config-path,
3069     [    --with-caca-config-path=PATH caca-config path (default search in \$PATH)],
3070     [ if test "${with_caca_config_path}" != "no"
3071       then
3072         CACA_PATH="${with_caca_config_path}:${PATH}"
3073       fi ])
3074   AC_PATH_PROG(CACA_CONFIG, caca-config, no, ${CACA_PATH})
3075   if test "${CACA_CONFIG}" != "no"
3076   then
3077     VLC_ADD_PLUGINS([caca])
3078     VLC_ADD_CFLAGS([caca],[`${CACA_CONFIG} --cflags`])
3079     VLC_ADD_LDFLAGS([caca],[`${CACA_CONFIG} --plugin-libs`])
3080   fi
3081 fi
3082
3083 dnl
3084 dnl  win32 GDI plugin
3085 dnl
3086 AC_ARG_ENABLE(wingdi,
3087   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
3088 if test "${enable_wingdi}" != "no"; then
3089   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
3090     VLC_ADD_PLUGINS([wingdi])
3091     VLC_ADD_LDFLAGS([wingdi],[-lgdi32])
3092   fi
3093 fi
3094
3095 dnl
3096 dnl  Audio plugins
3097 dnl
3098
3099 AC_ARG_WITH(,[Audio plugins:])
3100
3101 dnl
3102 dnl  OSS /dev/dsp module (enabled by default except on win32)
3103 dnl
3104 AC_ARG_ENABLE(oss,
3105   [  --enable-oss            Linux OSS /dev/dsp support (enabled on Linux)])
3106
3107 if test "${enable_oss}" != "no" &&
3108   (test "${SYS}" != "mingw32" || test "${enable_oss}" = "yes")
3109 then
3110   AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h, [
3111     VLC_ADD_PLUGINS([oss])
3112     AC_CHECK_LIB(ossaudio,main,VLC_ADD_LDFLAGS([oss],[-lossaudio]))
3113   ])
3114 fi
3115
3116 dnl
3117 dnl  Esound module
3118 dnl
3119 AC_ARG_ENABLE(esd,
3120   [  --enable-esd            Esound library support (default disabled)],
3121   [if test "${enable_esd}" = "yes"
3122    then
3123      AC_PATH_PROG(ESD_CONFIG, esd-config, no)
3124      if test "${ESD_CONFIG}" != "no"
3125      then
3126        VLC_ADD_PLUGINS([esd])
3127        VLC_ADD_CFLAGS([esd],[`${ESD_CONFIG} --cflags`])
3128        VLC_ADD_LDFLAGS([esd],[`${ESD_CONFIG} --libs`])
3129      fi
3130    fi])
3131
3132 dnl
3133 dnl  Portaudio module
3134 dnl
3135 AC_ARG_ENABLE(portaudio,
3136   [  --enable-portaudio      Portaudio library support (default disabled)],
3137   [if test "${enable_portaudio}" = "yes"
3138    then
3139      VLC_ADD_PLUGINS([portaudio])
3140      VLC_ADD_CXXFLAGS([portaudio],[])
3141      if test "${SYS}" = "mingw32"; then
3142         VLC_ADD_LDFLAGS([portaudio],[-lportaudio -lwinmm -lole32])
3143      else
3144         VLC_ADD_LDFLAGS([portaudio],[-lportaudio])
3145      fi
3146    fi])
3147
3148 dnl
3149 dnl  aRts module
3150 dnl
3151 AC_ARG_ENABLE(arts,
3152   [  --enable-arts           aRts sound server (default disabled)],
3153   [if test "${enable_arts}" = "yes"
3154    then
3155      AC_PATH_PROG(ARTS_CONFIG, artsc-config, no)
3156      if test "${ARTS_CONFIG}" != "no"
3157      then
3158        VLC_ADD_PLUGINS([arts])
3159        VLC_ADD_CFLAGS([arts],[`${ARTS_CONFIG} --cflags`])
3160        VLC_ADD_LDFLAGS([arts],[`${ARTS_CONFIG} --libs `])
3161      fi
3162    fi])
3163
3164 dnl
3165 dnl  ALSA module
3166 dnl
3167 AC_ARG_ENABLE(alsa,
3168   [  --enable-alsa           ALSA sound support for Linux (default enabled)],
3169   [if test "${enable_alsa}" != "no"
3170    then
3171      AC_CHECK_HEADER(alsa/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false")
3172      if test "${have_alsa}" = "true"
3173      then
3174        AC_TRY_COMPILE([#define ALSA_PCM_NEW_HW_PARAMS_API
3175                        #define ALSA_PCM_NEW_SW_PARAMS_API
3176                        #include <alsa/asoundlib.h>],
3177           [void foo() { snd_pcm_hw_params_get_period_time(0,0,0); }],
3178            AC_DEFINE(HAVE_ALSA_NEW_API, 1, Define if ALSA is at least rc4))
3179        VLC_ADD_PLUGINS([alsa])
3180        VLC_ADD_LDFLAGS([alsa],[-lasound -lm -ldl])
3181      else
3182        if test "${enable_alsa}" = "yes"; then
3183          AC_MSG_ERROR([Could not find ALSA development headers])
3184        fi
3185      fi
3186    fi])
3187
3188 dnl
3189 dnl  win32 waveOut plugin
3190 dnl
3191 AC_ARG_ENABLE(waveout,
3192   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
3193 if test "${enable_waveout}" != "no"; then
3194   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
3195     VLC_ADD_PLUGINS([waveout])
3196     VLC_ADD_LDFLAGS([waveout],[-lwinmm])
3197   fi
3198 fi
3199
3200 dnl
3201 dnl  CoreAudio plugin
3202 dnl
3203 AC_ARG_ENABLE(coreaudio,
3204   [  --enable-coreaudio      CoreAudio module (default enabled on MacOS X)])
3205 if test "${enable_coreaudio}" != "no" &&
3206   (test "${SYS}" = "darwin" || test "${enable_coreaudio}" = "yes")
3207 then
3208   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h, 
3209     [ VLC_ADD_BUILTINS([coreaudio])
3210       VLC_ADD_LDFLAGS([coreaudio],[-framework CoreAudio])
3211       AC_MSG_CHECKING(for kAudioConverterPrimeMethod in AudioToolbox/AudioConverter.h)
3212       AC_EGREP_HEADER(kAudioConverterPrimeMethod,AudioToolbox/AudioConverter.h,[
3213         AC_MSG_RESULT(yes)
3214         VLC_ADD_PLUGINS([coreaudio_resampler])
3215         VLC_ADD_LDFLAGS([coreaudio_resampler],[-framework AudioToolbox])
3216       ],[ AC_MSG_RESULT(no) ])
3217     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
3218 fi
3219
3220 dnl
3221 dnl  Roku HD1000 audio
3222 dnl
3223 AC_ARG_ENABLE(hd1000a,
3224   [  --enable-hd1000a        HD1000 audio module (default enabled on HD1000)])
3225 if test "${enable_hd1000a}" != "no" &&
3226   (test "${SYS}" != "mingw32" || test "${enable_hd1000a}" = "yes")
3227 then
3228   AC_LANG_PUSH([C++])
3229   AC_CHECK_HEADERS(deschutes/libraries/hdmachinex225/PCMAudioPlayer.h, [
3230     VLC_ADD_PLUGINS([hd1000a])
3231     AC_CHECK_LIB(HDMachineX225,main,VLC_ADD_LDFLAGS([hd1000a],[-lHDMachineX225]))  ])
3232   AC_LANG_POP([C++])
3233 fi
3234
3235 dnl
3236 dnl  Interface plugins
3237 dnl
3238
3239 AC_ARG_WITH(,[Interface plugins:])
3240
3241 dnl special case for BeOS
3242 if test "${SYS}" = "beos"
3243 then
3244     VLC_ADD_BUILTINS([beos])
3245 fi
3246
3247 dnl
3248 dnl Skins2 module
3249 dnl
3250 AC_ARG_ENABLE(skins2,
3251   [  --enable-skins2         Skins2 interface module (experimental)])
3252 if test "${enable_skins2}" = "yes" || (test "${SYS}" != "darwin" && test "${SYS}" != "beos" && test "${enable_skins2}" != "no"); then
3253
3254   dnl test for the required libraries
3255   skins2_missing_lib="no"
3256
3257   dnl freetype
3258   if test "${FREETYPE_CONFIG}" != "no"; then
3259     VLC_ADD_CPPFLAGS([skins2],[`${FREETYPE_CONFIG} --cflags`])
3260     VLC_ADD_LDFLAGS([skins2],[`${FREETYPE_CONFIG} --libs` -lpng])
3261   else
3262     skins2_missing_lib="yes"
3263     if test "${enable_skins2}" = "yes"; then
3264       AC_MSG_ERROR([Could not find freetype (required for skins2)])
3265     fi
3266   fi
3267
3268   if test "${skins2_missing_lib}" = "no" && (test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"); then
3269     VLC_ADD_PLUGINS([skins2])
3270     ALIASES="${ALIASES} svlc"
3271     VLC_ADD_CPPFLAGS([skins2],[-U_OFF_T_ -U_off_t -Imodules/gui/skins2 -DWIN32_SKINS])
3272     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3273     VLC_ADD_LDFLAGS([skins2],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
3274
3275   else if test "${skins2_missing_lib}" = "no"; then
3276     VLC_ADD_PLUGINS([skins2])
3277     ALIASES="${ALIASES} svlc"
3278     VLC_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 -I${x_includes} -DX11_SKINS])
3279     VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
3280     VLC_ADD_LDFLAGS([skins2],[-L${x_libraries} -lXext -lX11])
3281   fi fi
3282 fi
3283
3284
3285 dnl dnl
3286 dnl dnl  Gtk+ module
3287 dnl dnl
3288 dnl AC_ARG_ENABLE(gtk,
3289 dnl   [  --enable-gtk            Gtk+ support (default enabled)])
3290 dnl if test "${enable_gtk}" != "no"
3291 dnl then
3292 dnl   GTK_PATH="${PATH}"
3293 dnl   AC_ARG_WITH(gtk-config-path,
3294 dnl     [    --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)],
3295 dnl     [ if test "${with_gtk_config_path}" != "no"
3296 dnl       then
3297 dnl         GTK_PATH="${with_gtk_config_path}:${PATH}"
3298 dnl       fi ])
3299 dnl   # look for gtk-config
3300 dnl   AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH})
3301 dnl   GTK_CONFIG=${GTK12_CONFIG}
3302 dnl   if test "${GTK_CONFIG}" = "no"
3303 dnl   then
3304 dnl     AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH})
3305 dnl   fi
3306 dnl   if test "${GTK_CONFIG}" != "no"
3307 dnl   then
3308 dnl     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
3309 dnl     then
3310 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.])
3311 dnl     fi
3312 dnl     if test "${SYS}" != "mingw32"; then
3313 dnl       VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk gthread`])
3314 dnl       VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`])
3315 dnl     else
3316 dnl       VLC_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk`])
3317 dnl       VLC_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`])
3318 dnl     fi
3319 dnl     # now look for the gtk.h header
3320 dnl     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gtk}"
3321 dnl     ac_cv_gtk_headers=yes
3322 dnl     AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [
3323 dnl       ac_cv_gtk_headers=no
3324 dnl       echo "Cannot find gtk development headers."
3325 dnl     ])
3326 dnl     if test "${ac_cv_gtk_headers}" = "yes"
3327 dnl     then
3328 dnl       VLC_ADD_PLUGINS([gtk])
3329 dnl       if test "${SYS}" != "mingw32"; then
3330 dnl         NEED_GTK_MAIN=yes
3331 dnl       fi
3332 dnl       ALIASES="${ALIASES} gvlc"
3333 dnl     fi
3334 dnl     CPPFLAGS="${CPPFLAGS_save}"
3335 dnl   fi
3336 dnl fi
3337 dnl 
3338 dnl
3339 dnl  Gtk+2 module ! Disabled for now as it is unusable and confuses users
3340 dnl
3341 dnl AC_ARG_ENABLE(gtk2,
3342 dnl   [  --enable-gtk2           Gtk2 support (default disabled)])
3343 dnl if test "${enable_gtk2}" = "yes"
3344 dnl then
3345 dnl   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
3346 dnl   VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
3347 dnl   VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
3348 dnl   VLC_ADD_PLUGINS([gtk2])
3349 dnl   if test "${SYS}" != "mingw32"; then
3350 dnl     NEED_GTK2_MAIN=yes
3351 dnl   fi
3352 dnl fi
3353
3354 dnl
3355 dnl  PDA Gtk+2 module
3356 dnl
3357 AC_ARG_ENABLE(pda,
3358   [  --enable-pda            PDA interface needs Gtk2 support (default disabled)])
3359 if test "${enable_pda}" = "yes"
3360 then
3361   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
3362   VLC_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
3363   VLC_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
3364   VLC_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}])
3365   VLC_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}])
3366   VLC_ADD_PLUGINS([pda])
3367   if test "${SYS}" != "mingw32"; then
3368     NEED_GTK2_MAIN=yes
3369   fi
3370 fi
3371
3372 dnl dnl
3373 dnl dnl  Gnome module
3374 dnl dnl
3375 dnl AC_ARG_ENABLE(gnome,
3376 dnl   [  --enable-gnome          Gnome interface support (default disabled)],
3377 dnl   [if test "${enable_gnome}" = "yes"; then
3378 dnl     # look for gnome-config
3379 dnl     AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
3380 dnl     if test -x ${GNOME_CONFIG}
3381 dnl     then
3382 dnl        VLC_ADD_CFLAGS([gnome],[`${GNOME_CONFIG} --cflags gtk gnomeui`])
3383 dnl        VLC_ADD_LDFLAGS([gnome],[`${GNOME_CONFIG} --libs gnomeui | sed 's,-rdynamic,,'`])
3384 dnl     fi
3385 dnl     # now look for the gnome.h header
3386 dnl     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gnome}"
3387 dnl     AC_CHECK_HEADERS(gnome.h, [
3388 dnl       VLC_ADD_PLUGINS([gnome])
3389 dnl       NEED_GTK_MAIN=yes
3390 dnl       NEED_GNOME_MAIN=yes
3391 dnl       ALIASES="${ALIASES} gnome-vlc"
3392 dnl       dnl We need this because of some moronic gnomesupport.h flavours
3393 dnl       AC_MSG_CHECKING(for strndup in gnome.h)
3394 dnl       AC_EGREP_HEADER(strndup,gnome.h,[
3395 dnl         AC_MSG_RESULT(yes)
3396 dnl         AC_DEFINE(STRNDUP_IN_GNOME_H, 1,
3397 dnl                   Define if <gnome.h> defines strndup.)],[
3398 dnl         AC_MSG_RESULT(no)])
3399 dnl      ],[
3400 dnl       AC_MSG_ERROR([Can't find gnome headers. Please install the gnome
3401 dnl developement tools or remove the --enable-gnome option])
3402 dnl      ])
3403 dnl     CPPFLAGS="${CPPFLAGS_save}"
3404 dnl   fi])
3405
3406 dnl
3407 dnl  Gnome2 module ! Disabled for know as it is unuseable and confuses users
3408 dnl
3409 dnl AC_ARG_ENABLE(gnome2,
3410 dnl   [  --enable-gnome2         Gnome2 support (default disabled)])
3411 dnl if test "${enable_gnome2}" = "yes"
3412 dnl then
3413 dnl   PKG_CHECK_MODULES(GNOME2, [libgnomeui-2.0])
3414 dnl   VLC_ADD_CFLAGS([gnome2],[${GNOME2_CFLAGS}])
3415 dnl   VLC_ADD_LDFLAGS([gnome2],[${GNOME2_LIBS}])
3416 dnl   VLC_ADD_PLUGINS([gnome2])
3417 dnl   if test "${SYS}" != "mingw32"; then
3418 dnl     NEED_GNOME2_MAIN=yes
3419 dnl   fi
3420 dnl fi
3421
3422 dnl
3423 dnl  wxWindows module
3424 dnl
3425 AC_ARG_ENABLE(wxwindows,
3426   [  --enable-wxwindows      wxWindows support (default enabled)])
3427 if test "${enable_wxwindows}" != "no"
3428 then
3429   WXWINDOWS_PATH="${PATH}"
3430   AC_ARG_WITH(wx-config-path,
3431     [    --with-wx-config-path=PATH wx-config path (default search in \$PATH)],
3432     [ if test "${with_wx_config_path}" != "no"
3433       then
3434         WXWINDOWS_PATH="${with_wx_config_path}:${PATH}"
3435       fi ])
3436   # look for wx-config
3437   AC_PATH_PROG(WX_CONFIG, wx-config, no, ${WXWINDOWS_PATH})
3438   if test "${WX_CONFIG}" != "no"
3439   then
3440     if expr 2.3.0 \> `${WX_CONFIG} --version` >/dev/null
3441     then
3442       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.])
3443     fi
3444     AC_LANG_PUSH(C++)
3445     # Turn this error:
3446     #   playlist.cpp:1351: error: ISO C++ forbids cast to non-reference type
3447     # into a warning. However better would be to fix playlist.cpp
3448     AC_CACHE_CHECK([if \$CXX accepts -fpermissive],
3449         [ac_cv_cxx_fpermissive],
3450         [CXXFLAGS="${CXXFLAGS_save} -fpermissive"
3451          AC_TRY_COMPILE([],,ac_cv_cxx_fpermissive=yes,
3452                         ac_cv_cxx_fpermissive=no)])
3453     if test "${ac_cv_cxx_fpermissive}" = "yes"; then
3454       VLC_ADD_CXXFLAGS([wxwindows],-fpermissive)
3455     fi
3456     VLC_ADD_CXXFLAGS([wxwindows],[`${WX_CONFIG} --cxxflags`])
3457     VLC_ADD_LDFLAGS([wxwindows],[`${WX_CONFIG} --libs`])
3458     # now look for the wxprec.h header
3459     CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_wxwindows}"
3460     ac_cv_wx_headers=yes
3461     AC_CHECK_HEADERS(wx/wxprec.h, , [
3462       ac_cv_wx_headers=no
3463       echo "Cannot find wxWindows development headers."
3464     ])
3465     if test "${ac_cv_wx_headers}" = "yes"
3466     then
3467       VLC_ADD_PLUGINS([wxwindows])
3468       ALIASES="${ALIASES} wxvlc"
3469     fi
3470     CPPFLAGS="${CPPFLAGS_save}"
3471     AC_LANG_POP(C++)
3472   fi
3473 fi
3474
3475 dnl
3476 dnl Simple test for skins2 dependency
3477 dnl
3478 if test "${enable_skins2}" != "no"
3479 then
3480   if test "${WX_CONFIG}" = "no"
3481   then
3482     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.])
3483   fi
3484 fi
3485
3486 dnl dnl
3487 dnl dnl  Qt module
3488 dnl dnl
3489 dnl AC_ARG_ENABLE(qt,
3490 dnl   [  --enable-qt             Qt interface support (default disabled)],
3491 dnl   [if test "${enable_qt}" = "yes"; then
3492 dnl      VLC_ADD_PLUGINS([qt])
3493 dnl      ALIASES="${ALIASES} qvlc"
3494 dnl      VLC_ADD_LDFLAGS([qt],[-L${QTDIR}/lib])
3495 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt}"
3496 dnl      AC_CHECK_LIB(qt-mt,main,[
3497 dnl        VLC_ADD_LDFLAGS([qt],[-lqt-mt])
3498 dnl      ],[
3499 dnl        AC_CHECK_LIB(qt,main,[
3500 dnl          VLC_ADD_LDFLAGS([qt],[-lqt])
3501 dnl        ])
3502 dnl      ])
3503 dnl      LDFLAGS="${LDFLAGS_save}"
3504 dnl      VLC_ADD_CXXFLAGS([qt],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
3505 dnl      if test -x ${QTDIR}/bin/moc
3506 dnl      then
3507 dnl        MOC=${QTDIR}/bin/moc
3508 dnl      else
3509 dnl        MOC=moc
3510 dnl      fi
3511 dnl    fi])
3512 dnl 
3513 dnl dnl
3514 dnl dnl  KDE module
3515 dnl dnl
3516 dnl AC_ARG_ENABLE(kde,
3517 dnl   [  --enable-kde            KDE interface support (default disabled)],
3518 dnl   [if test "${enable_kde}" = "yes"; then
3519 dnl      VLC_ADD_PLUGINS([kde])
3520 dnl      ALIASES="${ALIASES} kvlc"
3521 dnl      VLC_ADD_LDFLAGS([kde],[-L${KDEDIR}/lib])
3522 dnl      dnl Check for -lkfile (only in KDE 2) or -lkdeui -lkio (KDE 3)
3523 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3524 dnl      AC_CHECK_LIB(kfile,main,[
3525 dnl        VLC_ADD_LDFLAGS([kde],[-lkfile])
3526 dnl      ])
3527 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3528 dnl      AC_CHECK_LIB(kdeui,main,[
3529 dnl        VLC_ADD_LDFLAGS([kde],[-lkdeui])
3530 dnl      ])
3531 dnl      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
3532 dnl      AC_CHECK_LIB(kio,main,[
3533 dnl        VLC_ADD_LDFLAGS([kde],[-lkio])
3534 dnl      ])
3535 dnl      LDFLAGS="${LDFLAGS_save}"
3536 dnl      VLC_ADD_CXXFLAGS([kde],[-I/usr/include/kde -I/usr/include/qt3 -I/usr/include/qt])
3537 dnl      VLC_ADD_CXXFLAGS([kde],[-I${KDEDIR}/include -I${QTDIR}/include])
3538 dnl      if test -x ${QTDIR}/bin/moc
3539 dnl      then
3540 dnl        MOC=${QTDIR}/bin/moc
3541 dnl      else
3542 dnl        MOC=moc
3543 dnl      fi
3544 dnl    fi])
3545
3546 dnl
3547 dnl  Opie QT embedded module
3548 dnl
3549 AC_ARG_ENABLE(opie,
3550   [  --enable-opie           Qt embedded interface support (default disabled)],
3551   [if test "${enable_opie}" = "yes"; then
3552      AC_ARG_WITH(qte,
3553      [    --with-qte=PATH       Qt Embedded headers and libraries])
3554      if test "${with_qte}" != "no" -a -n "${with_qte}"
3555      then
3556        VLC_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
3557        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])
3558      else
3559        VLC_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'`])
3560        VLC_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'`])
3561      fi
3562      CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_qte}"
3563      AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
3564        AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
3565      ] )
3566      CPPFLAGS="${CPPFLAGS_save}"
3567
3568      VLC_ADD_PLUGINS([opie])
3569      NEED_QTE_MAIN=yes
3570      VLC_ADD_LDFLAGS([opie],[-lqpe ${LDFLAGS_qte}])
3571      VLC_ADD_CXXFLAGS([opie],[${CXXFLAGS_qte}])
3572      if test "${with_qte}" != "no" -a -n "${with_qte}"
3573      then
3574        MOC=${with_qte}/bin/moc
3575      else
3576        MOC=${QTDIR}/bin/moc
3577      fi
3578    fi])
3579
3580 dnl
3581 dnl  MacOS X module
3582 dnl
3583 AC_ARG_ENABLE(macosx,
3584   [  --enable-macosx         MacOS X support (default enabled on MacOS X)],
3585   [if test "${enable_macosx}" = "yes"
3586    then
3587      VLC_ADD_BUILTINS([macosx])
3588      VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
3589    fi],
3590   [AC_CHECK_HEADERS(Cocoa/Cocoa.h,
3591      VLC_ADD_BUILTINS([macosx])
3592      VLC_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC -framework OpenGL])
3593    )])
3594
3595 dnl
3596 dnl  QNX RTOS module
3597 dnl
3598 AC_ARG_ENABLE(qnx,
3599   [  --enable-qnx            QNX RTOS support (default enabled on QNX RTOS)])
3600     if test "${enable_qnx}" != "no"
3601     then
3602       AC_CHECK_HEADERS(Ph.h, [
3603         VLC_ADD_PLUGINS([qnx])
3604         VLC_ADD_LDFLAGS([qnx],[-lasound -lph])
3605       ])
3606     fi
3607
3608 dnl
3609 dnl  ncurses module
3610 dnl
3611 AC_ARG_ENABLE(ncurses,
3612   [  --enable-ncurses        ncurses interface support (default disabled)],
3613   [if test "${enable_ncurses}" = "yes"; then
3614      VLC_ADD_PLUGINS([ncurses])
3615      VLC_ADD_LDFLAGS([ncurses],[-lncurses])
3616    fi])
3617
3618 dnl
3619 dnl  XOSD plugin
3620 dnl
3621 AC_ARG_ENABLE(xosd,
3622   [  --enable-xosd           xosd interface support (default disabled)])
3623 if test "${enable_xosd}" = "yes"
3624 then
3625   AC_CHECK_HEADER(xosd.h, have_xosd="true", have_xosd="false")
3626   AC_CHECK_LIB(xosd,xosd_set_offset,
3627       AC_DEFINE(HAVE_XOSD_VERSION_1, 1, Define if <xosd.h> is 1.0.x),
3628     AC_CHECK_LIB(xosd,xosd_set_horizontal_offset,
3629         AC_DEFINE(HAVE_XOSD_VERSION_2, 1, Define if <xosd.h> is 2.0.x),
3630       AC_TRY_COMPILE([#include <xosd.h>],
3631          [void foo() { xosd_init("foo","bar",12,XOSD_top,2,12,42); }],,
3632           AC_DEFINE(HAVE_XOSD_VERSION_0, 1, Define if <xosd.h> is pre-1.0.0))))
3633   if test "${have_xosd}" = "true"
3634   then
3635     VLC_ADD_PLUGINS([xosd])
3636     VLC_ADD_LDFLAGS([xosd],[-lxosd])
3637   fi
3638 fi
3639
3640 dnl
3641 dnl Visualisation plugin
3642 dnl
3643 AC_ARG_ENABLE(visual,
3644   [  --enable-visual         visualisation plugin (default enabled)])
3645 if test "${enable_visual}" != "no"
3646 then
3647     VLC_ADD_PLUGINS([visual])
3648 fi
3649
3650 dnl
3651 dnl OpenGL visualisation plugin
3652 dnl
3653 AC_ARG_ENABLE(galaktos,
3654   [  --enable-galaktos       OpenGL visualisation plugin (default disabled)])
3655 if test "${enable_galaktos}" = "yes"
3656 then
3657   AC_CHECK_HEADERS(GL/gl.h, [
3658     VLC_ADD_PLUGINS([galaktos])
3659     if test "${SYS}" != "mingw32"; then
3660       VLC_ADD_LDFLAGS([galaktos],[-L${x_libraries} -lGL -lGLU])
3661     else
3662       VLC_ADD_LDFLAGS([galaktos],[-lopengl32])
3663     fi
3664   ])
3665 fi
3666
3667 dnl
3668 dnl  goom visualization plugin
3669 dnl
3670 AC_ARG_ENABLE(goom,
3671 [  --enable-goom           goom visualisation plugin (default disabled)])
3672 if test "${enable_goom}" = "yes"
3673 then
3674   AC_ARG_WITH(goom-tree,
3675     [    --with-goom-tree=PATH goom tree for static linking (required)])
3676
3677   dnl
3678   dnl test for --with-goom-tree
3679   dnl
3680   if test "${with_goom_tree}" != "no" -a -n "${with_goom_tree}"; then
3681     AC_MSG_CHECKING(for libgoom2.a in ${with_goom_tree})
3682     real_goom_tree="`cd ${with_goom_tree} 2>/dev/null && pwd`"
3683     if test -z "${real_goom_tree}"; then
3684       dnl  The given directory can't be found
3685       AC_MSG_RESULT(no)
3686       AC_MSG_ERROR([cannot cd to ${with_goom_tree}])
3687     fi
3688     if test -f "${real_goom_tree}/src/.libs/libgoom2.a"; then
3689       AC_MSG_RESULT(${real_goom_tree}/src/.libs/libgoom2.a)
3690       VLC_ADD_BUILTINS([goom])
3691       VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree}/src/.libs -lgoom2])
3692       VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree}/src -DUSE_GOOM_TREE])
3693     else
3694       dnl  The given libgoom2 wasn't built, try to look for the old goom
3695       AC_MSG_RESULT(no)
3696       AC_MSG_CHECKING(for libgoom.a in ${with_goom_tree})
3697       if test -f "${real_goom_tree}/libgoom.a"; then
3698         AC_MSG_RESULT(${real_goom_tree}/libgoom.a)
3699         VLC_ADD_BUILTINS([goom])
3700         VLC_ADD_LDFLAGS([goom],[-L${real_goom_tree} -lgoom])
3701         VLC_ADD_CPPFLAGS([goom],[-I${real_goom_tree} -DUSE_GOOM_TREE -DOLD_GOOM])
3702       else
3703         dnl  The given libgoom wasn't built
3704         AC_MSG_RESULT(no)
3705         AC_MSG_ERROR([cannot find ${real_goom_tree}/src/.libs/libgoom2.a, make sure you compiled goom in ${with_goom_tree}])
3706       fi
3707     fi
3708   else
3709     AC_CHECK_HEADERS(goom/goom.h, [
3710       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_goom}"
3711       AC_CHECK_LIB(goom2, goom_init, [
3712         VLC_ADD_PLUGINS([goom])
3713         VLC_ADD_LDFLAGS([goom],[-lgoom2])
3714       ],[
3715         AC_MSG_ERROR([Could not find goom on your system: you may get it from http://www.ios-software.com/.])
3716       ])
3717       LDFLAGS="${LDFLAGS_save}"
3718     ])
3719   fi
3720 fi
3721
3722 dnl
3723 dnl  SLP access plugin
3724 dnl
3725 AC_ARG_ENABLE(slp,
3726   [  --enable-slp            SLP service discovery support (default disabled)])
3727 if test "${enable_slp}" = "yes"
3728 then
3729   AC_ARG_WITH(slp,
3730   [    --with-slp=PATH       libslp headers and libraries])
3731   if test -z "${with_slp}"
3732   then
3733     AC_CHECK_HEADERS(slp.h, have_slp="true", have_slp="false")
3734     if test "${have_slp}" = "true"
3735     then
3736       VLC_ADD_PLUGINS([slp])
3737       VLC_ADD_LDFLAGS([slp],[-lslp])
3738       VLC_ADD_LDFLAGS([stream_out_standard],[-lslp])
3739     fi
3740   else
3741     AC_MSG_CHECKING(for slp headers in ${with_slp})
3742     if test -f ${with_slp}/slp.h
3743     then
3744       dnl  Use ${with_slp}/libslp/slp.h
3745       AC_MSG_RESULT(yes)
3746       VLC_ADD_PLUGINS([slp])
3747       VLC_ADD_LDFLAGS([slp],[-L${with_slp} -lslp])
3748       VLC_ADD_LDFLAGS([stream_out_standard],[-L${with_slp} -lslp])
3749       VLC_ADD_CPPFLAGS([slp],[-I${with_slp}])
3750       AC_DEFINE(HAVE_SLP_H)
3751     else
3752       dnl  No libslp could be found, sorry
3753       AC_MSG_RESULT(no)
3754       AC_MSG_ERROR([cannot find ${with_slp}/slp.h])
3755     fi
3756   fi
3757 fi
3758
3759 dnl
3760 dnl  Lirc plugin
3761 dnl
3762 AC_ARG_ENABLE(lirc,
3763   [  --enable-lirc           lirc support (default disabled)])
3764 if test "${enable_lirc}" = "yes"
3765 then
3766   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
3767   if test "${have_lirc}" = "true"
3768   then
3769     VLC_ADD_PLUGINS([lirc])
3770     VLC_ADD_LDFLAGS([lirc],[-llirc_client])
3771   fi
3772 fi
3773
3774 dnl 
3775 dnl  Joystick plugin
3776 dnl
3777 AC_ARG_ENABLE(joystick,
3778   [  --enable-joystick       joystick control (default enabled)])
3779 if test "${enable_joystick}" = "yes"; then
3780   AC_CHECK_HEADER(linux/joystick.h, [VLC_ADD_PLUGINS([joystick])])
3781 fi
3782
3783 dnl
3784 dnl corba (ORBit) plugin
3785 dnl
3786 dnl Default: do not enable corba
3787 enablecorba=false
3788 AC_ARG_ENABLE(corba,
3789   [  --enable-corba          corba interface support (default disabled)])
3790 if test "${enable_corba}" = "yes"; then
3791       GLIB_VERSION=2.3.2
3792       PKG_CHECK_MODULES(CORBA, 
3793         ORBit-2.0 >= 2.8.0 \
3794         glib-2.0 >= $GLIB_VERSION \
3795         gobject-2.0 >= $GLIB_VERSION \
3796         gthread-2.0 >= $GLIB_VERSION,
3797         [
3798           enablecorba=true
3799           VLC_ADD_LDFLAGS([corba],[$CORBA_LIBS])
3800           VLC_ADD_CFLAGS([corba],[$CORBA_CFLAGS])
3801           VLC_ADD_PLUGINS([corba snapshot]) ],
3802         [ enablecorba=false
3803           AC_MSG_WARN(corba library not found) ])
3804 fi
3805 AM_CONDITIONAL(ENABLE_CORBA, test "$enablecorba" = "true")
3806
3807 AC_ARG_WITH(,[Misc options:])
3808
3809 dnl
3810 dnl GnuTLS-based TLS/SSL support
3811 dnl
3812 AC_ARG_WITH(libgnutls-prefix,
3813           [  --with-libgnutls-prefix=PREFIX set prefix where libgnutls is installed],
3814           libgnutls_config_prefix="$withval", libgnutls_config_prefix="")
3815
3816 AS_IF([test x$libgnutls_config_prefix != x],
3817   AS_IF([test x${LIBGNUTLS_CONFIG+set} != xset],
3818     LIBGNUTLS_CONFIG=$libgnutls_config_prefix/bin/libgnutls-config
3819   )
3820 )
3821
3822 if test "x$enable_gnutls" == "xyes"; then
3823   AC_PATH_PROG(LIBGNUTLS_CONFIG, libgnutls-config, no)
3824   no_libgnutls=""
3825
3826   AC_MSG_CHECKING(for libgnutls - version >= 1.0.0)
3827   AS_IF([test "$LIBGNUTLS_CONFIG" = "no"],
3828     no_libgnutls=yes
3829     ,
3830     LIBGNUTLS_CFLAGS=`$LIBGNUTLS_CONFIG $libgnutls_config_args --cflags`
3831     LIBGNUTLS_LIBS=`$LIBGNUTLS_CONFIG $libgnutls_config_args --libs`
3832     libgnutls_config_version=`$LIBGNUTLS_CONFIG $libgnutls_config_args --version`
3833   )
3834
3835   AS_IF([test "x$no_libgnutls" = x],
3836     AC_MSG_RESULT(yes)
3837     VLC_ADD_CFLAGS([gnutls], [$LIBGNUTLS_CFLAGS])
3838     VLC_ADD_LDFLAGS([gnutls], [$LIBGNUTLS_LIBS])
3839     AC_DEFINE(HAVE_GNUTLS, 1, Define to 1 if you have libgnutls)
3840     ,
3841     AC_MSG_RESULT(no)
3842     LIBGNUTLS_CFLAGS=""
3843     LIBGNUTLS_LIBS=""
3844     AC_MSG_ERROR(gnutls TLS/SSL support cannot be compiled)
3845   )
3846 fi
3847
3848 dnl
3849 dnl  Endianness check, AC_C_BIGENDIAN doesn't work if we are cross-compiling
3850 dnl
3851 dnl  We give the user the opportunity to specify
3852 dnl  --with-words=big or --with-words=little ; otherwise, try to guess
3853 dnl
3854 AC_ARG_WITH(words,
3855   [  --with-words=endianness set endianness (big or little)])
3856   case "${with_words}" in
3857     big)
3858       ac_cv_c_bigendian=yes
3859       ;;
3860     little)
3861       ac_cv_c_bigendian=no
3862       ;;
3863     *)
3864       dnl  Try to guess endianness by matching patterns on a compiled
3865       dnl  binary, by looking for an ASCII or EBCDIC string
3866       AC_CACHE_CHECK([whether the byte order is big-endian],
3867         [ac_cv_c_bigendian],
3868         [ac_cv_c_bigendian="unknown"
3869         [cat >conftest.c <<EOF
3870         short am[] = { 0x4249, 0x4765, 0x6e44, 0x6961, 0x6e53, 0x7953, 0 };
3871         short ai[] = { 0x694c, 0x5454, 0x656c, 0x6e45, 0x6944, 0x6e61, 0 };
3872         void _a(void) { char*s = (char*)am; s = (char *)ai; }
3873         short ei[] = { 0x89D3, 0xe3e3, 0x8593, 0x95c5, 0x89c4, 0x9581, 0 };
3874         short em[] = { 0xc2c9, 0xc785, 0x95c4, 0x8981, 0x95e2, 0xa8e2, 0 };
3875         void _e(void) { char*s = (char*)em; s = (char*)ei; }
3876         int main(void) { _a(); _e(); return 0; }
3877 EOF
3878         ]
3879         if test -f conftest.c
3880         then
3881           if ${CC-cc} -c conftest.c -o conftest.o >>config.log 2>&1 \
3882               && test -f conftest.o
3883           then
3884             if test "`strings conftest.o | grep BIGenDianSyS`"
3885             then
3886               ac_cv_c_bigendian="yes"
3887             fi
3888             if test "`strings conftest.o | grep LiTTleEnDian`"
3889             then
3890               ac_cv_c_bigendian="no"
3891             fi
3892           fi
3893         fi
3894       ])
3895       if test "${ac_cv_c_bigendian}" = "unknown"
3896       then
3897         AC_MSG_ERROR([Could not guess endianness, please use --with-words])
3898       fi
3899       ;;
3900   esac
3901 dnl  Now we know what to use for endianness, just put it in the header
3902 if test "${ac_cv_c_bigendian}" = "yes"
3903 then
3904   AC_DEFINE(WORDS_BIGENDIAN, 1, big endian system)
3905 fi
3906
3907 dnl
3908 dnl  Mozilla plugin
3909 dnl
3910 mozilla=false
3911 AC_ARG_ENABLE(mozilla,
3912   [  --enable-mozilla        build a vlc-based Mozilla plugin (default disabled)])
3913 if test "${enable_mozilla}" = "yes" -a "${SYS}" != "mingw32"
3914 then
3915   AC_PATH_PROG(MOZILLA_CONFIG, mozilla-config, no)
3916   if test "${MOZILLA_CONFIG}" = "no"
3917   then
3918     AC_MSG_ERROR([Please install the Mozilla development tools, mozilla-config was not found.])
3919   else
3920     if test "${SYS}" != "mingw32"; then
3921       LDFLAGS="${LDFLAGS_save} -L${x_libraries}"
3922       AC_CHECK_LIB(Xt,XtStrings,
3923        [VLC_ADD_LDFLAGS([mozilla],[-L${x_libraries} -lXt -lX11 -lSM -lICE])],
3924        [],
3925        [[-L${x_libraries} -lX11 -lSM -lICE]
3926       ])
3927       LDFLAGS="${LDFLAGS_save}"
3928     fi
3929     mozilla=:
3930     dnl Workaround for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=150490
3931     VLC_ADD_CPPFLAGS([mozilla],[[`${MOZILLA_CONFIG} --cflags plugin xpcom java | sed 's,-I\([^ ]*\)/mozilla/\([^ ]*\),-I\1/\2 -I\1/mozilla/\2,g' | xargs`]])
3932     VLC_ADD_LDFLAGS([mozilla],[`${MOZILLA_CONFIG} --libs plugin xpcom`])
3933     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mozilla}"
3934     AC_CHECK_HEADERS(mozilla-config.h)
3935     CPPFLAGS="${CPPFLAGS_save}"
3936   fi
3937
3938 dnl special case for mingw32
3939 elif test "${enable_mozilla}" = "yes"
3940 then
3941   AC_CHECK_TOOL(CYGPATH, cygpath, "")
3942   AC_ARG_WITH(mozilla-sdk-path,
3943     [    --with-mozilla-sdk-path=PATH path to win32 mozilla sdk], [
3944     real_mozilla_sdk="`cd ${with_mozilla_sdk_path} 2>/dev/null && pwd`"
3945     CPPFLAGS="${CPPFLAGS_save} ${real_mozilla_sdk}"
3946     AC_CHECK_HEADERS(mozilla-config.h, [
3947       mozilla=:
3948       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])
3949       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])
3950       XPIDL_INCL="-I${real_mozilla_sdk}/xpcom/idl"
3951       if test -n "${CYGPATH}"; then
3952         XPIDL="${real_mozilla_sdk}/xpcom/bin/xpidl"
3953         real_mozilla_sdk="`${CYGPATH} -w ${real_mozilla_sdk}`"
3954         XPIDL_INCL="${XPIDL_INCL} -I\"${real_mozilla_sdk}/xpcom/idl\""
3955       fi ])
3956     CPPFLAGS="${CPPFLAGS_save}"
3957   ])
3958 fi
3959
3960 dnl Not necessarily in ${PATH}
3961 if test -z "${XPIDL}" -o ! -x "${XPIDL}"; then
3962   XPIDL="/usr/lib/mozilla/xpidl"
3963 fi
3964 AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
3965
3966 dnl
3967 dnl  test plugins
3968 dnl
3969 AC_ARG_ENABLE(testsuite,
3970   [  --enable-testsuite      build test modules (default disabled)])
3971 if test "${enable_testsuite}" = "yes"
3972 then
3973   TESTS="test1 test2 test3 test4"
3974
3975   dnl  we define those so that bootstrap sets the right linker
3976   VLC_ADD_CXXFLAGS([test2],[])
3977   VLC_ADD_OBJCFLAGS([test3],[])
3978   dnl  this one is needed until automake knows what to do
3979   VLC_ADD_LDFLAGS([test3],[-lobjc])
3980
3981   VLC_ADD_PLUGINS([${TESTS}])
3982   #VLC_ADD_BUILTINS([${TESTS}])
3983 fi
3984
3985 dnl
3986 dnl  gtk_main plugin
3987 dnl
3988 if test "${NEED_GTK_MAIN}" != "no"
3989 then
3990     VLC_ADD_PLUGINS([gtk_main])
3991     VLC_ADD_CFLAGS([gtk_main],[${CFLAGS_gtk}])
3992     VLC_ADD_LDFLAGS([gtk_main],[${LDFLAGS_gtk}])
3993 fi
3994
3995 if test "${NEED_GNOME_MAIN}" != "no"
3996 then
3997     VLC_ADD_PLUGINS([gnome_main])
3998     VLC_ADD_CFLAGS([gnome_main],[${CFLAGS_gtk} ${CFLAGS_gnome}])
3999     VLC_ADD_LDFLAGS([gnome_main],[${LDFLAGS_gtk} ${LDFLAGS_gnome}])
4000 fi
4001
4002 if test "${NEED_GTK2_MAIN}" != "no"
4003 then
4004     VLC_ADD_PLUGINS([gtk2_main])
4005     VLC_ADD_CFLAGS([gtk2],[-DNEED_GTK2_MAIN])
4006     VLC_ADD_CFLAGS([pda],[-DNEED_GTK2_MAIN])
4007     VLC_ADD_CFLAGS([gtk2_main],[${CFLAGS_gtk2} ${CFLAGS_pda}])
4008     VLC_ADD_LDFLAGS([gtk2_main],[${LDFLAGS_gtk2} ${LDFLAGS_pda}])
4009 fi
4010
4011 if test "${NEED_GNOME2_MAIN}" != "no"
4012 then
4013     VLC_ADD_PLUGINS([gnome2_main])
4014     VLC_ADD_CFLAGS([gnome2_main],[${CFLAGS_gtk2} ${CFLAGS_gnome2}])
4015     VLC_ADD_LDFLAGS([gnome2_main],[${LDFLAGS_gtk2} ${LDFLAGS_gnome2}])
4016 fi
4017
4018 dnl
4019 dnl  qte_main plugin
4020 dnl
4021 if test "${NEED_QTE_MAIN}" != "no"
4022 then
4023     VLC_ADD_PLUGINS([qte_main])
4024     VLC_ADD_CXXFLAGS([opie qte qt_video],[-DNEED_QTE_MAIN])
4025     VLC_ADD_CXXFLAGS([qte_main],[${CXXFLAGS_qte} ${CXXFLAGS_qt_video}])
4026     VLC_ADD_LDFLAGS([qte_main],[${LDFLAGS_qte} ${LDFLAGS_qt_video}])
4027 fi
4028
4029
4030 dnl
4031 dnl  Plugin and builtin checks
4032 dnl
4033 builtin_support=false
4034 plugin_support=:
4035
4036 dnl Support for plugins - this must be AT THE END
4037 AC_ARG_ENABLE(plugins,
4038   [  --disable-plugins       make all plugins built-in (default plugins enabled)],
4039   [if test "${enable_plugins}" = "no"
4040    then
4041      plugin_support=false
4042    fi])
4043
4044 dnl Automagically disable plugins if there is no system support for
4045 dnl dynamically loadable files (.so, .dll, .dylib).
4046 dnl don't forget vlc-win32 still can load .dll as plugins
4047 if test "${ac_cv_have_plugins}" = "no"
4048 then
4049   echo "*** Your system doesn't have plugin support. All plugins will be built"
4050   echo "statically."
4051   plugin_support=false
4052 fi
4053
4054 dnl Export automake variables
4055 if ${plugin_support}
4056 then
4057   for plugin in `echo ${PLUGINS}`
4058   do
4059     eval "${plugin}_p=yes"
4060   done
4061 else
4062   VLC_ADD_BUILTINS([${PLUGINS}])
4063   PLUGINS=""
4064 fi
4065 AM_CONDITIONAL(HAVE_PLUGINS, ${plugin_support})
4066
4067 [if echo "${BUILTINS}" | grep '[^ ]' >/dev/null 2>&1
4068 then
4069   builtin_support=:
4070   for builtin in `echo ${BUILTINS}`
4071   do
4072     eval "${builtin}_b=yes"
4073   done
4074 fi]
4075 AM_CONDITIONAL(HAVE_BUILTINS, ${builtin_support})
4076
4077 dnl Import conditional variables generated by bootstrap
4078 VLC_CONDITIONALS
4079
4080 dnl
4081 dnl  Stuff used by the program
4082 dnl
4083 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION} ${CODENAME}", [Simple version string])
4084 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "VLC media player - version ${VERSION} ${CODENAME} - (c) 1996-2004 VideoLAN", [Copyright string])
4085 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
4086
4087 VLC_SYMBOL="`echo ${VERSION} | sed -e 'y/.-+/___/'`"
4088 AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${VLC_SYMBOL}", [String suffix for module functions])
4089 AC_DEFINE_UNQUOTED(MODULE_SYMBOL, ${VLC_SYMBOL}, [Symbol suffix for module functions])
4090
4091 DATA_PATH="${ac_tool_prefix}/share/vlc"
4092 AC_SUBST(DATA_PATH)
4093 PLUGIN_PATH="${ac_tool_prefix}/lib/vlc"
4094 AC_SUBST(PLUGIN_PATH)
4095
4096 dnl
4097 dnl  Handle substvars that use $(top_srcdir)
4098 dnl
4099 VLC_CONFIG="top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config"
4100 AC_SUBST(VLC_CONFIG)
4101 CPPFLAGS_save="${CPPFLAGS_save} -I\$(top_srcdir)/include"
4102
4103 dnl
4104 dnl  Restore *FLAGS
4105 dnl
4106 VLC_RESTORE_FLAGS
4107
4108 dnl
4109 dnl  Create the vlc-config script
4110 dnl
4111 LDFLAGS_libvlc="${LDFLAGS_vlc} ${LDFLAGS_builtin}"
4112 for i in `echo "${BUILTINS}" | sed -e 's@[^ ]*/@@g'` ; do LDFLAGS_libvlc="${LDFLAGS_libvlc} ${libdir}/vlc/${i}.a `eval echo '$'{LDFLAGS_${i}}`" ; done
4113
4114 dnl
4115 dnl  Configuration is finished
4116 dnl
4117 AC_SUBST(SYS)
4118 AC_SUBST(ARCH)
4119 AC_SUBST(ALIASES)
4120 AC_SUBST(ASM)
4121 AC_SUBST(MOC)
4122 AC_SUBST(WINDRES)
4123 AC_SUBST(XPIDL)
4124 AC_SUBST(XPIDL_INCL)
4125 AC_SUBST(LIBEXT)
4126 AC_SUBST(INCLUDES)
4127 AC_SUBST(ALL_LINGUAS)
4128
4129 dnl Import substitutions generated by bootstrap
4130 VLC_SUBSTS
4131
4132 dnl Create vlc-config.in
4133 VLC_OUTPUT_VLC_CONFIG_IN
4134
4135 AC_CONFIG_FILES([
4136   Makefile
4137   debian/Makefile
4138   doc/Makefile
4139   intl/Makefile
4140   ipkg/Makefile
4141   lib/Makefile
4142   modules/Makefile
4143   mozilla/Makefile
4144   m4/Makefile
4145   po/Makefile.in
4146   share/Makefile
4147   src/Makefile
4148 ])
4149
4150 AC_CONFIG_FILES([
4151   modules/access/Makefile
4152   modules/access/dshow/Makefile
4153   modules/access/dvb/Makefile
4154   modules/access/mms/Makefile
4155   modules/access/pvr/Makefile
4156   modules/access/satellite/Makefile
4157   modules/access/v4l/Makefile
4158   modules/access/cdda/Makefile
4159   modules/access/vcd/Makefile
4160   modules/access/vcdx/Makefile
4161   modules/access/screen/Makefile
4162   modules/access_output/Makefile
4163   modules/audio_filter/Makefile
4164   modules/audio_filter/channel_mixer/Makefile
4165   modules/audio_filter/converter/Makefile
4166   modules/audio_filter/resampler/Makefile
4167   modules/audio_mixer/Makefile
4168   modules/audio_output/Makefile
4169   modules/codec/Makefile
4170   modules/codec/cmml/Makefile
4171   modules/codec/dmo/Makefile
4172   modules/codec/ffmpeg/Makefile
4173   modules/codec/ogt/Makefile
4174   modules/codec/spudec/Makefile
4175   modules/control/Makefile
4176   modules/control/corba/Makefile
4177   modules/demux/Makefile
4178   modules/demux/asf/Makefile
4179   modules/demux/avi/Makefile
4180   modules/demux/mp4/Makefile
4181   modules/demux/mpeg/Makefile
4182   modules/demux/playlist/Makefile
4183   modules/demux/util/Makefile
4184   modules/gui/Makefile
4185   modules/gui/beos/Makefile
4186   modules/gui/pda/Makefile
4187   modules/gui/gtk/Makefile
4188   modules/gui/gtk2/Makefile
4189   modules/gui/kde/Makefile
4190   modules/gui/macosx/Makefile
4191   modules/gui/qnx/Makefile
4192   modules/gui/qt/Makefile
4193   modules/gui/skins2/Makefile
4194   modules/gui/wxwindows/Makefile
4195   modules/misc/Makefile
4196   modules/misc/dummy/Makefile
4197   modules/misc/memcpy/Makefile
4198   modules/misc/network/Makefile
4199   modules/misc/testsuite/Makefile
4200   modules/misc/playlist/Makefile
4201   modules/misc/xml/Makefile
4202   modules/mux/Makefile
4203   modules/mux/mpeg/Makefile
4204   modules/packetizer/Makefile
4205   modules/services_discovery/Makefile
4206   modules/stream_out/Makefile
4207   modules/stream_out/transrate/Makefile
4208   modules/video_chroma/Makefile
4209   modules/video_filter/Makefile
4210   modules/video_filter/swscale/Makefile
4211   modules/video_output/Makefile
4212   modules/video_output/directx/Makefile
4213   modules/video_output/qte/Makefile
4214   modules/video_output/x11/Makefile
4215   modules/visualization/Makefile
4216   modules/visualization/visual/Makefile
4217   modules/visualization/galaktos/Makefile
4218 ])
4219
4220 AC_CONFIG_FILES([vlc-config], [chmod 0755 vlc-config])
4221
4222 dnl Generate makefiles
4223 AC_OUTPUT
4224
4225 printf "
4226 vlc configuration
4227 --------------------
4228 vlc version           : ${VERSION}
4229 system                : ${SYS}
4230 architecture          : ${ARCH}
4231 build flavour         : "
4232 test "${enable_debug}" = "yes" && printf "debug "
4233 test "${enable_cprof}" = "yes" && printf "cprof "
4234 test "${enable_gprof}" = "yes" && printf "gprof "
4235 test "${enable_optimizations}" = "yes" && printf "optim "
4236 test "${enable_release}" = "yes" && printf "release " || printf "devel "
4237 echo "
4238 vlc aliases           :${ALIASES}
4239
4240 You can tune the compiler flags in vlc-config.
4241 To build vlc and its plugins, type \`make'.
4242 "
4243