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