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 dnl [ --enable-ipc use inter-process communication for DDE],
36 dnl [if test "$enableval" = "no"; then : ; else OPTIONS="-DCONFIG_IPC"; fi])
39 [ --disable-debug compile out all debugging messages],
40 [if test "$enableval" = "no"; then DEBUG_MSGS="no"; fi])
43 [ --disable-trace compile out TRACE messages],
44 [if test "$enableval" = "no"; then TRACE_MSGS="no"; fi])
46 AC_ARG_WITH(reentrant-x,
47 [ --without-reentrant-x compile for use with non-reentrant X libraries])
54 if test "$DEBUG_MSGS" = "no"
56 AC_DEFINE(NO_DEBUG_MSGS)
57 AC_DEFINE(NO_TRACE_MSGS)
59 if test "$TRACE_MSGS" = "no"
61 AC_DEFINE(NO_TRACE_MSGS)
65 dnl **** Check for some programs ****
76 AC_CHECK_PROG(C2MAN,c2man,c2man,true)
77 AC_PATH_PROG(LDCONFIG, ldconfig, false, /sbin:/usr/sbin:$PATH)
79 dnl **** Check for some libraries ****
81 dnl Check for -li386 for NetBSD and OpenBSD
82 AC_CHECK_LIB(i386,i386_set_ldt)
83 dnl Check for -lossaudio for NetBSD
84 AC_CHECK_LIB(ossaudio,_oss_ioctl)
85 dnl Check for -lw for Solaris
86 AC_CHECK_LIB(w,iswalnum)
87 dnl Check for -lnsl for Solaris
88 AC_CHECK_FUNCS(gethostbyname,,AC_CHECK_LIB(nsl,gethostbyname))
89 dnl Check for -lsocket for Solaris
90 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
91 dnl Check for -lxpg4 for FreeBSD
92 AC_CHECK_LIB(xpg4,setrunelocale)
93 dnl Check for -lmmap for OS/2
94 AC_CHECK_LIB(mmap,mmap)
96 AC_CHECK_HEADERS(dlfcn.h,
97 AC_CHECK_FUNCS(dlopen,
98 AC_DEFINE(HAVE_DL_API),
99 AC_CHECK_LIB(dl,dlopen,
100 AC_DEFINE(HAVE_DL_API)
106 if test "$have_x" = "yes"
109 ac_save_CPPFLAGS="$CPPFLAGS"
110 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
113 AC_CHECK_HEADERS(X11/xpm.h)
114 if test "$ac_cv_header_X11_xpm_h" = "yes"
116 AC_CHECK_LIB(Xpm,XpmCreatePixmapFromData,AC_DEFINE(HAVE_LIBXXPM) X_PRE_LIBS="$X_PRE_LIBS -lXpm",,$X_LIBS -lXext -lX11)
119 dnl Check for X Shm extension
120 AC_CHECK_HEADERS(X11/Xlib.h X11/extensions/XShm.h)
121 if test "$ac_cv_header_X11_Xlib_h" = "yes" -a "$ac_cv_header_X11_extensions_XShm_h" = "yes"
123 AC_CHECK_LIB(Xext,XShmQueryExtension,AC_DEFINE(HAVE_LIBXXSHM),,$X_LIBS -lXext -lX11)
125 dnl Check for XFree86 DGA extension
126 AC_CHECK_HEADERS(X11/Xlib.h X11/extensions/xf86dga.h)
127 if test "$ac_cv_header_X11_Xlib_h" = "yes" -a "$ac_cv_header_X11_extensions_xf86dga_h" = "yes"
129 AC_CHECK_LIB(Xxf86dga,XF86DGAQueryExtension,AC_DEFINE(HAVE_LIBXXF86DGA) X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga",,$X_LIBS -lXext -lX11)
132 dnl Check for XFree86 VMODE extension
133 AC_CHECK_HEADERS(X11/Xlib.h X11/extensions/xf86vmode.h)
134 if test "$ac_cv_header_X11_Xlib_h" = "yes" -a "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes"
136 AC_CHECK_LIB(Xxf86vm,XF86VidModeQueryExtension,AC_DEFINE(HAVE_LIBXXF86VM) X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm",,$X_LIBS -lXext -lX11)
139 dnl Check for the presence of Mesa
140 AC_CHECK_HEADERS(GL/gl.h GL/osmesa.h)
141 if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_osmesa_h" = "yes"
143 dnl Check for some problems due to old Mesa versions
144 AC_CACHE_CHECK("for up-to-date Mesa version", wine_cv_mesa_version_OK,
146 [#include <GL/gl.h>],
147 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
148 [wine_cv_mesa_version_OK="yes"],
149 [wine_cv_mesa_version_OK="no"]
153 if test "$wine_cv_mesa_version_OK" = "yes"
155 dnl Check for the presense of the library
156 AC_CHECK_LIB(MesaGL,OSMesaCreateContext,AC_DEFINE(HAVE_LIBMESAGL) X_PRE_LIBS="$X_PRE_LIBS -lMesaGL",,$X_LIBS -lXext -lX11 -lm)
160 CPPFLAGS="$ac_save_CPPFLAGS"
167 dnl **** Check which curses lib to use ***
168 AC_CHECK_HEADERS(ncurses.h)
169 if test "$ac_cv_header_ncurses_h" = "yes"
171 AC_CHECK_LIB(ncurses,waddch)
173 if test "$ac_cv_lib_ncurses_waddch" = "yes"
175 AC_CHECK_LIB(ncurses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
176 AC_CHECK_LIB(ncurses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
178 AC_CHECK_HEADERS(curses.h)
179 if test "$ac_cv_header_curses_h" = "yes"
181 AC_CHECK_LIB(curses,waddch)
182 AC_CHECK_LIB(curses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
183 AC_CHECK_LIB(curses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
187 dnl **** Check for IPX (currently Linux only) ****
188 AC_CACHE_CHECK("for GNU style IPX support", ac_cv_c_ipx_gnu,
190 [#include <sys/socket.h>
191 #include <netipx/ipx.h>],
192 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
193 [AC_DEFINE(HAVE_IPX_GNU)
194 ac_cv_c_ipx_gnu="yes"],
195 [ac_cv_c_ipx_gnu="no"])
198 if test "$ac_cv_c_ipx_gnu" = "no"
200 AC_CACHE_CHECK("for linux style IPX support", ac_cv_c_ipx_linux,
202 [#include <sys/socket.h>
203 #include <asm/types.h>
204 #include <linux/ipx.h>],
205 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
206 [AC_DEFINE(HAVE_IPX_LINUX)
207 ac_cv_c_ipx_linux="yes"],
208 [ac_cv_c_ipx_linux="no"])
212 dnl **** Check for Open Sound System ****
213 AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h soundcard.h, break)
215 AC_CACHE_CHECK("for Open Sound System",
216 ac_cv_c_opensoundsystem,
218 #if defined(HAVE_SYS_SOUNDCARD_H)
219 #include <sys/soundcard.h>
220 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
221 #include <machine/soundcard.h>
222 #elif defined(HAVE_SOUNDCARD_H)
223 #include <soundcard.h>
227 /* check for one of the Open Sound System specific SNDCTL_ defines */
228 #if !defined(SNDCTL_DSP_STEREO)
229 #error No open sound system
231 ],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no"))
233 if test "$ac_cv_c_opensoundsystem" = "yes"
238 AC_CACHE_CHECK("for Open Sound System/MIDI interface",
239 ac_cv_c_opensoundsystem_midi,
241 #if defined(HAVE_SYS_SOUNDCARD_H)
242 #include <sys/soundcard.h>
243 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
244 #include <machine/soundcard.h>
245 #elif defined(HAVE_SOUNDCARD_H)
246 #include <soundcard.h>
250 /* check for one of the Open Sound System specific SNDCTL_SEQ defines */
251 #if !defined(SNDCTL_SEQ_SYNC)
252 #error No open sound system MIDI interface
254 ],ac_cv_c_opensoundsystem_midi="yes",ac_cv_c_opensoundsystem_midi="no"))
256 if test "$ac_cv_c_opensoundsystem_midi" = "yes"
258 AC_DEFINE(HAVE_OSS_MIDI)
261 dnl **** If ln -s doesn't work, use cp instead ****
262 if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
264 dnl **** Check for gcc strength-reduce bug ****
266 if test "x${GCC}" = "xyes"
268 CFLAGS="$CFLAGS -Wall"
269 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
272 static int Array[[3]];
275 for(i=0; i<B; i++) Array[[i]] = i - 3;
276 exit( Array[[1]] != -2 );
278 ac_cv_c_gcc_strength_bug="no",
279 ac_cv_c_gcc_strength_bug="yes",
280 ac_cv_c_gcc_strength_bug="yes") )
281 if test "$ac_cv_c_gcc_strength_bug" = "yes"
283 CFLAGS="$CFLAGS -fno-strength-reduce"
287 dnl **** Check for underscore on external symbols ****
289 AC_CACHE_CHECK("whether external symbols need an underscore prefix",
290 ac_cv_c_extern_prefix,
292 LIBS="conftest_asm.s $LIBS"
293 cat > conftest_asm.s <<EOF
298 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
299 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
301 if test "$ac_cv_c_extern_prefix" = "yes"
303 AC_DEFINE(NEED_UNDERSCORE_PREFIX)
306 dnl **** Check for .string in assembler ****
308 AC_CACHE_CHECK("whether assembler accepts .string",
311 LIBS="conftest_asm.s $LIBS"
312 cat > conftest_asm.s <<EOF
315 AC_TRY_LINK(,,ac_cv_c_asm_string="yes",ac_cv_c_asm_string="no")
317 if test "$ac_cv_c_asm_string" = "yes"
319 AC_DEFINE(HAVE_ASM_STRING)
322 dnl **** Check for working dll ****
326 if test "$LIB_TARGET" = "libwine.so.1.0"
328 AC_CACHE_CHECK("whether we can build a Linux dll",
330 [saved_cflags=$CFLAGS
331 CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0"
332 AC_TRY_LINK(,[return 1],ac_cv_c_dll_linux="yes",ac_cv_c_dll_linux="no")
335 if test "$ac_cv_c_dll_linux" = "yes"
338 LDSHARED="\$(CC) -shared -Wl,-soname,libwine.so"
340 AC_CACHE_CHECK("whether we can build a NetBSD dll",
342 [saved_cflags=$CFLAGS
343 CFLAGS="$CFLAGS -fPIC -Bshareable -Bforcearchive"
344 AC_TRY_LINK(,[return 1],ac_cv_c_dll_netbsd="yes",ac_cv_c_dll_netbsd="no")
347 if test "$ac_cv_c_dll_netbsd" = "yes"
350 LDSHARED="ld -Bshareable -Bforcearchive"
353 if test "$ac_cv_c_dll_linux" = "no" -a "$ac_cv_c_dll_netbsd" = "no"
355 LIB_TARGET="libwine.a"
361 dnl **** Check for reentrant libc ****
363 dnl For cross-compiling we blindly assume that libc is reentrant. This is
364 dnl ok since non-reentrant libc is quite rare (mostly old libc5 versions).
366 wine_cv_libc_reentrant=no
368 dnl Linux style errno location
370 AC_CACHE_CHECK("for reentrant libc: __errno_location", wine_cv_libc_r__errno_location,
371 [AC_TRY_RUN([int myerrno = 0;
373 int *__errno_location(){return &myerrno;}
374 main(){connect(0,buf,255); exit(!myerrno);}],
375 wine_cv_libc_r__errno_location=yes, wine_cv_libc_r__errno_location=no,
376 wine_cv_libc_r__errno_location=yes )
378 if test "$wine_cv_libc_r__errno_location" = "yes"
380 AC_DEFINE(HAVE__ERRNO_LOCATION)
381 wine_cv_libc_reentrant=__errno_location
384 dnl FreeBSD style errno location
386 AC_CACHE_CHECK("for reentrant libc: __error", wine_cv_libc_r__error,
387 [AC_TRY_RUN([int myerrno = 0;
389 int *__error(){return &myerrno;}
390 main(){connect(0,buf,255); exit(!myerrno);}],
391 wine_cv_libc_r__error=yes, wine_cv_libc_r__error=no,
392 wine_cv_libc_r__error=yes )
394 if test "$wine_cv_libc_r__error" = "yes"
396 AC_DEFINE(HAVE__ERROR)
397 wine_cv_libc_reentrant=__error
400 dnl Solaris style errno location
402 AC_CACHE_CHECK("for reentrant libc: ___errno", wine_cv_libc_r___errno,
403 [AC_TRY_RUN([int myerrno = 0;
405 int *___errno(){return &myerrno;}
406 main(){connect(0,buf,255); exit(!myerrno);}],
407 wine_cv_libc_r___errno=yes, wine_cv_libc_r___errno=no,
408 wine_cv_libc_r___errno=yes )
410 if test "$wine_cv_libc_r___errno" = "yes"
412 AC_DEFINE(HAVE___ERRNO)
413 wine_cv_libc_reentrant=___errno
415 if test "$wine_cv_libc_reentrant" = "no"
417 AC_DEFINE(NO_REENTRANT_LIBC)
420 dnl **** Check for reentrant X libraries ****
422 dnl This may fail to determine whether X libraries are reentrant if
423 dnl AC_PATH_XTRA does not set x_libraries. In this case manual configuration
424 dnl is possible with the --without-reentrant-x option.
426 if test "$have_x" = "yes" -a "$wine_cv_libc_reentrant" != "no"
428 AC_CACHE_CHECK( "for reentrant X libraries", wine_cv_x_reentrant,
429 [ if test "x$with_reentrant_x" = "xno"
431 wine_cv_x_reentrant=no
434 for dir in "$x_libraries" /usr/lib /usr/local/lib /lib; do
435 if test -r $dir/libX11.so; then
436 libX11_check="-D $dir/libX11.so"
439 if test -r $dir/libX11.a; then
440 libX11_check="$dir/libX11.a"
444 if test "$libX11_check" != "none"; then
445 if nm $libX11_check | grep $wine_cv_libc_reentrant >/dev/null 2>&1
447 wine_cv_x_reentrant=yes
449 wine_cv_x_reentrant=no
452 wine_cv_x_reentrant=unknown
456 wine_cv_x_reentrant=no
458 if test "$wine_cv_x_reentrant" = "no"
460 AC_DEFINE(NO_REENTRANT_X11)
463 dnl **** Check for functions ****
484 dnl **** Check for header files ****
518 dnl **** Check for types ****
523 AC_CHECK_SIZEOF(long long,0)
525 dnl **** statfs checks ****
527 if test "$ac_cv_header_sys_vfs_h" = "yes"
529 AC_CACHE_CHECK( "whether sys/vfs.h defines statfs",
530 wine_cv_sys_vfs_has_statfs,
532 #include <sys/types.h>
533 #ifdef HAVE_SYS_PARAM_H
534 # include <sys/param.h>
540 memset(&stfs,0,sizeof(stfs));
541 ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no
544 if test "$wine_cv_sys_vfs_has_statfs" = "yes"
546 AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS)
550 if test "$ac_cv_header_sys_statfs_h" = "yes"
552 AC_CACHE_CHECK( "whether sys/statfs.h defines statfs",
553 wine_cv_sys_statfs_has_statfs,
555 #include <sys/types.h>
556 #ifdef HAVE_SYS_PARAM_H
557 # include <sys/param.h>
559 #include <sys/statfs.h>
562 ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no
565 if test "$wine_cv_sys_statfs_has_statfs" = "yes"
567 AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS)
571 if test "$ac_cv_header_sys_mount_h" = "yes"
573 AC_CACHE_CHECK( "whether sys/mount.h defines statfs",
574 wine_cv_sys_mount_has_statfs,
576 #include <sys/types.h>
577 #ifdef HAVE_SYS_PARAM_H
578 # include <sys/param.h>
580 #include <sys/mount.h>
583 ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no
586 if test "$wine_cv_sys_mount_has_statfs" = "yes"
588 AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT)
592 dnl **** FIXME: what about mixed cases, where we need two of them? ***
594 AC_CACHE_CHECK( "for statfs.f_bfree", wine_cv_statfs_bfree,
595 [ if test "x$statfs_bfree" = "xno"
597 wine_cv_statfs_bfree=no
600 #include <sys/types.h>
601 #ifdef HAVE_SYS_PARAM_H
602 # include <sys/param.h>
604 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
605 # include <sys/mount.h>
607 # ifdef STATFS_DEFINED_BY_SYS_VFS
608 # include <sys/vfs.h>
610 # ifdef STATFS_DEFINED_BY_SYS_STATFS
611 # include <sys/statfs.h>
619 ],wine_cv_statfs_bfree=yes,wine_cv_statfs_bfree=no
622 if test "$wine_cv_statfs_bfree" = "yes"
624 AC_DEFINE(STATFS_HAS_BFREE)
627 AC_CACHE_CHECK( "for statfs.f_bavail", wine_cv_statfs_bavail,
628 [ if test "x$statfs_bavail" = "xno"
630 wine_cv_statfs_bavail=no
633 #include <sys/types.h>
634 #ifdef HAVE_SYS_PARAM_H
635 # include <sys/param.h>
637 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
638 # include <sys/mount.h>
640 # ifdef STATFS_DEFINED_BY_SYS_VFS
641 # include <sys/vfs.h>
643 # ifdef STATFS_DEFINED_BY_SYS_STATFS
644 # include <sys/statfs.h>
652 ],wine_cv_statfs_bavail=yes,wine_cv_statfs_bavail=no
655 if test "$wine_cv_statfs_bavail" = "yes"
657 AC_DEFINE(STATFS_HAS_BAVAIL)
660 dnl *** check for working sigaltstack
661 dnl glibc 2.0x defines it, but it always fails... so it is useless for us.
663 AC_CACHE_CHECK("for working sigaltstack",
664 ac_cv_c_working_sigaltstack,
667 #include <time.h> /* <sys/time.h> ? bad magic without end */
668 #include <sys/types.h>
669 #include <sys/signal.h>
670 #ifdef HAVE_SYS_PARAM_H
671 # include <sys/param.h>
673 #ifdef HAVE_SYSCALL_H
674 # include <syscall.h>
676 # ifdef HAVE_SYS_SYSCALL_H
677 # include <sys/syscall.h>
681 unsigned char *xaltstack;
684 main(int argc,char **argv) {
685 struct sigaltstack ss;
687 xaltstack = malloc(16384);
688 ss.ss_sp = xaltstack;
691 if (sigaltstack(&ss, NULL) < 0) {
692 /* this catches the glibc case */
693 perror("sigaltstack");
694 return (1); /* aka exit(1) aka fail */
696 /* assume it works. */
700 ac_cv_c_working_sigaltstack="yes",
701 ac_cv_c_working_sigaltstack="no",
702 ac_cv_c_working_sigaltstack="no"
705 if test "$ac_cv_c_working_sigaltstack" = "yes"
707 AC_DEFINE(HAVE_WORKING_SIGALTSTACK)
711 dnl *** check for file descriptor passing with msg_accrights
713 AC_CACHE_CHECK("for msg_accrights in struct msghdr", ac_cv_c_msg_accrights,
714 AC_TRY_COMPILE([#include <sys/types.h>
715 #include <sys/socket.h>],[struct msghdr hdr; hdr.msg_accrights=0],
716 ac_cv_c_msg_accrights="yes", ac_cv_c_msg_accrights="no"))
717 if test "$ac_cv_c_msg_accrights" = "yes"
719 AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS)
722 dnl *** check for the need to define __i386__
724 AC_CACHE_CHECK("whether we need to define __i386__",ac_cv_cpp_def_i386,
725 AC_EGREP_CPP(yes,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
728 ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no"))
729 if test "$ac_cv_cpp_def_i386" = "yes"
731 CFLAGS="$CFLAGS -D__i386__"
734 dnl $GCC is set by autoconf
736 if test "$GCC" = "yes"
738 GCC_NO_BUILTIN="-fno-builtin"
740 AC_SUBST(GCC_NO_BUILTIN)
742 dnl **** Generate output files ****
744 MAKE_RULES=Make.rules
745 AC_SUBST_FILE(MAKE_RULES)
754 dlls/advapi32/Makefile
755 dlls/avifil32/Makefile
756 dlls/comctl32/Makefile
757 dlls/commdlg/Makefile
758 dlls/imagehlp/Makefile
760 dlls/msacm32/Makefile
763 dlls/rasapi32/Makefile
764 dlls/shell32/Makefile
767 dlls/version/Makefile
768 dlls/winaspi/Makefile
769 dlls/winspool/Makefile
770 dlls/wnaspi32/Makefile
771 documentation/Makefile
772 documentation/wine.man
775 graphics/enhmetafiledrv/Makefile
776 graphics/metafiledrv/Makefile
777 graphics/psdrv/Makefile
778 graphics/ttydrv/Makefile
779 graphics/win16drv/Makefile
780 graphics/x11drv/Makefile
797 programs/clock/Makefile
798 programs/cmdlgtst/Makefile
799 programs/control/Makefile
800 programs/avitools/Makefile
801 programs/notepad/Makefile
802 programs/progman/Makefile
803 programs/regtest/Makefile
804 programs/regapi/Makefile
805 programs/view/Makefile
806 programs/wcmd/Makefile
807 programs/winhelp/Makefile
808 programs/winver/Makefile
819 windows/ttydrv/Makefile
820 windows/x11drv/Makefile ])
822 if test "$have_x" = "no"
825 echo "*** Warning: X development files not found. Wine will be built without"
826 echo "*** X support, which currently does not work, and would probably not be"
827 echo "*** what you want anyway. You will need to install devel packages of"
828 echo "*** Xlib/Xfree86 and Xpm at the very least."
829 elif test "$ac_cv_lib_Xpm_XpmCreatePixmapFromData" = "no"
832 echo "*** Warning: Xpm development files not found. Wine will be built without"
833 echo "*** Xpm support, which currently does not work. You will need to install"
834 echo "*** devel packages of Xpm."
837 if test "$ac_cv_lib_ncurses_resizeterm" = "no" -a "$ac_cv_lib_ncurses_waddch" = "yes"
840 echo "*** Warning: resizeterm not found in ncurses. Wine will be built without"
841 echo "*** terminal resize support. Consider upgrading ncurses."
844 if test "$wine_cv_libc_reentrant" = "no"
847 echo "*** Warning: non-reentrant libc detected. Wine will be build without"
848 echo "*** thread support. Consider upgrading libc to a more recent"
849 echo "*** reentrant version of libc."
852 if test "$wine_cv_mesa_version_OK" = "no"
855 echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
856 echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)"
860 echo "Configure finished. Do 'make depend && make' to compile Wine."
864 dnl comment-start: "dnl "
866 dnl comment-start-skip: "\\bdnl\\b\\s *"
867 dnl compile-command: "autoconf"