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 dnl Ported to autoconf 2.5x by bero@redhat.com
5 AC_REVISION([configure.in 1.00])
6 AC_INIT(controls/edit.c)
7 AC_CONFIG_HEADER(include/config.h)
8 AC_CONFIG_AUX_DIR(tools)
10 dnl **** Command-line arguments ****
13 LIBEXT=so # library type .so or .a
14 TRACE_MSGS=yes # the TRACE() macro
15 DEBUG_MSGS=yes # the TRACE(), WARN(), and FIXME() macros.
20 [ --disable-debug compile out all debugging messages],
21 [if test "$enableval" = "no"; then DEBUG_MSGS="no"; fi])
24 [ --enable-opengl force usage of OpenGL even if the latter is thread-safe via pthread],
25 [if test "$enableval" = "no"; then OPENGL="no"; elif test "$enableval" = "yes"; then OPENGL="yes"; fi])
28 [ --disable-trace compile out TRACE messages],
29 [if test "$enableval" = "no"; then TRACE_MSGS="no"; fi])
32 [ --without-curses do not use curses],
33 [if test "$withval" = "no"; then CURSES="no"; fi])
35 AC_ARG_WITH(reentrant-x,
36 [ --without-reentrant-x compile for use with non-reentrant X libraries])
40 if test "$DEBUG_MSGS" = "no"
42 OPTIONS="$OPTIONS -DNO_DEBUG_MSGS"
45 if test "$TRACE_MSGS" = "no" -o "$DEBUG_MSGS" = "no"
47 OPTIONS="$OPTIONS -DNO_TRACE_MSGS"
50 dnl **** Check for some programs ****
59 dnl **** Just additional warning checks, since AC_PROG just sets 'yacc' even
60 dnl **** without one present.
61 AC_CHECK_PROGS(XYACC,$YACC bison yacc,none)
62 if test "$XYACC" = "none"
64 echo "*** Error: No suitable bison/yacc found. ***"
65 echo " Please install the 'bison' package."
68 AC_CHECK_PROGS(XLEX,$LEX flex lex,none)
69 if test "$XLEX" = "none"
71 echo "*** Error: No suitable lex found. ***"
72 echo " Please install the 'flex' package."
78 AC_CHECK_PROG(C2MAN,c2man,c2man,\$(TOPSRCDIR)/tools/c2man.pl)
79 AC_PATH_PROG(LDCONFIG, ldconfig, true, /sbin:/usr/sbin:$PATH)
81 AC_CHECK_PROG(DLLWRAP,dllwrap,dllwrap,false)
84 AC_CHECK_PROGS(LINT, lclint lint)
85 if test "$LINT" = "lint"
87 LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4"
88 dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64'
93 if test "$CYGWIN" = "yes"
95 LDCOMBINE="ld -r --enable-stdcall-fixup"
101 dnl **** Check for some libraries ****
105 dnl Check for -li386 for NetBSD and OpenBSD
106 AC_CHECK_LIB(i386,i386_set_ldt)
107 dnl Check for -lossaudio for NetBSD
108 AC_CHECK_LIB(ossaudio,_oss_ioctl)
109 dnl Check for -lw for Solaris
110 AC_CHECK_FUNCS(iswalnum,,AC_CHECK_LIB(w,iswalnum))
111 dnl Check for -lnsl for Solaris
112 AC_CHECK_FUNCS(gethostbyname,,AC_CHECK_LIB(nsl,gethostbyname))
113 dnl Check for -lsocket for Solaris
114 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
115 dnl Check for -lxpg4 for FreeBSD
116 AC_CHECK_LIB(xpg4,_xpg4_setrunelocale)
117 dnl Check for -lmmap for OS/2
118 AC_CHECK_LIB(mmap,mmap)
120 dnl Check for openpty
123 AC_CHECK_FUNCS(openpty,,
124 [AC_CHECK_LIB(util,openpty,
125 [AC_DEFINE(HAVE_OPENPTY)
131 AC_CHECK_HEADERS(dlfcn.h,
132 [AC_CHECK_FUNCS(dlopen,,
133 [AC_CHECK_LIB(dl,dlopen,
134 [AC_DEFINE(HAVE_DLOPEN,1,[Define if you have dlopen])
143 AC_CHECK_HEADERS(jpeglib.h,
144 AC_CHECK_LIB(jpeg,jpeg_start_decompress,
145 AC_DEFINE(HAVE_LIBJPEG,1,[Define if you have libjpeg including devel headers])
154 AC_SUBST(OPENGLFILES)
158 if test "$have_x" = "yes"
161 ac_save_CPPFLAGS="$CPPFLAGS"
162 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
164 dnl *** All of the following tests require X11/Xlib.h
165 AC_CHECK_HEADERS(X11/Xlib.h,
167 dnl *** Check for X keyboard extension
168 AC_CHECK_HEADERS(X11/XKBlib.h,
169 [ dnl *** If X11/XKBlib.h exists...
170 AC_CHECK_LIB(X11, XkbQueryExtension,
171 AC_DEFINE(HAVE_XKB, 1, [Define if you have the XKB extension]),,
172 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
174 AC_MSG_WARN([XKB extension not found!!])
177 dnl *** Check for X Shm extension
178 AC_CHECK_HEADERS(X11/extensions/XShm.h,
179 [ dnl *** If X11/extensions/XShm.h exists...
180 AC_CHECK_LIB(Xext, XShmQueryExtension,
181 AC_DEFINE(HAVE_LIBXXSHM, 1, [Define if you have the X Shm extension]),,
182 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
184 AC_MSG_WARN([Xshm extension not found!!])
187 dnl *** Check for X shape extension
188 AC_CHECK_HEADERS(X11/extensions/shape.h,
189 [ dnl *** If X11/extensions/shape.h exists...
190 AC_CHECK_LIB(Xext,XShapeQueryExtension,
191 AC_DEFINE(HAVE_LIBXSHAPE, 1, [Define if you have the X Shape extension]),,
192 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
194 AC_MSG_WARN([XShape extension not found!!])
197 dnl *** Check for XFree86 DGA / DGA 2.0 extension
198 AC_CHECK_HEADERS(X11/extensions/xf86dga.h,
199 [ dnl *** If X11/extensions/xf86dga.h exists, check
200 dnl *** for XDGAQueryExtension()...
201 AC_CHECK_LIB(Xxf86dga, XDGAQueryExtension,
202 [ dnl *** If found...
203 AC_DEFINE(HAVE_LIBXXF86DGA2, 1,
204 [Define if you have the Xxf86dga library version 2])
205 X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
207 [ dnl *** If not found, look for XF86DGAQueryExtension()
208 dnl *** instead (DGA 2.0 not found)...
209 AC_CHECK_LIB(Xxf86dga, XF86DGAQueryExtension,
210 [ AC_DEFINE(HAVE_LIBXXF86DGA, 1,
211 [Define if you have the Xxf86dga library version 1])
212 X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
214 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
217 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
220 AC_MSG_WARN([DGA extension not found!!])
223 dnl *** Check for XFree86 VMODE extension
224 AC_CHECK_HEADERS(X11/extensions/xf86vmode.h,
225 [ dnl *** If X11/extensions/xf86vmode.h exists...
226 AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension,
227 [ AC_DEFINE(HAVE_LIBXXF86VM, 1, [Define if you have the Xxf86vm library])
228 X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm"
230 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
233 AC_MSG_WARN([XFree86 VMODE extension not found!!])
236 dnl *** Check for XVideo extension supporting XvImages
237 AC_CHECK_HEADERS(X11/extensions/Xvlib.h,
238 [ dnl *** If X11/extensions/Xvlib.h exists...
239 AC_CHECK_LIB(Xv, XvShmCreateImage,
240 [ AC_DEFINE(HAVE_XVIDEO, 1, [Define if the X libraries support XVideo])
241 X_PRE_LIBS="$X_PRE_LIBS -lXv"
243 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
246 AC_MSG_WARN([XVideo extension not found !!])
249 dnl *** Check for XRender extension
250 AC_CHECK_HEADERS(X11/extensions/Xrender.h,
251 [ dnl *** If X11/extensions/Xrender.h exists...
252 AC_CHECK_LIB(Xrender, XRenderQueryExtension,
253 [ AC_DEFINE(HAVE_LIBXRENDER, 1, [Define if you have the XRender extension library])
254 X_PRE_LIBS="$X_PRE_LIBS -lXrender"
256 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
259 AC_MSG_WARN([XRender extension not found !!])
263 ) dnl *** End of X11/Xlib.h check
265 dnl Check for the presence of OpenGL
266 if test $OPENGL = "yes" -o $OPENGL = "normal"
268 if test -e /usr/X11R6/lib/libGL.a -a ! -e /usr/X11R6/lib/libGL.so
270 AC_MSG_ERROR([/usr/X11R6/lib/libGL.a is present on your system.
271 This prevents linking to OpenGL. Delete the file and restart configure.])
274 AC_CHECK_HEADERS(GL/gl.h GL/glx.h GL/glext.h)
275 if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_glx_h" = "yes"
277 dnl Check for some problems due to old Mesa versions
278 AC_CACHE_CHECK([for up-to-date OpenGL version], wine_cv_opengl_version_OK,
280 [#include <GL/gl.h>],
281 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
282 [wine_cv_opengl_version_OK="yes"],
283 [wine_cv_opengl_version_OK="no"]
287 dnl Check for the thread-safety of the OpenGL library
288 AC_CACHE_CHECK([for thread-safe OpenGL version],
289 wine_cv_opengl_version_threadsafe,
292 AC_TRY_LINK([],[pthread_getspecific();],
293 [wine_cv_opengl_version_threadsafe="yes"],
294 [wine_cv_opengl_version_threadsafe="no"])
298 if test "$wine_cv_opengl_version_OK" = "yes" -a \( "$wine_cv_opengl_version_threadsafe" = "no" -o $OPENGL = "yes" \)
300 dnl Check for the presence of the library
301 AC_CHECK_LIB(GL,glXCreateContext,
302 X_PRE_LIBS="$X_PRE_LIBS -lGL"
304 $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
306 if test "$ac_cv_lib_GL_glXCreateContext" = "yes"
308 OPENGLFILES='$(OPENGLFILES)'
309 AC_DEFINE(HAVE_OPENGL, 1, [Define if OpenGL is present on the system])
311 AC_CHECK_LIB(GL,glXGetProcAddressARB,
312 AC_DEFINE(HAVE_GLX_GETPROCADDRESS, 1,
313 [Define if the OpenGL library supports the glXGetProcAddressARB call]),,
314 $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
316 if test "$ac_cv_lib_GL_glXGetProcAddressARB" = "yes"
318 AC_CACHE_CHECK([for OpenGL extension functions prototypes], wine_cv_extension_prototypes,
319 [AC_TRY_COMPILE([#include <GL/gl.h>
320 #ifdef HAVE_GL_GLEXT_H
321 # include <GL/glext.h>
324 [PFNGLCOLORTABLEEXTPROC test_proc;],
325 [wine_cv_extension_prototypes="yes"],
326 [wine_cv_extension_prototypes="no"]
329 if test "$wine_cv_extension_prototypes" = "yes"
331 AC_DEFINE(HAVE_GLEXT_PROTOTYPES, 1,
332 [Define if the OpenGL headers define extension typedefs])
337 dnl Check for GLU32 library.
338 AC_CHECK_LIB(GLU,gluLookAt,
339 [X_PRE_LIBS="$X_PRE_LIBS -lGLU"
340 GLU32FILES='$(GLU32FILES)']
342 $X_LIBS $X_PRE_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS
348 CPPFLAGS="$ac_save_CPPFLAGS"
356 dnl **** Check which curses lib to use ***
358 if test "$CURSES" = "yes"
360 AC_CHECK_HEADERS(ncurses.h,
361 [AC_CHECK_LIB(ncurses,waddch,
362 [AC_DEFINE(HAVE_LIBNCURSES, 1, [Define if you have the ncurses library (-lncurses)])
363 CURSESLIBS="-lncurses"],
364 [AC_CHECK_HEADERS(curses.h,
365 [AC_CHECK_LIB(curses,waddch,
366 [AC_DEFINE(HAVE_LIBCURSES, 1, [Define if you have the curses library (-lcurses)])
367 CURSESLIBS="-lcurses"])])])])
369 LIBS="$CURSESLIBS $LIBS"
370 AC_CHECK_FUNCS(getbkgd resizeterm)
376 dnl **** Check for CUPS ****
377 wine_cv_warn_cups_h=no
378 AC_CHECK_LIB(cups,cupsGetPPD,
379 [AC_CHECK_HEADER(cups/cups.h,
380 [AC_DEFINE(HAVE_CUPS, 1, [Define if we have CUPS])
382 wine_cv_warn_cups_h=yes)]
386 dnl **** Check for FreeType 2 ****
387 AC_CHECK_LIB(freetype,FT_Init_FreeType,ft_lib=yes,ft_lib=no,$X_LIBS)
388 if test "$ft_lib" = "no"
392 wine_cv_msg_freetype=no
394 AC_CHECK_PROG(ft_devel,freetype-config,freetype-config,no)
395 if test "$ft_devel" = "no"
397 AC_CHECK_PROG(ft_devel2,freetype2-config,freetype2-config,no)
398 if test "$ft_devel2" = "freetype2-config"
403 if test "$ft_devel" = "no"
407 wine_cv_msg_freetype=yes
409 AC_DEFINE(HAVE_FREETYPE, 1, [Define if FreeType 2 is installed])
410 FREETYPELIBS=`$ft_devel --libs`
411 FREETYPEINCL=`$ft_devel --cflags`
412 ac_save_CPPFLAGS="$CPPFLAGS"
413 CPPFLAGS="$FREETYPEINCL $CPPFLAGS"
414 AC_CHECK_HEADERS(freetype/freetype.h \
416 freetype/tttables.h \
418 freetype/ftsnames.h \
419 freetype/ttnameid.h \
421 freetype/internal/sfnt.h)
422 AC_TRY_CPP([#include <ft2build.h>
423 #include <freetype/fttrigon.h>],
424 AC_DEFINE(HAVE_FREETYPE_FTTRIGON_H, 1,
425 [Define if you have the <freetype/fttrigon.h> header file.]))
426 CPPFLAGS="$ac_save_CPPFLAGS"
427 wine_cv_msg_freetype=no
430 AC_SUBST(FREETYPELIBS)
431 AC_SUBST(FREETYPEINCL)
433 dnl **** Check for parport (currently Linux only) ****
434 AC_CACHE_CHECK([for parport header/ppdev.h], ac_cv_c_ppdev,
436 [#include <linux/ppdev.h>],
437 [ioctl (1,PPCLAIM,0)],
438 [ac_cv_c_ppdev="yes"],
439 [ac_cv_c_ppdev="no"])
441 if test "$ac_cv_c_ppdev" = "yes"
443 AC_DEFINE(HAVE_PPDEV, 1, [Define if we can use ppdev.h for parallel port access])
446 dnl **** Check for IPX (currently Linux only) ****
447 AC_CACHE_CHECK([for GNU style IPX support], ac_cv_c_ipx_gnu,
449 [#include <sys/socket.h>
450 #include <netipx/ipx.h>],
451 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
452 [ac_cv_c_ipx_gnu="yes"],
453 [ac_cv_c_ipx_gnu="no"])
455 if test "$ac_cv_c_ipx_gnu" = "yes"
457 AC_DEFINE(HAVE_IPX_GNU, 1, [Define if IPX should use netipx/ipx.h from libc])
460 if test "$ac_cv_c_ipx_gnu" = "no"
462 AC_CACHE_CHECK([for linux style IPX support], ac_cv_c_ipx_linux,
464 [#include <sys/socket.h>
465 #include <asm/types.h>
466 #include <linux/ipx.h>],
467 [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
468 [ac_cv_c_ipx_linux="yes"],
469 [ac_cv_c_ipx_linux="no"])
471 if test "$ac_cv_c_ipx_linux" = "yes"
473 AC_DEFINE(HAVE_IPX_LINUX, 1, [Define if IPX includes are taken from Linux kernel])
477 dnl **** Check for Open Sound System ****
478 AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h soundcard.h, break)
480 AC_CACHE_CHECK([for Open Sound System],
481 ac_cv_c_opensoundsystem,
483 #if defined(HAVE_SYS_SOUNDCARD_H)
484 #include <sys/soundcard.h>
485 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
486 #include <machine/soundcard.h>
487 #elif defined(HAVE_SOUNDCARD_H)
488 #include <soundcard.h>
492 /* check for one of the Open Sound System specific SNDCTL_ defines */
493 #if !defined(SNDCTL_DSP_STEREO)
494 #error No open sound system
496 ],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no"))
498 if test "$ac_cv_c_opensoundsystem" = "yes"
500 AC_DEFINE(HAVE_OSS, 1, [Define if you have the Open Sound system])
503 AC_CACHE_CHECK([for Open Sound System/MIDI interface],
504 ac_cv_c_opensoundsystem_midi,
506 #if defined(HAVE_SYS_SOUNDCARD_H)
507 #include <sys/soundcard.h>
508 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
509 #include <machine/soundcard.h>
510 #elif defined(HAVE_SOUNDCARD_H)
511 #include <soundcard.h>
515 /* check for one of the Open Sound System specific SNDCTL_SEQ defines */
516 #if !defined(SNDCTL_SEQ_SYNC)
517 #error No open sound system MIDI interface
519 ],ac_cv_c_opensoundsystem_midi="yes",ac_cv_c_opensoundsystem_midi="no"))
521 if test "$ac_cv_c_opensoundsystem_midi" = "yes"
523 AC_DEFINE(HAVE_OSS_MIDI, 1, [Define if you have the Open Sound system (MIDI interface)])
526 dnl **** If ln -s doesn't work, use cp instead ****
527 if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
529 dnl **** Check for broken glibc mmap64 ****
531 AC_CACHE_CHECK( [whether mmap64 works defined as mmap], ac_cv_mmap64_works,
533 #define _FILE_OFFSET_BITS 64
537 #include <sys/mman.h>
540 int main(int argc,char **argv) {
541 int fd = open("conftest.map",O_CREAT|O_RDWR,0600);
542 if (fd == -1) exit(1);
544 unlink("conftest.map");
548 if ((-1 == mmap(0,4,PROT_READ|PROT_WRITE,MAP_SHARED,fd,0)) &&
554 fprintf(stderr,"success!\n");
559 ac_cv_mmap64_works="yes",
560 ac_cv_mmap64_works="no",
561 ac_cv_mmap64_works="no") )
563 if test "$ac_cv_mmap64_works" = "yes"
565 AC_DEFINE(_FILE_OFFSET_BITS, 64, [Set this to 64 to enable 64-bit file support on Linux])
568 dnl **** Check for gcc strength-reduce bug ****
570 if test "x${GCC}" = "xyes"
572 CFLAGS="$CFLAGS -Wall"
573 AC_CACHE_CHECK( [for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug,
575 int L[[4]] = {0,1,2,3};
577 static int Array[[3]];
580 for(i=0; i<B; i++) Array[[i]] = i - 3;
581 for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]];
584 exit( Array[[1]] != -2 || L[[2]] != 3);
586 ac_cv_c_gcc_strength_bug="no",
587 ac_cv_c_gcc_strength_bug="yes",
588 ac_cv_c_gcc_strength_bug="yes") )
589 if test "$ac_cv_c_gcc_strength_bug" = "yes"
591 CFLAGS="$CFLAGS -fno-strength-reduce"
594 dnl Check for -mpreferred-stack-boundary
595 AC_CACHE_CHECK([for gcc -mpreferred-stack-boundary=2 support],
596 ac_cv_c_gcc_stack_boundary,
597 [saved_cflags=$CFLAGS
598 CFLAGS="$CFLAGS -mpreferred-stack-boundary=2"
599 AC_TRY_COMPILE(,[return 0],ac_cv_c_gcc_stack_boundary="yes",ac_cv_c_gcc_stack_boundary="no")
602 if test "$ac_cv_c_gcc_stack_boundary" = "yes"
604 CFLAGS="$CFLAGS -mpreferred-stack-boundary=2"
608 dnl **** Check if we need to place .type inside a .def directive ****
610 AC_CACHE_CHECK([whether .type must sit inside a .def directive],
613 LIBS="conftest_asm.s $LIBS"
614 cat > conftest_asm.s <<EOF
616 .def _ac_test; .scl 2; .type 32; .endef
620 AC_TRY_LINK(,,ac_cv_c_type_in_def="yes",ac_cv_c_type_in_def="no")
622 if test "$ac_cv_c_type_in_def" = "yes"
624 AC_DEFINE(NEED_TYPE_IN_DEF, 1, [Define if .type asm directive must be inside a .def directive])
627 dnl **** Check for underscore on external symbols ****
629 AC_CACHE_CHECK([whether external symbols need an underscore prefix],
630 ac_cv_c_extern_prefix,
632 LIBS="conftest_asm.s $LIBS"
633 cat > conftest_asm.s <<EOF
638 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
639 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
641 if test "$ac_cv_c_extern_prefix" = "yes"
643 AC_DEFINE(NEED_UNDERSCORE_PREFIX, 1,
644 [Define if symbols declared in assembly code need an underscore prefix])
647 dnl **** Check for .string in assembler ****
649 AC_CACHE_CHECK([whether assembler accepts .string],
652 LIBS="conftest_asm.s $LIBS"
653 cat > conftest_asm.s <<EOF
656 AC_TRY_LINK(,,ac_cv_c_asm_string="yes",ac_cv_c_asm_string="no")
658 if test "$ac_cv_c_asm_string" = "yes"
660 AC_DEFINE(HAVE_ASM_STRING, 1, [Define to use .string instead of .ascii])
663 dnl **** Check for working dll ****
667 if test "$LIBEXT" = "so"
669 AC_CACHE_CHECK([whether we can build a GNU style ELF dll],
671 [saved_cflags=$CFLAGS
672 CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic"
673 AC_TRY_LINK(,[return 1],ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")
676 if test "$ac_cv_c_dll_gnuelf" = "yes"
678 LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)"
679 LDDLLFLAGS="-Wl,-Bsymbolic"
681 AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll,
682 ac_cv_c_dll_unixware,
683 [saved_cflags=$CFLAGS
684 CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic"
685 AC_TRY_LINK(,[return 1],ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")
688 if test "$ac_cv_c_dll_unixware" = "yes"
690 LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,%)"
691 LDDLLFLAGS="-Wl,-B,symbolic"
694 if test "$ac_cv_c_dll_gnuelf" = "no" -a "$ac_cv_c_dll_unixware" = "no"
697 if test "$DLLWRAP" = "dllwrap"; then
698 dnl FIXME - check whether dllwrap works correctly...
699 if test "$CYGWIN" = "yes"; then
700 echo "*** use dllwrap for building shared library."
707 if test "$LIBEXT" = "a"; then
708 echo "*** It is currently not possible to build WINE without shared"
709 echo "*** library (.so) support to allow transparent switch between .so"
710 echo "*** and .dll files."
711 echo "*** If you are using Linux, you will need a newer binutils."
718 if test "$LIBEXT" = "so"; then
720 LDPATH="LD_LIBRARY_PATH=\"\$(TOPOBJDIR)/unicode:\$\$LD_LIBRARY_PATH\""
721 elif test "$LIBEXT" = "dll"; then
722 #DLLFLAGS="-fPIC" # -fPIC doesn't work(at least in cygwin-b20) - FIXME
723 LDPATH="PATH=\"\$(TOPOBJDIR)/unicode:\$\$PATH\""
732 dnl **** Check for reentrant libc ****
734 dnl For cross-compiling we blindly assume that libc is reentrant. This is
735 dnl ok since non-reentrant libc is quite rare (mostly old libc5 versions).
737 AC_DEFUN([WINE_CHECK_ERRNO],
739 AC_CACHE_CHECK(for reentrant libc: $1, wine_cv_libc_r_$1,
740 [AC_TRY_RUN([int myerrno = 0;
742 int *$1(){return &myerrno;}
743 main(){connect(0,buf,255); exit(!myerrno);}],
744 wine_cv_libc_r_$1=yes, wine_cv_libc_r_$1=no,
745 wine_cv_libc_r_$1=yes )
747 if test "$wine_cv_libc_r_$1" = "yes"
749 wine_cv_libc_reentrant=$1
753 wine_cv_libc_reentrant=no
754 dnl Linux style errno location
755 WINE_CHECK_ERRNO(__errno_location)
756 dnl FreeBSD style errno location
757 WINE_CHECK_ERRNO(__error)
758 dnl Solaris style errno location
759 WINE_CHECK_ERRNO(___errno)
760 dnl UnixWare style errno location
761 WINE_CHECK_ERRNO(__thr_errno)
762 dnl NetBSD style errno location
763 WINE_CHECK_ERRNO(__errno)
765 if test "$wine_cv_libc_reentrant" != "no"
767 AC_DEFINE_UNQUOTED(ERRNO_LOCATION,$wine_cv_libc_reentrant,
768 [Define to the name of the function returning errno for reentrant libc])
771 dnl **** Check for reentrant X libraries ****
773 dnl This may fail to determine whether X libraries are reentrant if
774 dnl AC_PATH_XTRA does not set x_libraries. In this case manual configuration
775 dnl is possible with the --without-reentrant-x option.
777 if test "$have_x" = "yes" -a "$wine_cv_libc_reentrant" != "no"
779 AC_CACHE_CHECK( [for reentrant X libraries], wine_cv_x_reentrant,
780 [ if test "x$with_reentrant_x" = "xno"
782 wine_cv_x_reentrant=no
785 for dir in "$x_libraries" /usr/lib /usr/local/lib /lib; do
786 if test -r $dir/libX11.so; then
787 libX11_check="-D $dir/libX11.so"
790 if test -r $dir/libX11.a; then
791 libX11_check="$dir/libX11.a"
795 if test "$libX11_check" != "none"; then
796 if nm $libX11_check | grep $wine_cv_libc_reentrant >/dev/null 2>&1
798 wine_cv_x_reentrant=yes
800 wine_cv_x_reentrant=no
803 wine_cv_x_reentrant=unknown
807 wine_cv_x_reentrant=no
809 if test "$wine_cv_x_reentrant" = "no"
811 AC_DEFINE(NO_REENTRANT_X11, 1,
812 [Define if X libraries are not reentrant (compiled without -D_REENTRANT)])
816 dnl **** Check for functions ****
859 dnl **** Check for header files ****
918 dnl **** Check for types ****
923 AC_CHECK_SIZEOF(long long,0)
925 AC_CACHE_CHECK([whether linux/input.h is for real],
926 wine_cv_linux_input_h,
928 #include <linux/input.h>
930 int foo = EVIOCGBIT(EV_ABS,42);
931 int bar = BTN_PINKIE;
934 wine_cv_linux_input_h=yes,
935 wine_cv_linux_input_h=no,
939 if test "$wine_cv_linux_input_h" = "yes"
941 AC_DEFINE(HAVE_CORRECT_LINUXINPUT_H, 1,
942 [Define if we have linux/input.h AND it contains the INPUT event API])
946 AC_CACHE_CHECK([whether we can use re-entrant gethostbyname_r Linux style],
947 wine_cv_linux_gethostbyname_r_6,
953 struct hostent *result;
960 res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
961 res=gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
963 wine_cv_linux_gethostbyname_r_6=yes,
964 wine_cv_linux_gethostbyname_r_6=no
967 if test "$wine_cv_linux_gethostbyname_r_6" = "yes"
969 AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6, 1,
970 [Define if Linux-style gethostbyname_r and gethostbyaddr_r are available])
973 if test "$ac_cv_header_linux_joystick_h" = "yes"
975 AC_CACHE_CHECK([whether linux/joystick.h uses the Linux 2.2+ API],
976 wine_cv_linux_joystick_22_api,
978 #include <sys/ioctl.h>
979 #include <linux/joystick.h>
981 struct js_event blub;
982 #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
983 #error "no 2.2 header"
986 wine_cv_linux_joystick_22_api=yes,
987 wine_cv_linux_joystick_22_api=no,
988 wine_cv_linux_joystick_22_api=no
991 if test "$wine_cv_linux_joystick_22_api" = "yes"
993 AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API, 1,
994 [Define if <linux/joystick.h> defines the Linux 2.2 joystick API])
998 dnl **** statfs checks ****
1000 if test "$ac_cv_header_sys_vfs_h" = "yes"
1002 AC_CACHE_CHECK( [whether sys/vfs.h defines statfs],
1003 wine_cv_sys_vfs_has_statfs,
1005 #include <sys/types.h>
1006 #ifdef HAVE_SYS_PARAM_H
1007 # include <sys/param.h>
1009 #include <sys/vfs.h>
1013 memset(&stfs,0,sizeof(stfs));
1014 ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no
1017 if test "$wine_cv_sys_vfs_has_statfs" = "yes"
1019 AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS, 1,
1020 [Define if the struct statfs is defined by <sys/vfs.h>])
1024 if test "$ac_cv_header_sys_statfs_h" = "yes"
1026 AC_CACHE_CHECK( [whether sys/statfs.h defines statfs],
1027 wine_cv_sys_statfs_has_statfs,
1029 #include <sys/types.h>
1030 #ifdef HAVE_SYS_PARAM_H
1031 # include <sys/param.h>
1033 #include <sys/statfs.h>
1036 ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no
1039 if test "$wine_cv_sys_statfs_has_statfs" = "yes"
1041 AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS, 1,
1042 [Define if the struct statfs is defined by <sys/statfs.h>])
1046 if test "$ac_cv_header_sys_mount_h" = "yes"
1048 AC_CACHE_CHECK( [whether sys/mount.h defines statfs],
1049 wine_cv_sys_mount_has_statfs,
1051 #include <sys/types.h>
1052 #ifdef HAVE_SYS_PARAM_H
1053 # include <sys/param.h>
1055 #include <sys/mount.h>
1058 ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no
1061 if test "$wine_cv_sys_mount_has_statfs" = "yes"
1063 AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT, 1,
1064 [Define if the struct statfs is defined by <sys/mount.h>])
1068 dnl **** FIXME: what about mixed cases, where we need two of them? ***
1070 AC_CACHE_CHECK( [for statfs.f_bfree], wine_cv_statfs_bfree,
1071 [ if test "x$statfs_bfree" = "xno"
1073 wine_cv_statfs_bfree=no
1076 #include <sys/types.h>
1077 #ifdef HAVE_SYS_PARAM_H
1078 # include <sys/param.h>
1080 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
1081 # include <sys/mount.h>
1083 # ifdef STATFS_DEFINED_BY_SYS_VFS
1084 # include <sys/vfs.h>
1086 # ifdef STATFS_DEFINED_BY_SYS_STATFS
1087 # include <sys/statfs.h>
1095 ],wine_cv_statfs_bfree=yes,wine_cv_statfs_bfree=no
1098 if test "$wine_cv_statfs_bfree" = "yes"
1100 AC_DEFINE(STATFS_HAS_BFREE, 1, [Define if the struct statfs has the member bfree])
1103 AC_CACHE_CHECK( [for statfs.f_bavail], wine_cv_statfs_bavail,
1104 [ if test "x$statfs_bavail" = "xno"
1106 wine_cv_statfs_bavail=no
1109 #include <sys/types.h>
1110 #ifdef HAVE_SYS_PARAM_H
1111 # include <sys/param.h>
1113 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
1114 # include <sys/mount.h>
1116 # ifdef STATFS_DEFINED_BY_SYS_VFS
1117 # include <sys/vfs.h>
1119 # ifdef STATFS_DEFINED_BY_SYS_STATFS
1120 # include <sys/statfs.h>
1128 ],wine_cv_statfs_bavail=yes,wine_cv_statfs_bavail=no
1131 if test "$wine_cv_statfs_bavail" = "yes"
1133 AC_DEFINE(STATFS_HAS_BAVAIL, 1, [Define if the struct statfs has the member bavail])
1136 dnl *** check for file descriptor passing with msg_accrights
1138 AC_CACHE_CHECK([for msg_accrights in struct msghdr], ac_cv_c_msg_accrights,
1139 AC_TRY_COMPILE([#include <sys/types.h>
1140 #include <sys/socket.h>],[struct msghdr hdr; hdr.msg_accrights=0],
1141 ac_cv_c_msg_accrights="yes", ac_cv_c_msg_accrights="no"))
1142 if test "$ac_cv_c_msg_accrights" = "yes"
1144 AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS, 1, [Define if struct msghdr contains msg_accrights])
1147 dnl *** Check for the sa_len member in struct sockaddr
1149 AC_CACHE_CHECK([for sa_len in struct sockaddr], ac_cv_c_sockaddr_sa_len,
1150 AC_TRY_COMPILE([#include <sys/types.h>
1151 #include <sys/socket.h>
1152 ], [static struct sockaddr addr; addr.sa_len = 1],
1153 ac_cv_c_sockaddr_sa_len="yes", ac_cv_c_sockaddr_sa_len="no"))
1154 if test "$ac_cv_c_sockaddr_sa_len" = "yes"
1156 AC_DEFINE(HAVE_SOCKADDR_SA_LEN, 1, [Define if struct sockaddr contains sa_len])
1159 dnl *** Check for the sun_len member in struct sockaddr_un
1161 AC_CACHE_CHECK([for sun_len in struct sockaddr_un], ac_cv_c_sockaddr_sun_len,
1162 AC_TRY_COMPILE([#include <sys/types.h>
1163 #include <sys/socket.h>
1164 #include <sys/un.h>], [static struct sockaddr_un addr; addr.sun_len = 1],
1165 ac_cv_c_sockaddr_sun_len="yes", ac_cv_c_sockaddr_sun_len="no"))
1166 if test "$ac_cv_c_sockaddr_sun_len" = "yes"
1168 AC_DEFINE(HAVE_SOCKADDR_SUN_LEN, 1, [Define if struct sockaddr_un contains sun_len])
1171 dnl *** check for the need to define __i386__
1173 AC_CACHE_CHECK([whether we need to define __i386__],ac_cv_cpp_def_i386,
1174 AC_EGREP_CPP(yes,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
1177 ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no"))
1178 if test "$ac_cv_cpp_def_i386" = "yes"
1180 CFLAGS="$CFLAGS -D__i386__"
1181 LINTFLAGS="$LINTFLAGS -D__i386__"
1184 dnl $GCC is set by autoconf
1186 if test "$GCC" = "yes"
1188 GCC_NO_BUILTIN="-fno-builtin"
1190 AC_SUBST(GCC_NO_BUILTIN)
1192 dnl **** Generate output files ****
1194 AC_DEFINE(__WINE_CONFIG_H, 1,
1195 [This must always be defined to allow checking for config.h inclusion])
1197 AC_OUTPUT_COMMANDS([
1199 dlls/ddraw/d3ddevice \
1200 dlls/ddraw/dclipper \
1202 dlls/ddraw/direct3d \
1203 dlls/ddraw/dpalette \
1204 dlls/ddraw/dsurface \
1205 dlls/dinput/joystick \
1206 dlls/dinput/keyboard \
1208 dlls/kernel/messages \
1210 dlls/user/resources \
1213 for i in $extra_subdirs; do [ -d $i ] || (echo "creating $i" && mkdir $i); done ])
1215 MAKE_RULES=Make.rules
1216 AC_SUBST_FILE(MAKE_RULES)
1218 MAKE_DLL_RULES=dlls/Makedll.rules
1219 AC_SUBST_FILE(MAKE_DLL_RULES)
1221 MAKE_PROG_RULES=programs/Makeprog.rules
1222 AC_SUBST_FILE(MAKE_PROG_RULES)
1227 programs/Makeprog.rules
1233 dlls/advapi32/Makefile
1234 dlls/avicap32/Makefile
1235 dlls/avifil32/Makefile
1236 dlls/comctl32/Makefile
1237 dlls/commdlg/Makefile
1238 dlls/crtdll/Makefile
1239 dlls/crypt32/Makefile
1240 dlls/dciman32/Makefile
1242 dlls/devenum/Makefile
1243 dlls/dinput/Makefile
1245 dlls/dplayx/Makefile
1246 dlls/dsound/Makefile
1250 dlls/imagehlp/Makefile
1252 dlls/kernel/Makefile
1253 dlls/lzexpand/Makefile
1254 dlls/mapi32/Makefile
1258 dlls/msimg32/Makefile
1259 dlls/msnet32/Makefile
1260 dlls/msrle32/Makefile
1261 dlls/msvcrt/Makefile
1262 dlls/msvideo/Makefile
1263 dlls/netapi32/Makefile
1265 dlls/odbc32/Makefile
1267 dlls/oleaut32/Makefile
1268 dlls/olecli/Makefile
1269 dlls/oledlg/Makefile
1270 dlls/olepro32/Makefile
1271 dlls/olesvr/Makefile
1272 dlls/opengl32/Makefile
1275 dlls/quartz/Makefile
1276 dlls/rasapi32/Makefile
1277 dlls/richedit/Makefile
1278 dlls/rpcrt4/Makefile
1279 dlls/serialui/Makefile
1280 dlls/setupapi/Makefile
1281 dlls/shdocvw/Makefile
1282 dlls/shell32/Makefile
1283 dlls/shfolder/Makefile
1284 dlls/shlwapi/Makefile
1286 dlls/tapi32/Makefile
1287 dlls/ttydrv/Makefile
1289 dlls/urlmon/Makefile
1291 dlls/version/Makefile
1292 dlls/win32s/Makefile
1293 dlls/winaspi/Makefile
1294 dlls/winedos/Makefile
1295 dlls/wineps/Makefile
1296 dlls/wininet/Makefile
1298 dlls/winmm/joystick/Makefile
1299 dlls/winmm/mcianim/Makefile
1300 dlls/winmm/mciavi/Makefile
1301 dlls/winmm/mcicda/Makefile
1302 dlls/winmm/mciseq/Makefile
1303 dlls/winmm/mciwave/Makefile
1304 dlls/winmm/midimap/Makefile
1305 dlls/winmm/wavemap/Makefile
1306 dlls/winmm/wineoss/Makefile
1307 dlls/winnls/Makefile
1308 dlls/winsock/Makefile
1309 dlls/winspool/Makefile
1310 dlls/wintrust/Makefile
1312 dlls/wsock32/Makefile
1313 dlls/x11drv/Makefile
1314 documentation/Makefile
1315 documentation/wine.conf.man
1316 documentation/wine.man
1319 graphics/enhmetafiledrv/Makefile
1320 graphics/metafiledrv/Makefile
1321 graphics/win16drv/Makefile
1322 graphics/x11drv/Makefile
1336 programs/avitools/Makefile
1337 programs/clock/Makefile
1338 programs/cmdlgtst/Makefile
1339 programs/control/Makefile
1340 programs/notepad/Makefile
1341 programs/osversioncheck/Makefile
1342 programs/progman/Makefile
1343 programs/regapi/Makefile
1344 programs/regtest/Makefile
1345 programs/uninstaller/Makefile
1346 programs/view/Makefile
1347 programs/wcmd/Makefile
1348 programs/wineconsole/Makefile
1349 programs/winemine/Makefile
1350 programs/winetest/Makefile
1351 programs/winhelp/Makefile
1352 programs/winver/Makefile
1357 tools/winapi/Makefile
1358 tools/winebuild/Makefile
1359 tools/winedump/Makefile
1367 windows/x11drv/Makefile ])
1369 if test "$have_x" = "no"
1372 echo "*** Warning: X development files not found. Wine will be built without"
1373 echo "*** X support, which currently does not work, and would probably not be"
1374 echo "*** what you want anyway. You will need to install devel packages of"
1375 echo "*** Xlib/Xfree86 at the very least."
1378 if test "$ac_cv_lib_ncurses_resizeterm" = "no" -a "$ac_cv_lib_ncurses_waddch" = "yes"
1381 echo "*** Warning: resizeterm not found in ncurses. Wine will be built without"
1382 echo "*** terminal resize support. Consider upgrading ncurses."
1385 if test "$wine_cv_libc_reentrant" = "no"
1388 echo "*** Warning: non-reentrant libc detected. Wine will be build without"
1389 echo "*** thread support. Consider upgrading libc to a more recent"
1390 echo "*** reentrant version of libc."
1393 if test "$wine_cv_opengl_version_OK" = "no"
1396 echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
1397 echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)."
1400 if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "normal"
1403 echo "*** Warning: the OpenGL version you have installed relies on libpthread for"
1404 echo "*** thread-safety. To prevent crashes, OpenGL support has been removed."
1405 echo "*** A fix for glibc 2.1.3 that seems to work is included in this version of Wine,"
1406 echo "*** start configure with '--enable-opengl' to force OpenGL support."
1409 if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "yes"
1412 echo "*** Warning: you explicitly linked in a thread-safe OpenGL version. If you"
1413 echo "*** experience unusual crashes on DirectDraw games, try first to disable OpenGL"
1414 echo "*** support before reporting bugs."
1417 if test "$wine_cv_warn_cups_h" = "yes"
1420 echo "*** Note: You have cups runtime libraries, but no development"
1421 echo "*** libraries. Install the cups-devel package or whichever package"
1422 echo "*** contains cups.h to enable CUPS support in WINE."
1425 if test "$wine_cv_msg_freetype" = "yes"
1428 echo "*** Note: Your system appears to have the FreeType 2 runtime libraries"
1429 echo "*** installed, but 'freetype-config' is not in your PATH. Install the"
1430 echo "*** freetype-devel package (or its equivalent on your distribution) to"
1431 echo "*** enable Wine to use TrueType fonts."
1435 echo "Configure finished. Do 'make depend && make' to compile Wine."
1438 dnl Local Variables:
1439 dnl comment-start: "dnl "
1441 dnl comment-start-skip: "\\bdnl\\b\\s *"
1442 dnl compile-command: "autoconf"