Implementation of IDirectSound3DListenerImpl_Set*().
[wine/multimedia.git] / configure.ac
blobb3cfe9b5283bacdc986c5df5b117e0789fdb89a0
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)
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(OPTIONS)
24 AC_SUBST(WIN16_FILES,"\$(WIN16_FILES)")
25 AC_SUBST(WIN16_INSTALL,"\$(WIN16_INSTALL)")
26 if test "x$enable_win16" = "xno"
27 then
28   WIN16_FILES=""
29   WIN16_INSTALL=""
31 if test "x$enable_debug" = "xno"
32 then
33     AC_DEFINE(NO_DEBUG_MSGS,1,[Define to disable all debug messages.])
35 if test "x$enable_trace" = "xno" -o "x$enable_debug" = "xno"
36 then
37     AC_DEFINE(NO_TRACE_MSGS,1,[Define to disable trace messages.])
40 dnl **** Check for some programs ****
42 AC_CANONICAL_HOST
43 AC_PROG_MAKE_SET
44 AC_PROG_CC
45 AC_PROG_CPP
47 AC_CACHE_CHECK([for the directory containing the Wine tools], wine_cv_toolsdir,
48   [if test -z "$with_wine_tools"; then
49      if test "$cross_compiling" = "yes"; then
50        AC_MSG_ERROR([you must use the --with-wine-tools option when cross-compiling.])
51      else
52        wine_cv_toolsdir="\$(TOPOBJDIR)"
53      fi
54    elif test -d "$with_wine_tools/tools/winebuild"; then
55      case $with_wine_tools in
56        /*) wine_cv_toolsdir="$with_wine_tools" ;;
57        *)  wine_cv_toolsdir="\$(TOPOBJDIR)/$with_wine_tools" ;;
58      esac
59    else
60      AC_MSG_ERROR([could not find Wine tools in $with_wine_tools.])
61    fi])
62 AC_SUBST(TOOLSDIR,$wine_cv_toolsdir)
64 AC_PATH_XTRA
65 AC_PROG_YACC
66 AC_PROG_LEX
68 dnl **** Just additional warning checks, since AC_PROG just sets 'yacc' even
69 dnl **** without one present.
70 AC_CHECK_PROGS(XYACC,$YACC bison yacc,none)
71 if test "$XYACC" = "none"
72 then
73   AC_MSG_ERROR([no suitable bison/yacc found. Please install the 'bison' package.])
75 AC_CHECK_PROGS(XLEX,$LEX flex lex,none)
76 if test "$XLEX" = "none"
77 then
78   AC_MSG_ERROR([no suitable lex found. Please install the 'flex' package.])
81 AC_CHECK_TOOL(LD,ld,ld)
82 AC_CHECK_TOOL(AR,ar,ar)
83 AC_PROG_RANLIB
84 AC_CHECK_TOOL(STRIP,strip,strip)
85 AC_CHECK_TOOL(WINDRES,windres,false)
86 AC_PROG_INSTALL
87 AC_PROG_LN_S
88 WINE_PROG_LN
89 AC_CHECK_PROG(C2MAN,c2man,c2man,\$(TOPSRCDIR)/tools/c2man.pl)
90 AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH])
92 dnl Check for lint
93 AC_CHECK_PROGS(LINT, lclint lint)
94 if test "$LINT" = "lint"
95 then
96   LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4"
97   dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64'
99 AC_SUBST(LINT)
100 AC_SUBST(LINTFLAGS)
102 dnl Check for db2html
103 AC_CHECK_PROGS(DB2HTML, docbook2html db2html, false)
104 AC_SUBST(DB2HTML)
106 dnl Check for db2pdf
107 AC_CHECK_PROGS(DB2PDF, docbook2pdf db2pdf, false)
108 AC_SUBST(DB2PDF)
110 dnl Check for db2ps
111 AC_CHECK_PROGS(DB2PS, docbook2ps db2ps, false)
112 AC_SUBST(DB2PS)
114 dnl **** Check for some libraries ****
116 dnl Check for -lm
117 AC_CHECK_LIB(m,sqrt)
118 dnl Check for -li386 for NetBSD and OpenBSD
119 AC_CHECK_LIB(i386,i386_set_ldt)
120 dnl Check for -lossaudio for NetBSD
121 AC_CHECK_LIB(ossaudio,_oss_ioctl)
122 dnl Check for -lw for Solaris
123 AC_CHECK_FUNCS(iswalnum,,AC_CHECK_LIB(w,iswalnum))
124 dnl Check for -lnsl for Solaris
125 AC_CHECK_FUNCS(gethostbyname,,AC_CHECK_LIB(nsl,gethostbyname))
126 dnl Check for -lsocket for Solaris
127 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
128 dnl Check for -lresolv for Solaris
129 AC_CHECK_FUNCS(inet_aton,,AC_CHECK_LIB(resolv,inet_aton))
130 dnl Check for -lxpg4 for FreeBSD
131 AC_CHECK_LIB(xpg4,_xpg4_setrunelocale)
132 dnl Check for -lmmap for OS/2
133 AC_CHECK_LIB(mmap,mmap)
135 JPEGLIB=""
136 AC_SUBST(JPEGLIB)
137 AC_CHECK_HEADERS(jpeglib.h,
138     AC_CHECK_LIB(jpeg,jpeg_start_decompress,
139         AC_DEFINE(HAVE_LIBJPEG,1,[Define if you have libjpeg including devel headers])
140         JPEGLIB="-ljpeg"
141     )
145 AC_SUBST(XLIB)
146 AC_SUBST(XFILES)
147 XFILES=""
148 AC_SUBST(OPENGLFILES)
149 OPENGLFILES=""
150 AC_SUBST(GLU32FILES)
151 GLU32FILES=""
152 AC_SUBST(OPENGL_LIBS)
153 OPENGL_LIBS=""
154 if test "$have_x" = "yes"
155 then
156     XLIB="-lXext -lX11"
157     ac_save_CPPFLAGS="$CPPFLAGS"
158     CPPFLAGS="$CPPFLAGS $X_CFLAGS"
160     dnl *** All of the following tests require X11/Xlib.h
161     AC_CHECK_HEADERS(X11/Xlib.h,
162       [
163         dnl *** Check for X keyboard extension
164         AC_CHECK_HEADERS(X11/XKBlib.h,
165             [ dnl *** If X11/XKBlib.h exists...
166               AC_CHECK_LIB(X11, XkbQueryExtension,
167               AC_DEFINE(HAVE_XKB, 1, [Define if you have the XKB extension]),,
168               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
169             ],
170             AC_MSG_WARN([[Xkb extension not found, Wine will be built without it]]),
171             [#include <X11/Xlib.h>])
173         dnl *** Check for X Shm extension
174         AC_CHECK_HEADERS(X11/extensions/XShm.h,
175             [ dnl *** If X11/extensions/XShm.h exists...
176               AC_CHECK_LIB(Xext, XShmQueryExtension,
177               AC_DEFINE(HAVE_LIBXXSHM, 1, [Define if you have the X Shm extension]),,
178               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
179             ],
180             AC_MSG_WARN([[XShm extension not found, Wine will be built without it]]),
181             [#include <X11/Xlib.h>])
183         dnl *** Check for Xutil
184         AC_CHECK_HEADERS(X11/Xutil.h,,,
185             [#include <X11/Xlib.h>])
187         dnl *** Check for X shape extension
188         AC_CHECK_HEADERS(X11/extensions/shape.h,
189             [ dnl *** If X11/extensions/shape.h exists...
190               AC_CHECK_LIB(Xext,XShapeQueryExtension,
191               AC_DEFINE(HAVE_LIBXSHAPE, 1, [Define if you have the X Shape extension]),,
192               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
193             ],
194             AC_MSG_WARN([[XShape extension not found, Wine will be built without it]]),
195             [#include <X11/Xlib.h>
196              #ifdef HAVE_X11_XUTIL_H
197              # include <X11/Xutil.h>
198              #endif])
200         dnl *** Check for XFree86 DGA / DGA 2.0 extension
201         AC_CHECK_HEADERS(X11/extensions/xf86dga.h,
202             [ dnl *** If X11/extensions/xf86dga.h exists, check
203               dnl *** for XDGAQueryExtension()...
204               AC_CHECK_LIB(Xxf86dga, XDGAQueryExtension,
205                 [ dnl *** If found...
206                   AC_DEFINE(HAVE_LIBXXF86DGA2, 1,
207                             [Define if you have the Xxf86dga library version 2])
208                   X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
209                ],
210                 [ dnl *** If not found, look for XF86DGAQueryExtension()
211                   dnl *** instead (DGA 2.0 not found)...
212                   AC_CHECK_LIB(Xxf86dga, XF86DGAQueryExtension,
213                     [ AC_DEFINE(HAVE_LIBXXF86DGA, 1,
214                                 [Define if you have the Xxf86dga library version 1])
215                       X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
216                     ],,
217                     $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
218                   )
219                 ],
220                 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
221               )
222             ],
223             AC_MSG_WARN([[DGA extension not found, Wine will be built without it]]),
224             [#include <X11/Xlib.h>])
226         dnl *** Check for XFree86 VMODE extension
227         AC_CHECK_HEADERS(X11/extensions/xf86vmode.h,
228             [ dnl *** If X11/extensions/xf86vmode.h exists...
229                 AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension,
230                   [ AC_DEFINE(HAVE_LIBXXF86VM, 1, [Define if you have the Xxf86vm library])
231                      X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm"
232                   ],,
233                   $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
234                 )
235             ],
236             AC_MSG_WARN([[XFree86 VMODE extension not found, Wine will be built without it]]),
237             [#include <X11/Xlib.h>])
239         dnl *** Check for XVideo extension supporting XvImages
240         AC_CHECK_HEADERS(X11/extensions/Xvlib.h,
241             [ dnl *** If X11/extensions/Xvlib.h exists...
242                 AC_CHECK_LIB(Xv, XvShmCreateImage,
243                   [ AC_DEFINE(HAVE_XVIDEO, 1, [Define if the X libraries support XVideo])
244                      X_PRE_LIBS="$X_PRE_LIBS -lXv"
245                   ],,
246                   $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
247                 )
248             ],
249             AC_MSG_WARN([[XVideo extension not found, Wine will be built without it]]),
250             [#include <X11/Xlib.h>])
252         dnl *** Check for XRender include file
253         AC_CHECK_HEADERS(X11/extensions/Xrender.h,,,[#include <X11/Xlib.h>])
254       ]
255     ) dnl *** End of X11/Xlib.h check
257     dnl Check for the presence of OpenGL
258     if test "x$with_opengl" != "xno"
259     then
260         if test -f /usr/X11R6/lib/libGL.a -a ! -f /usr/X11R6/lib/libGL.so
261         then
262             AC_MSG_ERROR([/usr/X11R6/lib/libGL.a is present on your system.
263 This prevents linking to OpenGL. Delete the file and restart configure.])
264         fi
266         AC_CHECK_HEADERS(GL/gl.h GL/glx.h)
267         if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_glx_h" = "yes"
268         then
269             AC_CHECK_HEADERS(GL/glext.h,,,[#include <GL/glx.h>])
270             dnl Check for some problems due to old Mesa versions
271             AC_CACHE_CHECK([for up-to-date OpenGL version], wine_cv_opengl_version_OK,
272               AC_TRY_COMPILE(
273                 [#include <GL/gl.h>],
274                 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
275                 [wine_cv_opengl_version_OK="yes"],
276                 [wine_cv_opengl_version_OK="no"]
277               )
278             )
280             if test "$wine_cv_opengl_version_OK" = "yes"
281             then
282                 dnl Check for the presence of the library
283                 AC_CHECK_LIB(GL,glXCreateContext,
284                              OPENGL_LIBS="-lGL"
285                              ,,
286                              $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
288                 if test "$ac_cv_lib_GL_glXCreateContext" = "yes"
289                 then
290                         OPENGLFILES='$(OPENGLFILES)'
291                         AC_DEFINE(HAVE_OPENGL, 1, [Define if OpenGL is present on the system])
293                         AC_CHECK_LIB(GL,glXGetProcAddressARB,
294                                      AC_DEFINE(HAVE_GLX_GETPROCADDRESS, 1,
295                                                [Define if the OpenGL library supports the glXGetProcAddressARB call]),,
296                                      $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
298                         if test "$ac_cv_lib_GL_glXGetProcAddressARB" = "yes"
299                         then
300                                AC_CACHE_CHECK([for OpenGL extension functions prototypes], wine_cv_extension_prototypes,
301                                   [AC_TRY_COMPILE([#include <GL/gl.h>
302                                                   #ifdef HAVE_GL_GLEXT_H
303                                                   # include <GL/glext.h>
304                                                   #endif
305                                                   ],
306                                                  [PFNGLCOLORTABLEEXTPROC test_proc;],
307                                                  [wine_cv_extension_prototypes="yes"],
308                                                  [wine_cv_extension_prototypes="no"]
309                                   )]
310                                 )
311                                 if test "$wine_cv_extension_prototypes" = "yes"
312                                 then
313                                     AC_DEFINE(HAVE_GLEXT_PROTOTYPES, 1,
314                                               [Define if the OpenGL headers define extension typedefs])
315                                 fi
316                         fi
318                 fi
319                 dnl Check for GLU32 library.
320                 AC_CHECK_LIB(GLU,gluLookAt,
321                              [OPENGL_LIBS="$OPENGL_LIBS -lGLU"
322                              GLU32FILES='$(GLU32FILES)']
323                              ,,
324                              $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS
325                 )
326              fi
327          fi
328     fi
330     dnl **** Check for NAS ****
331     AC_SUBST(NASLIBS,"")
332     AC_CHECK_HEADERS(audio/audiolib.h,
333          [AC_CHECK_HEADERS(audio/soundlib.h,,,[#include <audio/audiolib.h>])
334           AC_CHECK_LIB(audio,AuCreateFlow,
335                        [AC_DEFINE(HAVE_NAS,1,[Define if you have NAS including devel headers])
336                         NASLIBS="-laudio -lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS"],,
337                        [-lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS])])
339     CPPFLAGS="$ac_save_CPPFLAGS"
340     XFILES='$(XFILES)'
341 else
342     XLIB=""
343     X_CFLAGS=""
344     X_LIBS=""
347 dnl **** Check which curses lib to use ***
348 CURSESLIBS=""
349 if test "x$with_curses" != "xno"
350 then
351     AC_CHECK_HEADERS(ncurses.h,
352         [AC_CHECK_LIB(ncurses,waddch,
353             [AC_DEFINE(HAVE_LIBNCURSES, 1, [Define if you have the ncurses library (-lncurses)])
354              CURSESLIBS="-lncurses"],
355              [AC_CHECK_HEADERS(curses.h,
356                  [AC_CHECK_LIB(curses,waddch,
357                      [AC_DEFINE(HAVE_LIBCURSES, 1, [Define if you have the curses library (-lcurses)])
358                       CURSESLIBS="-lcurses"])])])])
359     saved_libs="$LIBS"
360     LIBS="$CURSESLIBS $LIBS"
361     AC_CHECK_FUNCS(getbkgd resizeterm)
362     LIBS="$saved_libs"
364 AC_SUBST(CURSESLIBS)
366 dnl **** Check for SANE ****
367 AC_CHECK_PROG(sane_devel,sane-config,sane-config,no)
368 if test "$sane_devel" = "no"
369 then
370     SANELIBS=""
371     SANEINCL=""
372 else
373     SANELIBS="`$sane_devel --libs`"
374     SANEINCL="`$sane_devel --cflags`"
375     ac_save_CPPFLAGS="$CPPFLAGS"
376     ac_save_LIBS="$LIBS"
377     CPPFLAGS="$CPPFLAGS $SANEINCL"
378     LIBS="$LIBS $SANELIBS"
379     AC_CHECK_HEADER(sane/sane.h,
380                     [AC_CHECK_LIB(sane,sane_open,
381                                   [AC_DEFINE(HAVE_SANE, 1, [Define if we have SANE development environment])],
382                                   [SANELIBS=""
383                                   SANEINCL=""])],
384                     [SANELIBS=""
385                     SANEINCL=""])
386     LIBS="$ac_save_LIBS"
387     CPPFLAGS="$ac_save_CPPFLAGS"
389 AC_SUBST(SANELIBS)
390 AC_SUBST(SANEINCL)
392 dnl **** Check for FreeType 2 ****
393 AC_CHECK_LIB(freetype,FT_Init_FreeType,ft_lib=yes,ft_lib=no,$X_LIBS)
394 if test "$ft_lib" = "no"
395 then
396     FREETYPEINCL=""
397     wine_cv_msg_freetype=no
398 else
399     AC_CHECK_PROG(ft_devel,freetype-config,freetype-config,no)
400     if test "$ft_devel" = "no"
401     then
402         AC_CHECK_PROG(ft_devel2,freetype2-config,freetype2-config,no)
403         if test "$ft_devel2" = "freetype2-config"
404         then
405                 ft_devel=$ft_devel2
406         fi
407     fi
408     if test "$ft_devel" = "no"
409     then
410         FREETYPEINCL=""
411         wine_cv_msg_freetype=yes
412     else
413         FREETYPEINCL=`$ft_devel --cflags`
414         ac_save_CPPFLAGS="$CPPFLAGS"
415         CPPFLAGS="$FREETYPEINCL $CPPFLAGS"
416         AC_CHECK_HEADERS(freetype/freetype.h \
417                          freetype/ftglyph.h \
418                          freetype/tttables.h \
419                          freetype/ftnames.h \
420                          freetype/ftsnames.h \
421                          freetype/ttnameid.h \
422                          freetype/ftoutln.h \
423                          freetype/internal/sfnt.h)
424         AC_TRY_CPP([#include <ft2build.h>
425                     #include <freetype/fttrigon.h>],
426                     [AC_DEFINE(HAVE_FREETYPE_FTTRIGON_H, 1,
427           [Define if you have the <freetype/fttrigon.h> header file.])
428                     wine_cv_fttrigon=yes],
429                     wine_cv_fttrigon=no)
430         CPPFLAGS="$ac_save_CPPFLAGS"
431         dnl Check that we have at least freetype/freetype.h
432         if test "$ac_cv_header_freetype_freetype_h" = "yes" -a "$wine_cv_fttrigon" = "yes"
433         then
434             AC_DEFINE(HAVE_FREETYPE, 1, [Define if FreeType 2 is installed])
435             wine_cv_msg_freetype=no
436         else
437             FREETYPEINCL=""
438             wine_cv_msg_freetype=yes
439         fi
440     fi
442 AC_SUBST(FREETYPEINCL)
444 dnl **** Check for parport (currently Linux only) ****
445 AC_CACHE_CHECK([for parport header/ppdev.h], ac_cv_c_ppdev,
446  AC_TRY_COMPILE(
447    [#include <linux/ppdev.h>],
448    [ioctl (1,PPCLAIM,0)],
449    [ac_cv_c_ppdev="yes"],
450    [ac_cv_c_ppdev="no"])
452 if test "$ac_cv_c_ppdev" = "yes"
453 then
454     AC_DEFINE(HAVE_PPDEV, 1, [Define if we can use ppdev.h for parallel port access])
457 dnl **** Check for va_copy ****
458 AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
459  AC_TRY_LINK(
460    [#include <stdarg.h>],
461    [va_list ap1, ap2;
462     va_copy(ap1,ap2);
463    ],
464    [ac_cv_c_va_copy="yes"],
465    [ac_cv_c_va_copy="no"])
467 if test "$ac_cv_c_va_copy" = "yes"
468 then
469     AC_DEFINE(HAVE_VA_COPY, 1, [Define if we have va_copy])
471 AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy,
472  AC_TRY_LINK(
473    [#include <stdarg.h>],
474    [va_list ap1, ap2;
475     __va_copy(ap1,ap2);
476    ],
477    [ac_cv_c___va_copy="yes"],
478    [ac_cv_c___va_copy="no"])
480 if test "$ac_cv_c___va_copy" = "yes"
481 then
482     AC_DEFINE(HAVE___VA_COPY, 1, [Define if we have __va_copy])
485 dnl **** Check for IPX (currently Linux only) ****
486 AC_CACHE_CHECK([for GNU style IPX support], ac_cv_c_ipx_gnu,
487  AC_TRY_COMPILE(
488    [#include <sys/types.h>
489     #ifdef HAVE_SYS_SOCKET_H
490     # include <sys/socket.h>
491     #endif
492     #include <netipx/ipx.h>],
493    [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
494    [ac_cv_c_ipx_gnu="yes"],
495    [ac_cv_c_ipx_gnu="no"])
497 if test "$ac_cv_c_ipx_gnu" = "yes"
498 then
499     AC_DEFINE(HAVE_IPX_GNU, 1, [Define if IPX should use netipx/ipx.h from libc])
502 if test "$ac_cv_c_ipx_gnu" = "no"
503 then
504  AC_CACHE_CHECK([for linux style IPX support], ac_cv_c_ipx_linux,
505   AC_TRY_COMPILE(
506     [#include <sys/types.h>
507      #ifdef HAVE_SYS_SOCKET_H
508      # include <sys/socket.h>
509      #endif
510      #include <asm/types.h>
511      #include <linux/ipx.h>],
512     [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
513     [ac_cv_c_ipx_linux="yes"],
514     [ac_cv_c_ipx_linux="no"])
515   )
516   if test "$ac_cv_c_ipx_linux" = "yes"
517   then
518       AC_DEFINE(HAVE_IPX_LINUX, 1, [Define if IPX includes are taken from Linux kernel])
519   fi
522 dnl **** Check for Open Sound System ****
523 AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h soundcard.h, break)
525 AC_CACHE_CHECK([for Open Sound System],
526         ac_cv_c_opensoundsystem,
527         AC_TRY_COMPILE([
528         #if defined(HAVE_SYS_SOUNDCARD_H)
529                 #include <sys/soundcard.h>
530         #elif defined(HAVE_MACHINE_SOUNDCARD_H)
531                 #include <machine/soundcard.h>
532         #elif defined(HAVE_SOUNDCARD_H)
533                 #include <soundcard.h>
534         #endif
535         ],[
537 /* check for one of the Open Sound System specific SNDCTL_ defines */
538 #if !defined(SNDCTL_DSP_STEREO)
539 #error No open sound system
540 #endif
541 ],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no"))
543 if test "$ac_cv_c_opensoundsystem" = "yes"
544 then
545     AC_DEFINE(HAVE_OSS, 1, [Define if you have the Open Sound system])
548 AC_CACHE_CHECK([for Open Sound System/MIDI interface],
549         ac_cv_c_opensoundsystem_midi,
550         AC_TRY_COMPILE([
551         #if defined(HAVE_SYS_SOUNDCARD_H)
552                 #include <sys/soundcard.h>
553         #elif defined(HAVE_MACHINE_SOUNDCARD_H)
554                 #include <machine/soundcard.h>
555         #elif defined(HAVE_SOUNDCARD_H)
556                 #include <soundcard.h>
557         #endif
558         ],[
560 /* check for one of the Open Sound System specific SNDCTL_SEQ defines */
561 #if !defined(SNDCTL_SEQ_SYNC)
562 #error No open sound system MIDI interface
563 #endif
564 ],ac_cv_c_opensoundsystem_midi="yes",ac_cv_c_opensoundsystem_midi="no"))
566 if test "$ac_cv_c_opensoundsystem_midi" = "yes"
567 then
568     AC_DEFINE(HAVE_OSS_MIDI, 1, [Define if you have the Open Sound system (MIDI interface)])
571 dnl **** Check for aRts Sound Server ****
572 AC_PATH_PROG(ARTSCCONFIG, artsc-config)
573 AC_CACHE_CHECK([for aRts Sound server],
574         ac_cv_c_artsserver,
575         if test x$ARTSCCONFIG = x -o x$ARTSCCONFIG = x'"$ARTSCCONFIG"';
576         then
577             ac_cv_c_artsserver=no
578         else
579             ARTSC_CFLAGS=`$ARTSCCONFIG --cflags`
580             ARTSC_LIBS=`$ARTSCCONFIG --libs`
581             ac_cv_c_artsserver=no
582             save_CFLAGS="$CFLAGS"
583             CFLAGS="$CFLAGS $ARTSC_CFLAGS"
584             AC_TRY_COMPILE([
585              #include <artsc.h>
586             ],[
587              arts_stream_t stream;
588             ],[
589             ac_cv_c_artsserver=yes
590             ])
591             CFLAGS="$save_CFLAGS"
592         fi)
594 if test "$ac_cv_c_artsserver" = "yes"
595 then
596     AC_SUBST(ARTSLIBS, $ARTSC_LIBS)
597     AC_SUBST(ARTSINCL, $ARTSC_CFLAGS)
599     AC_DEFINE(HAVE_ARTS, 1, [Define if you have ARTS sound server])
602 dnl **** Check for ALSA ****
603 AC_SUBST(ALSALIBS,"")
604 AC_CHECK_HEADERS(alsa/asoundlib.h sys/asoundlib.h, break)
605 if test "$ac_cv_header_sys_asoundlib_h" = "yes" -o "$ac_cv_header_alsa_asoundlib_h" = "yes"
606 then
607     AC_CHECK_LIB(asound,snd_pcm_open,
608         AC_DEFINE(HAVE_ALSA,1,[Define if you have ALSA including devel headers])
609         ALSALIBS="-lasound")
612 dnl **** Check for libaudioio (which can be used to get solaris audio support) ****
614 AC_SUBST(AUDIOIOLIBS,"")
615 AC_CHECK_HEADERS(libaudioio.h,
616     [AC_CHECK_LIB(audioio,AudioIOGetVersion,
617                   [AUDIOIOLIBS="-laudioio"
618                    AC_DEFINE(HAVE_LIBAUDIOIO, 1, [Define if you have libaudioIO])])])
620 dnl **** Check for broken glibc mmap64 ****
622 AC_CACHE_CHECK( [whether mmap64 works defined as mmap], ac_cv_mmap64_works,
623         AC_TRY_RUN([
624                 #define _FILE_OFFSET_BITS 64
625                 #include <stdio.h>
626                 #include <unistd.h>
627                 #include <fcntl.h>
628                 #include <sys/mman.h>
629                 #include <errno.h>
631                 int main(int argc,char **argv) {
632                         int fd = open("conftest.map",O_CREAT|O_RDWR,0600);
633                         if (fd == -1) exit(1);
635                         unlink("conftest.map");
637                         write(fd,"test",4);
639                         if ((-1 == mmap(0,4,PROT_READ|PROT_WRITE,MAP_SHARED,fd,0)) &&
640                             (errno == EINVAL)
641                         ) {
642                                 exit(1);
643                         }
644                         close(fd);
645                         fprintf(stderr,"success!\n");
646                         exit(0);
647                 }
649         ],
650     ac_cv_mmap64_works="yes",
651     ac_cv_mmap64_works="no",
652     ac_cv_mmap64_works="no") )
654 if test "$ac_cv_mmap64_works" = "yes"
655 then
656     AC_DEFINE(_FILE_OFFSET_BITS, 64, [Set this to 64 to enable 64-bit file support on Linux])
659 dnl **** Check for gcc strength-reduce bug ****
661 if test "x${GCC}" = "xyes"
662 then
663   CFLAGS="$CFLAGS -Wall"
664   AC_CACHE_CHECK( [for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug,
665                   AC_TRY_RUN([
666 int     L[[4]] = {0,1,2,3};
667 int main(void) {
668   static int Array[[3]];
669   unsigned int B = 3;
670   int i;
671   for(i=0; i<B; i++) Array[[i]] = i - 3;
672   for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]];
673   L[[i]] = 4;
675   exit( Array[[1]] != -2 || L[[2]] != 3);
677     ac_cv_c_gcc_strength_bug="no",
678     ac_cv_c_gcc_strength_bug="yes",
679     ac_cv_c_gcc_strength_bug="yes") )
680   if test "$ac_cv_c_gcc_strength_bug" = "yes"
681   then
682     CFLAGS="$CFLAGS -fno-strength-reduce"
683   fi
685   dnl Check for -mpreferred-stack-boundary
686   AC_CACHE_CHECK([for gcc -mpreferred-stack-boundary=2 support], ac_cv_c_gcc_stack_boundary,
687       [WINE_TRY_CFLAGS([-mpreferred-stack-boundary=2],
688                       ac_cv_c_gcc_stack_boundary="yes",ac_cv_c_gcc_stack_boundary="no")])
689   if test "$ac_cv_c_gcc_stack_boundary" = "yes"
690   then
691     CFLAGS="$CFLAGS -mpreferred-stack-boundary=2"
692   fi
695 dnl **** Check how to define a function in assembly code ****
697 AC_CACHE_CHECK([how to define a function in assembly code], ac_cv_asm_func_def,
698   WINE_TRY_ASM_LINK(
699       ["\t.globl _ac_test\n\t.def _ac_test; .scl 2; .type 32; .endef\n_ac_test:\t.long 0"],,,
700       ac_cv_asm_func_def=".def",
701     [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,@function\n_ac_test:\t.long 0"],,,
702       ac_cv_asm_func_def=".type @function",
703     [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,2\n_ac_test:\t.long 0"],,,
704       ac_cv_asm_func_def=".type 2",
705       ac_cv_asm_func_def="unknown")])]))
707 AH_TEMPLATE(__ASM_FUNC,[Define to a macro to generate an assembly function directive])
708 case "$ac_cv_asm_func_def" in
709   ".def")
710      AC_DEFINE([__ASM_FUNC(name)], [".def " __ASM_NAME(name) "; .scl 2; .type 32; .endef"]) ;;
711   ".type @function")
712      AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",@function"]) ;;
713   ".type 2")
714      AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",2"]) ;;
715   *)
716      AC_DEFINE([__ASM_FUNC(name)], [""]) ;;
717 esac
719 dnl **** Check for underscore on external symbols ****
721 AC_CACHE_CHECK([whether external symbols need an underscore prefix], ac_cv_c_extern_prefix,
722     WINE_TRY_ASM_LINK([".globl _ac_test\n_ac_test:\t.long 0"],
723                       [extern int ac_test;],
724                       [if (ac_test) return 1],
725                       ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no"))
727 AH_TEMPLATE(__ASM_NAME,[Define to a macro to generate an assembly name from a C symbol])
728 if test "$ac_cv_c_extern_prefix" = "yes"
729 then
730   AC_DEFINE([__ASM_NAME(name)], ["_" name])
731 else
732   AC_DEFINE([__ASM_NAME(name)], [name])
735 dnl **** Check for .string in assembler ****
737 AC_CACHE_CHECK([whether assembler accepts .string], ac_cv_c_asm_string,
738     WINE_TRY_ASM_LINK([".data\n\t.string \"test\"\n\t.text"],,,
739                       ac_cv_c_asm_string="yes",ac_cv_c_asm_string="no"))
740 if test "$ac_cv_c_asm_string" = "yes"
741 then
742   AC_DEFINE(HAVE_ASM_STRING, 1, [Define to use .string instead of .ascii])
745 dnl **** Check for working dll ****
747 AC_SUBST(DLLEXT,"")
748 AC_SUBST(DLLFLAGS,"")
749 AC_SUBST(DLLIBS,"")
750 AC_SUBST(LDDLLFLAGS,"")
751 AC_SUBST(LDSHARED,"")
752 AC_SUBST(LIBEXT,"so")
753 AC_SUBST(IMPLIBEXT,"def")
755 case $host_os in
756   cygwin*|mingw32*)
757     AC_CHECK_TOOL(DLLTOOL,dlltool,false)
758     AC_CHECK_TOOL(DLLWRAP,dllwrap,false)
759     if test "$DLLWRAP" = "false"; then
760       LIBEXT="a"
761     else
762       dnl FIXME - check whether dllwrap works correctly...
763       LIBEXT="dll"
764     fi
765     IMPLIBEXT="a"
766     ;;
767   *)
768     AC_CHECK_HEADERS(dlfcn.h,
769         [AC_CHECK_FUNCS(dlopen,,
770             [AC_CHECK_LIB(dl,dlopen,
771                          [AC_DEFINE(HAVE_DLOPEN,1,[Define if you have dlopen])
772                           DLLIBS="-ldl"],
773                          [LIBEXT="a"])])],
774         [LIBEXT="a"])
776     if test "$LIBEXT" = "so"
777     then
778       DLLFLAGS="-fPIC"
779       DLLEXT=".so"
780       AC_CACHE_CHECK([whether we can build a GNU style ELF dll], ac_cv_c_dll_gnuelf,
781           [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic],
782                            ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")])
783       if test "$ac_cv_c_dll_gnuelf" = "yes"
784       then
785         LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)"
786         LDDLLFLAGS="-Wl,-Bsymbolic"
787         AC_CACHE_CHECK([whether the linker accepts -z defs], ac_cv_c_dll_zdefs,
788           [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-Bsymbolic,-z,defs],
789                            ac_cv_c_dll_zdefs="yes",ac_cv_c_dll_zdefs="no")])
790         if test "$ac_cv_c_dll_zdefs" = "yes"
791         then
792           LDDLLFLAGS="$LDDLLFLAGS,-z,defs"
793         fi
794       else
795         AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll, ac_cv_c_dll_unixware,
796             [WINE_TRY_CFLAGS([-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic],
797                              ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")])
798         if test "$ac_cv_c_dll_unixware" = "yes"
799         then
800           LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,%)"
801           LDDLLFLAGS="-Wl,-B,symbolic"
802         fi
803       fi
804     fi
806     dnl Check for cross compiler to build test programs
807     AC_SUBST(CROSSTEST,"")
808     if test "$cross_compiling" = "no"
809     then
810       AC_CHECK_PROGS(CROSSCC,i586-mingw32msvc-gcc,false)
811       AC_CHECK_PROGS(DLLTOOL,i586-mingw32msvc-dlltool,false)
812       if test "$CROSSCC" != "false"; then CROSSTEST="\$(CROSSTEST)"; fi
813     fi
814     ;;
815 esac
817 if test "$LIBEXT" = "a"; then
818   AC_MSG_ERROR(
819 [could not find a way to build shared libraries.
820 It is currently not possible to build Wine without shared library
821 (.so) support to allow transparent switch between .so and .dll files.
822 If you are using Linux, you will need a newer binutils.]
826 case $build_os in
827   cygwin*|mingw32*)
828     AC_SUBST(LDPATH,"PATH=\"\$(TOOLSDIR)/library:\$(TOOLSDIR)/unicode:\$\$PATH\"") ;;
829   *)
830     AC_SUBST(LDPATH,"LD_LIBRARY_PATH=\"\$(TOOLSDIR)/library:\$(TOOLSDIR)/unicode:\$\$LD_LIBRARY_PATH\"") ;;
831 esac
833 dnl Mingw needs explicit msvcrt for linking libwine
834 AC_SUBST(CRTLIBS,"")
835 case $host_os in
836   mingw32*)
837     CRTLIBS="-lmsvcrt" ;;
838 esac
840 dnl **** Get the soname for libraries that we load dynamically ****
842 if test "$LIBEXT" = "so"
843 then
844   WINE_GET_SONAME(X11,XCreateWindow,[$X_LIBS $X_EXTRA_LIBS])
845   WINE_GET_SONAME(Xext,XextCreateExtension,[$X_LIBS -lX11 $X_EXTRA_LIBS])
846   WINE_GET_SONAME(Xrender,XRenderQueryExtension,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])
847   WINE_GET_SONAME(freetype,FT_Init_FreeType,[$X_LIBS])
848   WINE_GET_SONAME(GL,glXQueryExtension,[$X_LIBS $X_EXTRA_LIBS])
849   WINE_GET_SONAME(cups,cupsGetDefault)
850   WINE_GET_SONAME(jack,jack_client_new)
854 dnl **** Check for reentrant libc ****
856 wine_cv_libc_reentrant=no
857 dnl Linux style errno location
858 WINE_CHECK_ERRNO([__errno_location], [wine_cv_libc_reentrant=__errno_location],
859   dnl FreeBSD style errno location
860   WINE_CHECK_ERRNO([__error], [wine_cv_libc_reentrant=__error],
861     dnl Solaris style errno location
862     WINE_CHECK_ERRNO([___errno], [wine_cv_libc_reentrant=___errno],
863       dnl UnixWare style errno location
864       WINE_CHECK_ERRNO([__thr_errno], [wine_cv_libc_reentrant=__thr_errno],
865         dnl NetBSD style errno location
866         WINE_CHECK_ERRNO([__errno], [wine_cv_libc_reentrant=__errno])
867 ))))
869 if test "$wine_cv_libc_reentrant" != "no"
870 then
871   AC_DEFINE_UNQUOTED(ERRNO_LOCATION,$wine_cv_libc_reentrant,
872                      [Define to the name of the function returning errno for reentrant libc])
875 dnl **** Check for reentrant X libraries ****
877 dnl This may fail to determine whether X libraries are reentrant if
878 dnl AC_PATH_XTRA does not set x_libraries.
880 if test "$have_x" = "yes"
881 then
882 AC_CACHE_CHECK( [for reentrant X libraries], wine_cv_x_reentrant,
883     [libX11_check=none
884     for dir in "$x_libraries" /usr/lib /usr/local/lib /lib; do
885         if test -r $dir/libX11.so; then
886             libX11_check="-D $dir/libX11.so"
887             break
888         fi
889         if test -r $dir/libX11.a; then
890             libX11_check="$dir/libX11.a"
891             break
892         fi
893     done
894     if test "$libX11_check" != "none"; then
895         if nm $libX11_check | grep $wine_cv_libc_reentrant >/dev/null 2>&1
896         then
897             wine_cv_x_reentrant=yes
898         else
899             wine_cv_x_reentrant=no
900         fi
901     else
902         wine_cv_x_reentrant=unknown
903     fi])
906 dnl **** Check for functions ****
908 AC_FUNC_ALLOCA()
909 AC_CHECK_FUNCS(\
910         _lwp_create \
911         _pclose \
912         _popen \
913         _snprintf \
914         _stricmp \
915         _strnicmp \
916         chsize \
917         clone \
918         ecvt \
919         finite \
920         fpclass \
921         ftruncate \
922         ftruncate64 \
923         getnetbyaddr \
924         getnetbyname \
925         getopt_long \
926         getpagesize \
927         getprotobyname \
928         getprotobynumber \
929         getpwuid \
930         getservbyport \
931         getsockopt \
932         inet_network \
933         lseek64 \
934         lstat \
935         memmove \
936         mkstemp \
937         mmap \
938         pclose \
939         popen \
940         pread \
941         pthread_getspecific \
942         pthread_key_create \
943         pthread_mutex_lock \
944         pthread_mutex_unlock \
945         pthread_setspecific \
946         pwrite \
947         rfork \
948         select \
949         sendmsg \
950         settimeofday \
951         sigaltstack \
952         snprintf \
953         statfs \
954         strcasecmp \
955         strerror \
956         strncasecmp \
957         tcgetattr \
958         timegm \
959         usleep \
960         vfscanf \
961         wait4 \
962         waitpid \
965 dnl **** Check for header files ****
967 AC_CHECK_HEADERS(\
968         arpa/inet.h \
969         arpa/nameser.h \
970         cups/cups.h \
971         direct.h \
972         elf.h \
973         float.h \
974         getopt.h \
975         ieeefp.h \
976         io.h \
977         jack/jack.h \
978         libio.h \
979         libutil.h \
980         link.h \
981         linux/cdrom.h \
982         linux/hdreg.h \
983         linux/input.h \
984         linux/joystick.h \
985         linux/major.h \
986         linux/param.h \
987         linux/serial.h \
988         linux/ucdrom.h \
989         netdb.h \
990         netinet/in.h \
991         netinet/in_systm.h \
992         netinet/tcp.h \
993         pty.h \
994         pwd.h \
995         sched.h \
996         scsi/sg.h \
997         socket.h \
998         stdint.h \
999         strings.h \
1000         sys/cdio.h \
1001         sys/errno.h \
1002         sys/file.h \
1003         sys/filio.h \
1004         sys/inttypes.h \
1005         sys/ioctl.h \
1006         sys/ipc.h \
1007         sys/link.h \
1008         sys/lwp.h \
1009         sys/mman.h \
1010         sys/modem.h \
1011         sys/msg.h \
1012         sys/param.h \
1013         sys/poll.h \
1014         sys/ptrace.h \
1015         sys/reg.h \
1016         sys/shm.h \
1017         sys/signal.h \
1018         sys/socket.h \
1019         sys/sockio.h \
1020         sys/statfs.h \
1021         sys/strtio.h \
1022         sys/syscall.h \
1023         sys/sysctl.h \
1024         sys/time.h \
1025         sys/times.h \
1026         sys/uio.h \
1027         sys/un.h \
1028         sys/v86.h \
1029         sys/v86intr.h \
1030         sys/vfs.h \
1031         sys/vm86.h \
1032         sys/wait.h \
1033         syscall.h \
1034         termios.h \
1035         unistd.h \
1036         utime.h \
1038 AC_HEADER_STAT()
1040 dnl **** Checks for headers that depend on other ones ****
1042 AC_CHECK_HEADERS(sys/mount.h sys/user.h,,,
1043     [#include <sys/types.h>
1044      #if HAVE_SYS_PARAM_H
1045      # include <sys/param.h>
1046      #endif])
1048 AC_CHECK_HEADERS(net/if.h,,,
1049     [#include <sys/types.h>
1050      #if HAVE_SYS_SOCKET_H
1051      # include <sys/socket.h>
1052      #endif])
1054 AC_CHECK_HEADERS(netinet/ip.h,,,
1055     [#include <sys/types.h>
1056      #if HAVE_SYS_SOCKET_H
1057      # include <sys/socket.h>
1058      #endif
1059      #if HAVE_NETINET_IN_SYSTM_H
1060      # include <netinet/in_systm.h>
1061      #endif])
1063 AC_CHECK_HEADERS(resolv.h,,,
1064     [#include <sys/types.h>
1065      #if HAVE_SYS_SOCKET_H
1066      # include <sys/socket.h>
1067      #endif])
1069 AC_CHECK_HEADERS(ucontext.h,,,[#include <signal.h>])
1071 dnl **** Check for types ****
1073 AC_C_CONST
1074 AC_C_INLINE
1075 AC_CHECK_TYPES([mode_t, off_t, pid_t, size_t, ssize_t])
1076 AC_CHECK_SIZEOF(long long,0)
1078 AC_CACHE_CHECK([whether linux/input.h is for real],
1079         wine_cv_linux_input_h,
1080         AC_TRY_COMPILE([
1081             #include <linux/input.h>
1082         ] , [
1083             int foo = EVIOCGBIT(EV_ABS,42);
1084             int bar = BTN_PINKIE;
1085             int fortytwo = 42;
1086         ],
1087         wine_cv_linux_input_h=yes,
1088         wine_cv_linux_input_h=no,
1089         no
1090         )
1091     )
1092     if test "$wine_cv_linux_input_h" = "yes"
1093     then
1094         AC_DEFINE(HAVE_CORRECT_LINUXINPUT_H, 1,
1095                   [Define if we have linux/input.h AND it contains the INPUT event API])
1096     fi
1099 AC_CACHE_CHECK([whether we can use re-entrant gethostbyname_r Linux style],
1100         wine_cv_linux_gethostbyname_r_6,
1101         AC_TRY_COMPILE([
1102 #include <netdb.h>
1103         ], [
1104     char *name=NULL;
1105     struct hostent he;
1106     struct hostent *result;
1107     char *buf=NULL;
1108     int bufsize=0;
1109     int res,errnr;
1110     char *addr=NULL;
1111     int addrlen=0;
1112     int addrtype=0;
1113     res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
1114     res=gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
1115     ],
1116         wine_cv_linux_gethostbyname_r_6=yes,
1117         wine_cv_linux_gethostbyname_r_6=no
1118         )
1119    )
1120    if test "$wine_cv_linux_gethostbyname_r_6" = "yes"
1121    then
1122       AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6, 1,
1123                 [Define if Linux-style gethostbyname_r and gethostbyaddr_r are available])
1124    fi
1126 if test "$ac_cv_header_linux_joystick_h" = "yes"
1127 then
1128    AC_CACHE_CHECK([whether linux/joystick.h uses the Linux 2.2+ API],
1129         wine_cv_linux_joystick_22_api,
1130         AC_TRY_COMPILE([
1131         #include <sys/ioctl.h>
1132         #include <linux/joystick.h>
1134         struct js_event blub;
1135         #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
1136         #error "no 2.2 header"
1137         #endif
1138         ],/*empty*/,
1139         wine_cv_linux_joystick_22_api=yes,
1140         wine_cv_linux_joystick_22_api=no,
1141         wine_cv_linux_joystick_22_api=no
1142         )
1143    )
1144    if test "$wine_cv_linux_joystick_22_api" = "yes"
1145    then
1146       AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API, 1,
1147                 [Define if <linux/joystick.h> defines the Linux 2.2 joystick API])
1148    fi
1151 dnl **** statfs checks ****
1153 if test "$ac_cv_header_sys_vfs_h" = "yes"
1154 then
1155     AC_CACHE_CHECK( [whether sys/vfs.h defines statfs],
1156                     wine_cv_sys_vfs_has_statfs,
1157         AC_TRY_COMPILE([
1158         #include <sys/types.h>
1159         #ifdef HAVE_SYS_PARAM_H
1160         # include <sys/param.h>
1161         #endif
1162         #include <sys/vfs.h>
1163         ],[
1164                 struct statfs stfs;
1166                 memset(&stfs,0,sizeof(stfs));
1167         ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no
1168         )
1169     )
1170     if test "$wine_cv_sys_vfs_has_statfs" = "yes"
1171     then
1172       AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS, 1,
1173                 [Define if the struct statfs is defined by <sys/vfs.h>])
1174     fi
1177 if test "$ac_cv_header_sys_statfs_h" = "yes"
1178 then
1179     AC_CACHE_CHECK( [whether sys/statfs.h defines statfs],
1180                     wine_cv_sys_statfs_has_statfs,
1181         AC_TRY_COMPILE([
1182         #include <sys/types.h>
1183         #ifdef HAVE_SYS_PARAM_H
1184         # include <sys/param.h>
1185         #endif
1186         #include <sys/statfs.h>
1187         ],[
1188                 struct statfs stfs;
1189         ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no
1190         )
1191     )
1192     if test "$wine_cv_sys_statfs_has_statfs" = "yes"
1193     then
1194       AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS, 1,
1195                 [Define if the struct statfs is defined by <sys/statfs.h>])
1196     fi
1199 if test "$ac_cv_header_sys_mount_h" = "yes"
1200 then
1201     AC_CACHE_CHECK( [whether sys/mount.h defines statfs],
1202                     wine_cv_sys_mount_has_statfs,
1203         AC_TRY_COMPILE([
1204         #include <sys/types.h>
1205         #ifdef HAVE_SYS_PARAM_H
1206         # include <sys/param.h>
1207         #endif
1208         #include <sys/mount.h>
1209         ],[
1210                 struct statfs stfs;
1211         ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no
1212         )
1213     )
1214     if test "$wine_cv_sys_mount_has_statfs" = "yes"
1215     then
1216       AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT, 1,
1217                 [Define if the struct statfs is defined by <sys/mount.h>])
1218     fi
1221 dnl **** FIXME: what about mixed cases, where we need two of them? ***
1223 WINE_CHECK_STRUCT_MEMBER(statfs,f_bfree,
1224 [#include <sys/types.h>
1225 #ifdef HAVE_SYS_PARAM_H
1226 # include <sys/param.h>
1227 #endif
1228 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
1229 # include <sys/mount.h>
1230 #else
1231 # ifdef STATFS_DEFINED_BY_SYS_VFS
1232 #  include <sys/vfs.h>
1233 # else
1234 #  ifdef STATFS_DEFINED_BY_SYS_STATFS
1235 #   include <sys/statfs.h>
1236 #  endif
1237 # endif
1238 #endif],
1239     [AC_DEFINE(STATFS_HAS_BFREE, 1, [Define if the struct statfs has the member bfree])])
1241 WINE_CHECK_STRUCT_MEMBER(statfs,f_bavail,
1242 [#include <sys/types.h>
1243 #ifdef HAVE_SYS_PARAM_H
1244 # include <sys/param.h>
1245 #endif
1246 #ifdef STATFS_DEFINED_BY_SYS_MOUNT
1247 # include <sys/mount.h>
1248 #else
1249 # ifdef STATFS_DEFINED_BY_SYS_VFS
1250 #  include <sys/vfs.h>
1251 # else
1252 #  ifdef STATFS_DEFINED_BY_SYS_STATFS
1253 #   include <sys/statfs.h>
1254 #  endif
1255 # endif
1256 #endif],
1257     [AC_DEFINE(STATFS_HAS_BAVAIL, 1, [Define if the struct statfs has the member bavail])])
1259 dnl Check for file descriptor passing with msg_accrights
1260 WINE_CHECK_STRUCT_MEMBER(msghdr,msg_accrights,
1261 [#include <sys/types.h>
1262 #ifdef HAVE_SYS_SOCKET_H
1263 # include <sys/socket.h>
1264 #endif],
1265     [AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS, 1, [Define if struct msghdr contains msg_accrights])])
1267 dnl Check for the sa_len member in struct sockaddr
1268 WINE_CHECK_STRUCT_MEMBER(sockaddr,sa_len,
1269 [#include <sys/types.h>
1270 #ifdef HAVE_SYS_SOCKET_H
1271 # include <sys/socket.h>
1272 #endif],
1273     [AC_DEFINE(HAVE_SOCKADDR_SA_LEN, 1, [Define if struct sockaddr contains sa_len])])
1275 dnl Check for the sun_len member in struct sockaddr_un
1276 WINE_CHECK_STRUCT_MEMBER(sockaddr_un,sun_len,
1277 [#include <sys/types.h>
1278 #ifdef HAVE_SYS_SOCKET_H
1279 # include <sys/socket.h>
1280 #endif
1281 #ifdef HAVE_SYS_UN_H
1282 # include <sys/un.h>
1283 #endif],
1284     [AC_DEFINE(HAVE_SOCKADDR_SUN_LEN, 1, [Define if struct sockaddr_un contains sun_len])])
1286 dnl *** check for the need to define platform-specific symbols
1288 case $host_cpu in
1289   *i[[3456789]]86*) WINE_CHECK_DEFINE([__i386__]) ;;
1290   *alpha*)          WINE_CHECK_DEFINE([__ALPHA__]) ;;
1291   *sparc*)          WINE_CHECK_DEFINE([__sparc__]) ;;
1292 esac
1294 case $host_vendor in
1295   *sun*) WINE_CHECK_DEFINE([__sun__]) ;;
1296 esac
1298 dnl **** Generate output files ****
1300 AH_TOP([#define __WINE_CONFIG_H])
1302 WINE_CONFIG_EXTRA_DIR(controls)
1303 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/d3ddevice)
1304 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/dclipper)
1305 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/ddraw)
1306 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/direct3d)
1307 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/dpalette)
1308 WINE_CONFIG_EXTRA_DIR(dlls/ddraw/dsurface)
1309 WINE_CONFIG_EXTRA_DIR(dlls/dinput/joystick)
1310 WINE_CONFIG_EXTRA_DIR(dlls/dinput/keyboard)
1311 WINE_CONFIG_EXTRA_DIR(dlls/dinput/mouse)
1312 WINE_CONFIG_EXTRA_DIR(dlls/gdi/enhmfdrv)
1313 WINE_CONFIG_EXTRA_DIR(dlls/gdi/mfdrv)
1314 WINE_CONFIG_EXTRA_DIR(dlls/gdi/win16drv)
1315 WINE_CONFIG_EXTRA_DIR(dlls/kernel/messages)
1316 WINE_CONFIG_EXTRA_DIR(dlls/user/dde)
1317 WINE_CONFIG_EXTRA_DIR(dlls/user/resources)
1318 WINE_CONFIG_EXTRA_DIR(dlls/wineps/data)
1319 WINE_CONFIG_EXTRA_DIR(files)
1320 WINE_CONFIG_EXTRA_DIR(graphics)
1321 WINE_CONFIG_EXTRA_DIR(graphics/x11drv)
1322 WINE_CONFIG_EXTRA_DIR(if1632)
1323 WINE_CONFIG_EXTRA_DIR(include/wine)
1324 WINE_CONFIG_EXTRA_DIR(loader)
1325 WINE_CONFIG_EXTRA_DIR(loader/ne)
1326 WINE_CONFIG_EXTRA_DIR(memory)
1327 WINE_CONFIG_EXTRA_DIR(misc)
1328 WINE_CONFIG_EXTRA_DIR(msdos)
1329 WINE_CONFIG_EXTRA_DIR(objects)
1330 WINE_CONFIG_EXTRA_DIR(programs/regapi/tests)
1331 WINE_CONFIG_EXTRA_DIR(programs/regedit/tests)
1332 WINE_CONFIG_EXTRA_DIR(relay32)
1333 WINE_CONFIG_EXTRA_DIR(scheduler)
1334 WINE_CONFIG_EXTRA_DIR(win32)
1335 WINE_CONFIG_EXTRA_DIR(windows)
1337 MAKE_RULES=Make.rules
1338 AC_SUBST_FILE(MAKE_RULES)
1340 MAKE_DLL_RULES=dlls/Makedll.rules
1341 AC_SUBST_FILE(MAKE_DLL_RULES)
1343 MAKE_TEST_RULES=dlls/Maketest.rules
1344 AC_SUBST_FILE(MAKE_TEST_RULES)
1346 MAKE_PROG_RULES=programs/Makeprog.rules
1347 AC_SUBST_FILE(MAKE_PROG_RULES)
1349 AC_CONFIG_FILES([
1350 Make.rules
1351 dlls/Makedll.rules
1352 dlls/Maketest.rules
1353 programs/Makeprog.rules
1354 Makefile
1355 dlls/Makefile
1356 dlls/advapi32/Makefile
1357 dlls/advapi32/tests/Makefile
1358 dlls/avicap32/Makefile
1359 dlls/avifil32/Makefile
1360 dlls/cabinet/Makefile
1361 dlls/comcat/Makefile
1362 dlls/comctl32/Makefile
1363 dlls/commdlg/Makefile
1364 dlls/crtdll/Makefile
1365 dlls/crypt32/Makefile
1366 dlls/d3d8/Makefile
1367 dlls/dciman32/Makefile
1368 dlls/ddraw/Makefile
1369 dlls/devenum/Makefile
1370 dlls/dinput/Makefile
1371 dlls/dinput8/Makefile
1372 dlls/dplay/Makefile
1373 dlls/dplayx/Makefile
1374 dlls/dsound/Makefile
1375 dlls/dsound/tests/Makefile
1376 dlls/gdi/Makefile
1377 dlls/gdi/tests/Makefile
1378 dlls/glu32/Makefile
1379 dlls/icmp/Makefile
1380 dlls/imagehlp/Makefile
1381 dlls/imm32/Makefile
1382 dlls/kernel/Makefile
1383 dlls/kernel/tests/Makefile
1384 dlls/lzexpand/Makefile
1385 dlls/mapi32/Makefile
1386 dlls/mpr/Makefile
1387 dlls/msacm/Makefile
1388 dlls/msacm/imaadp32/Makefile
1389 dlls/msacm/msadp32/Makefile
1390 dlls/msacm/msg711/Makefile
1391 dlls/msacm/winemp3/Makefile
1392 dlls/msdmo/Makefile
1393 dlls/msimg32/Makefile
1394 dlls/msisys/Makefile
1395 dlls/msnet32/Makefile
1396 dlls/msvcrt/Makefile
1397 dlls/msvcrt/tests/Makefile
1398 dlls/msvcrt20/Makefile
1399 dlls/msvideo/Makefile
1400 dlls/msvideo/msrle32/Makefile
1401 dlls/netapi32/Makefile
1402 dlls/netapi32/tests/Makefile
1403 dlls/ntdll/Makefile
1404 dlls/ntdll/tests/Makefile
1405 dlls/odbc32/Makefile
1406 dlls/ole32/Makefile
1407 dlls/oleaut32/Makefile
1408 dlls/oleaut32/tests/Makefile
1409 dlls/olecli/Makefile
1410 dlls/oledlg/Makefile
1411 dlls/olepro32/Makefile
1412 dlls/olesvr/Makefile
1413 dlls/opengl32/Makefile
1414 dlls/psapi/Makefile
1415 dlls/qcap/Makefile
1416 dlls/quartz/Makefile
1417 dlls/rasapi32/Makefile
1418 dlls/richedit/Makefile
1419 dlls/rpcrt4/Makefile
1420 dlls/rpcrt4/tests/Makefile
1421 dlls/serialui/Makefile
1422 dlls/setupapi/Makefile
1423 dlls/shdocvw/Makefile
1424 dlls/shell32/Makefile
1425 dlls/shell32/tests/Makefile
1426 dlls/shfolder/Makefile
1427 dlls/shlwapi/Makefile
1428 dlls/shlwapi/tests/Makefile
1429 dlls/snmpapi/Makefile
1430 dlls/sti/Makefile
1431 dlls/tapi32/Makefile
1432 dlls/ttydrv/Makefile
1433 dlls/twain/Makefile
1434 dlls/url/Makefile
1435 dlls/urlmon/Makefile
1436 dlls/urlmon/tests/Makefile
1437 dlls/user/Makefile
1438 dlls/user/tests/Makefile
1439 dlls/version/Makefile
1440 dlls/win32s/Makefile
1441 dlls/winaspi/Makefile
1442 dlls/winedos/Makefile
1443 dlls/wineps/Makefile
1444 dlls/wininet/Makefile
1445 dlls/wininet/tests/Makefile
1446 dlls/winmm/Makefile
1447 dlls/winmm/joystick/Makefile
1448 dlls/winmm/mcianim/Makefile
1449 dlls/winmm/mciavi/Makefile
1450 dlls/winmm/mcicda/Makefile
1451 dlls/winmm/mciseq/Makefile
1452 dlls/winmm/mciwave/Makefile
1453 dlls/winmm/midimap/Makefile
1454 dlls/winmm/tests/Makefile
1455 dlls/winmm/wavemap/Makefile
1456 dlls/winmm/winealsa/Makefile
1457 dlls/winmm/winearts/Makefile
1458 dlls/winmm/wineaudioio/Makefile
1459 dlls/winmm/winenas/Makefile
1460 dlls/winmm/winejack/Makefile
1461 dlls/winmm/wineoss/Makefile
1462 dlls/winnls/Makefile
1463 dlls/winsock/Makefile
1464 dlls/winsock/tests/Makefile
1465 dlls/winspool/Makefile
1466 dlls/wintrust/Makefile
1467 dlls/wow32/Makefile
1468 dlls/wsock32/Makefile
1469 dlls/x11drv/Makefile
1470 documentation/Makefile
1471 include/Makefile
1472 library/Makefile
1473 miscemu/Makefile
1474 ole/Makefile
1475 programs/Makefile
1476 programs/avitools/Makefile
1477 programs/clock/Makefile
1478 programs/cmdlgtst/Makefile
1479 programs/control/Makefile
1480 programs/expand/Makefile
1481 programs/notepad/Makefile
1482 programs/osversioncheck/Makefile
1483 programs/progman/Makefile
1484 programs/regapi/Makefile
1485 programs/regedit/Makefile
1486 programs/regsvr32/Makefile
1487 programs/regtest/Makefile
1488 programs/rpcss/Makefile
1489 programs/rundll32/Makefile
1490 programs/uninstaller/Makefile
1491 programs/view/Makefile
1492 programs/wcmd/Makefile
1493 programs/wineconsole/Makefile
1494 programs/winedbg/Makefile
1495 programs/winefile/Makefile
1496 programs/winemine/Makefile
1497 programs/winepath/Makefile
1498 programs/winhelp/Makefile
1499 programs/winver/Makefile
1500 server/Makefile
1501 tools/Makefile
1502 tools/widl/Makefile
1503 tools/winapi/Makefile
1504 tools/winebuild/Makefile
1505 tools/winedump/Makefile
1506 tools/wmc/Makefile
1507 tools/wpp/Makefile
1508 tools/wrc/Makefile
1509 unicode/Makefile])
1511 AC_OUTPUT
1513 if test "$have_x" = "no"
1514 then
1515   echo
1516   echo "*** Warning: X development files not found. Wine will be built without"
1517   echo "*** X support, which currently does not work, and would probably not be"
1518   echo "*** what you want anyway. You will need to install devel packages of"
1519   echo "*** Xlib/Xfree86 at the very least."
1522 if test "$ac_cv_lib_ncurses_resizeterm" = "no" -a "$ac_cv_lib_ncurses_waddch" = "yes"
1523 then
1524   echo
1525   echo "*** Warning: resizeterm not found in ncurses. Wine will be built without"
1526   echo "*** terminal resize support. Consider upgrading ncurses."
1529 if test "$wine_cv_libc_reentrant" = "no"
1530 then
1531   echo
1532   echo "*** Warning: non-reentrant libc detected. Wine will be built without"
1533   echo "*** threading support. Consider upgrading libc to a more recent"
1534   echo "*** reentrant version of libc."
1537 if test "$have_x" = "yes" -a "$wine_cv_x_reentrant" != "yes"
1538 then
1539   echo
1540   echo "*** Warning: non-reentrant X11 library detected. Multi-threaded"
1541   echo "*** applications won't work properly. You should upgrade your X11 library."
1544 if test "$wine_cv_opengl_version_OK" = "no"
1545 then
1546   echo
1547   echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
1548   echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)."
1551 if test "$wine_cv_msg_freetype" = "yes"
1552 then
1553   echo
1554   echo "*** Note: Your system appears to have the FreeType 2 runtime libraries"
1555   echo "*** installed, but 'freetype-config' is not in your PATH. Install the"
1556   echo "*** freetype-devel package (or its equivalent on your distribution) to"
1557   echo "*** enable Wine to use TrueType fonts."
1560 echo
1561 echo "Configure finished.  Do 'make depend && make' to compile Wine."
1562 echo
1564 dnl Local Variables:
1565 dnl comment-start: "dnl "
1566 dnl comment-end: ""
1567 dnl comment-start-skip: "\\bdnl\\b\\s *"
1568 dnl compile-command: "autoconf"
1569 dnl End: