ntdll: Use NtAllocateVirtualMemory to allocate all TEBs except the first one.
[wine/multimedia.git] / configure.ac
blob95d78b1e28697e183a7feae8a7a12cf01c01ed54
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]))
7 AC_PREREQ(2.53b)
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>]))
22 AC_CANONICAL_HOST
23 case $host in
24   x86_64*linux*)
25     if test "x$enable_win64" != "xyes"
26     then
27       test -n "$CC" || CC="gcc -m32"
28       test -n "$LD" || LD="ld -m elf_i386"
29       test -n "$AS" || AS="as --32"
30       host_cpu="i386"
31     fi
32     ;;
33 esac
35 dnl enable_win16 defaults to yes on x86, to no on other CPUs
36 case $host_cpu in
37   *i[[3456789]]86*)
38     if test "x$enable_win16" != "xno" 
39     then
40       enable_win16="yes"
41     fi
42     ;;
43 esac
44    
45 AC_SUBST(WIN16_FILES,"\$(WIN16_FILES)")
46 AC_SUBST(WIN16_INSTALL,"\$(WIN16_INSTALL)")
47 if test "x$enable_win16" != "xyes"
48 then
49   WIN16_FILES=""
50   WIN16_INSTALL=""
53 dnl **** Check for some programs ****
55 AC_PROG_MAKE_SET
56 AC_PROG_CC
57 AC_PROG_CXX
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.])
65      else
66        wine_cv_toolsdir="\$(TOPOBJDIR)"
67      fi
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" ;;
72      esac
73    else
74      AC_MSG_ERROR([could not find Wine tools in $with_wine_tools.])
75    fi])
76 AC_SUBST(TOOLSDIR,$wine_cv_toolsdir)
78 AC_PATH_XTRA
79 AC_PROG_LEX
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"
85 then
86   AC_MSG_ERROR([no suitable lex found. Please install the 'flex' package.])
89 dnl Check for bison
90 AC_CHECK_PROGS(BISON,bison,none)
91 if test "$BISON" = "none"
92 then
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)
99 AC_PROG_RANLIB
100 AC_CHECK_TOOL(STRIP,strip,strip)
101 AC_CHECK_TOOL(WINDRES,windres,false)
102 AC_PROG_LN_S
103 WINE_PROG_LN
104 AC_PROG_EGREP
105 AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH])
106 AC_PROG_INSTALL
107 dnl Prepend src dir to install path dir if it's a relative path
108 case "$INSTALL" in
109   [[\\/$]]* | ?:[[\\/]]* ) ;;
110   *)  INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
111 esac
113 dnl Check for lint
114 AC_CHECK_PROGS(LINT, lclint lint)
115 if test "$LINT" = "lint"
116 then
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'
120 AC_SUBST(LINT)
121 AC_SUBST(LINTFLAGS)
123 dnl Check for various programs
124 AC_CHECK_PROGS(FONTFORGE, fontforge, false)
125 AC_CHECK_PROGS(PKG_CONFIG, pkg-config, false)
127 case $host_cpu in
128   *i[[3456789]]86*)
129     AC_PATH_PROG(PRELINK, prelink, false, [/sbin /usr/sbin $PATH])
130     ;;
131 esac
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 -lnsl for Solaris
140 AC_CHECK_FUNCS(gethostbyname,,AC_CHECK_LIB(nsl,gethostbyname))
141 dnl Check for -lsocket for Solaris
142 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
143 dnl Check for -lresolv for Solaris
144 AC_CHECK_FUNCS(inet_aton,,AC_CHECK_LIB(resolv,inet_aton))
145 dnl Check for -lxpg4 for FreeBSD
146 AC_CHECK_LIB(xpg4,_xpg4_setrunelocale)
147 dnl Check for -lpoll for Mac OS X/Darwin
148 AC_CHECK_LIB(poll,poll)
149 dnl Check for -lresolv for Mac OS X/Darwin
150 AC_CHECK_LIB(resolv,res_9_init)
151 dnl Check for -lpthread
152 AC_CHECK_LIB(pthread,pthread_create,AC_SUBST(LIBPTHREAD,"-lpthread"))
154 AC_SUBST(XLIB,"")
155 AC_SUBST(XFILES,"")
156 AC_SUBST(OPENGLFILES,"")
157 AC_SUBST(GLU32FILES,"")
158 AC_SUBST(OPENGL_LIBS,"")
160 dnl **** Check for header files ****
162 AC_CHECK_HEADERS(\
163         AudioUnit/AudioUnit.h \
164         CoreAudio/CoreAudio.h \
165         IOKit/IOKitLib.h \
166         alsa/asoundlib.h \
167         arpa/inet.h \
168         arpa/nameser.h \
169         asm/types.h \
170         capi20.h \
171         cups/cups.h \
172         curses.h \
173         direct.h \
174         dlfcn.h \
175         elf.h \
176         float.h \
177         fontconfig/fontconfig.h \
178         getopt.h \
179         gif_lib.h \
180         ieeefp.h \
181         io.h \
182         jack/jack.h \
183         jpeglib.h \
184         lber.h \
185         lcms.h \
186         lcms/lcms.h \
187         ldap.h \
188         libaudioio.h \
189         link.h \
190         linux/cdrom.h \
191         linux/compiler.h \
192         linux/hdreg.h \
193         linux/input.h \
194         linux/ioctl.h \
195         linux/joystick.h \
196         linux/major.h \
197         linux/param.h \
198         linux/serial.h \
199         linux/ucdrom.h \
200         mach/machine.h \
201         machine/cpu.h \
202         machine/limits.h \
203         machine/soundcard.h \
204         mntent.h \
205         ncurses.h \
206         netdb.h \
207         netinet/in.h \
208         netinet/in_systm.h \
209         netinet/tcp.h \
210         netinet/tcp_fsm.h \
211         openssl/err.h \
212         openssl/ssl.h \
213         poll.h \
214         process.h \
215         pthread.h \
216         pwd.h \
217         regex.h \
218         sched.h \
219         scsi/scsi.h \
220         scsi/scsi_ioctl.h \
221         scsi/sg.h \
222         soundcard.h \
223         stdint.h \
224         strings.h \
225         sys/asoundlib.h \
226         sys/cdio.h \
227         sys/elf32.h \
228         sys/epoll.h \
229         sys/errno.h \
230         sys/exec_elf.h \
231         sys/filio.h \
232         sys/ioctl.h \
233         sys/ipc.h \
234         sys/limits.h \
235         sys/link.h \
236         sys/lwp.h \
237         sys/mman.h \
238         sys/modem.h \
239         sys/msg.h \
240         sys/mtio.h \
241         sys/param.h \
242         sys/poll.h \
243         sys/prctl.h \
244         sys/ptrace.h \
245         sys/reg.h \
246         sys/resource.h \
247         sys/scsiio.h \
248         sys/shm.h \
249         sys/signal.h \
250         sys/socket.h \
251         sys/sockio.h \
252         sys/soundcard.h \
253         sys/statvfs.h \
254         sys/strtio.h \
255         sys/syscall.h \
256         sys/sysctl.h \
257         sys/time.h \
258         sys/times.h \
259         sys/uio.h \
260         sys/un.h \
261         sys/vm86.h \
262         sys/wait.h \
263         syscall.h \
264         termios.h \
265         unicode/ubidi.h \
266         unistd.h \
267         utime.h \
268         valgrind/memcheck.h
270 AC_HEADER_STAT()
272 dnl **** Checks for headers that depend on other ones ****
274 AC_CHECK_HEADERS([sys/mount.h sys/statfs.h sys/user.h sys/vfs.h],,,
275     [#include <sys/types.h>
276      #if HAVE_SYS_PARAM_H
277      # include <sys/param.h>
278      #endif])
280 AC_CHECK_HEADERS([net/if.h net/if_arp.h net/if_dl.h net/if_types.h net/route.h netipx/ipx.h],,,
281     [#include <sys/types.h>
282      #if HAVE_SYS_SOCKET_H
283      # include <sys/socket.h>
284      #endif])
286 AC_CHECK_HEADERS([resolv.h],,,
287     [#include <sys/types.h>
288      #if HAVE_SYS_SOCKET_H
289      # include <sys/socket.h>
290      #endif
291      #if HAVE_NETINET_IN_H
292      # include <netinet/in.h>
293      #endif
294      #if HAVE_ARPA_NAMESER_H
295      # include <arpa/nameser.h>
296      #endif])
298 AC_CHECK_HEADERS(ucontext.h,,,[#include <signal.h>])
300 AC_CHECK_HEADERS([linux/ipx.h linux/videodev.h],,,
301 [#ifdef HAVE_SYS_TIME_H
302 #include <sys/time.h>
303 #endif
304 #include <sys/types.h>
305 #ifdef HAVE_ASM_TYPES_H
306 #include <asm/types.h>
307 #endif])
309 dnl Check for broken kernel header that doesn't define __user
310 AC_CHECK_HEADERS([linux/capi.h],,,[#define __user])
312 dnl **** Check for X11 ****
314 if test "$have_x" = "yes"
315 then
316     XLIB="-lXext -lX11"
317     ac_save_CPPFLAGS="$CPPFLAGS"
318     CPPFLAGS="$CPPFLAGS $X_CFLAGS"
320     dnl *** All of the following tests require X11/Xlib.h
321     AC_CHECK_HEADERS([X11/Xlib.h \
322                       X11/XKBlib.h \
323                       X11/Xutil.h \
324                       X11/extensions/shape.h \
325                       X11/extensions/XInput.h \
326                       X11/extensions/XShm.h \
327                       X11/extensions/Xrandr.h \
328                       X11/extensions/Xrender.h \
329                       X11/extensions/xf86dga.h \
330                       X11/extensions/xf86vmode.h],,,
331 [#ifdef HAVE_X11_XLIB_H
332 # include <X11/Xlib.h>
333 #endif
334 #ifdef HAVE_X11_XUTIL_H
335 # include <X11/Xutil.h>
336 #endif])
338         dnl *** Check for X keyboard extension
339         if test "$ac_cv_header_X11_XKBlib_h" = "yes"
340         then
341               AC_CHECK_LIB(X11, XkbQueryExtension,
342               AC_DEFINE(HAVE_XKB, 1, [Define if you have the XKB extension]),,
343               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
344         fi
346         dnl *** Check for X Shm extension
347         if test "$ac_cv_header_X11_extensions_XShm_h" = "yes"
348         then
349               AC_CHECK_LIB(Xext, XShmQueryExtension,
350               AC_DEFINE(HAVE_LIBXXSHM, 1, [Define if you have the X Shm extension]),,
351               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
352         fi
354         dnl *** Check for X shape extension
355         if test "$ac_cv_header_X11_extensions_shape_h" = "yes"
356         then
357               AC_CHECK_LIB(Xext,XShapeQueryExtension,
358               AC_DEFINE(HAVE_LIBXSHAPE, 1, [Define if you have the X Shape extension]),,
359               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
360         fi
362         dnl *** Check for XFree86 DGA / DGA 2.0 extension
363         if test "$ac_cv_header_X11_extensions_xf86dga_h" = "yes"
364         then
365               AC_CHECK_LIB(Xxf86dga, XDGAQueryExtension,
366                 [ AC_DEFINE(HAVE_LIBXXF86DGA2, 1,
367                             [Define if you have the Xxf86dga library version 2])
368                   X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
369                 ],,
370                 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
371         fi
373         dnl *** Check for XFree86 VMODE extension
374         if test "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes"
375         then
376                 AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension,
377                   [ AC_DEFINE(HAVE_LIBXXF86VM, 1, [Define if you have the Xxf86vm library])
378                      X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm"
379                   ],,
380                   $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
381         fi
383         dnl *** Check for X RandR extension
384         if test "$ac_cv_header_X11_extensions_Xrandr_h" = "yes"
385         then
386                 AC_TRY_COMPILE([#include <X11/Xlib.h>
387 #include <X11/extensions/Xrandr.h>],[static typeof(XRRSetScreenConfigAndRate) * func;],
388                   [AC_DEFINE(HAVE_LIBXRANDR, 1, [Define if you have the Xrandr library])])
389         fi
391         dnl *** Check for Transform functions in Xrender
392         if test "$ac_cv_header_X11_extensions_Xrender_h" = "yes"
393         then
394               AC_CHECK_LIB(Xrender, XRenderSetPictureTransform,
395                 [AC_DEFINE(HAVE_XRENDERSETPICTURETRANSFORM, 1,
396                  [Define if Xrender has the XRenderSetPictureTransform function])],,
397                 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
398         fi
399     dnl *** End of X11/Xlib.h check
401     dnl Check for the presence of OpenGL
402     if test "x$with_opengl" != "xno"
403     then
404         AC_CHECK_HEADERS(GL/gl.h GL/glx.h GL/glext.h GL/glu.h,,,
405 [#ifdef HAVE_GL_GLX_H
406 # include <GL/glx.h>
407 #endif])
408         if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_glx_h" = "yes"
409         then
410             dnl Check for some problems due to old Mesa versions
411             AC_CACHE_CHECK([for up-to-date OpenGL version], wine_cv_opengl_version_OK,
412               AC_TRY_COMPILE(
413                 [#include <GL/gl.h>],
414                 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
415                 [wine_cv_opengl_version_OK="yes"],
416                 [wine_cv_opengl_version_OK="no"]
417               )
418             )
420             if test "$wine_cv_opengl_version_OK" = "yes"
421             then
422                 dnl Check for the presence of the library
423                 AC_CHECK_LIB(GL,glXCreateContext,
424                              OPENGL_LIBS="-lGL"
425                              ,,
426                              $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
428                 if test "$ac_cv_lib_GL_glXCreateContext" = "yes"
429                 then
430                         OPENGLFILES='$(OPENGLFILES)'
431                         AC_DEFINE(HAVE_OPENGL, 1, [Define if OpenGL is present on the system])
432                 else
433                     if test -f /usr/X11R6/lib/libGL.a
434                     then 
435                        AC_MSG_ERROR([/usr/X11R6/lib/libGL.a is present on your system.
436 This prevents linking to OpenGL. Delete the file and restart configure.])
437                     fi
438                 fi
440                 dnl Check for GLU32 library.
441                 AC_CHECK_LIB(GLU,gluLookAt,
442                              [OPENGL_LIBS="$OPENGL_LIBS -lGLU"
443                              GLU32FILES='$(GLU32FILES)']
444                              ,,
445                              $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS
446                 )
447              fi
449              dnl Check for glut32 library.
450              AC_CHECK_LIB(glut,glutMainLoop,
451                        [AC_SUBST(GLUT_LIBS,"-lglut -lXmu -lXi")
452                         AC_SUBST(GLUT32FILES,'$(GLUT32FILES)')],,
453                         $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXmu -lXi -lX11 $X_EXTRA_LIBS)
454          fi
455     fi
457     dnl **** Check for NAS ****
458     AC_SUBST(NASLIBS,"")
459     AC_CHECK_HEADERS(audio/audiolib.h,
460          [AC_CHECK_HEADERS(audio/soundlib.h,,,[#include <audio/audiolib.h>])
461           AC_CHECK_LIB(audio,AuCreateFlow,
462                        [AC_DEFINE(HAVE_NAS,1,[Define if you have NAS including devel headers])
463                         NASLIBS="-laudio -lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS"],,
464                        [-lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS])])
466     CPPFLAGS="$ac_save_CPPFLAGS"
467     XFILES='$(XFILES)'
468 else
469     XLIB=""
470     X_CFLAGS=""
471     X_LIBS=""
474 dnl **** Check for libxml2 ****
476 AC_SUBST(XML2LIBS,"")
477 AC_SUBST(XML2INCL,"")
478 AC_SUBST(XSLTLIBS,"")
479 AC_SUBST(XSLTINCL,"")
480 if test "$PKG_CONFIG" != "false"
481 then
482     ac_save_CPPFLAGS="$CPPFLAGS"
483     ac_xml_libs="`$PKG_CONFIG --libs libxml-2.0 2>/dev/null`"
484     ac_xml_cflags="`$PKG_CONFIG --cflags libxml-2.0 2>/dev/null`"
485     CPPFLAGS="$CPPFLAGS $ac_xml_cflags"
486     AC_CHECK_HEADERS(libxml/parser.h,
487         [AC_CHECK_LIB(xml2, xmlParseMemory,
488             [AC_DEFINE(HAVE_LIBXML2, 1, [Define if you have the libxml2 library])
489              XML2LIBS="$ac_xml_libs"
490              XML2INCL="$ac_xml_cflags"],,$ac_xml_libs)
491          AC_CHECK_LIB(xml2, xmlReadMemory,
492             [AC_DEFINE(HAVE_XMLREADMEMORY,1,[Define if libxml2 has the xmlReadMemory function])],,$ac_xml_libs)
493         ])
494     CPPFLAGS="$ac_save_CPPFLAGS"
495     ac_xslt_libs="`$PKG_CONFIG --libs libxslt 2>/dev/null`"
496     ac_xslt_cflags="`$PKG_CONFIG --cflags libxslt 2>/dev/null`"
497     CPPFLAGS="$CPPFLAGS $ac_xslt_cflags"
498     AC_CHECK_HEADERS([libxslt/pattern.h libxslt/transform.h],
499         [AC_CHECK_LIB(xslt, xsltCompilePattern,
500             [AC_DEFINE(HAVE_LIBXSLT, 1, [Define if you have the libxslt library])
501              XSLTLIBS="$ac_xslt_libs"
502              XSLTINCL="$ac_xslt_cflags"],,$ac_xslt_libs)
503         ],,
504 [#ifdef HAVE_LIBXSLT_PATTERN_H
505 # include <libxslt/pattern.h>
506 #endif])
507     CPPFLAGS="$ac_save_CPPFLAGS"
510 dnl **** Check for libhal ****
511 AC_SUBST(HALINCL,"")
512 if test "$PKG_CONFIG" != "false"
513 then
514     ac_save_CPPFLAGS="$CPPFLAGS"
515     ac_hal_libs="`$PKG_CONFIG --libs hal 2>/dev/null`"
516     ac_hal_cflags="`$PKG_CONFIG --cflags hal 2>/dev/null`"
517     CPPFLAGS="$CPPFLAGS $ac_hal_cflags"
518     AC_CHECK_HEADERS([dbus/dbus.h hal/libhal.h])
519     if test "$ac_cv_header_dbus_dbus_h" = "yes" -a "$ac_cv_header_hal_libhal_h" = "yes"
520     then
521         AC_CHECK_LIB(hal, libhal_ctx_new,
522           [AC_CHECK_LIB(dbus-1, dbus_connection_close,
523             [AC_DEFINE(HAVE_LIBHAL, 1, [Define if you have the hal library])
524              HALINCL="$ac_hal_cflags"],,$ac_hal_libs)])
525     fi
526     CPPFLAGS="$ac_save_CPPFLAGS"
529 dnl **** Check which curses lib to use ***
530 CURSESLIBS=""
531 if test "x$with_curses" != "xno"
532 then
533     if test "$ac_cv_header_ncurses_h" = "yes"
534     then
535         AC_CHECK_LIB(ncurses,waddch,
536             [AC_DEFINE(HAVE_LIBNCURSES, 1, [Define if you have the ncurses library (-lncurses)])
537              CURSESLIBS="-lncurses"])
538     elif test "$ac_cv_header_curses_h" = "yes"
539     then
540         AC_CHECK_LIB(curses,waddch,
541             [AC_DEFINE(HAVE_LIBCURSES, 1, [Define if you have the curses library (-lcurses)])
542              CURSESLIBS="-lcurses"])
543     fi
544     ac_save_LIBS="$LIBS"
545     LIBS="$LIBS $CURSESLIBS"
546     AC_CHECK_FUNCS(mousemask)
547     LIBS="$ac_save_LIBS"
549 AC_SUBST(CURSESLIBS)
551 dnl **** Check for SANE ****
552 AC_CHECK_PROG(sane_devel,sane-config,sane-config,no)
553 AC_SUBST(SANELIBS,"")
554 AC_SUBST(SANEINCL,"")
555 if test "$sane_devel" != "no"
556 then
557     SANELIBS="`$sane_devel --libs`"
558     SANEINCL="`$sane_devel --cflags`"
559     ac_save_CPPFLAGS="$CPPFLAGS"
560     ac_save_LIBS="$LIBS"
561     CPPFLAGS="$CPPFLAGS $SANEINCL"
562     LIBS="$LIBS $SANELIBS"
563     AC_CHECK_HEADER(sane/sane.h,
564                     [AC_CHECK_LIB(sane,sane_open,
565                                   [AC_DEFINE(HAVE_SANE, 1, [Define if we have SANE development environment])],
566                                   [SANELIBS=""
567                                   SANEINCL=""])],
568                     [SANELIBS=""
569                     SANEINCL=""])
570     LIBS="$ac_save_LIBS"
571     CPPFLAGS="$ac_save_CPPFLAGS"
574 dnl **** Check for libgphoto2 ****
575 AC_CHECK_PROG(gphoto2_devel,gphoto2-config,gphoto2-config,no)
576 AC_CHECK_PROG(gphoto2port_devel,gphoto2-port-config,gphoto2-port-config,no)
577 AC_SUBST(GPHOTO2LIBS,"")
578 AC_SUBST(GPHOTO2INCL,"")
579 if test "$gphoto2_devel" != "no" -a "$gphoto2port_devel" != "no"
580 then
581     GPHOTO2INCL="`$gphoto2_devel --cflags` `$gphoto2port_devel --cflags`"
582     GPHOTO2LIBS=""
583     for i in `$gphoto2_devel --libs` `$gphoto2port_devel --libs`
584     do
585       case "$i" in
586         -L/usr/lib|-L/usr/lib64) ;;
587         -L*|-l*) GPHOTO2LIBS="$GPHOTO2LIBS $i";;
588       esac
589     done
590     ac_save_CPPFLAGS="$CPPFLAGS"
591     ac_save_LIBS="$LIBS"
592     CPPFLAGS="$CPPFLAGS $GPHOTO2INCL"
593     LIBS="$LIBS $GPHOTO2LIBS"
594     AC_CHECK_HEADER(gphoto2-camera.h,
595                     [AC_CHECK_LIB(gphoto2,gp_camera_new,
596                                   [AC_DEFINE(HAVE_GPHOTO2, 1, [Define if we have libgphoto2 development environment])],
597                                   [GPHOTO2LIBS=""
598                                   GPHOTO2INCL=""])],
599                     [GPHOTO2LIBS=""
600                     GPHOTO2INCL=""])
601     LIBS="$ac_save_LIBS"
602     CPPFLAGS="$ac_save_CPPFLAGS"
605 dnl **** Check for the ICU library ****
606 if test "$ac_cv_header_unicode_ubidi_h" = "yes"
607 then
608     saved_libs="$LIBS"
609     for i in ${ICU_LIB_DIR-/usr/lib}/libsicu ${ICU_LIB_DIR-/usr/lib}/libicu
610     do
611         TEST_ICUUC_LIB="${ICUUC_LIB-${i}uc.a}"
612         TEST_ICUDATA_LIB="${ICUDATA_LIB-${i}data.a}"
613         AC_MSG_CHECKING(whether can link with ICU libraries $TEST_ICUUC_LIB and $TEST_ICUDATA_LIB)
614         LIBS="$saved_libs $TEST_ICUUC_LIB $TEST_ICUDATA_LIB -lstdc++ -lgcc_s"
615         AC_TRY_LINK([#include <unicode/ubidi.h>],[ubidi_open()],
616                     [AC_DEFINE(HAVE_ICU,1,[Define to 1 if the ICU libraries are installed])
617                      AC_SUBST(ICULIBS,"$TEST_ICUUC_LIB $TEST_ICUDATA_LIB -lstdc++ -lgcc_s")
618                      AC_MSG_RESULT(yes)],
619                     [AC_MSG_RESULT(no)])
620     done
621     LIBS="$saved_libs"
624 dnl **** Check for resolver library ***
625 AC_SUBST(RESOLVLIBS,"")
626 if test "$ac_cv_header_resolv_h" = "yes"
627 then
628     AC_CHECK_LIB(resolv, res_query,
629         [AC_DEFINE(HAVE_RESOLV, 1, [Define if you have the resolver library and header])
630          RESOLVLIBS="-lresolv"])
633 dnl **** Check for LittleCMS ***
634 AC_SUBST(LCMSLIBS,"")
635 if test "$ac_cv_header_lcms_h" = "yes" -o "$ac_cv_header_lcms_lcms_h" = "yes"
636 then
637     AC_CHECK_LIB(lcms, cmsOpenProfileFromFile,
638         [AC_DEFINE(HAVE_LCMS, 1, [Define if you have the LittleCMS development environment])
639          LCMSLIBS="-llcms"])
642 dnl **** Check for OpenLDAP ***
643 AC_SUBST(LDAPLIBS,"")
644 if test "$ac_cv_header_ldap_h" = "yes" -a "$ac_cv_header_lber_h" = "yes"
645 then
646     AC_CHECK_LIB(ldap_r, ldap_initialize,
647         [AC_CHECK_LIB(lber, ber_init,
648             [AC_DEFINE(HAVE_LDAP, 1, [Define if you have the OpenLDAP development environment])
649              LDAPLIBS="-lldap_r -llber"],,
650              [$LIBPTHREAD])],,
651              [$LIBPTHREAD])
652     WINE_CHECK_LIB_FUNCS(\
653         ldap_count_references \
654         ldap_first_reference \
655         ldap_next_reference \
656         ldap_parse_reference,
657         [$LDAPLIBS $LIBPTHREAD])
660 dnl **** Check for FreeType 2 ****
661 AC_SUBST(FREETYPELIBS,"")
662 AC_SUBST(FREETYPEINCL,"")
663 AC_CHECK_LIB(freetype,FT_Init_FreeType,ft_lib=yes,ft_lib=no,$X_LIBS)
664 if test "$ft_lib" = "no"
665 then
666     wine_cv_msg_freetype=no
667 else
668     AC_CHECK_PROG(ft_devel,freetype-config,freetype-config,no)
669     if test "$ft_devel" = "no"
670     then
671         AC_CHECK_PROG(ft_devel2,freetype2-config,freetype2-config,no)
672         if test "$ft_devel2" = "freetype2-config"
673         then
674                 ft_devel=$ft_devel2
675         fi
676     fi
677     if test "$ft_devel" = "no"
678     then
679         wine_cv_msg_freetype=yes
680     else
681         FREETYPELIBS=`$ft_devel --libs`
682         FREETYPEINCL=`$ft_devel --cflags`
683         ac_save_CPPFLAGS="$CPPFLAGS"
684         CPPFLAGS="$FREETYPEINCL $CPPFLAGS"
685         AC_CHECK_HEADERS(ft2build.h \
686                          freetype/freetype.h \
687                          freetype/ftglyph.h \
688                          freetype/tttables.h \
689                          freetype/ftnames.h \
690                          freetype/ftsnames.h \
691                          freetype/ttnameid.h \
692                          freetype/ftoutln.h \
693                          freetype/ftwinfnt.h \
694                          freetype/ftmodapi.h \
695                          freetype/internal/sfnt.h,,,
696                          [#if HAVE_FT2BUILD_H
697                           #include <ft2build.h>
698                           #endif])
699         AC_TRY_CPP([#include <ft2build.h>
700                     #include <freetype/fttrigon.h>],
701                     [AC_DEFINE(HAVE_FREETYPE_FTTRIGON_H, 1,
702           [Define if you have the <freetype/fttrigon.h> header file.])
703                     wine_cv_fttrigon=yes],
704                     wine_cv_fttrigon=no)
705         AC_CHECK_TYPES(FT_TrueTypeEngineType,,,[#include <freetype/ftmodapi.h>])
706         ac_save_CFLAGS="$CFLAGS"
707         CFLAGS="$CFLAGS $FREETYPELIBS"
708         AC_CHECK_FUNCS(FT_Load_Sfnt_Table)
709         CFLAGS="$ac_save_CFLAGS"
710         CPPFLAGS="$ac_save_CPPFLAGS"
711         dnl Check that we have at least freetype/freetype.h
712         if test "$ac_cv_header_freetype_freetype_h" = "yes" -a "$wine_cv_fttrigon" = "yes"
713         then
714             AC_DEFINE(HAVE_FREETYPE, 1, [Define if FreeType 2 is installed])
715             wine_cv_msg_freetype=no
716         else
717             FREETYPELIBS=""
718             FREETYPEINCL=""
719             wine_cv_msg_freetype=yes
720         fi
721     fi
724 dnl Only build the fonts dir if we have both freetype and fontforge
725 if test "$FONTFORGE" != "false" -a -n "$FREETYPELIBS"
726 then
727   AC_SUBST(FONTSSUBDIRS,"fonts")
730 dnl **** Check for parport (currently Linux only) ****
731 AC_CACHE_CHECK([for parport header/ppdev.h], ac_cv_c_ppdev,
732  AC_TRY_COMPILE(
733    [#include <linux/ppdev.h>],
734    [ioctl (1,PPCLAIM,0)],
735    [ac_cv_c_ppdev="yes"],
736    [ac_cv_c_ppdev="no"])
738 if test "$ac_cv_c_ppdev" = "yes"
739 then
740     AC_DEFINE(HAVE_PPDEV, 1, [Define if we can use ppdev.h for parallel port access])
743 dnl **** Check for va_copy ****
744 AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
745  AC_TRY_LINK(
746    [#include <stdarg.h>],
747    [va_list ap1, ap2;
748     va_copy(ap1,ap2);
749    ],
750    [ac_cv_c_va_copy="yes"],
751    [ac_cv_c_va_copy="no"])
753 if test "$ac_cv_c_va_copy" = "yes"
754 then
755     AC_DEFINE(HAVE_VA_COPY, 1, [Define if we have va_copy])
757 AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy,
758  AC_TRY_LINK(
759    [#include <stdarg.h>],
760    [va_list ap1, ap2;
761     __va_copy(ap1,ap2);
762    ],
763    [ac_cv_c___va_copy="yes"],
764    [ac_cv_c___va_copy="no"])
766 if test "$ac_cv_c___va_copy" = "yes"
767 then
768     AC_DEFINE(HAVE___VA_COPY, 1, [Define if we have __va_copy])
771 dnl **** Check for sigsetjmp ****
772 AC_CACHE_CHECK([for sigsetjmp], ac_cv_c_sigsetjmp,
773  AC_TRY_LINK(
774    [#include <setjmp.h>],
775    [sigjmp_buf buf;
776     sigsetjmp( buf, 1 );
777     siglongjmp( buf, 1 );],
778    [ac_cv_c_sigsetjmp="yes"],
779    [ac_cv_c_sigsetjmp="no"])
781 if test "$ac_cv_c_sigsetjmp" = "yes"
782 then
783     AC_DEFINE(HAVE_SIGSETJMP, 1, [Define to 1 if you have the sigsetjmp (and siglongjmp) function])
786 dnl **** Check for pthread_rwlock_t ****
787 AC_CHECK_TYPES([pthread_rwlock_t, pthread_rwlockattr_t],,,[#define _GNU_SOURCE
788 #include <pthread.h>])
790 dnl **** Check for pthread functions ****
791 WINE_CHECK_LIB_FUNCS(\
792         pthread_getattr_np \
793         pthread_get_stackaddr_np \
794         pthread_get_stacksize_np,
795         [$LIBPTHREAD])
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"';
800 then
801     ARTSC_CFLAGS=""
802     for i in `$ARTSCCONFIG --cflags`
803     do
804       case "$i" in
805         -I*) ARTSC_CFLAGS="$ARTSC_CFLAGS $i";;
806       esac
807     done
808     ARTSC_LIBS=""
809     for i in `$ARTSCCONFIG --libs`
810     do
811       case "$i" in
812         -L/usr/lib|-L/usr/lib64) ;;
813         -L*|-l*) ARTSC_LIBS="$ARTSC_LIBS $i";;
814       esac
815     done
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])])],,
823             $ARTSC_LIBS)
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"';
830 then
831     ESD_CFLAGS=""
832     for i in `$ESDCONFIG --cflags`
833     do
834       case "$i" in
835         -I*) ESD_CFLAGS="$ESD_CFLAGS $i";;
836       esac
837     done
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"
851 then
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>
857 #endif],
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"
867 then
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"
876 then
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"
884 then
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,
889                   AC_TRY_RUN([
890 int     L[[4]] = {0,1,2,3};
891 int main(void) {
892   static int Array[[3]];
893   unsigned int B = 3;
894   int i;
895   for(i=0; i<B; i++) Array[[i]] = i - 3;
896   for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]];
897   L[[i]] = 4;
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"
905   then
906     EXTRACFLAGS="$EXTRACFLAGS -fno-strength-reduce"
907   fi
909   dnl Check for -fshort-wchar
910   AC_CACHE_CHECK([for gcc -fshort-wchar support], ac_cv_c_gcc_fshort_wchar,
911       [WINE_TRY_CFLAGS([-fshort-wchar],
912                       ac_cv_c_gcc_fshort_wchar="yes",ac_cv_c_gcc_fshort_wchar="no")])
913   if test "$ac_cv_c_gcc_fshort_wchar" = "yes"
914   then
915       AC_DEFINE(CC_FLAG_SHORT_WCHAR, "-fshort-wchar", [Specifies the compiler flag that forces a short wchar_t])
916   fi
918   dnl Check for -fno-strict-aliasing
919   AC_CACHE_CHECK([for gcc -fno-strict-aliasing support], ac_cv_c_gcc_no_strict_aliasing,
920       [WINE_TRY_CFLAGS([-fno-strict-aliasing],
921                       ac_cv_c_gcc_no_strict_aliasing="yes",ac_cv_c_gcc_no_strict_aliasing="no")])
922   if test "$ac_cv_c_gcc_no_strict_aliasing" = "yes"
923   then
924     EXTRACFLAGS="$EXTRACFLAGS -fno-strict-aliasing"
925   fi
927   dnl Check for -gstabs+ option
928   AC_CACHE_CHECK([for gcc -gstabs+ support], ac_cv_c_gcc_gstabs,
929       [WINE_TRY_CFLAGS([-gstabs+],ac_cv_c_gcc_gstabs="yes", ac_cv_c_gcc_gstabs="no")])
930   if test "$ac_cv_c_gcc_gstabs" = "yes"
931   then
932     EXTRACFLAGS="$EXTRACFLAGS -gstabs+"
933   fi
935   dnl Check for -Wdeclaration-after-statement option
936   AC_CACHE_CHECK([for gcc -Wdeclaration-after-statement support], ac_cv_c_gcc_decl_after_statement,
937       [WINE_TRY_CFLAGS([-Wdeclaration-after-statement],ac_cv_c_gcc_decl_after_statement="yes", ac_cv_c_gcc_decl_after_statement="no")])
938   if test "$ac_cv_c_gcc_decl_after_statement" = "yes"
939   then
940     EXTRACFLAGS="$EXTRACFLAGS -Wdeclaration-after-statement"
941   fi
943   dnl Check for noisy string.h
944   saved_CFLAGS="$CFLAGS"
945   CFLAGS="$CFLAGS -Wpointer-arith -Werror"
946   AC_CACHE_CHECK([for broken string.h that generates warnings], ac_cv_c_string_h_warnings,
947       AC_TRY_COMPILE([#include <string.h>],[],
948                      [ac_cv_c_string_h_warnings=no],[ac_cv_c_string_h_warnings=yes]))
949   CFLAGS="$saved_CFLAGS"
950   if test "$ac_cv_c_string_h_warnings" = "no"
951   then
952     EXTRACFLAGS="$EXTRACFLAGS -Wpointer-arith"
953   fi
955   AC_SUBST(BUILTINFLAG,"")
956   saved_CFLAGS="$CFLAGS"
957   CFLAGS="$CFLAGS -Werror"
958   AC_CACHE_CHECK([for builtin wchar inlines], ac_cv_c_builtin_wchar_ctype,
959       AC_TRY_COMPILE([],
960                      [int iswlower(unsigned short);],
961                      [ac_cv_c_builtin_wchar_ctype=no],[ac_cv_c_builtin_wchar_ctype=yes]))
962   CFLAGS="$saved_CFLAGS"
963   if test "$ac_cv_c_builtin_wchar_ctype" = "yes"
964   then
965     BUILTINFLAG="-fno-builtin"
966   fi
969 dnl **** Check how to define a function in assembly code ****
971 AC_CACHE_CHECK([how to define a function in assembly code], ac_cv_asm_func_def,
972   WINE_TRY_ASM_LINK(
973       ["\t.globl _ac_test\n\t.def _ac_test; .scl 2; .type 32; .endef\n_ac_test:\t.long 0"],,,
974       ac_cv_asm_func_def=".def",
975     [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,@function\n_ac_test:\t.long 0"],,,
976       ac_cv_asm_func_def=".type @function",
977     [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,2\n_ac_test:\t.long 0"],,,
978       ac_cv_asm_func_def=".type 2",
979       ac_cv_asm_func_def="unknown")])]))
981 AH_TEMPLATE(__ASM_FUNC,[Define to a macro to generate an assembly function directive])
982 case "$ac_cv_asm_func_def" in
983   ".def")
984      AC_DEFINE([__ASM_FUNC(name)], [".def " __ASM_NAME(name) "; .scl 2; .type 32; .endef"]) ;;
985   ".type @function")
986      AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",@function"]) ;;
987   ".type 2")
988      AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",2"]) ;;
989   *)
990      AC_DEFINE([__ASM_FUNC(name)], [""]) ;;
991 esac
993 dnl **** Check for underscore on external symbols ****
995 AC_CACHE_CHECK([whether external symbols need an underscore prefix], ac_cv_c_extern_prefix,
996     WINE_TRY_ASM_LINK([".globl _ac_test\n_ac_test:\t.long 0"],
997                       [extern int ac_test;],
998                       [if (ac_test) return 1],
999                       ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no"))
1001 AH_TEMPLATE(__ASM_NAME,[Define to a macro to generate an assembly name from a C symbol])
1002 if test "$ac_cv_c_extern_prefix" = "yes"
1003 then
1004   AC_DEFINE([__ASM_NAME(name)], ["_" name])
1005 else
1006   AC_DEFINE([__ASM_NAME(name)], [name])
1009 dnl **** Check for working dll ****
1011 AC_SUBST(DLLEXT,"")
1012 AC_SUBST(DLLFLAGS,"-D_REENTRANT")
1013 AC_SUBST(DLLIBS,"")
1014 AC_SUBST(LDSHARED,"")
1015 AC_SUBST(LDDLLFLAGS,"")
1016 AC_SUBST(LIBEXT,"so")
1017 AC_SUBST(IMPLIBEXT,"def")
1019 case $host_os in
1020   cygwin*|mingw32*)
1021     AC_CHECK_TOOL(DLLTOOL,dlltool,false)
1022     AC_CHECK_TOOL(DLLWRAP,dllwrap,false)
1023     if test "$DLLWRAP" = "false"; then
1024       LIBEXT="a"
1025     else
1026       dnl FIXME - check whether dllwrap works correctly...
1027       LIBEXT="dll"
1028     fi
1029     IMPLIBEXT="a"
1030     dnl We can't build 16-bit NE dlls
1031     WIN16_FILES=""
1032     WIN16_INSTALL=""
1033     ;;
1034   *)
1035     if test "$ac_cv_header_dlfcn_h" = "yes"
1036     then
1037         AC_CHECK_FUNCS(dlopen,,
1038             [AC_CHECK_LIB(dl,dlopen,
1039                          [AC_DEFINE(HAVE_DLOPEN,1,[Define if you have dlopen])
1040                           DLLIBS="-ldl"],
1041                          [LIBEXT="a"])])
1042         WINE_CHECK_LIB_FUNCS(dladdr,[$DLLIBS])
1043     else
1044         LIBEXT="a"
1045     fi
1047     if test "$LIBEXT" = "so"
1048     then
1049       DLLFLAGS="$DLLFLAGS -fPIC"
1050       DLLEXT=".so"
1051       AC_CACHE_CHECK([whether we can build a GNU style ELF dll], ac_cv_c_dll_gnuelf,
1052           [WINE_TRY_SHLIB_FLAGS([-fPIC -shared -Wl,-Bsymbolic],
1053                                 ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")])
1054       if test "$ac_cv_c_dll_gnuelf" = "yes"
1055       then
1056         LDSHARED="\$(CC) -shared"
1057         LDDLLFLAGS="-shared -Wl,-Bsymbolic"
1058         AC_CACHE_CHECK([whether the linker accepts soname], ac_cv_c_sonames,
1059           [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-soname,confest.so.1],
1060                            ac_cv_c_sonames="yes",ac_cv_c_sonames="no")])
1061         if test "$ac_cv_c_sonames" = "yes"
1062         then
1063           LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)"
1064         else
1065           AC_CACHE_CHECK([check to see if -h soname is an alternate], ac_cv_c_h_sonames,
1066             [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-h,confest.so.1],
1067                              ac_cv_c_h_sonames="yes",ac_cv_c_h_sonames="no")])
1068           if test "$ac_cv_c_h_sonames" = "yes"
1069           then
1070             LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-h,%)"
1071           fi
1072         fi
1074         AC_CACHE_CHECK([whether the linker accepts -z defs], ac_cv_c_dll_zdefs,
1075           [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-Bsymbolic,-z,defs],
1076                            ac_cv_c_dll_zdefs="yes",ac_cv_c_dll_zdefs="no")])
1077         if test "$ac_cv_c_dll_zdefs" = "yes"
1078         then
1079           LDDLLFLAGS="$LDDLLFLAGS,-z,defs"
1080         fi
1082         AC_CACHE_CHECK([whether the linker accepts -init and -fini], ac_cv_c_dll_init_fini,
1083           [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-Bsymbolic,-init,__wine_spec_init,-fini,__wine_spec_fini],
1084                            ac_cv_c_dll_init_fini="yes",ac_cv_c_dll_init_fini="no")])
1085         if test "$ac_cv_c_dll_init_fini" = "yes"
1086         then
1087           LDDLLFLAGS="$LDDLLFLAGS,-init,__wine_spec_init,-fini,__wine_spec_fini"
1088         fi
1090         AC_CACHE_CHECK([whether the linker accepts version scripts], ac_cv_c_ld_version_scripts,
1091           [echo '{ global: *; };' >conftest.map
1092            WINE_TRY_CFLAGS([-fPIC -shared -Wl,--version-script=conftest.map],
1093                            ac_cv_c_ld_version_scripts="yes",ac_cv_c_ld_version_scripts="no")
1094            rm -f conftest.map])
1095         if test "$ac_cv_c_ld_version_scripts" = "yes"
1096         then
1097           LDSHARED="$LDSHARED \$(VERSCRIPT:%=-Wl,--version-script=%)"
1098         fi
1100         AC_CACHE_CHECK([whether the linker accepts --export-dynamic], ac_cv_c_export_dynamic,
1101           [WINE_TRY_CFLAGS([-fPIC -Wl,--export-dynamic],
1102                            ac_cv_c_export_dynamic="yes",ac_cv_c_export_dynamic="no")])
1103         if test "$ac_cv_c_export_dynamic" = "yes"
1104         then
1105           AC_SUBST(LDEXECFLAGS,["-Wl,--export-dynamic"])
1106         fi
1108         AC_CACHE_CHECK([whether the linker accepts --rpath], ac_cv_ld_rpath,
1109           [WINE_TRY_CFLAGS([-fPIC -Wl,--rpath,\$ORIGIN/../lib],
1110                            ac_cv_ld_rpath="yes",ac_cv_ld_rpath="no")])
1111         if test "$ac_cv_ld_rpath" = "yes"
1112         then
1113           AC_SUBST(LDEXERPATH,["-Wl,--rpath,\\\$\$ORIGIN/\`\$(RELPATH) \$(bindir) \$(libdir)\`"])
1114           AC_SUBST(LDDLLRPATH,["-Wl,--rpath,\\\$\$ORIGIN/\`\$(RELPATH) \$(dlldir) \$(libdir)\`"])
1115         fi
1117         case $host_cpu in
1118           *i[[3456789]]86* | x86_64)
1119             AC_CACHE_CHECK([whether we can relocate the executable to 0x7bf00000], ac_cv_ld_reloc_exec,
1120               [WINE_TRY_CFLAGS([-Wl,--section-start,.interp=0x7bf00400],
1121                                ac_cv_ld_reloc_exec="yes", ac_cv_ld_reloc_exec="no")])
1122             if test "$ac_cv_ld_reloc_exec" = "yes"
1123             then
1124               LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7bf00400"
1125             fi
1126             ;;
1127         esac
1129       else
1130         AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll, ac_cv_c_dll_unixware,
1131             [WINE_TRY_SHLIB_FLAGS([-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic],
1132                                   ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")])
1133         if test "$ac_cv_c_dll_unixware" = "yes"
1134         then
1135           LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,%)"
1136           LDDLLFLAGS="-Wl,-G,-B,symbolic"
1138         else
1139           AC_CACHE_CHECK(whether we can build a Mach-O (Mac OS X/Darwin) dll, ac_cv_c_dll_macho,
1140             [WINE_TRY_SHLIB_FLAGS([-bundle], ac_cv_c_dll_macho="yes", ac_cv_c_dll_macho="no")])
1141           if test "$ac_cv_c_dll_macho" = "yes"
1142           then
1143             LIBEXT="dylib"
1144             LDDLLFLAGS="-bundle"
1145             LDSHARED="\$(CC) -dynamiclib -install_name @executable_path/\`\$(RELPATH) \$(bindir) \$(libdir)\`/\$(DYNAME) \$(SOVERSION:%=-compatibility_version %)"
1146             STRIP="$STRIP -u -r"
1147             dnl declare needed frameworks
1148             AC_SUBST(COREFOUNDATIONLIB,"-framework CoreFoundation")
1149             AC_SUBST(IOKITLIB,"-framework IOKit -framework CoreFoundation")
1150             AC_SUBST(LDEXECFLAGS,["-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00000000,-segaddr,WINE_SHARED_HEAP,0x7ffe0000"])
1151             if test "$ac_cv_header_CoreAudio_CoreAudio_h" = "yes" -a "$ac_cv_header_AudioUnit_AudioUnit_h" = "yes"
1152             then
1153                 dnl CoreServices needed by AudioUnit
1154                 AC_SUBST(COREAUDIO,"-framework CoreAudio -framework AudioUnit -framework CoreServices")
1155             fi
1156             case $host_cpu in
1157               *powerpc*)
1158                 CFLAGS="$CFLAGS -ffixed-r13"
1159                 LDDLLFLAGS="$LDDLLFLAGS -read_only_relocs warning"
1160                 ;;
1161             esac
1163           else
1164             AC_CACHE_CHECK(whether we can build an HP-UX dll, ac_cv_c_dll_hpux,
1165               [WINE_TRY_SHLIB_FLAGS([-shared], ac_cv_c_dll_hpux="yes", ac_cv_c_dll_hpux="no")])
1166             if test "$ac_cv_c_dll_hpux" = "yes"
1167             then
1168               LIBEXT="sl"
1169               DLLEXT=".sl"
1170               LDDLLFLAGS="-shared -fPIC"
1171               LDSHARED="\$(CC) -shared"
1172             fi
1173           fi
1174         fi
1175       fi
1176     fi
1178     dnl Check for cross compiler to build test programs
1179     AC_SUBST(CROSSTEST,"")
1180     if test "$cross_compiling" = "no"
1181     then
1182       AC_CHECK_PROGS(CROSSCC,i586-mingw32msvc-gcc i386-mingw32msvc-gcc i386-mingw32-gcc mingw-gcc,false)
1183       AC_CHECK_PROGS(DLLTOOL,i586-mingw32msvc-dlltool i386-mingw32msvc-dlltool i386-mingw32-dlltool mingw-dlltool,false)
1184       AC_CHECK_PROGS(CROSSWINDRES,i586-mingw32msvc-windres i386-mingw32msvc-windres i386-mingw32-windres mingw-windres,false)
1185       if test "$CROSSCC" != "false"; then CROSSTEST="\$(CROSSTEST)"; fi
1186     fi
1187     ;;
1188 esac
1190 if test "$LIBEXT" = "a"; then
1191   AC_MSG_ERROR(
1192 [could not find a way to build shared libraries.
1193 It is currently not possible to build Wine without shared library
1194 (.so) support to allow transparent switch between .so and .dll files.
1195 If you are using Linux, you will need a newer binutils.]
1199 case $build_os in
1200   cygwin*|mingw32*)
1201     AC_SUBST(LDPATH,"PATH=\"\$(TOOLSDIR)/libs/wine:\$\$PATH\"") ;;
1202   darwin*|macosx*)
1203     AC_SUBST(LDPATH,"DYLD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$DYLD_LIBRARY_PATH\"") ;;
1204   *)
1205     AC_SUBST(LDPATH,"LD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$LD_LIBRARY_PATH\"") ;;
1206 esac
1208 dnl Mingw needs explicit msvcrt for linking libwine and winsock for wininet
1209 case $host_os in
1210   mingw32*)
1211     AC_SUBST(CRTLIBS,"-lmsvcrt")
1212     AC_SUBST(SOCKETLIBS,"-lws2_32")
1213     ;;
1214 esac
1216 AC_SUBST(MAIN_BINARY,"wine-pthread")  dnl Default value
1217 case $host_cpu in
1218   *i[[3456789]]86*)
1219     case $host_os in
1220       linux* | k*bsd*-gnu)
1221         AC_SUBST(MAIN_BINARY,"wine-glibc")
1222         AC_SUBST(EXTRA_BINARIES,"wine-kthread wine-pthread wine-preloader") ;;
1223     esac
1224     ;;
1225 esac
1227 dnl **** Get the soname for libraries that we load dynamically ****
1229 if test "$LIBEXT" = "so" -o "$LIBEXT" = "dylib"
1230 then
1231   WINE_GET_SONAME(X11,XCreateWindow,[$X_LIBS $X_EXTRA_LIBS])
1232   WINE_GET_SONAME(Xext,XextCreateExtension,[$X_LIBS -lX11 $X_EXTRA_LIBS])
1233   WINE_GET_SONAME(Xi,XOpenDevice,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])
1234   WINE_GET_SONAME(Xrender,XRenderQueryExtension,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])
1235   WINE_GET_SONAME(Xrandr,XRRQueryExtension,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])
1236   WINE_GET_SONAME(freetype,FT_Init_FreeType,[$X_LIBS])
1237   WINE_GET_SONAME(GL,glXQueryExtension,[$X_LIBS $X_EXTRA_LIBS])
1238   WINE_GET_SONAME(dbus-1,dbus_error_init)
1239   WINE_GET_SONAME(hal,libhal_ctx_new)
1240   WINE_GET_SONAME(txc_dxtn,fetch_2d_texel_rgba_dxt1)
1241   WINE_GET_SONAME(cups,cupsGetDefault)
1242   WINE_GET_SONAME(jack,jack_client_new)
1243   WINE_GET_SONAME(fontconfig,FcInit)
1244   WINE_GET_SONAME(ssl,SSL_library_init)
1245   WINE_GET_SONAME(crypto,BIO_new_socket)
1246   WINE_GET_SONAME(ncurses,waddch)
1247   WINE_GET_SONAME(curses,waddch)
1248   WINE_GET_SONAME(jpeg,jpeg_start_decompress)
1249   WINE_GET_SONAME(ungif,DGifOpen)
1250   WINE_GET_SONAME(gif,DGifOpen)
1251   WINE_GET_SONAME(capi20,capi20_isinstalled)
1255 dnl **** Check for functions ****
1257 AC_CHECK_FUNCS(\
1258         _lwp_create \
1259         _lwp_self \
1260         _pclose \
1261         _popen \
1262         _snprintf \
1263         _spawnvp \
1264         _stricmp \
1265         _strnicmp \
1266         _vsnprintf \
1267         asctime_r \
1268         chsize \
1269         clone \
1270         epoll_create \
1271         ffs \
1272         finite \
1273         fork \
1274         fpclass \
1275         fstatfs \
1276         fstatvfs \
1277         ftruncate \
1278         futimes \
1279         futimesat \
1280         getaddrinfo \
1281         getnameinfo \
1282         getnetbyname \
1283         getopt_long \
1284         getpagesize \
1285         getprotobyname \
1286         getprotobynumber \
1287         getpwuid \
1288         getservbyport \
1289         gettid \
1290         gettimeofday \
1291         getuid \
1292         inet_network \
1293         lstat \
1294         memmove \
1295         mmap \
1296         pclose \
1297         popen \
1298         prctl \
1299         pread \
1300         pwrite \
1301         readlink \
1302         rfork \
1303         sched_yield \
1304         select \
1305         sendmsg \
1306         setrlimit \
1307         settimeofday \
1308         sigaltstack \
1309         sigprocmask \
1310         snprintf \
1311         spawnvp \
1312         statfs \
1313         statvfs \
1314         strcasecmp \
1315         strerror \
1316         strncasecmp \
1317         tcgetattr \
1318         timegm \
1319         usleep \
1320         vsnprintf \
1321         wait4 \
1322         waitpid \
1326 dnl **** Check for types ****
1328 AC_C_CONST
1329 AC_C_INLINE
1330 AC_CHECK_TYPES([mode_t, off_t, pid_t, size_t, ssize_t, long long, fsblkcnt_t, fsfilcnt_t])
1331 AC_CHECK_TYPES([sigset_t],,,[#include <signal.h>])
1332 AC_CHECK_TYPES([request_sense],,,[#include <linux/cdrom.h>])
1334 AC_CHECK_MEMBERS([struct ff_effect.direction],,,
1335 [#ifdef HAVE_LINUX_INPUT_H
1336 #include <linux/input.h>
1337 #endif])
1339 AC_CACHE_CHECK([for sigaddset],wine_cv_have_sigaddset,
1340                AC_TRY_LINK([#include <signal.h>],[sigset_t set; sigaddset(&set,SIGTERM);],
1341                            wine_cv_have_sigaddset=yes,wine_cv_have_sigaddset=no))
1342 if test "$wine_cv_have_sigaddset" = "yes"
1343 then
1344   AC_DEFINE(HAVE_SIGADDSET, 1, [Define if sigaddset is supported])
1348 AC_CACHE_CHECK([whether we can use re-entrant gethostbyname_r Linux style],
1349         wine_cv_linux_gethostbyname_r_6,
1350         AC_TRY_LINK([
1351 #include <netdb.h>
1352         ], [
1353     char *name=NULL;
1354     struct hostent he;
1355     struct hostent *result;
1356     char *buf=NULL;
1357     int bufsize=0;
1358     int res,errnr;
1359     char *addr=NULL;
1360     int addrlen=0;
1361     int addrtype=0;
1362     res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
1363     res=gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
1364     ],
1365         wine_cv_linux_gethostbyname_r_6=yes,
1366         wine_cv_linux_gethostbyname_r_6=no
1367         )
1368    )
1369    if test "$wine_cv_linux_gethostbyname_r_6" = "yes"
1370    then
1371       AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6, 1,
1372                 [Define if Linux-style gethostbyname_r and gethostbyaddr_r are available])
1373    fi
1375 if test "$ac_cv_header_linux_joystick_h" = "yes"
1376 then
1377    AC_CACHE_CHECK([whether linux/joystick.h uses the Linux 2.2+ API],
1378         wine_cv_linux_joystick_22_api,
1379         AC_TRY_COMPILE([
1380         #include <sys/ioctl.h>
1381         #include <linux/joystick.h>
1383         struct js_event blub;
1384         #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
1385         #error "no 2.2 header"
1386         #endif
1387         ],/*empty*/,
1388         wine_cv_linux_joystick_22_api=yes,
1389         wine_cv_linux_joystick_22_api=no,
1390         wine_cv_linux_joystick_22_api=no
1391         )
1392    )
1393    if test "$wine_cv_linux_joystick_22_api" = "yes"
1394    then
1395       AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API, 1,
1396                 [Define if <linux/joystick.h> defines the Linux 2.2 joystick API])
1397    fi
1400 dnl **** FIXME: what about mixed cases, where we need two of them? ***
1402 dnl Check for statfs members
1403 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],,,
1404 [#include <sys/types.h>
1405 #ifdef HAVE_SYS_PARAM_H
1406 # include <sys/param.h>
1407 #endif
1408 #ifdef HAVE_SYS_MOUNT_H
1409 # include <sys/mount.h>
1410 #endif
1411 #ifdef HAVE_SYS_VFS_H
1412 # include <sys/vfs.h>
1413 #endif
1414 #ifdef HAVE_SYS_STATFS_H
1415 # include <sys/statfs.h>
1416 #endif])
1418 AC_CHECK_MEMBERS([struct statvfs.f_blocks],,,
1419 [#ifdef HAVE_SYS_STATVFS_H
1420 #include <sys/statvfs.h>
1421 #endif])
1423 dnl Check for socket structure members
1424 AC_CHECK_MEMBERS([struct msghdr.msg_accrights, struct sockaddr.sa_len, struct sockaddr_un.sun_len],,,
1425 [#include <sys/types.h>
1426 #ifdef HAVE_SYS_SOCKET_H
1427 # include <sys/socket.h>
1428 #endif
1429 #ifdef HAVE_SYS_UN_H
1430 # include <sys/un.h>
1431 #endif])
1433 dnl Check for scsireq_t and sg_io_hdr_t members
1434 AC_CHECK_MEMBERS([scsireq_t.cmd, sg_io_hdr_t.interface_id],,,
1435 [#include <sys/types.h>
1436 #ifdef HAVE_SCSI_SG_H
1437 #include <scsi/sg.h>
1438 #endif])
1440 dnl Check for siginfo_t members
1441 AC_CHECK_MEMBERS([siginfo_t.si_fd],,,[#include <signal.h>])
1443 dnl Check for struct mtget members
1444 AC_CHECK_MEMBERS([struct mtget.mt_blksiz, struct mtget.mt_gstat, struct mtget.mt_blkno],,,
1445 [#include <sys/types.h>
1446 #ifdef HAVE_SYS_MTIO_H
1447 #include <sys/mtio.h>
1448 #endif])
1450 dnl Check for struct option
1451 AC_CHECK_MEMBERS([struct option.name],,,
1452 [#ifdef HAVE_GETOPT_H
1453 #include <getopt.h>
1454 #endif])
1456 dnl Check for stat.st_blocks
1457 AC_CHECK_MEMBERS([struct stat.st_blocks])
1459 dnl Check for sin6_scope_id
1460 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
1461 [#ifdef HAVE_SYS_TYPES_H
1462 #include <sys/types.h>
1463 #endif
1464 #ifdef HAVE_NETINET_IN_H
1465 #include <netinet/in.h>
1466 #endif])
1468 dnl Check for ns_msg ptr member
1469 AC_CHECK_MEMBERS([ns_msg._msg_ptr],,,
1470 [#ifdef HAVE_SYS_TYPES_H
1471 #include <sys/types.h>
1472 #endif
1473 #ifdef HAVE_NETINET_IN_H
1474 # include <netinet/in.h>
1475 #endif
1476 #ifdef HAVE_ARPA_NAMESER_H
1477 # include <arpa/nameser.h>
1478 #endif])
1480 dnl Check for the external timezone variables timezone and daylight
1481 AC_CACHE_CHECK([for timezone variable], ac_cv_have_timezone,
1482                AC_TRY_LINK([#include <time.h>],[timezone;],
1483                            ac_cv_have_timezone="yes", ac_cv_have_timezone="no"))
1484 if test "$ac_cv_have_timezone" = "yes"
1485 then
1486     AC_DEFINE(HAVE_TIMEZONE, 1, [Define if you have the timezone variable])
1488 AC_CACHE_CHECK([for daylight variable], ac_cv_have_daylight,
1489                AC_TRY_LINK([#include <time.h>],[daylight;],
1490                            ac_cv_have_daylight="yes", ac_cv_have_daylight="no"))
1491 if test "$ac_cv_have_daylight" = "yes"
1492 then
1493     AC_DEFINE(HAVE_DAYLIGHT, 1, [Define if you have the daylight variable])
1496 dnl *** check for the need to define platform-specific symbols
1498 case $host_cpu in
1499   *i[[3456789]]86*) WINE_CHECK_DEFINE([__i386__]) ;;
1500   *x86_64*)         WINE_CHECK_DEFINE([__x86_64__])
1501                     WINE_CHECK_DEFINE([_WIN64]) ;;
1502   *alpha*)          WINE_CHECK_DEFINE([__ALPHA__]) ;;
1503   *sparc*)          WINE_CHECK_DEFINE([__sparc__]) ;;
1504   *powerpc*)        WINE_CHECK_DEFINE([__powerpc__]) ;;
1505 esac
1507 case $host_vendor in
1508   *sun*) WINE_CHECK_DEFINE([__sun__]) ;;
1509 esac
1511 dnl **** Generate output files ****
1513 AH_TOP([#define __WINE_CONFIG_H])
1515 WINE_CONFIG_EXTRA_DIR(dlls/gdi/enhmfdrv)
1516 WINE_CONFIG_EXTRA_DIR(dlls/gdi/mfdrv)
1517 WINE_CONFIG_EXTRA_DIR(dlls/kernel/messages)
1518 WINE_CONFIG_EXTRA_DIR(dlls/user/resources)
1519 WINE_CONFIG_EXTRA_DIR(dlls/wineps.drv/data)
1520 WINE_CONFIG_EXTRA_DIR(include/wine)
1522 MAKE_RULES=Make.rules
1523 AC_SUBST_FILE(MAKE_RULES)
1525 MAKE_DLL_RULES=dlls/Makedll.rules
1526 AC_SUBST_FILE(MAKE_DLL_RULES)
1528 MAKE_IMPLIB_RULES=dlls/Makeimplib.rules
1529 AC_SUBST_FILE(MAKE_IMPLIB_RULES)
1531 MAKE_TEST_RULES=dlls/Maketest.rules
1532 AC_SUBST_FILE(MAKE_TEST_RULES)
1534 MAKE_LIB_RULES=libs/Makelib.rules
1535 AC_SUBST_FILE(MAKE_LIB_RULES)
1537 MAKE_PROG_RULES=programs/Makeprog.rules
1538 AC_SUBST_FILE(MAKE_PROG_RULES)
1540 AC_CONFIG_FILES([
1541 Make.rules
1542 dlls/Makedll.rules
1543 dlls/Makeimplib.rules
1544 dlls/Maketest.rules
1545 libs/Makelib.rules
1546 programs/Makeprog.rules
1547 Makefile
1548 dlls/Makefile
1549 dlls/activeds/Makefile
1550 dlls/advapi32/Makefile
1551 dlls/advapi32/tests/Makefile
1552 dlls/advpack/Makefile
1553 dlls/advpack/tests/Makefile
1554 dlls/amstream/Makefile
1555 dlls/atl/Makefile
1556 dlls/avicap32/Makefile
1557 dlls/avifil32/Makefile
1558 dlls/cabinet/Makefile
1559 dlls/cabinet/tests/Makefile
1560 dlls/capi2032/Makefile
1561 dlls/cards/Makefile
1562 dlls/cfgmgr32/Makefile
1563 dlls/comcat/Makefile
1564 dlls/comcat/tests/Makefile
1565 dlls/comctl32/Makefile
1566 dlls/comctl32/tests/Makefile
1567 dlls/comdlg32/Makefile
1568 dlls/comdlg32/tests/Makefile
1569 dlls/compstui/Makefile
1570 dlls/crtdll/Makefile
1571 dlls/crypt32/Makefile
1572 dlls/crypt32/tests/Makefile
1573 dlls/cryptdll/Makefile
1574 dlls/cryptnet/Makefile
1575 dlls/ctl3d32/Makefile
1576 dlls/d3d8/Makefile
1577 dlls/d3d8/tests/Makefile
1578 dlls/d3d9/Makefile
1579 dlls/d3d9/tests/Makefile
1580 dlls/d3dim/Makefile
1581 dlls/d3drm/Makefile
1582 dlls/d3dx8/Makefile
1583 dlls/d3dxof/Makefile
1584 dlls/dbghelp/Makefile
1585 dlls/dciman32/Makefile
1586 dlls/ddraw/Makefile
1587 dlls/ddraw/tests/Makefile
1588 dlls/devenum/Makefile
1589 dlls/dinput/Makefile
1590 dlls/dinput/tests/Makefile
1591 dlls/dinput8/Makefile
1592 dlls/dmband/Makefile
1593 dlls/dmcompos/Makefile
1594 dlls/dmime/Makefile
1595 dlls/dmloader/Makefile
1596 dlls/dmscript/Makefile
1597 dlls/dmstyle/Makefile
1598 dlls/dmsynth/Makefile
1599 dlls/dmusic/Makefile
1600 dlls/dmusic32/Makefile
1601 dlls/dnsapi/Makefile
1602 dlls/dnsapi/tests/Makefile
1603 dlls/dplay/Makefile
1604 dlls/dplayx/Makefile
1605 dlls/dpnet/Makefile
1606 dlls/dpnhpast/Makefile
1607 dlls/dsound/Makefile
1608 dlls/dsound/tests/Makefile
1609 dlls/dswave/Makefile
1610 dlls/dxdiagn/Makefile
1611 dlls/dxerr8/Makefile
1612 dlls/dxerr9/Makefile
1613 dlls/dxguid/Makefile
1614 dlls/gdi/Makefile
1615 dlls/gdi/tests/Makefile
1616 dlls/glu32/Makefile
1617 dlls/glut32/Makefile
1618 dlls/gphoto2.ds/Makefile
1619 dlls/hhctrl.ocx/Makefile
1620 dlls/hlink/Makefile
1621 dlls/iccvid/Makefile
1622 dlls/icmp/Makefile
1623 dlls/ifsmgr.vxd/Makefile
1624 dlls/imaadp32.acm/Makefile
1625 dlls/imagehlp/Makefile
1626 dlls/imm32/Makefile
1627 dlls/infosoft/Makefile
1628 dlls/inseng/Makefile
1629 dlls/iphlpapi/Makefile
1630 dlls/iphlpapi/tests/Makefile
1631 dlls/itss/Makefile
1632 dlls/kernel/Makefile
1633 dlls/kernel/tests/Makefile
1634 dlls/lz32/Makefile
1635 dlls/lz32/tests/Makefile
1636 dlls/mapi32/Makefile
1637 dlls/mapi32/tests/Makefile
1638 dlls/mciavi32/Makefile
1639 dlls/mcicda/Makefile
1640 dlls/mciseq/Makefile
1641 dlls/mciwave/Makefile
1642 dlls/midimap/Makefile
1643 dlls/mlang/Makefile
1644 dlls/mlang/tests/Makefile
1645 dlls/mmdevldr.vxd/Makefile
1646 dlls/monodebg.vxd/Makefile
1647 dlls/mpr/Makefile
1648 dlls/mprapi/Makefile
1649 dlls/msacm32.drv/Makefile
1650 dlls/msacm32/Makefile
1651 dlls/msacm32/tests/Makefile
1652 dlls/msadp32.acm/Makefile
1653 dlls/mscms/Makefile
1654 dlls/mscms/tests/Makefile
1655 dlls/msdmo/Makefile
1656 dlls/msftedit/Makefile
1657 dlls/msg711.acm/Makefile
1658 dlls/mshtml/Makefile
1659 dlls/mshtml/tests/Makefile
1660 dlls/msi/Makefile
1661 dlls/msi/tests/Makefile
1662 dlls/msimg32/Makefile
1663 dlls/msisys.ocx/Makefile
1664 dlls/msnet32/Makefile
1665 dlls/msrle32/Makefile
1666 dlls/msvcrt/Makefile
1667 dlls/msvcrt/tests/Makefile
1668 dlls/msvcrt20/Makefile
1669 dlls/msvcrt40/Makefile
1670 dlls/msvcrtd/Makefile
1671 dlls/msvcrtd/tests/Makefile
1672 dlls/msvfw32/Makefile
1673 dlls/msvidc32/Makefile
1674 dlls/mswsock/Makefile
1675 dlls/msxml3/Makefile
1676 dlls/msxml3/tests/Makefile
1677 dlls/netapi32/Makefile
1678 dlls/netapi32/tests/Makefile
1679 dlls/newdev/Makefile
1680 dlls/ntdll/Makefile
1681 dlls/ntdll/tests/Makefile
1682 dlls/ntdsapi/Makefile
1683 dlls/objsel/Makefile
1684 dlls/odbc32/Makefile
1685 dlls/odbccp32/Makefile
1686 dlls/ole32/Makefile
1687 dlls/ole32/tests/Makefile
1688 dlls/oleacc/Makefile
1689 dlls/oleaut32/Makefile
1690 dlls/oleaut32/tests/Makefile
1691 dlls/olecli32/Makefile
1692 dlls/oledlg/Makefile
1693 dlls/olepro32/Makefile
1694 dlls/olesvr32/Makefile
1695 dlls/opengl32/Makefile
1696 dlls/powrprof/Makefile
1697 dlls/psapi/Makefile
1698 dlls/psapi/tests/Makefile
1699 dlls/qcap/Makefile
1700 dlls/quartz/Makefile
1701 dlls/quartz/tests/Makefile
1702 dlls/query/Makefile
1703 dlls/rasapi32/Makefile
1704 dlls/riched20/Makefile
1705 dlls/riched20/tests/Makefile
1706 dlls/riched32/Makefile
1707 dlls/rpcrt4/Makefile
1708 dlls/rpcrt4/tests/Makefile
1709 dlls/rsabase/Makefile
1710 dlls/rsabase/tests/Makefile
1711 dlls/rsaenh/Makefile
1712 dlls/rsaenh/tests/Makefile
1713 dlls/sane.ds/Makefile
1714 dlls/secur32/Makefile
1715 dlls/secur32/tests/Makefile
1716 dlls/security/Makefile
1717 dlls/sensapi/Makefile
1718 dlls/serialui/Makefile
1719 dlls/setupapi/Makefile
1720 dlls/setupapi/tests/Makefile
1721 dlls/sfc/Makefile
1722 dlls/shdocvw/Makefile
1723 dlls/shdocvw/tests/Makefile
1724 dlls/shell32/Makefile
1725 dlls/shell32/tests/Makefile
1726 dlls/shfolder/Makefile
1727 dlls/shlwapi/Makefile
1728 dlls/shlwapi/tests/Makefile
1729 dlls/snmpapi/Makefile
1730 dlls/spoolss/Makefile
1731 dlls/stdole2.tlb/Makefile
1732 dlls/stdole32.tlb/Makefile
1733 dlls/sti/Makefile
1734 dlls/strmiids/Makefile
1735 dlls/tapi32/Makefile
1736 dlls/twain_32/Makefile
1737 dlls/unicows/Makefile
1738 dlls/url/Makefile
1739 dlls/urlmon/Makefile
1740 dlls/urlmon/tests/Makefile
1741 dlls/user/Makefile
1742 dlls/user/tests/Makefile
1743 dlls/userenv/Makefile
1744 dlls/usp10/Makefile
1745 dlls/usp10/tests/Makefile
1746 dlls/uuid/Makefile
1747 dlls/uxtheme/Makefile
1748 dlls/uxtheme/tests/Makefile
1749 dlls/vdhcp.vxd/Makefile
1750 dlls/vdmdbg/Makefile
1751 dlls/version/Makefile
1752 dlls/version/tests/Makefile
1753 dlls/vmm.vxd/Makefile
1754 dlls/vnbt.vxd/Makefile
1755 dlls/vnetbios.vxd/Makefile
1756 dlls/vtdapi.vxd/Makefile
1757 dlls/vwin32.vxd/Makefile
1758 dlls/w32skrnl/Makefile
1759 dlls/winecrt0/Makefile
1760 dlls/wined3d/Makefile
1761 dlls/winedos/Makefile
1762 dlls/winemp3.acm/Makefile
1763 dlls/wineps.drv/Makefile
1764 dlls/winex11.drv/Makefile
1765 dlls/wininet/Makefile
1766 dlls/wininet/tests/Makefile
1767 dlls/winmm/Makefile
1768 dlls/winmm/joystick/Makefile
1769 dlls/winmm/tests/Makefile
1770 dlls/winmm/winealsa/Makefile
1771 dlls/winmm/winearts/Makefile
1772 dlls/winmm/wineaudioio/Makefile
1773 dlls/winmm/winecoreaudio/Makefile
1774 dlls/winmm/wineesd/Makefile
1775 dlls/winmm/winejack/Makefile
1776 dlls/winmm/winenas/Makefile
1777 dlls/winmm/wineoss/Makefile
1778 dlls/winnls32/Makefile
1779 dlls/winspool.drv/Makefile
1780 dlls/winspool.drv/tests/Makefile
1781 dlls/wintab32/Makefile
1782 dlls/wintrust/Makefile
1783 dlls/wldap32/Makefile
1784 dlls/wnaspi32/Makefile
1785 dlls/wow32/Makefile
1786 dlls/ws2_32/Makefile
1787 dlls/ws2_32/tests/Makefile
1788 dlls/wsock32/Makefile
1789 dlls/wtsapi32/Makefile
1790 documentation/Makefile
1791 fonts/Makefile
1792 include/Makefile
1793 libs/Makefile
1794 libs/port/Makefile
1795 libs/wine/Makefile
1796 libs/wpp/Makefile
1797 loader/Makefile
1798 programs/Makefile
1799 programs/clock/Makefile
1800 programs/cmdlgtst/Makefile
1801 programs/control/Makefile
1802 programs/eject/Makefile
1803 programs/expand/Makefile
1804 programs/explorer/Makefile
1805 programs/hh/Makefile
1806 programs/icinfo/Makefile
1807 programs/iexplore/Makefile
1808 programs/msiexec/Makefile
1809 programs/notepad/Makefile
1810 programs/oleview/Makefile
1811 programs/progman/Makefile
1812 programs/regedit/Makefile
1813 programs/regsvr32/Makefile
1814 programs/rpcss/Makefile
1815 programs/rundll32/Makefile
1816 programs/start/Makefile
1817 programs/taskmgr/Makefile
1818 programs/uninstaller/Makefile
1819 programs/view/Makefile
1820 programs/wcmd/Makefile
1821 programs/wineboot/Makefile
1822 programs/winebrowser/Makefile
1823 programs/winecfg/Makefile
1824 programs/wineconsole/Makefile
1825 programs/winedbg/Makefile
1826 programs/winefile/Makefile
1827 programs/winemenubuilder/Makefile
1828 programs/winemine/Makefile
1829 programs/winepath/Makefile
1830 programs/winetest/Makefile
1831 programs/winevdm/Makefile
1832 programs/winhelp/Makefile
1833 programs/winver/Makefile
1834 programs/wordpad/Makefile
1835 server/Makefile
1836 tools/Makefile
1837 tools/widl/Makefile
1838 tools/winapi/Makefile
1839 tools/winebuild/Makefile
1840 tools/winedump/Makefile
1841 tools/winegcc/Makefile
1842 tools/wmc/Makefile
1843 tools/wrc/Makefile])
1845 AC_OUTPUT
1847 if test "$have_x" = "no"
1848 then
1849   echo >&2
1850   AC_MSG_WARN([X development files not found. Wine will be built without])
1851   AC_MSG_WARN([X support, which currently does not work, and probably])
1852   AC_MSG_WARN([isn't what you want anyway. You will need to install devel])
1853   AC_MSG_WARN([ packages of Xlib/Xfree86 at the very least.])
1856 if test "$wine_cv_opengl_version_OK" = "no"
1857 then
1858   echo >&2
1859   AC_MSG_WARN([Old Mesa headers detected. Wine will be built without Direct3D])
1860   AC_MSG_WARN([support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/).])
1863 if test "$wine_cv_msg_freetype" = "yes"
1864 then
1865   echo >&2
1866   AC_MSG_WARN([Your system appears to have the FreeType 2 runtime libraries])
1867   AC_MSG_WARN([installed, but 'freetype-config' is not in your PATH. Install])
1868   AC_MSG_WARN([the freetype-devel package (or its equivalent on your distribution)])
1869   AC_MSG_WARN([to enable Wine to use TrueType fonts.])
1872 if test -z "$FONTSSUBDIRS"
1873 then
1874   echo >&2
1875   if test "$FONTFORGE" = "false"
1876   then
1877     AC_MSG_WARN([FontForge is missing.])
1878   else
1879     AC_MSG_WARN([FreeType is missing.])
1880   fi
1881   AC_MSG_WARN([Fonts will not be built. Dialog text may be invisible or unaligned.])
1884 if test -z "$ALSALIBS" -a \
1885         -z "$ARTSC_LIBS" -a \
1886         -z "$AUDIOIOLIBS" -a \
1887         -z "$NASLIBS" -a \
1888         -z "$ESD_LIBS" -a \
1889         -z "$ac_cv_lib_soname_jack" -a \
1890         "$ac_cv_header_sys_soundcard_h" != "yes" -a \
1891         "$ac_cv_header_machine_soundcard_h" != "yes" -a \
1892         "$ac_cv_header_soundcard_h" != "yes"
1893 then
1894   echo >&2
1895   AC_MSG_WARN([No sound system was found. Windows applications will be silent.])
1896   AC_MSG_WARN([The currently supported sound systems are:])
1897   AC_MSG_WARN([ALSA, ARTS, EsounD, AudioIO, Jack, NAS and OSS])
1900 echo
1901 echo "Configure finished.  Do '${ac_make} depend && ${ac_make}' to compile Wine."
1902 echo
1904 dnl Local Variables:
1905 dnl comment-start: "dnl "
1906 dnl comment-end: ""
1907 dnl comment-start-skip: "\\bdnl\\b\\s *"
1908 dnl compile-command: "autoconf && autoheader"
1909 dnl End: