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 ****
18 ALT_LINK="-L\$(TOPOBJDIR) -lwine"
19 TRACE_MSGS=yes # the TRACE() macro
20 DEBUG_MSGS=yes # the TRACE(), WARN(), and FIXME() macros.
22 AC_ARG_ENABLE(emulator,
23 [ --disable-emulator build only the Wine library, not the emulator],
24 [if test "$enableval" = "no"; then MAIN_TARGET="lib"; fi])
27 [ --enable-dll build the Wine library as a DLL],
28 [if test "$enableval" = "no"; then : ; else LIB_TARGET="libwine.so.1.0"; fi])
31 [ --disable-lib build the Wine without building libwine.a],
32 [if test "$enableval" = "no"; then ALT_LINK="\$(LIBOBJS) \$(X11OBJS)"; LIB_TARGET=""; fi])
35 [ --disable-debug compile out all debugging messages],
36 [if test "$enableval" = "no"; then DEBUG_MSGS="no"; fi])
39 [ --disable-trace compile out TRACE messages],
40 [if test "$enableval" = "no"; then TRACE_MSGS="no"; fi])
42 AC_ARG_WITH(reentrant-x,
43 [ --without-reentrant-x compile for use with non-reentrant X libraries])
50 if test "$DEBUG_MSGS" = "no"
52 AC_DEFINE(NO_DEBUG_MSGS)
53 AC_DEFINE(NO_TRACE_MSGS)
55 if test "$TRACE_MSGS" = "no"
57 AC_DEFINE(NO_TRACE_MSGS)
61 dnl **** Check for some programs ****
72 AC_CHECK_PROG(C2MAN,c2man,c2man,true)
73 AC_PATH_PROG(LDCONFIG, ldconfig, false, /sbin:/usr/sbin:$PATH)
76 AC_CHECK_PROGS(LINT, lclint lint)
77 if test "$LINT" = "lint"
79 LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4"
80 dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64'
85 dnl **** Check for some libraries ****
87 dnl Check for -lm for BeOS
89 dnl Check for -li386 for NetBSD and OpenBSD
90 AC_CHECK_LIB(i386,i386_set_ldt)
91 dnl Check for -lossaudio for NetBSD
92 AC_CHECK_LIB(ossaudio,_oss_ioctl)
93 dnl Check for -lw for Solaris
94 AC_CHECK_LIB(w,iswalnum)
95 dnl Check for -lnsl for Solaris
96 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))
97 dnl Check for -lsocket for Solaris
98 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
99 dnl Check for -lxpg4 for FreeBSD
100 AC_CHECK_LIB(xpg4,setrunelocale)
101 dnl Check for -lmmap for OS/2
102 AC_CHECK_LIB(mmap,mmap)
103 dnl Check for openpty
104 AC_CHECK_FUNCS(openpty,,
105 AC_CHECK_LIB(util,openpty,
106 AC_DEFINE(HAVE_OPENPTY)
110 AC_CHECK_HEADERS(dlfcn.h,
111 AC_CHECK_FUNCS(dlopen,
112 AC_DEFINE(HAVE_DL_API),
113 AC_CHECK_LIB(dl,dlopen,
114 AC_DEFINE(HAVE_DL_API)
120 if test "$have_x" = "yes"
123 ac_save_CPPFLAGS="$CPPFLAGS"
124 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
127 AC_CHECK_HEADERS(X11/xpm.h)
128 if test "$ac_cv_header_X11_xpm_h" = "yes"
130 AC_CHECK_LIB(Xpm,XpmCreatePixmapFromData,AC_DEFINE(HAVE_LIBXXPM) X_PRE_LIBS="$X_PRE_LIBS -lXpm",,$X_LIBS -lXext -lX11)
133 dnl Check for X Shm extension
134 AC_CHECK_HEADERS(X11/Xlib.h X11/extensions/XShm.h)
135 if test "$ac_cv_header_X11_Xlib_h" = "yes" -a "$ac_cv_header_X11_extensions_XShm_h" = "yes"
137 AC_CHECK_LIB(Xext,XShmQueryExtension,AC_DEFINE(HAVE_LIBXXSHM),,$X_LIBS -lXext -lX11)
139 dnl Check for XFree86 DGA / DGA 2.0 extension
140 AC_CHECK_HEADERS(X11/Xlib.h X11/extensions/xf86dga.h)
141 if test "$ac_cv_header_X11_Xlib_h" = "yes" -a "$ac_cv_header_X11_extensions_xf86dga_h" = "yes"
143 AC_CHECK_LIB(Xxf86dga,XDGAQueryExtension,AC_DEFINE(HAVE_LIBXXF86DGA2) X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga",,$X_LIBS -lXext -lX11)
144 AC_CHECK_LIB(Xxf86dga,XF86DGAQueryExtension,AC_DEFINE(HAVE_LIBXXF86DGA) X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga",,$X_LIBS -lXext -lX11)
147 dnl Check for XFree86 VMODE extension
148 AC_CHECK_HEADERS(X11/Xlib.h X11/extensions/xf86vmode.h)
149 if test "$ac_cv_header_X11_Xlib_h" = "yes" -a "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes"
151 AC_CHECK_LIB(Xxf86vm,XF86VidModeQueryExtension,AC_DEFINE(HAVE_LIBXXF86VM) X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm",,$X_LIBS -lXext -lX11)
154 dnl Check for the presence of Mesa
155 AC_CHECK_HEADERS(GL/gl.h GL/glx.h GL/osmesa.h)
156 if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_glx_h" = "yes"
158 dnl Check for some problems due to old Mesa versions
159 AC_CACHE_CHECK("for up-to-date Mesa version", wine_cv_mesa_version_OK,
161 [#include <GL/gl.h>],
162 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
163 [wine_cv_mesa_version_OK="yes"],
164 [wine_cv_mesa_version_OK="no"]
168 if test "$wine_cv_mesa_version_OK" = "yes"
170 dnl Check for the presense of the library
171 AC_CHECK_LIB(GL,glXCreateContext,AC_DEFINE(HAVE_LIBMESAGL) X_PRE_LIBS="$X_PRE_LIBS -lGL",,$X_LIBS -lXext -lX11 -lm)
172 if test "$ac_cv_lib_GL_glXCreateContext" = "no"
174 AC_CHECK_LIB(MesaGL,glXCreateContext,AC_DEFINE(HAVE_LIBMESAGL) X_PRE_LIBS="$X_PRE_LIBS -lMesaGL",,$X_LIBS -lXext -lX11 -lm)
179 CPPFLAGS="$ac_save_CPPFLAGS"
186 dnl **** Check which curses lib to use ***
187 AC_CHECK_HEADERS(ncurses.h)
188 if test "$ac_cv_header_ncurses_h" = "yes"
190 AC_CHECK_LIB(ncurses,waddch)
192 if test "$ac_cv_lib_ncurses_waddch" = "yes"
194 AC_CHECK_LIB(ncurses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
195 AC_CHECK_LIB(ncurses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
197 AC_CHECK_HEADERS(curses.h)
198 if test "$ac_cv_header_curses_h" = "yes"
200 AC_CHECK_LIB(curses,waddch)
201 AC_CHECK_LIB(curses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
202 AC_CHECK_LIB(curses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
206 dnl **** Check for IPX (currently Linux only) ****
207 AC_CACHE_CHECK("for GNU style IPX support", ac_cv_c_ipx_gnu,
209 [#include <sys/socket.h>
210 #include <netipx/ipx.h>],
211 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
212 [AC_DEFINE(HAVE_IPX_GNU)
213 ac_cv_c_ipx_gnu="yes"],
214 [ac_cv_c_ipx_gnu="no"])
217 if test "$ac_cv_c_ipx_gnu" = "no"
219 AC_CACHE_CHECK("for linux style IPX support", ac_cv_c_ipx_linux,
221 [#include <sys/socket.h>
222 #include <asm/types.h>
223 #include <linux/ipx.h>],
224 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
225 [AC_DEFINE(HAVE_IPX_LINUX)
226 ac_cv_c_ipx_linux="yes"],
227 [ac_cv_c_ipx_linux="no"])
231 dnl **** Check for Open Sound System ****
232 AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h soundcard.h, break)
234 AC_CACHE_CHECK("for Open Sound System",
235 ac_cv_c_opensoundsystem,
237 #if defined(HAVE_SYS_SOUNDCARD_H)
238 #include <sys/soundcard.h>
239 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
240 #include <machine/soundcard.h>
241 #elif defined(HAVE_SOUNDCARD_H)
242 #include <soundcard.h>
246 /* check for one of the Open Sound System specific SNDCTL_ defines */
247 #if !defined(SNDCTL_DSP_STEREO)
248 #error No open sound system
250 ],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no"))
252 if test "$ac_cv_c_opensoundsystem" = "yes"
257 AC_CACHE_CHECK("for Open Sound System/MIDI interface",
258 ac_cv_c_opensoundsystem_midi,
260 #if defined(HAVE_SYS_SOUNDCARD_H)
261 #include <sys/soundcard.h>
262 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
263 #include <machine/soundcard.h>
264 #elif defined(HAVE_SOUNDCARD_H)
265 #include <soundcard.h>
269 /* check for one of the Open Sound System specific SNDCTL_SEQ defines */
270 #if !defined(SNDCTL_SEQ_SYNC)
271 #error No open sound system MIDI interface
273 ],ac_cv_c_opensoundsystem_midi="yes",ac_cv_c_opensoundsystem_midi="no"))
275 if test "$ac_cv_c_opensoundsystem_midi" = "yes"
277 AC_DEFINE(HAVE_OSS_MIDI)
280 dnl **** If ln -s doesn't work, use cp instead ****
281 if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
283 dnl **** Check for gcc strength-reduce bug ****
285 if test "x${GCC}" = "xyes"
287 CFLAGS="$CFLAGS -Wall"
288 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
291 static int Array[[3]];
294 for(i=0; i<B; i++) Array[[i]] = i - 3;
295 exit( Array[[1]] != -2 );
297 ac_cv_c_gcc_strength_bug="no",
298 ac_cv_c_gcc_strength_bug="yes",
299 ac_cv_c_gcc_strength_bug="yes") )
300 if test "$ac_cv_c_gcc_strength_bug" = "yes"
302 CFLAGS="$CFLAGS -fno-strength-reduce"
306 dnl **** Check for underscore on external symbols ****
308 AC_CACHE_CHECK("whether external symbols need an underscore prefix",
309 ac_cv_c_extern_prefix,
311 LIBS="conftest_asm.s $LIBS"
312 cat > conftest_asm.s <<EOF
317 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
318 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
320 if test "$ac_cv_c_extern_prefix" = "yes"
322 AC_DEFINE(NEED_UNDERSCORE_PREFIX)
325 dnl **** Check for .string in assembler ****
327 AC_CACHE_CHECK("whether assembler accepts .string",
330 LIBS="conftest_asm.s $LIBS"
331 cat > conftest_asm.s <<EOF
334 AC_TRY_LINK(,,ac_cv_c_asm_string="yes",ac_cv_c_asm_string="no")
336 if test "$ac_cv_c_asm_string" = "yes"
338 AC_DEFINE(HAVE_ASM_STRING)
341 dnl **** Check for working dll ****
346 if test "$LIB_TARGET" = "libwine.so.1.0"
348 AC_CACHE_CHECK("whether we can build a Linux dll",
350 [saved_cflags=$CFLAGS
351 CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0"
352 AC_TRY_LINK(,[return 1],ac_cv_c_dll_linux="yes",ac_cv_c_dll_linux="no")
355 if test "$ac_cv_c_dll_linux" = "yes"
359 LDSHARED="\$(CC) -shared -Wl,-soname,libwine.so"
361 AC_CACHE_CHECK("whether we can build a UnixWare dll",
362 ac_cv_c_dll_unixware,
363 [saved_cflags=$CFLAGS
364 CFLAGS="$CFLAGS -fPIC -Wl,-G,conftest.so.1.0"
365 AC_TRY_LINK(,[return 1],ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")
368 if test "$ac_cv_c_dll_unixware" = "yes"
372 LDSHARED="\$(CC) -Wl,-G,-h,/usr/local/lib/libwine.so"
374 AC_CACHE_CHECK("whether we can build a NetBSD dll",
376 [saved_cflags=$CFLAGS
377 CFLAGS="$CFLAGS -fPIC -Bshareable -Bforcearchive"
378 AC_TRY_LINK(,[return 1],ac_cv_c_dll_netbsd="yes",ac_cv_c_dll_netbsd="no")
381 if test "$ac_cv_c_dll_netbsd" = "yes"
385 LDSHARED="ld -Bshareable -Bforcearchive"
389 if test "$ac_cv_c_dll_linux" = "no" -a "$ac_cv_c_dll_unixware" = "no" -a "$ac_cv_c_dll_netbsd" = "no"
391 LIB_TARGET="libwine.a"
398 dnl **** Check for reentrant libc ****
400 dnl For cross-compiling we blindly assume that libc is reentrant. This is
401 dnl ok since non-reentrant libc is quite rare (mostly old libc5 versions).
403 wine_cv_libc_reentrant=no
405 dnl Linux style errno location
407 AC_CACHE_CHECK("for reentrant libc: __errno_location", wine_cv_libc_r__errno_location,
408 [AC_TRY_RUN([int myerrno = 0;
410 int *__errno_location(){return &myerrno;}
411 main(){connect(0,buf,255); exit(!myerrno);}],
412 wine_cv_libc_r__errno_location=yes, wine_cv_libc_r__errno_location=no,
413 wine_cv_libc_r__errno_location=yes )
415 if test "$wine_cv_libc_r__errno_location" = "yes"
417 AC_DEFINE(HAVE__ERRNO_LOCATION)
418 wine_cv_libc_reentrant=__errno_location
421 dnl FreeBSD style errno location
423 AC_CACHE_CHECK("for reentrant libc: __error", wine_cv_libc_r__error,
424 [AC_TRY_RUN([int myerrno = 0;
426 int *__error(){return &myerrno;}
427 main(){connect(0,buf,255); exit(!myerrno);}],
428 wine_cv_libc_r__error=yes, wine_cv_libc_r__error=no,
429 wine_cv_libc_r__error=yes )
431 if test "$wine_cv_libc_r__error" = "yes"
433 AC_DEFINE(HAVE__ERROR)
434 wine_cv_libc_reentrant=__error
437 dnl Solaris style errno location
439 AC_CACHE_CHECK("for reentrant libc: ___errno", wine_cv_libc_r___errno,
440 [AC_TRY_RUN([int myerrno = 0;
442 int *___errno(){return &myerrno;}
443 main(){connect(0,buf,255); exit(!myerrno);}],
444 wine_cv_libc_r___errno=yes, wine_cv_libc_r___errno=no,
445 wine_cv_libc_r___errno=yes )
447 if test "$wine_cv_libc_r___errno" = "yes"
449 AC_DEFINE(HAVE___ERRNO)
450 wine_cv_libc_reentrant=___errno
453 dnl UnixWare style errno location
455 AC_CACHE_CHECK("for reentrant libc: __thr_errno", wine_cv_libc_r__thr_errno,
456 [AC_TRY_RUN([int myerrno = 0;
458 int *__thr_errno(){return &myerrno;}
459 main(){connect(0,buf,255); exit(!myerrno);}],
460 wine_cv_libc_r__thr_errno=yes, wine_cv_libc_r__thr_errno=no,
461 wine_cv_libc_r__thr_errno=yes )
463 if test "$wine_cv_libc_r__thr_errno" = "yes"
465 AC_DEFINE(HAVE__THR_ERRNO)
466 wine_cv_libc_reentrant=__thr_errno
468 if test "$wine_cv_libc_reentrant" = "no"
470 AC_DEFINE(NO_REENTRANT_LIBC)
473 dnl **** Check for reentrant X libraries ****
475 dnl This may fail to determine whether X libraries are reentrant if
476 dnl AC_PATH_XTRA does not set x_libraries. In this case manual configuration
477 dnl is possible with the --without-reentrant-x option.
479 if test "$have_x" = "yes" -a "$wine_cv_libc_reentrant" != "no"
481 AC_CACHE_CHECK( "for reentrant X libraries", wine_cv_x_reentrant,
482 [ if test "x$with_reentrant_x" = "xno"
484 wine_cv_x_reentrant=no
487 for dir in "$x_libraries" /usr/lib /usr/local/lib /lib; do
488 if test -r $dir/libX11.so; then
489 libX11_check="-D $dir/libX11.so"
492 if test -r $dir/libX11.a; then
493 libX11_check="$dir/libX11.a"
497 if test "$libX11_check" != "none"; then
498 if nm $libX11_check | grep $wine_cv_libc_reentrant >/dev/null 2>&1
500 wine_cv_x_reentrant=yes
502 wine_cv_x_reentrant=no
505 wine_cv_x_reentrant=unknown
509 wine_cv_x_reentrant=no
511 if test "$wine_cv_x_reentrant" = "no"
513 AC_DEFINE(NO_REENTRANT_X11)
516 dnl **** Check for endianness ****
520 dnl **** Check for functions ****
552 dnl **** Check for header files ****
605 dnl **** Check for types ****
610 AC_CHECK_SIZEOF(long long,0)
612 if test "$ac_cv_header_linux_joystick_h" = "yes"
614 AC_CACHE_CHECK("whether linux/joystick.h uses the Linux 2.2+ API",
615 wine_cv_linux_joystick_22_api,
617 #include <sys/ioctl.h>
618 #include <linux/joystick.h>
620 struct js_event blub;
621 #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
622 #error "no 2.2 header"
625 wine_cv_linux_joystick_22_api=yes,
626 wine_cv_linux_joystick_22_api=no,
627 wine_cv_linux_joystick_22_api=no
630 if test "$wine_cv_linux_joystick_22_api"
632 AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API)
636 dnl **** statfs checks ****
638 if test "$ac_cv_header_sys_vfs_h" = "yes"
640 AC_CACHE_CHECK( "whether sys/vfs.h defines statfs",
641 wine_cv_sys_vfs_has_statfs,
643 #include <sys/types.h>
644 #ifdef HAVE_SYS_PARAM_H
645 # include <sys/param.h>
651 memset(&stfs,0,sizeof(stfs));
652 ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no
655 if test "$wine_cv_sys_vfs_has_statfs" = "yes"
657 AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS)
661 if test "$ac_cv_header_sys_statfs_h" = "yes"
663 AC_CACHE_CHECK( "whether sys/statfs.h defines statfs",
664 wine_cv_sys_statfs_has_statfs,
666 #include <sys/types.h>
667 #ifdef HAVE_SYS_PARAM_H
668 # include <sys/param.h>
670 #include <sys/statfs.h>
673 ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no
676 if test "$wine_cv_sys_statfs_has_statfs" = "yes"
678 AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS)
682 if test "$ac_cv_header_sys_mount_h" = "yes"
684 AC_CACHE_CHECK( "whether sys/mount.h defines statfs",
685 wine_cv_sys_mount_has_statfs,
687 #include <sys/types.h>
688 #ifdef HAVE_SYS_PARAM_H
689 # include <sys/param.h>
691 #include <sys/mount.h>
694 ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no
697 if test "$wine_cv_sys_mount_has_statfs" = "yes"
699 AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT)
703 dnl **** FIXME: what about mixed cases, where we need two of them? ***
705 AC_CACHE_CHECK( "for statfs.f_bfree", wine_cv_statfs_bfree,
706 [ if test "x$statfs_bfree" = "xno"
708 wine_cv_statfs_bfree=no
711 #include <sys/types.h>
712 #ifdef HAVE_SYS_PARAM_H
713 # include <sys/param.h>
715 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
716 # include <sys/mount.h>
718 # ifdef STATFS_DEFINED_BY_SYS_VFS
719 # include <sys/vfs.h>
721 # ifdef STATFS_DEFINED_BY_SYS_STATFS
722 # include <sys/statfs.h>
730 ],wine_cv_statfs_bfree=yes,wine_cv_statfs_bfree=no
733 if test "$wine_cv_statfs_bfree" = "yes"
735 AC_DEFINE(STATFS_HAS_BFREE)
738 AC_CACHE_CHECK( "for statfs.f_bavail", wine_cv_statfs_bavail,
739 [ if test "x$statfs_bavail" = "xno"
741 wine_cv_statfs_bavail=no
744 #include <sys/types.h>
745 #ifdef HAVE_SYS_PARAM_H
746 # include <sys/param.h>
748 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
749 # include <sys/mount.h>
751 # ifdef STATFS_DEFINED_BY_SYS_VFS
752 # include <sys/vfs.h>
754 # ifdef STATFS_DEFINED_BY_SYS_STATFS
755 # include <sys/statfs.h>
763 ],wine_cv_statfs_bavail=yes,wine_cv_statfs_bavail=no
766 if test "$wine_cv_statfs_bavail" = "yes"
768 AC_DEFINE(STATFS_HAS_BAVAIL)
771 dnl *** check for working sigaltstack
772 dnl glibc 2.0x defines it, but it always fails... so it is useless for us.
774 AC_CACHE_CHECK("for working sigaltstack",
775 ac_cv_c_working_sigaltstack,
778 #include <time.h> /* <sys/time.h> ? bad magic without end */
779 #include <sys/types.h>
780 #include <sys/signal.h>
781 #ifdef HAVE_SYS_PARAM_H
782 # include <sys/param.h>
784 #ifdef HAVE_SYSCALL_H
785 # include <syscall.h>
787 # ifdef HAVE_SYS_SYSCALL_H
788 # include <sys/syscall.h>
792 unsigned char *xaltstack;
795 main(int argc,char **argv) {
796 struct sigaltstack ss;
798 xaltstack = malloc(16384);
799 ss.ss_sp = xaltstack;
802 if (sigaltstack(&ss, NULL) < 0) {
803 /* this catches the glibc case */
804 perror("sigaltstack");
805 return (1); /* aka exit(1) aka fail */
807 /* assume it works. */
811 ac_cv_c_working_sigaltstack="yes",
812 ac_cv_c_working_sigaltstack="no",
813 ac_cv_c_working_sigaltstack="no"
816 if test "$ac_cv_c_working_sigaltstack" = "yes"
818 AC_DEFINE(HAVE_WORKING_SIGALTSTACK)
822 dnl *** check for file descriptor passing with msg_accrights
824 AC_CACHE_CHECK("for msg_accrights in struct msghdr", ac_cv_c_msg_accrights,
825 AC_TRY_COMPILE([#include <sys/types.h>
826 #include <sys/socket.h>],[struct msghdr hdr; hdr.msg_accrights=0],
827 ac_cv_c_msg_accrights="yes", ac_cv_c_msg_accrights="no"))
828 if test "$ac_cv_c_msg_accrights" = "yes"
830 AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS)
833 dnl *** check for the need to define __i386__
835 AC_CACHE_CHECK("whether we need to define __i386__",ac_cv_cpp_def_i386,
836 AC_EGREP_CPP(yes,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
839 ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no"))
840 if test "$ac_cv_cpp_def_i386" = "yes"
842 CFLAGS="$CFLAGS -D__i386__"
843 LINTFLAGS="$LINTFLAGS -D__i386__"
846 dnl $GCC is set by autoconf
848 if test "$GCC" = "yes"
850 GCC_NO_BUILTIN="-fno-builtin"
852 AC_SUBST(GCC_NO_BUILTIN)
854 dnl **** Generate output files ****
856 MAKE_RULES=Make.rules
857 AC_SUBST_FILE(MAKE_RULES)
866 dlls/advapi32/Makefile
867 dlls/avifil32/Makefile
868 dlls/comctl32/Makefile
869 dlls/commdlg/Makefile
871 dlls/dciman32/Makefile
872 dlls/display/Makefile
876 dlls/imagehlp/Makefile
878 dlls/lzexpand/Makefile
882 dlls/msacm32/Makefile
883 dlls/msnet32/Makefile
884 dlls/msvideo/Makefile
887 dlls/oleaut32/Makefile
892 dlls/rasapi32/Makefile
893 dlls/shell32/Makefile
898 dlls/version/Makefile
900 dlls/win87em/Makefile
901 dlls/winaspi/Makefile
902 dlls/windebug/Makefile
905 dlls/winmm/mcianim/Makefile
906 dlls/winmm/mciavi/Makefile
907 dlls/winmm/mcicda/Makefile
908 dlls/winmm/mciseq/Makefile
909 dlls/winmm/mciwave/Makefile
910 dlls/winmm/midimap/Makefile
911 dlls/winmm/wavemap/Makefile
912 dlls/winmm/wineoss/Makefile
913 dlls/winspool/Makefile
914 dlls/wnaspi32/Makefile
915 documentation/Makefile
916 documentation/wine.conf.man
917 documentation/wine.man
920 graphics/enhmetafiledrv/Makefile
921 graphics/metafiledrv/Makefile
922 graphics/psdrv/Makefile
923 graphics/ttydrv/Makefile
924 graphics/win16drv/Makefile
925 graphics/x11drv/Makefile
940 programs/clock/Makefile
941 programs/cmdlgtst/Makefile
942 programs/control/Makefile
943 programs/avitools/Makefile
944 programs/osversioncheck/Makefile
945 programs/notepad/Makefile
946 programs/progman/Makefile
947 programs/regtest/Makefile
948 programs/regapi/Makefile
949 programs/view/Makefile
950 programs/wcmd/Makefile
951 programs/winhelp/Makefile
952 programs/winver/Makefile
963 windows/ttydrv/Makefile
964 windows/x11drv/Makefile ])
966 if test "$have_x" = "no"
969 echo "*** Warning: X development files not found. Wine will be built without"
970 echo "*** X support, which currently does not work, and would probably not be"
971 echo "*** what you want anyway. You will need to install devel packages of"
972 echo "*** Xlib/Xfree86 and Xpm at the very least."
973 elif test "$ac_cv_lib_Xpm_XpmCreatePixmapFromData" = "no"
976 echo "*** Warning: Xpm development files not found. Wine will be built without"
977 echo "*** Xpm support, which currently does not work. You will need to install"
978 echo "*** devel packages of Xpm."
981 if test "$ac_cv_lib_ncurses_resizeterm" = "no" -a "$ac_cv_lib_ncurses_waddch" = "yes"
984 echo "*** Warning: resizeterm not found in ncurses. Wine will be built without"
985 echo "*** terminal resize support. Consider upgrading ncurses."
988 if test "$wine_cv_libc_reentrant" = "no"
991 echo "*** Warning: non-reentrant libc detected. Wine will be build without"
992 echo "*** thread support. Consider upgrading libc to a more recent"
993 echo "*** reentrant version of libc."
996 if test "$wine_cv_mesa_version_OK" = "no"
999 echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
1000 echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)"
1004 echo "Configure finished. Do 'make depend && make' to compile Wine."
1007 dnl Local Variables:
1008 dnl comment-start: "dnl "
1010 dnl comment-start-skip: "\\bdnl\\b\\s *"
1011 dnl compile-command: "autoconf"