1 dnl Process this file with autoconf to produce a configure script.
2 dnl Original author: Michael Patra
3 dnl See ChangeLog file for detailed change history.
5 m4_define(WINE_VERSION,regexp(m4_include(VERSION),[version \([-.0-9A-Za-z]+\)],[\1]))
8 AC_INIT([Wine],WINE_VERSION,[wine-devel@winehq.org])
9 AC_CONFIG_SRCDIR(server/atom.c)
10 AC_CONFIG_HEADERS(include/config.h)
11 AC_CONFIG_AUX_DIR(tools)
13 dnl **** Command-line arguments ****
15 AC_ARG_ENABLE(win16, AC_HELP_STRING([--disable-win16],[do not include Win16 support]))
16 AC_ARG_ENABLE(win64, AC_HELP_STRING([--enable-win64], [build a Win64 emulator on AMD64 (won't run Win32 binaries)]))
18 AC_ARG_WITH(opengl, AC_HELP_STRING([--without-opengl],[do not use OpenGL]))
19 AC_ARG_WITH(curses, AC_HELP_STRING([--without-curses],[do not use curses]))
20 AC_ARG_WITH(wine-tools,AC_HELP_STRING([--with-wine-tools=<dir>],[use Wine tools from directory <dir>]))
25 if test "x$enable_win64" != "xyes"
27 test -n "$CC" || CC="gcc -m32"
28 test -n "$LD" || LD="ld -m elf_i386"
29 test -n "$AS" || AS="as --32"
35 dnl enable_win16 defaults to yes on x86, to no on other CPUs
38 if test "x$enable_win16" != "xno"
45 AC_SUBST(WIN16_FILES,"\$(WIN16_FILES)")
46 AC_SUBST(WIN16_INSTALL,"\$(WIN16_INSTALL)")
47 if test "x$enable_win16" != "xyes"
53 dnl **** Check for some programs ****
58 dnl We can't use AC_PROG_CPP for winegcc, it uses by default $(CC) -E
59 AC_CHECK_TOOL(CPPBIN,cpp,cpp)
61 AC_CACHE_CHECK([for the directory containing the Wine tools], wine_cv_toolsdir,
62 [if test -z "$with_wine_tools"; then
63 if test "$cross_compiling" = "yes"; then
64 AC_MSG_ERROR([you must use the --with-wine-tools option when cross-compiling.])
66 wine_cv_toolsdir="\$(TOPOBJDIR)"
68 elif test -d "$with_wine_tools/tools/winebuild"; then
69 case $with_wine_tools in
70 /*) wine_cv_toolsdir="$with_wine_tools" ;;
71 *) wine_cv_toolsdir="\$(TOPOBJDIR)/$with_wine_tools" ;;
74 AC_MSG_ERROR([could not find Wine tools in $with_wine_tools.])
76 AC_SUBST(TOOLSDIR,$wine_cv_toolsdir)
81 dnl **** Just additional warning checks, since AC_PROG just sets 'lex' even
82 dnl **** without one present.
83 AC_CHECK_PROGS(XLEX,$LEX flex lex,none)
84 if test "$XLEX" = "none"
86 AC_MSG_ERROR([no suitable lex found. Please install the 'flex' package.])
90 AC_CHECK_PROGS(BISON,bison,none)
91 if test "$BISON" = "none"
93 AC_MSG_ERROR([no suitable bison found. Please install the 'bison' package.])
96 AC_CHECK_TOOLS(AS,[gas as],as)
97 AC_CHECK_TOOL(LD,ld,ld)
98 AC_CHECK_TOOL(AR,ar,ar)
100 AC_CHECK_TOOL(STRIP,strip,strip)
101 AC_CHECK_TOOL(WINDRES,windres,false)
105 AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH])
107 dnl Prepend src dir to install path dir if it's a relative path
109 [[\\/$]]* | ?:[[\\/]]* ) ;;
110 *) INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
114 AC_CHECK_PROGS(LINT, lclint lint)
115 if test "$LINT" = "lint"
117 LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4"
118 dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64'
123 dnl Check for various programs
124 AC_CHECK_PROGS(FONTFORGE, fontforge, false)
125 AC_CHECK_PROGS(PKG_CONFIG, pkg-config, false)
129 AC_PATH_PROG(PRELINK, prelink, false, [/sbin /usr/sbin $PATH])
133 dnl **** Check for some libraries ****
135 dnl Check for -li386 for NetBSD and OpenBSD
136 AC_CHECK_LIB(i386,i386_set_ldt)
137 dnl Check for -lossaudio for NetBSD
138 AC_CHECK_LIB(ossaudio,_oss_ioctl)
139 dnl Check for -lxpg4 for FreeBSD
140 AC_CHECK_LIB(xpg4,_xpg4_setrunelocale)
141 dnl Check for -lpthread
142 AC_CHECK_LIB(pthread,pthread_create,AC_SUBST(LIBPTHREAD,"-lpthread"))
146 AC_SUBST(OPENGLFILES,"")
147 AC_SUBST(GLU32FILES,"")
148 AC_SUBST(OPENGL_LIBS,"")
150 dnl **** Check for header files ****
153 AudioUnit/AudioUnit.h \
154 CoreAudio/CoreAudio.h \
167 fontconfig/fontconfig.h \
192 machine/soundcard.h \
262 dnl **** Checks for headers that depend on other ones ****
264 AC_CHECK_HEADERS([sys/mount.h sys/statfs.h sys/user.h sys/vfs.h],,,
265 [#include <sys/types.h>
267 # include <sys/param.h>
270 AC_CHECK_HEADERS([net/if.h net/if_arp.h net/if_dl.h net/if_types.h net/route.h netipx/ipx.h],,,
271 [#include <sys/types.h>
272 #if HAVE_SYS_SOCKET_H
273 # include <sys/socket.h>
276 AC_CHECK_HEADERS([linux/ipx.h],,,
277 [#include <sys/types.h>
278 #ifdef HAVE_ASM_TYPES_H
279 # include <asm/types.h>
281 #if HAVE_SYS_SOCKET_H
282 # include <sys/socket.h>
285 AC_CHECK_HEADERS([resolv.h],,,
286 [#include <sys/types.h>
287 #if HAVE_SYS_SOCKET_H
288 # include <sys/socket.h>
290 #if HAVE_NETINET_IN_H
291 # include <netinet/in.h>
293 #if HAVE_ARPA_NAMESER_H
294 # include <arpa/nameser.h>
297 AC_CHECK_HEADERS(ucontext.h,,,[#include <signal.h>])
299 AC_CHECK_HEADERS([pthread_np.h],,,
300 [#ifdef HAVE_PTHREAD_H
304 AC_CHECK_HEADERS([linux/videodev.h],,,
305 [#ifdef HAVE_SYS_TIME_H
306 #include <sys/time.h>
308 #include <sys/types.h>
309 #ifdef HAVE_ASM_TYPES_H
310 #include <asm/types.h>
313 dnl Check for broken kernel header that doesn't define __user
314 AC_CHECK_HEADERS([linux/capi.h],,,[#define __user])
316 dnl **** Check for X11 ****
318 if test "$have_x" = "yes"
321 ac_save_CPPFLAGS="$CPPFLAGS"
322 CPPFLAGS="$CPPFLAGS $X_CFLAGS"
324 dnl *** All of the following tests require X11/Xlib.h
325 AC_CHECK_HEADERS([X11/Xlib.h \
328 X11/extensions/shape.h \
329 X11/extensions/XInput.h \
330 X11/extensions/XShm.h \
331 X11/extensions/Xrandr.h \
332 X11/extensions/Xrender.h \
333 X11/extensions/xf86vmode.h],,,
334 [#ifdef HAVE_X11_XLIB_H
335 # include <X11/Xlib.h>
337 #ifdef HAVE_X11_XUTIL_H
338 # include <X11/Xutil.h>
341 dnl *** Check for X keyboard extension
342 if test "$ac_cv_header_X11_XKBlib_h" = "yes"
344 AC_CHECK_LIB(X11, XkbQueryExtension,
345 AC_DEFINE(HAVE_XKB, 1, [Define if you have the XKB extension]),,
346 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
349 dnl *** Check for X Shm extension
350 if test "$ac_cv_header_X11_extensions_XShm_h" = "yes"
352 AC_CHECK_LIB(Xext, XShmQueryExtension,
353 AC_DEFINE(HAVE_LIBXXSHM, 1, [Define if you have the X Shm extension]),,
354 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
357 dnl *** Check for X shape extension
358 if test "$ac_cv_header_X11_extensions_shape_h" = "yes"
360 AC_CHECK_LIB(Xext,XShapeQueryExtension,
361 AC_DEFINE(HAVE_LIBXSHAPE, 1, [Define if you have the X Shape extension]),,
362 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
365 dnl *** Check for XFree86 VMODE extension
366 if test "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes"
368 AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension,
369 [ AC_DEFINE(HAVE_LIBXXF86VM, 1, [Define if you have the Xxf86vm library])
370 X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm"
372 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
375 dnl *** Check for X RandR extension
376 if test "$ac_cv_header_X11_extensions_Xrandr_h" = "yes"
378 AC_TRY_COMPILE([#include <X11/Xlib.h>
379 #include <X11/extensions/Xrandr.h>],[static typeof(XRRSetScreenConfigAndRate) * func;],
380 [AC_DEFINE(HAVE_LIBXRANDR, 1, [Define if you have the Xrandr library])])
383 dnl *** Check for Transform functions in Xrender
384 if test "$ac_cv_header_X11_extensions_Xrender_h" = "yes"
386 AC_CHECK_LIB(Xrender, XRenderSetPictureTransform,
387 [AC_DEFINE(HAVE_XRENDERSETPICTURETRANSFORM, 1,
388 [Define if Xrender has the XRenderSetPictureTransform function])],,
389 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
391 dnl *** End of X11/Xlib.h check
393 dnl Check for the presence of OpenGL
394 if test "x$with_opengl" != "xno"
396 AC_CHECK_HEADERS(GL/gl.h GL/glx.h GL/glext.h GL/glu.h,,,
397 [#ifdef HAVE_GL_GLX_H
400 if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_glx_h" = "yes"
402 dnl Check for some problems due to old Mesa versions
403 AC_CACHE_CHECK([for up-to-date OpenGL version], wine_cv_opengl_header_version_OK,
405 [#include <GL/gl.h>],
406 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
407 [wine_cv_opengl_header_version_OK="yes"],
408 [wine_cv_opengl_header_version_OK="no"]
412 if test "$wine_cv_opengl_header_version_OK" = "yes"
414 dnl Check for the presence of the library
415 AC_CHECK_LIB(GL,glXCreateContext,
418 $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
420 if test "$ac_cv_lib_GL_glXCreateContext" = "yes"
422 OPENGLFILES='$(OPENGLFILES)'
423 AC_DEFINE(HAVE_OPENGL, 1, [Define if OpenGL is present on the system])
425 if test -f /usr/X11R6/lib/libGL.a
427 AC_MSG_ERROR([/usr/X11R6/lib/libGL.a is present on your system.
428 This prevents linking to OpenGL. Delete the file and restart configure.])
430 dnl The compile test most likely failed because no libGL.so was found
431 wine_cv_opengl_libs_found="no"
435 dnl Check for GLU32 library.
436 AC_CHECK_LIB(GLU,gluLookAt,
437 [OPENGL_LIBS="$OPENGL_LIBS -lGLU"
438 GLU32FILES='$(GLU32FILES)']
440 $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS
444 dnl Check for glut32 library.
445 AC_CHECK_LIB(glut,glutMainLoop,
446 [AC_SUBST(GLUT_LIBS,"-lglut -lXmu -lXi")
447 AC_SUBST(GLUT32FILES,'$(GLUT32FILES)')],,
448 $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXmu -lXi -lX11 $X_EXTRA_LIBS)
450 wine_cv_opengl_headers_found="no"
453 dnl **** Check for NAS ****
455 AC_CHECK_HEADERS(audio/audiolib.h,
456 [AC_CHECK_HEADERS(audio/soundlib.h,,,[#include <audio/audiolib.h>])
457 AC_CHECK_LIB(audio,AuCreateFlow,
458 [AC_DEFINE(HAVE_NAS,1,[Define if you have NAS including devel headers])
459 NASLIBS="-laudio -lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS"],,
460 [-lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS])])
462 CPPFLAGS="$ac_save_CPPFLAGS"
470 dnl **** Check for libxml2 ****
472 AC_SUBST(XML2LIBS,"")
473 AC_SUBST(XML2INCL,"")
474 AC_SUBST(XSLTLIBS,"")
475 AC_SUBST(XSLTINCL,"")
476 if test "$PKG_CONFIG" != "false"
478 ac_save_CPPFLAGS="$CPPFLAGS"
479 ac_xml_libs="`$PKG_CONFIG --libs libxml-2.0 2>/dev/null`"
480 ac_xml_cflags="`$PKG_CONFIG --cflags libxml-2.0 2>/dev/null`"
481 CPPFLAGS="$CPPFLAGS $ac_xml_cflags"
482 AC_CHECK_HEADERS(libxml/parser.h,
483 [AC_CHECK_LIB(xml2, xmlParseMemory,
484 [AC_DEFINE(HAVE_LIBXML2, 1, [Define if you have the libxml2 library])
485 XML2LIBS="$ac_xml_libs"
486 XML2INCL="$ac_xml_cflags"],,$ac_xml_libs)
487 AC_CHECK_LIB(xml2, xmlReadMemory,
488 [AC_DEFINE(HAVE_XMLREADMEMORY,1,[Define if libxml2 has the xmlReadMemory function])],,$ac_xml_libs)
490 CPPFLAGS="$ac_save_CPPFLAGS"
491 ac_xslt_libs="`$PKG_CONFIG --libs libxslt 2>/dev/null`"
492 ac_xslt_cflags="`$PKG_CONFIG --cflags libxslt 2>/dev/null`"
493 CPPFLAGS="$CPPFLAGS $ac_xslt_cflags"
494 AC_CHECK_HEADERS([libxslt/pattern.h libxslt/transform.h],
495 [AC_CHECK_LIB(xslt, xsltCompilePattern,
496 [AC_DEFINE(HAVE_LIBXSLT, 1, [Define if you have the libxslt library])
497 XSLTLIBS="$ac_xslt_libs"
498 XSLTINCL="$ac_xslt_cflags"],,$ac_xslt_libs)
500 [#ifdef HAVE_LIBXSLT_PATTERN_H
501 # include <libxslt/pattern.h>
503 CPPFLAGS="$ac_save_CPPFLAGS"
506 dnl **** Check for libhal ****
508 if test "$PKG_CONFIG" != "false"
510 ac_save_CPPFLAGS="$CPPFLAGS"
511 ac_hal_libs="`$PKG_CONFIG --libs hal 2>/dev/null`"
512 ac_hal_cflags="`$PKG_CONFIG --cflags hal 2>/dev/null`"
513 CPPFLAGS="$CPPFLAGS $ac_hal_cflags"
514 AC_CHECK_HEADERS([dbus/dbus.h hal/libhal.h])
515 if test "$ac_cv_header_dbus_dbus_h" = "yes" -a "$ac_cv_header_hal_libhal_h" = "yes"
517 AC_CHECK_LIB(hal, libhal_ctx_new,
518 [AC_CHECK_LIB(dbus-1, dbus_connection_close,
519 [AC_DEFINE(HAVE_LIBHAL, 1, [Define if you have the hal library])
520 HALINCL="$ac_hal_cflags"],,$ac_hal_libs)])
522 CPPFLAGS="$ac_save_CPPFLAGS"
525 dnl **** Check which curses lib to use ***
527 if test "x$with_curses" != "xno"
529 if test "$ac_cv_header_ncurses_h" = "yes"
531 AC_CHECK_LIB(ncurses,waddch,
532 [AC_DEFINE(HAVE_LIBNCURSES, 1, [Define if you have the ncurses library (-lncurses)])
533 CURSESLIBS="-lncurses"])
534 elif test "$ac_cv_header_curses_h" = "yes"
536 AC_CHECK_LIB(curses,waddch,
537 [AC_DEFINE(HAVE_LIBCURSES, 1, [Define if you have the curses library (-lcurses)])
538 CURSESLIBS="-lcurses"])
541 LIBS="$LIBS $CURSESLIBS"
542 AC_CHECK_FUNCS(mousemask)
547 dnl **** Check for SANE ****
548 AC_CHECK_PROG(sane_devel,sane-config,sane-config,no)
549 AC_SUBST(SANELIBS,"")
550 AC_SUBST(SANEINCL,"")
551 if test "$sane_devel" != "no"
553 SANELIBS="`$sane_devel --libs`"
554 SANEINCL="`$sane_devel --cflags`"
555 ac_save_CPPFLAGS="$CPPFLAGS"
557 CPPFLAGS="$CPPFLAGS $SANEINCL"
558 LIBS="$LIBS $SANELIBS"
559 AC_CHECK_HEADER(sane/sane.h,
560 [AC_CHECK_LIB(sane,sane_open,
561 [AC_DEFINE(HAVE_SANE, 1, [Define if we have SANE development environment])],
567 CPPFLAGS="$ac_save_CPPFLAGS"
570 dnl **** Check for libgphoto2 ****
571 AC_CHECK_PROG(gphoto2_devel,gphoto2-config,gphoto2-config,no)
572 AC_CHECK_PROG(gphoto2port_devel,gphoto2-port-config,gphoto2-port-config,no)
573 AC_SUBST(GPHOTO2LIBS,"")
574 AC_SUBST(GPHOTO2INCL,"")
575 if test "$gphoto2_devel" != "no" -a "$gphoto2port_devel" != "no"
577 GPHOTO2INCL="`$gphoto2_devel --cflags` `$gphoto2port_devel --cflags`"
579 for i in `$gphoto2_devel --libs` `$gphoto2port_devel --libs`
582 -L/usr/lib|-L/usr/lib64) ;;
583 -L*|-l*) GPHOTO2LIBS="$GPHOTO2LIBS $i";;
586 ac_save_CPPFLAGS="$CPPFLAGS"
588 CPPFLAGS="$CPPFLAGS $GPHOTO2INCL"
589 LIBS="$LIBS $GPHOTO2LIBS"
590 AC_CHECK_HEADER(gphoto2-camera.h,
591 [AC_CHECK_LIB(gphoto2,gp_camera_new,
592 [AC_DEFINE(HAVE_GPHOTO2, 1, [Define if we have libgphoto2 development environment])],
598 CPPFLAGS="$ac_save_CPPFLAGS"
601 dnl **** Check for the ICU library ****
602 if test "$ac_cv_header_unicode_ubidi_h" = "yes"
605 for i in ${ICU_LIB_DIR-/usr/lib}/libsicu ${ICU_LIB_DIR-/usr/lib}/libicu
607 TEST_ICUUC_LIB="${ICUUC_LIB-${i}uc.a}"
608 TEST_ICUDATA_LIB="${ICUDATA_LIB-${i}data.a}"
609 AC_MSG_CHECKING(whether can link with ICU libraries $TEST_ICUUC_LIB and $TEST_ICUDATA_LIB)
610 LIBS="$saved_libs $TEST_ICUUC_LIB $TEST_ICUDATA_LIB -lstdc++ -lgcc_s"
611 AC_TRY_LINK([#include <unicode/ubidi.h>],[ubidi_open()],
612 [AC_DEFINE(HAVE_ICU,1,[Define to 1 if the ICU libraries are installed])
613 AC_SUBST(ICULIBS,"$TEST_ICUUC_LIB $TEST_ICUDATA_LIB -lstdc++ -lgcc_s")
620 dnl **** Check for resolver library ***
621 AC_SUBST(RESOLVLIBS,"")
622 if test "$ac_cv_header_resolv_h" = "yes"
624 AC_CHECK_LIB(resolv, res_query,
625 [AC_DEFINE(HAVE_RESOLV, 1, [Define if you have the resolver library and header])
626 RESOLVLIBS="-lresolv"])
629 dnl **** Check for LittleCMS ***
630 AC_SUBST(LCMSLIBS,"")
631 if test "$ac_cv_header_lcms_h" = "yes" -o "$ac_cv_header_lcms_lcms_h" = "yes"
633 AC_CHECK_LIB(lcms, cmsOpenProfileFromFile,
634 [AC_DEFINE(HAVE_LCMS, 1, [Define if you have the LittleCMS development environment])
638 dnl **** Check for OpenLDAP ***
639 AC_SUBST(LDAPLIBS,"")
640 if test "$ac_cv_header_ldap_h" = "yes" -a "$ac_cv_header_lber_h" = "yes"
642 AC_CHECK_LIB(ldap_r, ldap_initialize,
643 [AC_CHECK_LIB(lber, ber_init,
644 [AC_DEFINE(HAVE_LDAP, 1, [Define if you have the OpenLDAP development environment])
645 LDAPLIBS="-lldap_r -llber"],,
648 WINE_CHECK_LIB_FUNCS(\
649 ldap_count_references \
650 ldap_first_reference \
651 ldap_next_reference \
652 ldap_parse_reference,
653 [$LDAPLIBS $LIBPTHREAD])
656 dnl **** Check for FreeType 2 ****
657 AC_SUBST(FREETYPELIBS,"")
658 AC_SUBST(FREETYPEINCL,"")
659 AC_CHECK_PROG(ft_devel,freetype-config,freetype-config,no)
660 if test "$ft_devel" = "no"
662 AC_CHECK_PROG(ft_devel2,freetype2-config,freetype2-config,no)
663 if test "$ft_devel2" = "freetype2-config"
669 if test "$ft_devel" = "no"
671 wine_cv_msg_freetype=yes
673 FREETYPELIBS=`$ft_devel --libs`
674 FREETYPEINCL=`$ft_devel --cflags`
675 AC_CHECK_LIB(freetype,FT_Init_FreeType,ft_lib=yes,ft_lib=no,$FREETYPELIBS)
676 if test "$ft_lib" = "no"
678 wine_cv_msg_freetype=yes
682 ac_save_CPPFLAGS="$CPPFLAGS"
683 CPPFLAGS="$FREETYPEINCL $CPPFLAGS"
684 AC_CHECK_HEADERS(ft2build.h \
685 freetype/freetype.h \
687 freetype/tttables.h \
689 freetype/ftsnames.h \
690 freetype/ttnameid.h \
692 freetype/ftwinfnt.h \
693 freetype/ftmodapi.h \
694 freetype/internal/sfnt.h,,,
696 #include <ft2build.h>
698 AC_TRY_CPP([#include <ft2build.h>
699 #include <freetype/fttrigon.h>],
700 [AC_DEFINE(HAVE_FREETYPE_FTTRIGON_H, 1,
701 [Define if you have the <freetype/fttrigon.h> header file.])
702 wine_cv_fttrigon=yes],
704 AC_CHECK_TYPES(FT_TrueTypeEngineType,,,[#include <freetype/ftmodapi.h>])
705 ac_save_CFLAGS="$CFLAGS"
706 CFLAGS="$CFLAGS $FREETYPELIBS"
707 AC_CHECK_FUNCS(FT_Load_Sfnt_Table)
708 CFLAGS="$ac_save_CFLAGS"
709 CPPFLAGS="$ac_save_CPPFLAGS"
710 dnl Check that we have at least freetype/freetype.h
711 if test "$ac_cv_header_freetype_freetype_h" = "yes" -a "$wine_cv_fttrigon" = "yes"
713 AC_DEFINE(HAVE_FREETYPE, 1, [Define if FreeType 2 is installed])
714 wine_cv_msg_freetype=no
718 wine_cv_msg_freetype=yes
723 dnl Only build the fonts dir if we have both freetype and fontforge
724 if test "$FONTFORGE" != "false" -a -n "$FREETYPELIBS"
726 AC_SUBST(FONTSSUBDIRS,"fonts")
729 dnl **** Check for parport (currently Linux only) ****
730 AC_CACHE_CHECK([for parport header/ppdev.h], ac_cv_c_ppdev,
732 [#include <linux/ppdev.h>],
733 [ioctl (1,PPCLAIM,0)],
734 [ac_cv_c_ppdev="yes"],
735 [ac_cv_c_ppdev="no"])
737 if test "$ac_cv_c_ppdev" = "yes"
739 AC_DEFINE(HAVE_PPDEV, 1, [Define if we can use ppdev.h for parallel port access])
742 dnl **** Check for va_copy ****
743 AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
745 [#include <stdarg.h>],
749 [ac_cv_c_va_copy="yes"],
750 [ac_cv_c_va_copy="no"])
752 if test "$ac_cv_c_va_copy" = "yes"
754 AC_DEFINE(HAVE_VA_COPY, 1, [Define if we have va_copy])
756 AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy,
758 [#include <stdarg.h>],
762 [ac_cv_c___va_copy="yes"],
763 [ac_cv_c___va_copy="no"])
765 if test "$ac_cv_c___va_copy" = "yes"
767 AC_DEFINE(HAVE___VA_COPY, 1, [Define if we have __va_copy])
770 dnl **** Check for sigsetjmp ****
771 AC_CACHE_CHECK([for sigsetjmp], ac_cv_c_sigsetjmp,
773 [#include <setjmp.h>],
776 siglongjmp( buf, 1 );],
777 [ac_cv_c_sigsetjmp="yes"],
778 [ac_cv_c_sigsetjmp="no"])
780 if test "$ac_cv_c_sigsetjmp" = "yes"
782 AC_DEFINE(HAVE_SIGSETJMP, 1, [Define to 1 if you have the sigsetjmp (and siglongjmp) function])
785 dnl **** Check for pthread_rwlock_t ****
786 AC_CHECK_TYPES([pthread_rwlock_t, pthread_rwlockattr_t],,,[#define _GNU_SOURCE
787 #include <pthread.h>])
789 dnl **** Check for pthread functions ****
790 WINE_CHECK_LIB_FUNCS(\
791 pthread_attr_get_np \
793 pthread_get_stackaddr_np \
794 pthread_get_stacksize_np,
797 dnl **** Check for aRts Sound Server ****
798 AC_PATH_PROG(ARTSCCONFIG, artsc-config)
799 if test x$ARTSCCONFIG != x -a x$ARTSCCONFIG != x'"$ARTSCCONFIG"';
802 for i in `$ARTSCCONFIG --cflags`
805 -I*) ARTSC_CFLAGS="$ARTSC_CFLAGS $i";;
809 for i in `$ARTSCCONFIG --libs`
812 -L/usr/lib|-L/usr/lib64) ;;
813 -L*|-l*) ARTSC_LIBS="$ARTSC_LIBS $i";;
816 save_CFLAGS="$CFLAGS"
817 CFLAGS="$CFLAGS $ARTSC_CFLAGS"
818 AC_CHECK_LIB(artsc,arts_init,
819 [AC_TRY_COMPILE([#include <artsc.h>],[arts_stream_t stream;],
820 [AC_SUBST(ARTSLIBS, $ARTSC_LIBS)
821 AC_SUBST(ARTSINCL, $ARTSC_CFLAGS)
822 AC_DEFINE(HAVE_ARTS, 1, [Define if you have ARTS sound server])])],,
824 CFLAGS="$save_CFLAGS"
827 dnl **** Check for EsounD ****
828 AC_PATH_PROG(ESDCONFIG, esd-config)
829 if test x$ESDCONFIG != x -a x$ESDCONFIG != x'"$ESDCONFIG"';
832 for i in `$ESDCONFIG --cflags`
835 -I*) ESD_CFLAGS="$ESD_CFLAGS $i";;
838 ESD_LIBS=`$ESDCONFIG --libs`
839 save_CFLAGS="$CFLAGS"
840 CFLAGS="$CFLAGS $ESD_CFLAGS"
841 AC_CHECK_LIB(esd,esd_open_sound,
842 [AC_SUBST(ESDLIBS, $ESD_LIBS)
843 AC_SUBST(ESDINCL, $ESD_CFLAGS)
844 AC_DEFINE(HAVE_ESD, 1, [Define if you have EsounD sound server])])
845 CFLAGS="$save_CFLAGS"
848 dnl **** Check for ALSA 1.x ****
849 AC_SUBST(ALSALIBS,"")
850 if test "$ac_cv_header_sys_asoundlib_h" = "yes" -o "$ac_cv_header_alsa_asoundlib_h" = "yes"
852 AC_CHECK_LIB(asound,snd_pcm_hw_params_get_access,
853 [AC_TRY_COMPILE([#ifdef HAVE_ALSA_ASOUNDLIB_H
854 #include <alsa/asoundlib.h>
855 #elif defined(HAVE_SYS_ASOUNDLIB_H)
856 #include <sys/asoundlib.h>
858 [int ret = snd_pcm_hw_params_get_access(NULL, NULL)],
859 [AC_DEFINE(HAVE_ALSA,1,[Define if you have ALSA 1.x including devel headers])
860 ALSALIBS="-lasound"])])
863 dnl **** Check for libaudioio (which can be used to get solaris audio support) ****
865 AC_SUBST(AUDIOIOLIBS,"")
866 if test "$ac_cv_header_libaudioio_h" = "yes"
868 AC_CHECK_LIB(audioio,AudioIOGetVersion,
869 [AUDIOIOLIBS="-laudioio"
870 AC_DEFINE(HAVE_LIBAUDIOIO, 1, [Define if you have libaudioIO])])
873 dnl **** Check for capi4linux ****
875 if test "$ac_cv_header_capi20_h" = "yes" -a "$ac_cv_header_linux_capi_h" = "yes"
877 AC_CHECK_LIB(capi20,capi20_register,[AC_DEFINE(HAVE_CAPI4LINUX,1,[Define if you have capi4linux libs and headers])])
880 dnl **** Check for gcc specific options ****
882 AC_SUBST(EXTRACFLAGS,"")
883 if test "x${GCC}" = "xyes"
885 EXTRACFLAGS="-Wall -pipe"
887 dnl Check for strength-reduce bug
888 AC_CACHE_CHECK( [for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug,
890 int L[[4]] = {0,1,2,3};
892 static int Array[[3]];
895 for(i=0; i<B; i++) Array[[i]] = i - 3;
896 for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]];
899 exit( Array[[1]] != -2 || L[[2]] != 3);
901 ac_cv_c_gcc_strength_bug="no",
902 ac_cv_c_gcc_strength_bug="yes",
903 ac_cv_c_gcc_strength_bug="yes") )
904 if test "$ac_cv_c_gcc_strength_bug" = "yes"
906 EXTRACFLAGS="$EXTRACFLAGS -fno-strength-reduce"
909 dnl Check for some compiler flags
911 WINE_TRY_CFLAGS([-fshort-wchar],
912 [AC_DEFINE(CC_FLAG_SHORT_WCHAR, "-fshort-wchar",
913 [Specifies the compiler flag that forces a short wchar_t])])
914 WINE_TRY_CFLAGS([-fno-strict-aliasing])
915 WINE_TRY_CFLAGS([-gstabs+])
916 WINE_TRY_CFLAGS([-Wdeclaration-after-statement])
917 WINE_TRY_CFLAGS([-Wwrite-strings])
919 dnl Check for noisy string.h
920 saved_CFLAGS="$CFLAGS"
921 CFLAGS="$CFLAGS -Wpointer-arith -Werror"
922 AC_CACHE_CHECK([for broken string.h that generates warnings], ac_cv_c_string_h_warnings,
923 AC_TRY_COMPILE([#include <string.h>],[],
924 [ac_cv_c_string_h_warnings=no],[ac_cv_c_string_h_warnings=yes]))
925 CFLAGS="$saved_CFLAGS"
926 if test "$ac_cv_c_string_h_warnings" = "no"
928 EXTRACFLAGS="$EXTRACFLAGS -Wpointer-arith"
931 AC_SUBST(BUILTINFLAG,"")
932 saved_CFLAGS="$CFLAGS"
933 CFLAGS="$CFLAGS -Werror"
934 AC_CACHE_CHECK([for builtin wchar inlines], ac_cv_c_builtin_wchar_ctype,
936 [int iswlower(unsigned short);],
937 [ac_cv_c_builtin_wchar_ctype=no],[ac_cv_c_builtin_wchar_ctype=yes]))
938 CFLAGS="$saved_CFLAGS"
939 if test "$ac_cv_c_builtin_wchar_ctype" = "yes"
941 BUILTINFLAG="-fno-builtin"
945 dnl **** Check how to define a function in assembly code ****
947 AC_CACHE_CHECK([how to define a function in assembly code], ac_cv_asm_func_def,
949 ["\t.globl _ac_test\n\t.def _ac_test; .scl 2; .type 32; .endef\n_ac_test:\t.long 0"],,,
950 ac_cv_asm_func_def=".def",
951 [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,@function\n_ac_test:\t.long 0"],,,
952 ac_cv_asm_func_def=".type @function",
953 [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,2\n_ac_test:\t.long 0"],,,
954 ac_cv_asm_func_def=".type 2",
955 ac_cv_asm_func_def="unknown")])]))
957 AH_TEMPLATE(__ASM_FUNC,[Define to a macro to generate an assembly function directive])
958 case "$ac_cv_asm_func_def" in
960 AC_DEFINE([__ASM_FUNC(name)], [".def " __ASM_NAME(name) "; .scl 2; .type 32; .endef"]) ;;
962 AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",@function"]) ;;
964 AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",2"]) ;;
966 AC_DEFINE([__ASM_FUNC(name)], [""]) ;;
969 dnl **** Check for underscore on external symbols ****
971 AC_CACHE_CHECK([whether external symbols need an underscore prefix], ac_cv_c_extern_prefix,
972 WINE_TRY_ASM_LINK([".globl _ac_test\n_ac_test:\t.long 0"],
973 [extern int ac_test;],
974 [if (ac_test) return 1],
975 ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no"))
977 AH_TEMPLATE(__ASM_NAME,[Define to a macro to generate an assembly name from a C symbol])
978 if test "$ac_cv_c_extern_prefix" = "yes"
980 AC_DEFINE([__ASM_NAME(name)], ["_" name])
982 AC_DEFINE([__ASM_NAME(name)], [name])
985 dnl **** Check for working dll ****
988 AC_SUBST(DLLFLAGS,"-D_REENTRANT")
989 AC_SUBST(LDSHARED,"")
990 AC_SUBST(LDDLLFLAGS,"")
991 AC_SUBST(LIBEXT,"so")
992 AC_SUBST(IMPLIBEXT,"def")
993 AC_SUBST(LIBWINE_LDFLAGS,"")
997 AC_CHECK_TOOL(DLLTOOL,dlltool,false)
998 AC_CHECK_TOOL(DLLWRAP,dllwrap,false)
999 if test "$DLLWRAP" = "false"; then
1002 dnl FIXME - check whether dllwrap works correctly...
1006 dnl We can't build 16-bit NE dlls
1013 DLLFLAGS="$DLLFLAGS -fPIC"
1014 LDDLLFLAGS="-bundle -multiply_defined suppress"
1015 LIBWINE_LDFLAGS="-multiply_defined suppress"
1016 LDSHARED="\$(CC) -dynamiclib -install_name @executable_path/\`\$(RELPATH) \$(bindir) \$(libdir)\`/\$(DYNAME)"
1017 STRIP="$STRIP -u -r"
1018 dnl declare needed frameworks
1019 AC_SUBST(COREFOUNDATIONLIB,"-framework CoreFoundation")
1020 AC_SUBST(IOKITLIB,"-framework IOKit -framework CoreFoundation")
1021 AC_SUBST(LDEXECFLAGS,["-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00000000,-segaddr,WINE_SHARED_HEAP,0x7f000000"])
1022 if test "$ac_cv_header_CoreAudio_CoreAudio_h" = "yes" -a "$ac_cv_header_AudioUnit_AudioUnit_h" = "yes"
1024 dnl CoreServices needed by AudioUnit
1025 AC_SUBST(COREAUDIO,"-framework CoreAudio -framework AudioUnit -framework CoreServices")
1029 LDDLLFLAGS="$LDDLLFLAGS -read_only_relocs warning" dnl FIXME
1034 DLLFLAGS="$DLLFLAGS -fPIC"
1036 AC_CACHE_CHECK([whether we can build a GNU style ELF dll], ac_cv_c_dll_gnuelf,
1037 [WINE_TRY_SHLIB_FLAGS([-fPIC -shared -Wl,-Bsymbolic],
1038 ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")])
1039 if test "$ac_cv_c_dll_gnuelf" = "yes"
1041 LDSHARED="\$(CC) -shared"
1042 LDDLLFLAGS="-shared -Wl,-Bsymbolic"
1043 WINE_TRY_CFLAGS([-fPIC -shared -Wl,-soname,confest.so.1],
1044 [LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)"],
1045 [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-h,confest.so.1],
1046 [LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-h,%)"])])
1048 WINE_TRY_CFLAGS([-fPIC -shared -Wl,-Bsymbolic,-z,defs], [LDDLLFLAGS="$LDDLLFLAGS,-z,defs"])
1050 WINE_TRY_CFLAGS([-fPIC -shared -Wl,-Bsymbolic,-init,__wine_spec_init,-fini,__wine_spec_fini],
1051 [LDDLLFLAGS="$LDDLLFLAGS,-init,__wine_spec_init,-fini,__wine_spec_fini"])
1053 echo '{ global: *; };' >conftest.map
1054 WINE_TRY_CFLAGS([-fPIC -shared -Wl,--version-script=conftest.map],
1055 [LDSHARED="$LDSHARED \$(VERSCRIPT:%=-Wl,--version-script=%)"])
1058 WINE_TRY_CFLAGS([-fPIC -Wl,--export-dynamic],
1059 [AC_SUBST(LDEXECFLAGS,["-Wl,--export-dynamic"])])
1061 WINE_TRY_CFLAGS([-fPIC -Wl,--rpath,\$ORIGIN/../lib],
1062 [LIBWINE_LDFLAGS="-Wl,--rpath,\\\$\$ORIGIN/\`\$(RELPATH) \$(bindir) \$(libdir)\`"])
1065 *i[[3456789]]86* | x86_64)
1066 WINE_TRY_CFLAGS([-Wl,--section-start,.interp=0x7bf00400],
1067 [LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7bf00400"])
1072 AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll, ac_cv_c_dll_unixware,
1073 [WINE_TRY_SHLIB_FLAGS([-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic],
1074 ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")])
1075 if test "$ac_cv_c_dll_unixware" = "yes"
1077 LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,%)"
1078 LDDLLFLAGS="-Wl,-G,-B,symbolic"
1081 AC_CACHE_CHECK(whether we can build an HP-UX dll, ac_cv_c_dll_hpux,
1082 [WINE_TRY_SHLIB_FLAGS([-shared], ac_cv_c_dll_hpux="yes", ac_cv_c_dll_hpux="no")])
1083 if test "$ac_cv_c_dll_hpux" = "yes"
1087 LDDLLFLAGS="-shared -fPIC"
1088 LDSHARED="\$(CC) -shared"
1093 dnl Check for cross compiler to build test programs
1094 AC_SUBST(CROSSTEST,"")
1095 if test "$cross_compiling" = "no"
1097 AC_CHECK_PROGS(CROSSCC,i586-mingw32msvc-gcc i386-mingw32msvc-gcc i386-mingw32-gcc mingw-gcc,false)
1098 AC_CHECK_PROGS(DLLTOOL,i586-mingw32msvc-dlltool i386-mingw32msvc-dlltool i386-mingw32-dlltool mingw-dlltool,false)
1099 AC_CHECK_PROGS(CROSSWINDRES,i586-mingw32msvc-windres i386-mingw32msvc-windres i386-mingw32-windres mingw-windres,false)
1100 if test "$CROSSCC" != "false"; then CROSSTEST="\$(CROSSTEST)"; fi
1105 if test "$LIBEXT" = "a"; then
1107 [could not find a way to build shared libraries.
1108 It is currently not possible to build Wine without shared library
1109 (.so) support to allow transparent switch between .so and .dll files.
1110 If you are using Linux, you will need a newer binutils.]
1116 AC_SUBST(LDPATH,"PATH=\"\$(TOOLSDIR)/libs/wine:\$\$PATH\"") ;;
1118 AC_SUBST(LDPATH,"DYLD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$DYLD_LIBRARY_PATH\"") ;;
1120 AC_SUBST(LDPATH,"LD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$LD_LIBRARY_PATH\"") ;;
1123 dnl Mingw needs explicit msvcrt for linking libwine and winsock for wininet
1126 AC_SUBST(CRTLIBS,"-lmsvcrt")
1127 AC_SUBST(SOCKETLIBS,"-lws2_32")
1131 AC_SUBST(MAIN_BINARY,"wine-pthread") dnl Default value
1135 linux* | k*bsd*-gnu)
1136 AC_SUBST(MAIN_BINARY,"wine-glibc")
1137 AC_SUBST(EXTRA_BINARIES,"wine-kthread wine-pthread wine-preloader") ;;
1142 dnl **** Get the soname for libraries that we load dynamically ****
1144 if test "$LIBEXT" = "so" -o "$LIBEXT" = "dylib"
1146 WINE_GET_SONAME(X11,XCreateWindow,[$X_LIBS $X_EXTRA_LIBS])
1147 WINE_GET_SONAME(Xext,XextCreateExtension,[$X_LIBS -lX11 $X_EXTRA_LIBS])
1148 WINE_GET_SONAME(Xi,XOpenDevice,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])
1149 WINE_GET_SONAME(Xrender,XRenderQueryExtension,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])
1150 WINE_GET_SONAME(Xrandr,XRRQueryExtension,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])
1151 WINE_GET_SONAME(freetype,FT_Init_FreeType,[$X_LIBS])
1152 WINE_GET_SONAME(GL,glXQueryExtension,[$X_LIBS $X_EXTRA_LIBS])
1153 WINE_GET_SONAME(dbus-1,dbus_error_init)
1154 WINE_GET_SONAME(hal,libhal_ctx_new)
1155 WINE_GET_SONAME(txc_dxtn,fetch_2d_texel_rgba_dxt1)
1156 WINE_GET_SONAME(cups,cupsGetDefault)
1157 WINE_GET_SONAME(jack,jack_client_new)
1158 WINE_GET_SONAME(fontconfig,FcInit)
1159 WINE_GET_SONAME(ssl,SSL_library_init)
1160 WINE_GET_SONAME(crypto,BIO_new_socket)
1161 WINE_GET_SONAME(ncurses,waddch)
1162 WINE_GET_SONAME(curses,waddch)
1163 WINE_GET_SONAME(jpeg,jpeg_start_decompress)
1164 WINE_GET_SONAME(capi20,capi20_isinstalled)
1168 dnl **** Check for functions ****
1243 if test "$ac_cv_func_dlopen" = no
1245 AC_CHECK_LIB(dl,dlopen,[AC_DEFINE(HAVE_DLOPEN,1) AC_SUBST(LIBDL,"-ldl")])
1247 WINE_CHECK_LIB_FUNCS(dladdr,[$LIBDL])
1249 dnl Check for -lpoll for Mac OS X/Darwin
1250 if test "$ac_cv_func_poll" = no
1252 AC_CHECK_LIB(poll,poll,[AC_DEFINE(HAVE_POLL,1) AC_SUBST(LIBPOLL,"-lpoll")])
1255 dnl Check for -lnsl for Solaris
1256 if test "$ac_cv_func_gethostbyname" = no
1258 AC_CHECK_LIB(nsl,gethostbyname)
1261 dnl Check for -lsocket for Solaris
1262 if test "$ac_cv_func_connect" = no
1264 AC_CHECK_LIB(socket,connect)
1267 dnl Check for -lresolv for Solaris
1268 if test "$ac_cv_func_inet_aton" = no
1270 AC_CHECK_LIB(resolv,inet_aton)
1273 dnl **** Check for types ****
1277 AC_CHECK_TYPES([mode_t, off_t, pid_t, size_t, ssize_t, long long, fsblkcnt_t, fsfilcnt_t])
1278 AC_CHECK_TYPES([sigset_t],,,[#include <signal.h>])
1279 AC_CHECK_TYPES([request_sense],,,[#include <linux/cdrom.h>])
1281 AC_CHECK_MEMBERS([struct ff_effect.direction],,,
1282 [#ifdef HAVE_LINUX_INPUT_H
1283 #include <linux/input.h>
1286 AC_CACHE_CHECK([for sigaddset],wine_cv_have_sigaddset,
1287 AC_TRY_LINK([#include <signal.h>],[sigset_t set; sigaddset(&set,SIGTERM);],
1288 wine_cv_have_sigaddset=yes,wine_cv_have_sigaddset=no))
1289 if test "$wine_cv_have_sigaddset" = "yes"
1291 AC_DEFINE(HAVE_SIGADDSET, 1, [Define if sigaddset is supported])
1295 AC_CACHE_CHECK([whether we can use re-entrant gethostbyname_r Linux style],
1296 wine_cv_linux_gethostbyname_r_6,
1302 struct hostent *result;
1309 res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
1310 res=gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
1312 wine_cv_linux_gethostbyname_r_6=yes,
1313 wine_cv_linux_gethostbyname_r_6=no
1316 if test "$wine_cv_linux_gethostbyname_r_6" = "yes"
1318 AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6, 1,
1319 [Define if Linux-style gethostbyname_r and gethostbyaddr_r are available])
1322 if test "$ac_cv_header_linux_joystick_h" = "yes"
1324 AC_CACHE_CHECK([whether linux/joystick.h uses the Linux 2.2+ API],
1325 wine_cv_linux_joystick_22_api,
1327 #include <sys/ioctl.h>
1328 #include <linux/joystick.h>
1330 struct js_event blub;
1331 #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
1332 #error "no 2.2 header"
1335 wine_cv_linux_joystick_22_api=yes,
1336 wine_cv_linux_joystick_22_api=no,
1337 wine_cv_linux_joystick_22_api=no
1340 if test "$wine_cv_linux_joystick_22_api" = "yes"
1342 AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API, 1,
1343 [Define if <linux/joystick.h> defines the Linux 2.2 joystick API])
1347 dnl **** FIXME: what about mixed cases, where we need two of them? ***
1349 dnl Check for statfs members
1350 AC_CHECK_MEMBERS([struct statfs.f_bfree, struct statfs.f_bavail, struct statfs.f_frsize, struct statfs.f_ffree, struct statfs.f_favail, struct statfs.f_namelen],,,
1351 [#include <sys/types.h>
1352 #ifdef HAVE_SYS_PARAM_H
1353 # include <sys/param.h>
1355 #ifdef HAVE_SYS_MOUNT_H
1356 # include <sys/mount.h>
1358 #ifdef HAVE_SYS_VFS_H
1359 # include <sys/vfs.h>
1361 #ifdef HAVE_SYS_STATFS_H
1362 # include <sys/statfs.h>
1365 AC_CHECK_MEMBERS([struct statvfs.f_blocks],,,
1366 [#ifdef HAVE_SYS_STATVFS_H
1367 #include <sys/statvfs.h>
1370 dnl Check for socket structure members
1371 AC_CHECK_MEMBERS([struct msghdr.msg_accrights, struct sockaddr.sa_len, struct sockaddr_un.sun_len],,,
1372 [#include <sys/types.h>
1373 #ifdef HAVE_SYS_SOCKET_H
1374 # include <sys/socket.h>
1376 #ifdef HAVE_SYS_UN_H
1377 # include <sys/un.h>
1380 dnl Check for scsireq_t and sg_io_hdr_t members
1381 AC_CHECK_MEMBERS([scsireq_t.cmd, sg_io_hdr_t.interface_id],,,
1382 [#include <sys/types.h>
1383 #ifdef HAVE_SCSI_SG_H
1384 #include <scsi/sg.h>
1387 dnl Check for siginfo_t members
1388 AC_CHECK_MEMBERS([siginfo_t.si_fd],,,[#include <signal.h>])
1390 dnl Check for struct mtget members
1391 AC_CHECK_MEMBERS([struct mtget.mt_blksiz, struct mtget.mt_gstat, struct mtget.mt_blkno],,,
1392 [#include <sys/types.h>
1393 #ifdef HAVE_SYS_MTIO_H
1394 #include <sys/mtio.h>
1397 dnl Check for struct option
1398 AC_CHECK_MEMBERS([struct option.name],,,
1399 [#ifdef HAVE_GETOPT_H
1403 dnl Check for stat.st_blocks
1404 AC_CHECK_MEMBERS([struct stat.st_blocks])
1406 dnl Check for sin6_scope_id
1407 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
1408 [#ifdef HAVE_SYS_TYPES_H
1409 #include <sys/types.h>
1411 #ifdef HAVE_NETINET_IN_H
1412 #include <netinet/in.h>
1415 dnl Check for ns_msg ptr member
1416 AC_CHECK_MEMBERS([ns_msg._msg_ptr],,,
1417 [#ifdef HAVE_SYS_TYPES_H
1418 #include <sys/types.h>
1420 #ifdef HAVE_NETINET_IN_H
1421 # include <netinet/in.h>
1423 #ifdef HAVE_ARPA_NAMESER_H
1424 # include <arpa/nameser.h>
1427 dnl Check for the external timezone variables timezone and daylight
1428 AC_CACHE_CHECK([for timezone variable], ac_cv_have_timezone,
1429 AC_TRY_LINK([#include <time.h>],[timezone = 1],
1430 ac_cv_have_timezone="yes", ac_cv_have_timezone="no"))
1431 if test "$ac_cv_have_timezone" = "yes"
1433 AC_DEFINE(HAVE_TIMEZONE, 1, [Define if you have the timezone variable])
1435 AC_CACHE_CHECK([for daylight variable], ac_cv_have_daylight,
1436 AC_TRY_LINK([#include <time.h>],[daylight = 1],
1437 ac_cv_have_daylight="yes", ac_cv_have_daylight="no"))
1438 if test "$ac_cv_have_daylight" = "yes"
1440 AC_DEFINE(HAVE_DAYLIGHT, 1, [Define if you have the daylight variable])
1443 dnl *** check for the need to define platform-specific symbols
1446 *i[[3456789]]86*) WINE_CHECK_DEFINE([__i386__]) ;;
1447 *x86_64*) WINE_CHECK_DEFINE([__x86_64__])
1448 WINE_CHECK_DEFINE([_WIN64]) ;;
1449 *alpha*) WINE_CHECK_DEFINE([__ALPHA__]) ;;
1450 *sparc*) WINE_CHECK_DEFINE([__sparc__]) ;;
1451 *powerpc*) WINE_CHECK_DEFINE([__powerpc__]) ;;
1454 case $host_vendor in
1455 *sun*) WINE_CHECK_DEFINE([__sun__]) ;;
1458 dnl **** Generate output files ****
1460 AH_TOP([#define __WINE_CONFIG_H])
1462 WINE_CONFIG_EXTRA_DIR(dlls/gdi/enhmfdrv)
1463 WINE_CONFIG_EXTRA_DIR(dlls/gdi/mfdrv)
1464 WINE_CONFIG_EXTRA_DIR(dlls/kernel/messages)
1465 WINE_CONFIG_EXTRA_DIR(dlls/user/resources)
1466 WINE_CONFIG_EXTRA_DIR(dlls/wineps.drv/data)
1467 WINE_CONFIG_EXTRA_DIR(include/wine)
1469 MAKE_RULES=Make.rules
1470 AC_SUBST_FILE(MAKE_RULES)
1472 MAKE_DLL_RULES=dlls/Makedll.rules
1473 AC_SUBST_FILE(MAKE_DLL_RULES)
1475 MAKE_IMPLIB_RULES=dlls/Makeimplib.rules
1476 AC_SUBST_FILE(MAKE_IMPLIB_RULES)
1478 MAKE_TEST_RULES=dlls/Maketest.rules
1479 AC_SUBST_FILE(MAKE_TEST_RULES)
1481 MAKE_PROG_RULES=programs/Makeprog.rules
1482 AC_SUBST_FILE(MAKE_PROG_RULES)
1487 dlls/Makeimplib.rules
1489 programs/Makeprog.rules
1492 dlls/activeds/Makefile
1493 dlls/advapi32/Makefile
1494 dlls/advapi32/tests/Makefile
1495 dlls/advpack/Makefile
1496 dlls/advpack/tests/Makefile
1497 dlls/amstream/Makefile
1499 dlls/avicap32/Makefile
1500 dlls/avifil32/Makefile
1501 dlls/cabinet/Makefile
1502 dlls/cabinet/tests/Makefile
1503 dlls/capi2032/Makefile
1505 dlls/cfgmgr32/Makefile
1506 dlls/comcat/Makefile
1507 dlls/comcat/tests/Makefile
1508 dlls/comctl32/Makefile
1509 dlls/comctl32/tests/Makefile
1510 dlls/comdlg32/Makefile
1511 dlls/comdlg32/tests/Makefile
1512 dlls/compstui/Makefile
1513 dlls/crtdll/Makefile
1514 dlls/crypt32/Makefile
1515 dlls/crypt32/tests/Makefile
1516 dlls/cryptdll/Makefile
1517 dlls/cryptnet/Makefile
1518 dlls/ctl3d32/Makefile
1520 dlls/d3d8/tests/Makefile
1522 dlls/d3d9/tests/Makefile
1526 dlls/d3dxof/Makefile
1527 dlls/dbghelp/Makefile
1528 dlls/dciman32/Makefile
1530 dlls/ddraw/tests/Makefile
1531 dlls/devenum/Makefile
1532 dlls/dinput/Makefile
1533 dlls/dinput/tests/Makefile
1534 dlls/dinput8/Makefile
1535 dlls/dmband/Makefile
1536 dlls/dmcompos/Makefile
1538 dlls/dmloader/Makefile
1539 dlls/dmscript/Makefile
1540 dlls/dmstyle/Makefile
1541 dlls/dmsynth/Makefile
1542 dlls/dmusic/Makefile
1543 dlls/dmusic32/Makefile
1544 dlls/dnsapi/Makefile
1545 dlls/dnsapi/tests/Makefile
1547 dlls/dplayx/Makefile
1549 dlls/dpnhpast/Makefile
1550 dlls/dsound/Makefile
1551 dlls/dsound/tests/Makefile
1552 dlls/dswave/Makefile
1553 dlls/dxdiagn/Makefile
1554 dlls/dxerr8/Makefile
1555 dlls/dxerr9/Makefile
1556 dlls/dxguid/Makefile
1558 dlls/gdi/tests/Makefile
1560 dlls/glut32/Makefile
1561 dlls/gphoto2.ds/Makefile
1562 dlls/hhctrl.ocx/Makefile
1565 dlls/hlink/tests/Makefile
1566 dlls/iccvid/Makefile
1568 dlls/ifsmgr.vxd/Makefile
1569 dlls/imaadp32.acm/Makefile
1570 dlls/imagehlp/Makefile
1572 dlls/infosoft/Makefile
1573 dlls/infosoft/tests/Makefile
1574 dlls/inseng/Makefile
1575 dlls/iphlpapi/Makefile
1576 dlls/iphlpapi/tests/Makefile
1578 dlls/kernel/Makefile
1579 dlls/kernel/tests/Makefile
1581 dlls/lz32/tests/Makefile
1582 dlls/mapi32/Makefile
1583 dlls/mapi32/tests/Makefile
1584 dlls/mciavi32/Makefile
1585 dlls/mcicda/Makefile
1586 dlls/mciseq/Makefile
1587 dlls/mciwave/Makefile
1588 dlls/midimap/Makefile
1590 dlls/mlang/tests/Makefile
1591 dlls/mmdevldr.vxd/Makefile
1592 dlls/monodebg.vxd/Makefile
1594 dlls/mprapi/Makefile
1595 dlls/msacm32.drv/Makefile
1596 dlls/msacm32/Makefile
1597 dlls/msacm32/tests/Makefile
1598 dlls/msadp32.acm/Makefile
1600 dlls/mscms/tests/Makefile
1602 dlls/msftedit/Makefile
1603 dlls/msg711.acm/Makefile
1604 dlls/mshtml/Makefile
1605 dlls/mshtml/tests/Makefile
1607 dlls/msi/tests/Makefile
1608 dlls/msimg32/Makefile
1609 dlls/msisys.ocx/Makefile
1610 dlls/msnet32/Makefile
1611 dlls/msrle32/Makefile
1612 dlls/msvcrt/Makefile
1613 dlls/msvcrt/tests/Makefile
1614 dlls/msvcrt20/Makefile
1615 dlls/msvcrt40/Makefile
1616 dlls/msvcrtd/Makefile
1617 dlls/msvcrtd/tests/Makefile
1618 dlls/msvfw32/Makefile
1619 dlls/msvidc32/Makefile
1620 dlls/mswsock/Makefile
1621 dlls/msxml3/Makefile
1622 dlls/msxml3/tests/Makefile
1623 dlls/netapi32/Makefile
1624 dlls/netapi32/tests/Makefile
1625 dlls/newdev/Makefile
1627 dlls/ntdll/tests/Makefile
1628 dlls/ntdsapi/Makefile
1629 dlls/objsel/Makefile
1630 dlls/odbc32/Makefile
1631 dlls/odbccp32/Makefile
1633 dlls/ole32/tests/Makefile
1634 dlls/oleacc/Makefile
1635 dlls/oleaut32/Makefile
1636 dlls/oleaut32/tests/Makefile
1637 dlls/olecli32/Makefile
1638 dlls/oledlg/Makefile
1639 dlls/olepro32/Makefile
1640 dlls/olesvr32/Makefile
1641 dlls/opengl32/Makefile
1642 dlls/powrprof/Makefile
1644 dlls/psapi/tests/Makefile
1645 dlls/pstorec/Makefile
1647 dlls/quartz/Makefile
1648 dlls/quartz/tests/Makefile
1650 dlls/rasapi32/Makefile
1651 dlls/riched20/Makefile
1652 dlls/riched20/tests/Makefile
1653 dlls/riched32/Makefile
1654 dlls/rpcrt4/Makefile
1655 dlls/rpcrt4/tests/Makefile
1656 dlls/rsabase/Makefile
1657 dlls/rsabase/tests/Makefile
1658 dlls/rsaenh/Makefile
1659 dlls/rsaenh/tests/Makefile
1660 dlls/sane.ds/Makefile
1661 dlls/secur32/Makefile
1662 dlls/secur32/tests/Makefile
1663 dlls/security/Makefile
1664 dlls/sensapi/Makefile
1665 dlls/serialui/Makefile
1666 dlls/setupapi/Makefile
1667 dlls/setupapi/tests/Makefile
1669 dlls/shdocvw/Makefile
1670 dlls/shdocvw/tests/Makefile
1671 dlls/shell32/Makefile
1672 dlls/shell32/tests/Makefile
1673 dlls/shfolder/Makefile
1674 dlls/shlwapi/Makefile
1675 dlls/shlwapi/tests/Makefile
1676 dlls/snmpapi/Makefile
1677 dlls/spoolss/Makefile
1678 dlls/stdole2.tlb/Makefile
1679 dlls/stdole32.tlb/Makefile
1681 dlls/strmiids/Makefile
1682 dlls/svrapi/Makefile
1683 dlls/tapi32/Makefile
1684 dlls/twain_32/Makefile
1685 dlls/unicows/Makefile
1687 dlls/urlmon/Makefile
1688 dlls/urlmon/tests/Makefile
1690 dlls/user/tests/Makefile
1691 dlls/userenv/Makefile
1693 dlls/usp10/tests/Makefile
1695 dlls/uxtheme/Makefile
1696 dlls/uxtheme/tests/Makefile
1697 dlls/vdhcp.vxd/Makefile
1698 dlls/vdmdbg/Makefile
1699 dlls/version/Makefile
1700 dlls/version/tests/Makefile
1701 dlls/vmm.vxd/Makefile
1702 dlls/vnbt.vxd/Makefile
1703 dlls/vnetbios.vxd/Makefile
1704 dlls/vtdapi.vxd/Makefile
1705 dlls/vwin32.vxd/Makefile
1706 dlls/w32skrnl/Makefile
1707 dlls/winecrt0/Makefile
1708 dlls/wined3d/Makefile
1709 dlls/winedos/Makefile
1710 dlls/winemp3.acm/Makefile
1711 dlls/wineps.drv/Makefile
1712 dlls/winex11.drv/Makefile
1713 dlls/wininet/Makefile
1714 dlls/wininet/tests/Makefile
1716 dlls/winmm/joystick/Makefile
1717 dlls/winmm/tests/Makefile
1718 dlls/winmm/winealsa/Makefile
1719 dlls/winmm/winearts/Makefile
1720 dlls/winmm/wineaudioio/Makefile
1721 dlls/winmm/winecoreaudio/Makefile
1722 dlls/winmm/wineesd/Makefile
1723 dlls/winmm/winejack/Makefile
1724 dlls/winmm/winenas/Makefile
1725 dlls/winmm/wineoss/Makefile
1726 dlls/winnls32/Makefile
1727 dlls/winspool.drv/Makefile
1728 dlls/winspool.drv/tests/Makefile
1729 dlls/wintab32/Makefile
1730 dlls/wintrust/Makefile
1731 dlls/wintrust/tests/Makefile
1732 dlls/wldap32/Makefile
1733 dlls/wnaspi32/Makefile
1735 dlls/ws2_32/Makefile
1736 dlls/ws2_32/tests/Makefile
1737 dlls/wsock32/Makefile
1738 dlls/wtsapi32/Makefile
1739 documentation/Makefile
1748 programs/clock/Makefile
1749 programs/cmd/Makefile
1750 programs/cmdlgtst/Makefile
1751 programs/control/Makefile
1752 programs/eject/Makefile
1753 programs/expand/Makefile
1754 programs/explorer/Makefile
1755 programs/hh/Makefile
1756 programs/icinfo/Makefile
1757 programs/iexplore/Makefile
1758 programs/msiexec/Makefile
1759 programs/notepad/Makefile
1760 programs/oleview/Makefile
1761 programs/progman/Makefile
1762 programs/regedit/Makefile
1763 programs/regsvr32/Makefile
1764 programs/rpcss/Makefile
1765 programs/rundll32/Makefile
1766 programs/start/Makefile
1767 programs/taskmgr/Makefile
1768 programs/uninstaller/Makefile
1769 programs/view/Makefile
1770 programs/wineboot/Makefile
1771 programs/winebrowser/Makefile
1772 programs/winecfg/Makefile
1773 programs/wineconsole/Makefile
1774 programs/winedbg/Makefile
1775 programs/winefile/Makefile
1776 programs/winemenubuilder/Makefile
1777 programs/winemine/Makefile
1778 programs/winepath/Makefile
1779 programs/winetest/Makefile
1780 programs/winevdm/Makefile
1781 programs/winhelp/Makefile
1782 programs/winver/Makefile
1783 programs/wordpad/Makefile
1787 tools/winebuild/Makefile
1788 tools/winedump/Makefile
1789 tools/winegcc/Makefile
1791 tools/wrc/Makefile])
1795 dnl **** Display messages about additional packages ***
1797 if test "$verbose" = "yes"
1799 dnl **** libcapi20-dev devel package ***
1800 if test "$ac_cv_header_capi20_h" != "yes" -o "$ac_cv_header_linux_capi_h" != "yes"
1803 AC_MSG_NOTICE([libcapi20 development files not found.])
1804 AC_MSG_NOTICE([Wine will be built without ISDN support. (capi2032.dll)])
1807 dnl **** libcupsys-dev devel package ***
1808 if test "$ac_cv_header_cups_cups_h" != "yes"
1811 AC_MSG_NOTICE([libcups development files not found.])
1812 AC_MSG_NOTICE([Wine will be built without CUPS support.])
1815 dnl **** libcurses devel package: see libncurses ***
1816 dnl **** libdbus-1 devel package ***
1817 dnl **** libdbus-1-dev is required for libhal-dev ***
1819 dnl **** libgphoto2 devel package ***
1820 if test "$ac_cv_header_gphoto2_camera_h" != "yes"
1823 AC_MSG_NOTICE([libgphoto2 development files not found.])
1824 if test "$ac_cv_header_sane_sane_h" = "yes"
1826 AC_MSG_NOTICE([Wine will be built with limited Digital Camera support. (twain_32.dll)])
1828 AC_MSG_NOTICE([Wine will be built without Digital Camera support. (gphoto2.ds/twain_32.dll)])
1832 dnl **** libhal devel package ***
1833 dnl **** libhal-dev depends on libdbus-1-dev ***
1834 if test "$ac_cv_header_hal_libhal_h" != "yes"
1837 AC_MSG_NOTICE([libhal development files not found.])
1838 AC_MSG_NOTICE([Wine will be built without dynamic device support. (explorer.exe)])
1841 dnl **** libicu devel package ****
1842 if test "$ac_cv_header_unicode_ubidi_h" != "yes"
1845 AC_MSG_NOTICE([libicu development files not found.])
1846 AC_MSG_NOTICE([Wine will be built without bidi (Right to Left) support. (gdi32.dll)])
1849 dnl **** liblcms devel package ****
1850 if test "$ac_cv_header_lcms_h" != "yes" -a "$ac_cv_header_lcms_lcms_h" != "yes"
1853 AC_MSG_NOTICE([liblcms development files not found.])
1854 AC_MSG_NOTICE([Wine will be built without Color Management support. (mscms.dll)])
1857 dnl **** libldap devel package ****
1858 if test "$ac_cv_header_ldap_h" != "yes" -o "$ac_cv_header_lber_h" != "yes"
1861 AC_MSG_NOTICE([libldap (OpenLDAP) development files not found.])
1862 AC_MSG_NOTICE([Wine will be built without LDAP support. (wldap32.dll)])
1865 dnl **** libncurses / libcurses devel package ***
1866 if test "x$with_curses" != "xno" -a "$ac_cv_header_ncurses_h" != "yes" -a "$ac_cv_header_curses_h" != "yes"
1869 AC_MSG_NOTICE([lib(n)curses development files not found.])
1870 AC_MSG_NOTICE([Wine will be built without (n)curses support. (wineconsole.exe)])
1873 dnl **** libsane devel package ***
1874 if test "$ac_cv_header_sane_sane_h" != "yes"
1877 AC_MSG_NOTICE([libsane development files not found.])
1878 AC_MSG_NOTICE([Wine will be built without Scanner support. (sane.ds/twain_32.dll)])
1881 dnl **** libX11-dev includes Xlib.h and Xutil.h and depends on ***
1882 dnl **** x11proto-input-dev (extensions/XInput.h) and x11proto-kb-dev (XKBlib.h) ***
1883 if test "$have_x" = "yes"
1885 dnl **** libX11 - extension: Xext ***
1886 if test "$ac_cv_header_X11_extensions_shape_h" != "yes" -o "$ac_cv_header_X11_extensions_XShm_h" != "yes"
1889 AC_MSG_NOTICE([libxext development files not found.])
1890 AC_MSG_NOTICE([Wine will be built without Shm / Shape support. (winex11.drv)])
1893 dnl **** libX11 - extension: Xrandr ***
1894 if test "$ac_cv_header_X11_extensions_Xrandr_h" != "yes"
1897 AC_MSG_NOTICE([libXrandr development files not found.])
1898 AC_MSG_NOTICE([Wine will be built without Xrandr support. (winex11.drv)])
1901 dnl **** libX11 - extension: Xrender ***
1902 if test "$ac_cv_header_X11_extensions_Xrender_h" != "yes"
1905 AC_MSG_NOTICE([libXrender development files not found.])
1906 AC_MSG_NOTICE([Wine will be built without Xrender support. (winex11.drv)])
1909 dnl **** libX11 - extension: Xxf86vm ***
1910 if test "$ac_cv_header_X11_extensions_xf86vmode_h" != "yes"
1913 AC_MSG_NOTICE([libXxf86vm development files not found.])
1914 AC_MSG_NOTICE([Wine will be built without XFree86-VidMode support. (winex11.drv)])
1918 dnl **** libxml2 devel package ***
1919 if test "$ac_cv_header_libxml_parser_h" != "yes"
1922 AC_MSG_NOTICE([libxml2 development files not found.])
1923 AC_MSG_NOTICE([Wine will be built without XML support. (msxml.dll)])
1926 dnl **** libxslt devel package ***
1927 if test "$ac_cv_header_libxslt_pattern_h" != "yes" -o "$ac_cv_header_libxslt_transform_h" != "yes"
1930 AC_MSG_NOTICE([libxslt development files not found.])
1931 AC_MSG_NOTICE([Wine will be built without xslt support. (msxml.dll)])
1936 dnl **** Display warnings about important packages ***
1937 if test "$have_x" = "no"
1940 AC_MSG_WARN([X development files not found. Wine will be built without])
1941 AC_MSG_WARN([X support, which currently does not work, and probably])
1942 AC_MSG_WARN([isn't what you want anyway. You will need to install devel])
1943 AC_MSG_WARN([ packages of Xlib/Xfree86 at the very least.])
1946 if test "$wine_cv_opengl_headers_found" = "no" -o "$wine_cv_opengl_header_version_OK" = "no" -o "$wine_cv_opengl_libs_found" = "no"
1949 AC_MSG_WARN([Wine will be build without OpenGL or Direct3D support])
1950 AC_MSG_WARN([because something is wrong with the OpenGL setup:])
1951 if test "$wine_cv_opengl_headers_found" = "no"
1953 AC_MSG_WARN([No OpenGL development headers were found])
1955 if test "$wine_cv_opengl_header_version_OK" = "no"
1957 AC_MSG_WARN([Old Mesa headers detected. Consider upgrading your Mesa libraries (http://www.mesa3d.org/).])
1959 if test "$wine_cv_opengl_libs_found" = "no"
1961 AC_MSG_WARN([No OpenGL library found on this system.])
1965 if test "$wine_cv_msg_freetype" = "yes"
1968 AC_MSG_WARN([Your system appears to have the FreeType 2 runtime libraries])
1969 AC_MSG_WARN([installed, but 'freetype-config' is not in your PATH. Install])
1970 AC_MSG_WARN([the freetype-devel package (or its equivalent on your distribution)])
1971 AC_MSG_WARN([to enable Wine to use TrueType fonts.])
1974 if test -z "$FONTSSUBDIRS"
1977 if test "$FONTFORGE" = "false"
1979 AC_MSG_WARN([FontForge is missing.])
1981 AC_MSG_WARN([FreeType is missing.])
1983 AC_MSG_WARN([Fonts will not be built. Dialog text may be invisible or unaligned.])
1986 if test -z "$ALSALIBS" -a \
1987 -z "$ARTSC_LIBS" -a \
1988 -z "$AUDIOIOLIBS" -a \
1991 -z "$ac_cv_lib_soname_jack" -a \
1992 "$ac_cv_header_sys_soundcard_h" != "yes" -a \
1993 "$ac_cv_header_machine_soundcard_h" != "yes" -a \
1994 "$ac_cv_header_soundcard_h" != "yes"
1997 AC_MSG_WARN([No sound system was found. Windows applications will be silent.])
1998 AC_MSG_WARN([The currently supported sound systems are:])
1999 AC_MSG_WARN([ALSA, ARTS, EsounD, AudioIO, Jack, NAS and OSS])
2003 echo "Configure finished. Do '${ac_make} depend && ${ac_make}' to compile Wine."
2006 dnl Local Variables:
2007 dnl comment-start: "dnl "
2009 dnl comment-start-skip: "\\bdnl\\b\\s *"
2010 dnl compile-command: "autoconf && autoheader"