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