]> git.sesse.net Git - vlc/blob - configure.in
Beginning of Interface II
[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.2.50
8 AC_SUBST(VLC_VERSION)
9 VLC_CODENAME=Urumov
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 -rdynamic flag
82 CFLAGS="${CFLAGS} -rdynamic"
83 AC_MSG_CHECKING([if \$CC accepts -rdynamic])
84 AC_TRY_COMPILE([],,
85  DYNAMIC_FLAG="-rdynamic"
86  AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
87
88 dnl End of the bizarre compilation tests
89 CFLAGS=$save_CFLAGS
90
91 dnl Check for boolean_t in sys/types.h
92 AC_MSG_CHECKING([for boolean_t in sys/types.h])
93 AC_TRY_COMPILE([#include <sys/types.h>
94 void quux() { boolean_t foo; }],,
95  AC_DEFINE(BOOLEAN_T_IN_SYS_TYPES_H, 1, Define if <sys/types.h> defines boolean_t.)
96  AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
97
98 dnl Checks for typedefs, structures, and compiler characteristics.
99 AC_C_CONST
100 AC_TYPE_SIZE_T
101 AC_HEADER_TIME
102
103 dnl Checks for DVD ioctls
104 AC_CHECK_HEADERS(sys/ioctl.h,
105   [AC_CHECK_HEADERS(linux/cdrom.h)
106    AC_EGREP_HEADER(dvd,linux/cdrom.h,AC_DEFINE(LINUX_DVD,1,DVD support for linux))])
107
108 dnl default plugins 
109 PLUGINS=${PLUGINS}"ps ts dvd yuv idct idctclassic motion ";
110
111 ARCH=${host_cpu}
112 AC_ARG_ENABLE(ppro,
113 [  --disable-ppro          Disable PentiumPro optimizations (default enabled for x86)],
114 [ if test x$enableval = xyes; then ARCH=${ARCH}" ppro"; fi ],
115 [ if test x${host_cpu} = xi686; then ARCH=${ARCH}" ppro"; fi ])
116 AC_ARG_ENABLE(mmx,
117 [  --disable-mmx           Disable MMX optimizations (default enabled for x86)],
118 [ if test x$enableval = xyes; then ARCH=${ARCH}" mmx"; PLUGINS=${PLUGINS}"yuvmmx motionmmx motionmmxext idctmmx idctmmxext "; fi ],
119 [ if test x${host_cpu} = xi686 -o x${host_cpu} = xi586; then ARCH=${ARCH}" mmx"; PLUGINS=${PLUGINS}"yuvmmx motionmmx motionmmxext idctmmx idctmmxext "; fi ])
120 AC_ARG_ENABLE(debug,
121 [  --enable-debug          Enable debug mode (default disabled)],
122 [ if test x$enableval = xyes; then DEBUG=1; fi ])
123 AC_ARG_ENABLE(stats,
124 [  --enable-stats          Enable printing of statistics (default disabled)],
125 [ if test x$enableval = xyes; then STATS=1; fi ])
126 AC_ARG_ENABLE(optimizations,
127 [  --disable-optimizations Disable compiler optimizations (default enabled)],
128 [ if test x$enableval = xno; then OPTIMS=0; fi ],
129 [ OPTIMS=1 ])
130
131 SYS=${host_os}
132
133 # special cases
134 if test x$host_os = xbeos; then
135     PLUGINS=${PLUGINS}"dummy null beos "
136
137 dnl default case
138 else
139
140 AC_ARG_ENABLE(dummy,
141   [  --enable-dummy          dummy audio and video support (default disabled)],
142   [if test x$enable_dummy = xyes; then PLUGINS=${PLUGINS}"dummy "; fi])
143 AC_ARG_ENABLE(null,
144   [  --disable-null          Null module (default enabled)])
145 if test x$enable_null != xno; then PLUGINS=${PLUGINS}"null "; fi
146 AC_ARG_ENABLE(dsp,
147   [  --disable-dsp           Linux /dev/dsp support (default enabled)])
148 if test x$enable_dsp != xno; then PLUGINS=${PLUGINS}"dsp "; fi
149 AC_ARG_ENABLE(esd,
150   [  --enable-esd            Esound library support (default disabled)],
151   [if test x$enable_esd = xyes; then PLUGINS=${PLUGINS}"esd "; fi])
152 AC_ARG_ENABLE(fb,
153   [  --enable-fb             Linux framebuffer support (default disabled)],
154   [if test x$enable_fb = xyes; then PLUGINS=${PLUGINS}"fb "; ALIASES=${ALIASES}"fbvlc "; fi])
155 AC_ARG_WITH(ggi,
156   [  --with-ggi[=name]       GGI support (default disabled)],
157   [ PLUGINS=${PLUGINS}"ggi ";
158     if test "x$withval" != "xyes";
159     then
160       LIB_GGI="-l"$withval
161     else
162       LIB_GGI="-lggi"
163     fi ])
164 AC_ARG_WITH(sdl,
165   [  --with-sdl[=name]       SDL support (default enabled)],
166   [ PLUGINS=${PLUGINS}"sdl ";
167     if test "x$withval" != "xyes";
168     then
169       LIB_SDL="-l"$withval
170     else
171       LIB_SDL="-lSDL"
172     fi ])
173     if test "x$withval" == "x";
174     then
175       PLUGINS=${PLUGINS}"sdl "
176       LIB_SDL="-lSDL"
177     fi
178 AC_ARG_WITH(glide,
179   [  --with-glide[=name]     Glide (3dfx) support (default disabled)],
180   [ PLUGINS=${PLUGINS}"glide ";
181     if test "x$withval" != "xyes";
182     then
183       LIB_GLIDE="-l"$withval
184     else
185       LIB_GLIDE="-lglide2x"
186     fi ])
187 AC_ARG_ENABLE(gnome,
188   [  --disable-gnome         Gnome support (default enabled)])
189 if test x$enable_gnome != xno; then PLUGINS=${PLUGINS}"gnome "; ALIASES=${ALIASES}"gvlc "; fi
190 AC_ARG_ENABLE(x11,
191   [  --enable-x11            X11 support (default disabled)],
192   [if test x$enable_x11 = xyes; then PLUGINS=${PLUGINS}"x11 "; fi])
193
194 AC_ARG_ENABLE(alsa,
195   [  --enable-alsa           Alsa sound drivers support (Only for linux) (default disabled)],
196   [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])
197 fi
198
199 AC_SUBST(SYS)
200 AC_SUBST(ARCH)
201 AC_SUBST(PLUGINS)
202 AC_SUBST(ALIASES)
203 AC_SUBST(DEBUG)
204 AC_SUBST(STATS)
205 AC_SUBST(OPTIMS)
206 AC_SUBST(DYNAMIC_FLAG)
207 AC_SUBST(LIB_SDL)
208 AC_SUBST(LIB_GLIDE)
209 AC_SUBST(LIB_GGI)
210
211 AC_OUTPUT([Makefile include/config.h])
212
213 echo "
214 vlc configuration
215 -----------------
216 vlc version           : ${VLC_VERSION}
217 system                : ${SYS}
218 architecture          : ${ARCH}
219 debug mode            : ${DEBUG}
220 statistics            : ${STATS}
221 optimizations         : ${OPTIMS}
222 plugins               : ${PLUGINS}
223 vlc aliases           : ${ALIASES}
224 "
225