]> git.sesse.net Git - vlc/blob - configure.in
49a38c584d95a8f984c05df984f8badd00ad4e43
[vlc] / configure.in
1 dnl Autoconf settings for vlc
2 AC_INIT(include/main.h)
3 AC_CONFIG_HEADER(include/defs.h)
4 AC_CANONICAL_SYSTEM
5
6 CONFIGURE_LINE="$0 $*"
7
8 PACKAGE="vlc"
9 VERSION="0.5.0-cvs"
10 CODENAME="Natalya"
11
12 dnl
13 dnl  Save *FLAGS
14 dnl
15 save_CPPFLAGS="${CPPFLAGS}"
16 save_CFLAGS="${CFLAGS}"
17 save_LDFLAGS="${LDFLAGS}"
18
19 dnl
20 dnl Check for tools
21 dnl
22 AC_PROG_MAKE_SET
23 AC_PROG_CC
24 AC_PROG_CPP
25
26 dnl Find the right ranlib, even when cross-compiling
27 AC_CHECK_TOOL(RANLIB, ranlib, :)
28 AC_CHECK_TOOL(STRIP, strip, :)
29
30 dnl
31 dnl Check for GNU make
32 dnl
33 AC_PATH_PROG(GMAKE, gmake, no)
34 if test "x${GMAKE}" = "xno"; then
35   AC_CACHE_CHECK([whether GNU make is installed],
36       [ac_cv_gmake],
37       [if make --version | grep -q -i gnu; then
38          ac_cv_gmake="yes"
39        else
40          echo "This software needs you to install GNU make to compile properly."
41          echo "You can get it from http://www.gnu.org/."
42          exit
43        fi])
44   VLC_MAKE="make"
45 else
46   VLC_MAKE="gmake"
47 fi
48
49 dnl Gettext stuff
50 ALL_LINGUAS="de en_GB fr ja no ru nl pl se"
51
52 AC_DEFINE_UNQUOTED(VLC_PACKAGE, "${PACKAGE}", [Package name])
53 AC_DEFINE_UNQUOTED(VLC_VERSION, "${VERSION}", [Package version])
54 AM_GNU_GETTEXT
55
56 dnl AM_PROG_LIBTOOL
57 AC_PROG_INSTALL
58
59 dnl
60 dnl  Set default LDFLAGS
61 dnl
62 vlc_LDFLAGS="${LDFLAGS}"
63
64 dnl
65 dnl  Check the operating system
66 dnl
67 case "x${target_os}" in
68   x)
69     SYS=unknown
70     ;;
71   xlinux*)
72     SYS=linux
73     ;;
74   xbsdi*)
75     SYS=bsdi
76     save_CFLAGS="${save_CFLAGS} -pthread"; CFLAGS="${save_CFLAGS}"
77     dvd_LDFLAGS="${dvd_LDFLAGS} -ldvd"
78     vcd_LDFLAGS="${vcd_LDFLAGS} -ldvd"
79     ;;
80   x*bsd*)
81     SYS="${target_os}"
82     save_CFLAGS="${save_CFLAGS} -pthread"; CFLAGS="${save_CFLAGS}"
83     ;;
84   xdarwin*)
85     SYS=darwin
86     save_CFLAGS="${save_CFLAGS} -no-cpp-precomp"; CFLAGS="${save_CFLAGS}"
87     vlc_LDFLAGS="${vlc_LDFLAGS} -all_load"
88     ;;
89   x*mingw32*)
90     SYS=mingw32
91     AC_CHECK_TOOL(WINDRES, windres, :)
92     save_CFLAGS="${save_CFLAGS} -fnative-struct -D_OFF_T_ -D_off_t=long"; CFLAGS="${save_CFLAGS}"
93     vlc_LDFLAGS="${vlc_LDFLAGS} -mwindows -Xlinker --force-exe-suffix"
94     vlc_LDFLAGS="${vlc_LDFLAGS} -lws2_32 -lnetapi32"
95     ipv4_LDFLAGS="${ipv4_LDFLAGS} -lws2_32"
96     ipv6_LDFLAGS="${ipv6_LDFLAGS} -lws2_32"
97     http_LDFLAGS="${http_LDFLAGS} -lws2_32"
98     rc_LDFLAGS="${rc_LDFLAGS} -lws2_32"
99     ;;
100   x*nto*)
101     SYS=nto
102     x11_LDFLAGS="${x11_LDFLAGS} -lsocket"
103     xvideo_LDFLAGS="${xvideo_LDFLAGS} -lsocket"
104     ;;
105   xsolaris*)
106     SYS=solaris
107     ;;
108   xbeos)
109     SYS=beos
110     save_CFLAGS="${save_CFLAGS} -Wno-multichar -Wno-ctor-dtor-privacy -Woverloaded-virtual"; CFLAGS="${save_CFLAGS}"
111     vlc_LDFLAGS="${vlc_LDFLAGS} -lbe"
112     plugins_LDFLAGS="${plugins_LDFLAGS} -nostart"
113     beos_LDFLAGS="${beos_LDFLAGS} -lbe -lgame -lroot -ltracker"
114     ipv4_LDFLAGS="${ipv4_LDFLAGS} -lbind"
115     ;;
116   x*)
117     SYS="${target_os}"
118     ;;
119 esac
120
121 dnl Flags for plugin compilation
122 if test "x${SYS}" = "xmingw32"
123 then
124   plugins_CFLAGS="${plugins_CFLAGS} -fnative-struct"
125 else
126   plugins_CFLAGS="${plugins_CFLAGS} -fPIC"
127   plugins_LDFLAGS="${plugins_LDFLAGS} -fPIC"
128 fi
129
130 dnl The -DSYS_FOO flag
131 save_CFLAGS="${save_CFLAGS} -DSYS_`echo ${SYS} | sed -e 's/-.*//' | tr 'abcdefghijklmnopqrstuvwxyz.' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`"; CFLAGS="${save_CFLAGS}"
132
133 dnl Check for system libs needed
134 AC_CHECK_FUNCS(gettimeofday select strerror strtod strtol isatty vasprintf swab sigrelse getpwuid memalign posix_memalign gethostbyname2 atoll strndup)
135
136 AC_CHECK_FUNC(connect,,[
137   AC_CHECK_LIB(socket,connect,
138     ipv4_LDFLAGS="${ipv4_LDFLAGS} -lsocket"
139     vlc_LDFLAGS="${vlc_LDFLAGS} -lsocket"
140 )])
141 AC_CHECK_FUNC(send,,[
142   AC_CHECK_LIB(socket,send,
143     http_LDFLAGS="${http_LDFLAGS} -lsocket"
144 )])
145 AC_CHECK_FUNC(gethostbyname,,[
146   AC_CHECK_LIB(nsl,gethostbyname,ipv4_LDFLAGS="${ipv4_LDFLAGS} -lnsl")
147 ])
148 AC_CHECK_FUNC(gethostbyname,,[
149   AC_CHECK_LIB(bind,gethostbyname,ipv4_LDFLAGS="${ipv4_LDFLAGS} -lbind")
150 ])
151 have_nanosleep=0
152 AC_CHECK_FUNC(nanosleep,have_nanosleep=1,[
153   AC_CHECK_LIB(rt,nanosleep,
154     [vlc_LDFLAGS="${vlc_LDFLAGS} -lrt"; have_nanosleep=1],
155     [AC_CHECK_LIB(posix4,nanosleep,
156         [vlc_LDFLAGS="${vlc_LDFLAGS} -lposix4"; have_nanosleep=1])]
157   )
158 ])
159 if test x$have_nanosleep = x1; then
160   AC_DEFINE(HAVE_NANOSLEEP, 1,
161             Define if nanosleep is available.)
162 fi
163 # HP/UX port
164 AC_CHECK_LIB(rt,sem_init, [vlc_LDFLAGS="${vlc_LDFLAGS} -lrt"])
165
166 AC_CHECK_FUNC(inet_aton,,[
167   AC_CHECK_LIB(resolv,inet_aton,ipv4_LDFLAGS="${ipv4_LDFLAGS} -lresolv")
168 ])
169 AC_CHECK_FUNC(textdomain,,[
170   AC_CHECK_LIB(intl,textdomain,
171     vlc_LDFLAGS="${vlc_LDFLAGS} -lintl"
172     plugins_LDFLAGS="${plugins_LDFLAGS} -lintl"
173   )
174 ])
175
176 dnl Check for getopt
177 NEED_GETOPT=0
178 AC_CHECK_FUNC(getopt_long,[AC_DEFINE(HAVE_GETOPT_LONG,1,long getopt support)],
179 [ # FreeBSD has a gnugetopt library for this:
180   AC_CHECK_LIB([gnugetopt],[getopt_long],
181     [AC_DEFINE(HAVE_GETOPT_LONG,1,getopt support) vlc_LDFLAGS="${vlc_LDFLAGS} -lgnugetopt"],
182     [NEED_GETOPT=1])])
183
184 AC_TYPE_SIGNAL
185 AC_CHECK_LIB(dl,dlopen,vlc_LDFLAGS="${vlc_LDFLAGS} -ldl")
186 AC_CHECK_LIB(m,cos,
187   imdct_LDFLAGS="${imdct_LDFLAGS} -lm"
188   filter_distort_LDFLAGS="${filter_distort_LDFLAGS} -lm")
189 AC_CHECK_LIB(m,pow,
190   ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -lm"
191   imdct_LDFLAGS="${imdct_LDFLAGS} -lm"
192   imdct3dn_LDFLAGS="${imdct3dn_LDFLAGS} -lm"
193   imdctsse_LDFLAGS="${imdctsse_LDFLAGS} -lm"
194   chroma_i420_rgb_LDFLAGS="${chroma_i420_rgb_LDFLAGS} -lm"
195 )
196
197 dnl Check for pthreads - borrowed from XMMS
198 THREAD_LIB=error
199 if test "x${THREAD_LIB}" = "xerror"; then
200   AC_CHECK_LIB(pthread,main,THREAD_LIB="-lpthread")
201 fi
202 if test "x${THREAD_LIB}" = "xerror"; then
203   AC_CHECK_LIB(pthreads,main,THREAD_LIB="-lpthreads")
204 fi
205 if test "x${THREAD_LIB}" = "xerror"; then
206   AC_CHECK_LIB(c_r,main,THREAD_LIB="-lc_r")
207 fi
208 if test "x${THREAD_LIB}" = "xerror"; then
209   AC_CHECK_FUNC(pthread_mutex_lock)
210   THREAD_LIB=""
211 fi
212
213 dnl Check for cthreads under GNU/Hurd for instance
214 AC_CHECK_LIB(threads,cthread_fork,THREAD_LIB="-lthreads")
215
216 dnl Check for misc headers
217 AC_EGREP_HEADER(pthread_cond_t,pthread.h,[
218   AC_DEFINE(PTHREAD_COND_T_IN_PTHREAD_H, 1,
219             Define if <pthread.h> defines pthread_cond_t.)])
220 AC_EGREP_HEADER(pthread_once,pthread.h,[
221   AC_DEFINE(PTHREAD_ONCE_IN_PTHREAD_H, 1,
222             Define if <pthread.h> defines pthread_once.)])
223 AC_EGREP_HEADER(strncasecmp,strings.h,[
224   AC_DEFINE(STRNCASECMP_IN_STRINGS_H, 1,
225             Define if <strings.h> defines strncasecmp.)])
226
227 dnl Check for headers
228 AC_CHECK_HEADERS(stdint.h getopt.h strings.h inttypes.h sys/int_types.h)
229 AC_CHECK_HEADERS(sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h)
230 AC_CHECK_HEADERS(dlfcn.h image.h)
231 AC_CHECK_HEADERS(arpa/inet.h net/if.h netinet/in.h sys/socket.h)
232 AC_CHECK_HEADERS(machine/param.h sys/shm.h)
233 AC_CHECK_HEADERS(linux/version.h)
234
235 AC_HEADER_TIME
236
237 dnl Mac OS X and other OSes don't have declaration for nanosleep
238 AC_EGREP_HEADER(nanosleep,time.h,[
239   AC_DEFINE(HAVE_DECL_NANOSLEEP, 1,
240             Define if <time.h> defines nanosleep.)
241 ])
242
243 dnl Make sure we have timespecs
244 AC_EGREP_HEADER(timespec,sys/time.h,[
245   AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1,
246             Define if <sys/time.h> defines struct timespec.)
247 ])
248
249 dnl Check for threads library
250 AC_CHECK_HEADERS(cthreads.h pthread.h kernel/scheduler.h kernel/OS.h)
251
252 dnl Default X headers and libraries
253 if test "x${x_includes}" = "xNONE"; then
254   x_includes="/usr/X11R6/include"
255 fi
256 if test "x${x_libraries}" = "xNONE"; then
257   x_libraries="/usr/X11R6/lib"
258 fi
259
260 dnl Check for DPMS
261 if test "x${SYS}" != "xmingw32"
262 then
263   CPPFLAGS="${save_CPPFLAGS} -I${x_includes}"
264   AC_CHECK_HEADERS(X11/extensions/dpms.h, [
265     AC_EGREP_HEADER(DPMSInfo,X11/extensions/dpms.h,[
266       AC_DEFINE(DPMSINFO_IN_DPMS_H, 1,
267                 Define if <X11/extensions/dpms.h> defines DPMSInfo.)
268     ])
269   ])
270   CPPFLAGS="${save_CPPFLAGS}"
271 fi
272
273 dnl Check for ntohl, etc.
274 AC_CACHE_CHECK([for ntohl in sys/param.h],
275     [ac_cv_c_ntohl_sys_param_h],
276     [CFLAGS="${save_CFLAGS} -Wall -Werror"
277      AC_TRY_COMPILE([#include <sys/param.h>],
278         [void foo() { int meuh; ntohl(meuh); }],
279         ac_cv_c_ntohl_sys_param_h=yes, ac_cv_c_ntohl_sys_param_h=no)])
280 if test "x${ac_cv_c_ntohl_sys_param_h}" != "xno"; then
281     AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if <sys/param.h> defines ntohl.)
282 fi
283
284 dnl Check for inline function size limit
285 AC_CACHE_CHECK([if \$CC accepts -finline-limit],
286     [ac_cv_c_inline_limit],
287     [CFLAGS="${save_CFLAGS} -finline-limit-30000"
288      AC_TRY_COMPILE([],,ac_cv_c_inline_limit=yes, ac_cv_c_inline_limit=no)])
289 if test "x${ac_cv_c_inline_limit}" != "xno"; then
290     save_CFLAGS="${save_CFLAGS} -finline-limit-30000"; CFLAGS="${save_CFLAGS}"
291 fi
292
293 dnl Check for -W or -w flags
294 AC_CACHE_CHECK([if \$CC accepts -Wall -Winline],
295     [ac_cv_c_Wall_Winline],
296     [CFLAGS="-Wall -Winline ${save_CFLAGS}"
297      AC_TRY_COMPILE([],,ac_cv_c_Wall_Winline=yes, ac_cv_c_Wall_Winline=no)])
298 if test "x${ac_cv_c_Wall_Winline}" != "xno"; then
299     save_CFLAGS="-Wall -Winline ${save_CFLAGS}"; CFLAGS="${save_CFLAGS}"
300 else
301     AC_CACHE_CHECK([if \$CC accepts -wall -winline],
302         [ac_cv_c_wall_winline],
303         [CFLAGS="-wall -winline ${save_CFLAGS}"
304          AC_TRY_COMPILE([],,ac_cv_c_wall_winline=yes, ac_cv_c_wall_winline=no)])
305     if test "x${ac_cv_c_wall_winline}" != "xno"; then
306         save_CFLAGS="-wall -winline ${save_CFLAGS}"; CFLAGS="${save_CFLAGS}"
307     fi
308 fi
309
310 dnl Check for -pipe
311 AC_CACHE_CHECK([if \$CC accepts -pipe],
312     [ac_cv_c_pipe],
313     [CFLAGS="${save_CFLAGS} -pipe"
314      AC_TRY_COMPILE([],,ac_cv_c_pipe=yes, ac_cv_c_pipe=no)])
315 if test "x${ac_cv_c_pipe}" != "xno"; then
316     save_CFLAGS="${save_CFLAGS} -pipe"; CFLAGS="${save_CFLAGS}"
317 fi
318
319 dnl Check for various optimization flags
320 AC_CACHE_CHECK([if \$CC accepts -O3],
321     [ac_cv_c_o3],
322     [CFLAGS="${save_CFLAGS} -O3"
323      AC_TRY_COMPILE([],,ac_cv_c_o3=yes, ac_cv_c_o3=no)])
324 if test "x${ac_cv_c_o3}" != "xno"; then
325     CFLAGS_OPTIM="${CFLAGS_OPTIM} -O3"
326 else
327     AC_CACHE_CHECK([if \$CC accepts -O2],
328         [ac_cv_c_o2],
329         [CFLAGS="${save_CFLAGS} -O2"
330          AC_TRY_COMPILE([],,ac_cv_c_o2=yes, ac_cv_c_o2=no)])
331     if test "x${ac_cv_c_o2}" != "xno"; then
332         CFLAGS_OPTIM="${CFLAGS_OPTIM} -O2"
333     else
334         AC_CACHE_CHECK([if \$CC accepts -O],
335             [ac_cv_c_o],
336             [CFLAGS="${save_CFLAGS} -O"
337              AC_TRY_COMPILE([],,ac_cv_c_o=yes, ac_cv_c_o=no)])
338         if test "x${ac_cv_c_o}" != "xno"; then
339             CFLAGS_OPTIM="${CFLAGS_OPTIM} -O"
340         fi
341     fi
342 fi
343
344 dnl Check for -ffast-math
345 AC_CACHE_CHECK([if \$CC accepts -ffast-math],
346     [ac_cv_c_fast_math],
347     [CFLAGS="${save_CFLAGS} -ffast-math"
348      AC_TRY_COMPILE([],,ac_cv_c_fast_math=yes, ac_cv_c_fast_math=no)])
349 if test "x${ac_cv_c_fast_math}" != "xno"; then
350     CFLAGS_OPTIM="${CFLAGS_OPTIM} -ffast-math"
351 fi
352
353 dnl Check for -funroll-loops
354 AC_CACHE_CHECK([if \$CC accepts -funroll-loops],
355     [ac_cv_c_unroll_loops],
356     [CFLAGS="${save_CFLAGS} -funroll-loops"
357      AC_TRY_COMPILE([],,ac_cv_c_unroll_loops=yes, ac_cv_c_unroll_loops=no)])
358 if test "x${ac_cv_c_unroll_loops}" != "xno"; then
359     CFLAGS_OPTIM="${CFLAGS_OPTIM} -funroll-loops"
360 fi
361
362 dnl Check for -fomit-frame-pointer
363 AC_CACHE_CHECK([if \$CC accepts -fomit-frame-pointer],
364     [ac_cv_c_omit_frame_pointer],
365     [CFLAGS="${save_CFLAGS} -fomit-frame-pointer"
366      AC_TRY_COMPILE([],,ac_cv_c_omit_frame_pointer=yes, ac_cv_c_omit_frame_pointer=no)])
367 if test "x${ac_cv_c_omit_frame_pointer}" != "xno"; then
368     CFLAGS_OPTIM_NODEBUG="${CFLAGS_OPTIM_NODEBUG} -fomit-frame-pointer"
369     # this plugin does not compile without -fomit-frame-pointer, damn gcc!
370     i420_yuy2_mmx_CFLAGS="${i420_yuy2_mmx_CFLAGS} -fomit-frame-pointer"
371 fi
372
373 dnl Check for Darwin plugin linking flags
374 AC_CACHE_CHECK([if \$CC accepts -bundle -undefined error -lcc_dynamic],
375     [ac_cv_ld_darwin],
376     [CFLAGS="${save_CFLAGS} -bundle -undefined error -lcc_dynamic"
377      AC_TRY_COMPILE([],,ac_cv_ld_darwin=yes, ac_cv_ld_darwin=no)])
378 if test "x${ac_cv_ld_darwin}" != "xno"; then
379     plugins_LDFLAGS="${plugins_LDFLAGS} -bundle -undefined error -lcc_dynamic"
380 fi
381
382 dnl Check for standard plugin linking flags
383 AC_CACHE_CHECK([if \$CC accepts -shared],
384     [ac_cv_ld_plugins],
385     [CFLAGS="${save_CFLAGS} -shared"
386      AC_TRY_COMPILE([],, ac_cv_ld_plugins=yes, ac_cv_ld_plugins=no)])
387 if test "x${ac_cv_ld_plugins}" != "xno"; then
388     plugins_LDFLAGS="${plugins_LDFLAGS} -shared"
389 fi
390         
391 dnl Check for variadic macros
392 AC_CACHE_CHECK([for variadic cpp macros],
393     [ac_cv_cpp_variadic_macros],
394     [CFLAGS="${save_CFLAGS}"
395      AC_TRY_COMPILE(
396          [#include <stdio.h>
397           #define a(b,c...) printf(b,##c)],
398          [a("foo");a("%s","bar");a("%s%s","baz","quux");],
399          ac_cv_cpp_variadic_macros=yes,
400          ac_cv_cpp_variadic_macros=no)])
401 if test "x${ac_cv_cpp_variadic_macros}" != "xno"; then
402     AC_DEFINE(HAVE_VARIADIC_MACROS, 1, Support for variadic macros)
403 fi
404
405 dnl Checks for __attribute__(aligned()) directive
406 AC_CACHE_CHECK([__attribute__ ((aligned ())) support],
407     [ac_cv_c_attribute_aligned],
408     [ac_cv_c_attribute_aligned=0
409         CFLAGS="${save_CFLAGS} -Werror"
410     for ac_cv_c_attr_align_try in 2 4 8 16 32 64; do
411         AC_TRY_COMPILE([],
412         [static char c __attribute__ ((aligned(${ac_cv_c_attr_align_try}))) = 0; return c;],
413         [ac_cv_c_attribute_aligned="${ac_cv_c_attr_align_try}"])
414     done
415         CFLAGS="${save_CFLAGS}"])
416 if test "x${ac_cv_c_attribute_aligned}" != "x0"; then
417     AC_DEFINE_UNQUOTED([ATTRIBUTE_ALIGNED_MAX],
418         [${ac_cv_c_attribute_aligned}],[Maximum supported data alignment])
419 fi
420
421 dnl
422 dnl  Check the CPU
423 dnl
424 case "x${target_cpu}" in
425   x)
426     ARCH=unknown
427     ;;
428   *)
429     ARCH="${target_cpu}"
430     ;;
431 esac
432
433 dnl
434 dnl  default modules
435 dnl
436 BUILTINS="${BUILTINS}"
437 PLUGINS="${PLUGINS} misc/dummy/dummy misc/null/null"
438 PLUGINS="${PLUGINS} control/rc/rc misc/logger/logger access/file access/udp access/http misc/network/ipv4 misc/memcpy/memcpy"
439 PLUGINS="${PLUGINS} demux/mpeg/es demux/mpeg/audio demux/mpeg/ps demux/mpeg/ts"
440 PLUGINS="${PLUGINS} codec/mpeg_video/idct/idct codec/mpeg_video/idct/idctclassic codec/mpeg_video/motion/motion codec/a52old/imdct/imdct codec/a52old/downmix/downmix codec/mpeg_audio/mpeg_audio codec/a52old/a52old codec/mpeg_video/mpeg_video codec/lpcm/lpcm codec/spdif/spdif codec/spudec/spudec"
441 PLUGINS="${PLUGINS} video_filter/deinterlace/deinterlace video_filter/invert video_filter/wall video_filter/transform video_filter/distort video_filter/clone video_filter/crop"
442 PLUGINS="${PLUGINS} visualization/scope/scope"
443 PLUGINS="${PLUGINS} video_chroma/i420_rgb video_chroma/i420_yuy2 video_chroma/i422_yuy2 video_chroma/i420_ymga"
444
445 dnl
446 dnl  Accelerated modules
447 dnl
448 MMX_MODULES="misc/memcpy/memcpymmx codec/mpeg_video/idct/idctmmx codec/mpeg_video/motion/motionmmx video_chroma/i420_rgb_mmx video_chroma/i420_yuy2_mmx video_chroma/i422_yuy2_mmx video_chroma/i420_ymga_mmx"
449 MMXEXT_MODULES="misc/memcpy/memcpymmxext codec/mpeg_video/idct/idctmmxext codec/mpeg_video/motion/motionmmxext"
450 THREEDNOW_MODULES="misc/memcpy/memcpy3dn codec/a52old/imdct/imdct3dn codec/a52old/downmix/downmix3dn"
451 SSE_MODULES="codec/a52old/imdct/imdctsse codec/a52old/downmix/downmixsse"
452 ALTIVEC_MODULES="codec/mpeg_video/idct/idctaltivec codec/mpeg_video/motion/motionaltivec misc/memcpy/memcpyaltivec"
453
454 AC_CACHE_CHECK([if \$CC groks MMX inline assembly],
455     [ac_cv_mmx_inline],
456     [CFLAGS="${save_CFLAGS}"
457      AC_TRY_COMPILE(,[void *p;asm volatile("packuswb %%mm1,%%mm2"::"r"(p));],
458                     ac_cv_mmx_inline=yes, ac_cv_mmx_inline=no)])
459 if test "x${ac_cv_mmx_inline}" != "xno"; then
460   ACCEL_MODULES="${ACCEL_MODULES} ${MMX_MODULES}"
461 fi
462
463 AC_CACHE_CHECK([if \$CC groks MMX EXT inline assembly],
464     [ac_cv_mmxext_inline],
465     [CFLAGS="${save_CFLAGS}"
466      AC_TRY_COMPILE(,[void *p;asm volatile("maskmovq %%mm1,%%mm2"::"r"(p));],
467                     ac_cv_mmxext_inline=yes, ac_cv_mmxext_inline=no)])
468 if test "x${ac_cv_mmxext_inline}" != "xno"; then
469   ACCEL_MODULES="${ACCEL_MODULES} ${MMXEXT_MODULES}"
470 fi
471
472 AC_CACHE_CHECK([if \$CC groks 3D Now! inline assembly],
473     [ac_cv_3dnow_inline],
474     [CFLAGS="${save_CFLAGS}"
475      AC_TRY_COMPILE(,[void *p;asm volatile("pfadd %%mm1,%%mm2"::"r"(p));],
476                     ac_cv_3dnow_inline=yes, ac_cv_3dnow_inline=no)])
477 if test "x${ac_cv_3dnow_inline}" != "xno"; then
478   AC_DEFINE(CAN_COMPILE_3DNOW, 1, Define if \$CC groks 3D Now! inline assembly.)
479   ACCEL_MODULES="${ACCEL_MODULES} ${THREEDNOW_MODULES}"
480 fi
481
482 AC_CACHE_CHECK([if \$CC groks SSE inline assembly],
483     [ac_cv_sse_inline],
484     [CFLAGS="${save_CFLAGS}"
485      AC_TRY_COMPILE(,[void *p;asm volatile("xorps %%xmm1,%%xmm2"::"r"(p));],
486                     ac_cv_sse_inline=yes, ac_cv_sse_inline=no)])
487 if test "x${ac_cv_sse_inline}" != "xno" -a "x${SYS}" != "xmingw32"; then
488   AC_DEFINE(CAN_COMPILE_SSE, 1, Define if \$CC groks SSE inline assembly.)
489   ACCEL_MODULES="${ACCEL_MODULES} ${SSE_MODULES}"
490 fi
491
492 # don't try to grok AltiVec with native mingw32 it doesn't work right now
493 # we should be able to remove this test with future versions of mingw32
494 if test "x${SYS}" != "xmingw32"; then
495 AC_CACHE_CHECK([if \$CC groks AltiVec inline assembly],
496     [ac_cv_altivec_inline],
497     [CFLAGS="${save_CFLAGS}"
498      AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
499          ac_cv_altivec_inline=yes,
500          [CFLAGS="${save_CFLAGS} -Wa,-m7400"
501           AC_TRY_COMPILE(,[asm volatile("vperm 0,1,2,3");],
502             [ac_cv_altivec_inline="-Wa,-m7400"],
503             ac_cv_altivec_inline=no)
504          ])])
505 if test "x${ac_cv_altivec_inline}" != "xno"; then
506   AC_DEFINE(CAN_COMPILE_ALTIVEC, 1, Define if \$CC groks AltiVec inline assembly.)
507   if test "x${ac_cv_altivec_inline}" != "xyes"; then
508     idctaltivec_CFLAGS="${idctaltivec_CFLAGS} ${ac_cv_altivec_inline}"
509     motionaltivec_CFLAGS="${motionaltivec_CFLAGS} ${ac_cv_altivec_inline}"
510     memcpyaltivec_CFLAGS="${memcpyaltivec_CFLAGS} ${ac_cv_altivec_inline}"
511     vlc_CFLAGS="${vlc_CFLAGS} ${ac_cv_altivec_inline}"
512   fi
513   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
514 fi
515
516 AC_CACHE_CHECK([if \$CC groks AltiVec C extensions],
517     [ac_cv_c_altivec],
518     [CFLAGS="${save_CFLAGS} -faltivec"
519      # Darwin test
520      AC_TRY_COMPILE(,[vec_mtvscr((vector unsigned int)(0));],
521         ac_cv_c_altivec=-faltivec, [
522         # Linux/PPC test
523         CFLAGS="${save_CFLAGS} ${idctaltivec_CFLAGS} -fvec"
524         AC_TRY_COMPILE(,[vec_mtvscr((vector unsigned int)(0));],
525             [ac_cv_c_altivec="-fvec"], ac_cv_c_altivec=no)
526         ])
527      CFLAGS="${save_CFLAGS}"])
528 if test "x${ac_cv_c_altivec}" != "xno"; then
529   AC_DEFINE(CAN_COMPILE_C_ALTIVEC, 1, Define if your compiler groks C AltiVec extensions.)
530   idctaltivec_CFLAGS="${idctaltivec_CFLAGS} ${ac_cv_c_altivec}"
531   motionaltivec_CFLAGS="${motionaltivec_CFLAGS} ${ac_cv_c_altivec}"
532   memcpyaltivec_CFLAGS="${memcpyaltivec_CFLAGS} ${ac_cv_c_altivec}"
533   vlc_CFLAGS="${vlc_CFLAGS} ${ac_cv_c_altivec}"
534   ACCEL_MODULES="${ACCEL_MODULES} ${ALTIVEC_MODULES}"
535 fi
536
537 AC_CACHE_CHECK([if linker needs -framework vecLib],
538     [ac_cv_ld_altivec],
539     [LDFLAGS="${vlc_LDFLAGS} -framework vecLib"
540      AC_TRY_LINK([],,ac_cv_ld_altivec=yes,ac_cv_ld_altivec=no)
541      LDFLAGS="${save_LDFLAGS}"
542     ])
543 if test "x${ac_cv_ld_altivec}" != "xno"; then
544   idctaltivec_LDFLAGS="${idctaltivec_LDFLAGS} -framework vecLib"
545   motionaltivec_LDFLAGS="${motionaltivec_LDFLAGS} -framework vecLib"
546   memcpyaltivec_LDFLAGS="${memcpyaltivec_LDFLAGS} -framework vecLib"
547   vlc_LDFLAGS="${vlc_LDFLAGS} -framework vecLib"
548 fi
549 fi # end if mingw32
550
551
552 AC_ARG_WITH(,[])
553 AC_ARG_WITH(,[Optimization options:])
554
555 dnl
556 dnl  Special arch tuning
557 dnl
558 AC_ARG_WITH(tuning,
559 [  --with-tuning=ARCH      enable special tuning for an architecture
560                           (default i686 on IA-32 and 750 on PPC)])
561 if test "x${with_tuning}" != "x"; then
562     TUNING="${with_tuning}"
563 else
564     if test "x${target_cpu}" = "xi686" -o "x${target_cpu}" = "xi586" -o "x${target_cpu}" = "xi486" -o "x${target_cpu}" = "xi386"; then TUNING="pentiumpro"
565     else
566         if test "x${target_cpu}" = "xpowerpc"; then TUNING="750"; fi
567     fi
568 fi
569
570 dnl
571 dnl  x86 accelerations
572 dnl
573 if test "x${target_cpu}" = "xi686" -o "x${target_cpu}" = "xi586" -o "x${target_cpu}" = "xx86" -o "x${target_cpu}" = "xi386"
574 then
575     ARCH="${ARCH} mmx"
576     PLUGINS="${PLUGINS} ${ACCEL_MODULES}"
577 fi
578
579 dnl
580 dnl  Enable/disable optimizations
581 dnl
582 AC_ARG_ENABLE(optimizations,
583 [  --disable-optimizations disable compiler optimizations (default enabled)],
584 [ if test "x${enable_optimizations}" = "xno"; then OPTIMS=0; fi ],
585 [ OPTIMS=1 ])
586
587 dnl
588 dnl  AltiVec acceleration
589 dnl
590 AC_ARG_ENABLE(altivec,
591 [  --disable-altivec       disable AltiVec optimizations (default enabled on PPC)],
592 [ if test "x${enable_altivec}" = "xyes"; then ARCH="${ARCH} altivec";
593     BUILTINS="${BUILTINS} ${ACCEL_MODULES}"; fi ],
594 [ if test "x${target_cpu}" = "xpowerpc"; then ARCH="${ARCH} altivec";
595     BUILTINS="${BUILTINS} ${ACCEL_MODULES}"; fi ])
596
597 dnl
598 dnl  Debugging mode
599 dnl
600 DEBUG=0
601 AC_ARG_ENABLE(debug,
602 [  --enable-debug          debug mode (default disabled)],
603 [ if test "x${enable_debug}" = "xyes"; then DEBUG=1; fi ])
604
605 dnl
606 dnl  Enable release-specific flags
607 dnl
608 RELEASE=0
609 AC_ARG_ENABLE(release,
610 [  --enable-release        activate extra optimizations (default disabled)],
611 [ if test "x${enable_release}" = "xyes"; then RELEASE=1; fi ],
612 [ VERSION="${VERSION}_`date +%Y-%m-%d`" ])
613
614 dnl
615 dnl  Input plugins
616 dnl
617
618 AC_ARG_WITH(,[Input plugins:])
619
620 dnl
621 dnl  DVD module: optionally check for installed libdvdcss
622 dnl
623 AC_ARG_ENABLE(dvd,
624 [  --enable-dvd            DVD input module (default enabled)])
625 if test "x${enable_dvd}" != "xno"
626 then
627   AC_ARG_WITH(dvdcss, 
628   [    --with-dvdcss=PATH    libdvdcss headers and libraries])
629   AC_ARG_WITH(dvdcss-tree, 
630   [    --with-dvdcss-tree=PATH libdvdcss tree for static linking])
631   case "x${with_dvdcss}" in
632   x|xyes)
633     if test "x${with_dvdcss_tree}" = x
634     then
635       AC_CHECK_HEADERS(dvdcss/dvdcss.h,
636         [ PLUGINS="${PLUGINS} access/dvd/dvd"
637           dvd_LDFLAGS="${dvd_LDFLAGS} -ldvdcss" ],
638         [ 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.])
639           AC_MSG_ERROR([cannot find libdvdcss headers]) ])
640     else
641       AC_MSG_CHECKING(for libdvdcss.a in ${with_dvdcss_tree})
642       real_dvdcss_tree="`cd ${with_dvdcss_tree} 2>/dev/null && pwd`"
643       if test "x${real_dvdcss_tree}" = "x"
644       then
645         dnl  The given directory can't be found
646         AC_MSG_RESULT(no)
647         AC_MSG_ERROR([cannot cd to ${with_dvdcss_tree}])
648       fi
649       if test -f "${real_dvdcss_tree}/src/.libs/libdvdcss.a"
650       then
651         dnl  Use a custom libdvdcss
652         AC_MSG_RESULT(${real_dvdcss_tree}/src/.libs/libdvdcss.a)
653         BUILTINS="${BUILTINS} access/dvd/dvd"
654         dvd_LDFLAGS="${dvd_LDFLAGS} ${real_dvdcss_tree}/src/.libs/libdvdcss.a"
655         dvd_CFLAGS="${dvd_CFLAGS} -I${real_dvdcss_tree}/src"
656       else
657         dnl  The given libdvdcss wasn't built
658         AC_MSG_RESULT(no)
659         AC_MSG_ERROR([cannot find ${real_dvdcss_tree}/src/.libs/libdvdcss.a, make sure you compiled libdvdcss in ${with_dvdcss_tree}])
660       fi
661     fi
662   ;;
663   xno)
664     dnl  Compile without dvdcss (dlopen version, works only under Linux)
665     PLUGINS="${PLUGINS} access/dvd/dvd"
666     dvd_CFLAGS="${dvd_CFLAGS} -DGOD_DAMN_DMCA"
667     dvd_LDFLAGS="${dvd_LDFLAGS} -ldl"
668   ;;
669   *)
670     AC_MSG_CHECKING(for dvdcss headers in ${with_dvdcss})
671     if test -f ${with_dvdcss}/include/dvdcss/dvdcss.h
672     then
673       dnl  Use ${with_dvdcss}/include/dvdcss/dvdcss.h
674       AC_MSG_RESULT(yes)
675       PLUGINS="${PLUGINS} access/dvd/dvd"
676       dvd_LDFLAGS="${dvd_LDFLAGS} -L${with_dvdcss}/lib -ldvdcss"
677       dvd_CFLAGS="${dvd_CFLAGS} -I${with_dvdcss}/include"
678     else
679       dnl  No libdvdcss could be found, sorry
680       AC_MSG_RESULT(no)
681       AC_MSG_ERROR([cannot find ${with_dvdcss}/include/dvdcss/dvdcss.h])
682     fi
683   ;;
684   esac
685 fi
686
687 dnl
688 dnl dvdread module: check for libdvdread plugin
689 dnl
690 AC_ARG_ENABLE(dvdread,
691 [  --enable-dvdread        dvdread input module (default disabled)])
692 if test "x${enable_dvdread}" != "xno"
693 then
694   AC_ARG_WITH(dvdread, 
695   [    --with-dvdread=PATH   libdvdread headers and libraries])
696   if test "x${with_dvdread}" = "x"
697   then
698     test_LDFLAGS=""
699     test_CFLAGS=""
700   else
701     test_LDFLAGS="-L${with_dvdread}/lib"
702     test_CFLAGS="-I${with_dvdread}/include"
703   fi
704   CPPFLAGS="${save_CPPFLAGS} ${test_CFLAGS}"
705   AC_CHECK_HEADERS(dvdread/dvd_reader.h, [
706      AC_TRY_COMPILE([#include <dvdread/dvd_reader.h>],
707         [void foo() { int i=DVD_VIDEO_LB_LEN; }],[
708           PLUGINS="${PLUGINS} access/dvdread/dvdread"
709           dvdread_LDFLAGS="${dvdread_LDFLAGS} ${test_LDFLAGS} -ldvdread"
710           dvdread_CFLAGS="${dvdread_CFLAGS} ${test_CFLAGS}"
711         ],[
712           if test "x${enable_dvdread}" != "x"
713           then
714             AC_MSG_ERROR([Cannot find DVD_VIDEO_LB_LEN in dvdread/dvd_reader.h, please install libdvdread version 0.9.2 or later])
715           fi
716         ])
717   ],[
718     if test "x${enable_dvdread}" != "x"
719     then
720       if test "x${with_dvdread}" != "x"
721       then
722         AC_MSG_ERROR([Cannot find dvdread/dvd_reader.h in ${with_dvdread}/include])
723       else
724         AC_MSG_ERROR([Cannot find dvdread/dvd_reader.h])
725       fi
726     fi
727   ])
728   CPPFLAGS="$save_CPPFLAGS"
729 fi
730
731 dnl
732 dnl dvdplay module: check for libdvdplay
733 dnl
734 AC_ARG_ENABLE(dvdplay,
735 [  --enable-dvdplay        dvdplay input module (default disabled)])
736 if test "x$enable_dvdplay" != "xno"
737 then
738   AC_ARG_WITH(dvdplay, 
739   [    --with-dvdplay=PATH   libdvdplay headers and libraries])
740   if test "x$with_dvdplay" = x
741   then
742     test_LDFLAGS=""
743     test_CFLAGS=""
744   else
745     test_LDFLAGS="-L${with_dvdplay}/lib"
746     test_CFLAGS="-I${with_dvdplay}/include"
747   fi
748   CPPFLAGS="$save_CPPFLAGS $test_CFLAGS"
749   AC_CHECK_HEADERS(dvdplay/dvdplay.h, [
750       PLUGINS="${PLUGINS} access/dvdplay/dvdplay"
751       dvdplay_LDFLAGS="${dvdplay_LDFLAGS} ${test_LDFLAGS} -ldvdplay -ldvdread"
752       dvdplay_CFLAGS="${dvdplay_CFLAGS} ${test_CFLAGS}"
753     ],[
754     if test "x$enable_dvdplay" != x
755     then
756       if test "x$with_dvdplay" != x
757       then
758         AC_MSG_ERROR([Cannot find dvdplay/dvdplay.h in ${with_dvdplay}/include])
759       else
760         AC_MSG_ERROR([Cannot find dvdplay/dvdplay.h])
761       fi
762     fi
763   ])
764   CPPFLAGS="${save_CPPFLAGS}"
765 fi
766
767
768 dnl
769 dnl  libdvbpsi ts demux
770 dnl
771 AC_ARG_ENABLE(dvbpsi,
772 [  --enable-dvbpsi        dvbpsi ts demux module (default disabled)])
773 if test "x${enable_dvbpsi}" != "xno"
774 then
775   AC_ARG_WITH(dvbpsi, 
776   [    --with-dvbpsi=PATH    libdvbpsi headers and libraries])
777   AC_ARG_WITH(dvbpsi,
778   [    --with-dvbpsi-tree=PATH libdvbpsi tree for static linking])
779   case "x${with_dvbpsi}" in
780   x|xyes)
781     if test "x${with_dvbpsi_tree}" = "x"
782     then
783       AC_CHECK_HEADERS(dvbpsi/dr.h,
784         [ PLUGINS="${PLUGINS} demux/mpeg/ts_dvbpsi"
785           ts_dvbpsi_LDFLAGS="${ts_dvbpsi_LDFLAGS} -ldvbpsi" ], [],
786         [  AC_MSG_ERROR([cannot find libdvbpsi headers]) ])
787     else
788       AC_MSG_CHECKING(for libdvbpsi.a in ${with_dvbpsi_tree})
789       real_dvbpsi_tree="`cd ${with_dvbpsi_tree} 2>/dev/null && pwd`"
790       if test "x${real_dvbpsi_tree}" = "x"
791       then
792         dnl  The given directory can't be found
793         AC_MSG_RESULT(no)
794         AC_MSG_ERROR([cannot cd to ${with_dvbpsi_tree}])
795       fi
796       if test -f "${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
797       then
798         dnl  Use a custom libdvbpsi
799         AC_MSG_RESULT(${real_dvbpsi_tree}/src/.libs/libdvbpsi.a)
800         BUILTINS="${BUILTINS} demux/mpeg/ts_dvbpsi"
801         ts_dvbpsi_LDFLAGS="${ts_dvbpsi_LDFLAGS} ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a"
802         ts_dvbpsi_CFLAGS="${ts_dvbpsi_CFLAGS} -I${real_dvbpsi_tree}/src"
803       else
804         dnl  The given libdvbpsi wasn't built
805         AC_MSG_RESULT(no)
806         AC_MSG_ERROR([cannot find ${real_dvbpsi_tree}/src/.libs/libdvbpsi.a, make sure you compiled libdvbpsi in ${with_dvbpsi_tree}])
807       fi
808     fi
809   ;;
810   xno)
811     dnl  Compile without dvbpsi (dlopen version, works only under Linux)
812   ;;
813   *)
814     AC_MSG_CHECKING(for dvbpsi headers in ${with_dvbpsi})
815     if test "x${with_dvbpsi}" = "x"
816     then
817       test_LDFLAGS=""
818       test_CFLAGS=""
819     else
820       test_LDFLAGS="-L${with_dvbpsi}/lib"
821       test_CFLAGS="-I${with_dvbpsi}/include"
822     fi
823     CPPFLAGS="${save_CPPFLAGS} ${test_CFLAGS}"
824     AC_CHECK_HEADER([dvbpsi/dr.h],[
825       PLUGINS="${PLUGINS} demux/mpeg/ts_dvbpsi"
826       ts_dvbpsi_LDFLAGS="${ts_dvbpsi_LDFLAGS} ${test_LDFLAGS} -ldvbpsi"
827       ts_dvbpsi_CFLAGS="${ts_dvbpsi_CFLAGS} ${test_CFLAGS}"
828       ],[
829       if test "x${enable_dvbpsi}" != "x"
830       then
831         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])
832       fi
833     ])
834     CPPFLAGS="${save_CPPFLAGS}"
835   ;;
836   esac
837 fi
838
839 dnl
840 dnl  VCD module
841 dnl
842 AC_ARG_ENABLE(vcd,
843   [  --enable-vcd            VCD support for Linux, FreeBSD and MacOS X (default enabled)])
844
845 if test "x${enable_vcd}" != "xno"
846 then
847   AC_EGREP_HEADER(cdrom_msf0,linux/cdrom.h,[
848     PLUGINS="${PLUGINS} access/vcd/vcd"
849   ])
850   
851   AC_EGREP_HEADER(ioc_toc_header ,sys/cdio.h,[
852     PLUGINS="${PLUGINS} access/vcd/vcd"
853     AC_DEFINE(HAVE_IOC_TOC_HEADER_IN_SYS_CDIO_H, 1, For FreeBSD VCD support)
854   ])
855   
856   if test "x${SYS}" = "xbsdi"
857   then
858     PLUGINS="${PLUGINS} access/vcd/vcd"
859   fi
860
861   if test "x${SYS}" = "xdarwin"
862   then
863     # No need to add vcd to PLUGINS, Darwin is already based on FreeBSD
864     vcd_LDFLAGS="${vcd_LDFLAGS} -framework IOKit -framework CoreFoundation" 
865   fi
866 fi
867
868 dnl
869 dnl  Satellite input module
870 dnl
871 AC_ARG_ENABLE(satellite,
872   [  --enable-satellite      satellite card support (default disabled)],
873   [ if test "x${enable_satellite}" = "xyes"
874     then
875       PLUGINS="${PLUGINS} access/satellite/satellite"
876     fi])
877
878 dnl
879 dnl  ipv6 plugin - not for QNX yet
880 dnl
881 if test "x${SYS}" != "xnto" && test "x${SYS}" != "xmingw32"
882 then
883   have_ipv6=0
884   AC_CHECK_FUNC(inet_pton,[have_ipv6=1],[
885     AC_CHECK_LIB(resolv,inet_pton,
886       [have_ipv6=1
887        ipv6_LDFLAGS="${ipv6_LDFLAGS} -lresolv"])
888   ])
889   AC_MSG_CHECKING(for sockaddr_in6 in netinet/in.h)
890   AC_EGREP_HEADER(sockaddr_in6,netinet/in.h,
891     [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no); have_ipv6=0])
892   if test x$have_ipv6 = x1; then
893     PLUGINS="${PLUGINS} misc/network/ipv6"
894   fi
895 fi
896 if test "x${SYS}" = "xmingw32"
897 then
898   AC_MSG_CHECKING(for getaddrinfo in ws2tcpip.h)
899   AC_EGREP_HEADER(addrinfo,ws2tcpip.h,[AC_MSG_RESULT(yes)
900     PLUGINS="${PLUGINS} misc/network/ipv6"],[AC_MSG_RESULT(no)])
901 fi
902
903 dnl
904 dnl  AVI demux plugin
905 dnl
906 AC_ARG_ENABLE(avi,
907   [  --enable-avi            AVI demux module (default enabled)])
908 if test "x${enable_avi}" != "xno"
909 then
910   PLUGINS="${PLUGINS} demux/avi/avi"
911 fi
912
913 dnl
914 dnl  Codec plugins
915 dnl
916
917 AC_ARG_WITH(,[Codec plugins:])
918
919 dnl
920 dnl  mad plugin
921 dnl
922 AC_ARG_ENABLE(mad,
923   [  --enable-mad            libmad module (default disabled)])
924 if test "x${enable_mad}" = "xyes"
925 then
926   AC_ARG_WITH(mad,
927     [    --with-mad=PATH       path to libmad],[],[])
928   if test "x${with_mad}" != "xno" -a "x${with_mad}" != "x"
929   then
930     mad_CFLAGS="${mad_CFLAGS} -I${with_mad}/include"
931     mad_LDFLAGS="${mad_LDFLAGS} -L${with_mad}/lib"
932   fi
933
934   AC_ARG_WITH(mad-tree,
935     [    --with-mad-tree=PATH  mad tree for static linking],[],[])
936   if test "x${with_mad_tree}" != "xno" -a "x${with_mad_tree}" != "x"
937   then
938     real_mad_tree="`cd ${with_mad_tree} 2>/dev/null && pwd`"
939     if test "x${real_mad_tree}" = "x"
940     then
941       dnl  The given directory can't be found
942       AC_MSG_RESULT(no)
943       AC_MSG_ERROR([${with_mad_tree} directory doesn't exist])
944     fi
945     dnl  Use a custom libmad
946     AC_MSG_CHECKING(for mad.h in ${real_mad_tree}/libmad)
947     if test -f ${real_mad_tree}/libmad/mad.h
948     then
949       AC_MSG_RESULT(yes)
950       mad_CFLAGS="${mad_CFLAGS} -I${real_mad_tree}/libmad"
951       mad_LDFLAGS="${mad_LDFLAGS} -L${real_mad_tree}/libmad/.libs"
952       LDFLAGS="${save_LDFLAGS} ${mad_LDFLAGS}"
953       AC_CHECK_LIB(mad, mad_bit_init, [
954         BUILTINS="${BUILTINS} codec/mad/mad"
955         mad_LDFLAGS="${mad_LDFLAGS} -lmad"
956         ],[ AC_MSG_ERROR([the specified tree hasn't been compiled ])
957       ],[])
958       LDFLAGS="${save_LDFLAGS}"
959     else
960       AC_MSG_RESULT(no)
961       AC_MSG_ERROR([the specified tree doesn't have mad.h])
962     fi
963   else
964     CFLAGS="${save_CFLAGS} ${mad_CFLAGS}"
965     LDFLAGS="${save_LDFLAGS} ${mad_LDFLAGS}"
966     AC_CHECK_HEADERS(mad.h, ,
967       [ AC_MSG_ERROR([Cannot find development headers for libmad...]) ])
968     AC_CHECK_LIB(mad, mad_bit_init, [
969       PLUGINS="${PLUGINS} codec/mad/mad"
970       mad_LDFLAGS="${mad_LDFLAGS} -lmad" ],
971       [ AC_MSG_ERROR([Cannot find libmad library...]) ])
972     CFLAGS="${save_CFLAGS}"
973     LDFLAGS="${save_LDFLAGS}"
974   fi
975 fi
976
977 dnl
978 dnl  ffmpeg decoder plugin
979 dnl
980 AC_ARG_ENABLE(ffmpeg,
981 [  --enable-ffmpeg         ffmpeg codec (default disabled)])
982 if test "x${enable_ffmpeg}" = "xyes"
983 then
984   AC_ARG_WITH(ffmpeg,
985     [    --with-ffmpeg=PATH    path to ffmpeg installation],[],[])
986   if test "x${with_ffmpeg}" != "xno" -a "x${with_ffmpeg}" != "x"
987   then
988     ffmpeg_CFLAGS="${ffmpeg_CFLAGS} -I${with_ffmpeg}/include/libffmpeg"
989     ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -L${with_ffmpeg}/lib"
990   fi
991
992   dnl Add postprocessing modules
993   PLUGINS="${PLUGINS} codec/ffmpeg/postprocessing/postprocessing_c"
994   if test "x${ac_cv_mmx_inline}" != "xno"; then
995     PLUGINS="${PLUGINS} codec/ffmpeg/postprocessing/postprocessing_mmx"
996   fi
997
998   if test "x${ac_cv_mmxext_inline}" != "xno"; then
999     PLUGINS="${PLUGINS} codec/ffmpeg/postprocessing/postprocessing_mmxext"
1000   fi
1001
1002
1003   AC_ARG_WITH(ffmpeg-tree, 
1004   [    --with-ffmpeg-tree=PATH ffmpeg tree for static linking])
1005   if test "x${with_ffmpeg_tree}" != "x"
1006   then
1007     AC_MSG_CHECKING(for libavcodec.a in ${with_ffmpeg_tree})
1008     real_ffmpeg_tree="`cd ${with_ffmpeg_tree} 2>/dev/null && pwd`"
1009     if test "x${real_ffmpeg_tree}" = x
1010     then
1011       dnl  The given directory can't be found
1012       AC_MSG_RESULT(no)
1013       AC_MSG_ERROR([cannot cd to ${with_ffmpeg_tree}])
1014     fi
1015     if test -f "${real_ffmpeg_tree}/libavcodec/libavcodec.a"
1016     then
1017       dnl  Use a custom libffmpeg
1018       AC_MSG_RESULT(${real_ffmpeg_tree}/libavcodec/libavcodec.a)
1019       BUILTINS="${BUILTINS} codec/ffmpeg/ffmpeg"
1020       ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} ${real_ffmpeg_tree}/libavcodec/libavcodec.a -lm"
1021       ffmpeg_CFLAGS="${ffmpeg_CFLAGS} -I${real_ffmpeg_tree}/libavcodec"
1022     else
1023       dnl  The given libavcodec wasn't built
1024       AC_MSG_RESULT(no)
1025       AC_MSG_ERROR([cannot find ${real_ffmpeg_tree}/libavcodec/libavcodec.a, make sure you compiled libavcodec in ${with_ffmpeg_tree}])
1026     fi
1027   else
1028     CFLAGS="${save_CFLAGS} ${ffmpeg_CFLAGS}"
1029     LDFLAGS="${save_LDFLAGS} ${ffmpeg_LDFLAGS} -lm"
1030     AC_CHECK_LIB(avcodec, avcodec_init, [
1031       BUILTINS="${BUILTINS} codec/ffmpeg/ffmpeg"
1032       ffmpeg_LDFLAGS="${ffmpeg_LDFLAGS} -lavcodec -lm" ],
1033       [ AC_MSG_ERROR([Cannot find libavcodec library...]) ])
1034     LDFLAGS="${save_LDFLAGS}"
1035     CFLAGS="${save_CFLAGS}"
1036   fi
1037 fi
1038
1039 dnl 
1040 dnl MP4 module 
1041 dnl 
1042 AC_ARG_ENABLE(mp4,
1043   [  --enable-mp4            MP4 demux module (default disabled)])
1044 if test "x${enable_mp4}" = "xyes"
1045 then
1046     AC_CHECK_HEADER(zlib.h,
1047         AC_CHECK_LIB(z, inflateEnd,
1048             [ PLUGINS="${PLUGINS} demux/mp4/mp4"
1049               mp4_LDFLAGS="${mp4_LDFLAGS} -lz" ], 
1050             [ AC_MSG_ERROR([cannot find zlib library...]) ]),
1051         [  AC_MSG_ERROR([cannot find zlib header...]) ])
1052 fi
1053
1054 dnl special case for BeOS
1055 if test "x${SYS}" = "xbeos"
1056 then
1057     PLUGINS="${PLUGINS} gui/beos/beos"
1058 fi
1059
1060 dnl
1061 dnl  a52 AC3 decoder plugin
1062 dnl
1063 AC_ARG_ENABLE(a52,
1064   [  --enable-a52            AC3 support with liba52 (default enabled)])
1065 if test "x${enable_a52}" != "xno"
1066 then
1067   AC_ARG_WITH(a52-tree,
1068     [    --with-a52-tree=PATH  a52dec tree for static linking ],[],[])
1069   if test "x${with_a52_tree}" != "xno" -a "x${with_a52_tree}" != "x"
1070   then
1071     real_a52_tree="`cd ${with_a52_tree} 2>/dev/null && pwd`"
1072     if test "x${real_a52_tree}" = "x"
1073     then
1074       dnl  The given directory can't be found
1075       AC_MSG_RESULT(no)
1076       AC_MSG_ERROR([${with_a52_tree} directory doesn't exist])
1077     fi
1078     dnl  Use a custom a52dec
1079     AC_MSG_CHECKING(for a52.h in ${real_a52_tree}/include)
1080     if test -f ${real_a52_tree}/include/a52.h
1081     then
1082       AC_MSG_RESULT(yes)
1083       a52_CFLAGS="${a52_CFLAGS} -I${real_a52_tree}"
1084       a52_LDFLAGS="${a52_LDFLAGS} -L${real_a52_tree}/liba52/.libs"
1085       LDFLAGS="${save_LDFLAGS} ${a52_LDFLAGS}"
1086       AC_CHECK_LIB(a52, a52_free, [
1087         BUILTINS="${BUILTINS} codec/a52/a52"
1088         a52_LDFLAGS="${a52_LDFLAGS} -la52 -lm"
1089         a52_CFLAGS="${a52_CFLAGS} -DUSE_A52DEC_TREE"
1090         ],[
1091         if test -f ${real_a52_tree}/liba52/.libs/liba52.a
1092         then
1093           AC_MSG_ERROR([make sure you have at least a52dec-0.7.3])
1094         else
1095           AC_MSG_ERROR([the specified tree hasn't been compiled])
1096         fi
1097       ],[-lm])
1098       LDFLAGS="${save_LDFLAGS}"
1099     else
1100       AC_MSG_RESULT(no)
1101       AC_MSG_ERROR([the specified tree doesn't have a52.h])
1102     fi
1103   else dnl  no with args
1104     AC_CHECK_HEADERS(a52dec/a52.h, [
1105       AC_CHECK_LIB(a52, a52_free, [
1106         BUILTINS="${BUILTINS} codec/a52/a52"
1107         a52_LDFLAGS="${a52_LDFLAGS} -la52 -lm"
1108         a52_CFLAGS="${a52_CFLAGS}"
1109       ],[],[-lm])
1110     ])
1111   fi
1112 fi
1113
1114 dnl
1115 dnl  cinepak plugin
1116 dnl
1117 AC_ARG_ENABLE(cinepak,
1118   [  --enable-cinepak        Cinepak decoder (default enabled)])
1119 if test "x${enable_cinepak}" != "xno"
1120 then
1121   PLUGINS="${PLUGINS} codec/cinepak/cinepak"
1122 fi
1123
1124 dnl
1125 dnl  ogg vorbis plugin
1126 dnl
1127 AC_ARG_ENABLE(vorbis,
1128   [  --enable-vorbis         Ogg/Vorbis decoder support (default enabled)])
1129 if test "x${enable_vorbis}" != "xno"
1130 then
1131   AC_CHECK_HEADERS(ogg/ogg.h, [
1132     dnl disabled for the moment
1133     #PLUGINS="${PLUGINS} demux/ogg/ogg codec/vorbis/vorbis"
1134     vorbis_LDFLAGS="${vorbis_LDFLAGS} -lvorbis"
1135    ],[])
1136 fi
1137
1138 dnl
1139 dnl  DV plugin
1140 dnl 
1141 AC_ARG_ENABLE(dv,
1142   [  --enable-dv             DV decoder support (default disabled)])
1143 if test "x${enable_dv}" = "xyes"
1144 then
1145   AC_CHECK_HEADERS(libdv/dv.h, [
1146     BUILTINS="${BUILTINS} codec/dv/dv"
1147     dv_LDFLAGS="${dv_LDFLAGS} -ldv"
1148    ],[])
1149 fi  
1150
1151 dnl
1152 dnl  Video plugins
1153 dnl
1154
1155 AC_ARG_WITH(,[Video plugins:])
1156
1157 dnl
1158 dnl  X11 module
1159 dnl  (enabled by default except on win32)
1160 dnl
1161 AC_ARG_ENABLE(x11,
1162   [  --enable-x11            X11 support (default enabled)])
1163 if test "x${enable_x11}" != "xno" &&
1164   (test "x${SYS}" != "xmingw32" || test "x${enable_x11}" = "xyes"); then
1165   CPPFLAGS="${save_CPPFLAGS} -I${x_includes}"
1166   AC_CHECK_HEADERS(X11/Xlib.h, [
1167     PLUGINS="${PLUGINS} video_output/x11/x11"
1168     x11_LDFLAGS="${x11_LDFLAGS} -L${x_libraries} -lX11 -lXext"
1169     x11_CFLAGS="${x11_CFLAGS} -I${x_includes}"
1170   ])
1171   CPPFLAGS="${save_CPPFLAGS}"
1172 fi
1173
1174 dnl
1175 dnl  XVideo module
1176 dnl  (enabled by default except on win32)
1177 dnl
1178 AC_ARG_ENABLE(xvideo,
1179   [  --enable-xvideo         XVideo support (default enabled)])
1180 if test "x${enable_xvideo}" != "xno" &&
1181   (test "x${SYS}" != "xmingw32" || test "x${enable_xvideo}" = "xyes"); then
1182   CPPFLAGS="${save_CPPFLAGS} -I${x_includes}"
1183   AC_CHECK_HEADERS(X11/extensions/Xv.h, [
1184     CFLAGS="${save_CFLAGS} -L${x_libraries} -lX11 -lXext"
1185     AC_CHECK_LIB(Xv_pic,XvPutImage,
1186       # We have Xv_pic, that's good, we can build an xvideo.so plugin !
1187       PLUGINS="${PLUGINS} video_output/x11/xvideo"
1188       xvideo_LDFLAGS="${xvideo_LDFLAGS} -L${x_libraries} -lX11 -lXext -lXv_pic"
1189       xvideo_CFLAGS="${xvideo_CFLAGS} -I${x_includes}",
1190       AC_CHECK_LIB(Xv,XvPutImage,
1191         # We don't have Xv_pic, but we have Xv, let's make xvideo.a as builtin
1192         PLUGINS="${PLUGINS} video_output/x11/xvideo"
1193         xvideo_LDFLAGS="${xvideo_LDFLAGS} -L${x_libraries} -lX11 -lXext -lXv"
1194         xvideo_CFLAGS="${xvideo_CFLAGS} -I${x_includes}",
1195         # Otherwise... well, do nothing.
1196         :
1197       )
1198     )
1199     CFLAGS="${save_CFLAGS}"
1200   ]
1201   CPPFLAGS="${save_CPPFLAGS}")
1202 fi
1203
1204 dnl
1205 dnl  SDL module
1206 dnl
1207 AC_ARG_ENABLE(sdl,
1208   [  --enable-sdl            SDL support (default enabled)])
1209 if test "x${enable_sdl}" != "xno"
1210 then
1211   SDL_PATH="${PATH}"
1212   AC_ARG_WITH(sdl-config-path,
1213     [    --with-sdl-config-path=PATH sdl-config path (default search in \$PATH)],
1214     [ if test "x${with_sdl_config_path}" != "xno"
1215       then
1216         SDL_PATH="${with_sdl_config_path}:${PATH}"
1217       fi ])
1218   AC_PATH_PROG(SDL12_CONFIG, sdl12-config, no, ${SDL_PATH})
1219   SDL_CONFIG="${SDL12_CONFIG}"
1220   SDL_HEADER="SDL12/SDL.h"
1221   if test "x${SDL_CONFIG}" = "xno"
1222   then
1223     AC_PATH_PROG(SDL11_CONFIG, sdl11-config, no, ${SDL_PATH})
1224     SDL_CONFIG=${SDL11_CONFIG}
1225     SDL_HEADER="SDL11/SDL.h"
1226   fi
1227   if test "x${SDL_CONFIG}" = "xno"
1228   then
1229     AC_PATH_PROG(SDL_CONFIG, sdl-config, no, ${SDL_PATH})
1230     SDL_HEADER="SDL/SDL.h"
1231   fi
1232   if test "x${SDL_CONFIG}" != "xno"
1233   then
1234     PLUGINS="${PLUGINS} video_output/sdl/sdl"
1235     sdl_CFLAGS="${sdl_CFLAGS} `${SDL_CONFIG} --cflags`"
1236     sdl_LDFLAGS="${sdl_LDFLAGS} `${SDL_CONFIG} --libs | sed 's,-rdynamic,,'`"
1237     CPPFLAGS="${save_CPPFLAGS} ${sdl_CFLAGS}"
1238     AC_CHECK_HEADERS(${SDL_HEADER}, AC_DEFINE_UNQUOTED(SDL_INCLUDE_FILE,
1239       <${SDL_HEADER}>, Indicate whether we should use SDL/SDL.h or SDL11/SDL.h),
1240       [ AC_MSG_ERROR([The development package for SDL is not installed. 
1241 Please install it and try again. Alternatively you can also configure with 
1242 --disable-sdl.])
1243       ])
1244     CPPFLAGS="${save_CPPFLAGS}"
1245     if expr 1.1.5 \> `${SDL_CONFIG} --version` >/dev/null
1246     then
1247       AC_MSG_ERROR([The development package for SDL is not installed.
1248 Please install it and try again. Alternatively you can also configure with
1249 --disable-sdl.])
1250     fi
1251   elif test "x${enable_sdl}" =  "xyes"
1252   then
1253     AC_MSG_ERROR([I couldn't find the SDL package. You can download libSDL
1254 from http://www.libsdl.org/, or configure with --disable-sdl. Have a nice day.
1255     ])
1256   fi
1257 fi
1258
1259 dnl
1260 dnl  Windows DirectX module
1261 dnl
1262 AC_ARG_ENABLE(directx,
1263   [  --enable-directx        Win32 DirectX support (default enabled on Win32)])
1264 if test "x${enable_directx}" != "xno"
1265 then
1266   if test "x${SYS}" = "xmingw32"
1267   then
1268     AC_ARG_WITH(directx, 
1269     [    --with-directx=PATH   Win32 DirectX headers])
1270     if test "x${with_directx}" = "x"
1271     then
1272       AC_CHECK_HEADERS(ddraw.h,
1273       [ PLUGINS="${PLUGINS} video_output/directx/directx"
1274         directx_LDFLAGS="${directx_LDFLAGS} -lgdi32" ])
1275     else
1276       AC_MSG_CHECKING(for directX headers in ${with_directx})
1277       if test -f ${with_directx}/ddraw.h
1278       then
1279         PLUGINS="${PLUGINS} video_output/directx/directx"
1280         directx_LDFLAGS="${directx_LDFLAGS} -lgdi32"
1281         directx_CFLAGS="${directx_CFLAGS} -I${with_directx}"
1282         AC_MSG_RESULT(yes)
1283       else
1284         AC_MSG_RESULT(no)
1285         AC_MSG_ERROR([Cannot find ${with_directx}/ddraw.h!])
1286       fi
1287     fi
1288   fi
1289 fi
1290
1291 dnl
1292 dnl  Linux framebuffer module
1293 dnl
1294 AC_ARG_ENABLE(fb,
1295   [  --enable-fb             Linux framebuffer support (default enabled on Linux)])
1296     if test "x${enable_fb}" != "xno"
1297     then
1298       AC_CHECK_HEADERS(linux/fb.h, [
1299         PLUGINS="${PLUGINS} video_output/fb/fb"
1300       ])
1301     fi
1302
1303 dnl
1304 dnl  Linux MGA module
1305 dnl
1306 AC_ARG_ENABLE(mga,
1307   [  --enable-mga            Linux kernel Matrox support (default disabled)],
1308   [ if test "x${enable_mga}" = "xyes"
1309     then
1310       PLUGINS="${PLUGINS} video_output/mga/mga video_output/mga/xmga"
1311     fi ])
1312
1313 dnl
1314 dnl  GGI module
1315 dnl
1316 AC_ARG_ENABLE(ggi,
1317   [  --enable-ggi            GGI support (default disabled)])
1318 if test "x${enable_ggi}" = "xyes"
1319 then
1320   PLUGINS="${PLUGINS} video_output/ggi/ggi"
1321   ggi_LDFLAGS="${ggi_LDFLAGS} -lggi"
1322   AC_ARG_WITH(ggi,
1323     [    --with-ggi=PATH       path to libggi],
1324     [ if test "x${with_ggi}" != "xno" -a "x${with_ggi}" != "x"
1325       then
1326         CFLAGS_GGI="${CFLAGS_GGI} -I${with_ggi}/include"
1327         ggi_LDFLAGS="${ggi_LDFLAGS} -L${with_ggi}/lib"
1328       fi ])
1329 fi
1330
1331 dnl
1332 dnl  Glide module
1333 dnl
1334 AC_ARG_ENABLE(glide,
1335   [  --enable-glide          Glide (3dfx) support (default disabled)])
1336 if test "x${enable_glide}" = "xyes"
1337 then
1338   PLUGINS="${PLUGINS} video_output/glide/glide"
1339   glide_LDFLAGS="${glide_LDFLAGS} -lglide2x -lm"
1340   glide_CFLAGS="${glide_CFLAGS} -I/usr/include/glide"
1341   AC_ARG_WITH(glide,
1342     [    --with-glide=PATH     path to libglide],
1343     [ if test "x${with_glide}" != "xno" -a "x${with_glide}" != "x"
1344       then
1345         glide_CFLAGS="${glide_CFLAGS} -I${with_glide}/include"
1346         glide_LDFLAGS="${glide_LDFLAGS} -L${with_glide}/lib"
1347       fi ])
1348 fi
1349
1350 dnl
1351 dnl  AA plugin
1352 dnl
1353 AC_ARG_ENABLE(aa,
1354   [  --enable-aa             aalib output (default disabled)])
1355 if test "x${enable_aa}" = "xyes"
1356 then
1357   AC_CHECK_HEADER(aalib.h,have_aa="true",have_aa="false")
1358   if test "x${have_aa}" = "xtrue"
1359   then
1360     PLUGINS="${PLUGINS} video_output/aa/aa"
1361     aa_LDFLAGS="${aa_LDFLAGS} -laa"
1362   fi
1363 fi
1364
1365 dnl
1366 dnl  Audio plugins
1367 dnl
1368
1369 AC_ARG_WITH(,[Audio plugins:])
1370
1371 dnl
1372 dnl  OSS /dev/dsp module (enabled by default except on win32)
1373 dnl
1374 AC_ARG_ENABLE(dsp,
1375   [  --enable-dsp            Linux /dev/dsp support (enabled on Linux)])
1376
1377 if test "x${enable_dsp}" != "xno" &&
1378   (test "x${SYS}" != "xmingw32" || test "x${enable_dsp}" = "xyes")
1379 then
1380   AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h, [
1381     PLUGINS="${PLUGINS} audio_output/dsp/dsp"
1382     AC_CHECK_LIB(ossaudio,main,dsp_LDFLAGS="${dsp_LDFLAGS} -lossaudio")
1383   ])
1384 fi
1385
1386 dnl
1387 dnl  Esound module
1388 dnl
1389 AC_ARG_ENABLE(esd,
1390   [  --enable-esd            Esound library support (default disabled)],
1391   [if test "x${enable_esd}" = "xyes"
1392    then
1393      AC_PATH_PROG(ESD_CONFIG, esd-config, no)
1394      if test "x${ESD_CONFIG}" != "xno"
1395      then
1396        PLUGINS="${PLUGINS} audio_output/esd/esd"
1397        esd_CFLAGS="${esd_CFLAGS} `${ESD_CONFIG} --cflags`"
1398        esd_LDFLAGS="${esd_LDFLAGS} `${ESD_CONFIG} --libs`"
1399      fi
1400    fi])
1401
1402 dnl
1403 dnl  aRts module
1404 dnl
1405 AC_ARG_ENABLE(arts,
1406   [  --enable-arts           aRts sound server (default disabled)],
1407   [if test "x${enable_arts}" = "xyes"
1408    then
1409      AC_PATH_PROG(ARTS_CONFIG, artsc-config, no)
1410      if test "x${ARTS_CONFIG}" != "xno"
1411      then
1412        PLUGINS="${PLUGINS} audio_output/arts/arts"
1413        arts_CFLAGS="${arts_CFLAGS} `${ARTS_CONFIG} --cflags`"
1414        arts_LDFLAGS="${arts_LDFLAGS} `${ARTS_CONFIG} --libs `"
1415      fi
1416    fi])
1417
1418 dnl
1419 dnl  ALSA module
1420 dnl
1421 AC_ARG_ENABLE(alsa,
1422   [  --enable-alsa           ALSA sound support for Linux (default disabled)],
1423   [if test "x${enable_alsa}" = "xyes"
1424    then
1425      AC_CHECK_HEADER(alsa/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false")
1426      if test "x${have_alsa}" = "xtrue"
1427      then
1428        PLUGINS="${PLUGINS} audio_output/alsa/alsa"
1429        alsa_LDFLAGS="${alsa_LDFLAGS} -lasound -lm -ldl"
1430      fi
1431    fi])
1432
1433 dnl
1434 dnl  win32 waveOut plugin
1435 dnl
1436 AC_ARG_ENABLE(waveout,
1437   [  --enable-waveout        Win32 waveOut module (default enabled on Win32)])
1438 if test "x${enable_waveout}" != "xno" -a "x${SYS}" = "xmingw32"
1439   then
1440     PLUGINS="${PLUGINS} audio_output/waveout/waveout"
1441     waveout_LDFLAGS="-lwinmm"
1442 fi
1443
1444 dnl
1445 dnl  Interface plugins
1446 dnl
1447
1448 AC_ARG_WITH(,[Interface plugins:])
1449
1450 dnl
1451 dnl  Gtk+ module
1452 dnl
1453 AC_ARG_ENABLE(gtk,
1454   [  --enable-gtk            Gtk+ support (default enabled)])
1455 if test "x${enable_gtk}" != "xno"
1456 then
1457   GTK_PATH="${PATH}"
1458   AC_ARG_WITH(gtk-config-path,
1459     [    --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)],
1460     [ if test "x${with_gtk_config_path}" != "xno"
1461       then
1462         GTK_PATH="${with_gtk_config_path}:${PATH}"
1463       fi ])
1464   # look for gtk-config
1465   AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH})
1466   GTK_CONFIG=${GTK12_CONFIG}
1467   if test "x${GTK_CONFIG}" = "xno"
1468   then
1469     AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH})
1470   fi
1471   if test "x${GTK_CONFIG}" != "xno"
1472   then
1473     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
1474     then
1475       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.])
1476     fi
1477     gtk_CFLAGS="${gtk_CFLAGS} `${GTK_CONFIG} --cflags gtk`"
1478     gtk_LDFLAGS="${gtk_LDFLAGS} `${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`"
1479     # now look for the gtk.h header
1480     CPPFLAGS="${save_CPPFLAGS} ${gtk_CFLAGS}"
1481     ac_cv_gtk_headers=yes
1482     AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [
1483       ac_cv_gtk_headers=no
1484       echo "Cannot find gtk development headers."
1485     ])
1486     if test "x${ac_cv_gtk_headers}" = "xyes"
1487     then
1488       PLUGINS="${PLUGINS} gui/gtk/gtk"
1489       ALIASES="${ALIASES} gvlc"
1490     fi
1491     CPPFLAGS="${save_CPPFLAGS}"
1492   fi
1493 fi
1494
1495 dnl
1496 dnl  Familiar module uses Gtk+ library
1497 dnl
1498 AC_ARG_ENABLE(familiar,
1499   [  --enable-familiar       Familiar Gtk+ support (default disabled)])
1500 if test "x${enable_familiar}" = "xyes"
1501 then
1502   GTK_PATH="${PATH}"
1503   AC_ARG_WITH(gtk-config-path,
1504     [    --with-gtk-config-path=PATH gtk-config path (default search in \$PATH)],
1505     [ if test "x${with_gtk_config_path}" != "xno"
1506       then
1507         GTK_PATH="${with_gtk_config_path}:${PATH}"
1508       fi ])
1509   # look for gtk-config
1510   AC_PATH_PROG(GTK12_CONFIG, gtk12-config, no, ${GTK_PATH})
1511   GTK_CONFIG=${GTK12_CONFIG}
1512   if test "x${GTK_CONFIG}" = "xno"
1513   then
1514     AC_PATH_PROG(GTK_CONFIG, gtk-config, no, ${GTK_PATH})
1515   fi
1516   if test "x${GTK_CONFIG}" != "xno"
1517   then
1518     if expr 1.2.0 \> `${GTK_CONFIG} --version` >/dev/null
1519     then
1520       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-familiar.])
1521     fi
1522     familiar_CFLAGS="${familiar_CFLAGS} `${GTK_CONFIG} --cflags gtk`"
1523     familiar_LDFLAGS="${familiar_LDFLAGS} `${GTK_CONFIG} --libs gtk | sed 's,-rdynamic,,'`"
1524     # now look for the gtk.h header
1525     CPPFLAGS="${save_CPPFLAGS} ${familiar_CFLAGS}"
1526     ac_cv_gtk_headers=yes
1527     AC_CHECK_HEADERS(gtk/gtk.h glib.h gdk/gdk.h, , [
1528       ac_cv_gtk_headers=no
1529       echo "Cannot find gtk development headers."
1530     ])
1531     if test "x${ac_cv_gtk_headers}" = "xyes"
1532     then
1533       PLUGINS="${PLUGINS} gui/familiar/familiar"
1534     fi
1535     CPPFLAGS="${save_CPPFLAGS}"
1536   fi
1537 fi
1538
1539 dnl
1540 dnl  Gnome module
1541 dnl
1542 AC_ARG_ENABLE(gnome,
1543   [  --enable-gnome          Gnome interface support (default disabled)],
1544   [if test "x${enable_gnome}" = "xyes"; then
1545     # look for gnome-config
1546     AC_PATH_PROG(GNOME_CONFIG, gnome-config, no)
1547     if test -x ${GNOME_CONFIG}
1548     then
1549        gnome_CFLAGS="${gnome_CFLAGS} `${GNOME_CONFIG} --cflags gtk gnomeui`"
1550        gnome_LDFLAGS="${gnome_LDFLAGS} `${GNOME_CONFIG} --libs gnomeui | sed 's,-rdynamic,,'`"
1551     fi
1552     # now look for the gnome.h header
1553     CPPFLAGS="${save_CPPFLAGS} ${gnome_CFLAGS}"
1554     AC_CHECK_HEADERS(gnome.h, [
1555       PLUGINS="${PLUGINS} gui/gtk/gnome"
1556       ALIASES="${ALIASES} gnome-vlc"
1557      ],[
1558       AC_MSG_ERROR([Can't find gnome headers. Please install the gnome
1559 developement tools or remove the --enable-gnome option])
1560      ])
1561     CPPFLAGS="${save_CPPFLAGS}"
1562   fi])
1563
1564 dnl
1565 dnl  Qt module
1566 dnl
1567 AC_ARG_ENABLE(qt,
1568   [  --enable-qt             Qt interface support (default disabled)],
1569   [if test "x${enable_qt}" = "xyes"; then
1570      PLUGINS="${PLUGINS} gui/qt/qt"
1571      ALIASES="${ALIASES} qvlc"
1572      qt_LDFLAGS="${qt_LDFLAGS} -lqt -L${QTDIR}/lib"
1573      qt_CFLAGS="${qt_CFLAGS} -I/usr/include/qt -I${QTDIR}/include"
1574      if test -x ${QTDIR}/bin/moc
1575      then
1576        MOC=${QTDIR}/bin/moc
1577      else
1578        MOC=moc
1579      fi
1580    fi])
1581
1582 dnl 
1583 dnl  KDE module
1584 dnl
1585 AC_ARG_ENABLE(kde,
1586   [  --enable-kde            KDE interface support (default disabled)],
1587   [if test "x${enable_kde}" = "xyes"; then
1588      PLUGINS="${PLUGINS} gui/kde/kde"
1589      ALIASES="${ALIASES} kvlc"
1590      kde_LDFLAGS="${kde_LDFLAGS} -L${KDEDIR}/lib -lkfile"
1591      kde_CFLAGS="${kde_CFLAGS} -I/usr/include/kde -I/usr/include/qt"
1592      kde_CFLAGS="${kde_CFLAGS} -I${KDEDIR}/include -I${QTDIR}/include"
1593      if test -x ${QTDIR}/bin/moc
1594      then
1595        MOC=${QTDIR}/bin/moc
1596      else
1597        MOC=moc
1598      fi
1599    fi])
1600
1601 dnl
1602 dnl  MacOS X module
1603 dnl
1604 AC_ARG_ENABLE(macosx,
1605   [  --enable-macosx         MacOS X support (default enabled on MacOS X)],
1606   [if test "x${enable_macosx}" = "xyes"
1607    then
1608      BUILTINS="${BUILTINS} gui/macosx/macosx"
1609      macosx_LDFLAGS="${macosx_LDFLAGS} -framework CoreAudio -framework AudioToolbox -framework IOKit -framework Cocoa -framework Carbon -framework AGL -framework QuickTime -lobjc -ObjC"
1610    fi],
1611   [AC_CHECK_HEADERS(Cocoa/Cocoa.h,
1612      BUILTINS="${BUILTINS} gui/macosx/macosx"
1613      macosx_LDFLAGS="${macosx_LDFLAGS} -framework CoreAudio -framework AudioToolbox -framework IOKit -framework Cocoa -framework Carbon -framework AGL -framework QuickTime -lobjc -ObjC"
1614    )])
1615
1616 dnl
1617 dnl  QNX RTOS module
1618 dnl
1619 AC_ARG_ENABLE(qnx,
1620   [  --enable-qnx            QNX RTOS support (default enabled on QNX RTOS)])
1621     if test "x${enable_qnx}" != "xno"
1622     then
1623       AC_CHECK_HEADERS(Ph.h, [
1624         PLUGINS="${PLUGINS} gui/qnx/qnx"
1625         qnx_LDFLAGS="${qnx_LDFLAGS} -lasound -lph"
1626       ])
1627     fi
1628
1629 dnl
1630 dnl  Windows native interface module, built with Borland C++ Builder
1631 dnl
1632 AC_ARG_ENABLE(intfwin,
1633 [  --enable-intfwin        Win32 interface support (default disabled)],
1634 [ if test "x${enable_intfwin}" != "xno"
1635   then
1636     AC_ARG_WITH(bcbuilder, 
1637     [    --with-bcbuilder=PATH Borland C++ Builder installation path])
1638     if test "x${with_bcbuilder}" != "x"
1639     then
1640       BCBUILDER="${with_bcbuilder}"
1641     fi
1642     PLUGINS="${PLUGINS} gui/win32/win32"
1643   fi ])
1644
1645 dnl
1646 dnl  ncurses module
1647 dnl
1648 AC_ARG_ENABLE(ncurses,
1649   [  --enable-ncurses        ncurses interface support (default disabled)],
1650   [if test "x${enable_ncurses}" = "xyes"; then
1651      PLUGINS="${PLUGINS} gui/ncurses/ncurses"
1652      ncurses_LDFLAGS="${ncurses_LDFLAGS} -lncurses"
1653    fi])
1654
1655 dnl
1656 dnl  XOSD plugin
1657 dnl
1658 AC_ARG_ENABLE(xosd,
1659   [  --enable-xosd           xosd interface support (default disabled)])
1660 if test "x${enable_xosd}" = "xyes"
1661 then
1662   AC_CHECK_HEADER(xosd.h, have_xosd="true", have_xosd="false")
1663   if test "x${have_xosd}" = "xtrue"
1664   then
1665     PLUGINS="${PLUGINS} visualization/xosd/xosd"
1666     xosd_LDFLAGS="${xosd_LDFLAGS} -lxosd"
1667   fi
1668 fi
1669
1670 dnl
1671 dnl  Lirc plugin
1672 dnl
1673 AC_ARG_ENABLE(lirc,
1674   [  --enable-lirc           lirc support (default disabled)])
1675 if test "x${enable_lirc}" = "xyes"
1676 then
1677   AC_CHECK_HEADER(lirc/lirc_client.h, AC_CHECK_LIB(lirc_client, lirc_init, have_lirc="true", have_lirc="false"),have_lirc="false")
1678   if test "x${have_lirc}" = "xtrue"
1679   then
1680     PLUGINS="${PLUGINS} control/lirc/lirc"
1681     lirc_LDFLAGS="${lirc_LDFLAGS} -llirc_client"
1682   fi
1683 fi
1684
1685 AC_ARG_WITH(,[Misc options:])
1686
1687 dnl
1688 dnl  Endianness check, AC_C_BIGENDIAN doesn't work if we are cross-compiling
1689 dnl
1690 dnl  We give the user the opportunity to specify
1691 dnl  --with-words=big or --with-words=little ; otherwise, try to guess
1692 dnl
1693 AC_ARG_WITH(words,
1694   [  --with-words=endianness set endianness (big or little)])
1695   case "x${with_words}" in
1696     xbig)
1697       ac_cv_c_bigendian=yes
1698       ;;
1699     xlittle)
1700       ac_cv_c_bigendian=no
1701       ;;
1702     *)
1703       dnl  Try to guess endianness by matching patterns on a compiled
1704       dnl  binary, by looking for an ASCII or EBCDIC string
1705       AC_CACHE_CHECK([whether the byte order is big-endian],
1706         [ac_cv_c_bigendian],
1707         [ac_cv_c_bigendian="unknown"
1708         [cat >conftest.c <<EOF
1709         short am[] = { 0x4249, 0x4765, 0x6e44, 0x6961, 0x6e53, 0x7953, 0 };
1710         short ai[] = { 0x694c, 0x5454, 0x656c, 0x6e45, 0x6944, 0x6e61, 0 };
1711         void _a(void) { char*s = (char*)am; s = (char *)ai; }
1712         short ei[] = { 0x89D3, 0xe3e3, 0x8593, 0x95c5, 0x89c4, 0x9581, 0 };
1713         short em[] = { 0xc2c9, 0xc785, 0x95c4, 0x8981, 0x95e2, 0xa8e2, 0 };
1714         void _e(void) { char*s = (char*)em; s = (char*)ei; }
1715         int main(void) { _a(); _e(); return 0; }
1716 EOF
1717         ]
1718         if test -f conftest.c
1719         then 
1720           if ${CC-cc} -c conftest.c -o conftest.o >config.log 2>&1 \
1721               && test -f conftest.o
1722           then
1723             if test "`strings conftest.o | grep BIGenDianSyS`"
1724             then
1725               ac_cv_c_bigendian="yes"
1726             fi
1727             if test "`strings conftest.o | grep LiTTleEnDian`"
1728             then
1729               ac_cv_c_bigendian="no"
1730             fi
1731           fi
1732         fi
1733       ])
1734       if test "x${ac_cv_c_bigendian}" = "xunknown"
1735       then
1736         AC_MSG_ERROR([Could not guess endianness, please use --with-words])
1737       fi
1738       ;;
1739   esac
1740 dnl  Now we know what to use for endianness, just put it in the header
1741 if test "${ac_cv_c_bigendian}" = "yes"
1742 then
1743   AC_DEFINE(WORDS_BIGENDIAN, 1, big endian system)
1744 fi
1745
1746 dnl
1747 dnl  Profiling
1748 dnl
1749 PROFILING=0
1750
1751 GPROF=0
1752 AC_ARG_ENABLE(gprof,
1753 [  --enable-gprof          gprof profiling (default disabled)],
1754 [ if test "x${enable_gprof}" = "xyes"
1755   then
1756     GPROF=1
1757     PROFILING="gprof"
1758   fi
1759 ])
1760
1761 CPROF=0
1762 AC_ARG_ENABLE(cprof,
1763 [  --enable-cprof          cprof profiling (default disabled)],
1764 [ if test "x${enable_cprof}" = "xyes"
1765   then
1766     save_LDFLAGS="${save_LDFLAGS} -lcprof"; LDFLAGS="${save_LDFLAGS}"
1767     CPROF=1
1768     PROFILING="cprof"
1769   fi
1770 ])
1771
1772 dnl
1773 dnl  GNU portable threads
1774 dnl
1775 AC_ARG_ENABLE(pth,
1776   [  --enable-pth            GNU Pth support (default disabled)],
1777   [ if test "x${enable_pth}" = "xyes"; then
1778     AC_CHECK_LIB(pth,pth_init)
1779     AC_EGREP_HEADER(pth_init,pth.h,[
1780       AC_DEFINE(PTH_INIT_IN_PTH_H, 1,
1781                 Define if <pth.h> defines pth_init)
1782     THREAD_LIB="-lpth"
1783     fi])
1784 ])
1785
1786 dnl
1787 dnl  State Threads
1788 dnl
1789 AC_ARG_ENABLE(st,
1790   [  --enable-st             State Threads (default disabled)],
1791   [ if test "x${enable_st}" = "xyes"; then
1792     AC_CHECK_LIB(st,st_init)
1793     AC_EGREP_HEADER(st_init,st.h,[
1794       AC_DEFINE(ST_INIT_IN_ST_H, 1,
1795                 Define if <st.h> defines st_init)
1796     THREAD_LIB="-lst"
1797     fi])
1798 ])
1799
1800 vlc_LDFLAGS="${vlc_LDFLAGS} ${THREAD_LIB}"
1801 plugins_LDFLAGS="${plugins_LDFLAGS} ${THREAD_LIB}"
1802
1803 dnl
1804 dnl  Mozilla plugin
1805 dnl
1806 MOZILLA=0
1807 AC_ARG_ENABLE(mozilla,
1808   [  --enable-mozilla        build a vlc-based Mozilla plugin (default disabled)])
1809 if test "x${enable_mozilla}" = "xyes"
1810 then
1811   AC_PATH_PROG(MOZILLA_CONFIG, mozilla-config, no)
1812   if test "x${MOZILLA_CONFIG}" != "xno"
1813   then
1814     if test "x${SYS}" != "xmingw32"; then
1815       LDFLAGS="${save_LDFLAGS} -L${x_libraries}"
1816       AC_CHECK_LIB(Xt,XtStrings,[
1817         mozilla_LDFLAGS="${mozilla_LDFLAGS} -L${x_libraries} -lXt"
1818       ])
1819       LDFLAGS="${save_LDFLAGS}"
1820     fi
1821     MOZILLA=1
1822     mozilla_CFLAGS="${mozilla_CFLAGS} `${MOZILLA_CONFIG} --cflags plugin java --defines | xargs`"
1823     dnl Workaround for http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=150490
1824     mozilla_LDFLAGS="${mozilla_LDFLAGS} `${MOZILLA_CONFIG} --libs | sed 's#-I\(.*\)/mozilla/\([^ ]*\)#-I\1/\2 -I\1/mozilla/\2#g'`"
1825   fi
1826 fi
1827
1828 dnl
1829 dnl  Plug-ins - this must be AT THE END
1830 dnl
1831 AC_ARG_ENABLE(plugins,
1832   [  --disable-plugins       make all plug-ins built-in (default plug-ins enabled)],
1833   [if test "x${enable_plugins}" = "xno"
1834    then
1835      BUILTINS="${BUILTINS} ${PLUGINS}"
1836      PLUGINS=
1837    fi])
1838
1839 dnl Automagically disable plug-ins if there is no system support for .so files
1840 dnl don't forget vlc-win32 still can load .so as plugins
1841 if test "x${ac_cv_header_dlfcn_h}" = "xno" -a "x${ac_cv_header_image_h}" = "xno" -a "x${SYS}" != "xmingw32"
1842 then
1843   echo "*** Your system doesn't have plug-in support. All plug-ins will be compiled"
1844   echo "as built-in"
1845   BUILTINS="${BUILTINS} ${PLUGINS}"
1846   PLUGINS=
1847 fi
1848
1849 dnl
1850 dnl  Stuff used by the program
1851 dnl
1852 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "vlc ${VERSION} ${CODENAME} Copyright 1996-2002 VideoLAN", [Simple version string])
1853 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "VideoLAN Client - version ${VERSION} ${CODENAME} - (c) 1996-2002 VideoLAN", [Copyright string])
1854 AC_DEFINE_UNQUOTED(CONFIGURE_LINE, "${CONFIGURE_LINE}", [The ./configure command line])
1855
1856 VLC_SYMBOL="`echo ${VERSION} | tr .- __`"
1857 AC_DEFINE_UNQUOTED(MODULE_SUFFIX, "__${VLC_SYMBOL}", [String suffix for module functions])
1858 AC_DEFINE_UNQUOTED(MODULE_SYMBOL, ${VLC_SYMBOL}, [Symbol suffix for module functions])
1859
1860 DATA_PATH="${ac_tool_prefix}/share/videolan"
1861 AC_SUBST(DATA_PATH)
1862 PLUGIN_PATH="${ac_tool_prefix}/share/videolan"
1863 AC_SUBST(PLUGIN_PATH)
1864
1865 dnl
1866 dnl  Restore *FLAGS
1867 dnl
1868 CPPFLAGS="${save_CPPFLAGS}"
1869 CFLAGS="${save_CFLAGS}"
1870 LDFLAGS="${save_LDFLAGS}"
1871
1872 dnl
1873 dnl  Create the vlc-config script
1874 dnl
1875 libvlc_LDFLAGS="${vlc_LDFLAGS} ${builtins_LDFLAGS}"
1876 for i in ${BUILTINS} ; do libvlc_LDFLAGS="${libvlc_LDFLAGS} ${libdir}/vlc/${i}.a `eval echo '$'{${i}_LDFLAGS}`" ; done
1877 AC_SUBST(libvlc_LDFLAGS)
1878
1879 dnl 
1880 dnl  Configuration is finished
1881 dnl
1882 AC_SUBST(SYS)
1883 AC_SUBST(ARCH)
1884 AC_SUBST(PLUGINS)
1885 AC_SUBST(BUILTINS)
1886 AC_SUBST(ALIASES)
1887 AC_SUBST(DEBUG)
1888 AC_SUBST(ASM)
1889 AC_SUBST(CPROF)
1890 AC_SUBST(GPROF)
1891 AC_SUBST(OPTIMS)
1892 AC_SUBST(TUNING)
1893 AC_SUBST(RELEASE)
1894 AC_SUBST(MOC)
1895 AC_SUBST(WINDRES)
1896 AC_SUBST(BCBUILDER)
1897 AC_SUBST(PACKAGE)
1898 AC_SUBST(VERSION)
1899 AC_SUBST(NEED_GETOPT)
1900 AC_SUBST(MOZILLA)
1901
1902 AC_SUBST(CFLAGS_OPTIM)
1903 AC_SUBST(CFLAGS_OPTIM_NODEBUG)
1904 AC_SUBST(LDFLAGS)
1905
1906 AC_SUBST(vlc_CFLAGS)
1907 AC_SUBST(plugins_CFLAGS)
1908 AC_SUBST(builtins_CFLAGS)
1909 AC_SUBST(mozilla_CFLAGS)
1910
1911 AC_SUBST(a52_CFLAGS)
1912 AC_SUBST(arts_CFLAGS)
1913 AC_SUBST(i420_yuy2_mmx_CFLAGS)
1914 AC_SUBST(dvd_CFLAGS)
1915 AC_SUBST(dvdread_CFLAGS)
1916 AC_SUBST(dvdplay_CFLAGS)
1917 AC_SUBST(ts_dvbpsi_CFLAGS)
1918 AC_SUBST(directx_CFLAGS)
1919 AC_SUBST(esd_CFLAGS)
1920 AC_SUBST(familiar_CFLAGS)
1921 AC_SUBST(ffmpeg_CFLAGS)
1922 AC_SUBST(glide_CFLAGS)
1923 AC_SUBST(gnome_CFLAGS)
1924 AC_SUBST(gtk_CFLAGS)
1925 AC_SUBST(kde_CFLAGS)
1926 AC_SUBST(idctaltivec_CFLAGS)
1927 AC_SUBST(macosx_CFLAGS)
1928 AC_SUBST(mad_CFLAGS)
1929 AC_SUBST(memcpyaltivec_CFLAGS)
1930 AC_SUBST(motionaltivec_CFLAGS)
1931 AC_SUBST(qt_CFLAGS)
1932 AC_SUBST(sdl_CFLAGS)
1933 AC_SUBST(x11_CFLAGS)
1934 AC_SUBST(xvideo_CFLAGS)
1935
1936 AC_SUBST(vlc_LDFLAGS)
1937 AC_SUBST(plugins_LDFLAGS)
1938 AC_SUBST(builtins_LDFLAGS)
1939 AC_SUBST(mozilla_LDFLAGS)
1940
1941 AC_SUBST(a52_LDFLAGS)
1942 AC_SUBST(aa_LDFLAGS)
1943 AC_SUBST(alsa_LDFLAGS)
1944 AC_SUBST(arts_LDFLAGS)
1945 AC_SUBST(beos_LDFLAGS)
1946 AC_SUBST(i420_rgb_LDFLAGS)
1947 AC_SUBST(directx_LDFLAGS)
1948 AC_SUBST(dsp_LDFLAGS)
1949 AC_SUBST(dv_LDFLAGS)
1950 AC_SUBST(dvd_LDFLAGS)
1951 AC_SUBST(dvdread_LDFLAGS)
1952 AC_SUBST(dvdplay_LDFLAGS)
1953 AC_SUBST(ts_dvbpsi_LDFLAGS)
1954 AC_SUBST(esd_LDFLAGS)
1955 AC_SUBST(familiar_LDFLAGS)
1956 AC_SUBST(distort_LDFLAGS)
1957 AC_SUBST(ffmpeg_LDFLAGS)
1958 AC_SUBST(mp4_LDFLAGS)
1959 AC_SUBST(ggi_LDFLAGS)
1960 AC_SUBST(glide_LDFLAGS)
1961 AC_SUBST(gnome_LDFLAGS)
1962 AC_SUBST(gtk_LDFLAGS)
1963 AC_SUBST(http_LDFLAGS)
1964 AC_SUBST(idctaltivec_LDFLAGS)
1965 AC_SUBST(imdct_LDFLAGS)
1966 AC_SUBST(imdct3dn_LDFLAGS)
1967 AC_SUBST(imdctsse_LDFLAGS)
1968 AC_SUBST(ipv4_LDFLAGS)
1969 AC_SUBST(ipv6_LDFLAGS)
1970 AC_SUBST(kde_LDFLAGS)
1971 AC_SUBST(lirc_LDFLAGS)
1972 AC_SUBST(macosx_LDFLAGS)
1973 AC_SUBST(mad_LDFLAGS)
1974 AC_SUBST(memcpyaltivec_LDFLAGS)
1975 AC_SUBST(motionaltivec_LDFLAGS)
1976 AC_SUBST(ncurses_LDFLAGS)
1977 AC_SUBST(qnx_LDFLAGS)
1978 AC_SUBST(qt_LDFLAGS)
1979 AC_SUBST(rc_LDFLAGS)
1980 AC_SUBST(sdl_LDFLAGS)
1981 AC_SUBST(vcd_LDFLAGS)
1982 AC_SUBST(vorbis_LDFLAGS)
1983 AC_SUBST(waveout_LDFLAGS)
1984 AC_SUBST(x11_LDFLAGS)
1985 AC_SUBST(xvideo_LDFLAGS)
1986 AC_SUBST(xosd_LDFLAGS)
1987
1988 AC_OUTPUT([Makefile.config Makefile.opts po/Makefile.in vlc-config])
1989 chmod a+x vlc-config
1990
1991 echo "
1992 vlc configuration
1993 --------------------
1994 vlc version           : ${VERSION}
1995 system                : ${SYS}
1996 architecture          : ${ARCH}
1997 optimizations         : ${OPTIMS}
1998 tuning                : ${TUNING}
1999 debug mode            : ${DEBUG}
2000 release               : ${RELEASE}
2001 profiling             : ${PROFILING}
2002 need builtin getopt   : ${NEED_GETOPT}
2003 built-in modules      :${BUILTINS}
2004 plug-in modules       :${PLUGINS}
2005 mozilla plugin        : ${MOZILLA}
2006 vlc aliases           :${ALIASES}
2007
2008 You may now tune Makefile.opts at your convenience, for instance to choose
2009 which modules get compiled as plugins.
2010
2011 To build vlc and its plugins, type \`${VLC_MAKE}'.
2012 "
2013