blob: 1117259e8cd34a1d92371095d4a6643ecf9e5be7 [file] [log] [blame]
Alexandre Julliarde2991ea1995-07-29 13:09:43 +00001dnl Process this file with autoconf to produce a configure script.
2dnl Author: Michael Patra <micky@marie.physik.tu-berlin.de>
3dnl <patra@itp1.physik.tu-berlin.de>
4AC_REVISION([configure.in 1.00])
5AC_INIT(controls/edit.c)
Alexandre Julliard18f92e71996-07-17 20:02:21 +00006AC_CONFIG_HEADER(include/config.h)
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00007AC_CONFIG_AUX_DIR(tools)
Alexandre Julliarde2991ea1995-07-29 13:09:43 +00008
Alexandre Julliardff8331e1995-09-18 11:19:54 +00009dnl **** Command-line arguments ****
10
Alexandre Julliarda0b2b1d1997-11-16 17:38:29 +000011dnl Default values
Alexandre Julliard318f4ce2000-01-31 05:02:49 +000012LIBEXT=so # library type .so or .a
Alexandre Julliardf90efa91998-06-14 15:24:15 +000013TRACE_MSGS=yes # the TRACE() macro
14DEBUG_MSGS=yes # the TRACE(), WARN(), and FIXME() macros.
Patrik Stridvall5e5ad532000-04-23 20:02:46 +000015CURSES=yes
Lionel Ulmerfbc15b12000-04-29 14:23:22 +000016OPENGL=normal
Alexandre Julliard7e56f681996-01-31 19:02:28 +000017
Alexandre Julliarda0b2b1d1997-11-16 17:38:29 +000018AC_ARG_ENABLE(dll,
Alexandre Julliard0adad952000-01-26 01:45:58 +000019[ --disable-dll build static libraries instead of DLLs],
Alexandre Julliard318f4ce2000-01-31 05:02:49 +000020[if test "$enableval" = "no"; then LIBEXT="a"; fi])
Alexandre Julliard642d3131998-07-12 19:29:36 +000021
Alexandre Julliardf90efa91998-06-14 15:24:15 +000022AC_ARG_ENABLE(debug,
23[ --disable-debug compile out all debugging messages],
24[if test "$enableval" = "no"; then DEBUG_MSGS="no"; fi])
25
Lionel Ulmerfbc15b12000-04-29 14:23:22 +000026AC_ARG_ENABLE(opengl,
27[ --enable-opengl force usage of OpenGL even if the latter is thread-safe],
28[if test "$enableval" = "no"; then OPENGL="no"; elif test "$enableval" = "yes"; then OPENGL="yes"; fi])
29
Alexandre Julliardf90efa91998-06-14 15:24:15 +000030AC_ARG_ENABLE(trace,
31[ --disable-trace compile out TRACE messages],
32[if test "$enableval" = "no"; then TRACE_MSGS="no"; fi])
33
Patrik Stridvall5e5ad532000-04-23 20:02:46 +000034AC_ARG_WITH(curses,
35[ --without-curses do not use curses],
36[if test "$withval" = "no"; then CURSES="no"; fi])
37
Alexandre Julliarda11d7b11998-03-01 20:05:02 +000038AC_ARG_WITH(reentrant-x,
Joseph Pranevich791cd6a1998-12-02 19:58:08 +000039[ --without-reentrant-x compile for use with non-reentrant X libraries])
Alexandre Julliarda11d7b11998-03-01 20:05:02 +000040
Alexandre Julliard18f92e71996-07-17 20:02:21 +000041AC_SUBST(OPTIONS)
Alexandre Julliardb7258be1995-09-01 15:57:28 +000042
Alexandre Julliardf90efa91998-06-14 15:24:15 +000043if test "$DEBUG_MSGS" = "no"
44then
45 AC_DEFINE(NO_DEBUG_MSGS)
46 AC_DEFINE(NO_TRACE_MSGS)
47else
48 if test "$TRACE_MSGS" = "no"
49 then
50 AC_DEFINE(NO_TRACE_MSGS)
51 fi
52fi
53
Alexandre Julliard02e90081998-01-04 17:49:09 +000054dnl **** Check for some programs ****
Alexandre Julliardff8331e1995-09-18 11:19:54 +000055
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000056AC_PROG_MAKE_SET
57AC_PROG_CC
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +000058AC_PROG_CPP
Alexandre Julliardff8331e1995-09-18 11:19:54 +000059AC_PATH_XTRA
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000060AC_PROG_YACC
61AC_PROG_LEX
Marcus Meissnerb53bb412000-07-23 13:41:51 +000062AC_CHECK_PROGS(XLEX,$LEX flex lex,none)
63if test "$XLEX" = "none"
64then
65 echo "*** Error: No suitable lex found. ***"
66 echo " Please install the 'flex' package."
67 exit 1
68fi
69AC_DECL_YYTEXT
Alexandre Julliardff8331e1995-09-18 11:19:54 +000070AC_PROG_RANLIB
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +000071AC_PROG_INSTALL
Alexandre Julliard641ee761997-08-04 16:34:36 +000072AC_PROG_LN_S
Mike McCormacke0df32f2000-08-11 21:15:21 +000073AC_CHECK_PROG(C2MAN,c2man,c2man,\$(TOPSRCDIR)/tools/c2man.pl)
Alexandre Julliard318f4ce2000-01-31 05:02:49 +000074AC_PATH_PROG(LDCONFIG, ldconfig, true, /sbin:/usr/sbin:$PATH)
Alexandre Julliard02e90081998-01-04 17:49:09 +000075
Patrik Stridvalla9be64e1999-07-31 17:39:44 +000076dnl Check for lint
77AC_CHECK_PROGS(LINT, lclint lint)
78if test "$LINT" = "lint"
79then
80 LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4"
81 dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64'
82fi
83AC_SUBST(LINT)
84AC_SUBST(LINTFLAGS)
85
Alexandre Julliard02e90081998-01-04 17:49:09 +000086dnl **** Check for some libraries ****
87
Howard Abrams13277481999-07-10 13:16:29 +000088dnl Check for -lm for BeOS
89AC_CHECK_LIB(m,sqrt)
Alexandre Julliardd37eb361997-07-20 16:23:21 +000090dnl Check for -li386 for NetBSD and OpenBSD
Alexandre Julliard02e90081998-01-04 17:49:09 +000091AC_CHECK_LIB(i386,i386_set_ldt)
Todd Vierlingecc76691998-12-15 17:49:02 +000092dnl Check for -lossaudio for NetBSD
93AC_CHECK_LIB(ossaudio,_oss_ioctl)
Alexandre Julliard02e90081998-01-04 17:49:09 +000094dnl Check for -lw for Solaris
95AC_CHECK_LIB(w,iswalnum)
Patrik Stridvallea584721998-11-01 16:22:07 +000096dnl Check for -lnsl for Solaris
Ron Recorde977d6c1999-09-05 12:32:05 +000097AC_CHECK_FUNCS(gethostbyname,, AC_CHECK_LIB(nsl, gethostbyname, X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl", AC_CHECK_LIB(socket, gethostbyname, X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl", , -lnsl), -lsocket))
Ulrich Weigand715a55e1999-04-18 13:19:56 +000098dnl Check for -lsocket for Solaris
Marcus Meissnerf070fda1999-04-24 12:02:14 +000099AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000100dnl Check for -lxpg4 for FreeBSD
101AC_CHECK_LIB(xpg4,setrunelocale)
Alexandre Julliard0e7bd081999-05-02 11:46:02 +0000102dnl Check for -lmmap for OS/2
103AC_CHECK_LIB(mmap,mmap)
Marcus Meissner2d7be871999-12-05 23:06:40 +0000104dnl Check for openpty
105AC_CHECK_FUNCS(openpty,,
106 AC_CHECK_LIB(util,openpty,
107 AC_DEFINE(HAVE_OPENPTY)
108 LIBS="$LIBS -lutil"
109 ))
Marcus Meissnerf070fda1999-04-24 12:02:14 +0000110
111AC_CHECK_HEADERS(dlfcn.h,
112 AC_CHECK_FUNCS(dlopen,
113 AC_DEFINE(HAVE_DL_API),
114 AC_CHECK_LIB(dl,dlopen,
115 AC_DEFINE(HAVE_DL_API)
Alexandre Julliarde1e75372000-04-24 17:17:49 +0000116 LIBS="$LIBS -ldl",
117 LIBEXT="a"
Marcus Meissnerf070fda1999-04-24 12:02:14 +0000118 )
Alexandre Julliarde1e75372000-04-24 17:17:49 +0000119 ),
120 LIBEXT="a"
Marcus Meissnerf070fda1999-04-24 12:02:14 +0000121)
Patrik Stridvallea584721998-11-01 16:22:07 +0000122AC_SUBST(XLIB)
Patrik Stridvall2941a212000-04-25 20:34:22 +0000123AC_SUBST(X_DLLS)
124X_DLLS=""
125AC_SUBST(XFILES)
126XFILES=""
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000127AC_SUBST(OPENGLFILES)
128OPENGLFILES=""
Hidenori Takeshima4615e292000-05-23 23:36:41 +0000129AC_SUBST(OPENGL32_DLL)
130OPENGL32_DLL=""
Marcus Meissner10ad97c2000-04-09 14:30:50 +0000131AC_SUBST(DGA_SRCS)
132DGA_SRCS=""
Lionel Ulmer51177f92000-05-01 14:25:49 +0000133AC_SUBST(DGA2_SRCS)
134DGA2_SRCS=""
Marcus Meissner10ad97c2000-04-09 14:30:50 +0000135AC_SUBST(MESA_SRCS)
136MESA_SRCS=""
Patrik Stridvallea584721998-11-01 16:22:07 +0000137if test "$have_x" = "yes"
138then
Patrik Stridvall24110281999-02-04 10:09:54 +0000139 XLIB="-lXext -lX11"
Ove Kaaven1eb593c1999-02-14 09:34:46 +0000140 ac_save_CPPFLAGS="$CPPFLAGS"
141 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
Patrik Stridvall24110281999-02-04 10:09:54 +0000142
John R. Sheetsf2b77cc2000-05-23 21:18:51 +0000143 dnl *** Check for -lXpm
144 AC_CHECK_HEADERS(X11/xpm.h,
145 [ dnl *** If X11/xpm.h exists...
146 AC_CHECK_LIB(Xpm, XpmCreatePixmapFromData,
147 [ AC_DEFINE(HAVE_LIBXXPM) X_PRE_LIBS="$X_PRE_LIBS -lXpm"],,
148 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
149 )
150 ],
151 [ dnl *** If X11/xpm.h does not exist...
152 dnl NOTE: autoconf does not allow commas inside the third
153 dnl parameter to AC_CHECK_HEADERS, due to some quoting
154 dnl magic it does.
155 echo "Redhat : xpm xpm-devel"
156 echo "Caldera OpenLinux : xpm xpm-devel xpm-devel-static"
Marcus Meissner284995e2000-03-04 19:21:49 +0000157 echo "SuSE : xpm"
John R. Sheetsf2b77cc2000-05-23 21:18:51 +0000158 echo "Debian/Corel Linux: xpm4g xpm4g-dev"
Marcus Meissnercb99b0e1999-12-20 04:10:06 +0000159 echo
160 echo "Or get the sources from ftp.x.org and all its mirror sites from "
161 echo "the directory /contrib/libraries."
162 echo
163 exit 1
John R. Sheetsf2b77cc2000-05-23 21:18:51 +0000164 ]
165 )
Patrik Stridvall24110281999-02-04 10:09:54 +0000166
John R. Sheetsf2b77cc2000-05-23 21:18:51 +0000167 dnl *** All three of the following tests require X11/Xlib.h
168 AC_CHECK_HEADERS(X11/Xlib.h,
169 [
170 dnl *** Check for X Shm extension
171 AC_CHECK_HEADERS(X11/extensions/XShm.h,
172 [ dnl *** If X11/extensions/XShm.h exists...
173 AC_CHECK_LIB(Xext, XShmQueryExtension,
174 AC_DEFINE(HAVE_LIBXXSHM),,
175 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
176 ],
177 AC_MSG_WARN([Xshm extension not found!!])
178 )
Marcus Meissnercb99b0e1999-12-20 04:10:06 +0000179
Francois Jacques5b6879c2000-07-28 23:04:54 +0000180 dnl *** Check for X shape extension
181 AC_CHECK_HEADERS(X11/Xlib.h X11/extensions/shape.h,
182 [ dnl *** If X11/extensions/shape.h exists...
183 AC_CHECK_LIB(Xext,XShapeQueryExtension,
184 AC_DEFINE(HAVE_LIBXSHAPE),,
185 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
186 ],
187 AC_MSG_WARN([XShape extension found!!])
188 )
189
John R. Sheetsf2b77cc2000-05-23 21:18:51 +0000190 dnl *** Check for XFree86 DGA / DGA 2.0 extension
191 AC_CHECK_HEADERS(X11/extensions/xf86dga.h,
192 [ dnl *** If X11/extensions/xf86dga.h exists, check
193 dnl *** for XDGAQueryExtension()...
194 AC_CHECK_LIB(Xxf86dga, XDGAQueryExtension,
195 [ dnl *** If found...
196 AC_DEFINE(HAVE_LIBXXF86DGA2)
197 AC_DEFINE(HAVE_LIBXXF86DGA)
198 X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
199 DGA_SRCS='$(DGA_SRCS)'
200 DGA2_SRCS='$(DGA2_SRCS)'
201 ],
202 [ dnl *** If not found, look for XF86DGAQueryExtension()
203 dnl *** instead (DGA 2.0 not found)...
204 AC_CHECK_LIB(Xxf86dga, XF86DGAQueryExtension,
205 [ AC_DEFINE(HAVE_LIBXXF86DGA)
206 X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
207 DGA_SRCS='$(DGA_SRCS)'
208 ],,
209 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
210 )
211 ],
212 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
213 )
214 ],
215 AC_MSG_WARN([DGA extension not found!!])
216 )
Patrik Stridvall24110281999-02-04 10:09:54 +0000217
John R. Sheetsf2b77cc2000-05-23 21:18:51 +0000218 dnl *** Check for XFree86 VMODE extension
219 AC_CHECK_HEADERS(X11/extensions/xf86vmode.h,
220 [ dnl *** If X11/extensions/xf86vmode.h exists...
221 AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension,
222 [ AC_DEFINE(HAVE_LIBXXF86VM)
223 X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm"
224 ],,
225 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
226 )
227 ],
228 AC_MSG_WARN([XFree86 VMODE extension not found!!])
229 )
Lionel Ulmer3d2f32d2000-09-06 19:46:59 +0000230
231 dnl *** Check for XVideo extension supporting XvImages
232 AC_CHECK_HEADERS(X11/extensions/Xvlib.h,
233 [ dnl *** If X11/extensions/Xvlib.h exists...
234 AC_CHECK_LIB(Xv, XvShmCreateImage,
235 [ AC_DEFINE(HAVE_XVIDEO)
236 X_PRE_LIBS="$X_PRE_LIBS -lXv"
237 ],,
238 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
239 )
240 ],
241 AC_MSG_WARN([XVideo extension not found !!])
242 )
243
John R. Sheetsf2b77cc2000-05-23 21:18:51 +0000244 ]
245 ) dnl *** End of X11/Xlib.h check
Lionel Ulmer5c085701999-02-28 19:48:53 +0000246
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000247 dnl Check for the presence of OpenGL
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000248 if test $OPENGL = "yes" -o $OPENGL = "normal"
Patrik Stridvall24110281999-02-04 10:09:54 +0000249 then
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000250 AC_CHECK_HEADERS(GL/gl.h GL/glx.h GL/glext.h)
Marcus Meissner22a969b2000-08-08 20:46:50 +0000251 if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_glx_h" = "yes"
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000252 then
253 dnl Check for some problems due to old Mesa versions
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000254 AC_CACHE_CHECK("for up-to-date OpenGL version", wine_cv_opengl_version_OK,
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000255 AC_TRY_COMPILE(
Lionel Ulmer48c08162000-01-05 01:51:02 +0000256 [#include <GL/gl.h>],
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000257 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000258 [wine_cv_opengl_version_OK="yes"],
259 [wine_cv_opengl_version_OK="no"]
Lionel Ulmer48c08162000-01-05 01:51:02 +0000260 )
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000261 )
262
263 dnl Check for the thread-safety of the OpenGL library
264 AC_CACHE_CHECK("for thread-safe OpenGL version",
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000265 wine_cv_opengl_version_threadsafe,
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000266 [saved_libs=$LIBS
267 LIBS="$X_LIBS -lGL"
268 AC_TRY_LINK([],[pthread_getspecific();],
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000269 [wine_cv_opengl_version_threadsafe="yes"],
270 [wine_cv_opengl_version_threadsafe="no"])
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000271 LIBS=$saved_libs]
Lionel Ulmer48c08162000-01-05 01:51:02 +0000272 )
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000273
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000274 if test "$wine_cv_opengl_version_OK" = "yes" -a \( "$wine_cv_opengl_version_threadsafe" = "no" -o $OPENGL = "yes" \)
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000275 then
Andreas Mohr4eefb962000-08-01 00:27:35 +0000276 dnl Check for the presence of the library
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000277 AC_CHECK_LIB(GL,glXCreateContext,
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000278 X_PRE_LIBS="$X_PRE_LIBS -lGL"
279 MESA_SRCS='$(MESA_SRCS)'
280 ,,
281 $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
282
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000283 if test $ac_cv_lib_GL_glXCreateContext = "yes"
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000284 then
Lionel Ulmerbd8ede12000-10-12 20:45:58 +0000285
286 OPENGLFILES='$(OPENGLFILES)'
287 AC_DEFINE(HAVE_OPENGL)
288
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000289 AC_CHECK_LIB(GL,glXGetProcAddressARB,AC_DEFINE(HAVE_GLX_GETPROCADDRESS),,$X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000290
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000291 if test $ac_cv_lib_GL_glXGetProcAddressARB = "yes"
292 then
Lionel Ulmer1434d872000-07-23 14:23:31 +0000293 AC_CACHE_CHECK("for OpenGL extension functions prototypes", wine_cv_extension_prototypes,
294 AC_TRY_COMPILE([#include <GL/gl.h>
Marcus Meissner6bb6d4c2000-08-09 22:21:08 +0000295 #ifdef HAVE_GL_GLEXT_H
296 # include <GL/glext.h>
297 #endif
298 ],
Lionel Ulmer1434d872000-07-23 14:23:31 +0000299 [PFNGLCOLORTABLEEXTPROC test_proc;],
Lionel Ulmerfe210ef2000-07-29 11:30:56 +0000300 [wine_cv_extension_prototypes="yes"],
Lionel Ulmer1434d872000-07-23 14:23:31 +0000301 [wine_cv_extension_prototypes="no"]
302 )
303 )
Lionel Ulmerfe210ef2000-07-29 11:30:56 +0000304 if test $wine_cv_extension_prototypes = "yes"
305 then
306 AC_DEFINE(HAVE_GLEXT_PROTOTYPES)
307 fi
Lionel Ulmer1434d872000-07-23 14:23:31 +0000308
Hidenori Takeshima4615e292000-05-23 23:36:41 +0000309 OPENGL32_DLL=opengl32
Lionel Ulmerbedf40b2000-05-12 20:18:14 +0000310 fi
Lionel Ulmerfbc15b12000-04-29 14:23:22 +0000311 fi
312 fi
313 fi
Patrik Stridvall24110281999-02-04 10:09:54 +0000314 fi
Ove Kaaven1eb593c1999-02-14 09:34:46 +0000315
316 CPPFLAGS="$ac_save_CPPFLAGS"
Patrik Stridvall2941a212000-04-25 20:34:22 +0000317 X_DLLS='$(X_DLLS)'
318 XFILES='$(XFILES)'
Patrik Stridvallea584721998-11-01 16:22:07 +0000319else
320 XLIB=""
321 X_CFLAGS=""
322 X_LIBS=""
323fi
Alexandre Julliard0623a6f1998-01-18 18:01:49 +0000324
Joseph Praneviche884f9c1999-01-03 16:14:34 +0000325dnl **** Check which curses lib to use ***
Patrik Stridvall5e5ad532000-04-23 20:02:46 +0000326if test "$CURSES" = "yes"
Alexandre Julliard638f1691999-01-17 16:32:32 +0000327then
Patrik Stridvall5e5ad532000-04-23 20:02:46 +0000328 AC_CHECK_HEADERS(ncurses.h)
329 if test "$ac_cv_header_ncurses_h" = "yes"
330 then
331 AC_CHECK_LIB(ncurses,waddch)
332 fi
333 if test "$ac_cv_lib_ncurses_waddch" = "yes"
334 then
335 AC_CHECK_LIB(ncurses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
336 AC_CHECK_LIB(ncurses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
337 else
338 AC_CHECK_HEADERS(curses.h)
339 if test "$ac_cv_header_curses_h" = "yes"
340 then
341 AC_CHECK_LIB(curses,waddch)
342 if test "$ac_cv_lib_curses_waddch" = "yes"
343 then
344 AC_CHECK_LIB(curses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
345 AC_CHECK_LIB(curses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
346 fi
347 fi
Patrik Stridvall24110281999-02-04 10:09:54 +0000348 fi
Joseph Praneviche884f9c1999-01-03 16:14:34 +0000349fi
350
Pavel Roskin94d99641998-12-26 11:52:51 +0000351dnl **** Check for IPX (currently Linux only) ****
352AC_CACHE_CHECK("for GNU style IPX support", ac_cv_c_ipx_gnu,
353 AC_TRY_COMPILE(
354 [#include <sys/socket.h>
355 #include <netipx/ipx.h>],
356 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
Aaron Hopec23872d2000-01-15 23:43:21 +0000357 [ac_cv_c_ipx_gnu="yes"],
Pavel Roskin94d99641998-12-26 11:52:51 +0000358 [ac_cv_c_ipx_gnu="no"])
359 )
Aaron Hopec23872d2000-01-15 23:43:21 +0000360if test "$ac_cv_c_ipx_gnu" = "yes"
361then
362 AC_DEFINE(HAVE_IPX_GNU)
363fi
Pavel Roskin94d99641998-12-26 11:52:51 +0000364
365if test "$ac_cv_c_ipx_gnu" = "no"
366then
367 AC_CACHE_CHECK("for linux style IPX support", ac_cv_c_ipx_linux,
368 AC_TRY_COMPILE(
369 [#include <sys/socket.h>
370 #include <asm/types.h>
371 #include <linux/ipx.h>],
372 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
Aaron Hopec23872d2000-01-15 23:43:21 +0000373 [ac_cv_c_ipx_linux="yes"],
Pavel Roskin94d99641998-12-26 11:52:51 +0000374 [ac_cv_c_ipx_linux="no"])
375 )
Aaron Hopec23872d2000-01-15 23:43:21 +0000376 if test "$ac_cv_c_ipx_linux" = "yes"
377 then
378 AC_DEFINE(HAVE_IPX_LINUX)
379 fi
Pavel Roskin94d99641998-12-26 11:52:51 +0000380fi
381
Alexandre Julliard0623a6f1998-01-18 18:01:49 +0000382dnl **** Check for Open Sound System ****
Todd Vierlingecc76691998-12-15 17:49:02 +0000383AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h soundcard.h, break)
Alexandre Julliard0623a6f1998-01-18 18:01:49 +0000384
385AC_CACHE_CHECK("for Open Sound System",
386 ac_cv_c_opensoundsystem,
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000387 AC_TRY_COMPILE([
Todd Vierlingecc76691998-12-15 17:49:02 +0000388 #if defined(HAVE_SYS_SOUNDCARD_H)
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000389 #include <sys/soundcard.h>
Todd Vierlingecc76691998-12-15 17:49:02 +0000390 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000391 #include <machine/soundcard.h>
Todd Vierlingecc76691998-12-15 17:49:02 +0000392 #elif defined(HAVE_SOUNDCARD_H)
393 #include <soundcard.h>
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000394 #endif
395 ],[
396
Alexandre Julliard60ce85c1998-02-01 18:33:27 +0000397/* check for one of the Open Sound System specific SNDCTL_ defines */
398#if !defined(SNDCTL_DSP_STEREO)
Alexandre Julliard0623a6f1998-01-18 18:01:49 +0000399#error No open sound system
400#endif
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000401],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no"))
402
403if test "$ac_cv_c_opensoundsystem" = "yes"
404then
405 AC_DEFINE(HAVE_OSS)
406fi
Alexandre Julliard0623a6f1998-01-18 18:01:49 +0000407
Eric Pouech338d3b21999-05-22 18:52:21 +0000408AC_CACHE_CHECK("for Open Sound System/MIDI interface",
409 ac_cv_c_opensoundsystem_midi,
410 AC_TRY_COMPILE([
411 #if defined(HAVE_SYS_SOUNDCARD_H)
412 #include <sys/soundcard.h>
413 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
414 #include <machine/soundcard.h>
415 #elif defined(HAVE_SOUNDCARD_H)
416 #include <soundcard.h>
417 #endif
418 ],[
419
420/* check for one of the Open Sound System specific SNDCTL_SEQ defines */
421#if !defined(SNDCTL_SEQ_SYNC)
422#error No open sound system MIDI interface
423#endif
424],ac_cv_c_opensoundsystem_midi="yes",ac_cv_c_opensoundsystem_midi="no"))
425
426if test "$ac_cv_c_opensoundsystem_midi" = "yes"
427then
428 AC_DEFINE(HAVE_OSS_MIDI)
429fi
430
Alexandre Julliard641ee761997-08-04 16:34:36 +0000431dnl **** If ln -s doesn't work, use cp instead ****
432if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
433
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +0000434dnl **** Check for gcc strength-reduce bug ****
435
436if test "x${GCC}" = "xyes"
437then
438 CFLAGS="$CFLAGS -Wall"
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +0000439 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
440 AC_TRY_RUN([
441int main(void) {
Alexandre Julliardd2e1c1a1996-03-09 16:12:43 +0000442 static int Array[[3]];
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +0000443 unsigned int B = 3;
444 int i;
Alexandre Julliardd2e1c1a1996-03-09 16:12:43 +0000445 for(i=0; i<B; i++) Array[[i]] = i - 3;
446 exit( Array[[1]] != -2 );
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +0000447}],
448 ac_cv_c_gcc_strength_bug="no",
449 ac_cv_c_gcc_strength_bug="yes",
450 ac_cv_c_gcc_strength_bug="yes") )
451 if test "$ac_cv_c_gcc_strength_bug" = "yes"
452 then
453 CFLAGS="$CFLAGS -fno-strength-reduce"
454 fi
455fi
456
Alexandre Julliard8cc3a5e1996-08-11 15:49:51 +0000457dnl **** Check for underscore on external symbols ****
458
459AC_CACHE_CHECK("whether external symbols need an underscore prefix",
460 ac_cv_c_extern_prefix,
461[saved_libs=$LIBS
462LIBS="conftest_asm.s $LIBS"
463cat > conftest_asm.s <<EOF
464 .globl _ac_test
465_ac_test:
466 .long 0
467EOF
468AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
469 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
470LIBS=$saved_libs])
471if test "$ac_cv_c_extern_prefix" = "yes"
472then
473 AC_DEFINE(NEED_UNDERSCORE_PREFIX)
474fi
475
Alexandre Julliard0623a6f1998-01-18 18:01:49 +0000476dnl **** Check for .string in assembler ****
477
478AC_CACHE_CHECK("whether assembler accepts .string",
479 ac_cv_c_asm_string,
480[saved_libs=$LIBS
481LIBS="conftest_asm.s $LIBS"
482cat > conftest_asm.s <<EOF
483 .string "test"
484EOF
485AC_TRY_LINK(,,ac_cv_c_asm_string="yes",ac_cv_c_asm_string="no")
486LIBS=$saved_libs])
487if test "$ac_cv_c_asm_string" = "yes"
488then
489 AC_DEFINE(HAVE_ASM_STRING)
490fi
491
Alexandre Julliard7e6ae4b1996-12-08 19:25:27 +0000492dnl **** Check for working dll ****
493
Todd Vierling4b992b01998-12-15 15:26:27 +0000494LDSHARED=""
Alexandre Julliard318f4ce2000-01-31 05:02:49 +0000495if test "$LIBEXT" = "so"
Alexandre Julliard7e6ae4b1996-12-08 19:25:27 +0000496then
Todd Vierling4b992b01998-12-15 15:26:27 +0000497 AC_CACHE_CHECK("whether we can build a Linux dll",
498 ac_cv_c_dll_linux,
Alexandre Julliard7e6ae4b1996-12-08 19:25:27 +0000499 [saved_cflags=$CFLAGS
500 CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0"
Todd Vierling4b992b01998-12-15 15:26:27 +0000501 AC_TRY_LINK(,[return 1],ac_cv_c_dll_linux="yes",ac_cv_c_dll_linux="no")
Alexandre Julliard7e6ae4b1996-12-08 19:25:27 +0000502 CFLAGS=$saved_cflags
503 ])
Todd Vierling4b992b01998-12-15 15:26:27 +0000504 if test "$ac_cv_c_dll_linux" = "yes"
Alexandre Julliard7e6ae4b1996-12-08 19:25:27 +0000505 then
Alexandre Julliard0adad952000-01-26 01:45:58 +0000506 LDSHARED="\$(CC) -shared -Wl,-soname,\$(SONAME),-rpath,\$(libdir)"
Alexandre Julliard7e6ae4b1996-12-08 19:25:27 +0000507 else
Patrik Stridvalla9ee4a22000-01-30 00:36:50 +0000508 AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll,
Ron Recorde977d6c1999-09-05 12:32:05 +0000509 ac_cv_c_dll_unixware,
Todd Vierling4b992b01998-12-15 15:26:27 +0000510 [saved_cflags=$CFLAGS
Patrik Stridvalla9ee4a22000-01-30 00:36:50 +0000511 CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0"
Ron Recorde977d6c1999-09-05 12:32:05 +0000512 AC_TRY_LINK(,[return 1],ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")
Todd Vierling4b992b01998-12-15 15:26:27 +0000513 CFLAGS=$saved_cflags
514 ])
Ron Recorde977d6c1999-09-05 12:32:05 +0000515 if test "$ac_cv_c_dll_unixware" = "yes"
Todd Vierling4b992b01998-12-15 15:26:27 +0000516 then
Alexandre Julliard0adad952000-01-26 01:45:58 +0000517 LDSHARED="\$(CC) -Wl,-G,-h,\$(libdir)/\$(SONAME)"
Ron Recorde977d6c1999-09-05 12:32:05 +0000518 else
519 AC_CACHE_CHECK("whether we can build a NetBSD dll",
520 ac_cv_c_dll_netbsd,
521 [saved_cflags=$CFLAGS
522 CFLAGS="$CFLAGS -fPIC -Bshareable -Bforcearchive"
523 AC_TRY_LINK(,[return 1],ac_cv_c_dll_netbsd="yes",ac_cv_c_dll_netbsd="no")
524 CFLAGS=$saved_cflags
525 ])
526 if test "$ac_cv_c_dll_netbsd" = "yes"
527 then
Ron Recorde977d6c1999-09-05 12:32:05 +0000528 LDSHARED="ld -Bshareable -Bforcearchive"
529 fi
Todd Vierling4b992b01998-12-15 15:26:27 +0000530 fi
531 fi
Ron Recorde977d6c1999-09-05 12:32:05 +0000532 if test "$ac_cv_c_dll_linux" = "no" -a "$ac_cv_c_dll_unixware" = "no" -a "$ac_cv_c_dll_netbsd" = "no"
Todd Vierling4b992b01998-12-15 15:26:27 +0000533 then
Alexandre Julliard318f4ce2000-01-31 05:02:49 +0000534 LIBEXT="a"
Alexandre Julliard7e6ae4b1996-12-08 19:25:27 +0000535 fi
536fi
Alexandre Julliard0adad952000-01-26 01:45:58 +0000537
538DLLFLAGS=""
Alexandre Julliard0adad952000-01-26 01:45:58 +0000539
Alexandre Julliard318f4ce2000-01-31 05:02:49 +0000540if test "$LIBEXT" = "so"; then
Alexandre Julliard318f4ce2000-01-31 05:02:49 +0000541 DLLFLAGS="-fPIC"
Alexandre Julliard7e495e12000-07-25 21:01:59 +0000542 DLL_LINK="-L\$(DLLDIR) \$(IMPORTS:%=-l%) -L\$(TOPOBJDIR) -lwine -lwine_unicode"
Alexandre Julliard0adad952000-01-26 01:45:58 +0000543else
Alexandre Julliard7e495e12000-07-25 21:01:59 +0000544 DLL_LINK="-L\$(DLLDIR) \$(DLLS:%=-l%) -L\$(TOPOBJDIR) -lwine -lwine_unicode \$(X_LIBS) \$(XLIB)"
Alexandre Julliard318f4ce2000-01-31 05:02:49 +0000545 AC_CACHE_CHECK([whether the linker supports --[[no]]-whole-archive (Linux)],
546 ac_cv_c_whole_archive,
Patrik Stridvalla9ee4a22000-01-30 00:36:50 +0000547 [saved_cflags=$CFLAGS
548 CFLAGS="$CFLAGS -Wl,--whole-archive -Wl,--no-whole-archive"
549 AC_TRY_LINK(,[return 1],ac_cv_c_whole_archive="yes",ac_cv_c_whole_archive="no")
550 CFLAGS=$saved_cflags
551 ])
Alexandre Julliard318f4ce2000-01-31 05:02:49 +0000552 if test "$ac_cv_c_whole_archive" = "yes"
553 then
554 DLL_LINK="-Wl,--whole-archive $DLL_LINK -Wl,--no-whole-archive"
555 else
556 AC_CACHE_CHECK([whether the linker supports -z {all,default}extract (Linux)],
557 ac_cv_c_allextract,
Patrik Stridvalla9ee4a22000-01-30 00:36:50 +0000558 [saved_cflags=$CFLAGS
559 CFLAGS="$CFLAGS -Wl,-z,allextract -Wl,-z,defaultextract"
560 AC_TRY_LINK(,[return 1],ac_cv_c_allextract="yes",ac_cv_c_allextract="no")
561 CFLAGS=$saved_cflags
562 ])
Alexandre Julliard318f4ce2000-01-31 05:02:49 +0000563 if test "$ac_cv_c_allextract" = "yes"
564 then
565 DLL_LINK="-Wl,-z,allextract $DLL_LINK -Wl,-z,defaultextract"
Patrik Stridvalla9ee4a22000-01-30 00:36:50 +0000566 fi
Alexandre Julliard0adad952000-01-26 01:45:58 +0000567 fi
568fi
569
Alexandre Julliard318f4ce2000-01-31 05:02:49 +0000570AC_SUBST(DLL_LINK)
Alexandre Julliarda0b2b1d1997-11-16 17:38:29 +0000571AC_SUBST(DLLFLAGS)
Todd Vierling4b992b01998-12-15 15:26:27 +0000572AC_SUBST(LDSHARED)
Alexandre Julliard0adad952000-01-26 01:45:58 +0000573AC_SUBST(LIBEXT)
Alexandre Julliard7e6ae4b1996-12-08 19:25:27 +0000574
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000575dnl **** Check for reentrant libc ****
576dnl
577dnl For cross-compiling we blindly assume that libc is reentrant. This is
578dnl ok since non-reentrant libc is quite rare (mostly old libc5 versions).
579
Ulrich Weigand715a55e1999-04-18 13:19:56 +0000580wine_cv_libc_reentrant=no
Marcus Meissnerc2606381999-04-11 15:20:29 +0000581dnl
582dnl Linux style errno location
583dnl
Ulrich Weigand715a55e1999-04-18 13:19:56 +0000584AC_CACHE_CHECK("for reentrant libc: __errno_location", wine_cv_libc_r__errno_location,
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000585 [AC_TRY_RUN([int myerrno = 0;
586char buf[256];
587int *__errno_location(){return &myerrno;}
588main(){connect(0,buf,255); exit(!myerrno);}],
Ulrich Weigand715a55e1999-04-18 13:19:56 +0000589 wine_cv_libc_r__errno_location=yes, wine_cv_libc_r__errno_location=no,
590 wine_cv_libc_r__errno_location=yes )
591])
592if test "$wine_cv_libc_r__errno_location" = "yes"
593then
594 AC_DEFINE(HAVE__ERRNO_LOCATION)
595 wine_cv_libc_reentrant=__errno_location
596fi
Marcus Meissnerc2606381999-04-11 15:20:29 +0000597dnl
598dnl FreeBSD style errno location
599dnl
Ulrich Weigand715a55e1999-04-18 13:19:56 +0000600AC_CACHE_CHECK("for reentrant libc: __error", wine_cv_libc_r__error,
601 [AC_TRY_RUN([int myerrno = 0;
Marcus Meissnerc2606381999-04-11 15:20:29 +0000602char buf[256];
603int *__error(){return &myerrno;}
604main(){connect(0,buf,255); exit(!myerrno);}],
Ulrich Weigand715a55e1999-04-18 13:19:56 +0000605 wine_cv_libc_r__error=yes, wine_cv_libc_r__error=no,
606 wine_cv_libc_r__error=yes )
Marcus Meissnerc2606381999-04-11 15:20:29 +0000607])
Ulrich Weigand715a55e1999-04-18 13:19:56 +0000608if test "$wine_cv_libc_r__error" = "yes"
609then
610 AC_DEFINE(HAVE__ERROR)
611 wine_cv_libc_reentrant=__error
612fi
613dnl
614dnl Solaris style errno location
615dnl
616AC_CACHE_CHECK("for reentrant libc: ___errno", wine_cv_libc_r___errno,
617 [AC_TRY_RUN([int myerrno = 0;
618char buf[256];
619int *___errno(){return &myerrno;}
620main(){connect(0,buf,255); exit(!myerrno);}],
621 wine_cv_libc_r___errno=yes, wine_cv_libc_r___errno=no,
622 wine_cv_libc_r___errno=yes )
623])
624if test "$wine_cv_libc_r___errno" = "yes"
625then
626 AC_DEFINE(HAVE___ERRNO)
627 wine_cv_libc_reentrant=___errno
628fi
Ron Recorde977d6c1999-09-05 12:32:05 +0000629dnl
630dnl UnixWare style errno location
631dnl
632AC_CACHE_CHECK("for reentrant libc: __thr_errno", wine_cv_libc_r__thr_errno,
633 [AC_TRY_RUN([int myerrno = 0;
634char buf[256];
635int *__thr_errno(){return &myerrno;}
636main(){connect(0,buf,255); exit(!myerrno);}],
637 wine_cv_libc_r__thr_errno=yes, wine_cv_libc_r__thr_errno=no,
638 wine_cv_libc_r__thr_errno=yes )
639])
640if test "$wine_cv_libc_r__thr_errno" = "yes"
641then
642 AC_DEFINE(HAVE__THR_ERRNO)
643 wine_cv_libc_reentrant=__thr_errno
644fi
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000645if test "$wine_cv_libc_reentrant" = "no"
646then
647 AC_DEFINE(NO_REENTRANT_LIBC)
648fi
649
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000650dnl **** Check for reentrant X libraries ****
651dnl
652dnl This may fail to determine whether X libraries are reentrant if
653dnl AC_PATH_XTRA does not set x_libraries. In this case manual configuration
654dnl is possible with the --without-reentrant-x option.
655
Ulrich Weigand715a55e1999-04-18 13:19:56 +0000656if test "$have_x" = "yes" -a "$wine_cv_libc_reentrant" != "no"
Patrik Stridvall24110281999-02-04 10:09:54 +0000657then
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000658AC_CACHE_CHECK( "for reentrant X libraries", wine_cv_x_reentrant,
Ulrich Weigand715a55e1999-04-18 13:19:56 +0000659 [ if test "x$with_reentrant_x" = "xno"
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000660 then
661 wine_cv_x_reentrant=no
662 else
Ulrich Weigand715a55e1999-04-18 13:19:56 +0000663 libX11_check=none
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000664 for dir in "$x_libraries" /usr/lib /usr/local/lib /lib; do
Alexandre Julliard829fe321998-07-26 14:27:39 +0000665 if test -r $dir/libX11.so; then
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000666 libX11_check="-D $dir/libX11.so"
667 break 1
668 fi
Alexandre Julliard829fe321998-07-26 14:27:39 +0000669 if test -r $dir/libX11.a; then
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000670 libX11_check="$dir/libX11.a"
671 break 1
672 fi
673 done
674 if test "$libX11_check" != "none"; then
Ulrich Weigand715a55e1999-04-18 13:19:56 +0000675 if nm $libX11_check | grep $wine_cv_libc_reentrant >/dev/null 2>&1
Alexandre Julliard829fe321998-07-26 14:27:39 +0000676 then
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000677 wine_cv_x_reentrant=yes
678 else
679 wine_cv_x_reentrant=no
680 fi
681 else
682 wine_cv_x_reentrant=unknown
683 fi
684 fi ] )
Patrik Stridvall24110281999-02-04 10:09:54 +0000685else
686 wine_cv_x_reentrant=no
687fi
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000688if test "$wine_cv_x_reentrant" = "no"
689then
690 AC_DEFINE(NO_REENTRANT_X11)
691fi
692
Francois Gougetae5e93e1999-11-13 23:02:06 +0000693dnl **** Check for endianness ****
694
695AC_C_BIGENDIAN
696
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000697dnl **** Check for functions ****
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000698
Patrik Stridvall1bb94031999-05-08 15:47:44 +0000699AC_FUNC_ALLOCA()
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000700AC_CHECK_FUNCS(\
Eric Pouechf61d7e02000-04-29 16:44:19 +0000701 __libc_fork \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000702 _lwp_create \
703 clone \
Patrik Stridvallb9010211999-11-13 22:23:35 +0000704 getnetbyaddr \
705 getnetbyname \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000706 getpagesize \
Patrik Stridvallb9010211999-11-13 22:23:35 +0000707 getprotobyname \
708 getprotobynumber \
709 getservbyport \
710 getsockopt \
711 inet_network \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000712 memmove \
713 rfork \
Patrik Stridvallb9010211999-11-13 22:23:35 +0000714 select \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000715 sendmsg \
Patrik Stridvallb9010211999-11-13 22:23:35 +0000716 settimeofday \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000717 sigaltstack \
Patrik Stridvallb9010211999-11-13 22:23:35 +0000718 statfs \
Alexandre Julliard3b96efc1999-09-04 14:36:02 +0000719 strcasecmp \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000720 strerror \
Alexandre Julliard3b96efc1999-09-04 14:36:02 +0000721 strncasecmp \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000722 tcgetattr \
723 timegm \
724 usleep \
725 vfscanf \
726 wait4 \
727 waitpid \
728)
729
730dnl **** Check for header files ****
731
732AC_CHECK_HEADERS(\
Patrik Stridvall96336321999-10-24 22:13:47 +0000733 a.out.h \
734 a_out.h \
735 arpa/inet.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000736 arpa/nameser.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000737 elf.h \
738 float.h \
739 libio.h \
Hidenori Takeshima01f78aa2000-07-09 12:19:09 +0000740 libutil.h \
Patrik Stridvall96336321999-10-24 22:13:47 +0000741 link.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000742 linux/cdrom.h \
Marcus Meissner028e9a11999-08-04 15:07:56 +0000743 linux/joystick.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000744 linux/ucdrom.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000745 net/if.h \
746 netinet/in.h \
Patrik Stridvall96336321999-10-24 22:13:47 +0000747 netinet/tcp.h \
Marcus Meissner2d7be871999-12-05 23:06:40 +0000748 pty.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000749 resolv.h \
Patrik Stridvall96336321999-10-24 22:13:47 +0000750 sched.h \
751 socket.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000752 strings.h \
753 sys/cdio.h \
Howard Abrams13277481999-07-10 13:16:29 +0000754 sys/errno.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000755 sys/file.h \
756 sys/filio.h \
Patrik Stridvall96336321999-10-24 22:13:47 +0000757 sys/ipc.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000758 sys/lwp.h \
Howard Abrams13277481999-07-10 13:16:29 +0000759 sys/mman.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000760 sys/modem.h \
761 sys/mount.h \
Patrik Stridvall96336321999-10-24 22:13:47 +0000762 sys/msg.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000763 sys/param.h \
Ulrich Weigand8a1bdb32000-01-30 22:22:22 +0000764 sys/reg.h \
Howard Abrams13277481999-07-10 13:16:29 +0000765 sys/signal.h \
Patrik Stridvall96336321999-10-24 22:13:47 +0000766 sys/shm.h \
767 sys/socket.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000768 sys/sockio.h \
769 sys/statfs.h \
770 sys/strtio.h \
771 sys/syscall.h \
Patrik Stridvall96336321999-10-24 22:13:47 +0000772 sys/wait.h \
773 sys/v86.h \
774 sys/v86intr.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000775 sys/vfs.h \
Patrik Stridvall96336321999-10-24 22:13:47 +0000776 sys/vm86.h \
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000777 syscall.h \
Alexandre Julliardc97bb4c2000-08-11 20:53:40 +0000778 ucontext.h
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000779)
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000780AC_HEADER_STAT()
Alexandre Julliard2487cce1999-04-18 14:43:16 +0000781
782dnl **** Check for types ****
783
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000784AC_C_CONST()
Marcus Meissner1a8bbd71999-04-26 14:58:58 +0000785AC_C_INLINE()
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000786AC_TYPE_SIZE_T()
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000787AC_CHECK_SIZEOF(long long,0)
788
Rein Klazesff7a61f2000-09-24 19:41:57 +0000789
790AC_CACHE_CHECK("whether we can use re-entrant gethostbyname_r Linux style",
791 wine_cv_linux_gethostbyname_r_6,
792 AC_TRY_COMPILE([
793#include <netdb.h>
794 ], [
795 char *name=NULL;
796 struct hostent he;
797 struct hostent *result;
798 char *buf=NULL;
799 int bufsize=0;
800 int res,errnr;
801 char *addr=NULL;
802 int addrlen=0;
803 int addrtype=0;
804 res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
805 res=gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
806 ],
807 wine_cv_linux_gethostbyname_r_6=yes,
808 wine_cv_linux_gethostbyname_r_6=no
809 )
810 )
811 if test "$wine_cv_linux_gethostbyname_r_6" = "yes"
812 then
813 AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6)
814 fi
815
Marcus Meissner028e9a11999-08-04 15:07:56 +0000816if test "$ac_cv_header_linux_joystick_h" = "yes"
817then
818 AC_CACHE_CHECK("whether linux/joystick.h uses the Linux 2.2+ API",
819 wine_cv_linux_joystick_22_api,
820 AC_TRY_COMPILE([
821 #include <sys/ioctl.h>
822 #include <linux/joystick.h>
823
824 struct js_event blub;
Marcus Meissner605a9c31999-11-04 02:04:01 +0000825 #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
826 #error "no 2.2 header"
827 #endif
Marcus Meissner028e9a11999-08-04 15:07:56 +0000828 ],/*empty*/,
829 wine_cv_linux_joystick_22_api=yes,
830 wine_cv_linux_joystick_22_api=no,
831 wine_cv_linux_joystick_22_api=no
832 )
833 )
Rein Klazes87d224a2000-04-24 17:33:49 +0000834 if test "$wine_cv_linux_joystick_22_api" = "yes"
Marcus Meissner028e9a11999-08-04 15:07:56 +0000835 then
836 AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API)
837 fi
838fi
839
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000840dnl **** statfs checks ****
841
842if test "$ac_cv_header_sys_vfs_h" = "yes"
843then
844 AC_CACHE_CHECK( "whether sys/vfs.h defines statfs",
845 wine_cv_sys_vfs_has_statfs,
846 AC_TRY_COMPILE([
847 #include <sys/types.h>
848 #ifdef HAVE_SYS_PARAM_H
849 # include <sys/param.h>
850 #endif
851 #include <sys/vfs.h>
852 ],[
853 struct statfs stfs;
854
855 memset(&stfs,0,sizeof(stfs));
856 ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no
857 )
858 )
859 if test "$wine_cv_sys_vfs_has_statfs" = "yes"
860 then
861 AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS)
862 fi
863fi
864
865if test "$ac_cv_header_sys_statfs_h" = "yes"
866then
867 AC_CACHE_CHECK( "whether sys/statfs.h defines statfs",
868 wine_cv_sys_statfs_has_statfs,
869 AC_TRY_COMPILE([
870 #include <sys/types.h>
871 #ifdef HAVE_SYS_PARAM_H
872 # include <sys/param.h>
873 #endif
874 #include <sys/statfs.h>
875 ],[
876 struct statfs stfs;
877 ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no
878 )
879 )
880 if test "$wine_cv_sys_statfs_has_statfs" = "yes"
881 then
882 AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS)
883 fi
884fi
885
886if test "$ac_cv_header_sys_mount_h" = "yes"
887then
888 AC_CACHE_CHECK( "whether sys/mount.h defines statfs",
889 wine_cv_sys_mount_has_statfs,
890 AC_TRY_COMPILE([
891 #include <sys/types.h>
892 #ifdef HAVE_SYS_PARAM_H
893 # include <sys/param.h>
894 #endif
895 #include <sys/mount.h>
896 ],[
897 struct statfs stfs;
898 ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no
899 )
900 )
901 if test "$wine_cv_sys_mount_has_statfs" = "yes"
902 then
903 AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT)
904 fi
905fi
906
907dnl **** FIXME: what about mixed cases, where we need two of them? ***
908
909AC_CACHE_CHECK( "for statfs.f_bfree", wine_cv_statfs_bfree,
910 [ if test "x$statfs_bfree" = "xno"
911 then
912 wine_cv_statfs_bfree=no
913 else
914 AC_TRY_COMPILE([
915 #include <sys/types.h>
916 #ifdef HAVE_SYS_PARAM_H
917 # include <sys/param.h>
918 #endif
919 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
920 # include <sys/mount.h>
921 #else
922 # ifdef STATFS_DEFINED_BY_SYS_VFS
923 # include <sys/vfs.h>
924 # else
925 # ifdef STATFS_DEFINED_BY_SYS_STATFS
926 # include <sys/statfs.h>
927 # endif
928 # endif
929 #endif
930 ],[
931 struct statfs stfs;
932
933 stfs.f_bfree++;
934 ],wine_cv_statfs_bfree=yes,wine_cv_statfs_bfree=no
935 )
936 fi ] )
937if test "$wine_cv_statfs_bfree" = "yes"
938then
939 AC_DEFINE(STATFS_HAS_BFREE)
940fi
941
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000942AC_CACHE_CHECK( "for statfs.f_bavail", wine_cv_statfs_bavail,
943 [ if test "x$statfs_bavail" = "xno"
944 then
945 wine_cv_statfs_bavail=no
946 else
947 AC_TRY_COMPILE([
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000948 #include <sys/types.h>
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000949 #ifdef HAVE_SYS_PARAM_H
950 # include <sys/param.h>
951 #endif
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000952 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000953 # include <sys/mount.h>
Alexandre Julliarddadf78f1998-05-17 17:13:43 +0000954 #else
955 # ifdef STATFS_DEFINED_BY_SYS_VFS
956 # include <sys/vfs.h>
957 # else
958 # ifdef STATFS_DEFINED_BY_SYS_STATFS
959 # include <sys/statfs.h>
960 # endif
961 # endif
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000962 #endif
963 ],[
964 struct statfs stfs;
965
966 stfs.f_bavail++;
967 ],wine_cv_statfs_bavail=yes,wine_cv_statfs_bavail=no
968 )
969 fi ] )
970if test "$wine_cv_statfs_bavail" = "yes"
971then
972 AC_DEFINE(STATFS_HAS_BAVAIL)
973fi
974
Alexandre Julliard829fe321998-07-26 14:27:39 +0000975dnl *** check for file descriptor passing with msg_accrights
976
977AC_CACHE_CHECK("for msg_accrights in struct msghdr", ac_cv_c_msg_accrights,
978 AC_TRY_COMPILE([#include <sys/types.h>
979#include <sys/socket.h>],[struct msghdr hdr; hdr.msg_accrights=0],
980 ac_cv_c_msg_accrights="yes", ac_cv_c_msg_accrights="no"))
981if test "$ac_cv_c_msg_accrights" = "yes"
982then
983 AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS)
984fi
985
Juergen Lock2d33ab92000-02-13 16:03:29 +0000986dnl *** Check for the sun_len member in struct sockaddr_un
987
988AC_CACHE_CHECK("for sun_len in struct sockaddr_un", ac_cv_c_sun_len,
989 AC_TRY_COMPILE([#include <sys/types.h>
990#include <sys/socket.h>
991#include <sys/un.h>], [static struct sockaddr_un addr; addr.sun_len = 1],
992 ac_cv_c_sun_len="yes", ac_cv_c_sun_len="no"))
993if test "$ac_cv_c_sun_len" = "yes"
994then
995 AC_DEFINE(HAVE_SOCKADDR_SUN_LEN)
996fi
997
Alexandre Julliard51d46ba1999-05-08 16:05:27 +0000998dnl *** check for the need to define __i386__
999
1000AC_CACHE_CHECK("whether we need to define __i386__",ac_cv_cpp_def_i386,
1001 AC_EGREP_CPP(yes,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
1002yes
1003#endif],
1004 ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no"))
1005if test "$ac_cv_cpp_def_i386" = "yes"
1006then
1007 CFLAGS="$CFLAGS -D__i386__"
Patrik Stridvalla9be64e1999-07-31 17:39:44 +00001008 LINTFLAGS="$LINTFLAGS -D__i386__"
Alexandre Julliard51d46ba1999-05-08 16:05:27 +00001009fi
1010
Marcus Meissnera7f5cb51999-04-16 08:47:41 +00001011dnl $GCC is set by autoconf
1012GCC_NO_BUILTIN=""
1013if test "$GCC" = "yes"
1014then
1015 GCC_NO_BUILTIN="-fno-builtin"
1016fi
1017AC_SUBST(GCC_NO_BUILTIN)
1018
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00001019dnl **** Generate output files ****
Alexandre Julliarde2991ea1995-07-29 13:09:43 +00001020
Alexandre Julliard87a2f8d2000-04-09 18:20:25 +00001021AC_OUTPUT_COMMANDS([
1022extra_subdirs="\
1023dlls/ddraw/d3ddevice \
1024dlls/ddraw/dclipper \
1025dlls/ddraw/ddraw \
1026dlls/ddraw/direct3d \
1027dlls/ddraw/dpalette \
1028dlls/ddraw/dsurface \
Alexandre Julliardd1d09052000-07-30 13:39:52 +00001029dlls/kernel/messages \
Alexandre Julliard2affae52000-10-23 21:32:05 +00001030dlls/user/resources \
Alexandre Julliard87a2f8d2000-04-09 18:20:25 +00001031"
1032for i in $extra_subdirs; do [ -d $i ] || (echo "creating $i" && mkdir $i); done ])
1033
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00001034MAKE_RULES=Make.rules
Alexandre Julliardff8331e1995-09-18 11:19:54 +00001035AC_SUBST_FILE(MAKE_RULES)
1036
Alexandre Julliardd0edc5f2000-03-04 22:31:27 +00001037MAKE_DLL_RULES=dlls/Makedll.rules
1038AC_SUBST_FILE(MAKE_DLL_RULES)
1039
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00001040AC_OUTPUT([
1041Make.rules
1042Makefile
Joseph Pranevich791cd6a1998-12-02 19:58:08 +00001043console/Makefile
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00001044controls/Makefile
1045debugger/Makefile
Alexandre Julliardd0edc5f2000-03-04 22:31:27 +00001046dlls/Makedll.rules
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001047dlls/Makefile
Juergen Schmiedf7b0de31999-01-03 12:48:29 +00001048dlls/advapi32/Makefile
Marcus Meissnerb3d1a221999-03-13 18:07:44 +00001049dlls/avifil32/Makefile
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001050dlls/comctl32/Makefile
Klaas van Gendc9127491999-02-28 20:05:11 +00001051dlls/commdlg/Makefile
Ulrich Weigand6c6da671999-08-04 09:49:49 +00001052dlls/crtdll/Makefile
1053dlls/dciman32/Makefile
Alexandre Julliardddce6522000-03-17 16:58:10 +00001054dlls/ddraw/Makefile
1055dlls/dinput/Makefile
Alexandre Julliardc6075322000-07-09 11:19:35 +00001056dlls/dplay/Makefile
Peter Hunnisett22b861c1999-09-28 16:35:32 +00001057dlls/dplayx/Makefile
Eric Pouech68944c21999-10-24 18:42:42 +00001058dlls/dsound/Makefile
Alexandre Julliard1dac57f2000-03-19 12:08:09 +00001059dlls/gdi/Makefile
Francois Gougetedf3e431999-11-07 21:22:17 +00001060dlls/icmp/Makefile
Patrik Stridvall8295c861998-10-11 17:09:05 +00001061dlls/imagehlp/Makefile
Ulrich Weigand6c6da671999-08-04 09:49:49 +00001062dlls/imm32/Makefile
Dimitrie O. Paun36b5b6b2000-06-03 00:07:44 +00001063dlls/kernel/Makefile
Ulrich Weigand6c6da671999-08-04 09:49:49 +00001064dlls/lzexpand/Makefile
Ulrich Weigandbb1984e1999-08-07 14:32:33 +00001065dlls/mpr/Makefile
Patrik Stridvall8295c861998-10-11 17:09:05 +00001066dlls/msacm/Makefile
Ulrich Weigand6c6da671999-08-04 09:49:49 +00001067dlls/msnet32/Makefile
1068dlls/msvideo/Makefile
Marcus Meissner51505b11998-11-01 14:00:21 +00001069dlls/ntdll/Makefile
Alexandre Julliard8551f8c1999-12-11 23:56:46 +00001070dlls/odbc32/Makefile
Ulrich Weigand2a722f41999-09-19 18:36:53 +00001071dlls/ole32/Makefile
1072dlls/oleaut32/Makefile
1073dlls/olecli/Makefile
1074dlls/oledlg/Makefile
Sean Langley58c71d42000-02-07 16:26:56 +00001075dlls/olepro32/Makefile
Ulrich Weigand2a722f41999-09-19 18:36:53 +00001076dlls/olesvr/Makefile
Lionel Ulmerbedf40b2000-05-12 20:18:14 +00001077dlls/opengl32/Makefile
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001078dlls/psapi/Makefile
Marcus Meissner30ef8771998-12-11 13:26:26 +00001079dlls/rasapi32/Makefile
Hidenori Takeshimae75f9fb2000-05-03 18:12:19 +00001080dlls/richedit/Makefile
Huw D M Davies10b1b232000-07-15 19:53:50 +00001081dlls/rpcrt4/Makefile
Mike McCormackdc2461e2000-07-15 21:35:55 +00001082dlls/serialui/Makefile
Francois Jacquesdf5e5792000-07-08 18:27:03 +00001083dlls/setupapi/Makefile
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001084dlls/shell32/Makefile
Alexandre Julliardc6075322000-07-09 11:19:35 +00001085dlls/shfolder/Makefile
1086dlls/shlwapi/Makefile
Andreas Mohr5aa96c11999-03-14 12:34:25 +00001087dlls/tapi32/Makefile
Alexandre Julliard1dac57f2000-03-19 12:08:09 +00001088dlls/ttydrv/Makefile
Alexandre Julliard819fa8c2000-04-11 20:07:00 +00001089dlls/urlmon/Makefile
Alexandre Julliard1dac57f2000-03-19 12:08:09 +00001090dlls/user/Makefile
Ulrich Weigandd43a46a1999-01-31 10:11:04 +00001091dlls/version/Makefile
Ulrich Weigand6c6da671999-08-04 09:49:49 +00001092dlls/win32s/Makefile
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001093dlls/winaspi/Makefile
Dimitrie O. Paun84bde6a2000-05-30 20:27:23 +00001094dlls/wineps/Makefile
Alexandre Julliard819fa8c2000-04-11 20:07:00 +00001095dlls/wininet/Makefile
Eric Pouech68944c21999-10-24 18:42:42 +00001096dlls/winmm/Makefile
Eric Pouech2a3b0a12000-02-26 13:14:04 +00001097dlls/winmm/joystick/Makefile
Eric Pouech68944c21999-10-24 18:42:42 +00001098dlls/winmm/mcianim/Makefile
1099dlls/winmm/mciavi/Makefile
1100dlls/winmm/mcicda/Makefile
1101dlls/winmm/mciseq/Makefile
1102dlls/winmm/mciwave/Makefile
Eric Pouechabe72271999-10-31 02:23:49 +00001103dlls/winmm/midimap/Makefile
1104dlls/winmm/wavemap/Makefile
Eric Pouech68944c21999-10-24 18:42:42 +00001105dlls/winmm/wineoss/Makefile
Alexandre Julliardde078692000-01-23 22:07:15 +00001106dlls/winsock/Makefile
Huw D M Daviese39b6761999-05-17 16:20:51 +00001107dlls/winspool/Makefile
Alexandre Julliardc6075322000-07-09 11:19:35 +00001108dlls/wow32/Makefile
1109dlls/wsock32/Makefile
Alexandre Julliard1dac57f2000-03-19 12:08:09 +00001110dlls/x11drv/Makefile
Alexandre Julliardd37eb361997-07-20 16:23:21 +00001111documentation/Makefile
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +00001112documentation/wine.conf.man
Marcus Meissner5a70c971999-06-05 09:00:21 +00001113documentation/wine.man
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +00001114files/Makefile
Alexandre Julliard0e270f41996-08-24 18:26:35 +00001115graphics/Makefile
Huw D M Davies3a24f3f1999-05-02 10:15:16 +00001116graphics/enhmetafiledrv/Makefile
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001117graphics/metafiledrv/Makefile
Alexandre Julliard0e270f41996-08-24 18:26:35 +00001118graphics/win16drv/Makefile
1119graphics/x11drv/Makefile
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00001120if1632/Makefile
James Juranc70dc831999-02-13 12:18:33 +00001121include/Makefile
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00001122library/Makefile
1123libtest/Makefile
1124loader/Makefile
Alexandre Julliard767e6f61998-08-09 12:47:43 +00001125loader/dos/Makefile
Andreas Mohr4eefb962000-08-01 00:27:35 +00001126loader/ne/Makefile
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00001127memory/Makefile
1128misc/Makefile
1129miscemu/Makefile
Alexandre Julliard9ea19e51997-01-01 17:29:55 +00001130msdos/Makefile
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00001131objects/Makefile
Alexandre Julliarde658d821997-11-30 17:45:40 +00001132ole/Makefile
Alexandre Julliard02ed4c21996-03-02 19:34:10 +00001133programs/Makefile
Andreas Mohr4eefb962000-08-01 00:27:35 +00001134programs/avitools/Makefile
Alexandre Julliarda11d7b11998-03-01 20:05:02 +00001135programs/clock/Makefile
Eric Williams30008a01999-02-05 17:40:47 +00001136programs/cmdlgtst/Makefile
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001137programs/control/Makefile
Alexandre Julliard44ed71f1997-12-21 19:17:50 +00001138programs/notepad/Makefile
Andreas Mohr4eefb962000-08-01 00:27:35 +00001139programs/osversioncheck/Makefile
Alexandre Julliard02ed4c21996-03-02 19:34:10 +00001140programs/progman/Makefile
Sylvain St.Germain1bb0e661999-03-14 14:00:22 +00001141programs/regapi/Makefile
Andreas Mohr4eefb962000-08-01 00:27:35 +00001142programs/regtest/Makefile
1143programs/uninstaller/Makefile
Alexandre Julliarda11d7b11998-03-01 20:05:02 +00001144programs/view/Makefile
Dave Pickles74f440e1999-06-06 15:24:04 +00001145programs/wcmd/Makefile
Joshua Thielena3f23802000-03-15 19:06:39 +00001146programs/winemine/Makefile
Alexandre Julliard1285c2f1996-05-06 16:06:24 +00001147programs/winhelp/Makefile
Alexandre Julliarde658d821997-11-30 17:45:40 +00001148programs/winver/Makefile
Alexandre Julliard44ed71f1997-12-21 19:17:50 +00001149relay32/Makefile
Alexandre Julliard9ea19e51997-01-01 17:29:55 +00001150scheduler/Makefile
Alexandre Julliard642d3131998-07-12 19:29:36 +00001151server/Makefile
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00001152tools/Makefile
John R. Sheetse61d33b2000-03-26 20:25:23 +00001153tools/cvdump/Makefile
Alexandre Julliarde482eeb2000-06-23 20:15:35 +00001154tools/winebuild/Makefile
Bertho Stultiens30855912000-06-13 04:34:41 +00001155tools/wmc/Makefile
Andreas Mohr4eefb962000-08-01 00:27:35 +00001156tools/wrc/Makefile
Alexandre Julliard60ce85c1998-02-01 18:33:27 +00001157tsx11/Makefile
Alexandre Julliardfb270dd2000-06-09 05:27:21 +00001158unicode/Makefile
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00001159win32/Makefile
Patrik Stridvallea584721998-11-01 16:22:07 +00001160windows/Makefile
1161windows/x11drv/Makefile ])
Alexandre Julliarde2991ea1995-07-29 13:09:43 +00001162
Ove Kaaven8b4431f1999-01-23 13:59:11 +00001163if test "$have_x" = "no"
1164then
1165 echo
1166 echo "*** Warning: X development files not found. Wine will be built without"
1167 echo "*** X support, which currently does not work, and would probably not be"
1168 echo "*** what you want anyway. You will need to install devel packages of"
1169 echo "*** Xlib/Xfree86 and Xpm at the very least."
Ove Kaaven1eb593c1999-02-14 09:34:46 +00001170elif test "$ac_cv_lib_Xpm_XpmCreatePixmapFromData" = "no"
1171then
1172 echo
1173 echo "*** Warning: Xpm development files not found. Wine will be built without"
1174 echo "*** Xpm support, which currently does not work. You will need to install"
1175 echo "*** devel packages of Xpm."
Ove Kaaven8b4431f1999-01-23 13:59:11 +00001176fi
1177
Alexandre Julliard638f1691999-01-17 16:32:32 +00001178if test "$ac_cv_lib_ncurses_resizeterm" = "no" -a "$ac_cv_lib_ncurses_waddch" = "yes"
1179then
1180 echo
1181 echo "*** Warning: resizeterm not found in ncurses. Wine will be built without"
1182 echo "*** terminal resize support. Consider upgrading ncurses."
Alexandre Julliard638f1691999-01-17 16:32:32 +00001183fi
1184
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001185if test "$wine_cv_libc_reentrant" = "no"
1186then
1187 echo
1188 echo "*** Warning: non-reentrant libc detected. Wine will be build without"
1189 echo "*** thread support. Consider upgrading libc to a more recent"
1190 echo "*** reentrant version of libc."
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00001191fi
1192
Lionel Ulmerbedf40b2000-05-12 20:18:14 +00001193if test "$wine_cv_opengl_version_OK" = "no"
Lionel Ulmer5c085701999-02-28 19:48:53 +00001194then
1195 echo
1196 echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
Lionel Ulmer5eee0bf2000-03-24 21:20:33 +00001197 echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)."
1198fi
1199
Lionel Ulmerbedf40b2000-05-12 20:18:14 +00001200if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "normal"
Lionel Ulmer5eee0bf2000-03-24 21:20:33 +00001201then
1202 echo
1203 echo "*** Warning: the OpenGL version you have installed relies on libpthread for"
Lionel Ulmerfbc15b12000-04-29 14:23:22 +00001204 echo "*** thread-safety. To prevent crashes, OpenGL support has been removed."
1205 echo "*** A fix for glibc 2.1.3 that seem to work is included in this version of Wine,"
1206 echo "*** start configure with '--enable-opengl' to force OpenGL support."
Lionel Ulmer5c085701999-02-28 19:48:53 +00001207fi
1208
Lionel Ulmerbedf40b2000-05-12 20:18:14 +00001209if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "yes"
Lionel Ulmerfbc15b12000-04-29 14:23:22 +00001210then
1211 echo
1212 echo "*** Warning: you explicitely linked in a thread-safe OpenGL version. If you"
1213 echo "*** experience unusual crashes on DirectDraw games, try first to disable OpenGL"
1214 echo "*** support before reporting bugs."
1215fi
1216
1217
Alexandre Julliarde2991ea1995-07-29 13:09:43 +00001218echo
Steffen Moeller1511bae1999-02-17 15:27:03 +00001219echo "Configure finished. Do 'make depend && make' to compile Wine."
Alexandre Julliarde2991ea1995-07-29 13:09:43 +00001220echo
1221
1222dnl Local Variables:
1223dnl comment-start: "dnl "
1224dnl comment-end: ""
1225dnl comment-start-skip: "\\bdnl\\b\\s *"
Alexandre Julliardd7d4fdf1995-12-26 15:05:24 +00001226dnl compile-command: "autoconf"
Alexandre Julliarde2991ea1995-07-29 13:09:43 +00001227dnl End: