1 dnl Process this file with autoconf to produce a configure script.
2 dnl Author: Michael Patra <micky@marie.physik.tu-berlin.de>
3 dnl <patra@itp1.physik.tu-berlin.de>
4 AC_REVISION([configure.in 1.00])
5 AC_INIT(controls/edit.c)
6 AC_CONFIG_HEADER(include/config.h)
7 AC_CONFIG_AUX_DIR(tools)
9 # We want these before the checks, so the checks can modify their values.
11 test -z "$PROGEXT" && PROGEXT="" AC_SUBST(PROGEXT)
13 dnl **** Command-line arguments ****
17 LIBEXT=so # library type .so or .a
18 TRACE_MSGS=yes # the TRACE() macro
19 DEBUG_MSGS=yes # the TRACE(), WARN(), and FIXME() macros.
23 AC_ARG_ENABLE(emulator,
24 [ --disable-emulator build only the Wine library, not the emulator],
25 [if test "$enableval" = "no"; then EMU_TARGET=""; fi])
28 [ --disable-dll build static libraries instead of DLLs],
29 [if test "$enableval" = "no"; then LIBEXT="a"; fi])
32 [ --disable-debug compile out all debugging messages],
33 [if test "$enableval" = "no"; then DEBUG_MSGS="no"; fi])
36 [ --enable-opengl force usage of OpenGL even if the latter is thread-safe],
37 [if test "$enableval" = "no"; then OPENGL="no"; elif test "$enableval" = "yes"; then OPENGL="yes"; fi])
40 [ --disable-trace compile out TRACE messages],
41 [if test "$enableval" = "no"; then TRACE_MSGS="no"; fi])
44 [ --without-curses do not use curses],
45 [if test "$withval" = "no"; then CURSES="no"; fi])
47 AC_ARG_WITH(reentrant-x,
48 [ --without-reentrant-x compile for use with non-reentrant X libraries])
53 if test "$DEBUG_MSGS" = "no"
55 AC_DEFINE(NO_DEBUG_MSGS)
56 AC_DEFINE(NO_TRACE_MSGS)
58 if test "$TRACE_MSGS" = "no"
60 AC_DEFINE(NO_TRACE_MSGS)
64 dnl **** Check for some programs ****
75 AC_CHECK_PROG(C2MAN,c2man,c2man,true)
76 AC_PATH_PROG(LDCONFIG, ldconfig, true, /sbin:/usr/sbin:$PATH)
79 AC_CHECK_PROGS(LINT, lclint lint)
80 if test "$LINT" = "lint"
82 LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4"
83 dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64'
88 dnl **** Check for some libraries ****
90 dnl Check for -lm for BeOS
92 dnl Check for -li386 for NetBSD and OpenBSD
93 AC_CHECK_LIB(i386,i386_set_ldt)
94 dnl Check for -lossaudio for NetBSD
95 AC_CHECK_LIB(ossaudio,_oss_ioctl)
96 dnl Check for -lw for Solaris
97 AC_CHECK_LIB(w,iswalnum)
98 dnl Check for -lnsl for Solaris
99 AC_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))
100 dnl Check for -lsocket for Solaris
101 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
102 dnl Check for -lxpg4 for FreeBSD
103 AC_CHECK_LIB(xpg4,setrunelocale)
104 dnl Check for -lmmap for OS/2
105 AC_CHECK_LIB(mmap,mmap)
106 dnl Check for openpty
107 AC_CHECK_FUNCS(openpty,,
108 AC_CHECK_LIB(util,openpty,
109 AC_DEFINE(HAVE_OPENPTY)
113 AC_CHECK_HEADERS(dlfcn.h,
114 AC_CHECK_FUNCS(dlopen,
115 AC_DEFINE(HAVE_DL_API),
116 AC_CHECK_LIB(dl,dlopen,
117 AC_DEFINE(HAVE_DL_API)
129 AC_SUBST(OPENGLFILES)
137 if test "$have_x" = "yes"
140 ac_save_CPPFLAGS="$CPPFLAGS"
141 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
144 AC_CHECK_HEADERS(X11/xpm.h)
145 if test "$ac_cv_header_X11_xpm_h" = "yes"
147 AC_CHECK_LIB(Xpm,XpmCreatePixmapFromData,AC_DEFINE(HAVE_LIBXXPM) X_PRE_LIBS="$X_PRE_LIBS -lXpm",,$X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
149 echo "When compiling with X support, you need the Xpm library, or"
150 echo "WINE will not work. This Xpm library is within the following RPM,"
151 echo "which you need to install:"
152 echo "Redhat : xpm, xpm-devel"
153 echo "Caldera OpenLinux : xpm, xpm-devel, xpm-devel-static"
155 echo "Debian/Corel Linux: xpm4g, xpm4g-dev"
157 echo "Or get the sources from ftp.x.org and all its mirror sites from "
158 echo "the directory /contrib/libraries."
164 dnl Check for X Shm extension
165 AC_CHECK_HEADERS(X11/Xlib.h X11/extensions/XShm.h)
166 if test "$ac_cv_header_X11_Xlib_h" = "yes" -a "$ac_cv_header_X11_extensions_XShm_h" = "yes"
168 AC_CHECK_LIB(Xext,XShmQueryExtension,AC_DEFINE(HAVE_LIBXXSHM),,$X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
170 dnl Check for XFree86 DGA / DGA 2.0 extension
171 AC_CHECK_HEADERS(X11/Xlib.h X11/extensions/xf86dga.h)
172 if test "$ac_cv_header_X11_Xlib_h" = "yes" -a "$ac_cv_header_X11_extensions_xf86dga_h" = "yes"
174 AC_CHECK_LIB(Xxf86dga,
176 AC_DEFINE(HAVE_LIBXXF86DGA2)
177 AC_DEFINE(HAVE_LIBXXF86DGA)
178 X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
179 DGA_SRCS='$(DGA_SRCS)'
180 DGA2_SRCS='$(DGA2_SRCS)'
181 ,,$X_LIBS -lXext -lX11 $X_EXTRA_LIBS
183 if test "$ac_cv_lib_Xxf86dga_XDGAQueryExtension" = "no"
185 AC_CHECK_LIB(Xxf86dga,XF86DGAQueryExtension,
186 AC_DEFINE(HAVE_LIBXXF86DGA)
187 X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
188 DGA_SRCS='$(DGA_SRCS)'
189 ,,$X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
193 dnl Check for XFree86 VMODE extension
194 AC_CHECK_HEADERS(X11/Xlib.h X11/extensions/xf86vmode.h)
195 if test "$ac_cv_header_X11_Xlib_h" = "yes" -a "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes"
197 AC_CHECK_LIB(Xxf86vm,XF86VidModeQueryExtension,AC_DEFINE(HAVE_LIBXXF86VM) X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm",,$X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
200 dnl Check for the presence of OpenGL
201 if test $OPENGL = "yes" -o $OPENGL = "normal"
203 AC_CHECK_HEADERS(GL/gl.h GL/glx.h GL/glext.h)
204 if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_glx_h" = "yes" -a "$ac_cv_header_GL_glext_h" = "yes"
206 dnl Check for some problems due to old Mesa versions
207 AC_CACHE_CHECK("for up-to-date OpenGL version", wine_cv_opengl_version_OK,
209 [#include <GL/gl.h>],
210 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
211 [wine_cv_opengl_version_OK="yes"],
212 [wine_cv_opengl_version_OK="no"]
216 dnl Check for the thread-safety of the OpenGL library
217 AC_CACHE_CHECK("for thread-safe OpenGL version",
218 wine_cv_opengl_version_threadsafe,
221 AC_TRY_LINK([],[pthread_getspecific();],
222 [wine_cv_opengl_version_threadsafe="yes"],
223 [wine_cv_opengl_version_threadsafe="no"])
227 if test "$wine_cv_opengl_version_OK" = "yes" -a \( "$wine_cv_opengl_version_threadsafe" = "no" -o $OPENGL = "yes" \)
229 dnl Check for the presense of the library
230 AC_CHECK_LIB(GL,glXCreateContext,
231 X_PRE_LIBS="$X_PRE_LIBS -lGL"
232 MESA_SRCS='$(MESA_SRCS)'
234 $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
236 if test $ac_cv_lib_GL_glXCreateContext = "yes"
238 dnl Check for the Color Table and Paletted Texture extensions
239 AC_CACHE_CHECK("for the OpenGL Color Index extension",dummy,
240 AC_TRY_COMPILE([#include <GL/gl.h>],
241 [GLenum test = GL_COLOR_INDEX8_EXT;],
242 [AC_DEFINE(HAVE_GL_COLOR_TABLE)],))
244 AC_CHECK_LIB(GL,glColorTableEXT,AC_DEFINE(HAVE_GL_PALETTED_TEXTURE),,$X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
245 AC_CHECK_LIB(GL,glXGetProcAddressARB,AC_DEFINE(HAVE_GLX_GETPROCADDRESS),,$X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
247 if test $ac_cv_lib_GL_glXGetProcAddressARB = "yes"
249 AC_DEFINE(HAVE_OPENGL)
250 OPENGLFILES='$(OPENGLFILES)'
257 CPPFLAGS="$ac_save_CPPFLAGS"
266 dnl **** Check which curses lib to use ***
267 if test "$CURSES" = "yes"
269 AC_CHECK_HEADERS(ncurses.h)
270 if test "$ac_cv_header_ncurses_h" = "yes"
272 AC_CHECK_LIB(ncurses,waddch)
274 if test "$ac_cv_lib_ncurses_waddch" = "yes"
276 AC_CHECK_LIB(ncurses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
277 AC_CHECK_LIB(ncurses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
279 AC_CHECK_HEADERS(curses.h)
280 if test "$ac_cv_header_curses_h" = "yes"
282 AC_CHECK_LIB(curses,waddch)
283 if test "$ac_cv_lib_curses_waddch" = "yes"
285 AC_CHECK_LIB(curses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
286 AC_CHECK_LIB(curses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
292 dnl **** Check for IPX (currently Linux only) ****
293 AC_CACHE_CHECK("for GNU style IPX support", ac_cv_c_ipx_gnu,
295 [#include <sys/socket.h>
296 #include <netipx/ipx.h>],
297 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
298 [ac_cv_c_ipx_gnu="yes"],
299 [ac_cv_c_ipx_gnu="no"])
301 if test "$ac_cv_c_ipx_gnu" = "yes"
303 AC_DEFINE(HAVE_IPX_GNU)
306 if test "$ac_cv_c_ipx_gnu" = "no"
308 AC_CACHE_CHECK("for linux style IPX support", ac_cv_c_ipx_linux,
310 [#include <sys/socket.h>
311 #include <asm/types.h>
312 #include <linux/ipx.h>],
313 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
314 [ac_cv_c_ipx_linux="yes"],
315 [ac_cv_c_ipx_linux="no"])
317 if test "$ac_cv_c_ipx_linux" = "yes"
319 AC_DEFINE(HAVE_IPX_LINUX)
323 dnl **** Check for Open Sound System ****
324 AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h soundcard.h, break)
326 AC_CACHE_CHECK("for Open Sound System",
327 ac_cv_c_opensoundsystem,
329 #if defined(HAVE_SYS_SOUNDCARD_H)
330 #include <sys/soundcard.h>
331 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
332 #include <machine/soundcard.h>
333 #elif defined(HAVE_SOUNDCARD_H)
334 #include <soundcard.h>
338 /* check for one of the Open Sound System specific SNDCTL_ defines */
339 #if !defined(SNDCTL_DSP_STEREO)
340 #error No open sound system
342 ],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no"))
344 if test "$ac_cv_c_opensoundsystem" = "yes"
349 AC_CACHE_CHECK("for Open Sound System/MIDI interface",
350 ac_cv_c_opensoundsystem_midi,
352 #if defined(HAVE_SYS_SOUNDCARD_H)
353 #include <sys/soundcard.h>
354 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
355 #include <machine/soundcard.h>
356 #elif defined(HAVE_SOUNDCARD_H)
357 #include <soundcard.h>
361 /* check for one of the Open Sound System specific SNDCTL_SEQ defines */
362 #if !defined(SNDCTL_SEQ_SYNC)
363 #error No open sound system MIDI interface
365 ],ac_cv_c_opensoundsystem_midi="yes",ac_cv_c_opensoundsystem_midi="no"))
367 if test "$ac_cv_c_opensoundsystem_midi" = "yes"
369 AC_DEFINE(HAVE_OSS_MIDI)
372 dnl **** If ln -s doesn't work, use cp instead ****
373 if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
375 dnl **** Check for gcc strength-reduce bug ****
377 if test "x${GCC}" = "xyes"
379 CFLAGS="$CFLAGS -Wall"
380 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
383 static int Array[[3]];
386 for(i=0; i<B; i++) Array[[i]] = i - 3;
387 exit( Array[[1]] != -2 );
389 ac_cv_c_gcc_strength_bug="no",
390 ac_cv_c_gcc_strength_bug="yes",
391 ac_cv_c_gcc_strength_bug="yes") )
392 if test "$ac_cv_c_gcc_strength_bug" = "yes"
394 CFLAGS="$CFLAGS -fno-strength-reduce"
398 dnl **** Check for underscore on external symbols ****
400 AC_CACHE_CHECK("whether external symbols need an underscore prefix",
401 ac_cv_c_extern_prefix,
403 LIBS="conftest_asm.s $LIBS"
404 cat > conftest_asm.s <<EOF
409 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
410 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
412 if test "$ac_cv_c_extern_prefix" = "yes"
414 AC_DEFINE(NEED_UNDERSCORE_PREFIX)
417 dnl **** Check for .string in assembler ****
419 AC_CACHE_CHECK("whether assembler accepts .string",
422 LIBS="conftest_asm.s $LIBS"
423 cat > conftest_asm.s <<EOF
426 AC_TRY_LINK(,,ac_cv_c_asm_string="yes",ac_cv_c_asm_string="no")
428 if test "$ac_cv_c_asm_string" = "yes"
430 AC_DEFINE(HAVE_ASM_STRING)
433 dnl **** Check for working dll ****
436 if test "$LIBEXT" = "so"
438 AC_CACHE_CHECK("whether we can build a Linux dll",
440 [saved_cflags=$CFLAGS
441 CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0"
442 AC_TRY_LINK(,[return 1],ac_cv_c_dll_linux="yes",ac_cv_c_dll_linux="no")
445 if test "$ac_cv_c_dll_linux" = "yes"
447 LDSHARED="\$(CC) -shared -Wl,-soname,\$(SONAME),-rpath,\$(libdir)"
449 AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll,
450 ac_cv_c_dll_unixware,
451 [saved_cflags=$CFLAGS
452 CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0"
453 AC_TRY_LINK(,[return 1],ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")
456 if test "$ac_cv_c_dll_unixware" = "yes"
458 LDSHARED="\$(CC) -Wl,-G,-h,\$(libdir)/\$(SONAME)"
460 AC_CACHE_CHECK("whether we can build a NetBSD dll",
462 [saved_cflags=$CFLAGS
463 CFLAGS="$CFLAGS -fPIC -Bshareable -Bforcearchive"
464 AC_TRY_LINK(,[return 1],ac_cv_c_dll_netbsd="yes",ac_cv_c_dll_netbsd="no")
467 if test "$ac_cv_c_dll_netbsd" = "yes"
469 LDSHARED="ld -Bshareable -Bforcearchive"
473 if test "$ac_cv_c_dll_linux" = "no" -a "$ac_cv_c_dll_unixware" = "no" -a "$ac_cv_c_dll_netbsd" = "no"
482 if test "$LIBEXT" = "so"; then
485 DLL_LINK="-L\$(DLLDIR) \$(IMPORTS:%=-l%) -L\$(TOPOBJDIR) -lwine"
487 DLL_LINK="-L\$(DLLDIR) \$(DLLS:%=-l%) -L\$(TOPOBJDIR) -lwine \$(X_LIBS) \$(XLIB)"
488 AC_CACHE_CHECK([whether the linker supports --[[no]]-whole-archive (Linux)],
489 ac_cv_c_whole_archive,
490 [saved_cflags=$CFLAGS
491 CFLAGS="$CFLAGS -Wl,--whole-archive -Wl,--no-whole-archive"
492 AC_TRY_LINK(,[return 1],ac_cv_c_whole_archive="yes",ac_cv_c_whole_archive="no")
495 if test "$ac_cv_c_whole_archive" = "yes"
497 DLL_LINK="-Wl,--whole-archive $DLL_LINK -Wl,--no-whole-archive"
499 AC_CACHE_CHECK([whether the linker supports -z {all,default}extract (Linux)],
501 [saved_cflags=$CFLAGS
502 CFLAGS="$CFLAGS -Wl,-z,allextract -Wl,-z,defaultextract"
503 AC_TRY_LINK(,[return 1],ac_cv_c_allextract="yes",ac_cv_c_allextract="no")
506 if test "$ac_cv_c_allextract" = "yes"
508 DLL_LINK="-Wl,-z,allextract $DLL_LINK -Wl,-z,defaultextract"
519 dnl **** Check for reentrant libc ****
521 dnl For cross-compiling we blindly assume that libc is reentrant. This is
522 dnl ok since non-reentrant libc is quite rare (mostly old libc5 versions).
524 wine_cv_libc_reentrant=no
526 dnl Linux style errno location
528 AC_CACHE_CHECK("for reentrant libc: __errno_location", wine_cv_libc_r__errno_location,
529 [AC_TRY_RUN([int myerrno = 0;
531 int *__errno_location(){return &myerrno;}
532 main(){connect(0,buf,255); exit(!myerrno);}],
533 wine_cv_libc_r__errno_location=yes, wine_cv_libc_r__errno_location=no,
534 wine_cv_libc_r__errno_location=yes )
536 if test "$wine_cv_libc_r__errno_location" = "yes"
538 AC_DEFINE(HAVE__ERRNO_LOCATION)
539 wine_cv_libc_reentrant=__errno_location
542 dnl FreeBSD style errno location
544 AC_CACHE_CHECK("for reentrant libc: __error", wine_cv_libc_r__error,
545 [AC_TRY_RUN([int myerrno = 0;
547 int *__error(){return &myerrno;}
548 main(){connect(0,buf,255); exit(!myerrno);}],
549 wine_cv_libc_r__error=yes, wine_cv_libc_r__error=no,
550 wine_cv_libc_r__error=yes )
552 if test "$wine_cv_libc_r__error" = "yes"
554 AC_DEFINE(HAVE__ERROR)
555 wine_cv_libc_reentrant=__error
558 dnl Solaris style errno location
560 AC_CACHE_CHECK("for reentrant libc: ___errno", wine_cv_libc_r___errno,
561 [AC_TRY_RUN([int myerrno = 0;
563 int *___errno(){return &myerrno;}
564 main(){connect(0,buf,255); exit(!myerrno);}],
565 wine_cv_libc_r___errno=yes, wine_cv_libc_r___errno=no,
566 wine_cv_libc_r___errno=yes )
568 if test "$wine_cv_libc_r___errno" = "yes"
570 AC_DEFINE(HAVE___ERRNO)
571 wine_cv_libc_reentrant=___errno
574 dnl UnixWare style errno location
576 AC_CACHE_CHECK("for reentrant libc: __thr_errno", wine_cv_libc_r__thr_errno,
577 [AC_TRY_RUN([int myerrno = 0;
579 int *__thr_errno(){return &myerrno;}
580 main(){connect(0,buf,255); exit(!myerrno);}],
581 wine_cv_libc_r__thr_errno=yes, wine_cv_libc_r__thr_errno=no,
582 wine_cv_libc_r__thr_errno=yes )
584 if test "$wine_cv_libc_r__thr_errno" = "yes"
586 AC_DEFINE(HAVE__THR_ERRNO)
587 wine_cv_libc_reentrant=__thr_errno
589 if test "$wine_cv_libc_reentrant" = "no"
591 AC_DEFINE(NO_REENTRANT_LIBC)
594 dnl **** Check for reentrant X libraries ****
596 dnl This may fail to determine whether X libraries are reentrant if
597 dnl AC_PATH_XTRA does not set x_libraries. In this case manual configuration
598 dnl is possible with the --without-reentrant-x option.
600 if test "$have_x" = "yes" -a "$wine_cv_libc_reentrant" != "no"
602 AC_CACHE_CHECK( "for reentrant X libraries", wine_cv_x_reentrant,
603 [ if test "x$with_reentrant_x" = "xno"
605 wine_cv_x_reentrant=no
608 for dir in "$x_libraries" /usr/lib /usr/local/lib /lib; do
609 if test -r $dir/libX11.so; then
610 libX11_check="-D $dir/libX11.so"
613 if test -r $dir/libX11.a; then
614 libX11_check="$dir/libX11.a"
618 if test "$libX11_check" != "none"; then
619 if nm $libX11_check | grep $wine_cv_libc_reentrant >/dev/null 2>&1
621 wine_cv_x_reentrant=yes
623 wine_cv_x_reentrant=no
626 wine_cv_x_reentrant=unknown
630 wine_cv_x_reentrant=no
632 if test "$wine_cv_x_reentrant" = "no"
634 AC_DEFINE(NO_REENTRANT_X11)
637 dnl **** Check for endianness ****
641 dnl **** Check for functions ****
674 dnl **** Check for header files ****
726 dnl **** Check for types ****
731 AC_CHECK_SIZEOF(long long,0)
733 if test "$ac_cv_header_linux_joystick_h" = "yes"
735 AC_CACHE_CHECK("whether linux/joystick.h uses the Linux 2.2+ API",
736 wine_cv_linux_joystick_22_api,
738 #include <sys/ioctl.h>
739 #include <linux/joystick.h>
741 struct js_event blub;
742 #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
743 #error "no 2.2 header"
746 wine_cv_linux_joystick_22_api=yes,
747 wine_cv_linux_joystick_22_api=no,
748 wine_cv_linux_joystick_22_api=no
751 if test "$wine_cv_linux_joystick_22_api" = "yes"
753 AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API)
757 dnl **** statfs checks ****
759 if test "$ac_cv_header_sys_vfs_h" = "yes"
761 AC_CACHE_CHECK( "whether sys/vfs.h defines statfs",
762 wine_cv_sys_vfs_has_statfs,
764 #include <sys/types.h>
765 #ifdef HAVE_SYS_PARAM_H
766 # include <sys/param.h>
772 memset(&stfs,0,sizeof(stfs));
773 ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no
776 if test "$wine_cv_sys_vfs_has_statfs" = "yes"
778 AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS)
782 if test "$ac_cv_header_sys_statfs_h" = "yes"
784 AC_CACHE_CHECK( "whether sys/statfs.h defines statfs",
785 wine_cv_sys_statfs_has_statfs,
787 #include <sys/types.h>
788 #ifdef HAVE_SYS_PARAM_H
789 # include <sys/param.h>
791 #include <sys/statfs.h>
794 ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no
797 if test "$wine_cv_sys_statfs_has_statfs" = "yes"
799 AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS)
803 if test "$ac_cv_header_sys_mount_h" = "yes"
805 AC_CACHE_CHECK( "whether sys/mount.h defines statfs",
806 wine_cv_sys_mount_has_statfs,
808 #include <sys/types.h>
809 #ifdef HAVE_SYS_PARAM_H
810 # include <sys/param.h>
812 #include <sys/mount.h>
815 ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no
818 if test "$wine_cv_sys_mount_has_statfs" = "yes"
820 AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT)
824 dnl **** FIXME: what about mixed cases, where we need two of them? ***
826 AC_CACHE_CHECK( "for statfs.f_bfree", wine_cv_statfs_bfree,
827 [ if test "x$statfs_bfree" = "xno"
829 wine_cv_statfs_bfree=no
832 #include <sys/types.h>
833 #ifdef HAVE_SYS_PARAM_H
834 # include <sys/param.h>
836 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
837 # include <sys/mount.h>
839 # ifdef STATFS_DEFINED_BY_SYS_VFS
840 # include <sys/vfs.h>
842 # ifdef STATFS_DEFINED_BY_SYS_STATFS
843 # include <sys/statfs.h>
851 ],wine_cv_statfs_bfree=yes,wine_cv_statfs_bfree=no
854 if test "$wine_cv_statfs_bfree" = "yes"
856 AC_DEFINE(STATFS_HAS_BFREE)
859 AC_CACHE_CHECK( "for statfs.f_bavail", wine_cv_statfs_bavail,
860 [ if test "x$statfs_bavail" = "xno"
862 wine_cv_statfs_bavail=no
865 #include <sys/types.h>
866 #ifdef HAVE_SYS_PARAM_H
867 # include <sys/param.h>
869 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
870 # include <sys/mount.h>
872 # ifdef STATFS_DEFINED_BY_SYS_VFS
873 # include <sys/vfs.h>
875 # ifdef STATFS_DEFINED_BY_SYS_STATFS
876 # include <sys/statfs.h>
884 ],wine_cv_statfs_bavail=yes,wine_cv_statfs_bavail=no
887 if test "$wine_cv_statfs_bavail" = "yes"
889 AC_DEFINE(STATFS_HAS_BAVAIL)
892 dnl *** check for file descriptor passing with msg_accrights
894 AC_CACHE_CHECK("for msg_accrights in struct msghdr", ac_cv_c_msg_accrights,
895 AC_TRY_COMPILE([#include <sys/types.h>
896 #include <sys/socket.h>],[struct msghdr hdr; hdr.msg_accrights=0],
897 ac_cv_c_msg_accrights="yes", ac_cv_c_msg_accrights="no"))
898 if test "$ac_cv_c_msg_accrights" = "yes"
900 AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS)
903 dnl *** Check for the sun_len member in struct sockaddr_un
905 AC_CACHE_CHECK("for sun_len in struct sockaddr_un", ac_cv_c_sun_len,
906 AC_TRY_COMPILE([#include <sys/types.h>
907 #include <sys/socket.h>
908 #include <sys/un.h>], [static struct sockaddr_un addr; addr.sun_len = 1],
909 ac_cv_c_sun_len="yes", ac_cv_c_sun_len="no"))
910 if test "$ac_cv_c_sun_len" = "yes"
912 AC_DEFINE(HAVE_SOCKADDR_SUN_LEN)
915 dnl *** check for the need to define __i386__
917 AC_CACHE_CHECK("whether we need to define __i386__",ac_cv_cpp_def_i386,
918 AC_EGREP_CPP(yes,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
921 ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no"))
922 if test "$ac_cv_cpp_def_i386" = "yes"
924 CFLAGS="$CFLAGS -D__i386__"
925 LINTFLAGS="$LINTFLAGS -D__i386__"
928 dnl $GCC is set by autoconf
930 if test "$GCC" = "yes"
932 GCC_NO_BUILTIN="-fno-builtin"
934 AC_SUBST(GCC_NO_BUILTIN)
936 dnl **** Generate output files ****
940 dlls/ddraw/d3ddevice \
941 dlls/ddraw/dclipper \
943 dlls/ddraw/direct3d \
944 dlls/ddraw/dpalette \
945 dlls/ddraw/dsurface \
947 for i in $extra_subdirs; do [ -d $i ] || (echo "creating $i" && mkdir $i); done ])
949 MAKE_RULES=Make.rules
950 AC_SUBST_FILE(MAKE_RULES)
952 MAKE_DLL_RULES=dlls/Makedll.rules
953 AC_SUBST_FILE(MAKE_DLL_RULES)
963 dlls/advapi32/Makefile
964 dlls/avifil32/Makefile
965 dlls/comctl32/Makefile
966 dlls/commdlg/Makefile
968 dlls/dciman32/Makefile
971 dlls/display/Makefile
976 dlls/imagehlp/Makefile
978 dlls/lzexpand/Makefile
982 dlls/msacm32/Makefile
983 dlls/msnet32/Makefile
984 dlls/msvideo/Makefile
988 dlls/oleaut32/Makefile
991 dlls/olepro32/Makefile
993 dlls/opengl32/Makefile
995 dlls/rasapi32/Makefile
996 dlls/richedit/Makefile
998 dlls/shell32/Makefile
1000 dlls/stress/Makefile
1001 dlls/tapi32/Makefile
1002 dlls/ttydrv/Makefile
1003 dlls/urlmon/Makefile
1005 dlls/version/Makefile
1006 dlls/win32s/Makefile
1007 dlls/win87em/Makefile
1008 dlls/winaspi/Makefile
1009 dlls/windebug/Makefile
1011 dlls/wininet/Makefile
1013 dlls/winmm/joystick/Makefile
1014 dlls/winmm/mcianim/Makefile
1015 dlls/winmm/mciavi/Makefile
1016 dlls/winmm/mcicda/Makefile
1017 dlls/winmm/mciseq/Makefile
1018 dlls/winmm/mciwave/Makefile
1019 dlls/winmm/midimap/Makefile
1020 dlls/winmm/wavemap/Makefile
1021 dlls/winmm/wineoss/Makefile
1022 dlls/winsock/Makefile
1023 dlls/winspool/Makefile
1024 dlls/ttydrv/Makefile
1025 dlls/x11drv/Makefile
1026 documentation/Makefile
1027 documentation/wine.conf.man
1028 documentation/wine.man
1031 graphics/enhmetafiledrv/Makefile
1032 graphics/metafiledrv/Makefile
1033 graphics/psdrv/Makefile
1034 graphics/ttydrv/Makefile
1035 graphics/win16drv/Makefile
1036 graphics/x11drv/Makefile
1051 programs/clock/Makefile
1052 programs/cmdlgtst/Makefile
1053 programs/control/Makefile
1054 programs/avitools/Makefile
1055 programs/osversioncheck/Makefile
1056 programs/notepad/Makefile
1057 programs/progman/Makefile
1058 programs/regtest/Makefile
1059 programs/regapi/Makefile
1060 programs/view/Makefile
1061 programs/wcmd/Makefile
1062 programs/winemine/Makefile
1063 programs/winhelp/Makefile
1064 programs/winver/Makefile
1070 tools/cvdump/Makefile
1075 windows/ttydrv/Makefile
1076 windows/x11drv/Makefile ])
1078 if test "$have_x" = "no"
1081 echo "*** Warning: X development files not found. Wine will be built without"
1082 echo "*** X support, which currently does not work, and would probably not be"
1083 echo "*** what you want anyway. You will need to install devel packages of"
1084 echo "*** Xlib/Xfree86 and Xpm at the very least."
1085 elif test "$ac_cv_lib_Xpm_XpmCreatePixmapFromData" = "no"
1088 echo "*** Warning: Xpm development files not found. Wine will be built without"
1089 echo "*** Xpm support, which currently does not work. You will need to install"
1090 echo "*** devel packages of Xpm."
1093 if test "$ac_cv_lib_ncurses_resizeterm" = "no" -a "$ac_cv_lib_ncurses_waddch" = "yes"
1096 echo "*** Warning: resizeterm not found in ncurses. Wine will be built without"
1097 echo "*** terminal resize support. Consider upgrading ncurses."
1100 if test "$wine_cv_libc_reentrant" = "no"
1103 echo "*** Warning: non-reentrant libc detected. Wine will be build without"
1104 echo "*** thread support. Consider upgrading libc to a more recent"
1105 echo "*** reentrant version of libc."
1108 if test "$wine_cv_opengl_version_OK" = "no"
1111 echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
1112 echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)."
1115 if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "normal"
1118 echo "*** Warning: the OpenGL version you have installed relies on libpthread for"
1119 echo "*** thread-safety. To prevent crashes, OpenGL support has been removed."
1120 echo "*** A fix for glibc 2.1.3 that seem to work is included in this version of Wine,"
1121 echo "*** start configure with '--enable-opengl' to force OpenGL support."
1124 if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "yes"
1127 echo "*** Warning: you explicitely linked in a thread-safe OpenGL version. If you"
1128 echo "*** experience unusual crashes on DirectDraw games, try first to disable OpenGL"
1129 echo "*** support before reporting bugs."
1134 echo "Configure finished. Do 'make depend && make' to compile Wine."
1137 dnl Local Variables:
1138 dnl comment-start: "dnl "
1140 dnl comment-start-skip: "\\bdnl\\b\\s *"
1141 dnl compile-command: "autoconf"