Define LPSTACKFRAME too.
[wine/wine-kai.git] / configure.in
blob88b070d630dd3e0696f789ee07268072457ac079
1 dnl Process this file with autoconf to produce a configure script.
2 dnl Author: Michael Patra   <micky@marie.physik.tu-berlin.de>
3 dnl                         <patra@itp1.physik.tu-berlin.de>
4 dnl Ported to autoconf 2.5x by bero@redhat.com
5 AC_REVISION([configure.in 1.00])
6 AC_INIT(controls/edit.c)                
7 AC_CONFIG_HEADER(include/config.h)
8 AC_CONFIG_AUX_DIR(tools)
10 dnl **** Command-line arguments ****
12 dnl Default values
13 LIBEXT=so       # library type .so or .a
14 TRACE_MSGS=yes  # the TRACE() macro
15 DEBUG_MSGS=yes  # the TRACE(), WARN(), and FIXME() macros.
16 CURSES=yes
17 OPENGL=normal
19 AC_ARG_ENABLE(debug,
20 [  --disable-debug         compile out all debugging messages],
21 [if test "$enableval" = "no"; then DEBUG_MSGS="no"; fi])
23 AC_ARG_ENABLE(opengl,
24 [  --enable-opengl         force usage of OpenGL even if the latter is thread-safe via pthread],
25 [if test "$enableval" = "no"; then OPENGL="no"; elif test "$enableval" = "yes"; then OPENGL="yes"; fi])
27 AC_ARG_ENABLE(trace,
28 [  --disable-trace         compile out TRACE messages],
29 [if test "$enableval" = "no"; then TRACE_MSGS="no"; fi])
31 AC_ARG_WITH(curses,
32 [  --without-curses        do not use curses],
33 [if test "$withval" = "no"; then CURSES="no"; fi])
35 AC_ARG_WITH(reentrant-x,
36 [  --without-reentrant-x   compile for use with non-reentrant X libraries])
38 AC_SUBST(OPTIONS)
40 if test "$DEBUG_MSGS" = "no"
41 then
42     OPTIONS="$OPTIONS -DNO_DEBUG_MSGS"
45 if test "$TRACE_MSGS" = "no" -o "$DEBUG_MSGS" = "no"
46 then
47     OPTIONS="$OPTIONS -DNO_TRACE_MSGS"
50 dnl **** Check for some programs ****
52 AC_PROG_MAKE_SET
53 AC_PROG_CC
54 AC_PROG_CPP
55 AC_PATH_XTRA
56 AC_PROG_YACC
57 AC_PROG_LEX
58 AC_CHECK_PROGS(XLEX,$LEX flex lex,none)
59 if test "$XLEX" = "none"
60 then
61         echo "*** Error: No suitable lex found. ***"
62         echo "    Please install the 'flex' package."
63         exit 1
65 AC_PROG_RANLIB
66 AC_PROG_INSTALL
67 AC_PROG_LN_S
68 AC_CHECK_PROG(C2MAN,c2man,c2man,\$(TOPSRCDIR)/tools/c2man.pl)
69 AC_PATH_PROG(LDCONFIG, ldconfig, true, /sbin:/usr/sbin:$PATH)
70 AC_CYGWIN
71 AC_CHECK_PROG(DLLWRAP,dllwrap,dllwrap,false)
73 dnl Check for lint
74 AC_CHECK_PROGS(LINT, lclint lint)
75 if test "$LINT" = "lint"
76 then
77   LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4"
78   dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64'
80 AC_SUBST(LINT)
81 AC_SUBST(LINTFLAGS)
83 if test "$CYGWIN" = "yes"
84 then
85     LDCOMBINE="ld -r --enable-stdcall-fixup"
86 else
87     LDCOMBINE="ld -r"
89 AC_SUBST(LDCOMBINE)
91 dnl **** Check for some libraries ****
93 dnl Check for -lm
94 AC_CHECK_LIB(m,sqrt)
95 dnl Check for -li386 for NetBSD and OpenBSD
96 AC_CHECK_LIB(i386,i386_set_ldt)
97 dnl Check for -lossaudio for NetBSD
98 AC_CHECK_LIB(ossaudio,_oss_ioctl)
99 dnl Check for -lw for Solaris
100 AC_CHECK_FUNCS(iswalnum,,AC_CHECK_LIB(w,iswalnum))
101 dnl Check for -lnsl for Solaris
102 AC_CHECK_FUNCS(gethostbyname,,AC_CHECK_LIB(nsl,gethostbyname))
103 dnl Check for -lsocket for Solaris
104 AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect))
105 dnl Check for -lxpg4 for FreeBSD
106 AC_CHECK_LIB(xpg4,_xpg4_setrunelocale)
107 dnl Check for -lmmap for OS/2
108 AC_CHECK_LIB(mmap,mmap)
110 dnl Check for openpty
111 UTILLIBS=""
112 AC_SUBST(UTILLIBS)
113 AC_CHECK_FUNCS(openpty,,
114         [AC_CHECK_LIB(util,openpty,
115                 [AC_DEFINE(HAVE_OPENPTY)
116                 UTILLIBS="-lutil"]
117         )])
119 DLLIBS=""
120 AC_SUBST(DLLIBS)
121 AC_CHECK_HEADERS(dlfcn.h,
122     [AC_CHECK_FUNCS(dlopen,,
123         [AC_CHECK_LIB(dl,dlopen,
124                      [AC_DEFINE(HAVE_DLOPEN,1,[Define if you have dlopen])
125                      DLLIBS="-ldl"],
126                      LIBEXT="a")]
127         )],
128         LIBEXT="a"
129     )
131 JPEGLIB=""
132 AC_SUBST(JPEGLIB)
133 AC_CHECK_HEADERS(jpeglib.h,
134     AC_CHECK_LIB(jpeg,jpeg_start_decompress,
135         AC_DEFINE(HAVE_LIBJPEG,1,[Define if you have libjpeg including devel headers])
136         JPEGLIB="-ljpeg"
137     )
141 AC_SUBST(XLIB)
142 AC_SUBST(XFILES)
143 XFILES=""
144 AC_SUBST(OPENGLFILES)
145 OPENGLFILES=""
146 AC_SUBST(GLU32FILES)
147 GLU32FILES=""
148 if test "$have_x" = "yes"
149 then
150     XLIB="-lXext -lX11"
151     ac_save_CPPFLAGS="$CPPFLAGS"
152     CPPFLAGS="$CPPFLAGS $X_CFLAGS"
154     dnl *** Check for -lXpm
155     AC_CHECK_HEADERS(X11/xpm.h,
156       [ dnl *** If X11/xpm.h exists...
157         AC_CHECK_LIB(Xpm, XpmCreatePixmapFromData,
158           [ AC_DEFINE(HAVE_LIBXXPM, 1, [Define if you have the Xpm library])
159             X_PRE_LIBS="$X_PRE_LIBS -lXpm"],,
160           $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
161         )
162       ],
163       [ dnl *** If X11/xpm.h does not exist...
164         dnl NOTE: autoconf does not allow commas inside the third 
165         dnl       parameter to AC_CHECK_HEADERS, due to some quoting
166         dnl       magic it does.
167         echo "Couldn't find the xpm development header X11/xpm.h"
168         echo "Install the following packages:"
169         echo "Red Hat < 7.1     :       xpm xpm-devel"
170         echo "Red Hat >= 7.1    :       XFree86-devel"
171         echo "Caldera OpenLinux :       xpm xpm-devel xpm-devel-static"
172         echo "SuSE              :       xpm"
173         echo "Debian/Corel Linux:       xpm4g xpm4g-dev"
174         echo "Solaris 8         :       SFWxpm"
175         echo
176         echo "Or get the sources from ftp.x.org and all its mirror sites from "
177         echo "the directory /contrib/libraries."
178         echo
179         exit 1
180       ]
181     )
183     dnl *** All of the following tests require X11/Xlib.h
184     AC_CHECK_HEADERS(X11/Xlib.h,
185       [
186         dnl *** Check for X keyboard extension
187         AC_CHECK_HEADERS(X11/XKBlib.h,
188             [ dnl *** If X11/XKBlib.h exists...
189               AC_CHECK_LIB(X11, XkbQueryExtension,
190               AC_DEFINE(HAVE_XKB, 1, [Define if you have the XKB extension]),,
191               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
192             ],
193             AC_MSG_WARN([XKB extension not found!!])
194         )
196         dnl *** Check for X Shm extension
197         AC_CHECK_HEADERS(X11/extensions/XShm.h,
198             [ dnl *** If X11/extensions/XShm.h exists...
199               AC_CHECK_LIB(Xext, XShmQueryExtension,
200               AC_DEFINE(HAVE_LIBXXSHM, 1, [Define if you have the X Shm extension]),,
201               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
202             ],
203             AC_MSG_WARN([Xshm extension not found!!])
204         )
206         dnl *** Check for X shape extension
207         AC_CHECK_HEADERS(X11/extensions/shape.h,
208             [ dnl *** If X11/extensions/shape.h exists...
209               AC_CHECK_LIB(Xext,XShapeQueryExtension,
210               AC_DEFINE(HAVE_LIBXSHAPE, 1, [Define if you have the X Shape extension]),,
211               $X_LIBS -lXext -lX11 $X_EXTRA_LIBS)
212             ],
213             AC_MSG_WARN([XShape extension not found!!])
214         )
215         
216         dnl *** Check for XFree86 DGA / DGA 2.0 extension
217         AC_CHECK_HEADERS(X11/extensions/xf86dga.h,
218             [ dnl *** If X11/extensions/xf86dga.h exists, check 
219               dnl *** for XDGAQueryExtension()...
220               AC_CHECK_LIB(Xxf86dga, XDGAQueryExtension,
221                 [ dnl *** If found...
222                   AC_DEFINE(HAVE_LIBXXF86DGA2, 1,
223                             [Define if you have the Xxf86dga library version 2])
224                   X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
225                ],
226                 [ dnl *** If not found, look for XF86DGAQueryExtension()
227                   dnl *** instead (DGA 2.0 not found)...
228                   AC_CHECK_LIB(Xxf86dga, XF86DGAQueryExtension,
229                     [ AC_DEFINE(HAVE_LIBXXF86DGA, 1,
230                                 [Define if you have the Xxf86dga library version 1])
231                       X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga"
232                     ],,
233                     $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
234                   )
235                 ],
236                 $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
237               )
238             ],
239             AC_MSG_WARN([DGA extension not found!!])
240         )
242         dnl *** Check for XFree86 VMODE extension
243         AC_CHECK_HEADERS(X11/extensions/xf86vmode.h,
244             [ dnl *** If X11/extensions/xf86vmode.h exists...
245                 AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension,
246                   [ AC_DEFINE(HAVE_LIBXXF86VM, 1, [Define if you have the Xxf86vm library])
247                      X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm"
248                   ],,
249                   $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
250                 )
251             ],
252             AC_MSG_WARN([XFree86 VMODE extension not found!!])
253         )
255         dnl *** Check for XVideo extension supporting XvImages
256         AC_CHECK_HEADERS(X11/extensions/Xvlib.h,
257             [ dnl *** If X11/extensions/Xvlib.h exists...
258                 AC_CHECK_LIB(Xv, XvShmCreateImage,
259                   [ AC_DEFINE(HAVE_XVIDEO, 1, [Define if the X libraries support XVideo])
260                      X_PRE_LIBS="$X_PRE_LIBS -lXv"
261                   ],,
262                   $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
263                 )
264             ],
265             AC_MSG_WARN([XVideo extension not found !!])
266         )
268         dnl *** Check for XRender extension
269         AC_CHECK_HEADERS(X11/extensions/Xrender.h,
270             [ dnl *** If X11/extensions/Xrender.h exists...
271                 AC_CHECK_LIB(Xrender, XRenderQueryExtension,
272                   [ AC_DEFINE(HAVE_LIBXRENDER, 1, [Define if you have the XRender extension library])
273                      X_PRE_LIBS="$X_PRE_LIBS -lXrender"
274                   ],,
275                   $X_LIBS -lXext -lX11 $X_EXTRA_LIBS
276                 )
277             ],
278             AC_MSG_WARN([XRender extension not found !!])
279         )
281       ]
282     ) dnl *** End of X11/Xlib.h check
284     dnl Check for the presence of OpenGL
285     if test $OPENGL = "yes" -o $OPENGL = "normal"
286     then
287         AC_CHECK_HEADERS(GL/gl.h GL/glx.h GL/glext.h)
288         if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_glx_h" = "yes"
289         then
290             dnl Check for some problems due to old Mesa versions
291             AC_CACHE_CHECK([for up-to-date OpenGL version], wine_cv_opengl_version_OK,
292               AC_TRY_COMPILE(
293                 [#include <GL/gl.h>],
294                 [GLenum test = GL_UNSIGNED_SHORT_5_6_5;],
295                 [wine_cv_opengl_version_OK="yes"],
296                 [wine_cv_opengl_version_OK="no"]
297               )
298             )
300             dnl Check for the thread-safety of the OpenGL library
301             AC_CACHE_CHECK([for thread-safe OpenGL version], 
302                            wine_cv_opengl_version_threadsafe,
303               [saved_libs=$LIBS
304                LIBS="$X_LIBS -lGL"
305                AC_TRY_LINK([],[pthread_getspecific();],
306                               [wine_cv_opengl_version_threadsafe="yes"],
307                               [wine_cv_opengl_version_threadsafe="no"])
308                LIBS=$saved_libs]
309             )
311             if test "$wine_cv_opengl_version_OK" = "yes" -a \( "$wine_cv_opengl_version_threadsafe" = "no" -o $OPENGL = "yes" \)
312             then
313                 dnl Check for the presence of the library
314                 AC_CHECK_LIB(GL,glXCreateContext,
315                              X_PRE_LIBS="$X_PRE_LIBS -lGL"
316                              ,,
317                              $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
319                 if test $ac_cv_lib_GL_glXCreateContext = "yes"
320                 then
322                         OPENGLFILES='$(OPENGLFILES)'
323                         AC_DEFINE(HAVE_OPENGL, 1, [Define if OpenGL is present on the system])
325                         AC_CHECK_LIB(GL,glXGetProcAddressARB,
326                                      AC_DEFINE(HAVE_GLX_GETPROCADDRESS, 1,
327                                                [Define if the OpenGL library supports the glXGetProcAddressARB call]),,
328                                      $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS)
330                         if test $ac_cv_lib_GL_glXGetProcAddressARB = "yes"
331                         then
332                                AC_CACHE_CHECK([for OpenGL extension functions prototypes], wine_cv_extension_prototypes,
333                                   [AC_TRY_COMPILE([#include <GL/gl.h>
334                                                   #ifdef HAVE_GL_GLEXT_H
335                                                   # include <GL/glext.h>
336                                                   #endif
337                                                   ],
338                                                  [PFNGLCOLORTABLEEXTPROC test_proc;],
339                                                  [wine_cv_extension_prototypes="yes"],
340                                                  [wine_cv_extension_prototypes="no"]
341                                   )]
342                                 )
343                                 if test $wine_cv_extension_prototypes = "yes"
344                                 then
345                                     AC_DEFINE(HAVE_GLEXT_PROTOTYPES, 1,
346                                               [Define if the OpenGL headers define extension typedefs])
347                                 fi
348                         fi
350                 fi
351                 dnl Check for GLU32 library.
352                 AC_CHECK_LIB(GLU,gluLookAt,
353                              [X_PRE_LIBS="$X_PRE_LIBS -lGLU"
354                              GLU32FILES='$(GLU32FILES)']
355                              ,,
356                              $X_LIBS $X_PRE_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS
357                 )
358              fi
359          fi
360     fi
362     CPPFLAGS="$ac_save_CPPFLAGS"
363     XFILES='$(XFILES)'
364 else
365     XLIB=""
366     X_CFLAGS=""
367     X_LIBS=""
370 dnl **** Check which curses lib to use ***
371 CURSESLIBS=""
372 if test "$CURSES" = "yes"
373 then
374     AC_CHECK_HEADERS(ncurses.h,
375         AC_CHECK_LIB(ncurses,waddch,
376             [AC_DEFINE(HAVE_LIBNCURSES, 1, [Define if you have the ncurses library (-lncurses)])
377              CURSESLIBS="-lncurses"],
378              [AC_CHECK_HEADERS(curses.h,
379                  [AC_CHECK_LIB(curses,waddch,
380                      [AC_DEFINE(HAVE_LIBCURSES, 1, [Define if you have the curses library (-lcurses)])
381                       CURSESLIBS="-lcurses"])])]))
382     saved_libs="$LIBS"
383     LIBS="$CURSESLIBS $LIBS"
384     AC_CHECK_FUNCS(getbkgd resizeterm)
385     LIBS="$saved_libs"
387 AC_SUBST(CURSESLIBS)
389 CUPSLIBS=""
390 dnl **** Check for CUPS ****
391 wine_cv_warn_cups_h=no
392 AC_CHECK_LIB(cups,cupsGetPPD,
393         [AC_CHECK_HEADER(cups/cups.h,
394             [AC_DEFINE(HAVE_CUPS, 1, [Define if we have CUPS])
395             CUPSLIBS="-lcups"],
396             wine_cv_warn_cups_h=yes)]
398 AC_SUBST(CUPSLIBS)
400 dnl **** Check for FreeType 2 ****
401 AC_CHECK_LIB(freetype,FT_Init_FreeType,ft_lib=yes,ft_lib=no,$X_LIBS)
402 if test "$ft_lib" = "no"
403 then
404     FREETYPELIBS=""
405     FREETYPEINCL=""
406     wine_cv_msg_freetype=no
407 else
408     AC_CHECK_PROG(ft_devel,freetype-config,freetype-config,no)
409     if test "$ft_devel" = "no"
410     then
411         AC_CHECK_PROG(ft_devel2,freetype2-config,freetype2-config,no)
412         if test "$ft_devel2" = "freetype2-config"
413         then
414                 ft_devel=$ft_devel2
415         fi
416     fi
417     if test "$ft_devel" = "no"
418     then
419         FREETYPELIBS=""
420         FREETYPEINCL=""
421         wine_cv_msg_freetype=yes
422     else
423         AC_DEFINE(HAVE_FREETYPE, 1, [Define if FreeType 2 is installed])
424         FREETYPELIBS=`$ft_devel --libs`
425         FREETYPEINCL=`$ft_devel --cflags`
426         ac_save_CPPFLAGS="$CPPFLAGS"
427         CPPFLAGS="$FREETYPEINCL $CPPFLAGS"
428         AC_CHECK_HEADERS(freetype/freetype.h \
429                          freetype/ftglyph.h \
430                          freetype/tttables.h \
431                          freetype/ftnames.h \
432                          freetype/ftsnames.h \
433                          freetype/ttnameid.h \
434                          freetype/ftoutln.h \
435                          freetype/internal/sfnt.h)
436         CPPFLAGS="$ac_save_CPPFLAGS"
437         wine_cv_msg_freetype=no
438     fi
440 AC_SUBST(FREETYPELIBS)
441 AC_SUBST(FREETYPEINCL)
443 dnl **** Check for parport (currently Linux only) ****
444 AC_CACHE_CHECK([for parport header/ppdev.h], ac_cv_c_ppdev,
445  AC_TRY_COMPILE(
446    [#include <linux/ppdev.h>],
447    [ioctl (1,PPCLAIM,0)],
448    [ac_cv_c_ppdev="yes"],
449    [ac_cv_c_ppdev="no"])
451 if test "$ac_cv_c_ppdev" = "yes"
452 then
453     AC_DEFINE(HAVE_PPDEV, 1, [Define if we can use ppdev.h for parallel port access])
456 dnl **** Check for IPX (currently Linux only) ****
457 AC_CACHE_CHECK([for GNU style IPX support], ac_cv_c_ipx_gnu,
458  AC_TRY_COMPILE(
459    [#include <sys/socket.h>
460     #include <netipx/ipx.h>],
461    [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
462    [ac_cv_c_ipx_gnu="yes"],
463    [ac_cv_c_ipx_gnu="no"])
465 if test "$ac_cv_c_ipx_gnu" = "yes"
466 then
467     AC_DEFINE(HAVE_IPX_GNU, 1, [Define if IPX should use netipx/ipx.h from libc])
470 if test "$ac_cv_c_ipx_gnu" = "no"
471 then
472  AC_CACHE_CHECK([for linux style IPX support], ac_cv_c_ipx_linux,
473   AC_TRY_COMPILE(
474     [#include <sys/socket.h>
475      #include <asm/types.h>
476      #include <linux/ipx.h>],
477     [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX],
478     [ac_cv_c_ipx_linux="yes"],
479     [ac_cv_c_ipx_linux="no"])
480   )
481   if test "$ac_cv_c_ipx_linux" = "yes"
482   then
483       AC_DEFINE(HAVE_IPX_LINUX, 1, [Define if IPX includes are taken from Linux kernel])
484   fi
487 dnl **** Check for Open Sound System ****
488 AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h soundcard.h, break)
490 AC_CACHE_CHECK([for Open Sound System],
491         ac_cv_c_opensoundsystem,
492         AC_TRY_COMPILE([
493         #if defined(HAVE_SYS_SOUNDCARD_H)
494                 #include <sys/soundcard.h>
495         #elif defined(HAVE_MACHINE_SOUNDCARD_H)
496                 #include <machine/soundcard.h>
497         #elif defined(HAVE_SOUNDCARD_H)
498                 #include <soundcard.h>
499         #endif
500         ],[
502 /* check for one of the Open Sound System specific SNDCTL_ defines */
503 #if !defined(SNDCTL_DSP_STEREO)
504 #error No open sound system
505 #endif
506 ],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no"))
508 if test "$ac_cv_c_opensoundsystem" = "yes"
509 then
510     AC_DEFINE(HAVE_OSS, 1, [Define if you have the Open Sound system])
513 AC_CACHE_CHECK([for Open Sound System/MIDI interface],
514         ac_cv_c_opensoundsystem_midi,
515         AC_TRY_COMPILE([
516         #if defined(HAVE_SYS_SOUNDCARD_H)
517                 #include <sys/soundcard.h>
518         #elif defined(HAVE_MACHINE_SOUNDCARD_H)
519                 #include <machine/soundcard.h>
520         #elif defined(HAVE_SOUNDCARD_H)
521                 #include <soundcard.h>
522         #endif
523         ],[
525 /* check for one of the Open Sound System specific SNDCTL_SEQ defines */
526 #if !defined(SNDCTL_SEQ_SYNC)
527 #error No open sound system MIDI interface
528 #endif
529 ],ac_cv_c_opensoundsystem_midi="yes",ac_cv_c_opensoundsystem_midi="no"))
531 if test "$ac_cv_c_opensoundsystem_midi" = "yes"
532 then
533     AC_DEFINE(HAVE_OSS_MIDI, 1, [Define if you have the Open Sound system (MIDI interface)])
536 dnl **** If ln -s doesn't work, use cp instead ****
537 if test "$ac_cv_prog_LN_S" = "ln -s"; then : ; else LN_S=cp ; fi
539 dnl **** Check for broken glibc mmap64 ****
541 AC_CACHE_CHECK( [whether mmap64 works defined as mmap], ac_cv_mmap64_works,
542         AC_TRY_RUN([
543                 #define _FILE_OFFSET_BITS 64
544                 #include <stdio.h>
545                 #include <unistd.h>
546                 #include <fcntl.h>
547                 #include <sys/mman.h>
548                 #include <errno.h>
550                 int main(int argc,char **argv) {
551                         int fd = open("conftest.map",O_CREAT|O_RDWR,0600);
552                         if (fd == -1) exit(1);
554                         unlink("conftest.map");
556                         write(fd,"test",4);
558                         if ((-1 == mmap(0,4,PROT_READ|PROT_WRITE,MAP_SHARED,fd,0)) &&
559                             (errno == EINVAL)
560                         ) {
561                                 exit(1);
562                         }
563                         close(fd);
564                         fprintf(stderr,"success!\n");
565                         exit(0);
566                 }
568         ],
569     ac_cv_mmap64_works="yes",
570     ac_cv_mmap64_works="no",
571     ac_cv_mmap64_works="no") )
573 if test "$ac_cv_mmap64_works" = "yes"
574 then
575     AC_DEFINE(_FILE_OFFSET_BITS, 64, [Set this to 64 to enable 64-bit file support on Linux])
578 dnl **** Check for gcc strength-reduce bug ****
580 if test "x${GCC}" = "xyes"
581 then
582   CFLAGS="$CFLAGS -Wall"
583   AC_CACHE_CHECK( [for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug,
584                   AC_TRY_RUN([
585 int     L[[4]] = {0,1,2,3};
586 int main(void) {
587   static int Array[[3]];
588   unsigned int B = 3;
589   int i;
590   for(i=0; i<B; i++) Array[[i]] = i - 3;
591   for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]];
592   L[[i]] = 4;
593   
594   exit( Array[[1]] != -2 || L[[2]] != 3);
596     ac_cv_c_gcc_strength_bug="no",
597     ac_cv_c_gcc_strength_bug="yes",
598     ac_cv_c_gcc_strength_bug="yes") )
599   if test "$ac_cv_c_gcc_strength_bug" = "yes"
600   then
601     CFLAGS="$CFLAGS -fno-strength-reduce"
602   fi
604   dnl Check for -mpreferred-stack-boundary
605   AC_CACHE_CHECK([for gcc -mpreferred-stack-boundary=2 support],
606                  ac_cv_c_gcc_stack_boundary,
607   [saved_cflags=$CFLAGS
608   CFLAGS="$CFLAGS -mpreferred-stack-boundary=2"
609   AC_TRY_COMPILE(,[return 0],ac_cv_c_gcc_stack_boundary="yes",ac_cv_c_gcc_stack_boundary="no")
610   CFLAGS=$saved_cflags
611   ])
612   if test "$ac_cv_c_gcc_stack_boundary" = "yes"
613   then
614     CFLAGS="$CFLAGS -mpreferred-stack-boundary=2"
615   fi
618 dnl **** Check if we need to place .type inside a .def directive ****
620 AC_CACHE_CHECK([whether .type must sit inside a .def directive],
621                ac_cv_c_type_in_def,
622 [saved_libs=$LIBS
623 LIBS="conftest_asm.s $LIBS"
624 cat > conftest_asm.s <<EOF
625         .globl _ac_test
626         .def _ac_test; .scl 2; .type 32; .endef
627 _ac_test:
628         .long 0
630 AC_TRY_LINK(,,ac_cv_c_type_in_def="yes",ac_cv_c_type_in_def="no")
631 LIBS=$saved_libs])
632 if test "$ac_cv_c_type_in_def" = "yes"
633 then
634   AC_DEFINE(NEED_TYPE_IN_DEF, 1, [Define if .type asm directive must be inside a .def directive])
637 dnl **** Check for underscore on external symbols ****
639 AC_CACHE_CHECK([whether external symbols need an underscore prefix],
640                ac_cv_c_extern_prefix,
641 [saved_libs=$LIBS
642 LIBS="conftest_asm.s $LIBS"
643 cat > conftest_asm.s <<EOF
644         .globl _ac_test
645 _ac_test:
646         .long 0
648 AC_TRY_LINK([extern int ac_test;],[if (ac_test) return 1],
649             ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")
650 LIBS=$saved_libs])
651 if test "$ac_cv_c_extern_prefix" = "yes"
652 then
653   AC_DEFINE(NEED_UNDERSCORE_PREFIX, 1,
654             [Define if symbols declared in assembly code need an underscore prefix])
657 dnl **** Check for .string in assembler ****
659 AC_CACHE_CHECK([whether assembler accepts .string],
660                ac_cv_c_asm_string,
661 [saved_libs=$LIBS
662 LIBS="conftest_asm.s $LIBS"
663 cat > conftest_asm.s <<EOF
664         .string "test"
666 AC_TRY_LINK(,,ac_cv_c_asm_string="yes",ac_cv_c_asm_string="no")
667 LIBS=$saved_libs])
668 if test "$ac_cv_c_asm_string" = "yes"
669 then
670   AC_DEFINE(HAVE_ASM_STRING, 1, [Define to use .string instead of .ascii])
673 dnl **** Check for working dll ****
675 LDSHARED=""
676 LDDLLFLAGS=""
677 if test "$LIBEXT" = "so"
678 then
679   AC_CACHE_CHECK([whether we can build a GNU style ELF dll],
680                  ac_cv_c_dll_gnuelf,
681   [saved_cflags=$CFLAGS
682   CFLAGS="$CFLAGS -fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic"
683   AC_TRY_LINK(,[return 1],ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")
684   CFLAGS=$saved_cflags
685   ])
686   if test "$ac_cv_c_dll_gnuelf" = "yes"
687   then
688     LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)"
689     LDDLLFLAGS="-Wl,-Bsymbolic"
690   else
691     AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll,
692                  ac_cv_c_dll_unixware,
693     [saved_cflags=$CFLAGS
694     CFLAGS="$CFLAGS -fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic"
695     AC_TRY_LINK(,[return 1],ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")
696     CFLAGS=$saved_cflags
697     ])
698     if test "$ac_cv_c_dll_unixware" = "yes"
699     then
700       LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,%)"
701       LDDLLFLAGS="-Wl,-B,symbolic"
702     fi
703   fi
704   if test "$ac_cv_c_dll_gnuelf" = "no" -a "$ac_cv_c_dll_unixware" = "no"
705   then
706     LIBEXT="a"
707     if test "$DLLWRAP" = "dllwrap"; then
708       dnl FIXME - check whether dllwrap works correctly...
709       if test "$CYGWIN" = "yes"; then
710         echo "*** use dllwrap for building shared library."
711         LIBEXT="dll"
712       fi
713     fi
714   fi
717 if test "$LIBEXT" = "a"; then
718   echo "*** It is currently not possible to build WINE without shared"
719   echo "*** library (.so) support to allow transparent switch between .so"
720   echo "*** and .dll files."
721   echo "*** If you are using Linux, you will need a newer binutils."
722   exit 1
725 DLLFLAGS=""
726 LDPATH=""
728 if test "$LIBEXT" = "so"; then
729     DLLFLAGS="-fPIC"
730     LDPATH="LD_LIBRARY_PATH=\"\$(TOPOBJDIR)/unicode:\$\$LD_LIBRARY_PATH\""
731 elif test "$LIBEXT" = "dll"; then
732     #DLLFLAGS="-fPIC" # -fPIC doesn't work(at least in cygwin-b20) - FIXME
733     LDPATH="PATH=\"\$(TOPOBJDIR)/unicode:\$\$PATH\""
736 AC_SUBST(DLLFLAGS)
737 AC_SUBST(LDSHARED)
738 AC_SUBST(LDDLLFLAGS)
739 AC_SUBST(LIBEXT)
740 AC_SUBST(LDPATH)
742 dnl **** Check for reentrant libc ****
744 dnl For cross-compiling we blindly assume that libc is reentrant. This is
745 dnl ok since non-reentrant libc is quite rare (mostly old libc5 versions).
747 AC_DEFUN([WINE_CHECK_ERRNO],
749   AC_CACHE_CHECK(for reentrant libc: $1, wine_cv_libc_r_$1,
750   [AC_TRY_RUN([int myerrno = 0;
751 char buf[256];
752 int *$1(){return &myerrno;}
753 main(){connect(0,buf,255); exit(!myerrno);}],
754   wine_cv_libc_r_$1=yes, wine_cv_libc_r_$1=no,
755   wine_cv_libc_r_$1=yes )
757 if test "$wine_cv_libc_r_$1" = "yes"
758 then
759     wine_cv_libc_reentrant=$1 
763 wine_cv_libc_reentrant=no 
764 dnl Linux style errno location
765 WINE_CHECK_ERRNO(__errno_location)
766 dnl FreeBSD style errno location
767 WINE_CHECK_ERRNO(__error)
768 dnl Solaris style errno location
769 WINE_CHECK_ERRNO(___errno)
770 dnl UnixWare style errno location
771 WINE_CHECK_ERRNO(__thr_errno)
772 dnl NetBSD style errno location
773 WINE_CHECK_ERRNO(__errno)
775 if test "$wine_cv_libc_reentrant" != "no" 
776 then
777   AC_DEFINE_UNQUOTED(ERRNO_LOCATION,$wine_cv_libc_reentrant,
778                      [Define to the name of the function returning errno for reentrant libc])
781 dnl **** Check for reentrant X libraries ****
783 dnl This may fail to determine whether X libraries are reentrant if
784 dnl AC_PATH_XTRA does not set x_libraries. In this case manual configuration
785 dnl is possible with the --without-reentrant-x option.
787 if test "$have_x" = "yes" -a "$wine_cv_libc_reentrant" != "no"
788 then
789 AC_CACHE_CHECK( [for reentrant X libraries], wine_cv_x_reentrant,
790   [ if test "x$with_reentrant_x" = "xno" 
791     then
792         wine_cv_x_reentrant=no
793     else
794         libX11_check=none
795         for dir in "$x_libraries" /usr/lib /usr/local/lib /lib; do
796             if test -r $dir/libX11.so; then
797                 libX11_check="-D $dir/libX11.so"
798                 break 1
799             fi
800             if test -r $dir/libX11.a; then
801                 libX11_check="$dir/libX11.a"
802                 break 1
803             fi
804         done
805         if test "$libX11_check" != "none"; then
806             if nm $libX11_check | grep $wine_cv_libc_reentrant >/dev/null 2>&1
807             then
808                 wine_cv_x_reentrant=yes
809             else
810                 wine_cv_x_reentrant=no
811             fi
812         else
813             wine_cv_x_reentrant=unknown
814         fi
815     fi ] )
816 else
817     wine_cv_x_reentrant=no
819 if test "$wine_cv_x_reentrant" = "no"
820 then
821   AC_DEFINE(NO_REENTRANT_X11, 1,
822             [Define if X libraries are not reentrant (compiled without -D_REENTRANT)])
826 dnl **** Check for functions ****
828 AC_FUNC_ALLOCA()
829 AC_CHECK_FUNCS(\
830         __libc_fork \
831         _lwp_create \
832         clone \
833         ecvt \
834         finite \
835         fpclass \
836         ftruncate64 \
837         getnetbyaddr \
838         getnetbyname \
839         getpagesize \
840         getprotobyname \
841         getprotobynumber \
842         getrlimit \
843         getservbyport \
844         getsockopt \
845         inet_network \
846         lseek64 \
847         lstat \
848         memmove \
849         mmap \
850         rfork \
851         select \
852         sendmsg \
853         settimeofday \
854         sigaltstack \
855         statfs \
856         strcasecmp \
857         strerror \
858         strncasecmp \
859         tcgetattr \
860         timegm \
861         usleep \
862         vfscanf \
863         wait4 \
864         waitpid \
867 dnl **** Check for header files ****
869 AC_CHECK_HEADERS(\
870         arpa/inet.h \
871         arpa/nameser.h \
872         elf.h \
873         float.h \
874         ieeefp.h \
875         libio.h \
876         libutil.h \
877         link.h \
878         linux/cdrom.h \
879         linux/input.h \
880         linux/joystick.h \
881         linux/ucdrom.h \
882         net/if.h \
883         netdb.h \
884         netinet/in.h \
885         netinet/in_systm.h \
886         netinet/ip.h \
887         netinet/tcp.h \
888         pty.h \
889         resolv.h \
890         sched.h \
891         socket.h \
892         stdint.h \
893         strings.h \
894         sys/cdio.h \
895         sys/errno.h \
896         sys/file.h \
897         sys/filio.h \
898         sys/ipc.h \
899         sys/link.h \
900         sys/lwp.h \
901         sys/mman.h \
902         sys/modem.h \
903         sys/mount.h \
904         sys/msg.h \
905         sys/param.h \
906         sys/ptrace.h \
907         sys/reg.h \
908         sys/signal.h \
909         sys/shm.h \
910         sys/socket.h \
911         sys/sockio.h \
912         sys/statfs.h \
913         sys/strtio.h \
914         sys/syscall.h \
915         sys/user.h \
916         sys/wait.h \
917         sys/v86.h \
918         sys/v86intr.h \
919         sys/vfs.h \
920         sys/vm86.h \
921         syscall.h \
922         ucontext.h \
924 AC_HEADER_STAT()
926 dnl **** Check for types ****
928 AC_C_CONST()
929 AC_C_INLINE()
930 AC_TYPE_SIZE_T()
931 AC_CHECK_SIZEOF(long long,0)
933 AC_CACHE_CHECK([whether linux/input.h is for real],
934         wine_cv_linux_input_h,
935         AC_TRY_COMPILE([
936             #include <linux/input.h>
937         ] , [
938             int foo = EVIOCGBIT(EV_ABS,42);
939             int bar = BTN_PINKIE;
940             int fortytwo = 42;
941         ],
942         wine_cv_linux_input_h=yes,
943         wine_cv_linux_input_h=no,
944         no
945         )
946     )
947     if test "$wine_cv_linux_input_h" = "yes"
948     then
949         AC_DEFINE(HAVE_CORRECT_LINUXINPUT_H, 1,
950                   [Define if we have linux/input.h AND it contains the INPUT event API])
951     fi
953    
954 AC_CACHE_CHECK([whether we can use re-entrant gethostbyname_r Linux style],
955         wine_cv_linux_gethostbyname_r_6,
956         AC_TRY_COMPILE([
957 #include <netdb.h>
958         ], [
959     char *name=NULL;
960     struct hostent he;
961     struct hostent *result;
962     char *buf=NULL;
963     int bufsize=0;
964     int res,errnr;
965     char *addr=NULL;
966     int addrlen=0;
967     int addrtype=0;
968     res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
969     res=gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
970     ],
971         wine_cv_linux_gethostbyname_r_6=yes,
972         wine_cv_linux_gethostbyname_r_6=no
973         )
974    )
975    if test "$wine_cv_linux_gethostbyname_r_6" = "yes"
976    then
977       AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6, 1,
978                 [Define if Linux-style gethostbyname_r and gethostbyaddr_r are available])
979    fi
981 if test "$ac_cv_header_linux_joystick_h" = "yes"
982 then
983    AC_CACHE_CHECK([whether linux/joystick.h uses the Linux 2.2+ API],
984         wine_cv_linux_joystick_22_api,
985         AC_TRY_COMPILE([
986         #include <sys/ioctl.h>
987         #include <linux/joystick.h>
989         struct js_event blub;
990         #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
991         #error "no 2.2 header"
992         #endif
993         ],/*empty*/,
994         wine_cv_linux_joystick_22_api=yes,
995         wine_cv_linux_joystick_22_api=no,
996         wine_cv_linux_joystick_22_api=no
997         )
998    )
999    if test "$wine_cv_linux_joystick_22_api" = "yes"
1000    then
1001       AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API, 1,
1002                 [Define if <linux/joystick.h> defines the Linux 2.2 joystick API])
1003    fi
1006 dnl **** statfs checks ****
1008 if test "$ac_cv_header_sys_vfs_h" = "yes"
1009 then
1010     AC_CACHE_CHECK( [whether sys/vfs.h defines statfs],
1011                     wine_cv_sys_vfs_has_statfs,
1012         AC_TRY_COMPILE([
1013         #include <sys/types.h>
1014         #ifdef HAVE_SYS_PARAM_H
1015         # include <sys/param.h>
1016         #endif
1017         #include <sys/vfs.h>
1018         ],[
1019                 struct statfs stfs;
1021                 memset(&stfs,0,sizeof(stfs));
1022         ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no
1023         )
1024     )
1025     if test "$wine_cv_sys_vfs_has_statfs" = "yes"
1026     then
1027       AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS, 1,
1028                 [Define if the struct statfs is defined by <sys/vfs.h>])
1029     fi
1032 if test "$ac_cv_header_sys_statfs_h" = "yes"
1033 then
1034     AC_CACHE_CHECK( [whether sys/statfs.h defines statfs],
1035                     wine_cv_sys_statfs_has_statfs,
1036         AC_TRY_COMPILE([
1037         #include <sys/types.h>
1038         #ifdef HAVE_SYS_PARAM_H
1039         # include <sys/param.h>
1040         #endif
1041         #include <sys/statfs.h>
1042         ],[
1043                 struct statfs stfs;
1044         ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no
1045         )
1046     )
1047     if test "$wine_cv_sys_statfs_has_statfs" = "yes"
1048     then
1049       AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS, 1,
1050                 [Define if the struct statfs is defined by <sys/statfs.h>])
1051     fi
1054 if test "$ac_cv_header_sys_mount_h" = "yes"
1055 then
1056     AC_CACHE_CHECK( [whether sys/mount.h defines statfs],
1057                     wine_cv_sys_mount_has_statfs,
1058         AC_TRY_COMPILE([
1059         #include <sys/types.h>
1060         #ifdef HAVE_SYS_PARAM_H
1061         # include <sys/param.h>
1062         #endif
1063         #include <sys/mount.h>
1064         ],[
1065                 struct statfs stfs;
1066         ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no
1067         )
1068     )
1069     if test "$wine_cv_sys_mount_has_statfs" = "yes"
1070     then
1071       AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT, 1,
1072                 [Define if the struct statfs is defined by <sys/mount.h>])
1073     fi
1076 dnl **** FIXME: what about mixed cases, where we need two of them? ***
1078 AC_CACHE_CHECK( [for statfs.f_bfree], wine_cv_statfs_bfree,
1079   [ if test "x$statfs_bfree" = "xno"
1080     then
1081         wine_cv_statfs_bfree=no
1082     else
1083         AC_TRY_COMPILE([
1084         #include <sys/types.h>
1085         #ifdef HAVE_SYS_PARAM_H
1086         # include <sys/param.h>
1087         #endif
1088         #ifdef STATFS_DEFINED_BY_SYS_MOUNT
1089         # include <sys/mount.h>
1090         #else
1091         # ifdef STATFS_DEFINED_BY_SYS_VFS
1092         #  include <sys/vfs.h>
1093         # else
1094         #  ifdef STATFS_DEFINED_BY_SYS_STATFS
1095         #   include <sys/statfs.h>
1096         #  endif
1097         # endif
1098         #endif
1099         ],[
1100                 struct statfs stfs;
1102                 stfs.f_bfree++;
1103         ],wine_cv_statfs_bfree=yes,wine_cv_statfs_bfree=no
1104         )
1105     fi ] )
1106 if test "$wine_cv_statfs_bfree" = "yes"
1107 then
1108   AC_DEFINE(STATFS_HAS_BFREE, 1, [Define if the struct statfs has the member bfree])
1111 AC_CACHE_CHECK( [for statfs.f_bavail], wine_cv_statfs_bavail,
1112   [ if test "x$statfs_bavail" = "xno"
1113     then
1114         wine_cv_statfs_bavail=no
1115     else
1116         AC_TRY_COMPILE([
1117         #include <sys/types.h>
1118         #ifdef HAVE_SYS_PARAM_H
1119         # include <sys/param.h>
1120         #endif
1121         #ifdef STATFS_DEFINED_BY_SYS_MOUNT
1122         # include <sys/mount.h>
1123         #else
1124         # ifdef STATFS_DEFINED_BY_SYS_VFS
1125         #  include <sys/vfs.h>
1126         # else
1127         #  ifdef STATFS_DEFINED_BY_SYS_STATFS
1128         #   include <sys/statfs.h>
1129         #  endif
1130         # endif
1131         #endif
1132         ],[
1133                 struct statfs stfs;
1135                 stfs.f_bavail++;
1136         ],wine_cv_statfs_bavail=yes,wine_cv_statfs_bavail=no
1137         )
1138     fi ] )
1139 if test "$wine_cv_statfs_bavail" = "yes"
1140 then
1141   AC_DEFINE(STATFS_HAS_BAVAIL, 1, [Define if the struct statfs has the member bavail])
1144 dnl *** check for file descriptor passing with msg_accrights
1146 AC_CACHE_CHECK([for msg_accrights in struct msghdr], ac_cv_c_msg_accrights,
1147  AC_TRY_COMPILE([#include <sys/types.h>
1148 #include <sys/socket.h>],[struct msghdr hdr; hdr.msg_accrights=0],
1149                 ac_cv_c_msg_accrights="yes", ac_cv_c_msg_accrights="no"))
1150 if test "$ac_cv_c_msg_accrights" = "yes"
1151 then
1152     AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS, 1, [Define if struct msghdr contains msg_accrights])
1155 dnl *** Check for the sa_len member in struct sockaddr
1157 AC_CACHE_CHECK([for sa_len in struct sockaddr], ac_cv_c_sockaddr_sa_len,
1158  AC_TRY_COMPILE([#include <sys/types.h>
1159 #include <sys/socket.h>
1160 ], [static struct sockaddr addr; addr.sa_len = 1],
1161                 ac_cv_c_sockaddr_sa_len="yes", ac_cv_c_sockaddr_sa_len="no"))
1162 if test "$ac_cv_c_sockaddr_sa_len" = "yes"
1163 then
1164     AC_DEFINE(HAVE_SOCKADDR_SA_LEN, 1, [Define if struct sockaddr contains sa_len])
1167 dnl *** Check for the sun_len member in struct sockaddr_un
1169 AC_CACHE_CHECK([for sun_len in struct sockaddr_un], ac_cv_c_sockaddr_sun_len,
1170  AC_TRY_COMPILE([#include <sys/types.h>
1171 #include <sys/socket.h>
1172 #include <sys/un.h>], [static struct sockaddr_un addr; addr.sun_len = 1],
1173                 ac_cv_c_sockaddr_sun_len="yes", ac_cv_c_sockaddr_sun_len="no"))
1174 if test "$ac_cv_c_sockaddr_sun_len" = "yes"
1175 then
1176     AC_DEFINE(HAVE_SOCKADDR_SUN_LEN, 1, [Define if struct sockaddr_un contains sun_len])
1179 dnl *** check for the need to define __i386__
1181 AC_CACHE_CHECK([whether we need to define __i386__],ac_cv_cpp_def_i386,
1182  AC_EGREP_CPP(yes,[#if (defined(i386) || defined(__i386)) && !defined(__i386__)
1184 #endif],
1185  ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no"))
1186 if test "$ac_cv_cpp_def_i386" = "yes"
1187 then
1188     CFLAGS="$CFLAGS -D__i386__"
1189     LINTFLAGS="$LINTFLAGS -D__i386__"
1192 dnl $GCC is set by autoconf
1193 GCC_NO_BUILTIN=""
1194 if test "$GCC" = "yes"
1195 then
1196     GCC_NO_BUILTIN="-fno-builtin"
1198 AC_SUBST(GCC_NO_BUILTIN)
1200 dnl **** Generate output files ****
1202 AC_DEFINE(__WINE_CONFIG_H, 1,
1203           [This must always be defined to allow checking for config.h inclusion])
1205 AC_OUTPUT_COMMANDS([
1206 extra_subdirs="\
1207 dlls/ddraw/d3ddevice \
1208 dlls/ddraw/dclipper \
1209 dlls/ddraw/ddraw \
1210 dlls/ddraw/direct3d \
1211 dlls/ddraw/dpalette \
1212 dlls/ddraw/dsurface \
1213 dlls/dinput/joystick \
1214 dlls/dinput/keyboard \
1215 dlls/dinput/mouse \
1216 dlls/kernel/messages \
1217 dlls/user/dde \
1218 dlls/user/resources \
1219 dlls/wineps/data \
1221 for i in $extra_subdirs; do [ -d $i ] || (echo "creating $i" && mkdir $i); done ])
1223 MAKE_RULES=Make.rules
1224 AC_SUBST_FILE(MAKE_RULES)
1226 MAKE_DLL_RULES=dlls/Makedll.rules
1227 AC_SUBST_FILE(MAKE_DLL_RULES)
1229 MAKE_PROG_RULES=programs/Makeprog.rules
1230 AC_SUBST_FILE(MAKE_PROG_RULES)
1232 AC_OUTPUT([
1233 Make.rules
1234 dlls/Makedll.rules
1235 programs/Makeprog.rules
1236 Makefile
1237 console/Makefile
1238 controls/Makefile
1239 debugger/Makefile
1240 dlls/Makefile
1241 dlls/advapi32/Makefile
1242 dlls/avicap32/Makefile
1243 dlls/avifil32/Makefile
1244 dlls/comctl32/Makefile
1245 dlls/commdlg/Makefile
1246 dlls/crtdll/Makefile
1247 dlls/dciman32/Makefile
1248 dlls/ddraw/Makefile
1249 dlls/devenum/Makefile
1250 dlls/dinput/Makefile
1251 dlls/dplay/Makefile
1252 dlls/dplayx/Makefile
1253 dlls/dsound/Makefile
1254 dlls/gdi/Makefile
1255 dlls/glu32/Makefile
1256 dlls/icmp/Makefile
1257 dlls/imagehlp/Makefile
1258 dlls/imm32/Makefile
1259 dlls/kernel/Makefile
1260 dlls/lzexpand/Makefile
1261 dlls/mapi32/Makefile
1262 dlls/mpr/Makefile
1263 dlls/msacm/Makefile
1264 dlls/msdmo/Makefile
1265 dlls/msimg32/Makefile
1266 dlls/msnet32/Makefile
1267 dlls/msrle32/Makefile
1268 dlls/msvcrt/Makefile
1269 dlls/msvideo/Makefile
1270 dlls/netapi32/Makefile
1271 dlls/ntdll/Makefile
1272 dlls/odbc32/Makefile
1273 dlls/ole32/Makefile
1274 dlls/oleaut32/Makefile
1275 dlls/olecli/Makefile
1276 dlls/oledlg/Makefile
1277 dlls/olepro32/Makefile
1278 dlls/olesvr/Makefile
1279 dlls/opengl32/Makefile
1280 dlls/psapi/Makefile
1281 dlls/qcap/Makefile
1282 dlls/quartz/Makefile
1283 dlls/rasapi32/Makefile
1284 dlls/richedit/Makefile
1285 dlls/rpcrt4/Makefile
1286 dlls/serialui/Makefile
1287 dlls/setupapi/Makefile
1288 dlls/shdocvw/Makefile
1289 dlls/shell32/Makefile
1290 dlls/shfolder/Makefile
1291 dlls/shlwapi/Makefile
1292 dlls/sti/Makefile
1293 dlls/tapi32/Makefile
1294 dlls/ttydrv/Makefile
1295 dlls/url/Makefile
1296 dlls/urlmon/Makefile
1297 dlls/user/Makefile
1298 dlls/version/Makefile
1299 dlls/win32s/Makefile
1300 dlls/winaspi/Makefile
1301 dlls/winedos/Makefile
1302 dlls/wineps/Makefile
1303 dlls/wininet/Makefile
1304 dlls/winmm/Makefile
1305 dlls/winmm/joystick/Makefile
1306 dlls/winmm/mcianim/Makefile
1307 dlls/winmm/mciavi/Makefile
1308 dlls/winmm/mcicda/Makefile
1309 dlls/winmm/mciseq/Makefile
1310 dlls/winmm/mciwave/Makefile
1311 dlls/winmm/midimap/Makefile
1312 dlls/winmm/wavemap/Makefile
1313 dlls/winmm/wineoss/Makefile
1314 dlls/winnls/Makefile
1315 dlls/winsock/Makefile
1316 dlls/winspool/Makefile
1317 dlls/wintrust/Makefile
1318 dlls/wow32/Makefile
1319 dlls/wsock32/Makefile
1320 dlls/x11drv/Makefile
1321 documentation/Makefile
1322 documentation/wine.conf.man
1323 documentation/wine.man
1324 files/Makefile
1325 graphics/Makefile
1326 graphics/enhmetafiledrv/Makefile
1327 graphics/metafiledrv/Makefile
1328 graphics/win16drv/Makefile
1329 graphics/x11drv/Makefile
1330 if1632/Makefile
1331 include/Makefile
1332 library/Makefile
1333 libtest/Makefile
1334 loader/Makefile
1335 loader/dos/Makefile
1336 loader/ne/Makefile
1337 memory/Makefile
1338 misc/Makefile
1339 miscemu/Makefile
1340 msdos/Makefile
1341 objects/Makefile
1342 ole/Makefile
1343 programs/Makefile
1344 programs/avitools/Makefile
1345 programs/clock/Makefile
1346 programs/cmdlgtst/Makefile
1347 programs/control/Makefile
1348 programs/notepad/Makefile
1349 programs/osversioncheck/Makefile
1350 programs/progman/Makefile
1351 programs/regapi/Makefile
1352 programs/regtest/Makefile
1353 programs/uninstaller/Makefile
1354 programs/view/Makefile
1355 programs/wcmd/Makefile
1356 programs/wineconsole/Makefile
1357 programs/winemine/Makefile
1358 programs/winetest/Makefile
1359 programs/winhelp/Makefile
1360 programs/winver/Makefile
1361 relay32/Makefile
1362 scheduler/Makefile
1363 server/Makefile
1364 tools/Makefile
1365 tools/winapi/Makefile
1366 tools/winebuild/Makefile
1367 tools/winedump/Makefile
1368 tools/winelauncher
1369 tools/wmc/Makefile
1370 tools/wrc/Makefile
1371 tsx11/Makefile
1372 unicode/Makefile
1373 win32/Makefile
1374 windows/Makefile
1375 windows/x11drv/Makefile ])
1377 if test "$have_x" = "no"
1378 then
1379   echo
1380   echo "*** Warning: X development files not found. Wine will be built without"
1381   echo "*** X support, which currently does not work, and would probably not be"
1382   echo "*** what you want anyway. You will need to install devel packages of"
1383   echo "*** Xlib/Xfree86 and Xpm at the very least."
1384 elif test "$ac_cv_lib_Xpm_XpmCreatePixmapFromData" = "no"
1385 then
1386   echo
1387   echo "*** Warning: Xpm development files not found. Wine will be built without"
1388   echo "*** Xpm support, which currently does not work. You will need to install"
1389   echo "*** devel packages of Xpm."
1392 if test "$ac_cv_lib_ncurses_resizeterm" = "no" -a "$ac_cv_lib_ncurses_waddch" = "yes"
1393 then
1394   echo
1395   echo "*** Warning: resizeterm not found in ncurses. Wine will be built without"
1396   echo "*** terminal resize support. Consider upgrading ncurses."
1399 if test "$wine_cv_libc_reentrant" = "no" 
1400 then
1401   echo
1402   echo "*** Warning: non-reentrant libc detected. Wine will be build without"
1403   echo "*** thread support. Consider upgrading libc to a more recent"
1404   echo "*** reentrant version of libc."
1407 if test "$wine_cv_opengl_version_OK" = "no"
1408 then
1409   echo
1410   echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D"
1411   echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)."
1414 if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "normal"
1415 then
1416   echo
1417   echo "*** Warning: the OpenGL version you have installed relies on libpthread for"
1418   echo "*** thread-safety. To prevent crashes, OpenGL support has been removed."
1419   echo "*** A fix for glibc 2.1.3 that seems to work is included in this version of Wine,"
1420   echo "*** start configure with '--enable-opengl' to force OpenGL support."
1423 if test "$wine_cv_opengl_version_threadsafe" = "yes" -a $OPENGL = "yes"
1424 then
1425   echo
1426   echo "*** Warning: you explicitly linked in a thread-safe OpenGL version. If you"
1427   echo "*** experience unusual crashes on DirectDraw games, try first to disable OpenGL"
1428   echo "*** support before reporting bugs."
1431 if test "$wine_cv_warn_cups_h" = "yes"
1432 then
1433   echo
1434   echo "*** Note: You have cups runtime libraries, but no development"
1435   echo "*** libraries. Install the cups-devel package or whichever package"
1436   echo "*** contains cups.h to enable CUPS support in WINE."
1439 if test "$wine_cv_msg_freetype" = "yes"
1440 then
1441   echo
1442   echo "*** Note: Your system appears to have the FreeType 2 runtime libraries"
1443   echo "*** installed, but 'freetype-config' is not in your PATH. Install the"
1444   echo "*** freetype-devel package (or its equivalent on your distribution) to"
1445   echo "*** enable Wine to use TrueType fonts."
1448 echo
1449 echo "Configure finished.  Do 'make depend && make' to compile Wine."
1450 echo
1452 dnl Local Variables:
1453 dnl comment-start: "dnl "
1454 dnl comment-end: ""
1455 dnl comment-start-skip: "\\bdnl\\b\\s *"
1456 dnl compile-command: "autoconf"
1457 dnl End: