]> git.sesse.net Git - vlc/blob - configure.in
The motion compensation routines are now modules as well ; choose your
[vlc] / configure.in
1 dnl Autoconf settings for vlc
2 AC_INIT(src/interface/main.c)
3 AC_CONFIG_HEADER(include/defs.h)
4
5 AC_CANONICAL_HOST
6
7 VLC_VERSION=0.1.99i
8 AC_SUBST(VLC_VERSION)
9 VLC_CODENAME=Onatopp
10 AC_SUBST(VLC_CODENAME)
11
12 dnl Check for tools
13 AC_PROG_MAKE_SET
14 if test -z "$CC"; then
15   AC_PROG_CC
16 fi
17 if test -z "$CPP"; then
18   AC_PROG_CPP
19 fi
20
21 dnl AM_PROG_LIBTOOL
22 AC_PROG_INSTALL
23
24 dnl Check for compiler environment
25 AC_C_CONST
26 AC_C_BIGENDIAN
27
28 AC_MSG_CHECKING([whether compiler accepts bswap x86 instruction])
29 AC_TRY_COMPILE([unsigned int foo( unsigned int x )
30    { __asm__("bswap %0" : "=r" (x) : "0" (x)); return x; }],,
31  AC_DEFINE(HAVE_X86_BSWAP, 1, Define if compiler accepts bswap x86 instruction.) AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
32
33 dnl Check for system libs needed
34 AC_CHECK_FUNCS(gettimeofday select strerror strtod strtol)
35 AC_CHECK_FUNCS(setenv putenv)
36 AC_CHECK_FUNC(connect,,[AC_CHECK_LIB(socket,connect)])
37 AC_CHECK_FUNC(gethostbyname,,[AC_CHECK_LIB(nsl,gethostbyname)])
38 AC_CHECK_FUNC(nanosleep,,[AC_CHECK_LIB(rt,nanosleep,,[AC_CHECK_LIB(posix4,nanosleep)])])
39 AC_CHECK_FUNCS(usleep)
40 AC_CHECK_FUNC(inet_aton,,[AC_CHECK_LIB(resolv,inet_aton)])
41 AC_CHECK_FUNCS(vasprintf)
42 AC_FUNC_MMAP
43 AC_TYPE_SIGNAL
44 AC_CHECK_LIB(dl, dlopen)
45 AC_CHECK_LIB(gnugetopt, optarg)
46 AC_CHECK_LIB(be, _)
47 AC_CHECK_LIB(game, _)
48 AC_CHECK_LIB(root, _)
49 AC_CHECK_LIB(m, powl)
50 AC_CHECK_LIB(pthread, pthread_create)
51 AC_CHECK_LIB(threads, thread_create)
52
53 dnl check for getopt_long, substitute the distributed versions if not
54 AC_CHECK_FUNC(getopt_long,,[LIBOBJS="$LIBOBJS getopt.o getopt1.o"])
55 AC_SUBST(LIBOBJS)
56
57 CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
58 AC_CHECK_HEADERS(stddef.h)
59 AC_CHECK_HEADERS(getopt.h)
60 AC_CHECK_HEADERS(sys/sockio.h)
61 AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h unistd.h)
62 AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h)
63 AC_CHECK_HEADERS(dlfcn.h image.h)
64 AC_CHECK_HEADERS(arpa/inet.h net/if.h netinet/in.h sys/socket.h)
65 AC_CHECK_HEADERS(machine/param.h)
66
67 dnl Check for threads library
68 AC_CHECK_HEADERS(cthreads.h pthread.h kernel/scheduler.h kernel/OS.h)
69
70 dnl Do a series of bizarre compilation tests
71 save_CFLAGS=$CFLAGS
72
73 dnl Check for ntohl, etc.
74 CFLAGS="${CFLAGS} -Wall -Werror"
75 AC_MSG_CHECKING([for ntohl in sys/param.h])
76 AC_TRY_COMPILE([#include <sys/param.h>
77 void foo() { int meuh; ntohl(meuh); }],,
78  AC_DEFINE(NTOHL_IN_SYS_PARAM_H, 1, Define if ntohl is in <sys/param.h>.)
79  AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
80
81 dnl Check for special optimization flags
82 CFLAGS="${CFLAGS} -fargument-noalias-global -fstrict-aliasing"
83 AC_MSG_CHECKING([if \$CC accepts -fstrict-aliasing])
84 AC_TRY_COMPILE([],,
85  BIZARRE_OPTIMS="-fstrict-aliasing"
86  AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
87
88 dnl Check for -rdynamic flag
89 CFLAGS="${CFLAGS} -rdynamic"
90 AC_MSG_CHECKING([if \$CC accepts -rdynamic])
91 AC_TRY_COMPILE([],,
92  DYNAMIC_FLAG="-rdynamic"
93  AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
94
95 dnl End of the bizarre compilation tests
96 CFLAGS=$save_CFLAGS
97
98 dnl Check for boolean_t in sys/types.h
99 AC_MSG_CHECKING([for boolean_t in sys/types.h])
100 AC_TRY_COMPILE([#include <sys/types.h>
101 void quux() { boolean_t foo; }],,
102  AC_DEFINE(BOOLEAN_T_IN_SYS_TYPES_H, 1, Define if <sys/types.h> defines boolean_t.)
103  AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
104
105 dnl Checks for typedefs, structures, and compiler characteristics.
106 AC_C_CONST
107 AC_TYPE_SIZE_T
108 AC_HEADER_TIME
109
110 dnl default plugins 
111 PLUGINS=${PLUGINS}"yuv idct idctclassic motion ";
112
113 ARCH=${host_cpu}
114 AC_ARG_ENABLE(ppro,
115 [  --disable-ppro          Disable PentiumPro optimizations (default enabled for x86)],
116 [ if test x$enableval = xyes; then ARCH=${ARCH}" ppro"; fi ],
117 [ if test x${host_cpu} = xi686; then ARCH=${ARCH}" ppro"; fi ])
118 AC_ARG_ENABLE(mmx,
119 [  --disable-mmx           Disable MMX optimizations (default enabled for x86)],
120 [ if test x$enableval = xyes; then ARCH=${ARCH}" mmx"; PLUGINS=${PLUGINS}"yuvmmx motionmmx motionmmxext idctmmx idctmmxext "; fi ],
121 [ if test x${host_cpu} = xi686 -o x${host_cpu} = xi586; then ARCH=${ARCH}" mmx"; PLUGINS=${PLUGINS}"yuvmmx motionmmx motionmmxext idctmmx idctmmxext "; fi ])
122 AC_ARG_ENABLE(debug,
123 [  --enable-debug          Enable debug mode (default disabled)],
124 [ if test x$enableval = xyes; then DEBUG=1; fi ])
125 AC_ARG_ENABLE(stats,
126 [  --enable-stats          Enable printing of statistics (default disabled)],
127 [ if test x$enableval = xyes; then STATS=1; fi ])
128 AC_ARG_ENABLE(optimizations,
129 [  --disable-optimizations Disable compiler optimizations (default enabled)],
130 [ if test x$enableval = xno; then OPTIMS=0; fi ],
131 [ OPTIMS=1 ])
132
133 SYS=${host_os}
134
135 # special cases
136 if test x$host_os = xbeos; then
137     PLUGINS=${PLUGINS}"dummy null beos "
138
139 dnl default case
140 else
141
142 AC_ARG_ENABLE(dummy,
143   [  --disable-dummy         dummy audio and video support (default enabled)])
144 if test x$enable_dummy != xno; then PLUGINS=${PLUGINS}"dummy "; fi
145 AC_ARG_ENABLE(null,
146   [  --disable-null          Null module (default enabled)])
147 if test x$enable_null != xno; then PLUGINS=${PLUGINS}"null "; fi
148 AC_ARG_ENABLE(dsp,
149   [  --disable-dsp           Linux /dev/dsp support (default enabled)])
150 if test x$enable_dsp != xno; then PLUGINS=${PLUGINS}"dsp "; fi
151 AC_ARG_ENABLE(esd,
152   [  --enable-esd            Esound library support (default disabled)],
153   [if test x$enable_esd = xyes; then PLUGINS=${PLUGINS}"esd "; fi])
154 AC_ARG_ENABLE(fb,
155   [  --enable-fb             Linux framebuffer support (default disabled)],
156   [if test x$enable_fb = xyes; then PLUGINS=${PLUGINS}"fb "; ALIASES=${ALIASES}"fbvlc "; fi])
157 AC_ARG_WITH(ggi,
158   [  --with-ggi[=name]       GGI support (default disabled)],
159   [ PLUGINS=${PLUGINS}"ggi ";
160     if test "x$withval" != "xyes";
161     then
162       LIB_GGI="-l"$withval
163     else
164       LIB_GGI="-lggi"
165     fi ])
166 AC_ARG_WITH(sdl,
167   [  --with-sdl[=name]       SDL support (default disabled)],
168   [ PLUGINS=${PLUGINS}"sdl ";
169     if test "x$withval" != "xyes";
170     then
171       LIB_SDL="-l"$withval
172     else
173       LIB_SDL="-lSDL"
174     fi ])
175 AC_ARG_WITH(glide,
176   [  --with-glide[=name]     Glide (3dfx) support (default disabled)],
177   [ PLUGINS=${PLUGINS}"glide ";
178     if test "x$withval" != "xyes";
179     then
180       LIB_GLIDE="-l"$withval
181     else
182       LIB_GLIDE="-lglide2x"
183     fi ])
184 AC_ARG_ENABLE(gnome,
185   [  --enable-gnome          Gnome support (default disabled)],
186   [if test x$enable_gnome = xyes; then PLUGINS=${PLUGINS}"gnome "; ALIASES=${ALIASES}"gvlc "; fi])
187 AC_ARG_ENABLE(x11,
188   [  --disable-x11           X11 support (default enabled)])
189 if test x$enable_x11 != xno; then PLUGINS=${PLUGINS}"x11 "; fi
190 AC_ARG_ENABLE(alsa,
191   [  --enable-alsa           Alsa sound drivers support (Only for linux) (default disabled)],
192   [if test x$enable_alsa = xyes; then AC_CHECK_HEADER(sys/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false") if test $have_alsa = true; then PLUGINS=${PLUGINS}"alsa "; fi; fi])
193
194 fi
195
196 AC_SUBST(SYS)
197 AC_SUBST(ARCH)
198 AC_SUBST(PLUGINS)
199 AC_SUBST(ALIASES)
200 AC_SUBST(DEBUG)
201 AC_SUBST(STATS)
202 AC_SUBST(OPTIMS)
203 AC_SUBST(BIZARRE_OPTIMS)
204 AC_SUBST(DYNAMIC_FLAG)
205 AC_SUBST(LIB_SDL)
206 AC_SUBST(LIB_GLIDE)
207 AC_SUBST(LIB_GGI)
208
209 AC_OUTPUT([Makefile include/config.h])
210
211 echo "
212 vlc configuration
213 -----------------
214 vlc version           : ${VLC_VERSION}
215 system                : ${SYS}
216 architecture          : ${ARCH}
217 debug mode            : ${DEBUG}
218 statistics            : ${STATS}
219 optimizations         : ${OPTIMS}
220 plugins               : ${PLUGINS}
221 vlc aliases           : ${ALIASES}
222 "
223