Move the FPS computation from the D3D code to the common code.
[wine/multimedia.git] / configure.ac
blob7c8bf6399fe2764b826e993bab6bfc7b03b08618
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.53)
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(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]))
19 AC_ARG_WITH(opengl,    AC_HELP_STRING([--without-opengl],[do not use OpenGL]))
20 AC_ARG_WITH(curses,    AC_HELP_STRING([--without-curses],[do not use curses]))
21 AC_ARG_WITH(wine-tools,AC_HELP_STRING([--with-wine-tools=<dir>],[use Wine tools from directory <dir>]))
23 AC_SUBST(WIN16_FILES,"\$(WIN16_FILES)")
24 AC_SUBST(WIN16_INSTALL,"\$(WIN16_INSTALL)")
25 if test "x$enable_win16" = "xno"
26 then
27   WIN16_FILES=""
28   WIN16_INSTALL=""
30 if test "x$enable_debug" = "xno"
31 then
32     AC_DEFINE(NO_DEBUG_MSGS,1,[Define to disable all debug messages.])
34 if test "x$enable_trace" = "xno" -o "x$enable_debug" = "xno"
35 then
36     AC_DEFINE(NO_TRACE_MSGS,1,[Define to disable trace messages.])
39 dnl **** Check for some programs ****
41 AC_CANONICAL_HOST
42 AC_PROG_MAKE_SET
43 AC_PROG_CC
44 AC_PROG_CXX
45 dnl We can't use AC_PROG_CPP for winegcc, it uses by default $(CC) -E
46 AC_CHECK_TOOL(CPPBIN,cpp,cpp)
48 AC_CACHE_CHECK([for the directory containing the Wine tools], wine_cv_toolsdir,
49   [if test -z "$with_wine_tools"; then
50      if test "$cross_compiling" = "yes"; then
51        AC_MSG_ERROR([you must use the --with-wine-tools option when cross-compiling.])
52      else
53        wine_cv_toolsdir="\$(TOPOBJDIR)"
54      fi
55    elif test -d "$with_wine_tools/tools/winebuild"; then
56      case $with_wine_tools in
57        /*) wine_cv_toolsdir="$with_wine_tools" ;;
58        *)  wine_cv_toolsdir="\$(TOPOBJDIR)/$with_wine_tools" ;;
59      esac
60    else
61      AC_MSG_ERROR([could not find Wine tools in $with_wine_tools.])
62    fi])
63 AC_SUBST(TOOLSDIR,$wine_cv_toolsdir)
65 AC_PATH_XTRA
66 AC_PROG_LEX
68 dnl **** Just additional warning checks, since AC_PROG just sets 'lex' even
69 dnl **** without one present.
70 AC_CHECK_PROGS(XLEX,$LEX flex lex,none)
71 if test "$XLEX" = "none"
72 then
73   AC_MSG_ERROR([no suitable lex found. Please install the 'flex' package.])
76 dnl Check for bison
77 AC_CHECK_PROGS(BISON,bison,none)
78 if test "$BISON" = "none"
79 then
80   AC_MSG_ERROR([no suitable bison found. Please install the 'bison' package.])
83 AC_CHECK_TOOLS(AS,[gas as],as)
84 AC_CHECK_TOOL(LD,ld,ld)
85 AC_CHECK_TOOL(AR,ar,ar)
86 AC_PROG_RANLIB
87 AC_CHECK_TOOL(STRIP,strip,strip)
88 AC_CHECK_TOOL(WINDRES,windres,false)
89 AC_PROG_LN_S
90 WINE_PROG_LN
91 AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH])
92 AC_PROG_INSTALL
93 dnl Prepend src dir to install path dir if it's a relative path
94 case "$INSTALL" in
95   [[\\/$]]* | ?:[[\\/]]* ) ;;
96   *)  INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;;
97 esac
99 dnl Check for lint
100 AC_CHECK_PROGS(LINT, lclint lint)
101 if test "$LINT" = "lint"
102 then
103   LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4"
104   dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64'
106 AC_SUBST(LINT)
107 AC_SUBST(LINTFLAGS)
109 dnl Check for db2html
110 AC_CHECK_PROGS(DB2HTML, docbook2html db2html, false)
111 AC_SUBST(DB2HTML)
113 dnl Check for db2pdf
114 AC_CHECK_PROGS(DB2PDF, docbook2pdf db2pdf, false)
115 AC_SUBST(DB2PDF)
117 dnl Check for db2ps
118 AC_CHECK_PROGS(DB2PS, docbook2ps db2ps, false)
119 AC_SUBST(DB2PS)
121 dnl Check for db2txt
122 AC_CHECK_PROGS(DB2TXT, docbook2txt db2txt, false)
123 AC_SUBST(DB2TXT)
125 dnl **** Check for some libraries ****
127 dnl Check for -li386 for NetBSD and OpenBSD
128 AC_CHECK_LIB(i386,i386_set_ldt)
129 dnl Check for -lossaudio for NetBSD
130 AC_CHECK_LIB(ossaudio,_oss_ioctl)
131 dnl Check for -lw for Solaris
132 AC_CHECK_FUNCS(iswalnum,,AC_CHECK_LIB(w,iswalnum))
133 dnl Check for -lnsl for Solaris
134 AC_CHECK_FUNCS(gethostbyname,,AC_CHECK_LIB(nsl,gethostbyname))
135 dnl Check for -lsocket for Solaris
136 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
137 dnl Check for -lresolv for Solaris
138 AC_CHECK_FUNCS(inet_aton,,AC_CHECK_LIB(resolv,inet_aton))
139 dnl Check for -lxpg4 for FreeBSD
140 AC_CHECK_LIB(xpg4,_xpg4_setrunelocale)
141 dnl Check for -lpoll for Mac OS X/Darwin
142 AC_CHECK_LIB(poll,poll)
143 dnl Check for -lpthread
144 AC_CHECK_LIB(pthread,pthread_create,AC_SUBST(LIBPTHREAD,"-lpthread"))
146 JPEGLIB=""
147 AC_SUBST(JPEGLIB)
148 AC_CHECK_HEADERS(jpeglib.h,
149     AC_CHECK_LIB(jpeg,jpeg_start_decompress,
150         AC_DEFINE(HAVE_LIBJPEG,1,[Define if you have libjpeg including devel headers])
151         JPEGLIB="-ljpeg"
152     )
155 AC_SUBST(GIFLIB,"")
156 AC_CHECK_HEADERS(gif_lib.h,
157     AC_CHECK_LIB(ungif,DGifOpen,
158         [AC_DEFINE(HAVE_LIBGIF,1,[Define if you have libgif/libungif including devel headers])
159          GIFLIB="-lungif"],
160         [AC_CHECK_LIB(gif,DGifOpen,
161                       [AC_DEFINE(HAVE_LIBGIF,1)
162                        GIFLIB="-lgif"])]))
164 AC_SUBST(XLIB)
165 AC_SUBST(XFILES)
166 XFILES=""
167 AC_SUBST(OPENGLFILES)
168 OPENGLFILES=""
169 AC_SUBST(GLU32FILES)
170 GLU32FILES=""
171 AC_SUBST(OPENGL_LIBS)
172 OPENGL_LIBS=""
173 if test "$have_x" = "yes"
174 then
175     XLIB="-lXext -lX11"
176     ac_save_CPPFLAGS="$CPPFLAGS"
177     CPPFLAGS="$CPPFLAGS $X_CFLAGS"
179     dnl *** All of the following tests require X11/Xlib.h
180     AC_CHECK_HEADERS(X11/Xlib.h,
181       [
182         AC_CHECK_HEADERS([X11/XKBlib.h \
183                           X11/Xutil.h \
184                           X11/extensions/shape.h \
185                           X11/extensions/XInput.h \
186                           X11/extensions/XShm.h \
187                           X11/extensions/Xrandr.h \
188                           X11/extensions/Xrender.h \
189                           X11/extensions/Xvlib.h \
190                           X11/extensions/xf86dga.h \
191                           X11/extensions/xf86vmode.h],,,
192                          [#include <X11/Xlib.h>
193                           #ifdef HAVE_X11_XUTIL_H
194                           # include <X11/Xutil.h>
195                           #endif])
197         dnl *** Check for X keyboard extension
198         if test "$ac_cv_header_X11_XKBlib_h" = "yes"
199         then
200               AC_CHECK_LIB(X11, XkbQueryExtension,
201               AC_DEFINE(HAVE_XKB, 1, [Define if you have the XKB extension]),,
202               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
203         fi
205         dnl *** Check for X Shm extension
206         if test "$ac_cv_header_X11_extensions_XShm_h" = "yes"
207         then
208               AC_CHECK_LIB(Xext, XShmQueryExtension,
209               AC_DEFINE(HAVE_LIBXXSHM, 1, [Define if you have the X Shm extension]),,
210               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
211         fi
213         dnl *** Check for X shape extension
214         if test "$ac_cv_header_X11_extensions_shape_h" = "yes"
215         then
216               AC_CHECK_LIB(Xext,XShapeQueryExtension,
217               AC_DEFINE(HAVE_LIBXSHAPE, 1, [Define if you have the X Shape extension]),,
218               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
219         fi
221         dnl *** Check for XFree86 DGA / DGA 2.0 extension
222         if test "$ac_cv_header_X11_extensions_xf86dga_h" = "yes"
223         then
224               AC_CHECK_LIB(Xxf86dga, XDGAQueryExtension,
225                 [ dnl *** If found...
226                   AC_DEFINE(HAVE_LIBXXF86DGA2, 1,
227                             [Define if you have the Xxf86dga library version 2])
228                   X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
229                ],
230                 [ dnl *** If not found, look for XF86DGAQueryExtension()
231                   dnl *** instead (DGA 2.0 not found)...
232                   AC_CHECK_LIB(Xxf86dga, XF86DGAQueryExtension,
233                     [ AC_DEFINE(HAVE_LIBXXF86DGA, 1,
234                                 [Define if you have the Xxf86dga library version 1])
235                       X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
236                     ],,
237                     $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
238                   )
239                 ],
240                 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
241         fi
243         dnl *** Check for XFree86 VMODE extension
244         if test "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes"
245         then
246                 AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension,
247                   [ AC_DEFINE(HAVE_LIBXXF86VM, 1, [Define if you have the Xxf86vm library])
248                      X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm"
249                   ],,
250                   $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
251         fi
253         dnl *** Check for X RandR extension
254         if test "$ac_cv_header_X11_extensions_Xrandr_h" = "yes"
255         then
256                 AC_TRY_COMPILE([#include <X11/Xlib.h>
257 #include <X11/extensions/Xrandr.h>],[static typeof(XRRSetScreenConfigAndRate) * func;],
258                   [AC_DEFINE(HAVE_LIBXRANDR, 1, [Define if you have the Xrandr library])])
259         fi
261         dnl *** Check for XVideo extension supporting XvImages
262         if test "$ac_cv_header_X11_extensions_Xvlib_h" = "yes"
263         then
264                 AC_CHECK_LIB(Xv, XvShmCreateImage,
265                   [ AC_DEFINE(HAVE_XVIDEO, 1, [Define if the X libraries support XVideo])
266                      X_PRE_LIBS="$X_PRE_LIBS -lXv"
267                   ],,
268                   $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
269         fi
270       ]
271     ) dnl *** End of X11/Xlib.h check
273     dnl Check for the presence of OpenGL
274     if test "x$with_opengl" != "xno"
275     then
276         if test -f /usr/X11R6/lib/libGL.a -a ! -f /usr/X11R6/lib/libGL.so
277         then
278             AC_MSG_ERROR([/usr/X11R6/lib/libGL.a is present on your system.
279 This prevents linking to OpenGL. Delete the file and restart configure.])
280         fi
282         AC_CHECK_HEADERS(GL/gl.h GL/glx.h)
283         if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_glx_h" = "yes"
284         then
285             AC_CHECK_HEADERS(GL/glext.h,,,[#include <GL/glx.h>])
286             dnl Check for some problems due to old Mesa versions
287             AC_CACHE_CHECK([for up-to-date OpenGL version], wine_cv_opengl_version_OK,
288               AC_TRY_COMPILE(
289                 [#include <GL/gl.h>],
290                 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
291                 [wine_cv_opengl_version_OK="yes"],
292                 [wine_cv_opengl_version_OK="no"]
293               )
294             )
296             if test "$wine_cv_opengl_version_OK" = "yes"
297             then
298                 dnl Check for the presence of the library
299                 AC_CHECK_LIB(GL,glXCreateContext,
300                              OPENGL_LIBS="-lGL"
301                              ,,
302                              $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
304                 if test "$ac_cv_lib_GL_glXCreateContext" = "yes"
305                 then
306                         OPENGLFILES='$(OPENGLFILES)'
307                         AC_DEFINE(HAVE_OPENGL, 1, [Define if OpenGL is present on the system])
309                         AC_CHECK_LIB(GL,glXGetProcAddressARB,
310                                      AC_DEFINE(HAVE_GLX_GETPROCADDRESS, 1,
311                                                [Define if the OpenGL library supports the glXGetProcAddressARB call]),,
312                                      $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
314                         if test "$ac_cv_lib_GL_glXGetProcAddressARB" = "yes"
315                         then
316                                AC_CACHE_CHECK([for OpenGL extension functions prototypes], wine_cv_extension_prototypes,
317                                   [AC_TRY_COMPILE([#include <GL/gl.h>
318                                                   #ifdef HAVE_GL_GLEXT_H
319                                                   # include <GL/glext.h>
320                                                   #endif
321                                                   ],
322                                                  [PFNGLCOLORTABLEEXTPROC test_proc;],
323                                                  [wine_cv_extension_prototypes="yes"],
324                                                  [wine_cv_extension_prototypes="no"]
325                                   )]
326                                 )
327                                 if test "$wine_cv_extension_prototypes" = "yes"
328                                 then
329                                     AC_DEFINE(HAVE_GLEXT_PROTOTYPES, 1,
330                                               [Define if the OpenGL headers define extension typedefs])
331                                 fi
332                         fi
334                 fi
335                 dnl Check for GLU32 library.
336                 AC_CHECK_LIB(GLU,gluLookAt,
337                              [OPENGL_LIBS="$OPENGL_LIBS -lGLU"
338                              GLU32FILES='$(GLU32FILES)']
339                              ,,
340                              $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS
341                 )
342              fi
344              dnl Check for glut32 library.
345              AC_CHECK_LIB(glut,glutMainLoop,
346                        [AC_SUBST(GLUT_LIBS,"-lglut -lXmu -lXi")
347                         AC_SUBST(GLUT32FILES,'$(GLUT32FILES)')],,
348                         $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXmu -lXi -lX11 $X_EXTRA_LIBS)
349          fi
350     fi
352     dnl **** Check for NAS ****
353     AC_SUBST(NASLIBS,"")
354     AC_CHECK_HEADERS(audio/audiolib.h,
355          [AC_CHECK_HEADERS(audio/soundlib.h,,,[#include <audio/audiolib.h>])
356           AC_CHECK_LIB(audio,AuCreateFlow,
357                        [AC_DEFINE(HAVE_NAS,1,[Define if you have NAS including devel headers])
358                         NASLIBS="-laudio -lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS"],,
359                        [-lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS])])
361     CPPFLAGS="$ac_save_CPPFLAGS"
362     XFILES='$(XFILES)'
363 else
364     XLIB=""
365     X_CFLAGS=""
366     X_LIBS=""
369 dnl **** Check which curses lib to use ***
370 CURSESLIBS=""
371 if test "x$with_curses" != "xno"
372 then
373     AC_CHECK_HEADERS(ncurses.h,
374         [AC_CHECK_LIB(ncurses,waddch,
375             [AC_DEFINE(HAVE_LIBNCURSES, 1, [Define if you have the ncurses library (-lncurses)])
376              CURSESLIBS="-lncurses"],
377              [AC_CHECK_HEADERS(curses.h,
378                  [AC_CHECK_LIB(curses,waddch,
379                      [AC_DEFINE(HAVE_LIBCURSES, 1, [Define if you have the curses library (-lcurses)])
380                       CURSESLIBS="-lcurses"])])])])
381     saved_libs="$LIBS"
382     LIBS="$CURSESLIBS $LIBS"
383     AC_CHECK_FUNCS(getbkgd resizeterm)
384     LIBS="$saved_libs"
386 AC_SUBST(CURSESLIBS)
388 dnl **** Check for SANE ****
389 AC_CHECK_PROG(sane_devel,sane-config,sane-config,no)
390 if test "$sane_devel" = "no"
391 then
392     SANELIBS=""
393     SANEINCL=""
394 else
395     SANELIBS="`$sane_devel --libs`"
396     SANEINCL="`$sane_devel --cflags`"
397     ac_save_CPPFLAGS="$CPPFLAGS"
398     ac_save_LIBS="$LIBS"
399     CPPFLAGS="$CPPFLAGS $SANEINCL"
400     LIBS="$LIBS $SANELIBS"
401     AC_CHECK_HEADER(sane/sane.h,
402                     [AC_CHECK_LIB(sane,sane_open,
403                                   [AC_DEFINE(HAVE_SANE, 1, [Define if we have SANE development environment])],
404                                   [SANELIBS=""
405                                   SANEINCL=""])],
406                     [SANELIBS=""
407                     SANEINCL=""])
408     LIBS="$ac_save_LIBS"
409     CPPFLAGS="$ac_save_CPPFLAGS"
411 AC_SUBST(SANELIBS)
412 AC_SUBST(SANEINCL)
414 dnl **** Check for the ICU library ****
415 AC_CHECK_HEADERS(unicode/ubidi.h)
416 if test "$ac_cv_header_unicode_ubidi_h" = "yes"
417 then
418     saved_libs="$LIBS"
419     ICU_LIB_DIR="${ICU_LIB_DIR-/usr/lib}"
420     ICUUC_LIB="${ICUUC_LIB-$ICU_LIB_DIR/libsicuuc.a}"
421     ICUDATA_LIB="${ICUDATA_LIB-$ICU_LIB_DIR/libsicudata.a}"
422     AC_MSG_CHECKING(whether can link with ICU libraries $ICUUC_LIB and $ICUDATA_LIB)
423     LIBS="$LIBS $ICUUC_LIB $ICUDATA_LIB -lstdc++ -lgcc_s"
424     AC_TRY_LINK([#include <unicode/ubidi.h>],[ubidi_open()],
425                 [AC_DEFINE(HAVE_ICU,1,[Define to 1 if the ICU libraries are installed])
426                  AC_SUBST(ICULIBS,"$ICUUC_LIB $ICUDATA_LIB -lstdc++ -lgcc_s")
427                  AC_MSG_RESULT(yes)],
428                 [AC_MSG_RESULT(no)])
429     LIBS="$saved_libs"
432 dnl **** Check for FreeType 2 ****
433 AC_CHECK_LIB(freetype,FT_Init_FreeType,ft_lib=yes,ft_lib=no,$X_LIBS)
434 if test "$ft_lib" = "no"
435 then
436     FREETYPEINCL=""
437     wine_cv_msg_freetype=no
438 else
439     AC_CHECK_PROG(ft_devel,freetype-config,freetype-config,no)
440     if test "$ft_devel" = "no"
441     then
442         AC_CHECK_PROG(ft_devel2,freetype2-config,freetype2-config,no)
443         if test "$ft_devel2" = "freetype2-config"
444         then
445                 ft_devel=$ft_devel2
446         fi
447     fi
448     if test "$ft_devel" = "no"
449     then
450         FREETYPEINCL=""
451         wine_cv_msg_freetype=yes
452     else
453         FREETYPEINCL=`$ft_devel --cflags`
454         ac_save_CPPFLAGS="$CPPFLAGS"
455         CPPFLAGS="$FREETYPEINCL $CPPFLAGS"
456         AC_CHECK_HEADERS(ft2build.h \
457                          freetype/freetype.h \
458                          freetype/ftglyph.h \
459                          freetype/tttables.h \
460                          freetype/ftnames.h \
461                          freetype/ftsnames.h \
462                          freetype/ttnameid.h \
463                          freetype/ftoutln.h \
464                          freetype/internal/sfnt.h,,,
465                          [#if HAVE_FT2BUILD_H
466                           #include <ft2build.h>
467                           #endif])
468         AC_TRY_CPP([#include <ft2build.h>
469                     #include <freetype/fttrigon.h>],
470                     [AC_DEFINE(HAVE_FREETYPE_FTTRIGON_H, 1,
471           [Define if you have the <freetype/fttrigon.h> header file.])
472                     wine_cv_fttrigon=yes],
473                     wine_cv_fttrigon=no)
474         CPPFLAGS="$ac_save_CPPFLAGS"
475         dnl Check that we have at least freetype/freetype.h
476         if test "$ac_cv_header_freetype_freetype_h" = "yes" -a "$wine_cv_fttrigon" = "yes"
477         then
478             AC_DEFINE(HAVE_FREETYPE, 1, [Define if FreeType 2 is installed])
479             wine_cv_msg_freetype=no
480         else
481             FREETYPEINCL=""
482             wine_cv_msg_freetype=yes
483         fi
484     fi
486 AC_SUBST(FREETYPEINCL)
488 dnl **** Check for parport (currently Linux only) ****
489 AC_CACHE_CHECK([for parport header/ppdev.h], ac_cv_c_ppdev,
490  AC_TRY_COMPILE(
491    [#include <linux/ppdev.h>],
492    [ioctl (1,PPCLAIM,0)],
493    [ac_cv_c_ppdev="yes"],
494    [ac_cv_c_ppdev="no"])
496 if test "$ac_cv_c_ppdev" = "yes"
497 then
498     AC_DEFINE(HAVE_PPDEV, 1, [Define if we can use ppdev.h for parallel port access])
501 dnl **** Check for va_copy ****
502 AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
503  AC_TRY_LINK(
504    [#include <stdarg.h>],
505    [va_list ap1, ap2;
506     va_copy(ap1,ap2);
507    ],
508    [ac_cv_c_va_copy="yes"],
509    [ac_cv_c_va_copy="no"])
511 if test "$ac_cv_c_va_copy" = "yes"
512 then
513     AC_DEFINE(HAVE_VA_COPY, 1, [Define if we have va_copy])
515 AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy,
516  AC_TRY_LINK(
517    [#include <stdarg.h>],
518    [va_list ap1, ap2;
519     __va_copy(ap1,ap2);
520    ],
521    [ac_cv_c___va_copy="yes"],
522    [ac_cv_c___va_copy="no"])
524 if test "$ac_cv_c___va_copy" = "yes"
525 then
526     AC_DEFINE(HAVE___VA_COPY, 1, [Define if we have __va_copy])
529 dnl **** Check for sigsetjmp ****
530 AC_CACHE_CHECK([for sigsetjmp], ac_cv_c_sigsetjmp,
531  AC_TRY_LINK(
532    [#include <setjmp.h>],
533    [sigjmp_buf buf;
534     sigsetjmp( buf, 1 );
535     siglongjmp( buf, 1 );],
536    [ac_cv_c_sigsetjmp="yes"],
537    [ac_cv_c_sigsetjmp="no"])
539 if test "$ac_cv_c_sigsetjmp" = "yes"
540 then
541     AC_DEFINE(HAVE_SIGSETJMP, 1, [Define to 1 if you have the sigsetjmp (and siglongjmp) function])
544 dnl **** Check for pthread_rwlock_t ****
545 AC_CHECK_TYPES([pthread_rwlock_t, pthread_rwlockattr_t],,,[#define _GNU_SOURCE
546 #include <pthread.h>])
548 dnl **** Check for pthread_getattr_np ****
549 ac_save_LIBS="$LIBS"
550 LIBS="$LIBS $LIBPTHREAD"
551 AC_CHECK_FUNCS(pthread_getattr_np)
552 LIBS="$ac_save_LIBS"
554 dnl **** Check for Open Sound System ****
555 AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h soundcard.h, break)
557 AC_CACHE_CHECK([for Open Sound System],
558         ac_cv_c_opensoundsystem,
559         AC_TRY_COMPILE([
560         #if defined(HAVE_SYS_SOUNDCARD_H)
561                 #include <sys/soundcard.h>
562         #elif defined(HAVE_MACHINE_SOUNDCARD_H)
563                 #include <machine/soundcard.h>
564         #elif defined(HAVE_SOUNDCARD_H)
565                 #include <soundcard.h>
566         #endif
567         ],[
569 /* check for one of the Open Sound System specific SNDCTL_ defines */
570 #if !defined(SNDCTL_DSP_STEREO)
571 #error No open sound system
572 #endif
573 ],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no"))
575 if test "$ac_cv_c_opensoundsystem" = "yes"
576 then
577     AC_DEFINE(HAVE_OSS, 1, [Define if you have the Open Sound system])
580 AC_CACHE_CHECK([for Open Sound System/MIDI interface],
581         ac_cv_c_opensoundsystem_midi,
582         AC_TRY_COMPILE([
583         #if defined(HAVE_SYS_SOUNDCARD_H)
584                 #include <sys/soundcard.h>
585         #elif defined(HAVE_MACHINE_SOUNDCARD_H)
586                 #include <machine/soundcard.h>
587         #elif defined(HAVE_SOUNDCARD_H)
588                 #include <soundcard.h>
589         #endif
590         ],[
592 /* check for one of the Open Sound System specific SNDCTL_SEQ defines */
593 #if !defined(SNDCTL_SEQ_SYNC)
594 #error No open sound system MIDI interface
595 #endif
596 ],ac_cv_c_opensoundsystem_midi="yes",ac_cv_c_opensoundsystem_midi="no"))
598 if test "$ac_cv_c_opensoundsystem_midi" = "yes"
599 then
600     AC_DEFINE(HAVE_OSS_MIDI, 1, [Define if you have the Open Sound system (MIDI interface)])
603 dnl **** Check for aRts Sound Server ****
604 AC_PATH_PROG(ARTSCCONFIG, artsc-config)
605 if test x$ARTSCCONFIG != x -a x$ARTSCCONFIG != x'"$ARTSCCONFIG"';
606 then
607     ARTSC_CFLAGS=""
608     for i in `$ARTSCCONFIG --cflags`
609     do
610       case "$i" in
611         -I*) ARTSC_CFLAGS="$ARTSC_CFLAGS $i";;
612       esac
613     done
614     ARTSC_LIBS=`$ARTSCCONFIG --libs`
615     save_CFLAGS="$CFLAGS"
616     CFLAGS="$CFLAGS $ARTSC_CFLAGS"
617     AC_TRY_COMPILE([#include <artsc.h>],[arts_stream_t stream;],
618         [AC_SUBST(ARTSLIBS, $ARTSC_LIBS)
619          AC_SUBST(ARTSINCL, $ARTSC_CFLAGS)
620          AC_DEFINE(HAVE_ARTS, 1, [Define if you have ARTS sound server])])
621     CFLAGS="$save_CFLAGS"
624 dnl **** Check for ALSA ****
625 AC_SUBST(ALSALIBS,"")
626 AC_CHECK_HEADERS(alsa/asoundlib.h sys/asoundlib.h, break)
627 if test "$ac_cv_header_sys_asoundlib_h" = "yes" -o "$ac_cv_header_alsa_asoundlib_h" = "yes"
628 then
629     AC_CHECK_LIB(asound,snd_pcm_open,
630         AC_DEFINE(HAVE_ALSA,1,[Define if you have ALSA including devel headers])
631         ALSALIBS="-lasound")
634 dnl **** Check for libaudioio (which can be used to get solaris audio support) ****
636 AC_SUBST(AUDIOIOLIBS,"")
637 AC_CHECK_HEADERS(libaudioio.h,
638     [AC_CHECK_LIB(audioio,AudioIOGetVersion,
639                   [AUDIOIOLIBS="-laudioio"
640                    AC_DEFINE(HAVE_LIBAUDIOIO, 1, [Define if you have libaudioIO])])])
642 dnl **** Check for capi4linux ****
644 AC_CHECK_HEADERS(capi20.h,[
645         AC_CHECK_HEADERS(linux/capi.h,[
646                 AC_CHECK_LIB(capi20,capi20_register,[
647                         AC_DEFINE(HAVE_CAPI4LINUX,1,[Define if you have capi4linux libs and headers])
648                         AC_SUBST(CAPI4LINUXLIBS,"-lcapi20")
649                 ])
650         ])
653 dnl **** Check for broken glibc mmap64 ****
655 AC_CACHE_CHECK( [whether mmap64 works defined as mmap], ac_cv_mmap64_works,
656         AC_TRY_RUN([
657                 #define _FILE_OFFSET_BITS 64
658                 #include <stdio.h>
659                 #include <unistd.h>
660                 #include <fcntl.h>
661                 #include <sys/mman.h>
662                 #include <errno.h>
664                 int main(int argc,char **argv) {
665                         int fd = open("conftest.map",O_CREAT|O_RDWR,0600);
666                         if (fd == -1) exit(1);
668                         unlink("conftest.map");
670                         write(fd,"test",4);
672                         if ((-1 == mmap(0,4,PROT_READ|PROT_WRITE,MAP_SHARED,fd,0)) &&
673                             (errno == EINVAL)
674                         ) {
675                                 exit(1);
676                         }
677                         close(fd);
678                         fprintf(stderr,"success!\n");
679                         exit(0);
680                 }
682         ],
683     ac_cv_mmap64_works="yes",
684     ac_cv_mmap64_works="no",
685     ac_cv_mmap64_works="no") )
687 if test "$ac_cv_mmap64_works" = "yes"
688 then
689     AC_DEFINE(_FILE_OFFSET_BITS, 64, [Set this to 64 to enable 64-bit file support on Linux])
692 dnl **** Check for gcc specific options ****
694 AC_SUBST(EXTRACFLAGS,"")
695 if test "x${GCC}" = "xyes"
696 then
697   EXTRACFLAGS="-Wall -pipe"
699   dnl Check for strength-reduce bug
700   AC_CACHE_CHECK( [for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug,
701                   AC_TRY_RUN([
702 int     L[[4]] = {0,1,2,3};
703 int main(void) {
704   static int Array[[3]];
705   unsigned int B = 3;
706   int i;
707   for(i=0; i<B; i++) Array[[i]] = i - 3;
708   for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]];
709   L[[i]] = 4;
711   exit( Array[[1]] != -2 || L[[2]] != 3);
713     ac_cv_c_gcc_strength_bug="no",
714     ac_cv_c_gcc_strength_bug="yes",
715     ac_cv_c_gcc_strength_bug="yes") )
716   if test "$ac_cv_c_gcc_strength_bug" = "yes"
717   then
718     EXTRACFLAGS="$EXTRACFLAGS -fno-strength-reduce"
719   fi
721   dnl Check for -fshort-wchar
722   AC_CACHE_CHECK([for gcc -fshort-wchar support], ac_cv_c_gcc_fshort_wchar,
723       [WINE_TRY_CFLAGS([-fshort-wchar],
724                       ac_cv_c_gcc_fshort_wchar="yes",ac_cv_c_gcc_fshort_wchar="no")])
725   if test "$ac_cv_c_gcc_fshort_wchar" = "yes"
726   then
727       AC_DEFINE(CC_FLAG_SHORT_WCHAR, "-fshort-wchar", [Specifies the compiler flag that forces a short wchar_t])
728   fi
730   dnl Check for -mpreferred-stack-boundary
731   AC_CACHE_CHECK([for gcc -mpreferred-stack-boundary=2 support], ac_cv_c_gcc_stack_boundary,
732       [WINE_TRY_CFLAGS([-mpreferred-stack-boundary=2],
733                       ac_cv_c_gcc_stack_boundary="yes",ac_cv_c_gcc_stack_boundary="no")])
734   if test "$ac_cv_c_gcc_stack_boundary" = "yes"
735   then
736     EXTRACFLAGS="$EXTRACFLAGS -mpreferred-stack-boundary=2"
737   fi
739   dnl Check for -fno-strict-aliasing
740   AC_CACHE_CHECK([for gcc -fno-strict-aliasing support], ac_cv_c_gcc_no_strict_aliasing,
741       [WINE_TRY_CFLAGS([-fno-strict-aliasing],
742                       ac_cv_c_gcc_no_strict_aliasing="yes",ac_cv_c_gcc_no_strict_aliasing="no")])
743   if test "$ac_cv_c_gcc_no_strict_aliasing" = "yes"
744   then
745     EXTRACFLAGS="$EXTRACFLAGS -fno-strict-aliasing"
746   fi
748   dnl Check for -gstabs+ option
749   AC_CACHE_CHECK([for gcc -gstabs+ support], ac_cv_c_gcc_gstabs,
750       [WINE_TRY_CFLAGS([-gstabs+],ac_cv_c_gcc_gstabs="yes", ac_cv_c_gcc_gstabs="no")])
751   if test "$ac_cv_c_gcc_gstabs" = "yes"
752   then
753     EXTRACFLAGS="$EXTRACFLAGS -gstabs+"
754   fi
756   dnl Check for noisy string.h
757   saved_CFLAGS="$CFLAGS"
758   CFLAGS="$CFLAGS -Wpointer-arith -Werror"
759   AC_CACHE_CHECK([for broken string.h that generates warnings], ac_cv_c_string_h_warnings,
760       AC_TRY_COMPILE([#include <string.h>],[],
761                      [ac_cv_c_string_h_warnings=no],[ac_cv_c_string_h_warnings=yes]))
762   CFLAGS="$saved_CFLAGS"
763   if test "$ac_cv_c_string_h_warnings" = "no"
764   then
765     EXTRACFLAGS="$EXTRACFLAGS -Wpointer-arith"
766   fi
769 dnl **** Check how to define a function in assembly code ****
771 AC_CACHE_CHECK([how to define a function in assembly code], ac_cv_asm_func_def,
772   WINE_TRY_ASM_LINK(
773       ["\t.globl _ac_test\n\t.def _ac_test; .scl 2; .type 32; .endef\n_ac_test:\t.long 0"],,,
774       ac_cv_asm_func_def=".def",
775     [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,@function\n_ac_test:\t.long 0"],,,
776       ac_cv_asm_func_def=".type @function",
777     [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,2\n_ac_test:\t.long 0"],,,
778       ac_cv_asm_func_def=".type 2",
779       ac_cv_asm_func_def="unknown")])]))
781 AH_TEMPLATE(__ASM_FUNC,[Define to a macro to generate an assembly function directive])
782 case "$ac_cv_asm_func_def" in
783   ".def")
784      AC_DEFINE([__ASM_FUNC(name)], [".def " __ASM_NAME(name) "; .scl 2; .type 32; .endef"]) ;;
785   ".type @function")
786      AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",@function"]) ;;
787   ".type 2")
788      AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",2"]) ;;
789   *)
790      AC_DEFINE([__ASM_FUNC(name)], [""]) ;;
791 esac
793 dnl **** Check for underscore on external symbols ****
795 AC_CACHE_CHECK([whether external symbols need an underscore prefix], ac_cv_c_extern_prefix,
796     WINE_TRY_ASM_LINK([".globl _ac_test\n_ac_test:\t.long 0"],
797                       [extern int ac_test;],
798                       [if (ac_test) return 1],
799                       ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no"))
801 AH_TEMPLATE(__ASM_NAME,[Define to a macro to generate an assembly name from a C symbol])
802 if test "$ac_cv_c_extern_prefix" = "yes"
803 then
804   AC_DEFINE([__ASM_NAME(name)], ["_" name])
805 else
806   AC_DEFINE([__ASM_NAME(name)], [name])
809 dnl **** Check how to do strings in assembler ****
811 AC_CACHE_CHECK([for assembler keyword for ASCII strings], ac_cv_c_asm_string,
812     WINE_TRY_ASM_LINK([".data\\n\\t.string \\"test\\"\\n\\t.text"],,,ac_cv_c_asm_string=".string",
813       WINE_TRY_ASM_LINK([".data\\n\\t.asciz \\"test\\"\\n\\t.text"],,,ac_cv_c_asm_string=".asciz",
814         WINE_TRY_ASM_LINK([".data\\n\\t.ascii \\"test\\"\\n\\t.text"],,,ac_cv_c_asm_string=".ascii",
815           AC_MSG_ERROR([could not discover how to produce C strings with assembler.])))))
817 AC_DEFINE_UNQUOTED(__ASM_STRING, ["$ac_cv_c_asm_string"],
818                    [Define to the assembler keyword used to specify an ASCII string])
820 dnl **** Check for .short in assembler ****
822 AC_CACHE_CHECK([for assembler keyword for word values], ac_cv_c_asm_short,
823     WINE_TRY_ASM_LINK([".data\\n\\t.short 1\\n\\t.text"],,,ac_cv_c_asm_short=".short",
824       WINE_TRY_ASM_LINK([".data\\n\\t.half 1\\n\\t.text"],,,ac_cv_c_asm_short=".half",
825         AC_MSG_ERROR([could not discover how to specify word values with assembler.]))))
827 AC_DEFINE_UNQUOTED(__ASM_SHORT, ["$ac_cv_c_asm_short"],
828                    [Define to the assembler keyword used to specify a word value])
830 dnl **** Check for working dll ****
832 AC_SUBST(DLLEXT,"")
833 AC_SUBST(DLLFLAGS,"-D_REENTRANT")
834 AC_SUBST(DLLIBS,"")
835 AC_SUBST(LDSHARED,"")
836 AC_SUBST(LDDLLFLAGS,"")
837 AC_SUBST(LIBEXT,"so")
838 AC_SUBST(IMPLIBEXT,"def")
840 case $host_os in
841   cygwin*|mingw32*)
842     AC_CHECK_TOOL(DLLTOOL,dlltool,false)
843     AC_CHECK_TOOL(DLLWRAP,dllwrap,false)
844     if test "$DLLWRAP" = "false"; then
845       LIBEXT="a"
846     else
847       dnl FIXME - check whether dllwrap works correctly...
848       LIBEXT="dll"
849     fi
850     IMPLIBEXT="a"
851     ;;
852   *)
853     AC_CHECK_HEADERS(dlfcn.h,
854         [AC_CHECK_FUNCS(dlopen,,
855             [AC_CHECK_LIB(dl,dlopen,
856                          [AC_DEFINE(HAVE_DLOPEN,1,[Define if you have dlopen])
857                           DLLIBS="-ldl"],
858                          [LIBEXT="a"])])],
859         [LIBEXT="a"])
861     if test "$LIBEXT" = "so"
862     then
863       DLLFLAGS="$DLLFLAGS -fPIC"
864       DLLEXT=".so"
865       AC_CACHE_CHECK([whether we can build a GNU style ELF dll], ac_cv_c_dll_gnuelf,
866           [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic],
867                            ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")])
868       if test "$ac_cv_c_dll_gnuelf" = "yes"
869       then
870         LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)"
871         LDDLLFLAGS="-shared -Wl,-Bsymbolic"
872         AC_CACHE_CHECK([whether the linker accepts -z defs], ac_cv_c_dll_zdefs,
873           [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-Bsymbolic,-z,defs],
874                            ac_cv_c_dll_zdefs="yes",ac_cv_c_dll_zdefs="no")])
875         if test "$ac_cv_c_dll_zdefs" = "yes"
876         then
877           LDDLLFLAGS="$LDDLLFLAGS,-z,defs"
878         fi
880         AC_CACHE_CHECK([whether the linker accepts -init and -fini], ac_cv_c_dll_init_fini,
881           [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-Bsymbolic,-init,__wine_spec_init,-fini,__wine_spec_fini],
882                            ac_cv_c_dll_init_fini="yes",ac_cv_c_dll_init_fini="no")])
883         if test "$ac_cv_c_dll_init_fini" = "yes"
884         then
885           LDDLLFLAGS="$LDDLLFLAGS,-init,__wine_spec_init,-fini,__wine_spec_fini"
886         fi
888         AC_CACHE_CHECK([whether the linker accepts version scripts], ac_cv_c_ld_version_scripts,
889           [echo '{ global: *; };' >conftest.map
890            WINE_TRY_CFLAGS([-fPIC -shared -Wl,--version-script=conftest.map],
891                            ac_cv_c_ld_version_scripts="yes",ac_cv_c_ld_version_scripts="no")
892            rm -f conftest.map])
893         if test "$ac_cv_c_ld_version_scripts" = "yes"
894         then
895           LDSHARED="$LDSHARED \$(VERSCRIPT:%=-Wl,--version-script=%)"
896         fi
898         AC_CACHE_CHECK([whether the linker accepts --export-dynamic], ac_cv_c_export_dynamic,
899           [WINE_TRY_CFLAGS([-fPIC -Wl,--export-dynamic],
900                            ac_cv_c_export_dynamic="yes",ac_cv_c_export_dynamic="no")])
901         if test "$ac_cv_c_export_dynamic" = "yes"
902         then
903           AC_SUBST(LDEXECFLAGS,["-Wl,--export-dynamic"])
904         fi
906         case $host_cpu in
907           *i[[3456789]]86*)
908             AC_CACHE_CHECK([whether we can relocate the executable to 0x77f00000], ac_cv_ld_reloc_exec,
909               [WINE_TRY_CFLAGS([-Wl,--section-start,.interp=0x77f00400],
910                                ac_cv_ld_reloc_exec="yes", ac_cv_ld_reloc_exec="no")])
911             if test "$ac_cv_ld_reloc_exec" = "yes"
912             then
913               LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x77f00400"
914             fi
915             ;;
916         esac
918       else
919         AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll, ac_cv_c_dll_unixware,
920             [WINE_TRY_CFLAGS([-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic],
921                              ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")])
922         if test "$ac_cv_c_dll_unixware" = "yes"
923         then
924           LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,%)"
925           LDDLLFLAGS="-Wl,-G,-B,symbolic"
927         else
928           AC_CACHE_CHECK(whether we can build a Mach-O (Mac OS X/Darwin) dll, ac_cv_c_dll_macho,
929             [WINE_TRY_CFLAGS([-bundle], ac_cv_c_dll_macho="yes", ac_cv_c_dll_macho="no")])
930           if test "$ac_cv_c_dll_macho" = "yes"
931           then
932             LIBEXT="dylib"
933             LDDLLFLAGS="-bundle -flat_namespace -undefined suppress"
934             LDSHARED="\$(CC) -dynamiclib"
935             CFLAGS="$CFLAGS -ffixed-r13 -no-cpp-precomp"
936           fi
937         fi
938       fi
939     fi
941     dnl Check for cross compiler to build test programs
942     AC_SUBST(CROSSTEST,"")
943     if test "$cross_compiling" = "no"
944     then
945       AC_CHECK_PROGS(CROSSCC,i586-mingw32msvc-gcc i386-mingw32msvc-gcc i386-mingw32-gcc mingw-gcc,false)
946       AC_CHECK_PROGS(DLLTOOL,i586-mingw32msvc-dlltool i386-mingw32msvc-dlltool i386-mingw32-dlltool mingw-dlltool,false)
947       AC_CHECK_PROGS(CROSSWINDRES,i586-mingw32msvc-windres i386-mingw32msvc-windres i386-mingw32-windres mingw-windres,false)
948       if test "$CROSSCC" != "false"; then CROSSTEST="\$(CROSSTEST)"; fi
949     fi
950     ;;
951 esac
953 if test "$LIBEXT" = "a"; then
954   AC_MSG_ERROR(
955 [could not find a way to build shared libraries.
956 It is currently not possible to build Wine without shared library
957 (.so) support to allow transparent switch between .so and .dll files.
958 If you are using Linux, you will need a newer binutils.]
962 case $build_os in
963   cygwin*|mingw32*)
964     AC_SUBST(LDPATH,"PATH=\"\$(TOOLSDIR)/libs/unicode:\$\$PATH\"") ;;
965   darwin*|macosx*)
966     AC_SUBST(LDPATH,"DYLD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/unicode:\$\$DYLD_LIBRARY_PATH\"") ;;
967   *)
968     AC_SUBST(LDPATH,"LD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/unicode:\$\$LD_LIBRARY_PATH\"") ;;
969 esac
971 dnl Mingw needs explicit msvcrt for linking libwine
972 case $host_os in
973   mingw32*)
974     AC_SUBST(CRTLIBS,"-lmsvcrt") ;;
975 esac
977 case $host_os in
978   linux*)
979     WINE_TRY_CFLAGS([-static],,AC_MSG_ERROR([You need to install the static version of glibc to build Wine.]))
980     AC_SUBST(WINE_BINARIES,"wine-glibc wine-kthread wine-pthread wine-preloader")
981     AC_SUBST(MAIN_BINARY,"wine-glibc")
982     ;;
983   *)
984     AC_SUBST(WINE_BINARIES,"wine-kthread")
985     AC_SUBST(MAIN_BINARY,"wine-kthread")
986     ;;
987 esac
989 dnl **** Get the soname for libraries that we load dynamically ****
991 if test "$LIBEXT" = "so"
992 then
993   WINE_GET_SONAME(X11,XCreateWindow,[$X_LIBS $X_EXTRA_LIBS])
994   WINE_GET_SONAME(Xext,XextCreateExtension,[$X_LIBS -lX11 $X_EXTRA_LIBS])
995   WINE_GET_SONAME(Xi,XOpenDevice,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])
996   WINE_GET_SONAME(Xrender,XRenderQueryExtension,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])
997   WINE_GET_SONAME(Xrandr,XRRQueryExtension,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])
998   WINE_GET_SONAME(freetype,FT_Init_FreeType,[$X_LIBS])
999   WINE_GET_SONAME(GL,glXQueryExtension,[$X_LIBS $X_EXTRA_LIBS])
1000   WINE_GET_SONAME(cups,cupsGetDefault)
1001   WINE_GET_SONAME(jack,jack_client_new)
1002   WINE_GET_SONAME(fontconfig,FcInit)
1003   WINE_GET_SONAME(ssl,SSL_library_init)
1004   WINE_GET_SONAME(crypto,BIO_new_socket)
1005   WINE_GET_SONAME(ncurses,waddch)
1006   WINE_GET_SONAME(curses,waddch)
1010 dnl **** Check for functions ****
1012 AC_FUNC_ALLOCA()
1013 AC_CHECK_FUNCS(\
1014         _lwp_create \
1015         _lwp_self \
1016         _pclose \
1017         _popen \
1018         _snprintf \
1019         _spawnvp \
1020         _stricmp \
1021         _strnicmp \
1022         _vsnprintf \
1023         chsize \
1024         clone \
1025         finite \
1026         fpclass \
1027         fstatfs \
1028         fstatvfs \
1029         ftruncate \
1030         ftruncate64 \
1031         futimes \
1032         getnetbyaddr \
1033         getnetbyname \
1034         getopt_long \
1035         getpagesize \
1036         getprotobyname \
1037         getprotobynumber \
1038         getpwuid \
1039         getservbyport \
1040         gettid \
1041         gettimeofday \
1042         inet_network \
1043         lseek64 \
1044         lstat \
1045         memmove \
1046         mmap \
1047         pclose \
1048         popen \
1049         pread \
1050         pwrite \
1051         readlink \
1052         rfork \
1053         select \
1054         sendmsg \
1055         settimeofday \
1056         sigaltstack \
1057         snprintf \
1058         spawnvp \
1059         statfs \
1060         statvfs \
1061         strcasecmp \
1062         strerror \
1063         strncasecmp \
1064         tcgetattr \
1065         timegm \
1066         usleep \
1067         vfscanf \
1068         vsnprintf \
1069         wait4 \
1070         waitpid \
1073 dnl **** Check for header files ****
1075 AC_CHECK_HEADERS(\
1076         arpa/inet.h \
1077         arpa/nameser.h \
1078         cups/cups.h \
1079         direct.h \
1080         elf.h \
1081         float.h \
1082         fontconfig/fontconfig.h \
1083         getopt.h \
1084         ieeefp.h \
1085         io.h \
1086         jack/jack.h \
1087         libio.h \
1088         libutil.h \
1089         link.h \
1090         linux/cdrom.h \
1091         linux/hdreg.h \
1092         linux/input.h \
1093         linux/ioctl.h \
1094         linux/joystick.h \
1095         linux/major.h \
1096         linux/param.h \
1097         linux/serial.h \
1098         linux/ucdrom.h \
1099         machine/cpu.h \
1100         mntent.h \
1101         netdb.h \
1102         netinet/in.h \
1103         netinet/in_systm.h \
1104         netinet/tcp.h \
1105         netinet/tcp_fsm.h \
1106         openssl/ssl.h \
1107         process.h \
1108         pthread.h \
1109         pty.h \
1110         pwd.h \
1111         regex.h \
1112         sched.h \
1113         scsi/sg.h \
1114         scsi/scsi.h \
1115         scsi/scsi_ioctl.h \
1116         socket.h \
1117         stdint.h \
1118         strings.h \
1119         sys/cdio.h \
1120         sys/elf32.h \
1121         sys/errno.h \
1122         sys/exec_elf.h \
1123         sys/file.h \
1124         sys/filio.h \
1125         sys/inttypes.h \
1126         sys/ioctl.h \
1127         sys/ipc.h \
1128         sys/link.h \
1129         sys/lwp.h \
1130         sys/mman.h \
1131         sys/modem.h \
1132         sys/msg.h \
1133         sys/param.h \
1134         sys/poll.h \
1135         sys/ptrace.h \
1136         sys/reg.h \
1137         sys/scsiio.h \
1138         sys/shm.h \
1139         sys/signal.h \
1140         sys/socket.h \
1141         sys/sockio.h \
1142         sys/statfs.h \
1143         sys/statvfs.h \
1144         sys/strtio.h \
1145         sys/syscall.h \
1146         sys/sysctl.h \
1147         sys/time.h \
1148         sys/times.h \
1149         sys/uio.h \
1150         sys/un.h \
1151         sys/v86.h \
1152         sys/v86intr.h \
1153         sys/vfs.h \
1154         sys/vm86.h \
1155         sys/wait.h \
1156         syscall.h \
1157         termios.h \
1158         unistd.h \
1159         utime.h \
1160         valgrind/memcheck.h
1162 AC_HEADER_STAT()
1164 dnl **** Checks for headers that depend on other ones ****
1166 AC_CHECK_HEADERS(sys/mount.h sys/user.h,,,
1167     [#include <sys/types.h>
1168      #if HAVE_SYS_PARAM_H
1169      # include <sys/param.h>
1170      #endif])
1172 AC_CHECK_HEADERS([net/if.h net/if_arp.h net/if_dl.h net/if_types.h net/route.h],,,
1173     [#include <sys/types.h>
1174      #if HAVE_SYS_SOCKET_H
1175      # include <sys/socket.h>
1176      #endif])
1178 AC_CHECK_HEADERS([resolv.h],,,
1179     [#include <sys/types.h>
1180      #if HAVE_SYS_SOCKET_H
1181      # include <sys/socket.h>
1182      #endif
1183      #if HAVE_NETINET_IN_H
1184      # include <netinet/in.h>
1185      #endif
1186      #if HAVE_ARPA_NAMESER_H
1187      # include <arpa/nameser.h>
1188      #endif])
1190 AC_CHECK_HEADERS(netinet/ip.h,,,
1191     [#include <sys/types.h>
1192      #if HAVE_SYS_SOCKET_H
1193      # include <sys/socket.h>
1194      #endif
1195      #if HAVE_NETINET_IN_SYSTM_H
1196      # include <netinet/in_systm.h>
1197      #endif])
1199 AC_CHECK_HEADERS(ucontext.h,,,[#include <signal.h>])
1201 dnl **** Check for IPX headers (currently Linux only) ****
1203 AC_CACHE_CHECK([for GNU style IPX support], ac_cv_c_ipx_gnu,
1204  AC_TRY_COMPILE(
1205    [#include <sys/types.h>
1206     #ifdef HAVE_SYS_SOCKET_H
1207     # include <sys/socket.h>
1208     #endif
1209     #include <netipx/ipx.h>],
1210    [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
1211    [ac_cv_c_ipx_gnu="yes"],
1212    [ac_cv_c_ipx_gnu="no"])
1214 if test "$ac_cv_c_ipx_gnu" = "yes"
1215 then
1216     AC_DEFINE(HAVE_IPX_GNU, 1, [Define if IPX should use netipx/ipx.h from libc])
1219 if test "$ac_cv_c_ipx_gnu" = "no"
1220 then
1221  AC_CACHE_CHECK([for linux style IPX support], ac_cv_c_ipx_linux,
1222   AC_TRY_COMPILE(
1223     [#include <sys/types.h>
1224      #ifdef HAVE_SYS_SOCKET_H
1225      # include <sys/socket.h>
1226      #endif
1227      #include <asm/types.h>
1228      #include <linux/ipx.h>],
1229     [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
1230     [ac_cv_c_ipx_linux="yes"],
1231     [ac_cv_c_ipx_linux="no"])
1232   )
1233   if test "$ac_cv_c_ipx_linux" = "yes"
1234   then
1235       AC_DEFINE(HAVE_IPX_LINUX, 1, [Define if IPX includes are taken from Linux kernel])
1236   fi
1239 dnl **** Check for types ****
1241 AC_C_CONST
1242 AC_C_INLINE
1243 AC_CHECK_TYPES([mode_t, off_t, pid_t, size_t, ssize_t, long long, fsblkcnt_t, fsfilcnt_t])
1245 AC_CACHE_CHECK([whether linux/input.h is for real],
1246         wine_cv_linux_input_h,
1247         AC_TRY_COMPILE([
1248             #include <linux/input.h>
1249         ] , [
1250             int foo = EVIOCGBIT(EV_ABS,42);
1251             int bar = BTN_PINKIE;
1252             int fortytwo = 42;
1253         ],
1254         wine_cv_linux_input_h=yes,
1255         wine_cv_linux_input_h=no,
1256         no
1257         )
1258     )
1259     if test "$wine_cv_linux_input_h" = "yes"
1260     then
1261         AC_DEFINE(HAVE_CORRECT_LINUXINPUT_H, 1,
1262                   [Define if we have linux/input.h AND it contains the INPUT event API])
1263     fi
1266 AC_CACHE_CHECK([whether we can use re-entrant gethostbyname_r Linux style],
1267         wine_cv_linux_gethostbyname_r_6,
1268         AC_TRY_LINK([
1269 #include <netdb.h>
1270         ], [
1271     char *name=NULL;
1272     struct hostent he;
1273     struct hostent *result;
1274     char *buf=NULL;
1275     int bufsize=0;
1276     int res,errnr;
1277     char *addr=NULL;
1278     int addrlen=0;
1279     int addrtype=0;
1280     res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
1281     res=gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
1282     ],
1283         wine_cv_linux_gethostbyname_r_6=yes,
1284         wine_cv_linux_gethostbyname_r_6=no
1285         )
1286    )
1287    if test "$wine_cv_linux_gethostbyname_r_6" = "yes"
1288    then
1289       AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6, 1,
1290                 [Define if Linux-style gethostbyname_r and gethostbyaddr_r are available])
1291    fi
1293 if test "$ac_cv_header_linux_joystick_h" = "yes"
1294 then
1295    AC_CACHE_CHECK([whether linux/joystick.h uses the Linux 2.2+ API],
1296         wine_cv_linux_joystick_22_api,
1297         AC_TRY_COMPILE([
1298         #include <sys/ioctl.h>
1299         #include <linux/joystick.h>
1301         struct js_event blub;
1302         #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
1303         #error "no 2.2 header"
1304         #endif
1305         ],/*empty*/,
1306         wine_cv_linux_joystick_22_api=yes,
1307         wine_cv_linux_joystick_22_api=no,
1308         wine_cv_linux_joystick_22_api=no
1309         )
1310    )
1311    if test "$wine_cv_linux_joystick_22_api" = "yes"
1312    then
1313       AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API, 1,
1314                 [Define if <linux/joystick.h> defines the Linux 2.2 joystick API])
1315    fi
1318 dnl **** statfs checks ****
1320 if test "$ac_cv_header_sys_vfs_h" = "yes"
1321 then
1322     AC_CACHE_CHECK( [whether sys/vfs.h defines statfs],
1323                     wine_cv_sys_vfs_has_statfs,
1324         AC_TRY_COMPILE([
1325         #include <sys/types.h>
1326         #ifdef HAVE_SYS_PARAM_H
1327         # include <sys/param.h>
1328         #endif
1329         #include <sys/vfs.h>
1330         ],[
1331                 struct statfs stfs;
1333                 memset(&stfs,0,sizeof(stfs));
1334         ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no
1335         )
1336     )
1337     if test "$wine_cv_sys_vfs_has_statfs" = "yes"
1338     then
1339       AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS, 1,
1340                 [Define if the struct statfs is defined by <sys/vfs.h>])
1341     fi
1344 if test "$ac_cv_header_sys_statfs_h" = "yes"
1345 then
1346     AC_CACHE_CHECK( [whether sys/statfs.h defines statfs],
1347                     wine_cv_sys_statfs_has_statfs,
1348         AC_TRY_COMPILE([
1349         #include <sys/types.h>
1350         #ifdef HAVE_SYS_PARAM_H
1351         # include <sys/param.h>
1352         #endif
1353         #include <sys/statfs.h>
1354         ],[
1355                 struct statfs stfs;
1356         ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no
1357         )
1358     )
1359     if test "$wine_cv_sys_statfs_has_statfs" = "yes"
1360     then
1361       AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS, 1,
1362                 [Define if the struct statfs is defined by <sys/statfs.h>])
1363     fi
1366 if test "$ac_cv_header_sys_mount_h" = "yes"
1367 then
1368     AC_CACHE_CHECK( [whether sys/mount.h defines statfs],
1369                     wine_cv_sys_mount_has_statfs,
1370         AC_TRY_COMPILE([
1371         #include <sys/types.h>
1372         #ifdef HAVE_SYS_PARAM_H
1373         # include <sys/param.h>
1374         #endif
1375         #include <sys/mount.h>
1376         ],[
1377                 struct statfs stfs;
1378         ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no
1379         )
1380     )
1381     if test "$wine_cv_sys_mount_has_statfs" = "yes"
1382     then
1383       AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT, 1,
1384                 [Define if the struct statfs is defined by <sys/mount.h>])
1385     fi
1388 dnl **** FIXME: what about mixed cases, where we need two of them? ***
1390 dnl Check for statfs members
1391 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],,,
1392 [#include <sys/types.h>
1393 #ifdef HAVE_SYS_PARAM_H
1394 # include <sys/param.h>
1395 #endif
1396 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
1397 # include <sys/mount.h>
1398 #else
1399 # ifdef STATFS_DEFINED_BY_SYS_VFS
1400 #  include <sys/vfs.h>
1401 # else
1402 #  ifdef STATFS_DEFINED_BY_SYS_STATFS
1403 #   include <sys/statfs.h>
1404 #  endif
1405 # endif
1406 #endif])
1408 AC_CHECK_MEMBERS([struct statvfs.f_blocks],,,
1409 [#ifdef HAVE_SYS_STATVFS_H
1410 #include <sys/statvfs.h>
1411 #endif])
1413 dnl Check for socket structure members
1414 AC_CHECK_MEMBERS([struct msghdr.msg_accrights, struct sockaddr.sa_len, struct sockaddr_un.sun_len],,,
1415 [#include <sys/types.h>
1416 #ifdef HAVE_SYS_SOCKET_H
1417 # include <sys/socket.h>
1418 #endif
1419 #ifdef HAVE_SYS_UN_H
1420 # include <sys/un.h>
1421 #endif])
1423 dnl Check for siginfo_t members
1424 AC_CHECK_MEMBERS([siginfo_t.si_fd],,,[#include <signal.h>])
1426 dnl Check for struct option
1427 AC_CHECK_MEMBERS([struct option.name],,,
1428 [#ifdef HAVE_GETOPT_H
1429 #include <getopt.h>
1430 #endif])
1432 dnl Check for stat.st_blocks
1433 AC_CHECK_MEMBERS([struct stat.st_blocks])
1435 dnl *** check for the need to define platform-specific symbols
1437 case $host_cpu in
1438   *i[[3456789]]86*) WINE_CHECK_DEFINE([__i386__]) ;;
1439   *alpha*)          WINE_CHECK_DEFINE([__ALPHA__]) ;;
1440   *sparc*)          WINE_CHECK_DEFINE([__sparc__]) ;;
1441   *powerpc*)        WINE_CHECK_DEFINE([__powerpc__]) ;;
1442 esac
1444 case $host_vendor in
1445   *sun*) WINE_CHECK_DEFINE([__sun__]) ;;
1446 esac
1448 dnl **** Generate output files ****
1450 AH_TOP([#define __WINE_CONFIG_H])
1452 WINE_CONFIG_EXTRA_DIR(controls)
1453 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/d3ddevice)
1454 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/dclipper)
1455 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/ddraw)
1456 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/direct3d)
1457 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/dpalette)
1458 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/dsurface)
1459 WINE_CONFIG_EXTRA_DIR(dlls/gdi/enhmfdrv)
1460 WINE_CONFIG_EXTRA_DIR(dlls/gdi/mfdrv)
1461 WINE_CONFIG_EXTRA_DIR(dlls/kernel/messages)
1462 WINE_CONFIG_EXTRA_DIR(dlls/user/dde)
1463 WINE_CONFIG_EXTRA_DIR(dlls/user/resources)
1464 WINE_CONFIG_EXTRA_DIR(dlls/wineps/data)
1465 WINE_CONFIG_EXTRA_DIR(include/wine)
1466 WINE_CONFIG_EXTRA_DIR(misc)
1467 WINE_CONFIG_EXTRA_DIR(objects)
1468 WINE_CONFIG_EXTRA_DIR(programs/regedit/tests)
1469 WINE_CONFIG_EXTRA_DIR(windows)
1471 MAKE_RULES=Make.rules
1472 AC_SUBST_FILE(MAKE_RULES)
1474 MAKE_DLL_RULES=dlls/Makedll.rules
1475 AC_SUBST_FILE(MAKE_DLL_RULES)
1477 MAKE_TEST_RULES=dlls/Maketest.rules
1478 AC_SUBST_FILE(MAKE_TEST_RULES)
1480 MAKE_LIB_RULES=libs/Makelib.rules
1481 AC_SUBST_FILE(MAKE_LIB_RULES)
1483 MAKE_PROG_RULES=programs/Makeprog.rules
1484 AC_SUBST_FILE(MAKE_PROG_RULES)
1486 AC_CONFIG_FILES([
1487 Make.rules
1488 dlls/Makedll.rules
1489 dlls/Maketest.rules
1490 libs/Makelib.rules
1491 programs/Makeprog.rules
1492 Makefile
1493 dlls/Makefile
1494 dlls/advapi32/Makefile
1495 dlls/advapi32/tests/Makefile
1496 dlls/amstream/Makefile
1497 dlls/avicap32/Makefile
1498 dlls/avifil32/Makefile
1499 dlls/cabinet/Makefile
1500 dlls/capi2032/Makefile
1501 dlls/cards/Makefile
1502 dlls/cfgmgr32/Makefile
1503 dlls/comcat/Makefile
1504 dlls/comctl32/Makefile
1505 dlls/comctl32/tests/Makefile
1506 dlls/commdlg/Makefile
1507 dlls/crtdll/Makefile
1508 dlls/crypt32/Makefile
1509 dlls/ctl3d/Makefile
1510 dlls/d3d8/Makefile
1511 dlls/d3d9/Makefile
1512 dlls/d3dim/Makefile
1513 dlls/d3drm/Makefile
1514 dlls/d3dx8/Makefile
1515 dlls/d3dxof/Makefile
1516 dlls/dbghelp/Makefile
1517 dlls/dciman32/Makefile
1518 dlls/ddraw/Makefile
1519 dlls/ddraw/tests/Makefile
1520 dlls/devenum/Makefile
1521 dlls/dinput/Makefile
1522 dlls/dinput8/Makefile
1523 dlls/dmband/Makefile
1524 dlls/dmcompos/Makefile
1525 dlls/dmime/Makefile
1526 dlls/dmloader/Makefile
1527 dlls/dmscript/Makefile
1528 dlls/dmstyle/Makefile
1529 dlls/dmsynth/Makefile
1530 dlls/dmusic/Makefile
1531 dlls/dmusic32/Makefile
1532 dlls/dplay/Makefile
1533 dlls/dplayx/Makefile
1534 dlls/dpnet/Makefile
1535 dlls/dpnhpast/Makefile
1536 dlls/dsound/Makefile
1537 dlls/dsound/tests/Makefile
1538 dlls/dswave/Makefile
1539 dlls/dxdiagn/Makefile
1540 dlls/dxerr8/Makefile
1541 dlls/dxerr9/Makefile
1542 dlls/dxguid/Makefile
1543 dlls/gdi/Makefile
1544 dlls/gdi/tests/Makefile
1545 dlls/glu32/Makefile
1546 dlls/glut32/Makefile
1547 dlls/hhctrl.ocx/Makefile
1548 dlls/iccvid/Makefile
1549 dlls/icmp/Makefile
1550 dlls/ifsmgr.vxd/Makefile
1551 dlls/imagehlp/Makefile
1552 dlls/imm32/Makefile
1553 dlls/iphlpapi/Makefile
1554 dlls/iphlpapi/tests/Makefile
1555 dlls/kernel/Makefile
1556 dlls/kernel/tests/Makefile
1557 dlls/lzexpand/Makefile
1558 dlls/mapi32/Makefile
1559 dlls/mapi32/tests/Makefile
1560 dlls/mmdevldr.vxd/Makefile
1561 dlls/monodebg.vxd/Makefile
1562 dlls/mpr/Makefile
1563 dlls/msacm/Makefile
1564 dlls/msacm/imaadp32/Makefile
1565 dlls/msacm/msadp32/Makefile
1566 dlls/msacm/msg711/Makefile
1567 dlls/msacm/winemp3/Makefile
1568 dlls/msacm/tests/Makefile
1569 dlls/msdmo/Makefile
1570 dlls/mshtml/Makefile
1571 dlls/msi/Makefile
1572 dlls/msimg32/Makefile
1573 dlls/msisys/Makefile
1574 dlls/msnet32/Makefile
1575 dlls/msrle32/Makefile
1576 dlls/msvcrt/Makefile
1577 dlls/msvcrt/tests/Makefile
1578 dlls/msvcrt20/Makefile
1579 dlls/msvcrt40/Makefile
1580 dlls/msvcrtd/Makefile
1581 dlls/msvcrtd/tests/Makefile
1582 dlls/msvidc32/Makefile
1583 dlls/msvideo/Makefile
1584 dlls/mswsock/Makefile
1585 dlls/netapi32/Makefile
1586 dlls/netapi32/tests/Makefile
1587 dlls/newdev/Makefile
1588 dlls/ntdll/Makefile
1589 dlls/ntdll/tests/Makefile
1590 dlls/odbc32/Makefile
1591 dlls/ole32/Makefile
1592 dlls/oleacc/Makefile
1593 dlls/oleaut32/Makefile
1594 dlls/oleaut32/tests/Makefile
1595 dlls/olecli/Makefile
1596 dlls/oledlg/Makefile
1597 dlls/olepro32/Makefile
1598 dlls/olesvr/Makefile
1599 dlls/opengl32/Makefile
1600 dlls/psapi/Makefile
1601 dlls/qcap/Makefile
1602 dlls/quartz/Makefile
1603 dlls/rasapi32/Makefile
1604 dlls/richedit/Makefile
1605 dlls/rpcrt4/Makefile
1606 dlls/rpcrt4/tests/Makefile
1607 dlls/rsabase/Makefile
1608 dlls/secur32/Makefile
1609 dlls/serialui/Makefile
1610 dlls/setupapi/Makefile
1611 dlls/shdocvw/Makefile
1612 dlls/shell32/Makefile
1613 dlls/shell32/tests/Makefile
1614 dlls/shfolder/Makefile
1615 dlls/shlwapi/Makefile
1616 dlls/shlwapi/tests/Makefile
1617 dlls/snmpapi/Makefile
1618 dlls/sti/Makefile
1619 dlls/tapi32/Makefile
1620 dlls/ttydrv/Makefile
1621 dlls/twain/Makefile
1622 dlls/unicows/Makefile
1623 dlls/url/Makefile
1624 dlls/urlmon/Makefile
1625 dlls/urlmon/tests/Makefile
1626 dlls/user/Makefile
1627 dlls/user/tests/Makefile
1628 dlls/uuid/Makefile
1629 dlls/uxtheme/Makefile
1630 dlls/vdhcp.vxd/Makefile
1631 dlls/vdmdbg/Makefile
1632 dlls/version/Makefile
1633 dlls/version/tests/Makefile
1634 dlls/vmm.vxd/Makefile
1635 dlls/vnbt.vxd/Makefile
1636 dlls/vnetbios.vxd/Makefile
1637 dlls/vtdapi.vxd/Makefile
1638 dlls/vwin32.vxd/Makefile
1639 dlls/win32s/Makefile
1640 dlls/winaspi/Makefile
1641 dlls/wined3d/Makefile
1642 dlls/winedos/Makefile
1643 dlls/wineps/Makefile
1644 dlls/wininet/Makefile
1645 dlls/wininet/tests/Makefile
1646 dlls/winmm/Makefile
1647 dlls/winmm/joystick/Makefile
1648 dlls/winmm/mcianim/Makefile
1649 dlls/winmm/mciavi/Makefile
1650 dlls/winmm/mcicda/Makefile
1651 dlls/winmm/mciseq/Makefile
1652 dlls/winmm/mciwave/Makefile
1653 dlls/winmm/midimap/Makefile
1654 dlls/winmm/tests/Makefile
1655 dlls/winmm/wavemap/Makefile
1656 dlls/winmm/winealsa/Makefile
1657 dlls/winmm/winearts/Makefile
1658 dlls/winmm/wineaudioio/Makefile
1659 dlls/winmm/winejack/Makefile
1660 dlls/winmm/winenas/Makefile
1661 dlls/winmm/wineoss/Makefile
1662 dlls/winnls/Makefile
1663 dlls/winsock/Makefile
1664 dlls/winsock/tests/Makefile
1665 dlls/winspool/Makefile
1666 dlls/winspool/tests/Makefile
1667 dlls/wintab32/Makefile
1668 dlls/wintrust/Makefile
1669 dlls/wow32/Makefile
1670 dlls/wsock32/Makefile
1671 dlls/x11drv/Makefile
1672 documentation/Makefile
1673 include/Makefile
1674 libs/Makefile
1675 libs/port/Makefile
1676 libs/unicode/Makefile
1677 libs/wine/Makefile
1678 libs/wpp/Makefile
1679 loader/Makefile
1680 programs/Makefile
1681 programs/avitools/Makefile
1682 programs/clock/Makefile
1683 programs/cmdlgtst/Makefile
1684 programs/control/Makefile
1685 programs/expand/Makefile
1686 programs/notepad/Makefile
1687 programs/progman/Makefile
1688 programs/regedit/Makefile
1689 programs/regsvr32/Makefile
1690 programs/rpcss/Makefile
1691 programs/rundll32/Makefile
1692 programs/start/Makefile
1693 programs/taskmgr/Makefile
1694 programs/uninstaller/Makefile
1695 programs/view/Makefile
1696 programs/wcmd/Makefile
1697 programs/wineboot/Makefile
1698 programs/winebrowser/Makefile
1699 programs/winecfg/Makefile
1700 programs/wineconsole/Makefile
1701 programs/winedbg/Makefile
1702 programs/winefile/Makefile
1703 programs/winemenubuilder/Makefile
1704 programs/winemine/Makefile
1705 programs/winepath/Makefile
1706 programs/winetest/Makefile
1707 programs/winevdm/Makefile
1708 programs/winhelp/Makefile
1709 programs/winver/Makefile
1710 server/Makefile
1711 tools/Makefile
1712 tools/widl/Makefile
1713 tools/winapi/Makefile
1714 tools/winebuild/Makefile
1715 tools/winedump/Makefile
1716 tools/winegcc/Makefile
1717 tools/wmc/Makefile
1718 tools/wrc/Makefile])
1720 AC_OUTPUT
1722 if test "$have_x" = "no"
1723 then
1724   echo
1725   echo "*** Warning: X development files not found. Wine will be built without"
1726   echo "*** X support, which currently does not work, and would probably not be"
1727   echo "*** what you want anyway. You will need to install devel packages of"
1728   echo "*** Xlib/Xfree86 at the very least."
1731 if test "$wine_cv_opengl_version_OK" = "no"
1732 then
1733   echo
1734   echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
1735   echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)."
1738 if test "$wine_cv_msg_freetype" = "yes"
1739 then
1740   echo
1741   echo "*** Note: Your system appears to have the FreeType 2 runtime libraries"
1742   echo "*** installed, but 'freetype-config' is not in your PATH. Install the"
1743   echo "*** freetype-devel package (or its equivalent on your distribution) to"
1744   echo "*** enable Wine to use TrueType fonts."
1747 echo
1748 echo "Configure finished.  Do 'make depend && make' to compile Wine."
1749 echo
1751 dnl Local Variables:
1752 dnl comment-start: "dnl "
1753 dnl comment-end: ""
1754 dnl comment-start-skip: "\\bdnl\\b\\s *"
1755 dnl compile-command: "autoconf"
1756 dnl End: