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