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)
131 AC_SUBST(OPENGL32_DLL)
139 if test "$have_x" = "yes"
142 ac_save_CPPFLAGS="$CPPFLAGS"
143 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
145 dnl *** Check for -lXpm
146 AC_CHECK_HEADERS(X11/xpm.h,
147 [ dnl *** If X11/xpm.h exists...
148 AC_CHECK_LIB(Xpm, XpmCreatePixmapFromData,
149 [ AC_DEFINE(HAVE_LIBXXPM) X_PRE_LIBS="$X_PRE_LIBS -lXpm"],,
150 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
153 [ dnl *** If X11/xpm.h does not exist...
154 dnl NOTE: autoconf does not allow commas inside the third
155 dnl parameter to AC_CHECK_HEADERS, due to some quoting
157 echo "Redhat : xpm xpm-devel"
158 echo "Caldera OpenLinux : xpm xpm-devel xpm-devel-static"
160 echo "Debian/Corel Linux: xpm4g xpm4g-dev"
162 echo "Or get the sources from ftp.x.org and all its mirror sites from "
163 echo "the directory /contrib/libraries."
169 dnl *** All three of the following tests require X11/Xlib.h
170 AC_CHECK_HEADERS(X11/Xlib.h,
172 dnl *** Check for X Shm extension
173 AC_CHECK_HEADERS(X11/extensions/XShm.h,
174 [ dnl *** If X11/extensions/XShm.h exists...
175 AC_CHECK_LIB(Xext, XShmQueryExtension,
176 AC_DEFINE(HAVE_LIBXXSHM),,
177 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
179 AC_MSG_WARN([Xshm extension not found!!])
182 dnl *** Check for XFree86 DGA / DGA 2.0 extension
183 AC_CHECK_HEADERS(X11/extensions/xf86dga.h,
184 [ dnl *** If X11/extensions/xf86dga.h exists, check
185 dnl *** for XDGAQueryExtension()...
186 AC_CHECK_LIB(Xxf86dga, XDGAQueryExtension,
187 [ dnl *** If found...
188 AC_DEFINE(HAVE_LIBXXF86DGA2)
189 AC_DEFINE(HAVE_LIBXXF86DGA)
190 X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
191 DGA_SRCS='$(DGA_SRCS)'
192 DGA2_SRCS='$(DGA2_SRCS)'
194 [ dnl *** If not found, look for XF86DGAQueryExtension()
195 dnl *** instead (DGA 2.0 not found)...
196 AC_CHECK_LIB(Xxf86dga, XF86DGAQueryExtension,
197 [ AC_DEFINE(HAVE_LIBXXF86DGA)
198 X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
199 DGA_SRCS='$(DGA_SRCS)'
201 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
204 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
207 AC_MSG_WARN([DGA extension not found!!])
210 dnl *** Check for XFree86 VMODE extension
211 AC_CHECK_HEADERS(X11/extensions/xf86vmode.h,
212 [ dnl *** If X11/extensions/xf86vmode.h exists...
213 AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension,
214 [ AC_DEFINE(HAVE_LIBXXF86VM)
215 X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm"
217 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
220 AC_MSG_WARN([XFree86 VMODE extension not found!!])
223 ) dnl *** End of X11/Xlib.h check
225 dnl Check for the presence of OpenGL
226 if test $OPENGL = "yes" -o $OPENGL = "normal"
228 AC_CHECK_HEADERS(GL/gl.h GL/glx.h GL/glext.h)
229 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"
231 dnl Check for some problems due to old Mesa versions
232 AC_CACHE_CHECK("for up-to-date OpenGL version", wine_cv_opengl_version_OK,
234 [#include <GL/gl.h>],
235 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
236 [wine_cv_opengl_version_OK="yes"],
237 [wine_cv_opengl_version_OK="no"]
241 dnl Check for the thread-safety of the OpenGL library
242 AC_CACHE_CHECK("for thread-safe OpenGL version",
243 wine_cv_opengl_version_threadsafe,
246 AC_TRY_LINK([],[pthread_getspecific();],
247 [wine_cv_opengl_version_threadsafe="yes"],
248 [wine_cv_opengl_version_threadsafe="no"])
252 if test "$wine_cv_opengl_version_OK" = "yes" -a \( "$wine_cv_opengl_version_threadsafe" = "no" -o $OPENGL = "yes" \)
254 dnl Check for the presense of the library
255 AC_CHECK_LIB(GL,glXCreateContext,
256 X_PRE_LIBS="$X_PRE_LIBS -lGL"
257 MESA_SRCS='$(MESA_SRCS)'
259 $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
261 if test $ac_cv_lib_GL_glXCreateContext = "yes"
263 dnl Check for the Color Table and Paletted Texture extensions
264 AC_CACHE_CHECK("for the OpenGL Color Index extension",dummy,
265 AC_TRY_COMPILE([#include <GL/gl.h>],
266 [GLenum test = GL_COLOR_INDEX8_EXT;],
267 [AC_DEFINE(HAVE_GL_COLOR_TABLE)],))
269 AC_CHECK_LIB(GL,glColorTableEXT,AC_DEFINE(HAVE_GL_PALETTED_TEXTURE),,$X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
270 AC_CHECK_LIB(GL,glXGetProcAddressARB,AC_DEFINE(HAVE_GLX_GETPROCADDRESS),,$X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
272 if test $ac_cv_lib_GL_glXGetProcAddressARB = "yes"
274 AC_DEFINE(HAVE_OPENGL)
275 OPENGL32_DLL=opengl32
276 OPENGLFILES='$(OPENGLFILES)'
283 CPPFLAGS="$ac_save_CPPFLAGS"
292 dnl **** Check which curses lib to use ***
293 if test "$CURSES" = "yes"
295 AC_CHECK_HEADERS(ncurses.h)
296 if test "$ac_cv_header_ncurses_h" = "yes"
298 AC_CHECK_LIB(ncurses,waddch)
300 if test "$ac_cv_lib_ncurses_waddch" = "yes"
302 AC_CHECK_LIB(ncurses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
303 AC_CHECK_LIB(ncurses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
305 AC_CHECK_HEADERS(curses.h)
306 if test "$ac_cv_header_curses_h" = "yes"
308 AC_CHECK_LIB(curses,waddch)
309 if test "$ac_cv_lib_curses_waddch" = "yes"
311 AC_CHECK_LIB(curses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
312 AC_CHECK_LIB(curses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
318 dnl **** Check for IPX (currently Linux only) ****
319 AC_CACHE_CHECK("for GNU style IPX support", ac_cv_c_ipx_gnu,
321 [#include <sys/socket.h>
322 #include <netipx/ipx.h>],
323 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
324 [ac_cv_c_ipx_gnu="yes"],
325 [ac_cv_c_ipx_gnu="no"])
327 if test "$ac_cv_c_ipx_gnu" = "yes"
329 AC_DEFINE(HAVE_IPX_GNU)
332 if test "$ac_cv_c_ipx_gnu" = "no"
334 AC_CACHE_CHECK("for linux style IPX support", ac_cv_c_ipx_linux,
336 [#include <sys/socket.h>
337 #include <asm/types.h>
338 #include <linux/ipx.h>],
339 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
340 [ac_cv_c_ipx_linux="yes"],
341 [ac_cv_c_ipx_linux="no"])
343 if test "$ac_cv_c_ipx_linux" = "yes"
345 AC_DEFINE(HAVE_IPX_LINUX)
349 dnl **** Check for Open Sound System ****
350 AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h soundcard.h, break)
352 AC_CACHE_CHECK("for Open Sound System",
353 ac_cv_c_opensoundsystem,
355 #if defined(HAVE_SYS_SOUNDCARD_H)
356 #include <sys/soundcard.h>
357 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
358 #include <machine/soundcard.h>
359 #elif defined(HAVE_SOUNDCARD_H)
360 #include <soundcard.h>
364 /* check for one of the Open Sound System specific SNDCTL_ defines */
365 #if !defined(SNDCTL_DSP_STEREO)
366 #error No open sound system
368 ],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no"))
370 if test "$ac_cv_c_opensoundsystem" = "yes"
375 AC_CACHE_CHECK("for Open Sound System/MIDI interface",
376 ac_cv_c_opensoundsystem_midi,
378 #if defined(HAVE_SYS_SOUNDCARD_H)
379 #include <sys/soundcard.h>
380 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
381 #include <machine/soundcard.h>
382 #elif defined(HAVE_SOUNDCARD_H)
383 #include <soundcard.h>
387 /* check for one of the Open Sound System specific SNDCTL_SEQ defines */
388 #if !defined(SNDCTL_SEQ_SYNC)
389 #error No open sound system MIDI interface
391 ],ac_cv_c_opensoundsystem_midi="yes",ac_cv_c_opensoundsystem_midi="no"))
393 if test "$ac_cv_c_opensoundsystem_midi" = "yes"
395 AC_DEFINE(HAVE_OSS_MIDI)
398 dnl **** If ln -s doesn't work, use cp instead ****
399 if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
401 dnl **** Check for gcc strength-reduce bug ****
403 if test "x${GCC}" = "xyes"
405 CFLAGS="$CFLAGS -Wall"
406 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
409 static int Array[[3]];
412 for(i=0; i<B; i++) Array[[i]] = i - 3;
413 exit( Array[[1]] != -2 );
415 ac_cv_c_gcc_strength_bug="no",
416 ac_cv_c_gcc_strength_bug="yes",
417 ac_cv_c_gcc_strength_bug="yes") )
418 if test "$ac_cv_c_gcc_strength_bug" = "yes"
420 CFLAGS="$CFLAGS -fno-strength-reduce"
424 dnl **** Check for underscore on external symbols ****
426 AC_CACHE_CHECK("whether external symbols need an underscore prefix",
427 ac_cv_c_extern_prefix,
429 LIBS="conftest_asm.s $LIBS"
430 cat > conftest_asm.s <<EOF
435 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
436 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
438 if test "$ac_cv_c_extern_prefix" = "yes"
440 AC_DEFINE(NEED_UNDERSCORE_PREFIX)
443 dnl **** Check for .string in assembler ****
445 AC_CACHE_CHECK("whether assembler accepts .string",
448 LIBS="conftest_asm.s $LIBS"
449 cat > conftest_asm.s <<EOF
452 AC_TRY_LINK(,,ac_cv_c_asm_string="yes",ac_cv_c_asm_string="no")
454 if test "$ac_cv_c_asm_string" = "yes"
456 AC_DEFINE(HAVE_ASM_STRING)
459 dnl **** Check for working dll ****
462 if test "$LIBEXT" = "so"
464 AC_CACHE_CHECK("whether we can build a Linux dll",
466 [saved_cflags=$CFLAGS
467 CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0"
468 AC_TRY_LINK(,[return 1],ac_cv_c_dll_linux="yes",ac_cv_c_dll_linux="no")
471 if test "$ac_cv_c_dll_linux" = "yes"
473 LDSHARED="\$(CC) -shared -Wl,-soname,\$(SONAME),-rpath,\$(libdir)"
475 AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll,
476 ac_cv_c_dll_unixware,
477 [saved_cflags=$CFLAGS
478 CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0"
479 AC_TRY_LINK(,[return 1],ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")
482 if test "$ac_cv_c_dll_unixware" = "yes"
484 LDSHARED="\$(CC) -Wl,-G,-h,\$(libdir)/\$(SONAME)"
486 AC_CACHE_CHECK("whether we can build a NetBSD dll",
488 [saved_cflags=$CFLAGS
489 CFLAGS="$CFLAGS -fPIC -Bshareable -Bforcearchive"
490 AC_TRY_LINK(,[return 1],ac_cv_c_dll_netbsd="yes",ac_cv_c_dll_netbsd="no")
493 if test "$ac_cv_c_dll_netbsd" = "yes"
495 LDSHARED="ld -Bshareable -Bforcearchive"
499 if test "$ac_cv_c_dll_linux" = "no" -a "$ac_cv_c_dll_unixware" = "no" -a "$ac_cv_c_dll_netbsd" = "no"
508 if test "$LIBEXT" = "so"; then
511 DLL_LINK="-L\$(DLLDIR) \$(IMPORTS:%=-l%) -L\$(TOPOBJDIR) -lwine"
513 DLL_LINK="-L\$(DLLDIR) \$(DLLS:%=-l%) -L\$(TOPOBJDIR) -lwine \$(X_LIBS) \$(XLIB)"
514 AC_CACHE_CHECK([whether the linker supports --[[no]]-whole-archive (Linux)],
515 ac_cv_c_whole_archive,
516 [saved_cflags=$CFLAGS
517 CFLAGS="$CFLAGS -Wl,--whole-archive -Wl,--no-whole-archive"
518 AC_TRY_LINK(,[return 1],ac_cv_c_whole_archive="yes",ac_cv_c_whole_archive="no")
521 if test "$ac_cv_c_whole_archive" = "yes"
523 DLL_LINK="-Wl,--whole-archive $DLL_LINK -Wl,--no-whole-archive"
525 AC_CACHE_CHECK([whether the linker supports -z {all,default}extract (Linux)],
527 [saved_cflags=$CFLAGS
528 CFLAGS="$CFLAGS -Wl,-z,allextract -Wl,-z,defaultextract"
529 AC_TRY_LINK(,[return 1],ac_cv_c_allextract="yes",ac_cv_c_allextract="no")
532 if test "$ac_cv_c_allextract" = "yes"
534 DLL_LINK="-Wl,-z,allextract $DLL_LINK -Wl,-z,defaultextract"
545 dnl **** Check for reentrant libc ****
547 dnl For cross-compiling we blindly assume that libc is reentrant. This is
548 dnl ok since non-reentrant libc is quite rare (mostly old libc5 versions).
550 wine_cv_libc_reentrant=no
552 dnl Linux style errno location
554 AC_CACHE_CHECK("for reentrant libc: __errno_location", wine_cv_libc_r__errno_location,
555 [AC_TRY_RUN([int myerrno = 0;
557 int *__errno_location(){return &myerrno;}
558 main(){connect(0,buf,255); exit(!myerrno);}],
559 wine_cv_libc_r__errno_location=yes, wine_cv_libc_r__errno_location=no,
560 wine_cv_libc_r__errno_location=yes )
562 if test "$wine_cv_libc_r__errno_location" = "yes"
564 AC_DEFINE(HAVE__ERRNO_LOCATION)
565 wine_cv_libc_reentrant=__errno_location
568 dnl FreeBSD style errno location
570 AC_CACHE_CHECK("for reentrant libc: __error", wine_cv_libc_r__error,
571 [AC_TRY_RUN([int myerrno = 0;
573 int *__error(){return &myerrno;}
574 main(){connect(0,buf,255); exit(!myerrno);}],
575 wine_cv_libc_r__error=yes, wine_cv_libc_r__error=no,
576 wine_cv_libc_r__error=yes )
578 if test "$wine_cv_libc_r__error" = "yes"
580 AC_DEFINE(HAVE__ERROR)
581 wine_cv_libc_reentrant=__error
584 dnl Solaris style errno location
586 AC_CACHE_CHECK("for reentrant libc: ___errno", wine_cv_libc_r___errno,
587 [AC_TRY_RUN([int myerrno = 0;
589 int *___errno(){return &myerrno;}
590 main(){connect(0,buf,255); exit(!myerrno);}],
591 wine_cv_libc_r___errno=yes, wine_cv_libc_r___errno=no,
592 wine_cv_libc_r___errno=yes )
594 if test "$wine_cv_libc_r___errno" = "yes"
596 AC_DEFINE(HAVE___ERRNO)
597 wine_cv_libc_reentrant=___errno
600 dnl UnixWare style errno location
602 AC_CACHE_CHECK("for reentrant libc: __thr_errno", wine_cv_libc_r__thr_errno,
603 [AC_TRY_RUN([int myerrno = 0;
605 int *__thr_errno(){return &myerrno;}
606 main(){connect(0,buf,255); exit(!myerrno);}],
607 wine_cv_libc_r__thr_errno=yes, wine_cv_libc_r__thr_errno=no,
608 wine_cv_libc_r__thr_errno=yes )
610 if test "$wine_cv_libc_r__thr_errno" = "yes"
612 AC_DEFINE(HAVE__THR_ERRNO)
613 wine_cv_libc_reentrant=__thr_errno
615 if test "$wine_cv_libc_reentrant" = "no"
617 AC_DEFINE(NO_REENTRANT_LIBC)
620 dnl **** Check for reentrant X libraries ****
622 dnl This may fail to determine whether X libraries are reentrant if
623 dnl AC_PATH_XTRA does not set x_libraries. In this case manual configuration
624 dnl is possible with the --without-reentrant-x option.
626 if test "$have_x" = "yes" -a "$wine_cv_libc_reentrant" != "no"
628 AC_CACHE_CHECK( "for reentrant X libraries", wine_cv_x_reentrant,
629 [ if test "x$with_reentrant_x" = "xno"
631 wine_cv_x_reentrant=no
634 for dir in "$x_libraries" /usr/lib /usr/local/lib /lib; do
635 if test -r $dir/libX11.so; then
636 libX11_check="-D $dir/libX11.so"
639 if test -r $dir/libX11.a; then
640 libX11_check="$dir/libX11.a"
644 if test "$libX11_check" != "none"; then
645 if nm $libX11_check | grep $wine_cv_libc_reentrant >/dev/null 2>&1
647 wine_cv_x_reentrant=yes
649 wine_cv_x_reentrant=no
652 wine_cv_x_reentrant=unknown
656 wine_cv_x_reentrant=no
658 if test "$wine_cv_x_reentrant" = "no"
660 AC_DEFINE(NO_REENTRANT_X11)
663 dnl **** Check for endianness ****
667 dnl **** Check for functions ****
700 dnl **** Check for header files ****
752 dnl **** Check for types ****
757 AC_CHECK_SIZEOF(long long,0)
759 if test "$ac_cv_header_linux_joystick_h" = "yes"
761 AC_CACHE_CHECK("whether linux/joystick.h uses the Linux 2.2+ API",
762 wine_cv_linux_joystick_22_api,
764 #include <sys/ioctl.h>
765 #include <linux/joystick.h>
767 struct js_event blub;
768 #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
769 #error "no 2.2 header"
772 wine_cv_linux_joystick_22_api=yes,
773 wine_cv_linux_joystick_22_api=no,
774 wine_cv_linux_joystick_22_api=no
777 if test "$wine_cv_linux_joystick_22_api" = "yes"
779 AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API)
783 dnl **** statfs checks ****
785 if test "$ac_cv_header_sys_vfs_h" = "yes"
787 AC_CACHE_CHECK( "whether sys/vfs.h defines statfs",
788 wine_cv_sys_vfs_has_statfs,
790 #include <sys/types.h>
791 #ifdef HAVE_SYS_PARAM_H
792 # include <sys/param.h>
798 memset(&stfs,0,sizeof(stfs));
799 ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no
802 if test "$wine_cv_sys_vfs_has_statfs" = "yes"
804 AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS)
808 if test "$ac_cv_header_sys_statfs_h" = "yes"
810 AC_CACHE_CHECK( "whether sys/statfs.h defines statfs",
811 wine_cv_sys_statfs_has_statfs,
813 #include <sys/types.h>
814 #ifdef HAVE_SYS_PARAM_H
815 # include <sys/param.h>
817 #include <sys/statfs.h>
820 ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no
823 if test "$wine_cv_sys_statfs_has_statfs" = "yes"
825 AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS)
829 if test "$ac_cv_header_sys_mount_h" = "yes"
831 AC_CACHE_CHECK( "whether sys/mount.h defines statfs",
832 wine_cv_sys_mount_has_statfs,
834 #include <sys/types.h>
835 #ifdef HAVE_SYS_PARAM_H
836 # include <sys/param.h>
838 #include <sys/mount.h>
841 ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no
844 if test "$wine_cv_sys_mount_has_statfs" = "yes"
846 AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT)
850 dnl **** FIXME: what about mixed cases, where we need two of them? ***
852 AC_CACHE_CHECK( "for statfs.f_bfree", wine_cv_statfs_bfree,
853 [ if test "x$statfs_bfree" = "xno"
855 wine_cv_statfs_bfree=no
858 #include <sys/types.h>
859 #ifdef HAVE_SYS_PARAM_H
860 # include <sys/param.h>
862 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
863 # include <sys/mount.h>
865 # ifdef STATFS_DEFINED_BY_SYS_VFS
866 # include <sys/vfs.h>
868 # ifdef STATFS_DEFINED_BY_SYS_STATFS
869 # include <sys/statfs.h>
877 ],wine_cv_statfs_bfree=yes,wine_cv_statfs_bfree=no
880 if test "$wine_cv_statfs_bfree" = "yes"
882 AC_DEFINE(STATFS_HAS_BFREE)
885 AC_CACHE_CHECK( "for statfs.f_bavail", wine_cv_statfs_bavail,
886 [ if test "x$statfs_bavail" = "xno"
888 wine_cv_statfs_bavail=no
891 #include <sys/types.h>
892 #ifdef HAVE_SYS_PARAM_H
893 # include <sys/param.h>
895 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
896 # include <sys/mount.h>
898 # ifdef STATFS_DEFINED_BY_SYS_VFS
899 # include <sys/vfs.h>
901 # ifdef STATFS_DEFINED_BY_SYS_STATFS
902 # include <sys/statfs.h>
910 ],wine_cv_statfs_bavail=yes,wine_cv_statfs_bavail=no
913 if test "$wine_cv_statfs_bavail" = "yes"
915 AC_DEFINE(STATFS_HAS_BAVAIL)
918 dnl *** check for file descriptor passing with msg_accrights
920 AC_CACHE_CHECK("for msg_accrights in struct msghdr", ac_cv_c_msg_accrights,
921 AC_TRY_COMPILE([#include <sys/types.h>
922 #include <sys/socket.h>],[struct msghdr hdr; hdr.msg_accrights=0],
923 ac_cv_c_msg_accrights="yes", ac_cv_c_msg_accrights="no"))
924 if test "$ac_cv_c_msg_accrights" = "yes"
926 AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS)
929 dnl *** Check for the sun_len member in struct sockaddr_un
931 AC_CACHE_CHECK("for sun_len in struct sockaddr_un", ac_cv_c_sun_len,
932 AC_TRY_COMPILE([#include <sys/types.h>
933 #include <sys/socket.h>
934 #include <sys/un.h>], [static struct sockaddr_un addr; addr.sun_len = 1],
935 ac_cv_c_sun_len="yes", ac_cv_c_sun_len="no"))
936 if test "$ac_cv_c_sun_len" = "yes"
938 AC_DEFINE(HAVE_SOCKADDR_SUN_LEN)
941 dnl *** check for the need to define __i386__
943 AC_CACHE_CHECK("whether we need to define __i386__",ac_cv_cpp_def_i386,
944 AC_EGREP_CPP(yes,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
947 ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no"))
948 if test "$ac_cv_cpp_def_i386" = "yes"
950 CFLAGS="$CFLAGS -D__i386__"
951 LINTFLAGS="$LINTFLAGS -D__i386__"
954 dnl $GCC is set by autoconf
956 if test "$GCC" = "yes"
958 GCC_NO_BUILTIN="-fno-builtin"
960 AC_SUBST(GCC_NO_BUILTIN)
962 dnl **** Generate output files ****
966 dlls/ddraw/d3ddevice \
967 dlls/ddraw/dclipper \
969 dlls/ddraw/direct3d \
970 dlls/ddraw/dpalette \
971 dlls/ddraw/dsurface \
973 for i in $extra_subdirs; do [ -d $i ] || (echo "creating $i" && mkdir $i); done ])
975 MAKE_RULES=Make.rules
976 AC_SUBST_FILE(MAKE_RULES)
978 MAKE_DLL_RULES=dlls/Makedll.rules
979 AC_SUBST_FILE(MAKE_DLL_RULES)
989 dlls/advapi32/Makefile
990 dlls/avifil32/Makefile
991 dlls/comctl32/Makefile
992 dlls/commdlg/Makefile
994 dlls/dciman32/Makefile
1001 dlls/imagehlp/Makefile
1003 dlls/kernel/Makefile
1004 dlls/lzexpand/Makefile
1008 dlls/msacm32/Makefile
1009 dlls/msnet32/Makefile
1010 dlls/msvideo/Makefile
1012 dlls/odbc32/Makefile
1014 dlls/oleaut32/Makefile
1015 dlls/olecli/Makefile
1016 dlls/oledlg/Makefile
1017 dlls/olepro32/Makefile
1018 dlls/olesvr/Makefile
1019 dlls/opengl32/Makefile
1021 dlls/rasapi32/Makefile
1022 dlls/richedit/Makefile
1023 dlls/setupx/Makefile
1024 dlls/shell32/Makefile
1026 dlls/stress/Makefile
1027 dlls/tapi32/Makefile
1028 dlls/ttydrv/Makefile
1029 dlls/urlmon/Makefile
1031 dlls/version/Makefile
1032 dlls/win32s/Makefile
1033 dlls/win87em/Makefile
1034 dlls/winaspi/Makefile
1035 dlls/windebug/Makefile
1036 dlls/wineps/Makefile
1038 dlls/wininet/Makefile
1040 dlls/winmm/joystick/Makefile
1041 dlls/winmm/mcianim/Makefile
1042 dlls/winmm/mciavi/Makefile
1043 dlls/winmm/mcicda/Makefile
1044 dlls/winmm/mciseq/Makefile
1045 dlls/winmm/mciwave/Makefile
1046 dlls/winmm/midimap/Makefile
1047 dlls/winmm/wavemap/Makefile
1048 dlls/winmm/wineoss/Makefile
1049 dlls/winsock/Makefile
1050 dlls/winspool/Makefile
1051 dlls/ttydrv/Makefile
1052 dlls/x11drv/Makefile
1053 documentation/Makefile
1054 documentation/wine.conf.man
1055 documentation/wine.man
1058 graphics/enhmetafiledrv/Makefile
1059 graphics/metafiledrv/Makefile
1060 graphics/ttydrv/Makefile
1061 graphics/win16drv/Makefile
1062 graphics/x11drv/Makefile
1077 programs/clock/Makefile
1078 programs/cmdlgtst/Makefile
1079 programs/control/Makefile
1080 programs/avitools/Makefile
1081 programs/osversioncheck/Makefile
1082 programs/notepad/Makefile
1083 programs/progman/Makefile
1084 programs/regtest/Makefile
1085 programs/regapi/Makefile
1086 programs/view/Makefile
1087 programs/wcmd/Makefile
1088 programs/winemine/Makefile
1089 programs/winhelp/Makefile
1090 programs/winver/Makefile
1096 tools/cvdump/Makefile
1101 windows/ttydrv/Makefile
1102 windows/x11drv/Makefile ])
1104 if test "$have_x" = "no"
1107 echo "*** Warning: X development files not found. Wine will be built without"
1108 echo "*** X support, which currently does not work, and would probably not be"
1109 echo "*** what you want anyway. You will need to install devel packages of"
1110 echo "*** Xlib/Xfree86 and Xpm at the very least."
1111 elif test "$ac_cv_lib_Xpm_XpmCreatePixmapFromData" = "no"
1114 echo "*** Warning: Xpm development files not found. Wine will be built without"
1115 echo "*** Xpm support, which currently does not work. You will need to install"
1116 echo "*** devel packages of Xpm."
1119 if test "$ac_cv_lib_ncurses_resizeterm" = "no" -a "$ac_cv_lib_ncurses_waddch" = "yes"
1122 echo "*** Warning: resizeterm not found in ncurses. Wine will be built without"
1123 echo "*** terminal resize support. Consider upgrading ncurses."
1126 if test "$wine_cv_libc_reentrant" = "no"
1129 echo "*** Warning: non-reentrant libc detected. Wine will be build without"
1130 echo "*** thread support. Consider upgrading libc to a more recent"
1131 echo "*** reentrant version of libc."
1134 if test "$wine_cv_opengl_version_OK" = "no"
1137 echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
1138 echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)."
1141 if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "normal"
1144 echo "*** Warning: the OpenGL version you have installed relies on libpthread for"
1145 echo "*** thread-safety. To prevent crashes, OpenGL support has been removed."
1146 echo "*** A fix for glibc 2.1.3 that seem to work is included in this version of Wine,"
1147 echo "*** start configure with '--enable-opengl' to force OpenGL support."
1150 if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "yes"
1153 echo "*** Warning: you explicitely linked in a thread-safe OpenGL version. If you"
1154 echo "*** experience unusual crashes on DirectDraw games, try first to disable OpenGL"
1155 echo "*** support before reporting bugs."
1160 echo "Configure finished. Do 'make depend && make' to compile Wine."
1163 dnl Local Variables:
1164 dnl comment-start: "dnl "
1166 dnl comment-start-skip: "\\bdnl\\b\\s *"
1167 dnl compile-command: "autoconf"