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 dnl **** Command-line arguments ****
12 LIBEXT=so # library type .so or .a
13 TRACE_MSGS=yes # the TRACE() macro
14 DEBUG_MSGS=yes # the TRACE(), WARN(), and FIXME() macros.
19 [ --disable-debug compile out all debugging messages],
20 [if test "$enableval" = "no"; then DEBUG_MSGS="no"; fi])
23 [ --enable-opengl force usage of OpenGL even if the latter is thread-safe via pthread],
24 [if test "$enableval" = "no"; then OPENGL="no"; elif test "$enableval" = "yes"; then OPENGL="yes"; fi])
27 [ --disable-trace compile out TRACE messages],
28 [if test "$enableval" = "no"; then TRACE_MSGS="no"; fi])
31 [ --without-curses do not use curses],
32 [if test "$withval" = "no"; then CURSES="no"; fi])
34 AC_ARG_WITH(reentrant-x,
35 [ --without-reentrant-x compile for use with non-reentrant X libraries])
39 if test "$DEBUG_MSGS" = "no"
41 AC_DEFINE(NO_DEBUG_MSGS)
42 AC_DEFINE(NO_TRACE_MSGS)
44 if test "$TRACE_MSGS" = "no"
46 AC_DEFINE(NO_TRACE_MSGS)
50 dnl **** Check for some programs ****
58 AC_CHECK_PROGS(XLEX,$LEX flex lex,none)
59 if test "$XLEX" = "none"
61 echo "*** Error: No suitable lex found. ***"
62 echo " Please install the 'flex' package."
69 AC_CHECK_PROG(C2MAN,c2man,c2man,\$(TOPSRCDIR)/tools/c2man.pl)
70 AC_PATH_PROG(LDCONFIG, ldconfig, true, /sbin:/usr/sbin:$PATH)
72 AC_CHECK_PROG(DLLWRAP,dllwrap,dllwrap,false)
75 AC_CHECK_PROGS(LINT, lclint lint)
76 if test "$LINT" = "lint"
78 LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4"
79 dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64'
84 if test "$CYGWIN" = "yes"
86 LDCOMBINE="ld -r --enable-stdcall-fixup"
92 dnl **** Check for some libraries ****
94 dnl Check for -lm for BeOS
96 dnl Check for -li386 for NetBSD and OpenBSD
97 AC_CHECK_LIB(i386,i386_set_ldt)
98 dnl Check for -lossaudio for NetBSD
99 AC_CHECK_LIB(ossaudio,_oss_ioctl)
100 dnl Check for -lw for Solaris
101 AC_CHECK_FUNCS(iswalnum,,AC_CHECK_LIB(w,iswalnum))
102 dnl Check for -lnsl for Solaris
103 AC_CHECK_FUNCS(gethostbyname,,AC_CHECK_LIB(nsl,gethostbyname))
104 dnl Check for -lsocket for Solaris
105 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
106 dnl Check for -lxpg4 for FreeBSD
107 AC_CHECK_LIB(xpg4,_xpg4_setrunelocale)
108 dnl Check for -lmmap for OS/2
109 AC_CHECK_LIB(mmap,mmap)
110 dnl Check for openpty
111 AC_CHECK_FUNCS(openpty,,
112 AC_CHECK_LIB(util,openpty,
113 AC_DEFINE(HAVE_OPENPTY)
117 AC_CHECK_HEADERS(dlfcn.h,
118 AC_CHECK_FUNCS(dlopen,
119 AC_DEFINE(HAVE_DL_API),
120 AC_CHECK_LIB(dl,dlopen,
121 AC_DEFINE(HAVE_DL_API)
133 AC_SUBST(OPENGLFILES)
135 AC_SUBST(OPENGL32_DLL)
137 if test "$have_x" = "yes"
140 ac_save_CPPFLAGS="$CPPFLAGS"
141 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
143 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
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
155 echo "Redhat : xpm xpm-devel"
156 echo "Caldera OpenLinux : xpm xpm-devel xpm-devel-static"
158 echo "Debian/Corel Linux: xpm4g xpm4g-dev"
160 echo "Or get the sources from ftp.x.org and all its mirror sites from "
161 echo "the directory /contrib/libraries."
167 dnl *** All three of the following tests require X11/Xlib.h
168 AC_CHECK_HEADERS(X11/Xlib.h,
170 dnl *** Check for X keyboard extension
171 AC_CHECK_HEADERS(X11/XKBlib.h,
172 [ dnl *** If X11/XKBlib.h exists...
173 AC_CHECK_LIB(X11, XkbQueryExtension,
174 AC_DEFINE(HAVE_XKB),,
175 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
177 AC_MSG_WARN([XKB extension not found!!])
180 dnl *** Check for X Shm extension
181 AC_CHECK_HEADERS(X11/extensions/XShm.h,
182 [ dnl *** If X11/extensions/XShm.h exists...
183 AC_CHECK_LIB(Xext, XShmQueryExtension,
184 AC_DEFINE(HAVE_LIBXXSHM),,
185 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
187 AC_MSG_WARN([Xshm extension not found!!])
190 dnl *** Check for X shape extension
191 AC_CHECK_HEADERS(X11/extensions/shape.h,
192 [ dnl *** If X11/extensions/shape.h exists...
193 AC_CHECK_LIB(Xext,XShapeQueryExtension,
194 AC_DEFINE(HAVE_LIBXSHAPE),,
195 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
197 AC_MSG_WARN([XShape extension not found!!])
200 dnl *** Check for XFree86 DGA / DGA 2.0 extension
201 AC_CHECK_HEADERS(X11/extensions/xf86dga.h,
202 [ dnl *** If X11/extensions/xf86dga.h exists, check
203 dnl *** for XDGAQueryExtension()...
204 AC_CHECK_LIB(Xxf86dga, XDGAQueryExtension,
205 [ dnl *** If found...
206 AC_DEFINE(HAVE_LIBXXF86DGA2)
207 AC_DEFINE(HAVE_LIBXXF86DGA)
208 X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
210 [ dnl *** If not found, look for XF86DGAQueryExtension()
211 dnl *** instead (DGA 2.0 not found)...
212 AC_CHECK_LIB(Xxf86dga, XF86DGAQueryExtension,
213 [ AC_DEFINE(HAVE_LIBXXF86DGA)
214 X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
216 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
219 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
222 AC_MSG_WARN([DGA extension not found!!])
225 dnl *** Check for XFree86 VMODE extension
226 AC_CHECK_HEADERS(X11/extensions/xf86vmode.h,
227 [ dnl *** If X11/extensions/xf86vmode.h exists...
228 AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension,
229 [ AC_DEFINE(HAVE_LIBXXF86VM)
230 X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm"
232 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
235 AC_MSG_WARN([XFree86 VMODE extension not found!!])
238 dnl *** Check for XVideo extension supporting XvImages
239 AC_CHECK_HEADERS(X11/extensions/Xvlib.h,
240 [ dnl *** If X11/extensions/Xvlib.h exists...
241 AC_CHECK_LIB(Xv, XvShmCreateImage,
242 [ AC_DEFINE(HAVE_XVIDEO)
243 X_PRE_LIBS="$X_PRE_LIBS -lXv"
245 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
248 AC_MSG_WARN([XVideo extension not found !!])
252 ) dnl *** End of X11/Xlib.h check
254 dnl Check for the presence of OpenGL
255 if test $OPENGL = "yes" -o $OPENGL = "normal"
257 AC_CHECK_HEADERS(GL/gl.h GL/glx.h GL/glext.h)
258 if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_glx_h" = "yes"
260 dnl Check for some problems due to old Mesa versions
261 AC_CACHE_CHECK("for up-to-date OpenGL version", wine_cv_opengl_version_OK,
263 [#include <GL/gl.h>],
264 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
265 [wine_cv_opengl_version_OK="yes"],
266 [wine_cv_opengl_version_OK="no"]
270 dnl Check for the thread-safety of the OpenGL library
271 AC_CACHE_CHECK("for thread-safe OpenGL version",
272 wine_cv_opengl_version_threadsafe,
275 AC_TRY_LINK([],[pthread_getspecific();],
276 [wine_cv_opengl_version_threadsafe="yes"],
277 [wine_cv_opengl_version_threadsafe="no"])
281 if test "$wine_cv_opengl_version_OK" = "yes" -a \( "$wine_cv_opengl_version_threadsafe" = "no" -o $OPENGL = "yes" \)
283 dnl Check for the presence of the library
284 AC_CHECK_LIB(GL,glXCreateContext,
285 X_PRE_LIBS="$X_PRE_LIBS -lGL"
287 $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
289 if test $ac_cv_lib_GL_glXCreateContext = "yes"
292 OPENGLFILES='$(OPENGLFILES)'
293 AC_DEFINE(HAVE_OPENGL)
295 AC_CHECK_LIB(GL,glXGetProcAddressARB,AC_DEFINE(HAVE_GLX_GETPROCADDRESS),,$X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
297 if test $ac_cv_lib_GL_glXGetProcAddressARB = "yes"
299 AC_CACHE_CHECK("for OpenGL extension functions prototypes", wine_cv_extension_prototypes,
300 AC_TRY_COMPILE([#include <GL/gl.h>
301 #ifdef HAVE_GL_GLEXT_H
302 # include <GL/glext.h>
305 [PFNGLCOLORTABLEEXTPROC test_proc;],
306 [wine_cv_extension_prototypes="yes"],
307 [wine_cv_extension_prototypes="no"]
310 if test $wine_cv_extension_prototypes = "yes"
312 AC_DEFINE(HAVE_GLEXT_PROTOTYPES)
315 OPENGL32_DLL=opengl32
318 AC_CHECK_HEADERS(GL/osmesa.h,
319 [ dnl *** If GL/osmesa.h exists...
320 AC_CHECK_LIB(GL, OSMesaCreateContext,
321 AC_DEFINE(HAVE_OSMESA),
322 AC_CHECK_LIB(OSMesa, OSMesaCreateContext,
323 [ AC_DEFINE(HAVE_OSMESA)
324 X_PRE_LIBS="$X_PRE_LIBS -lOSMesa"
325 ],,-lGL $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS),
326 $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS
335 CPPFLAGS="$ac_save_CPPFLAGS"
344 dnl **** Check which curses lib to use ***
345 if test "$CURSES" = "yes"
347 AC_CHECK_HEADERS(ncurses.h)
348 if test "$ac_cv_header_ncurses_h" = "yes"
350 AC_CHECK_LIB(ncurses,waddch)
352 if test "$ac_cv_lib_ncurses_waddch" = "yes"
354 AC_CHECK_LIB(ncurses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
355 AC_CHECK_LIB(ncurses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
357 AC_CHECK_HEADERS(curses.h)
358 if test "$ac_cv_header_curses_h" = "yes"
360 AC_CHECK_LIB(curses,waddch)
361 if test "$ac_cv_lib_curses_waddch" = "yes"
363 AC_CHECK_LIB(curses,resizeterm,AC_DEFINE(HAVE_RESIZETERM))
364 AC_CHECK_LIB(curses,getbkgd,AC_DEFINE(HAVE_GETBKGD))
371 dnl **** Check for CUPS ****
372 wine_cv_warn_cups_h=no
373 AC_CHECK_LIB(cups,cupsGetPPD,
374 AC_CHECK_HEADER(cups/cups.h,
377 wine_cv_warn_cups_h=yes)
381 dnl **** Check for IPX (currently Linux only) ****
382 AC_CACHE_CHECK("for GNU style IPX support", ac_cv_c_ipx_gnu,
384 [#include <sys/socket.h>
385 #include <netipx/ipx.h>],
386 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
387 [ac_cv_c_ipx_gnu="yes"],
388 [ac_cv_c_ipx_gnu="no"])
390 if test "$ac_cv_c_ipx_gnu" = "yes"
392 AC_DEFINE(HAVE_IPX_GNU)
395 if test "$ac_cv_c_ipx_gnu" = "no"
397 AC_CACHE_CHECK("for linux style IPX support", ac_cv_c_ipx_linux,
399 [#include <sys/socket.h>
400 #include <asm/types.h>
401 #include <linux/ipx.h>],
402 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
403 [ac_cv_c_ipx_linux="yes"],
404 [ac_cv_c_ipx_linux="no"])
406 if test "$ac_cv_c_ipx_linux" = "yes"
408 AC_DEFINE(HAVE_IPX_LINUX)
412 dnl **** Check for Open Sound System ****
413 AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h soundcard.h, break)
415 AC_CACHE_CHECK("for Open Sound System",
416 ac_cv_c_opensoundsystem,
418 #if defined(HAVE_SYS_SOUNDCARD_H)
419 #include <sys/soundcard.h>
420 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
421 #include <machine/soundcard.h>
422 #elif defined(HAVE_SOUNDCARD_H)
423 #include <soundcard.h>
427 /* check for one of the Open Sound System specific SNDCTL_ defines */
428 #if !defined(SNDCTL_DSP_STEREO)
429 #error No open sound system
431 ],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no"))
433 if test "$ac_cv_c_opensoundsystem" = "yes"
438 AC_CACHE_CHECK("for Open Sound System/MIDI interface",
439 ac_cv_c_opensoundsystem_midi,
441 #if defined(HAVE_SYS_SOUNDCARD_H)
442 #include <sys/soundcard.h>
443 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
444 #include <machine/soundcard.h>
445 #elif defined(HAVE_SOUNDCARD_H)
446 #include <soundcard.h>
450 /* check for one of the Open Sound System specific SNDCTL_SEQ defines */
451 #if !defined(SNDCTL_SEQ_SYNC)
452 #error No open sound system MIDI interface
454 ],ac_cv_c_opensoundsystem_midi="yes",ac_cv_c_opensoundsystem_midi="no"))
456 if test "$ac_cv_c_opensoundsystem_midi" = "yes"
458 AC_DEFINE(HAVE_OSS_MIDI)
461 dnl **** If ln -s doesn't work, use cp instead ****
462 if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
464 dnl **** Check for gcc strength-reduce bug ****
466 if test "x${GCC}" = "xyes"
468 CFLAGS="$CFLAGS -Wall"
469 AC_CACHE_CHECK( "for gcc strength-reduce bug", ac_cv_c_gcc_strength_bug,
471 int L[[4]] = {0,1,2,3};
473 static int Array[[3]];
476 for(i=0; i<B; i++) Array[[i]] = i - 3;
477 for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]];
480 exit( Array[[1]] != -2 || L[[2]] != 3);
482 ac_cv_c_gcc_strength_bug="no",
483 ac_cv_c_gcc_strength_bug="yes",
484 ac_cv_c_gcc_strength_bug="yes") )
485 if test "$ac_cv_c_gcc_strength_bug" = "yes"
487 CFLAGS="$CFLAGS -fno-strength-reduce"
490 dnl Check for -mpreferred-stack-boundary
491 AC_CACHE_CHECK("for gcc -mpreferred-stack-boundary=2 support",
492 ac_cv_c_gcc_stack_boundary,
493 [saved_cflags=$CFLAGS
494 CFLAGS="$CFLAGS -mpreferred-stack-boundary=2"
495 AC_TRY_COMPILE(,[return 0],ac_cv_c_gcc_stack_boundary="yes",ac_cv_c_gcc_stack_boundary="no")
498 if test "$ac_cv_c_gcc_stack_boundary" = "yes"
500 CFLAGS="$CFLAGS -mpreferred-stack-boundary=2"
504 dnl **** Check if we need to place .type inside a .def directive ****
506 AC_CACHE_CHECK("whether .type must sit inside a .def directive",
509 LIBS="conftest_asm.s $LIBS"
510 cat > conftest_asm.s <<EOF
512 .def _ac_test; .scl 2; .type 32; .endef
516 AC_TRY_LINK(,,ac_cv_c_type_in_def="yes",ac_cv_c_type_in_def="no")
518 if test "$ac_cv_c_type_in_def" = "yes"
520 AC_DEFINE(NEED_TYPE_IN_DEF)
523 dnl **** Check for underscore on external symbols ****
525 AC_CACHE_CHECK("whether external symbols need an underscore prefix",
526 ac_cv_c_extern_prefix,
528 LIBS="conftest_asm.s $LIBS"
529 cat > conftest_asm.s <<EOF
534 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
535 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
537 if test "$ac_cv_c_extern_prefix" = "yes"
539 AC_DEFINE(NEED_UNDERSCORE_PREFIX)
542 dnl **** Check for .string in assembler ****
544 AC_CACHE_CHECK("whether assembler accepts .string",
547 LIBS="conftest_asm.s $LIBS"
548 cat > conftest_asm.s <<EOF
551 AC_TRY_LINK(,,ac_cv_c_asm_string="yes",ac_cv_c_asm_string="no")
553 if test "$ac_cv_c_asm_string" = "yes"
555 AC_DEFINE(HAVE_ASM_STRING)
558 dnl **** Check for working dll ****
562 if test "$LIBEXT" = "so"
564 AC_CACHE_CHECK("whether we can build a Linux dll",
566 [saved_cflags=$CFLAGS
567 CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic"
568 AC_TRY_LINK(,[return 1],ac_cv_c_dll_linux="yes",ac_cv_c_dll_linux="no")
571 if test "$ac_cv_c_dll_linux" = "yes"
573 LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%) -Wl,-rpath,\$(libdir)"
574 LDDLLFLAGS="-Wl,-Bsymbolic"
576 AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll,
577 ac_cv_c_dll_unixware,
578 [saved_cflags=$CFLAGS
579 CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic"
580 AC_TRY_LINK(,[return 1],ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")
583 if test "$ac_cv_c_dll_unixware" = "yes"
585 LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,\$(libdir)/%)"
586 LDDLLFLAGS="-Wl,-B,symbolic"
588 AC_CACHE_CHECK("whether we can build a NetBSD dll",
590 [saved_cflags=$CFLAGS
591 CFLAGS="$CFLAGS -fPIC -Wl,-Bshareable,-Bforcearchive"
592 AC_TRY_LINK(,[return 1],ac_cv_c_dll_netbsd="yes",ac_cv_c_dll_netbsd="no")
595 if test "$ac_cv_c_dll_netbsd" = "yes"
597 LDSHARED="\$(CC) -Wl,-Bshareable,-Bforcearchive"
602 if test "$ac_cv_c_dll_linux" = "no" -a "$ac_cv_c_dll_unixware" = "no" -a "$ac_cv_c_dll_netbsd" = "no"
605 if test "$DLLWRAP" = "dllwrap"; then
606 dnl FIXME - check whether dllwrap works correctly...
607 if test "$CYGWIN" = "yes"; then
608 echo "*** use dllwrap for building shared library."
615 if test "$LIBEXT" = "a"; then
616 echo "*** It is currently not possible to build WINE without shared"
617 echo "*** library (.so) support to allow transparent switch between .so"
618 echo "*** and .dll files."
619 echo "*** If you are using Linux, you will need a newer binutils."
626 if test "$LIBEXT" = "so"; then
628 DLL_LINK="-L\$(DLLDIR) \$(IMPORTS:%=-l%) \$(LIBWINE) \$(LIBUNICODE)"
629 LDPATH="LD_LIBRARY_PATH=\"\$(TOPOBJDIR)/unicode:\$\$LD_LIBRARY_PATH\""
630 elif test "$LIBEXT" = "dll"; then
631 #DLLFLAGS="-fPIC" # -fPIC doesn't work(at least in cygwin-b20) - FIXME
632 DLL_LINK="-L\$(DLLDIR) \$(IMPORTS:%=-l%) \$(LIBWINE) \$(LIBUNICODE)"
633 LDPATH="PATH=\"\$(TOPOBJDIR)/unicode:\$\$PATH\""
635 DLL_LINK="-L\$(DLLDIR) \$(DLLS:%=-l%) \$(LIBWINE) \$(LIBUNICODE) \$(X_LIBS) \$(XLIB)"
636 AC_CACHE_CHECK([whether the linker supports --[[no]]-whole-archive (Linux)],
637 ac_cv_c_whole_archive,
638 [saved_cflags=$CFLAGS
639 CFLAGS="$CFLAGS -Wl,--whole-archive -Wl,--no-whole-archive"
640 AC_TRY_LINK(,[return 1],ac_cv_c_whole_archive="yes",ac_cv_c_whole_archive="no")
643 if test "$ac_cv_c_whole_archive" = "yes"
645 DLL_LINK="-Wl,--whole-archive $DLL_LINK -Wl,--no-whole-archive"
647 AC_CACHE_CHECK([whether the linker supports -z {all,default}extract (Linux)],
649 [saved_cflags=$CFLAGS
650 CFLAGS="$CFLAGS -Wl,-z,allextract -Wl,-z,defaultextract"
651 AC_TRY_LINK(,[return 1],ac_cv_c_allextract="yes",ac_cv_c_allextract="no")
654 if test "$ac_cv_c_allextract" = "yes"
656 DLL_LINK="-Wl,-z,allextract $DLL_LINK -Wl,-z,defaultextract"
668 dnl **** Check for reentrant libc ****
670 dnl For cross-compiling we blindly assume that libc is reentrant. This is
671 dnl ok since non-reentrant libc is quite rare (mostly old libc5 versions).
673 AC_DEFUN(WINE_CHECK_ERRNO,
675 AC_CACHE_CHECK(for reentrant libc: $1, wine_cv_libc_r_$1,
676 [AC_TRY_RUN([int myerrno = 0;
678 int *$1(){return &myerrno;}
679 main(){connect(0,buf,255); exit(!myerrno);}],
680 wine_cv_libc_r_$1=yes, wine_cv_libc_r_$1=no,
681 wine_cv_libc_r_$1=yes )
683 if test "$wine_cv_libc_r_$1" = "yes"
685 wine_cv_libc_reentrant=$1
689 wine_cv_libc_reentrant=no
690 dnl Linux style errno location
691 WINE_CHECK_ERRNO(__errno_location)
692 dnl FreeBSD style errno location
693 WINE_CHECK_ERRNO(__error)
694 dnl Solaris style errno location
695 WINE_CHECK_ERRNO(___errno)
696 dnl UnixWare style errno location
697 WINE_CHECK_ERRNO(__thr_errno)
699 if test "$wine_cv_libc_reentrant" != "no"
701 AC_DEFINE_UNQUOTED(ERRNO_LOCATION,$wine_cv_libc_reentrant)
704 dnl **** Check for reentrant X libraries ****
706 dnl This may fail to determine whether X libraries are reentrant if
707 dnl AC_PATH_XTRA does not set x_libraries. In this case manual configuration
708 dnl is possible with the --without-reentrant-x option.
710 if test "$have_x" = "yes" -a "$wine_cv_libc_reentrant" != "no"
712 AC_CACHE_CHECK( "for reentrant X libraries", wine_cv_x_reentrant,
713 [ if test "x$with_reentrant_x" = "xno"
715 wine_cv_x_reentrant=no
718 for dir in "$x_libraries" /usr/lib /usr/local/lib /lib; do
719 if test -r $dir/libX11.so; then
720 libX11_check="-D $dir/libX11.so"
723 if test -r $dir/libX11.a; then
724 libX11_check="$dir/libX11.a"
728 if test "$libX11_check" != "none"; then
729 if nm $libX11_check | grep $wine_cv_libc_reentrant >/dev/null 2>&1
731 wine_cv_x_reentrant=yes
733 wine_cv_x_reentrant=no
736 wine_cv_x_reentrant=unknown
740 wine_cv_x_reentrant=no
742 if test "$wine_cv_x_reentrant" = "no"
744 AC_DEFINE(NO_REENTRANT_X11)
748 dnl **** Check for functions ****
787 dnl **** Check for header files ****
844 dnl **** Check for types ****
849 AC_CHECK_SIZEOF(long long,0)
851 AC_CACHE_CHECK("whether linux/input.h is for real",
852 wine_cv_linux_input_h,
854 #include <linux/input.h>
856 int foo = EVIOCGBIT(EV_ABS,42);
857 int bar = BTN_PINKIE;
860 wine_cv_linux_input_h=yes,
861 wine_cv_linux_input_h=no,
865 if test "$wine_cv_linux_input_h" = "yes"
867 AC_DEFINE(HAVE_CORRECT_LINUXINPUT_H)
871 AC_CACHE_CHECK("whether we can use re-entrant gethostbyname_r Linux style",
872 wine_cv_linux_gethostbyname_r_6,
878 struct hostent *result;
885 res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
886 res=gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
888 wine_cv_linux_gethostbyname_r_6=yes,
889 wine_cv_linux_gethostbyname_r_6=no
892 if test "$wine_cv_linux_gethostbyname_r_6" = "yes"
894 AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6)
897 if test "$ac_cv_header_linux_joystick_h" = "yes"
899 AC_CACHE_CHECK("whether linux/joystick.h uses the Linux 2.2+ API",
900 wine_cv_linux_joystick_22_api,
902 #include <sys/ioctl.h>
903 #include <linux/joystick.h>
905 struct js_event blub;
906 #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
907 #error "no 2.2 header"
910 wine_cv_linux_joystick_22_api=yes,
911 wine_cv_linux_joystick_22_api=no,
912 wine_cv_linux_joystick_22_api=no
915 if test "$wine_cv_linux_joystick_22_api" = "yes"
917 AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API)
921 dnl **** statfs checks ****
923 if test "$ac_cv_header_sys_vfs_h" = "yes"
925 AC_CACHE_CHECK( "whether sys/vfs.h defines statfs",
926 wine_cv_sys_vfs_has_statfs,
928 #include <sys/types.h>
929 #ifdef HAVE_SYS_PARAM_H
930 # include <sys/param.h>
936 memset(&stfs,0,sizeof(stfs));
937 ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no
940 if test "$wine_cv_sys_vfs_has_statfs" = "yes"
942 AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS)
946 if test "$ac_cv_header_sys_statfs_h" = "yes"
948 AC_CACHE_CHECK( "whether sys/statfs.h defines statfs",
949 wine_cv_sys_statfs_has_statfs,
951 #include <sys/types.h>
952 #ifdef HAVE_SYS_PARAM_H
953 # include <sys/param.h>
955 #include <sys/statfs.h>
958 ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no
961 if test "$wine_cv_sys_statfs_has_statfs" = "yes"
963 AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS)
967 if test "$ac_cv_header_sys_mount_h" = "yes"
969 AC_CACHE_CHECK( "whether sys/mount.h defines statfs",
970 wine_cv_sys_mount_has_statfs,
972 #include <sys/types.h>
973 #ifdef HAVE_SYS_PARAM_H
974 # include <sys/param.h>
976 #include <sys/mount.h>
979 ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no
982 if test "$wine_cv_sys_mount_has_statfs" = "yes"
984 AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT)
988 dnl **** FIXME: what about mixed cases, where we need two of them? ***
990 AC_CACHE_CHECK( "for statfs.f_bfree", wine_cv_statfs_bfree,
991 [ if test "x$statfs_bfree" = "xno"
993 wine_cv_statfs_bfree=no
996 #include <sys/types.h>
997 #ifdef HAVE_SYS_PARAM_H
998 # include <sys/param.h>
1000 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
1001 # include <sys/mount.h>
1003 # ifdef STATFS_DEFINED_BY_SYS_VFS
1004 # include <sys/vfs.h>
1006 # ifdef STATFS_DEFINED_BY_SYS_STATFS
1007 # include <sys/statfs.h>
1015 ],wine_cv_statfs_bfree=yes,wine_cv_statfs_bfree=no
1018 if test "$wine_cv_statfs_bfree" = "yes"
1020 AC_DEFINE(STATFS_HAS_BFREE)
1023 AC_CACHE_CHECK( "for statfs.f_bavail", wine_cv_statfs_bavail,
1024 [ if test "x$statfs_bavail" = "xno"
1026 wine_cv_statfs_bavail=no
1029 #include <sys/types.h>
1030 #ifdef HAVE_SYS_PARAM_H
1031 # include <sys/param.h>
1033 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
1034 # include <sys/mount.h>
1036 # ifdef STATFS_DEFINED_BY_SYS_VFS
1037 # include <sys/vfs.h>
1039 # ifdef STATFS_DEFINED_BY_SYS_STATFS
1040 # include <sys/statfs.h>
1048 ],wine_cv_statfs_bavail=yes,wine_cv_statfs_bavail=no
1051 if test "$wine_cv_statfs_bavail" = "yes"
1053 AC_DEFINE(STATFS_HAS_BAVAIL)
1056 dnl *** check for file descriptor passing with msg_accrights
1058 AC_CACHE_CHECK("for msg_accrights in struct msghdr", ac_cv_c_msg_accrights,
1059 AC_TRY_COMPILE([#include <sys/types.h>
1060 #include <sys/socket.h>],[struct msghdr hdr; hdr.msg_accrights=0],
1061 ac_cv_c_msg_accrights="yes", ac_cv_c_msg_accrights="no"))
1062 if test "$ac_cv_c_msg_accrights" = "yes"
1064 AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS)
1067 dnl *** Check for the sun_len member in struct sockaddr_un
1069 AC_CACHE_CHECK("for sun_len in struct sockaddr_un", ac_cv_c_sun_len,
1070 AC_TRY_COMPILE([#include <sys/types.h>
1071 #include <sys/socket.h>
1072 #include <sys/un.h>], [static struct sockaddr_un addr; addr.sun_len = 1],
1073 ac_cv_c_sun_len="yes", ac_cv_c_sun_len="no"))
1074 if test "$ac_cv_c_sun_len" = "yes"
1076 AC_DEFINE(HAVE_SOCKADDR_SUN_LEN)
1079 dnl *** check for the need to define __i386__
1081 AC_CACHE_CHECK("whether we need to define __i386__",ac_cv_cpp_def_i386,
1082 AC_EGREP_CPP(yes,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
1085 ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no"))
1086 if test "$ac_cv_cpp_def_i386" = "yes"
1088 CFLAGS="$CFLAGS -D__i386__"
1089 LINTFLAGS="$LINTFLAGS -D__i386__"
1092 dnl $GCC is set by autoconf
1094 if test "$GCC" = "yes"
1096 GCC_NO_BUILTIN="-fno-builtin"
1098 AC_SUBST(GCC_NO_BUILTIN)
1100 dnl **** Generate output files ****
1102 AC_OUTPUT_COMMANDS([
1104 dlls/ddraw/d3ddevice \
1105 dlls/ddraw/dclipper \
1107 dlls/ddraw/direct3d \
1108 dlls/ddraw/dpalette \
1109 dlls/ddraw/dsurface \
1110 dlls/dinput/joystick \
1111 dlls/dinput/keyboard \
1113 dlls/kernel/messages \
1114 dlls/user/resources \
1116 for i in $extra_subdirs; do [ -d $i ] || (echo "creating $i" && mkdir $i); done ])
1118 MAKE_RULES=Make.rules
1119 AC_SUBST_FILE(MAKE_RULES)
1121 MAKE_DLL_RULES=dlls/Makedll.rules
1122 AC_SUBST_FILE(MAKE_DLL_RULES)
1124 MAKE_PROG_RULES=programs/Makeprog.rules
1125 AC_SUBST_FILE(MAKE_PROG_RULES)
1130 programs/Makeprog.rules
1136 dlls/advapi32/Makefile
1137 dlls/avifil32/Makefile
1138 dlls/comctl32/Makefile
1139 dlls/commdlg/Makefile
1140 dlls/crtdll/Makefile
1141 dlls/dciman32/Makefile
1143 dlls/dinput/Makefile
1145 dlls/dplayx/Makefile
1146 dlls/dsound/Makefile
1149 dlls/imagehlp/Makefile
1151 dlls/kernel/Makefile
1152 dlls/lzexpand/Makefile
1155 dlls/msnet32/Makefile
1156 dlls/msvcrt/Makefile
1157 dlls/msvideo/Makefile
1159 dlls/odbc32/Makefile
1161 dlls/oleaut32/Makefile
1162 dlls/olecli/Makefile
1163 dlls/oledlg/Makefile
1164 dlls/olepro32/Makefile
1165 dlls/olesvr/Makefile
1166 dlls/opengl32/Makefile
1168 dlls/rasapi32/Makefile
1169 dlls/richedit/Makefile
1170 dlls/rpcrt4/Makefile
1171 dlls/serialui/Makefile
1172 dlls/setupapi/Makefile
1173 dlls/shdocvw/Makefile
1174 dlls/shell32/Makefile
1175 dlls/shfolder/Makefile
1176 dlls/shlwapi/Makefile
1177 dlls/tapi32/Makefile
1178 dlls/ttydrv/Makefile
1179 dlls/urlmon/Makefile
1181 dlls/version/Makefile
1182 dlls/win32s/Makefile
1183 dlls/winaspi/Makefile
1184 dlls/winedos/Makefile
1185 dlls/wineps/Makefile
1186 dlls/wininet/Makefile
1188 dlls/winmm/joystick/Makefile
1189 dlls/winmm/mcianim/Makefile
1190 dlls/winmm/mciavi/Makefile
1191 dlls/winmm/mcicda/Makefile
1192 dlls/winmm/mciseq/Makefile
1193 dlls/winmm/mciwave/Makefile
1194 dlls/winmm/midimap/Makefile
1195 dlls/winmm/wavemap/Makefile
1196 dlls/winmm/wineoss/Makefile
1197 dlls/winnls/Makefile
1198 dlls/winsock/Makefile
1199 dlls/winspool/Makefile
1200 dlls/wintrust/Makefile
1202 dlls/wsock32/Makefile
1203 dlls/x11drv/Makefile
1204 documentation/Makefile
1205 documentation/wine.conf.man
1206 documentation/wine.man
1209 graphics/enhmetafiledrv/Makefile
1210 graphics/metafiledrv/Makefile
1211 graphics/win16drv/Makefile
1212 graphics/x11drv/Makefile
1227 programs/avitools/Makefile
1228 programs/clock/Makefile
1229 programs/cmdlgtst/Makefile
1230 programs/control/Makefile
1231 programs/notepad/Makefile
1232 programs/osversioncheck/Makefile
1233 programs/progman/Makefile
1234 programs/regapi/Makefile
1235 programs/regtest/Makefile
1236 programs/uninstaller/Makefile
1237 programs/view/Makefile
1238 programs/wcmd/Makefile
1239 programs/winemine/Makefile
1240 programs/winetest/Makefile
1241 programs/winhelp/Makefile
1242 programs/winver/Makefile
1247 tools/cvdump/Makefile
1248 tools/specmaker/Makefile
1249 tools/winebuild/Makefile
1257 windows/x11drv/Makefile ])
1259 if test "$have_x" = "no"
1262 echo "*** Warning: X development files not found. Wine will be built without"
1263 echo "*** X support, which currently does not work, and would probably not be"
1264 echo "*** what you want anyway. You will need to install devel packages of"
1265 echo "*** Xlib/Xfree86 and Xpm at the very least."
1266 elif test "$ac_cv_lib_Xpm_XpmCreatePixmapFromData" = "no"
1269 echo "*** Warning: Xpm development files not found. Wine will be built without"
1270 echo "*** Xpm support, which currently does not work. You will need to install"
1271 echo "*** devel packages of Xpm."
1274 if test "$ac_cv_lib_ncurses_resizeterm" = "no" -a "$ac_cv_lib_ncurses_waddch" = "yes"
1277 echo "*** Warning: resizeterm not found in ncurses. Wine will be built without"
1278 echo "*** terminal resize support. Consider upgrading ncurses."
1281 if test "$wine_cv_libc_reentrant" = "no"
1284 echo "*** Warning: non-reentrant libc detected. Wine will be build without"
1285 echo "*** thread support. Consider upgrading libc to a more recent"
1286 echo "*** reentrant version of libc."
1289 if test "$wine_cv_opengl_version_OK" = "no"
1292 echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
1293 echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)."
1296 if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "normal"
1299 echo "*** Warning: the OpenGL version you have installed relies on libpthread for"
1300 echo "*** thread-safety. To prevent crashes, OpenGL support has been removed."
1301 echo "*** A fix for glibc 2.1.3 that seems to work is included in this version of Wine,"
1302 echo "*** start configure with '--enable-opengl' to force OpenGL support."
1305 if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "yes"
1308 echo "*** Warning: you explicitly linked in a thread-safe OpenGL version. If you"
1309 echo "*** experience unusual crashes on DirectDraw games, try first to disable OpenGL"
1310 echo "*** support before reporting bugs."
1313 if test "$wine_cv_warn_cups_h" = "yes"
1316 echo "*** Note: You have cups runtime libraries, but no development"
1317 echo "*** libraries. Install the cups-devel package or whichever package"
1318 echo "*** contains cups.h to enable CUPS support in WINE."
1322 echo "Configure finished. Do 'make depend && make' to compile Wine."
1325 dnl Local Variables:
1326 dnl comment-start: "dnl "
1328 dnl comment-start-skip: "\\bdnl\\b\\s *"
1329 dnl compile-command: "autoconf"