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