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