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