]> git.sesse.net Git - vlc/blob - configure.ac
* include/vlc_common.h:
[vlc] / configure.ac
1 dnl Autoconf settings for vlc
2 dnl $Id: configure.ac,v 1.94 2003/10/24 21:27:06 gbazin 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_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   AC_CHECK_HEADERS(ebml/EbmlVersion.h matroska/KaxVersion.h, [
1551     AC_CHECK_HEADERS(matroska/KaxAttachments.h)
1552     AX_ADD_PLUGINS([mkv])
1553     AX_ADD_CXXFLAGS([mkv],[])
1554     AC_CHECK_LIB(ebml_pic,main,[
1555       # We have ebml_pic, that's good, we can build an mkv.so plugin !
1556       AX_ADD_LDFLAGS([mkv],[-lmatroska_pic -lebml_pic])
1557     ],[
1558       AX_ADD_LDFLAGS([mkv],[-lmatroska -lebml])
1559     ])
1560   ])
1561   CPPFLAGS="${CPPFLAGS_save}"
1562 AC_LANG_POP(C++)
1563 fi
1564
1565 dnl
1566 dnl  Codec plugins
1567 dnl
1568
1569 AC_ARG_WITH(,[Codec plugins:])
1570
1571 dnl
1572 dnl  mad plugin
1573 dnl
1574 AC_ARG_ENABLE(mad,
1575   [  --enable-mad            libmad module (default enabled)])
1576 if test "${enable_mad}" != "no"
1577 then
1578   AC_ARG_WITH(mad,
1579     [    --with-mad=PATH       path to libmad],[],[])
1580   if test "${with_mad}" != "no" -a -n "${with_mad}"
1581   then
1582     AX_ADD_CPPFLAGS([mpgatofixed32],[-I${with_mad}/include])
1583     AX_ADD_LDFLAGS([mpgatofixed32],[-L${with_mad}/lib])
1584   fi
1585
1586   AC_ARG_WITH(mad-tree,
1587     [    --with-mad-tree=PATH  mad tree for static linking],[],[])
1588   if test "${with_mad_tree}" != "no" -a -n "${with_mad_tree}"
1589   then
1590     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
1591     if test -z "${real_mad_tree}"
1592     then
1593       dnl  The given directory can't be found
1594       AC_MSG_RESULT(no)
1595       AC_MSG_ERROR([${with_mad_tree} directory doesn't exist])
1596     fi
1597     dnl  Use a custom libmad
1598     AC_MSG_CHECKING(for mad.h in ${real_mad_tree}/libmad)
1599     if test -f ${real_mad_tree}/libmad/mad.h
1600     then
1601       AC_MSG_RESULT(yes)
1602       AX_ADD_CPPFLAGS([mpgatofixed32],[-I${real_mad_tree}/libmad])
1603       AX_ADD_LDFLAGS([mpgatofixed32],[-L${real_mad_tree}/libmad/.libs])
1604       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
1605       AC_CHECK_LIB(mad, mad_bit_init, [
1606         AX_ADD_BUILTINS([mpgatofixed32])
1607         AX_ADD_LDFLAGS([mpgatofixed32],[-lmad])
1608         ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ])
1609       ],[])
1610       LDFLAGS="${LDFLAGS_save}"
1611     else
1612       AC_MSG_RESULT(no)
1613       AC_MSG_ERROR([the specified tree doesn't have mad.h])
1614     fi
1615   else
1616     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mpgatofixed32}"
1617     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_mpgatofixed32}"
1618     AC_CHECK_HEADERS(mad.h, ,
1619       [ 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.]) ])
1620     AC_CHECK_LIB(mad, mad_bit_init, [
1621       AX_ADD_PLUGINS([mpgatofixed32])
1622       AX_ADD_LDFLAGS([mpgatofixed32],[-lmad])],
1623       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
1624     CPPFLAGS="${CPPFLAGS_save}"
1625     LDFLAGS="${LDFLAGS_save}"
1626   fi
1627 fi
1628
1629 dnl
1630 dnl   libid3tag support
1631 dnl
1632 AC_CHECK_HEADERS(id3tag.h, [
1633   AC_CHECK_HEADERS(zlib.h, [
1634     AX_ADD_LDFLAGS([id3tag],[-lid3tag -lz])
1635     AX_ADD_PLUGINS([id3tag])]) ])
1636
1637 dnl
1638 dnl  ffmpeg decoder plugin
1639 dnl
1640 AC_ARG_ENABLE(ffmpeg,
1641 [  --enable-ffmpeg         ffmpeg codec (default enabled)])
1642 if test "${enable_ffmpeg}" != "no"
1643 then
1644   AC_ARG_WITH(ffmpeg-mp3lame,
1645     [    --with-ffmpeg-mp3lame   if ffmpeg has been compiled with mp3lame support],
1646     [
1647       dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1648       dnl       linker would miserably barf on multiple definitions.
1649       AX_ADD_LDFLAGS([stream_out_transcode],[])
1650       AX_ADD_LDFLAGS([ffmpeg],[-lmp3lame]) ])
1651
1652   AC_ARG_WITH(ffmpeg-faac,
1653     [    --with-ffmpeg-faac      if ffmpeg has been compiled with faac support],
1654     [
1655       dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1656       dnl       linker would miserably barf on multiple definitions.
1657       AX_ADD_LDFLAGS([stream_out_transcode],[])
1658       AX_ADD_LDFLAGS([ffmpeg],[-lfaac]) ])
1659
1660   AC_ARG_WITH(ffmpeg-tree,
1661     [    --with-ffmpeg-tree=PATH ffmpeg tree for static linking])
1662
1663   dnl
1664   dnl test for !(--with-ffmpeg-tree)
1665   dnl
1666   if test "${with_ffmpeg_tree}" = "no" -o -z "${with_ffmpeg_tree}";then
1667     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_ffmpeg}"
1668     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_ffmpeg}"
1669     AC_CHECK_HEADERS(ffmpeg/avcodec.h postproc/postprocess.h)
1670     AC_CHECK_LIB(avcodec, avcodec_init, [
1671       AX_ADD_BUILTINS([ffmpeg stream_out_transcode])
1672       AX_ADD_LDFLAGS([ffmpeg],[-lavcodec])
1673       dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1674       dnl       linker would miserably barf on multiple definitions.
1675       AX_ADD_LDFLAGS([stream_out_transcode],[]) ],
1676        [ 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.]) ])
1677     LDFLAGS="${LDFLAGS_save}"
1678     CPPFLAGS="${CPPFLAGS_save}"
1679   fi
1680
1681   dnl
1682   dnl test for --with-ffmpeg-tree
1683   dnl
1684   if test "${with_ffmpeg_tree}" != "no" -a -n "${with_ffmpeg_tree}";then
1685     AC_MSG_CHECKING(for libavcodec.a in ${with_ffmpeg_tree})
1686     real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
1687     if test -z "${real_ffmpeg_tree}"; then
1688       dnl  The given directory can't be found
1689       AC_MSG_RESULT(no)
1690       AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
1691     fi
1692     if test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"; then
1693       dnl  Use a custom libffmpeg
1694       AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodec.a)
1695       AX_ADD_BUILTINS([ffmpeg stream_out_transcode])
1696       AX_ADD_LDFLAGS([ffmpeg],[-L${real_ffmpeg_tree}/libavcodec -lavcodec])
1697       AX_ADD_CPPFLAGS([ffmpeg],[-I${real_ffmpeg_tree}/libavcodec])
1698
1699       dnl  XXX: we don't link with -lavcodec a 2nd time because the OS X
1700       dnl       linker would miserably barf on multiple definitions.
1701       AX_ADD_LDFLAGS([stream_out_transcode],[-L${real_ffmpeg_tree}/libavcodec])
1702       AX_ADD_CPPFLAGS([stream_out_transcode],[-I${real_ffmpeg_tree}/libavcodec])
1703     else
1704       dnl  The given libavcodec wasn't built
1705       AC_MSG_RESULT(no)
1706       AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}])
1707     fi
1708   fi
1709
1710   ac_have_vorbis_headers=yes
1711   AC_CHECK_HEADERS(vorbis/vorbisenc.h vorbis/codec.h,,
1712       ac_have_vorbis_headers=no)
1713   if test "$ac_have_vorbis_headers" = "yes"; then
1714     AX_ADD_LDFLAGS([stream_out_transcode],[-lvorbisenc -lvorbis -logg])
1715   fi
1716 fi
1717
1718 dnl
1719 dnl  faad decoder plugin
1720 dnl
1721 AC_ARG_ENABLE(faad,
1722 [  --enable-faad           faad codec (default disabled)])
1723 if test "${enable_faad}" = "yes"
1724 then
1725   AC_ARG_WITH(faad-tree,
1726   [    --with-faad-tree=PATH faad tree for static linking])
1727   if test -n "${with_faad_tree}"
1728   then
1729     AC_MSG_CHECKING(for libfaad.a in ${with_faad_tree})
1730     real_faad_tree="`cd ${with_faad_tree} 2>/dev/null && pwd`"
1731     if test -z "${real_faad_tree}"
1732     then
1733       dnl  The given directory can't be found
1734       AC_MSG_RESULT(no)
1735       AC_MSG_ERROR([cannot cd to ${with_faad_tree}])
1736     fi
1737     if test -f "${real_faad_tree}/libfaad/.libs/libfaad.a"
1738     then
1739       dnl  Use a custom faad
1740       AC_MSG_RESULT(${real_faad_tree}/libfaad/.libs/libfaad.a)
1741       AX_ADD_BUILTINS([faad])
1742       AX_ADD_LDFLAGS([faad],[-L${real_faad_tree}/libfaad/.libs -lfaad])
1743       AX_ADD_CPPFLAGS([faad],[-I${real_faad_tree}/include])
1744       CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
1745       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_faad}"
1746       AC_TRY_COMPILE([#include <faad.h>],
1747         [faacDecHandle a; faacDecFrameInfo *b; unsigned char *c;
1748          unsigned long d; faacDecDecode(a,b,c,d);],
1749         [], [AC_DEFINE(HAVE_OLD_FAAD2, 1, Define if FAAD2 < 1.2)])
1750       LDFLAGS="${LDFLAGS_save}"
1751       CPPFLAGS="${CPPFLAGS_save}"
1752     else
1753       dnl  The given libfaad wasn't built
1754       AC_MSG_RESULT(no)
1755       AC_MSG_ERROR([cannot find ${real_faad_tree}/libfaad/.libs/libfaad.a, make sure you compiled libfaad in ${with_faad_tree}])
1756     fi
1757   else
1758     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_faad}"
1759     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_faad}"
1760     AC_CHECK_HEADERS(faad.h, ,
1761       [ AC_MSG_ERROR([Cannot find development headers for libfaad...]) ])
1762     AC_CHECK_LIB(faad, faacDecOpen, [
1763       AX_ADD_PLUGINS([faad])
1764       AX_ADD_LDFLAGS([faad],[-lfaad])
1765       AC_TRY_COMPILE([#include <faad.h>],
1766         [faacDecHandle a; faacDecFrameInfo *b; unsigned char *c;
1767          unsigned long d; faacDecDecode(a,b,c,d);],
1768         [], [AC_DEFINE(HAVE_OLD_FAAD2, 1, Define if FAAD2 < 1.2)]) ],
1769       [ AC_MSG_ERROR([Cannot find libfaad library...]) ])
1770     LDFLAGS="${LDFLAGS_save}"
1771     CPPFLAGS="${CPPFLAGS_save}"
1772   fi
1773 fi
1774
1775
1776 dnl
1777 dnl  xvid decoder plugin
1778 dnl
1779 AC_ARG_ENABLE(xvid,
1780 [  --enable-xvid           xvid codec (default disabled)])
1781 if test "${enable_xvid}" = "yes"
1782 then
1783   AC_ARG_WITH(xvid,
1784     [    --with-xvid=PATH      path to xvid installation],[],[])
1785   if test "${with_xvid}" != "no" -a -n "${with_xvid}"
1786   then
1787     AX_ADD_CPPFLAGS([xvid],[-I${with_xvid}/include])
1788     AX_ADD_LDFLAGS([xvid],[-L${with_xvid}/lib])
1789   fi
1790
1791   AC_ARG_WITH(xvid-tree,
1792   [    --with-xvid-tree=PATH xvid tree for static linking])
1793   if test -n "${with_xvid_tree}"
1794   then
1795     AC_MSG_CHECKING(for libxvidcore.a in ${with_xvid_tree})
1796     real_xvid_tree="`cd ${with_xvid_tree} 2>/dev/null && pwd`"
1797     if test -z "${real_xvid_tree}"
1798     then
1799       dnl  The given directory can't be found
1800       AC_MSG_RESULT(no)
1801       AC_MSG_ERROR([cannot cd to ${with_xvid_tree}])
1802     fi
1803     if test -f "${real_xvid_tree}/build/generic/libxvidcore.a"
1804     then
1805       dnl  Use a custom xvid
1806       AC_MSG_RESULT(${real_xvid_tree}/build/generic/libxvidcore.a)
1807       AX_ADD_BUILTINS([xvid])
1808       AX_ADD_LDFLAGS([xvid],[-L${real_xvid_tree}/build/generic -lxvidcore])
1809       AX_ADD_CPPFLAGS([xvid],[-I${real_xvid_tree}/src])
1810     else
1811       dnl  The given libxvidcore wasn't built
1812       AC_MSG_RESULT(no)
1813       AC_MSG_ERROR([cannot find ${real_xvid_tree}/build/generic/libxvidcore.a, make sure you compiled libxvidcore in ${with_xvid_tree}])
1814     fi
1815   else
1816     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_xvid}"
1817     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_xvid}"
1818     AC_CHECK_HEADERS(xvid.h, ,
1819       [ AC_MSG_ERROR([Cannot find development headers for libxvidcore...]) ])
1820     AC_CHECK_LIB(xvidcore, xvid_init, [
1821       AX_ADD_PLUGINS([xvid])
1822       AX_ADD_LDFLAGS([xvid],[-lxvidcore]) ],
1823       [ AC_MSG_ERROR([Cannot find libxvidcore library...]) ])
1824     LDFLAGS="${LDFLAGS_save}"
1825     CPPFLAGS="${CPPFLAGS_save}"
1826   fi
1827 fi
1828
1829 dnl
1830 dnl  QuickTime plugin
1831 dnl
1832 AC_ARG_ENABLE(quicktime,
1833   [  --enable-quicktime      QuickTime module (default enabled on MacOS X)])
1834 if test "${enable_quicktime}" != "no" &&
1835   (test "${SYS}" = "darwin" || test "${enable_quicktime}" = "yes")
1836 then
1837   if test "${SYS}" = "mingw32"; then
1838     AX_ADD_BUILTINS([quicktime])
1839   else
1840   AC_CHECK_HEADERS(QuickTime/QuickTime.h,
1841     [ AX_ADD_BUILTINS([quicktime])
1842       AX_ADD_LDFLAGS([quicktime],[-framework QuickTime -framework Carbon])
1843     ], [ AC_MSG_ERROR([cannot find QuickTime headers]) ])
1844   fi
1845 fi
1846
1847 dnl
1848 dnl MP4 module
1849 dnl
1850 AC_CHECK_HEADERS(zlib.h, [
1851   AX_ADD_LDFLAGS([mp4 skins],[-lz])
1852 ] )
1853
1854
1855 dnl
1856 dnl skins module
1857 dnl
1858 AC_CHECK_HEADERS(libtar.h, [
1859   AX_ADD_LDFLAGS([skins],[-ltar])
1860 ] )
1861
1862
1863
1864 dnl
1865 dnl  a52 AC3 decoder plugin
1866 dnl
1867 AC_ARG_ENABLE(a52,
1868   [  --enable-a52            A/52 support with liba52 (default enabled)])
1869 if test "${enable_a52}" != "no"
1870 then
1871   AC_ARG_WITH(a52,
1872     [    --with-a52=PATH       a52 headers and libraries])
1873   AC_ARG_WITH(a52-tree,
1874     [    --with-a52-tree=PATH  a52dec tree for static linking ],[],[])
1875   if test "${with_a52_tree}" != "no" -a -n "${with_a52_tree}"
1876   then
1877     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
1878     if test -z "${real_a52_tree}"
1879     then
1880       dnl  The given directory can't be found
1881       AC_MSG_RESULT(no)
1882       AC_MSG_ERROR([${with_a52_tree} directory doesn't exist])
1883     fi
1884     dnl  Use a custom a52dec
1885     AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
1886     if test -f ${real_a52_tree}/include/a52.h
1887     then
1888       AC_MSG_RESULT(yes)
1889       AX_ADD_CPPFLAGS([a52tofloat32],[-I${real_a52_tree}])
1890       AX_ADD_LDFLAGS([a52tofloat32],[-L${real_a52_tree}/liba52/.libs])
1891       LDFLAGS="${LDFLAGS_save} ${LDFLAGS_a52tofloat32}"
1892       AC_CHECK_LIB(a52, a52_free, [
1893         AX_ADD_BUILTINS([a52tofloat32])
1894         AX_ADD_CPPFLAGS([a52tofloat32],[-DUSE_A52DEC_TREE])
1895         AX_ADD_LDFLAGS([a52tofloat32],[-la52])
1896         ],[
1897         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
1898         then
1899           AC_MSG_ERROR([make sure you have at least a52dec-0.7.3])
1900         else
1901           AC_MSG_ERROR([the specified tree hasn't been compiled])
1902         fi
1903       ])
1904       LDFLAGS="${LDFLAGS_save}"
1905     else
1906       AC_MSG_RESULT(no)
1907       AC_MSG_ERROR([the specified tree doesn't have a52.h])
1908     fi
1909   else
1910     if test -z "${with_a52}"
1911     then
1912       LDFLAGS_test=""
1913       CPPFLAGS_test=""
1914     else
1915       LDFLAGS_test="-L${with_a52}/lib"
1916       CPPFLAGS_test="-I${with_a52}/include"
1917     fi
1918     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_test} ${CPPFLAGS_a52tofloat32}"
1919     LDFLAGS="${LDFLAGS_save} ${LDFLAGS_test} ${LDFLAGS_a52tofloat32}"
1920     AC_CHECK_HEADERS(a52dec/a52.h, [
1921       AC_CHECK_LIB(a52, a52_free, [
1922         AX_ADD_PLUGINS([a52tofloat32])
1923         AX_ADD_LDFLAGS([a52tofloat32],[${LDFLAGS_test} -la52])
1924         AX_ADD_CPPFLAGS([a52tofloat32],[${CPPFLAGS_test}])
1925       ],[
1926         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.])
1927       ])
1928     ])
1929     CPPFLAGS="${CPPFLAGS_save}"
1930     LDFLAGS="${LDFLAGS_save}"
1931   fi
1932 fi
1933
1934 dnl
1935 dnl  DV plugin
1936 dnl
1937 AC_ARG_ENABLE(dv,
1938   [  --enable-dv             DV decoder support (deprecated in favor of ffmpeg) (default disabled)])
1939 if test "${enable_dv}" = "yes"
1940 then
1941   AC_CHECK_HEADERS(libdv/dv.h, [
1942     AX_ADD_PLUGINS([dv])
1943     AX_ADD_LDFLAGS([dv],[-ldv])
1944    ],[])
1945 fi
1946
1947 dnl
1948 dnl  Flac plugin
1949 dnl
1950 AC_ARG_ENABLE(flac,
1951   [  --enable-flac           flac decoder support (default disabled)])
1952 if test "${enable_flac}" = "yes"
1953 then
1954   AC_CHECK_HEADERS(FLAC/stream_decoder.h, [
1955     AX_ADD_PLUGINS([flac flacdec])
1956     AX_ADD_LDFLAGS([flacdec],[-lFLAC])
1957    ],[])
1958 fi
1959
1960 dnl
1961 dnl  Libmpeg2 plugin
1962 dnl
1963 AC_ARG_ENABLE(libmpeg2,
1964   [  --enable-libmpeg2       libmpeg2 decoder support (default enabled)])
1965 if test "${enable_libmpeg2}" != "no"
1966 then
1967   AC_ARG_WITH(libmpeg2-tree,
1968   [    --with-libmpeg2-tree=PATH libmpeg2 tree for static linking])
1969   if test -n "${with_libmpeg2_tree}"
1970   then
1971     AC_MSG_CHECKING(for libmpeg2.a in ${with_libmpeg2_tree})
1972     real_libmpeg2_tree="`cd ${with_libmpeg2_tree} 2>/dev/null && pwd`"
1973     if test -z "${real_libmpeg2_tree}"
1974     then
1975       dnl  The given directory can't be found
1976       AC_MSG_RESULT(no)
1977       AC_MSG_ERROR([cannot cd to ${with_libmpeg2_tree}])
1978     fi
1979     if test -f "${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a"
1980     then
1981       dnl  Use a custom libmpeg2
1982       AC_MSG_RESULT(${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a)
1983       AX_ADD_PLUGINS([libmpeg2])
1984       AX_ADD_LDFLAGS([libmpeg2],[-L${real_libmpeg2_tree}/libmpeg2/.libs -lmpeg2])
1985       AX_ADD_CFLAGS([libmpeg2],[-I${real_libmpeg2_tree}/include])
1986       eval "`cd ${real_libmpeg2_tree}/include && ln -sf . mpeg2dec 2>/dev/null`"
1987     else
1988       dnl  The given libmpeg2 wasn't built
1989       AC_MSG_RESULT(no)
1990       AC_MSG_ERROR([cannot find ${real_libmpeg2_tree}/libmpeg2/.libs/libmpeg2.a, make sure you compiled libmpeg2 in ${with_libmpeg2_tree}])
1991     fi
1992   else
1993     AC_CHECK_HEADERS(mpeg2dec/mpeg2.h, [
1994       AC_MSG_CHECKING(for libmpeg2 version >= 0.3.2)
1995       AC_EGREP_CPP(yes,
1996         [#include <mpeg2dec/mpeg2.h>
1997          #ifdef MPEG2_RELEASE
1998          #if MPEG2_RELEASE >= MPEG2_VERSION(0,3,2)
1999          yes
2000          #endif
2001          #endif],
2002         [AC_MSG_RESULT([yes])
2003           AX_ADD_PLUGINS([libmpeg2])
2004           AX_ADD_LDFLAGS([libmpeg2],[-lmpeg2])],
2005         [AC_MSG_RESULT([no])
2006           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.])])],
2007
2008       [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.])]
2009     )
2010   fi
2011 fi
2012
2013 dnl
2014 dnl  Vorbis plugin
2015 dnl
2016 AC_ARG_ENABLE(vorbis,
2017   [  --enable-vorbis         Vorbis decoder support (default enabled)])
2018 if test "${enable_vorbis}" != "no"
2019 then
2020   AC_CHECK_HEADERS(vorbis/codec.h, [
2021     AX_ADD_PLUGINS([vorbis])
2022     AX_ADD_LDFLAGS([vorbis],[-lvorbis -logg]) ],[])
2023 fi
2024
2025 dnl
2026 dnl  Tremor plugin
2027 dnl
2028 AC_ARG_ENABLE(tremor,
2029   [  --enable-tremor         Tremor decoder support (default disabled)])
2030 if test "${enable_tremor}" = "yes"
2031 then
2032   AC_CHECK_HEADERS(tremor/ivorbiscodec.h, [
2033     AX_ADD_PLUGINS([tremor])
2034     AX_ADD_LDFLAGS([tremor],[-lvorbisidec -logg])
2035    ],[])
2036 fi
2037
2038 dnl
2039 dnl  Speex plugin
2040 dnl
2041 AC_ARG_ENABLE(speex,
2042   [  --enable-speex         Speex decoder support (default enabled)])
2043 if test "${enable_speex}" != "no"
2044 then
2045   AC_CHECK_HEADERS(speex.h, [
2046     AX_ADD_PLUGINS([speex])
2047     AX_ADD_LDFLAGS([speex],[-lspeex]) ],[])
2048 fi
2049
2050 dnl
2051 dnl  tarkin decoder plugin
2052 dnl
2053 AC_ARG_ENABLE(tarkin,
2054 [  --enable-tarkin         experimental tarkin codec (default disabled)])
2055 if test "${enable_tarkin}" = "yes"
2056 then
2057   AC_ARG_WITH(tarkin-tree,
2058   [    --with-tarkin-tree=PATH tarkin tree for static linking])
2059   if test -n "${with_tarkin_tree}"
2060   then
2061     AC_MSG_CHECKING(for tarkin.o in ${with_tarkin_tree})
2062     real_tarkin_tree="`cd ${with_tarkin_tree} 2>/dev/null && pwd`"
2063     if test -f "${real_tarkin_tree}/tarkin.o"
2064     then
2065       AX_ADD_BUILTINS([tarkin])
2066       AX_ADD_CPPFLAGS([tarkin],[-I${real_tarkin_tree}])
2067       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])
2068       AC_MSG_RESULT(yes)
2069     else
2070       dnl  The given tarkin tree wasn't built
2071       AC_MSG_RESULT(no)
2072       AC_MSG_ERROR([cannot find ${real_tarkin_tree}/tarkin.o,
2073                     make sure you compiled tarkin in ${with_tarkin_tree}])
2074     fi
2075   fi
2076 fi
2077
2078 dnl
2079 dnl  theora decoder plugin
2080 dnl
2081 AC_ARG_ENABLE(theora,
2082 [  --enable-theora         experimental theora codec (default disabled)])
2083 if test "${enable_theora}" = "yes"
2084 then
2085   AC_CHECK_HEADERS(theora/theora.h, [
2086     AC_CHECK_LIB(theora, theora_granule_time, [
2087       AX_ADD_BUILTINS([theora])
2088       if test "${SYS}" = "darwin"; then
2089         theora_libs="-ltheora"
2090       else
2091         theora_libs="-ltheora -logg"
2092       fi
2093       AX_ADD_LDFLAGS([theora],[${theora_libs}]) ],[
2094       AC_MSG_ERROR([libtheora doesn't appear to be installed on you system.
2095 You also need to check that you have a libogg posterior to the 1.0 release.])],
2096       [-logg])
2097   ])
2098 fi
2099
2100 dnl
2101 dnl   subsdec support
2102 dnl
2103 AX_ADD_LDFLAGS([subsdec],[${LIBICONV}])
2104 AX_ADD_CPPFLAGS([subsdec],[${INCICONV}])
2105 AX_ADD_PLUGINS([subsdec])
2106
2107
2108 dnl
2109 dnl  Video Filters
2110 dnl
2111
2112 dnl
2113 dnl   png
2114 dnl
2115 AC_CHECK_HEADERS(png.h, [
2116     AX_ADD_LDFLAGS([logo],[-lpng -lz])
2117     AX_ADD_PLUGINS([logo])])
2118
2119 dnl
2120 dnl  Video plugins
2121 dnl
2122
2123 AC_ARG_WITH(,[Video plugins:])
2124
2125 dnl Check for DPMS
2126 if test "${SYS}" != "mingw32"
2127 then
2128   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2129   AC_CHECK_HEADERS(X11/extensions/dpms.h, [
2130     AC_MSG_CHECKING(for DPMSInfo in X11/extensions/dpms.h)
2131     AC_EGREP_HEADER(DPMSInfo,X11/extensions/dpms.h,[
2132       AC_MSG_RESULT(yes)
2133       AC_DEFINE(DPMSINFO_IN_DPMS_H, 1,
2134                 Define if <X11/extensions/dpms.h> defines DPMSInfo.)
2135     ],[
2136       AC_MSG_RESULT(no)
2137     ])
2138   ],,[
2139     #include <X11/Xlib.h>
2140   ])
2141   CPPFLAGS="${CPPFLAGS_save}"
2142 fi
2143
2144 dnl
2145 dnl  X11 module
2146 dnl  (enabled by default except on win32)
2147 dnl
2148 AC_ARG_ENABLE(x11,
2149   [  --enable-x11            X11 support (default enabled)])
2150 if test "${enable_x11}" != "no" &&
2151   (test "${SYS}" != "mingw32" || test "${enable_x11}" = "yes"); then
2152   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2153   AC_CHECK_HEADERS(X11/Xlib.h, [
2154     AX_ADD_PLUGINS([x11])
2155     AX_ADD_LDFLAGS([x11],[-L${x_libraries} -lX11 -lXext])
2156     AX_ADD_CPPFLAGS([x11],[-I${x_includes}])
2157     AC_CHECK_HEADERS(X11/extensions/Xinerama.h, [
2158       CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2159       AC_CHECK_LIB(Xinerama, XineramaQueryExtension, [
2160         AC_DEFINE(HAVE_XINERAMA,1,[Define this if you have libXinerama installed])
2161         AX_ADD_LDFLAGS([x11],[-lXinerama])
2162       ])
2163       CFLAGS="${CFLAGS_save}"
2164     ])
2165   ])
2166   CPPFLAGS="${CPPFLAGS_save}"
2167 fi
2168
2169 dnl
2170 dnl  XVideo module
2171 dnl  (enabled by default except on win32)
2172 dnl
2173 AC_ARG_ENABLE(xvideo,
2174   [  --enable-xvideo         XVideo support (default enabled)])
2175 if test "${enable_xvideo}" != "no" &&
2176   (test "${SYS}" != "mingw32" || test "${enable_xvideo}" = "yes"); then
2177   CPPFLAGS="${CPPFLAGS_save} -I${x_includes}"
2178   AC_CHECK_HEADERS(X11/extensions/Xv.h, [
2179     CFLAGS="${CFLAGS_save} -L${x_libraries} -lX11 -lXext"
2180     AC_CHECK_LIB(Xv_pic,XvPutImage,
2181       # We have Xv_pic, that's good, we can build an xvideo.so plugin !
2182       AX_ADD_PLUGINS([xvideo])
2183       AX_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv_pic])
2184       AX_ADD_CPPFLAGS([xvideo],[-I${x_includes}]),
2185       AC_CHECK_LIB(Xv,XvPutImage,[
2186         # We don't have Xv_pic, but we have Xv, let's make xvideo.a as builtin
2187         AX_ADD_PLUGINS([xvideo])
2188         AX_ADD_LDFLAGS([xvideo],[-L${x_libraries} -lX11 -lXext -lXv])
2189         AX_ADD_CPPFLAGS([xvideo],[-I${x_includes}])
2190       ],[
2191         # Otherwise... well, do nothing.
2192         :
2193       ])
2194     )
2195     AC_CHECK_HEADERS(X11/extensions/Xinerama.h,[
2196       AC_CHECK_LIB(Xinerama, XineramaQueryExtension,[
2197         AC_DEFINE(HAVE_XINERAMA,1,[Define this if you have libXinerama installed])
2198         AX_ADD_LDFLAGS([xvideo],[-lXinerama])
2199       ])
2200     ])
2201     CFLAGS="${CFLAGS_save}"
2202   ]
2203   CPPFLAGS="${CPPFLAGS_save}")
2204 fi
2205
2206 dnl
2207 dnl  SDL module
2208 dnl
2209 AC_ARG_ENABLE(sdl,
2210   [  --enable-sdl            SDL support (default enabled)])
2211 if test "${enable_sdl}" != "no"
2212 then
2213   SDL_PATH="${PATH}"
2214   AC_ARG_WITH(sdl-config-path,
2215     [    --with-sdl-config-path=PATH sdl-config path (default search in \$PATH)],
2216     [ if test "${with_sdl_config_path}" != "no"
2217       then
2218         SDL_PATH="${with_sdl_config_path}:${PATH}"
2219       fi ])
2220   AC_PATH_PROG(SDL12_CONFIG, sdl12-config, no, ${SDL_PATH})
2221   SDL_CONFIG="${SDL12_CONFIG}"
2222   SDL_HEADER="SDL12/SDL.h"
2223   if test "${SDL_CONFIG}" = "no"
2224   then
2225     AC_PATH_PROG(SDL11_CONFIG, sdl11-config, no, ${SDL_PATH})
2226     SDL_CONFIG=${SDL11_CONFIG}
2227     SDL_HEADER="SDL11/SDL.h"
2228   fi
2229   if test "${SDL_CONFIG}" = "no"
2230   then
2231     AC_PATH_PROG(SDL_CONFIG, sdl-config, no, ${SDL_PATH})
2232     SDL_HEADER="SDL/SDL.h"
2233   fi
2234   # check for cross-compiling
2235   SDL_PREFIX=
2236   AC_ARG_WITH(sdl-prefix,
2237     [    --with-sdl-prefix=PATH path to libsdl (needed for cross-compiling),
2238                                e.g use as:
2239                                --with-sdl-prefix=/usr/local/arm/2.95.3/arm-linux/usr)],[],[])
2240   if test "${with_sdl_prefix}" != "no" -a -n "${with_sdl_prefix}"
2241   then
2242     SDL_PREFIX="--prefix=${with_sdl_prefix}"
2243   fi
2244   if test "${SDL_CONFIG}" != "no"
2245   then
2246     AX_ADD_PLUGINS([vout_sdl aout_sdl])
2247     AX_ADD_CFLAGS([vout_sdl aout_sdl],[`${SDL_CONFIG} ${SDL_PREFIX} --cflags | sed 's,SDL,,'`])
2248     AX_ADD_LDFLAGS([vout_sdl aout_sdl],[`${SDL_CONFIG} ${SDL_PREFIX} --libs | sed 's,-rdynamic,,'`])
2249     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_vout_sdl}"
2250     AC_CHECK_HEADERS(${SDL_HEADER}, AC_DEFINE_UNQUOTED(SDL_INCLUDE_FILE,
2251       <${SDL_HEADER}>, Indicate whether we should use SDL/SDL.h or SDL11/SDL.h),
2252       [ AC_CHECK_HEADERS(SDL.h, AC_DEFINE(SDL_INCLUDE_FILE, <SDL.h>,
2253           As a last resort we also test for SDL.h presence),
2254       [ AC_MSG_ERROR([The development package for SDL is not installed.
2255 Please install it and try again. Alternatively you can also configure with
2256 --disable-sdl.])
2257       ])])
2258     CPPFLAGS="${CPPFLAGS_save}"
2259     if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null
2260     then
2261       AC_MSG_ERROR([The development package for SDL is not installed.
2262 Please install it and try again. Alternatively you can also configure with
2263 --disable-sdl.])
2264     fi
2265   elif test "${enable_sdl}" =  "yes"
2266   then
2267     AC_MSG_ERROR([I couldn't find the SDL package. You can download libSDL
2268 from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
2269     ])
2270   fi
2271 fi
2272
2273 dnl
2274 dnl  freetype module
2275 dnl
2276 AC_ARG_ENABLE(freetype,
2277   [  --enable-freetype       freetype support (default enabled)])
2278 if test "${enable_freetype}" != "no"
2279 then
2280   FREETYPE_PATH="${PATH}"
2281   AC_ARG_WITH(freetype-config-path,
2282     [    --with-freetype-config-path=PATH freetype-config path (default search in \$PATH)],
2283     [ if test "${with_freetype_config_path}" != "no"
2284       then
2285         FREETYPE_PATH="${with_freetype_config_path}:${PATH}"
2286       fi ])
2287   AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no, ${FREETYPE_PATH})
2288   FRIBIDI_PATH="${PATH}"
2289   AC_ARG_WITH(fribidi-config-path,
2290     [    --with-fribidi-config-path=PATH fribidi-config path (default search in \$PATH)],
2291     [ if test "${with_fribidi_config_path}" != "no"
2292       then
2293         FRIBIDI_PATH="${with_fribidi_config_path}:${PATH}"
2294       fi ])
2295   AC_PATH_PROG(FRIBIDI_CONFIG, fribidi-config, no, ${FRIBIDI_PATH})
2296
2297
2298   if test "${FREETYPE_CONFIG}" != "no"
2299   then
2300     AX_ADD_PLUGINS([freetype])
2301     AX_ADD_CFLAGS([freetype],[`${FREETYPE_CONFIG} --cflags`])
2302     AX_ADD_LDFLAGS([freetype],[`${FREETYPE_CONFIG} --libs`])
2303     AC_CHECK_HEADERS(Carbon/Carbon.h,
2304       [AX_ADD_LDFLAGS([freetype],[-framework Carbon])])
2305     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_freetype}"
2306   elif test "${enable_freetype}" =  "yes"
2307   then
2308     AC_MSG_ERROR([I couldn't find the freetype package. You can download libfreetype2
2309 from http://www.freetype.org/, or configure with --disable-freetype. Have a nice day.
2310     ])
2311   fi
2312   if test "${FRIBIDI_CONFIG}" != "no"
2313   then
2314     AX_ADD_CFLAGS([freetype], [`${FRIBIDI_CONFIG} --cflags` -DHAVE_FRIBIDI])
2315     AX_ADD_LDFLAGS([freetype], [`${FRIBIDI_CONFIG} --libs`])
2316   fi
2317 fi
2318
2319 dnl
2320 dnl  Qt Embedded module
2321 dnl  (disabled by default)
2322 dnl
2323 AC_ARG_ENABLE(qte,
2324   [  --enable-qte            QT Embedded support (default disabled)])
2325 if test "${enable_qte}" = "yes"
2326 then
2327   AC_ARG_WITH(qte,
2328   [    --with-qte=PATH       Qt Embedded headers and libraries])
2329   if test "${with_qte}" != "no" -a -n "${with_qte}"
2330   then
2331     AX_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
2332     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])
2333   else
2334     AX_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
2335     AX_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'` -DQT_QWS_IPAQ -DQWS -fno-exceptions -fno-rtti])
2336   fi
2337   AX_ADD_PLUGINS([qte])
2338   NEED_QTE_MAIN=yes
2339   CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_qte}"
2340   AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
2341     AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
2342   ] )
2343   CPPFLAGS="${CPPFLAGS_save}"
2344 fi
2345
2346 dnl
2347 dnl  Windows DirectX module
2348 dnl
2349 AC_ARG_ENABLE(directx,
2350   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
2351 if test "${enable_directx}" != "no"
2352 then
2353   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"
2354   then
2355     AC_ARG_WITH(directx,
2356     [    --with-directx=PATH   Win32 DirectX headers])
2357     if test -z "${with_directx}"
2358     then
2359       AC_CHECK_HEADERS(ddraw.h,
2360       [ AX_ADD_PLUGINS([vout_directx aout_directx])
2361         AX_ADD_LDFLAGS([vout_directx],[-lgdi32]) ])
2362     else
2363       AC_MSG_CHECKING(for directX headers in ${with_directx})
2364       if test -f ${with_directx}/ddraw.h
2365       then
2366         AX_ADD_PLUGINS([vout_directx aout_directx])
2367         AX_ADD_CPPFLAGS([vout_directx aout_directx],[-I${with_directx}])
2368         AX_ADD_LDFLAGS([vout_directx],[-lgdi32])
2369         AC_MSG_RESULT(yes)
2370       else
2371         AC_MSG_RESULT(no)
2372         AC_MSG_ERROR([Cannot find ${with_directx}/ddraw.h!])
2373       fi
2374     fi
2375   fi
2376 fi
2377
2378 dnl
2379 dnl  Linux framebuffer module
2380 dnl
2381 AC_ARG_ENABLE(fb,
2382   [  --enable-fb             Linux framebuffer support (default enabled on Linux)])
2383     if test "${enable_fb}" != "no"
2384     then
2385       AC_CHECK_HEADERS(linux/fb.h, [
2386         AX_ADD_PLUGINS([fb])
2387       ])
2388     fi
2389
2390 dnl
2391 dnl  Linux MGA module
2392 dnl
2393 AC_ARG_ENABLE(mga,
2394   [  --enable-mga            Linux kernel Matrox support (default disabled)],
2395   [ if test "${enable_mga}" = "yes"
2396     then
2397       AX_ADD_PLUGINS([mga])
2398     fi ])
2399
2400 dnl
2401 dnl  SVGAlib module
2402 dnl
2403 AC_ARG_ENABLE(svgalib,
2404   [  --enable-svgalib        SVGAlib support (default disabled)])
2405 if test "${enable_svgalib}" = "yes"
2406 then
2407   AX_ADD_PLUGINS([svgalib])
2408   AX_ADD_LDFLAGS([svgalib],[-lvgagl -lvga])
2409 fi
2410
2411 dnl
2412 dnl  GGI module
2413 dnl
2414 AC_ARG_ENABLE(ggi,
2415   [  --enable-ggi            GGI support (default disabled)])
2416 if test "${enable_ggi}" = "yes"
2417 then
2418   AX_ADD_PLUGINS([ggi])
2419   AX_ADD_LDFLAGS([ggi],[-lggi])
2420   AC_ARG_WITH(ggi,
2421     [    --with-ggi=PATH       path to libggi],
2422     [ if test "${with_ggi}" != "no" -a -n "${with_ggi}"
2423       then
2424         AX_ADD_CPPFLAGS([ggi],[-I${with_ggi}/include])
2425         AX_ADD_LDFLAGS([ggi],[-L${with_ggi}/lib])
2426       fi ])
2427 fi
2428
2429 dnl
2430 dnl  Glide module
2431 dnl
2432 AC_ARG_ENABLE(glide,
2433   [  --enable-glide          Glide (3dfx) support (default disabled)])
2434 if test "${enable_glide}" = "yes"
2435 then
2436   AX_ADD_PLUGINS([glide])
2437   AX_ADD_LDFLAGS([glide],[-lglide2x -lm])
2438   AX_ADD_CPPFLAGS([glide],[-I/usr/include/glide])
2439   AC_ARG_WITH(glide,
2440     [    --with-glide=PATH     path to libglide],
2441     [ if test "${with_glide}" != "no" -a -n "${with_glide}"
2442       then
2443         AX_ADD_CPPFLAGS([glide],[-I${with_glide}/include])
2444         AX_ADD_LDFLAGS([glide],[-L${with_glide}/lib])
2445       fi ])
2446 fi
2447
2448 dnl
2449 dnl  AA plugin
2450 dnl
2451 AC_ARG_ENABLE(aa,
2452   [  --enable-aa             aalib output (default disabled)])
2453 if test "${enable_aa}" = "yes"
2454 then
2455   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
2456   if test "${have_aa}" = "true"
2457   then
2458     AX_ADD_PLUGINS([aa])
2459     AX_ADD_LDFLAGS([aa],[-laa])
2460   fi
2461 fi
2462
2463 dnl
2464 dnl  win32 GDI plugin
2465 dnl
2466 AC_ARG_ENABLE(wingdi,
2467   [  --enable-wingdi         Win32 GDI module (default enabled on Win32)])
2468 if test "${enable_wingdi}" != "no"; then
2469   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
2470     AX_ADD_PLUGINS([wingdi])
2471     AX_ADD_LDFLAGS([wingdi],[-lgdi32])
2472   fi
2473 fi
2474
2475 dnl
2476 dnl  Audio plugins
2477 dnl
2478
2479 AC_ARG_WITH(,[Audio plugins:])
2480
2481 dnl
2482 dnl  OSS /dev/dsp module (enabled by default except on win32)
2483 dnl
2484 AC_ARG_ENABLE(oss,
2485   [  --enable-oss            Linux OSS /dev/dsp support (enabled on Linux)])
2486
2487 if test "${enable_oss}" != "no" &&
2488   (test "${SYS}" != "mingw32" || test "${enable_oss}" = "yes")
2489 then
2490   AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h, [
2491     AX_ADD_PLUGINS([oss])
2492     AC_CHECK_LIB(ossaudio,main,AX_ADD_LDFLAGS([oss],[-lossaudio]))
2493   ])
2494 fi
2495
2496 dnl
2497 dnl  Esound module
2498 dnl
2499 AC_ARG_ENABLE(esd,
2500   [  --enable-esd            Esound library support (default disabled)],
2501   [if test "${enable_esd}" = "yes"
2502    then
2503      AC_PATH_PROG(ESD_CONFIG, esd-config, no)
2504      if test "${ESD_CONFIG}" != "no"
2505      then
2506        AX_ADD_PLUGINS([esd])
2507        AX_ADD_CFLAGS([esd],[`${ESD_CONFIG} --cflags`])
2508        AX_ADD_LDFLAGS([esd],[`${ESD_CONFIG} --libs`])
2509      fi
2510    fi])
2511
2512 dnl
2513 dnl  aRts module
2514 dnl
2515 AC_ARG_ENABLE(arts,
2516   [  --enable-arts           aRts sound server (default disabled)],
2517   [if test "${enable_arts}" = "yes"
2518    then
2519      AC_PATH_PROG(ARTS_CONFIG, artsc-config, no)
2520      if test "${ARTS_CONFIG}" != "no"
2521      then
2522        AX_ADD_PLUGINS([arts])
2523        AX_ADD_CFLAGS([arts],[`${ARTS_CONFIG} --cflags`])
2524        AX_ADD_LDFLAGS([arts],[`${ARTS_CONFIG} --libs `])
2525      fi
2526    fi])
2527
2528 dnl
2529 dnl  ALSA module
2530 dnl
2531 AC_ARG_ENABLE(alsa,
2532   [  --enable-alsa           ALSA sound support for Linux (default disabled)],
2533   [if test "${enable_alsa}" = "yes"
2534    then
2535      AC_CHECK_HEADER(alsa/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false")
2536      if test "${have_alsa}" = "true"
2537      then
2538        AC_TRY_COMPILE([#define ALSA_PCM_NEW_HW_PARAMS_API
2539                        #define ALSA_PCM_NEW_SW_PARAMS_API
2540                        #include <alsa/asoundlib.h>],
2541           [void foo() { snd_pcm_hw_params_get_period_time(0,0,0); }],
2542            AC_DEFINE(HAVE_ALSA_NEW_API, 1, Define if ALSA is at least rc4))
2543        AX_ADD_PLUGINS([alsa])
2544        AX_ADD_LDFLAGS([alsa],[-lasound -lm -ldl])
2545      else
2546        AC_MSG_ERROR([Could not find ALSA development headers])
2547      fi
2548    fi])
2549
2550 dnl
2551 dnl  win32 waveOut plugin
2552 dnl
2553 AC_ARG_ENABLE(waveout,
2554   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
2555 if test "${enable_waveout}" != "no"; then
2556   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
2557     AX_ADD_PLUGINS([waveout])
2558     AX_ADD_LDFLAGS([waveout],[-lwinmm])
2559   fi
2560 fi
2561
2562 dnl
2563 dnl  CoreAudio plugin
2564 dnl
2565 AC_ARG_ENABLE(coreaudio,
2566   [  --enable-coreaudio      CoreAudio module (default enabled on MacOS X)])
2567 if test "${enable_coreaudio}" != "no" &&
2568   (test "${SYS}" = "darwin" || test "${enable_coreaudio}" = "yes")
2569 then
2570   AC_CHECK_HEADERS(CoreAudio/CoreAudio.h, 
2571     [ AX_ADD_BUILTINS([coreaudio])
2572       AX_ADD_LDFLAGS([coreaudio],[-framework CoreAudio])
2573       AC_MSG_CHECKING(for kAudioConverterPrimeMethod in AudioToolbox/AudioConverter.h)
2574       AC_EGREP_HEADER(kAudioConverterPrimeMethod,AudioToolbox/AudioConverter.h,[
2575         AC_MSG_RESULT(yes)
2576         AX_ADD_PLUGINS([coreaudio_resampler])
2577         AX_ADD_LDFLAGS([coreaudio_resampler],[-framework AudioToolbox])
2578       ],[ AC_MSG_RESULT(no) ])
2579     ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
2580 fi
2581
2582 dnl
2583 dnl  Interface plugins
2584 dnl
2585
2586 AC_ARG_WITH(,[Interface plugins:])
2587
2588 dnl special case for BeOS
2589 if test "${SYS}" = "beos"
2590 then
2591     AX_ADD_PLUGINS([beos])
2592 fi
2593
2594 dnl
2595 dnl Skins module
2596 dnl
2597 AC_ARG_ENABLE(skins,
2598   [  --enable-skins          Skins interface module (default enabled on Win32)])
2599 if test "${enable_skins}" != "no"; then
2600   if test "${SYS}" = "mingw32" -o "${SYS}" = "cygwin"; then
2601
2602     AX_ADD_PLUGINS([skins])
2603     ALIASES="${ALIASES} svlc"
2604     AX_ADD_CPPFLAGS([skins],[-U_OFF_T_ -U_off_t -Imodules/gui/skins])
2605     AX_ADD_CXXFLAGS([skins],[-O2 -fno-rtti])
2606     AX_ADD_LDFLAGS([skins],[-loleaut32 -lwinspool -lwinmm -lshell32 -lctl3d32 -ladvapi32 -lwsock32 -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32])
2607
2608   else if test "${enable_skins}" = "yes"; then
2609     IMLIB2_PATH="${PATH}"
2610     AC_PATH_PROG(IMLIB2_CONFIG_SKINS, imlib2-config, no, ${IMLIB2_PATH})
2611     if test "${IMLIB2_CONFIG_SKINS}" = "no"; then
2612     AC_MSG_ERROR([Couldn't find the imlib2 package. You can download imlib2 from http://enlightenment.org/, or configure with --disable-skins.])
2613     fi
2614
2615     AX_ADD_PLUGINS([skins])
2616     ALIASES="${ALIASES} svlc"
2617     AX_ADD_CPPFLAGS([skins],[-Imodules/gui/skins -I${x_includes} `${IMLIB2_CONFIG_SKINS} --cflags` -DX11_SKINS])
2618     AX_ADD_CXXFLAGS([skins],[-O2 -fno-rtti])
2619     AX_ADD_LDFLAGS([skins],[-L${x_libraries} -lXext -lX11 `${IMLIB2_CONFIG_SKINS} --libs`])
2620   fi fi
2621 fi
2622
2623 dnl
2624 dnl  Gtk+ module
2625 dnl
2626 AC_ARG_ENABLE(gtk,
2627   [  --enable-gtk            Gtk+ support (default enabled)])
2628 if test "${enable_gtk}" != "no"
2629 then
2630   GTK_PATH="${PATH}"
2631   AC_ARG_WITH(gtk-config-path,
2632     [    --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)],
2633     [ if test "${with_gtk_config_path}" != "no"
2634       then
2635         GTK_PATH="${with_gtk_config_path}:${PATH}"
2636       fi ])
2637   # look for gtk-config
2638   AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH})
2639   GTK_CONFIG=${GTK12_CONFIG}
2640   if test "${GTK_CONFIG}" = "no"
2641   then
2642     AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH})
2643   fi
2644   if test "${GTK_CONFIG}" != "no"
2645   then
2646     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
2647     then
2648       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.])
2649     fi
2650     if test "${SYS}" != "mingw32"; then
2651       AX_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk gthread`])
2652       AX_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk gthread | sed 's,-rdynamic,,'`])
2653     else
2654       AX_ADD_CFLAGS([gtk],[`${GTK_CONFIG} --cflags gtk`])
2655       AX_ADD_LDFLAGS([gtk],[`${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`])
2656     fi
2657     # now look for the gtk.h header
2658     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gtk}"
2659     ac_cv_gtk_headers=yes
2660     AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [
2661       ac_cv_gtk_headers=no
2662       echo "Cannot find gtk development headers."
2663     ])
2664     if test "${ac_cv_gtk_headers}" = "yes"
2665     then
2666       AX_ADD_PLUGINS([gtk])
2667       if test "${SYS}" != "mingw32"; then
2668         NEED_GTK_MAIN=yes
2669       fi
2670       ALIASES="${ALIASES} gvlc"
2671     fi
2672     CPPFLAGS="${CPPFLAGS_save}"
2673   fi
2674 fi
2675
2676 dnl
2677 dnl  Gtk+2 module ! Disabled for now as it is unusable and confuses users
2678 dnl
2679 dnl AC_ARG_ENABLE(gtk2,
2680 dnl   [  --enable-gtk2           Gtk2 support (default disabled)])
2681 dnl if test "${enable_gtk2}" = "yes"
2682 dnl then
2683 dnl   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
2684 dnl   AX_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
2685 dnl   AX_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
2686 dnl   AX_ADD_PLUGINS([gtk2])
2687 dnl   if test "${SYS}" != "mingw32"; then
2688 dnl     NEED_GTK2_MAIN=yes
2689 dnl   fi
2690 dnl fi
2691
2692 dnl
2693 dnl  PDA Gtk+2 module
2694 dnl
2695 AC_ARG_ENABLE(pda,
2696   [  --enable-pda          PDA interface needs Gtk2 support (default disabled)])
2697 if test "x${enable_pda}" = "xyes"
2698 then
2699   PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0])
2700   AX_ADD_CFLAGS([gtk2],[${GTK2_CFLAGS}])
2701   AX_ADD_LDFLAGS([gtk2],[${GTK2_LIBS}])
2702   AX_ADD_CFLAGS([pda],[${GTK2_CFLAGS} ${CFLAGS_pda}])
2703   AX_ADD_LDFLAGS([pda],[${GTK2_LIBS} ${LDFLAGS_pda}])
2704   AX_ADD_PLUGINS([pda])
2705   if test "${SYS}" != "mingw32"; then
2706     NEED_GTK2_MAIN=yes
2707   fi
2708 fi
2709
2710 dnl
2711 dnl  Gnome module
2712 dnl
2713 AC_ARG_ENABLE(gnome,
2714   [  --enable-gnome          Gnome interface support (default disabled)],
2715   [if test "${enable_gnome}" = "yes"; then
2716     # look for gnome-config
2717     AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
2718     if test -x ${GNOME_CONFIG}
2719     then
2720        AX_ADD_CFLAGS([gnome],[`${GNOME_CONFIG} --cflags gtk gnomeui`])
2721        AX_ADD_LDFLAGS([gnome],[`${GNOME_CONFIG} --libs gnomeui | sed 's,-rdynamic,,'`])
2722     fi
2723     # now look for the gnome.h header
2724     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_gnome}"
2725     AC_CHECK_HEADERS(gnome.h, [
2726       AX_ADD_PLUGINS([gnome])
2727       NEED_GTK_MAIN=yes
2728       NEED_GNOME_MAIN=yes
2729       ALIASES="${ALIASES} gnome-vlc"
2730       dnl We need this because of some moronic gnomesupport.h flavours
2731       AC_MSG_CHECKING(for strndup in gnome.h)
2732       AC_EGREP_HEADER(strndup,gnome.h,[
2733         AC_MSG_RESULT(yes)
2734         AC_DEFINE(STRNDUP_IN_GNOME_H, 1,
2735                   Define if <gnome.h> defines strndup.)],[
2736         AC_MSG_RESULT(no)])
2737      ],[
2738       AC_MSG_ERROR([Can't find gnome headers. Please install the gnome
2739 developement tools or remove the --enable-gnome option])
2740      ])
2741     CPPFLAGS="${CPPFLAGS_save}"
2742   fi])
2743
2744 dnl
2745 dnl  Gnome2 module ! Disabled for know as it is unuseable and confuses users
2746 dnl
2747 dnl AC_ARG_ENABLE(gnome2,
2748 dnl   [  --enable-gnome2         Gnome2 support (default disabled)])
2749 dnl if test "${enable_gnome2}" = "yes"
2750 dnl then
2751 dnl   PKG_CHECK_MODULES(GNOME2, [libgnomeui-2.0])
2752 dnl   AX_ADD_CFLAGS([gnome2],[${GNOME2_CFLAGS}])
2753 dnl   AX_ADD_LDFLAGS([gnome2],[${GNOME2_LIBS}])
2754 dnl   AX_ADD_PLUGINS([gnome2])
2755 dnl   if test "${SYS}" != "mingw32"; then
2756 dnl     NEED_GNOME2_MAIN=yes
2757 dnl   fi
2758 dnl fi
2759
2760 dnl
2761 dnl  wxWindows module
2762 dnl
2763 AC_ARG_ENABLE(wxwindows,
2764   [  --enable-wxwindows      wxWindows support (default enabled)])
2765 if test "${enable_wxwindows}" != "no"
2766 then
2767   WXWINDOWS_PATH="${PATH}"
2768   AC_ARG_WITH(wx-config-path,
2769     [    --with-wx-config-path=PATH wx-config path (default search in \$PATH)],
2770     [ if test "${with_wx_config_path}" != "no"
2771       then
2772         WXWINDOWS_PATH="${with_wx_config_path}:${PATH}"
2773       fi ])
2774   # look for wx-config
2775   AC_PATH_PROG(WX_CONFIG, wx-config, no, ${WXWINDOWS_PATH})
2776   if test "${WX_CONFIG}" != "no"
2777   then
2778     if expr 2.3.0 \> `${WX_CONFIG} --version` >/dev/null
2779     then
2780       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.])
2781     fi
2782     AC_LANG_PUSH(C++)
2783     AX_ADD_CXXFLAGS([wxwindows],[`${WX_CONFIG} --cxxflags`])
2784     AX_ADD_LDFLAGS([wxwindows],[`${WX_CONFIG} --libs`])
2785     # now look for the wxprec.h header
2786     CPPFLAGS="${CPPFLAGS_save} ${CXXFLAGS_wxwindows}"
2787     ac_cv_wx_headers=yes
2788     AC_CHECK_HEADERS(wx/wxprec.h, , [
2789       ac_cv_wx_headers=no
2790       echo "Cannot find wxWindows development headers."
2791     ])
2792     if test "${ac_cv_wx_headers}" = "yes"
2793     then
2794       AX_ADD_PLUGINS([wxwindows])
2795       ALIASES="${ALIASES} wxvlc"
2796     fi
2797     CPPFLAGS="${CPPFLAGS_save}"
2798     AC_LANG_POP(C++)
2799   fi
2800 fi
2801
2802 dnl
2803 dnl  Qt module
2804 dnl
2805 AC_ARG_ENABLE(qt,
2806   [  --enable-qt             Qt interface support (default disabled)],
2807   [if test "${enable_qt}" = "yes"; then
2808      AX_ADD_PLUGINS([qt])
2809      ALIASES="${ALIASES} qvlc"
2810      AX_ADD_LDFLAGS([qt],[-L${QTDIR}/lib])
2811      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_qt}"
2812      AC_CHECK_LIB(qt-mt,main,[
2813        AX_ADD_LDFLAGS([qt],[-lqt-mt])
2814      ],[
2815        AC_CHECK_LIB(qt,main,[
2816          AX_ADD_LDFLAGS([qt],[-lqt])
2817        ])
2818      ])
2819      LDFLAGS="${LDFLAGS_save}"
2820      AX_ADD_CXXFLAGS([qt],[-I/usr/include/qt3 -I/usr/include/qt -I${QTDIR}/include])
2821      if test -x ${QTDIR}/bin/moc
2822      then
2823        MOC=${QTDIR}/bin/moc
2824      else
2825        MOC=moc
2826      fi
2827    fi])
2828
2829 dnl
2830 dnl  KDE module
2831 dnl
2832 AC_ARG_ENABLE(kde,
2833   [  --enable-kde            KDE interface support (default disabled)],
2834   [if test "${enable_kde}" = "yes"; then
2835      AX_ADD_PLUGINS([kde])
2836      ALIASES="${ALIASES} kvlc"
2837      AX_ADD_LDFLAGS([kde],[-L${KDEDIR}/lib])
2838      dnl Check for -lkfile (only in KDE 2) or -lkdeui -lkio (KDE 3)
2839      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
2840      AC_CHECK_LIB(kfile,main,[
2841        AX_ADD_LDFLAGS([kde],[-lkfile])
2842      ])
2843      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
2844      AC_CHECK_LIB(kdeui,main,[
2845        AX_ADD_LDFLAGS([kde],[-lkdeui])
2846      ])
2847      LDFLAGS="${LDFLAGS_save} ${LDFLAGS_kde}"
2848      AC_CHECK_LIB(kio,main,[
2849        AX_ADD_LDFLAGS([kde],[-lkio])
2850      ])
2851      LDFLAGS="${LDFLAGS_save}"
2852      AX_ADD_CXXFLAGS([kde],[-I/usr/include/kde -I/usr/include/qt3 -I/usr/include/qt])
2853      AX_ADD_CXXFLAGS([kde],[-I${KDEDIR}/include -I${QTDIR}/include])
2854      if test -x ${QTDIR}/bin/moc
2855      then
2856        MOC=${QTDIR}/bin/moc
2857      else
2858        MOC=moc
2859      fi
2860    fi])
2861
2862 dnl
2863 dnl  Opie QT embedded module
2864 dnl
2865 AC_ARG_ENABLE(opie,
2866   [  --enable-opie           Qt embedded interface support (default disabled)],
2867   [if test "${enable_opie}" = "yes"; then
2868      AC_ARG_WITH(qte,
2869      [    --with-qte=PATH       Qt Embedded headers and libraries])
2870      if test "${with_qte}" != "no" -a -n "${with_qte}"
2871      then
2872        AX_ADD_LDFLAGS([qte],[-L${with_qte}/lib `echo -L${with_qte}/lib | sed 's,opt/QtPalmtop,usr,'` -ljpeg -lqte])
2873        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])
2874      else
2875        AX_ADD_LDFLAGS([qte],[-L${QTDIR}/lib `echo -L${QTDIR}/lib | sed 's,opt/QtPalmtop,usr,'`])
2876        AX_ADD_CXXFLAGS([qte],[-I${QTDIR}/include `echo -I${QTDIR}/include | sed 's,opt/QtPalmtop,usr,'`])
2877      fi
2878      CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_qte}"
2879      AC_CHECK_HEADERS(qt.h jpeglib.h, ,[
2880        AC_MSG_ERROR([echo "Cannot find QT Embedded development headers."])
2881      ] )
2882      CPPFLAGS="${CPPFLAGS_save}"
2883
2884      AX_ADD_PLUGINS([opie])
2885      NEED_QTE_MAIN=yes
2886      AX_ADD_LDFLAGS([opie],[-lqpe ${LDFLAGS_qte}])
2887      AX_ADD_CXXFLAGS([opie],[${CXXFLAGS_qte}])
2888      if test "${with_qte}" != "no" -a -n "${with_qte}"
2889      then
2890        MOC=${with_qte}/bin/moc
2891      else
2892        MOC=${QTDIR}/bin/moc
2893      fi
2894    fi])
2895
2896 dnl
2897 dnl  MacOS X module
2898 dnl
2899 AC_ARG_ENABLE(macosx,
2900   [  --enable-macosx         MacOS X support (default enabled on MacOS X)],
2901   [if test "${enable_macosx}" = "yes"
2902    then
2903      AX_ADD_BUILTINS([macosx])
2904      AX_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC])
2905    fi],
2906   [AC_CHECK_HEADERS(Cocoa/Cocoa.h,
2907      AX_ADD_BUILTINS([macosx])
2908      AX_ADD_LDFLAGS([macosx],[-framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC])
2909    )])
2910
2911 dnl
2912 dnl  QNX RTOS module
2913 dnl
2914 AC_ARG_ENABLE(qnx,
2915   [  --enable-qnx            QNX RTOS support (default enabled on QNX RTOS)])
2916     if test "${enable_qnx}" != "no"
2917     then
2918       AC_CHECK_HEADERS(Ph.h, [
2919         AX_ADD_PLUGINS([qnx])
2920         AX_ADD_LDFLAGS([qnx],[-lasound -lph])
2921       ])
2922     fi
2923
2924 dnl
2925 dnl  ncurses module
2926 dnl
2927 AC_ARG_ENABLE(ncurses,
2928   [  --enable-ncurses        ncurses interface support (default disabled)],
2929   [if test "${enable_ncurses}" = "yes"; then
2930      AX_ADD_PLUGINS([ncurses])
2931      AX_ADD_LDFLAGS([ncurses],[-lncurses])
2932    fi])
2933
2934 dnl
2935 dnl  XOSD plugin
2936 dnl
2937 AC_ARG_ENABLE(xosd,
2938   [  --enable-xosd           xosd interface support (default disabled)])
2939 if test "${enable_xosd}" = "yes"
2940 then
2941   AC_CHECK_HEADER(xosd.h, have_xosd="true", have_xosd="false")
2942   AC_CHECK_LIB(xosd,xosd_set_offset,
2943       AC_DEFINE(HAVE_XOSD_VERSION_1, 1, Define if <xosd.h> is 1.0.x),
2944     AC_CHECK_LIB(xosd,xosd_set_horizontal_offset,
2945         AC_DEFINE(HAVE_XOSD_VERSION_2, 1, Define if <xosd.h> is 2.0.x),
2946       AC_TRY_COMPILE([#include <xosd.h>],
2947          [void foo() { xosd_init("foo","bar",12,XOSD_top,2,12,42); }],,
2948           AC_DEFINE(HAVE_XOSD_VERSION_0, 1, Define if <xosd.h> is pre-1.0.0))))
2949   if test "${have_xosd}" = "true"
2950   then
2951     AX_ADD_PLUGINS([xosd])
2952     AX_ADD_LDFLAGS([xosd],[-lxosd])
2953   fi
2954 fi
2955
2956 dnl
2957 dnl Visualisation plugin
2958 dnl
2959 AC_ARG_ENABLE(visual,
2960   [  --enable-visual            visualisation plugin (default enabled)])
2961 if test "${enable_visual}" != "no"
2962 then
2963     AX_ADD_PLUGINS([visual])
2964 fi
2965
2966 dnl
2967 dnl  goom visualization plugin
2968 dnl
2969 AC_ARG_ENABLE(goom,
2970 [  --enable-goom         goom visualisation plugin (default disabled)])
2971 if test "${enable_goom}" = "yes"
2972 then
2973   AC_ARG_WITH(goom-tree,
2974     [    --with-goom-tree=PATH goom tree for static linking (required)])
2975
2976   dnl
2977   dnl test for --with-goom-tree
2978   dnl
2979   if test "${with_goom_tree}" != "no" -a -n "${with_goom_tree}";then
2980     AC_MSG_CHECKING(for libgoom.a in ${with_goom_tree})
2981     real_goom_tree="`cd ${with_goom_tree} 2>/dev/null && pwd`"
2982     if test -z "${real_goom_tree}"; then
2983       dnl  The given directory can't be found
2984       AC_MSG_RESULT(no)
2985       AC_MSG_ERROR([cannot cd to ${with_goom_tree}])
2986     fi
2987     if test -f "${real_goom_tree}/libgoom.a"; then
2988       AC_MSG_RESULT(${real_goom_tree}/libgoom.a)
2989       AX_ADD_BUILTINS([goom])
2990       AX_ADD_LDFLAGS([goom],[-L${real_goom_tree} -lgoom])
2991       AX_ADD_CPPFLAGS([goom],[-I${real_goom_tree}])
2992     else
2993       dnl  The given libgoom wasn't built
2994       AC_MSG_RESULT(no)
2995       AC_MSG_ERROR([cannot find ${real_goom_tree}/libgoom.a, make sure you compiled goom in ${with_goom_tree}])
2996     fi
2997   else
2998     dnl  The --with-goom-tree isn't specified wasn't built
2999     AC_MSG_RESULT(no)
3000     AC_MSG_ERROR([You have to specify a tree with --with-goom-tree])
3001   fi
3002 fi
3003
3004 dnl
3005 dnl  SLP access plugin
3006 dnl
3007 AC_ARG_ENABLE(slp,
3008   [  --enable-slp            SLP service discovery support (default enabled)])
3009 if test "${enable_slp}" != "no"
3010 then
3011   AC_ARG_WITH(slp,
3012   [    --with-slp=PATH       libslp headers and libraries])
3013   if test -z "${with_slp}"
3014   then
3015     AC_CHECK_HEADERS(slp.h, have_slp="true", have_slp="false")
3016     if test "${have_slp}" = "true"
3017     then
3018       AX_ADD_PLUGINS([slp])
3019       AX_ADD_LDFLAGS([slp],[-lslp])
3020       AX_ADD_LDFLAGS([stream_out_standard],[-lslp])
3021     fi
3022   else
3023     AC_MSG_CHECKING(for slp headers in ${with_slp})
3024     if test -f ${with_slp}/slp.h
3025     then
3026       dnl  Use ${with_slp}/libslp/slp.h
3027       AC_MSG_RESULT(yes)
3028       AX_ADD_PLUGINS([slp])
3029       AX_ADD_LDFLAGS([slp],[-L${with_slp} -lslp])
3030       AX_ADD_LDFLAGS([stream_out_standard],[-L${with_slp} -lslp])
3031       AX_ADD_CPPFLAGS([slp],[-I${with_slp}])
3032       AC_DEFINE(HAVE_SLP_H)
3033     else
3034       dnl  No libslp could be found, sorry
3035       AC_MSG_RESULT(no)
3036       AC_MSG_ERROR([cannot find ${with_slp}/slp.h])
3037     fi
3038   fi
3039 fi
3040
3041 dnl
3042 dnl  Lirc plugin
3043 dnl
3044 AC_ARG_ENABLE(lirc,
3045   [  --enable-lirc           lirc support (default disabled)])
3046 if test "${enable_lirc}" = "yes"
3047 then
3048   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
3049   if test "${have_lirc}" = "true"
3050   then
3051     AX_ADD_PLUGINS([lirc])
3052     AX_ADD_LDFLAGS([lirc],[-llirc_client])
3053   fi
3054 fi
3055
3056 dnl 
3057 dnl  Joystick plugin
3058 dnl
3059 AC_ARG_ENABLE(joystick,
3060   [  --enable-joystick       joystick control (default disabled)])
3061 if test "${enable_joystick}" = "yes"
3062 then
3063  AC_CHECK_HEADER( linux/joystick.h, 
3064                 [AX_ADD_PLUGINS([joystick])]
3065                 )
3066 fi
3067
3068
3069 dnl
3070 dnl corba (ORBit) plugin
3071 dnl
3072 AC_ARG_ENABLE(corba,
3073   [  --enable-corba          corba interface support (default disabled)])
3074 if test "${enable_corba}" = "yes"; then
3075   ORBIT_PATH="${PATH}"
3076   AC_ARG_WITH(orbit-config-path,
3077   [    --with-orbit-config-path=PATH orbit-config path (default search in \$PATH)])
3078   if test "${with_orbit_config_path}" != "no"; then
3079     ORBIT_PATH="${with_orbit_config_path}:${PATH}"
3080   fi
3081   # look for orbit2-config
3082   AC_PATH_PROG(ORBIT_CONFIG, orbit2-config, no, ${ORBIT_PATH})
3083   if test "${ORBIT_CONFIG}" != "no"; then
3084     AX_ADD_CFLAGS(corba,[`${ORBIT_CONFIG} --cflags server`])
3085     AX_ADD_LDFLAGS(corba,[`${ORBIT_CONFIG} --libs server | sed 's,-rdynamic,,'`])
3086     # now look for the orbit.h header
3087     CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_corba}"
3088     ac_cv_corba_headers=yes
3089     AC_CHECK_HEADERS(orbit/orbit.h, , [
3090       ac_cv_corba_headers=no
3091       AC_MSG_ERROR([Could not find corba development headers])
3092     ])
3093     if test "${ac_cv_corba_headers}" = "yes"; then
3094       AX_ADD_PLUGINS(corba)
3095     fi
3096     CPPFLAGS="${CPPFLAGS_save}"
3097   fi
3098 fi
3099
3100 AC_ARG_WITH(,[Misc options:])
3101
3102 dnl
3103 dnl  Endianness check, AC_C_BIGENDIAN doesn't work if we are cross-compiling
3104 dnl
3105 dnl  We give the user the opportunity to specify
3106 dnl  --with-words=big or --with-words=little ; otherwise, try to guess
3107 dnl
3108 AC_ARG_WITH(words,
3109   [  --with-words=endianness set endianness (big or little)])
3110   case "${with_words}" in
3111     big)
3112       ac_cv_c_bigendian=yes
3113       ;;
3114     little)
3115       ac_cv_c_bigendian=no
3116       ;;
3117     *)
3118       dnl  Try to guess endianness by matching patterns on a compiled
3119       dnl  binary, by looking for an ASCII or EBCDIC string
3120       AC_CACHE_CHECK([whether the byte order is big-endian],
3121         [ac_cv_c_bigendian],
3122         [ac_cv_c_bigendian="unknown"
3123         [cat >conftest.c <<EOF
3124         short am[] = { 0x4249, 0x4765, 0x6e44, 0x6961, 0x6e53, 0x7953, 0 };
3125         short ai[] = { 0x694c, 0x5454, 0x656c, 0x6e45, 0x6944, 0x6e61, 0 };
3126         void _a(void) { char*s = (char*)am; s = (char *)ai; }
3127         short ei[] = { 0x89D3, 0xe3e3, 0x8593, 0x95c5, 0x89c4, 0x9581, 0 };
3128         short em[] = { 0xc2c9, 0xc785, 0x95c4, 0x8981, 0x95e2, 0xa8e2, 0 };
3129         void _e(void) { char*s = (char*)em; s = (char*)ei; }
3130         int main(void) { _a(); _e(); return 0; }
3131 EOF
3132         ]
3133         if test -f conftest.c
3134         then
3135           if ${CC-cc} -c conftest.c -o conftest.o >>config.log 2>&1 \
3136               && test -f conftest.o
3137           then
3138             if test "`strings conftest.o | grep BIGenDianSyS`"
3139             then
3140               ac_cv_c_bigendian="yes"
3141             fi
3142             if test "`strings conftest.o | grep LiTTleEnDian`"
3143             then
3144               ac_cv_c_bigendian="no"
3145             fi
3146           fi
3147         fi
3148       ])
3149       if test "${ac_cv_c_bigendian}" = "unknown"
3150       then
3151         AC_MSG_ERROR([Could not guess endianness, please use --with-words])
3152       fi
3153       ;;
3154   esac
3155 dnl  Now we know what to use for endianness, just put it in the header
3156 if test "${ac_cv_c_bigendian}" = "yes"
3157 then
3158   AC_DEFINE(WORDS_BIGENDIAN, 1, big endian system)
3159 fi
3160
3161 dnl
3162 dnl  Mozilla plugin
3163 dnl
3164 mozilla=false
3165 AC_ARG_ENABLE(mozilla,
3166   [  --enable-mozilla        build a vlc-based Mozilla plugin (default disabled)])
3167 if test "${enable_mozilla}" = "yes" -a "${SYS}" != "mingw32"
3168 then
3169   AC_PATH_PROG(MOZILLA_CONFIG, mozilla-config, no)
3170   if test "${MOZILLA_CONFIG}" = "no"
3171   then
3172     AC_MSG_ERROR([Please install the Mozilla development tools, mozilla-config was not found.])
3173   else
3174     if test "${SYS}" != "mingw32"; then
3175       LDFLAGS="${LDFLAGS_save} -L${x_libraries}"
3176       AC_CHECK_LIB(Xt,XtStrings,[
3177         AX_ADD_LDFLAGS([mozilla],[-L${x_libraries} -lXt])
3178       ])
3179       LDFLAGS="${LDFLAGS_save}"
3180     fi
3181     mozilla=:
3182     dnl Workaround for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=150490
3183     AX_ADD_CPPFLAGS([mozilla],[[`${MOZILLA_CONFIG} --cflags plugin xpcom java | sed 's,-I\([^ ]*\)/mozilla/\([^ ]*\),-I\1/\2 -I\1/mozilla/\2,g' | xargs`]])
3184     AX_ADD_LDFLAGS([mozilla],[`${MOZILLA_CONFIG} --libs plugin xpcom`])
3185     CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_mozilla}"
3186     AC_CHECK_HEADERS(mozilla-config.h)
3187     CPPFLAGS="${CPPFLAGS_save}"
3188   fi
3189
3190 dnl special case for mingw32
3191 elif test "${enable_mozilla}" = "yes"
3192 then
3193   AC_ARG_WITH(mozilla-sdk-path,
3194     [    --with-mozilla-sdk-path=PATH path to win32 mozilla sdk], [
3195     AC_MSG_CHECKING(for mozilla-config.h in ${with_mozilla_sdk_path})
3196     real_mozilla_sdk="`cd ${with_mozilla_sdk_path} 2>/dev/null && pwd`"
3197     if test -z "${real_mozilla_sdk}"; then
3198       dnl  The given directory can't be found
3199       AC_MSG_RESULT(no)
3200       AC_MSG_ERROR([cannot cd to ${with_mozilla_sdk_path}])
3201     fi
3202     if test -f "${real_mozilla_sdk}/mozilla-config.h"; then
3203       AC_MSG_RESULT(${real_mozilla_sdk}/mozilla-config.h)
3204       mozilla=:
3205       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])
3206       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])
3207       XPIDL_INCL="-I${real_mozilla_sdk}/xpcom/idl"
3208     else
3209       dnl  The given path is incorrect
3210       AC_MSG_RESULT(no)
3211       AC_MSG_ERROR([cannot find ${real_mozilla_sdk}/mozilla-config.h])
3212     fi
3213   ])
3214 fi
3215
3216 dnl Not necessarily in ${PATH}
3217 if test -z "${XPIDL}" -o ! -x "${XPIDL}"; then
3218   XPIDL="/usr/lib/mozilla/xpidl"
3219 fi
3220 AM_CONDITIONAL(BUILD_MOZILLA,${mozilla})
3221
3222 dnl
3223 dnl  test plugins
3224 dnl
3225 AC_ARG_ENABLE(testsuite,
3226   [  --enable-testsuite      build test modules (default disabled)])
3227 if test "${enable_testsuite}" = "yes"
3228 then
3229   TESTS="test1 test2 test3 test4"
3230
3231   dnl  we define those so that bootstrap sets the right linker
3232   AX_ADD_CXXFLAGS([test2],[])
3233   AX_ADD_OBJCFLAGS([test3],[])
3234   dnl  this one is needed until automake knows what to do
3235   AX_ADD_LDFLAGS([test3],[-lobjc])
3236
3237   AX_ADD_PLUGINS([${TESTS}])
3238   #AX_ADD_BUILTINS([${TESTS}])
3239 fi
3240
3241 dnl
3242 dnl  gtk_main plugin
3243 dnl
3244 if test "${NEED_GTK_MAIN}" != "no"
3245 then
3246     AX_ADD_PLUGINS([gtk_main])
3247     AX_ADD_CFLAGS([gtk_main],[${CFLAGS_gtk}])
3248     AX_ADD_LDFLAGS([gtk_main],[${LDFLAGS_gtk}])
3249 fi
3250
3251 if test "${NEED_GNOME_MAIN}" != "no"
3252 then
3253     AX_ADD_PLUGINS([gnome_main])
3254     AX_ADD_CFLAGS([gnome_main],[${CFLAGS_gtk} ${CFLAGS_pda} ${CFLAGS_gnome}])
3255     AX_ADD_LDFLAGS([gnome_main],[${LDFLAGS_gtk} ${LDFLAGS_pda} ${LDFLAGS_gnome}])
3256 fi
3257
3258 if test "${NEED_GTK2_MAIN}" != "no"
3259 then
3260     AX_ADD_PLUGINS([gtk2_main])
3261     AX_ADD_CFLAGS([gtk2],[-DNEED_GTK2_MAIN])
3262     AX_ADD_CFLAGS([pda],[-DNEED_GTK2_MAIN])
3263     AX_ADD_CFLAGS([gtk2_main],[${CFLAGS_gtk2} ${CFLAGS_pda}])
3264     AX_ADD_LDFLAGS([gtk2_main],[${LDFLAGS_gtk2} ${LDFLAGS_pda}])
3265 fi
3266
3267 if test "${NEED_GNOME2_MAIN}" != "no"
3268 then
3269     AX_ADD_PLUGINS([gnome2_main])
3270     AX_ADD_CFLAGS([gnome2_main],[${CFLAGS_gtk2} ${CFLAGS_gnome2}])
3271     AX_ADD_LDFLAGS([gnome2_main],[${LDFLAGS_gtk2} ${LDFLAGS_gnome2}])
3272 fi
3273
3274 dnl
3275 dnl  qte_main plugin
3276 dnl
3277 if test "${NEED_QTE_MAIN}" != "no"
3278 then
3279     AX_ADD_PLUGINS([qte_main])
3280     AX_ADD_CPPFLAGS([qte opie vout_sdl],[-DNEED_QTE_MAIN])
3281     AX_ADD_CXXFLAGS([qte_main],[${CPPFLAGS_qte} ${CXXFLAGS_qte}])
3282     AX_ADD_LDFLAGS([qte_main],[${LDFLAGS_qte}])
3283 fi
3284
3285
3286 dnl
3287 dnl  Plugin and builtin checks
3288 dnl
3289 builtin_support=false
3290 plugin_support=:
3291
3292 dnl Support for plugins - this must be AT THE END
3293 AC_ARG_ENABLE(plugins,
3294   [  --disable-plugins       make all plugins built-in (default plugins enabled)],
3295   [if test "${enable_plugins}" = "no"
3296    then
3297      plugin_support=false
3298    fi])
3299
3300 dnl Automagically disable plugins if there is no system support for
3301 dnl dynamically loadable files (.so, .dll, .dylib).
3302 dnl don't forget vlc-win32 still can load .dll as plugins
3303 if test "${ac_cv_have_plugins}" = "no"
3304 then
3305   echo "*** Your system doesn't have plugin support. All plugins will be built"
3306   echo "statically."
3307   plugin_support=false
3308 fi
3309
3310 dnl Export automake variables
3311 if ${plugin_support}
3312 then
3313   for plugin in `echo ${PLUGINS}`
3314   do
3315     eval "${plugin}_p=yes"
3316   done
3317 else
3318   AX_ADD_BUILTINS([${PLUGINS}])
3319   PLUGINS=""
3320 fi
3321 AM_CONDITIONAL(HAVE_PLUGINS, ${plugin_support})
3322
3323 [if echo "${BUILTINS}" | grep '[^ ]' >/dev/null 2>&1
3324 then
3325   builtin_support=:
3326   for builtin in `echo ${BUILTINS}`
3327   do
3328     eval "${builtin}_b=yes"
3329   done
3330 fi]
3331 AM_CONDITIONAL(HAVE_BUILTINS, ${builtin_support})
3332
3333 dnl Import conditional variables generated by bootstrap
3334 AX_VLC_CONDITIONALS
3335
3336 dnl
3337 dnl  Stuff used by the program
3338 dnl
3339 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION} ${CODENAME}", [Simple version string])
3340 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "VLC media player - version ${VERSION} ${CODENAME} - (c) 1996-2003 VideoLAN", [Copyright string])
3341 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
3342
3343 VLC_SYMBOL="`echo ${VERSION} | sed -e 'y/.-/__/'`"
3344 AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${VLC_SYMBOL}", [String suffix for module functions])
3345 AC_DEFINE_UNQUOTED(MODULE_SYMBOL, ${VLC_SYMBOL}, [Symbol suffix for module functions])
3346 AC_DEFINE_UNQUOTED(LIBEXT, "${LIBEXT}", [Dynamic object extension])
3347
3348 DATA_PATH="${ac_tool_prefix}/share/vlc"
3349 AC_SUBST(DATA_PATH)
3350 PLUGIN_PATH="${ac_tool_prefix}/lib/vlc"
3351 AC_SUBST(PLUGIN_PATH)
3352
3353 dnl
3354 dnl  Handle substvars that use $(top_srcdir)
3355 dnl
3356 VLC_CONFIG="top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config"
3357 AC_SUBST(VLC_CONFIG)
3358 CPPFLAGS_save="${CPPFLAGS_save} -I\$(top_srcdir)/include"
3359
3360 dnl
3361 dnl  Restore *FLAGS
3362 dnl
3363 AX_RESTORE_FLAGS
3364
3365 dnl
3366 dnl  Create the vlc-config script
3367 dnl
3368 LDFLAGS_libvlc="${LDFLAGS_vlc} ${LDFLAGS_builtin}"
3369 for i in `echo "${BUILTINS}" | sed -e 's@[^ ]*/@@g'` ; do LDFLAGS_libvlc="${LDFLAGS_libvlc} ${libdir}/vlc/${i}.a `eval echo '$'{LDFLAGS_${i}}`" ; done
3370
3371 dnl
3372 dnl  Configuration is finished
3373 dnl
3374 AC_SUBST(SYS)
3375 AC_SUBST(ARCH)
3376 AC_SUBST(ALIASES)
3377 AC_SUBST(ASM)
3378 AC_SUBST(MOC)
3379 AC_SUBST(WINDRES)
3380 AC_SUBST(XPIDL)
3381 AC_SUBST(XPIDL_INCL)
3382 AC_SUBST(LIBEXT)
3383 AC_SUBST(INCLUDES)
3384 AC_SUBST(ALL_LINGUAS)
3385
3386 dnl Import substitutions generated by bootstrap
3387 AX_VLC_SUBSTS
3388
3389 dnl Create vlc-config.in
3390 AX_OUTPUT_VLC_CONFIG_IN
3391
3392 AC_OUTPUT([
3393   vlc-config
3394
3395   Makefile
3396   autotools/Makefile
3397   debian/Makefile
3398   doc/Makefile
3399   intl/Makefile
3400   ipkg/Makefile
3401   lib/Makefile
3402   modules/Makefile
3403   mozilla/Makefile
3404   m4/Makefile
3405   po/Makefile.in
3406   share/Makefile
3407   src/Makefile
3408
3409   modules/access/Makefile
3410   modules/access/dshow/Makefile
3411   modules/access/dvb/Makefile
3412   modules/access/dvd/Makefile
3413   modules/access/dvdplay/Makefile
3414   modules/access/dvdread/Makefile
3415   modules/access/mms/Makefile
3416   modules/access/pvr/Makefile
3417   modules/access/satellite/Makefile
3418   modules/access/v4l/Makefile
3419   modules/access/vcd/Makefile
3420   modules/access/vcdx/Makefile
3421   modules/access_output/Makefile
3422   modules/audio_filter/Makefile
3423   modules/audio_filter/channel_mixer/Makefile
3424   modules/audio_filter/converter/Makefile
3425   modules/audio_filter/resampler/Makefile
3426   modules/audio_mixer/Makefile
3427   modules/audio_output/Makefile
3428   modules/codec/Makefile
3429   modules/codec/faad/Makefile
3430   modules/codec/ffmpeg/Makefile
3431   modules/codec/ffmpeg/postprocessing/Makefile
3432   modules/codec/spudec/Makefile
3433   modules/control/Makefile
3434   modules/control/corba/Makefile
3435   modules/control/lirc/Makefile
3436   modules/control/rc/Makefile
3437   modules/demux/Makefile
3438   modules/demux/asf/Makefile
3439   modules/demux/avi/Makefile
3440   modules/demux/mp4/Makefile
3441   modules/demux/mpeg/Makefile
3442   modules/demux/util/Makefile
3443   modules/gui/Makefile
3444   modules/gui/beos/Makefile
3445   modules/gui/pda/Makefile
3446   modules/gui/gtk/Makefile
3447   modules/gui/gtk2/Makefile
3448   modules/gui/kde/Makefile
3449   modules/gui/macosx/Makefile
3450   modules/gui/ncurses/Makefile
3451   modules/gui/qnx/Makefile
3452   modules/gui/qt/Makefile
3453   modules/gui/skins/Makefile
3454   modules/gui/wxwindows/Makefile
3455   modules/misc/Makefile
3456   modules/misc/dummy/Makefile
3457   modules/misc/logger/Makefile
3458   modules/misc/memcpy/Makefile
3459   modules/misc/network/Makefile
3460   modules/misc/testsuite/Makefile
3461   modules/mux/Makefile
3462   modules/mux/mpeg/Makefile
3463   modules/packetizer/Makefile
3464   modules/stream_out/Makefile
3465   modules/video_chroma/Makefile
3466   modules/video_filter/Makefile
3467   modules/video_filter/deinterlace/Makefile
3468   modules/video_output/Makefile
3469   modules/video_output/directx/Makefile
3470   modules/video_output/mga/Makefile
3471   modules/video_output/qte/Makefile
3472   modules/video_output/x11/Makefile
3473   modules/visualization/Makefile
3474   modules/visualization/scope/Makefile
3475   modules/visualization/xosd/Makefile
3476   modules/visualization/visual/Makefile
3477 ],[
3478   chmod 0755 vlc-config
3479 ])
3480
3481 dnl Generate makefiles found by bootstrap
3482
3483 printf "
3484 vlc configuration
3485 --------------------
3486 vlc version           : ${VERSION}
3487 system                : ${SYS}
3488 architecture          : ${ARCH}
3489 build flavour         : "
3490 test "${enable_debug}" = "yes" && printf "debug "
3491 test "${enable_cprof}" = "yes" && printf "cprof "
3492 test "${enable_gprof}" = "yes" && printf "gprof "
3493 test "${enable_optimizations}" = "yes" && printf "optim "
3494 test "${enable_release}" = "yes" && printf "release " || printf "devel "
3495 echo "
3496 vlc aliases           :${ALIASES}
3497
3498 You can tune the compiler flags in vlc-config.
3499 To build vlc and its plugins, type \`make'.
3500 "
3501