dswave: Remove DECLSPEC_HIDDEN usage.
[wine.git] / configure.ac
blob90c95c89ffb78e337e8be9cf63d5640eb2b8f98b
1 dnl Process this file with autoconf to produce a configure script.
2 dnl Original author: Michael Patra
3 dnl For detailed change history, see the git commit logs.
5 m4_define(WINE_VERSION,regexp(m4_include(VERSION),[version \([-.0-9A-Za-z]+\)],[\1]))
7 dnl autoconf versions before 2.63b don't have AS_VAR_APPEND or AS_VAR_IF
8 AC_PREREQ(2.63b)
9 AC_INIT([Wine],[WINE_VERSION],[wine-devel@winehq.org],[wine],[https://www.winehq.org])
10 AC_CONFIG_SRCDIR(server/atom.c)
11 AC_CONFIG_HEADERS(include/config.h)
12 AC_CONFIG_AUX_DIR(tools)
14 libwine_version="1.0"
16 dnl **** Command-line arguments ****
18 AC_ARG_ENABLE(archs, AS_HELP_STRING([--enable-archs={i386,x86_64,arm,aarch64}],[enable multiple architectures for PE compilation]))
19 AC_ARG_ENABLE(win16, AS_HELP_STRING([--disable-win16],[do not include Win16 support]))
20 AC_ARG_ENABLE(win64, AS_HELP_STRING([--enable-win64],[build a Win64 emulator on AMD64 (won't run Win32 binaries)]))
21 AC_ARG_ENABLE(tests, AS_HELP_STRING([--disable-tests],[do not build the regression tests]))
22 AC_ARG_ENABLE(build-id, AS_HELP_STRING([--enable-build-id],[include .buildid section in output objects]))
23 AC_ARG_ENABLE(maintainer-mode, AS_HELP_STRING([--enable-maintainer-mode],[enable maintainer-specific build rules]))
24 AC_ARG_ENABLE(silent-rules, AS_HELP_STRING([--enable-silent-rules],[use silent build rules (override: "make V=1")]))
25 AC_ARG_ENABLE(werror, AS_HELP_STRING([--enable-werror],[treat compilation warnings as errors]))
27 AC_ARG_WITH(alsa,      AS_HELP_STRING([--without-alsa],[do not use the Alsa sound support]))
28 AC_ARG_WITH(capi,      AS_HELP_STRING([--without-capi],[do not use CAPI (ISDN support)]))
29 AC_ARG_WITH(coreaudio, AS_HELP_STRING([--without-coreaudio],[do not use the CoreAudio sound support]))
30 AC_ARG_WITH(cups,      AS_HELP_STRING([--without-cups],[do not use CUPS]))
31 AC_ARG_WITH(dbus,      AS_HELP_STRING([--without-dbus],[do not use DBus (dynamic device support)]))
32 AC_ARG_WITH(float-abi, AS_HELP_STRING([--with-float-abi=abi],[specify the ABI (soft|softfp|hard) for ARM platforms]))
33 AC_ARG_WITH(fontconfig,AS_HELP_STRING([--without-fontconfig],[do not use fontconfig]))
34 AC_ARG_WITH(freetype,  AS_HELP_STRING([--without-freetype],[do not use the FreeType library]))
35 AC_ARG_WITH(gettext,   AS_HELP_STRING([--without-gettext],[do not use gettext]))
36 AC_ARG_WITH(gettextpo, AS_HELP_STRING([--with-gettextpo],[use the GetTextPO library to rebuild po files]),
37             [if test "x$withval" = "xno"; then ac_cv_header_gettext_po_h=no; fi])
38 AC_ARG_WITH(gphoto,    AS_HELP_STRING([--without-gphoto],[do not use gphoto (Digital Camera support)]))
39 AC_ARG_WITH(gnutls,    AS_HELP_STRING([--without-gnutls],[do not use GnuTLS (schannel support)]))
40 AC_ARG_WITH(gssapi,    AS_HELP_STRING([--without-gssapi],[do not use GSSAPI (Kerberos SSP support)]))
41 AC_ARG_WITH(gstreamer, AS_HELP_STRING([--without-gstreamer],[do not use GStreamer (codecs support)]))
42 AC_ARG_WITH(inotify,   AS_HELP_STRING([--without-inotify],[do not use inotify (filesystem change notifications)]))
43 AC_ARG_WITH(krb5,      AS_HELP_STRING([--without-krb5],[do not use krb5 (Kerberos)]))
44 AC_ARG_WITH(mingw,     AS_HELP_STRING([--without-mingw],[do not use the MinGW cross-compiler]))
45 AC_ARG_WITH(netapi,    AS_HELP_STRING([--without-netapi],[do not use the Samba NetAPI library]))
46 AC_ARG_WITH(opencl,    AS_HELP_STRING([--without-opencl],[do not use OpenCL]),
47             [if test "x$withval" = "xno"; then ac_cv_header_CL_cl_h=no; ac_cv_header_OpenCL_opencl_h=no; fi])
48 AC_ARG_WITH(opengl,    AS_HELP_STRING([--without-opengl],[do not use OpenGL]))
49 AC_ARG_WITH(osmesa,     AS_HELP_STRING([--without-osmesa],[do not use the OSMesa library]))
50 AC_ARG_WITH(oss,       AS_HELP_STRING([--without-oss],[do not use the OSS sound support]))
51 AC_ARG_WITH(pcap,      AS_HELP_STRING([--without-pcap],[do not use the Packet Capture library]),
52             [if test "x$withval" = "xno"; then ac_cv_header_pcap_pcap_h=no; fi])
53 AC_ARG_WITH(pcsclite,  AS_HELP_STRING([--without-pcsclite],[do not use PCSC lite]))
54 AC_ARG_WITH(pthread,   AS_HELP_STRING([--without-pthread],[do not use the pthread library]),
55             [if test "x$withval" = "xno"; then ac_cv_header_pthread_h=no; fi])
56 AC_ARG_WITH(pulse,     AS_HELP_STRING([--without-pulse],[do not use PulseAudio sound support]))
57 AC_ARG_WITH(sane,      AS_HELP_STRING([--without-sane],[do not use SANE (scanner support)]))
58 AC_ARG_WITH(sdl,       AS_HELP_STRING([--without-sdl],[do not use SDL]))
59 AC_ARG_WITH(udev,      AS_HELP_STRING([--without-udev],[do not use udev (plug and play support)]))
60 AC_ARG_WITH(unwind,    AS_HELP_STRING([--without-unwind],[do not use the libunwind library (exception handling)]))
61 AC_ARG_WITH(usb,       AS_HELP_STRING([--without-usb],[do not use the libusb library]))
62 AC_ARG_WITH(v4l2,      AS_HELP_STRING([--without-v4l2],[do not use v4l2 (video capture)]))
63 AC_ARG_WITH(vulkan,    AS_HELP_STRING([--without-vulkan],[do not use Vulkan]))
64 AC_ARG_WITH(wayland,   AS_HELP_STRING([--without-wayland],[do not build the Wayland driver]))
65 AC_ARG_WITH(xcomposite,AS_HELP_STRING([--without-xcomposite],[do not use the Xcomposite extension]),
66             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xcomposite_h=no; fi])
67 AC_ARG_WITH(xcursor,   AS_HELP_STRING([--without-xcursor],[do not use the Xcursor extension]),
68             [if test "x$withval" = "xno"; then ac_cv_header_X11_Xcursor_Xcursor_h=no; fi])
69 AC_ARG_WITH(xfixes,  AS_HELP_STRING([--without-xfixes],[do not use Xfixes for clipboard change notifications]),
70             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xfixes_h=no; fi])
71 AC_ARG_WITH(xinerama,  AS_HELP_STRING([--without-xinerama],[do not use Xinerama (legacy multi-monitor support)]),
72             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xinerama_h=no; fi])
73 AC_ARG_WITH(xinput,    AS_HELP_STRING([--without-xinput],[do not use the Xinput extension]),
74             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XInput_h=no; fi])
75 AC_ARG_WITH(xinput2,   AS_HELP_STRING([--without-xinput2],[do not use the Xinput 2 extension]),
76             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XInput2_h=no; fi])
77 AC_ARG_WITH(xrandr,    AS_HELP_STRING([--without-xrandr],[do not use Xrandr (multi-monitor support)]),
78             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrandr_h=no; fi])
79 AC_ARG_WITH(xrender,   AS_HELP_STRING([--without-xrender],[do not use the Xrender extension]),
80             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrender_h=no; fi])
81 AC_ARG_WITH(xshape,    AS_HELP_STRING([--without-xshape],[do not use the Xshape extension]),
82             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_shape_h=no; fi])
83 AC_ARG_WITH(xshm,      AS_HELP_STRING([--without-xshm],[do not use XShm (shared memory extension)]),
84             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XShm_h=no; fi])
85 AC_ARG_WITH(xxf86vm,   AS_HELP_STRING([--without-xxf86vm],[do not use XFree video mode extension]),
86             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_xf86vmode_h=no; ac_cv_header_X11_extensions_xf86vmproto_h=no; fi])
88 AC_ARG_WITH(system-dllpath,AS_HELP_STRING([--with-system-dllpath=PATH],[load external PE dependencies from colon-separated path PATH]),
89             AC_SUBST(system_dllpath,[$withval]))
90 AC_ARG_WITH(wine-tools,AS_HELP_STRING([--with-wine-tools=DIR],[use Wine tools from directory DIR]))
91 AC_ARG_WITH(wine64,    AS_HELP_STRING([--with-wine64=DIR],[use the 64-bit Wine in DIR for a Wow64 build]))
93 AC_CANONICAL_HOST
95 AC_SUBST(dlldir,[\${libdir}/wine])
96 AC_SUBST(fontdir,[\${datadir}/wine/fonts])
97 AC_SUBST(nlsdir,[\${datadir}/wine/nls])
98 AC_SUBST(srcdir)
100 dnl **** Check for some programs ****
102 AC_PROG_MAKE_SET
103 AC_PROG_CC
104 AC_PROG_CXX
105 dnl We can't use AC_PROG_CPP for winegcc, it uses by default $(CC) -E
106 AC_CHECK_TOOL(CPPBIN,cpp,cpp)
107 AC_DEFINE_UNQUOTED(EXEEXT,["$ac_exeext"],[Define to the file extension for executables.])
108 AC_CHECK_TOOL(LD,ld)
110 case $host in
111   *-darwin*)
112     with_fontconfig=${with_fontconfig:-no}
113     ;;
114   *-mingw32*|*-cygwin*)
115     enable_win16=${enable_win16:-no}
116     with_mingw=${with_mingw:-no}
117     ;;
118 esac
120 AC_SUBST(TARGETFLAGS)
121 case $host in
122   x86_64*|amd64*)
123     if test "x$enable_win64" != "xyes" -a "$cross_compiling" != "yes" -a x"$enable_archs" = x
124     then
125       CC="$CC -m32"
126       CXX="$CXX -m32"
127       AC_CACHE_CHECK([whether $CC works], wine_cv_cc_m32,
128           [AC_LINK_IFELSE([AC_LANG_PROGRAM()],[wine_cv_cc_m32=yes],[wine_cv_cc_m32=no])])
129       test $wine_cv_cc_m32 != no || AC_MSG_ERROR([Cannot build a 32-bit program, you need to install 32-bit development libraries.])
130       host_cpu="i386"
131       notice_platform="32-bit "
132       TARGETFLAGS="$TARGETFLAGS -m32"
133       PKG_CONFIG_LIBDIR=${PKG_CONFIG_LIBDIR:-/usr/lib/i386-linux-gnu/pkgconfig:/usr/lib32/pkgconfig:/usr/lib/pkgconfig}
134       export PKG_CONFIG_LIBDIR
135       with_unwind=${with_unwind:-no}
136     else
137       if test "x${GCC}" = "xyes"
138       then
139         AC_CACHE_CHECK([whether $CC supports __builtin_ms_va_list],wine_cv_builtin_ms_va_list,
140             [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdarg.h>]], [[void func(__builtin_ms_va_list *args);]])],
141                           [wine_cv_builtin_ms_va_list=yes],[wine_cv_builtin_ms_va_list=no])])
142         test $wine_cv_builtin_ms_va_list != no || AC_MSG_ERROR([You need gcc >= 4.4 or clang >= 3.8 to build Wine as 64-bit.])
143       fi
144       CC="$CC -m64"
145       CXX="$CXX -m64"
146       host_cpu="x86_64"
147       notice_platform="64-bit "
148       TARGETFLAGS="$TARGETFLAGS -m64"
149     fi
150     ;;
151   arm*)
152     AC_CACHE_CHECK([whether $CC supports Thumb-2],wine_cv_thumb2,
153         [WINE_TRY_ASM_LINK([".syntax unified\n\t.thumb\n\tldm r0,{r0-r8}"],,,
154                            [wine_cv_thumb2=yes],[wine_cv_thumb2=no])])
155     if test x"$wine_cv_thumb2" = xyes
156     then
157         CFLAGS="$CFLAGS -mthumb"
158         TARGETFLAGS="$TARGETFLAGS -mthumb"
159     else
160         CFLAGS="$CFLAGS -marm"
161         TARGETFLAGS="$TARGETFLAGS -marm"
162     fi
163     case $with_float_abi in
164       soft|softfp|hard)
165         float_abi=$with_float_abi ;;
166       *)
167         case $host_os in
168           *eabihf)
169             float_abi=hard ;;
170           *)
171             float_abi=softfp
172             saved_CFLAGS=$CFLAGS
173             CFLAGS="$CFLAGS -mfloat-abi=$float_abi"
174             AC_CACHE_CHECK([whether $CC supports -mfloat-abi=$float_abi],wine_cv_float_abi,
175                 [WINE_TRY_ASM_LINK(["vmrs r2,fpscr"],,,[wine_cv_float_abi=yes],[wine_cv_float_abi=no])])
176             if test $wine_cv_float_abi = no
177             then
178                 float_abi=soft
179                 WINE_WARNING([Floating point is not supported for this target. The resulting build won't be compatible with Windows ARM binaries.])
180             fi
181             CFLAGS=$saved_CFLAGS
182         esac
183         ;;
184     esac
185     CFLAGS="$CFLAGS -mfloat-abi=$float_abi"
186     TARGETFLAGS="$TARGETFLAGS -mfloat-abi=$float_abi"
187     ;;
188   i[[3456789]]86*)
189     with_unwind=${with_unwind:-no}
190     ;;
191 esac
193 enable_win16=${enable_win16:-i386}
194 enable_win64=${enable_win64:-no}
195 enable_wow64=${enable_wow64:-aarch64,x86_64}
196 enable_wow64win=${enable_wow64win:-aarch64,x86_64}
197 enable_wow64cpu=${enable_wow64cpu:-x86_64}
199 dnl Disable winetest too if tests are disabled
200 enable_winetest=${enable_winetest:-$enable_tests}
202 dnl Some special cases for the 64-bit build
203 if test "x$enable_win64" = "xyes"
204 then
205     test -z "$with_wine64" || AC_MSG_ERROR([--enable-win64 and --with-wine64 are mutually exclusive.
206 --enable-win64 should be used in the 64-bit build tree, --with-wine64 in the 32-bit Wow64 build tree.])
209 case $build_os in
210   cygwin*|mingw32*) AC_SUBST(toolsext,".exe") ;;
211   *) AC_SUBST(toolsext,"") ;;
212 esac
214 HOST_ARCH=unknown
215 case "$host_cpu" in
216   aarch64*)        HOST_ARCH=aarch64 ;;
217   arm*)            HOST_ARCH=arm ;;
218   i[[3456789]]86*) HOST_ARCH=i386 ;;
219   x86_64)          HOST_ARCH=x86_64 ;;
220 esac
221 m4_set_add_all([_AC_SUBST_VARS],[HOST_ARCH]m4_foreach([cpu],[aarch64,arm,i386,x86_64],
222                                 [m4_foreach([var],[CC,CFLAGS,EXTRACFLAGS,LDFLAGS,DEBUG,TARGET,DELAYLOADFLAG,DISABLED_SUBDIRS],[,cpu[_]var])]))
224 AC_CACHE_CHECK([for the directory containing the Wine tools], wine_cv_toolsdir,
225   [wine_cv_toolsdir="$with_wine_tools"
226    if test -z "$with_wine_tools"; then
227      if test "$cross_compiling" = "yes"; then
228        AC_MSG_ERROR([you must use the --with-wine-tools option when cross-compiling.])
229      elif test -n "$with_wine64"; then
230        wine_cv_toolsdir="$with_wine64"
231      fi
232    fi])
233 if test -z "$wine_cv_toolsdir"; then
234     wine_makedep=tools/makedep$toolsext
235 elif test -d "$wine_cv_toolsdir/tools/winebuild"; then
236     wine_makedep=$wine_cv_toolsdir/tools/makedep$toolsext
237     enable_tools=${enable_tools:-no}
238     test -f "$wine_makedep" || AC_MSG_ERROR([the Wine tools have not yet been built in $wine_cv_toolsdir])
239 else
240     AC_MSG_ERROR([could not find Wine tools in $wine_cv_toolsdir])
242 AC_SUBST(toolsdir,[$wine_cv_toolsdir])
243 AC_SUBST(MAKEDEP,[$wine_makedep])
244 AC_SUBST(RUNTESTFLAGS,["-q -P wine"])
245 AC_SUBST(SED_CMD,["LC_ALL=C sed -e 's,@bindir@,\${bindir},g' -e 's,@dlldir@,\${dlldir},g' -e 's,@PACKAGE_STRING@,$PACKAGE_STRING,g' -e 's,@PACKAGE_VERSION@,$PACKAGE_VERSION,g'"])
247 if test -n "$host_alias" -a "$host_alias" != "$build_alias"
248 then
249     TARGETFLAGS="-b $host_alias $TARGETFLAGS"
252 dnl Check for flex
253 AC_CHECK_PROGS(FLEX,flex,none)
254 if test "$FLEX" = "none"
255 then
256   AC_MSG_ERROR([no suitable flex found. Please install the 'flex' package.])
258 AC_CACHE_CHECK([whether flex is recent enough],wine_cv_recent_flex,
259     [cat >conftest.l <<EOF
260 %top{
261 #include "prediluvian.h"
265     if $FLEX -t conftest.l >/dev/null 2>&AS_MESSAGE_LOG_FD
266     then
267       wine_cv_recent_flex=yes
268     else
269       wine_cv_recent_flex=no
270     fi])
271 test $wine_cv_recent_flex != no || AC_MSG_ERROR([Your flex version is too old. Please install flex version 2.5.33 or newer.])
273 dnl Check for bison
274 AC_CHECK_PROGS(BISON,bison,none)
275 if test "$BISON" = "none"
276 then
277   AC_MSG_ERROR([no suitable bison found. Please install the 'bison' package.])
279 AC_CACHE_CHECK([whether bison is recent enough],wine_cv_recent_bison,
280     [cat >conftest.y <<EOF
281 %define parse.error verbose
283 empty: ;
285     if $BISON conftest.y >/dev/null 2>&AS_MESSAGE_LOG_FD
286     then
287       wine_cv_recent_bison=yes
288     else
289       wine_cv_recent_bison=no
290     fi])
291 test $wine_cv_recent_bison != no || AC_MSG_ERROR([Your bison version is too old. Please install bison version 3.0 or newer.])
293 AC_CHECK_TOOLS(AR,[ar gar],ar)
294 AC_CHECK_TOOL(STRIP,strip,strip)
295 AC_PROG_RANLIB
296 AC_PROG_LN_S
297 AC_PROG_EGREP
298 AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH])
299 AC_CHECK_PROGS(MSGFMT, msgfmt, false)
300 WINE_PATH_PKG_CONFIG
302 if test "x$enable_maintainer_mode" != "xyes"
303 then
304   FONTFORGE=""
305   RSVG=""
306   CONVERT=""
307   ICOTOOL=""
308 else
309   test "$srcdir" = . || AC_MSG_ERROR([Maintainer mode cannot work out of tree.])
310   AC_CHECK_PROGS(FONTFORGE, fontforge, false)
311   AC_CHECK_PROGS(RSVG, rsvg-convert rsvg, false)
312   AC_CHECK_PROGS(CONVERT, convert, false)
313   AC_CHECK_PROGS(ICOTOOL, icotool, false)
314   test "$FONTFORGE" != "false" || AC_MSG_ERROR([You need fontforge to rebuild fonts in maintainer mode.])
315   test "$RSVG" != "false" || AC_MSG_ERROR([You need rsvg to rebuild icons in maintainer mode.])
317   dnl Check the imagemagick version
318   if test "$CONVERT" = false
319   then
320     AC_MSG_ERROR([You need imagemagick to rebuild icons in maintainer mode.])
321   else
322     AC_MSG_CHECKING([for recent enough imagemagick])
323     convert_version=`convert --version | head -n1`
324     if test "x$convert_version" != "x"
325     then
326       convert_version_major=`expr "$convert_version" : '.* \([[0-9]]*\)\.[[0-9]]*'`
327       convert_version_minor=`expr "$convert_version" : '.* [[0-9]]*\.\([[0-9]]*\)'`
328       if test "$convert_version_major" -eq 6 -a "$convert_version_minor" -lt 6
329       then
330         CONVERT=false
331       fi
332     fi
333     if test "$CONVERT" = false
334     then
335       AC_MSG_RESULT([no ($convert_version_major.$convert_version_minor)])
336       AC_MSG_ERROR([You need imagemagick version 6.6 or newer to rebuild icons in maintainer mode.])
337     else
338       AC_MSG_RESULT([yes ($convert_version_major.$convert_version_minor)])
339     fi
340   fi
342   dnl Check the icotool version
343   if test "$ICOTOOL" = false
344   then
345     AC_MSG_ERROR([You need icotool to rebuild icons in maintainer mode.])
346   else
347     AC_MSG_CHECKING([for recent enough icotool])
348     icotool_version=`icotool --version | head -n1`
349     if test "x$icotool_version" != "x"
350     then
351       icotool_version_major=`expr "$icotool_version" : '.* \([[0-9]]*\)\.[[0-9]]*'`
352       icotool_version_minor=`expr "$icotool_version" : '.* [[0-9]]*\.\([[0-9]]*\)'`
353       if test "$icotool_version_major" -eq 0 -a "$icotool_version_minor" -lt 29
354       then
355         ICOTOOL=false
356         WINE_WARNING([icotool version 0.29.0 or newer is needed to rebuild icons.])
357       fi
358     fi
359     if test "$ICOTOOL" = false
360     then
361       AC_MSG_RESULT([no ($icotool_version_major.$icotool_version_minor)])
362       AC_MSG_ERROR([You need icotool version 0.29.0 or newer to rebuild icons in maintainer mode.])
363     else
364       AC_MSG_RESULT([yes ($icotool_version_major.$icotool_version_minor)])
365     fi
366   fi
368   dnl Maintainer mode requires gettext
369   with_gettext=yes
370   with_gettextpo=yes
372   dnl Maintainer mode wants -Werror
373   enable_werror=yes
376 test "x$with_gettext" != xno || MSGFMT=false
377 if test "$MSGFMT" != "false"
378 then
379   AC_CACHE_CHECK([whether msgfmt supports contexts],wine_cv_msgfmt_contexts,
380   [cat >conftest.po <<EOF
381 # comment
382 msgctxt "ctxt"
383 msgid "id"
384 msgstr "str"
386   if $MSGFMT -o /dev/null conftest.po 2>&AS_MESSAGE_LOG_FD
387   then
388     wine_cv_msgfmt_contexts=yes
389   else
390     wine_cv_msgfmt_contexts=no
391   fi])
392   test $wine_cv_msgfmt_contexts != no || MSGFMT=false
394 WINE_WARNING_WITH(gettext,[test "$MSGFMT" = false],
395                   [gettext tools not found (or too old), translations won't be built.],
396                   [enable_po])
398 dnl **** Check for some libraries ****
400 dnl Check for -li386 for NetBSD and OpenBSD
401 AC_CHECK_LIB(i386,i386_set_ldt,[AC_SUBST(I386_LIBS, "-li386")])
403 AC_SUBST(OPENGL_LIBS,"")
405 dnl **** Check for header files ****
407 AC_SYS_LARGEFILE()
409 AC_CHECK_HEADERS(\
410         CL/cl.h \
411         EGL/egl.h \
412         OpenCL/opencl.h \
413         arpa/inet.h \
414         arpa/nameser.h \
415         asm/types.h \
416         asm/user.h \
417         elf.h \
418         float.h \
419         gettext-po.h \
420         libproc.h \
421         link.h \
422         linux/cdrom.h \
423         linux/filter.h \
424         linux/hdreg.h \
425         linux/hidraw.h \
426         linux/input.h \
427         linux/ioctl.h \
428         linux/major.h \
429         linux/param.h \
430         linux/serial.h \
431         linux/types.h \
432         linux/ucdrom.h \
433         lwp.h \
434         mach-o/loader.h \
435         mach/mach.h \
436         machine/cpu.h \
437         machine/sysarch.h \
438         mntent.h \
439         netdb.h \
440         netinet/in.h \
441         netinet/in_systm.h \
442         netinet/tcp.h \
443         netinet/tcp_fsm.h \
444         pcap/pcap.h \
445         port.h \
446         pthread.h \
447         pwd.h \
448         sched.h \
449         scsi/scsi.h \
450         scsi/scsi_ioctl.h \
451         scsi/sg.h \
452         stdint.h \
453         sys/attr.h \
454         sys/auxv.h \
455         sys/cdio.h \
456         sys/epoll.h \
457         sys/event.h \
458         sys/extattr.h \
459         sys/filio.h \
460         sys/ipc.h \
461         sys/link.h \
462         sys/modem.h \
463         sys/mtio.h \
464         sys/param.h \
465         sys/prctl.h \
466         sys/ptrace.h \
467         sys/queue.h \
468         sys/random.h \
469         sys/resource.h \
470         sys/scsiio.h \
471         sys/shm.h \
472         sys/signal.h \
473         sys/socketvar.h \
474         sys/sockio.h \
475         sys/statvfs.h \
476         sys/strtio.h \
477         sys/syscall.h \
478         sys/sysinfo.h \
479         sys/times.h \
480         sys/uio.h \
481         sys/user.h \
482         sys/utsname.h \
483         sys/vnode.h \
484         sys/xattr.h \
485         syscall.h \
486         utime.h \
487         valgrind/memcheck.h \
488         valgrind/valgrind.h
490 WINE_HEADER_MAJOR()
491 AC_HEADER_STAT()
493 dnl **** Checks for headers that depend on other ones ****
495 AC_CHECK_HEADERS([sys/conf.h sys/mount.h sys/statfs.h sys/user.h sys/vfs.h],,,
496     [#include <sys/types.h>
497      #ifdef HAVE_SYS_PARAM_H
498      # include <sys/param.h>
499      #endif])
501 dnl check for broken Linux sysctl.h that causes deprecation warnings
502 saved_sysctl_h_CFLAGS=$CFLAGS
503 test "x${GCC}" != xyes || CFLAGS="$CFLAGS -Werror"
504 AC_CHECK_HEADERS([sys/sysctl.h],,,
505     [#include <sys/types.h>
506      #ifdef HAVE_SYS_PARAM_H
507      # include <sys/param.h>
508      #endif])
509 CFLAGS=$saved_sysctl_h_CFLAGS
511 AC_CHECK_HEADERS(\
512         netinet/ip.h \
513         net/if.h \
514         net/if_arp.h \
515         net/if_dl.h \
516         net/if_types.h \
517         net/route.h \
518         netinet/if_ether.h \
519         netinet/in_pcb.h \
520         netinet/ip_icmp.h \
521         netinet/ip_var.h \
522         netinet/udp.h \
523         netinet6/ip6_var.h \
524         netipx/ipx.h \
525         sys/un.h \
526 ,,,[#include <sys/types.h>
527      #include <sys/socket.h>
528      #ifdef HAVE_SYS_SOCKETVAR_H
529      # include <sys/socketvar.h>
530      #endif
531      #ifdef HAVE_NET_ROUTE_H
532      # include <net/route.h>
533      #endif
534      #ifdef HAVE_NETINET_IN_H
535      # include <netinet/in.h>
536      #endif
537      #ifdef HAVE_NETINET_IN_SYSTM_H
538      # include <netinet/in_systm.h>
539      #endif
540      #ifdef HAVE_NET_IF_H
541      # include <net/if.h>
542      #endif
543      #ifdef HAVE_NETINET_IP_H
544      # include <netinet/ip.h>
545      #endif])
547 AC_CHECK_HEADERS([netinet/udp_var.h netinet/icmp_var.h netinet/icmp6.h netinet/tcp_var.h ],,,
548     [#include <sys/types.h>
549      #include <sys/socket.h>
550      #ifdef HAVE_SYS_SOCKETVAR_H
551      # include <sys/socketvar.h>
552      #endif
553      #ifdef HAVE_NETINET_IN_H
554      # include <netinet/in.h>
555      #endif
556      #ifdef HAVE_NETINET_IN_SYSTM_H
557      # include <netinet/in_systm.h>
558      #endif
559      #ifdef HAVE_NETINET_IP_H
560      # include <netinet/ip.h>
561      #endif
562      #ifdef HAVE_NETINET_IP_VAR_H
563      # include <netinet/ip_var.h>
564      #endif
565      #ifdef HAVE_NETINET_IP_ICMP_H
566      # include <netinet/ip_icmp.h>
567      #endif
568      #ifdef HAVE_NETINET_UDP_H
569      # include <netinet/udp.h>
570      #endif
571      #ifdef HAVE_NETINET_TCP_H
572      # include <netinet/tcp.h>
573      #endif])
575 AC_CHECK_HEADERS([linux/ipx.h linux/irda.h linux/rtnetlink.h],,,
576     [#include <sys/types.h>
577      #include <sys/socket.h>
578      #ifdef HAVE_ASM_TYPES_H
579      # include <asm/types.h>
580      #endif
581      #ifdef HAVE_LINUX_TYPES_H
582      # include <linux/types.h>
583      #endif])
585 AC_CHECK_HEADERS([resolv.h],,,
586     [#include <sys/types.h>
587      #include <sys/socket.h>
588      #ifdef HAVE_NETINET_IN_H
589      # include <netinet/in.h>
590      #endif
591      #ifdef HAVE_ARPA_NAMESER_H
592      # include <arpa/nameser.h>
593      #endif])
595 AC_CHECK_HEADERS([ifaddrs.h],,,[#include <sys/types.h>])
597 AC_CHECK_HEADERS(sys/ucontext.h,,,[#include <signal.h>])
599 AC_CHECK_HEADERS([sys/thr.h],,,
600 [#include <sys/types.h>
601 #ifdef HAVE_SYS_UCONTEXT_H
602 #include <sys/ucontext.h>
603 #endif])
605 AC_CHECK_HEADERS([pthread_np.h],,,
606 [#ifdef HAVE_PTHREAD_H
607 #include <pthread.h>
608 #endif])
610 AC_CHECK_HEADERS([linux/videodev2.h],,,
611 [#include <sys/time.h>
612 #include <sys/types.h>
613 #ifdef HAVE_ASM_TYPES_H
614 #include <asm/types.h>
615 #endif])
617 AC_CHECK_HEADERS([libprocstat.h],,,
618 [#ifdef HAVE_SYS_PARAM_H
619 #include <sys/param.h>
620 #endif
621 #include <sys/socket.h>
622 #ifdef HAVE_SYS_QUEUE_H
623 #include <sys/queue.h>
624 #endif])
626 if test "x$ac_cv_header_sys_xattr_h" = xyes
627 then
628     AC_CACHE_CHECK([whether getxattr takes additional arguments], wine_cv_xattr_extra_args,
629         [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/xattr.h>]], [[getxattr("", "", "", 0, 0, 0);]])],
630                            [wine_cv_xattr_extra_args=yes],[wine_cv_xattr_extra_args=no])])
631     test $wine_cv_xattr_extra_args != yes || AC_DEFINE(XATTR_ADDITIONAL_OPTIONS, 1, [Define if xattr functions take additional arguments (macOS)])
634 dnl **** Check for working dll ****
636 AC_SUBST(DLLFLAGS,"")
637 AC_SUBST(LDDLLFLAGS,"")
638 AC_SUBST(LDEXECFLAGS,"")
639 AC_SUBST(EXTRACFLAGS,"")
640 AC_SUBST(UNIXDLLFLAGS,"-fPIC")
641 AC_SUBST(UNIXLDFLAGS,["-shared -Wl,-Bsymbolic -Wl,-soname,\$(UNIXLIB)"])
642 AC_SUBST(TOP_INSTALL_LIB,"")
643 AC_SUBST(TOP_INSTALL_DEV,"")
644 AC_SUBST(WINELOADER_LDFLAGS,"")
645 AC_SUBST(WINEPRELOADER_LDFLAGS,"")
646 AC_SUBST(DLLEXT,".so")
647 LIBEXT="so"
648 WINE_PATH_SONAME_TOOLS
649 WINE_CONFIG_HELPERS
651 case $host_os in
652   cygwin*|mingw32*)
653     LIBEXT="dll"
654     DLLEXT=""
655     EXTRACFLAGS="-D__WINE_PE_BUILD"
656     dnl Disable stdcall fixups to catch prototype mismatches
657     case $host_cpu in
658       *i[[3456]]86*) WINE_TRY_CFLAGS([-Wl,--disable-stdcall-fixup],
659                                      [LDDLLFLAGS="-Wl,--disable-stdcall-fixup"]) ;;
660     esac
661     dnl Disable modules that can't be used on Windows
662     enable_loader=${enable_loader:-no}
663     enable_server=${enable_server:-no}
664     dnl Disable dependencies that are not useful on Windows
665     with_x=${with_x:-no}
666     with_pthread=${with_pthread:-no}
667     ;;
669   darwin*|macosx*)
670     LIBEXT="dylib"
671     DLLFLAGS="$DLLFLAGS -fPIC"
672     LDDLLFLAGS="-fPIC"
673     enable_winemac_drv=${enable_winemac_drv:-yes}
674     dnl declare needed frameworks
675     AC_SUBST(CARBON_LIBS,"-framework Carbon")
676     AC_SUBST(COREFOUNDATION_LIBS,"-framework CoreFoundation")
677     AC_SUBST(DISKARBITRATION_LIBS,"-framework DiskArbitration -framework CoreFoundation")
678     AC_SUBST(IOKIT_LIBS,"-framework IOKit -framework CoreFoundation")
679     AC_SUBST(METAL_LIBS,"-framework Metal")
680     AC_SUBST(APPLICATIONSERVICES_LIBS,"-framework ApplicationServices")
681     AC_SUBST(CORESERVICES_LIBS,"-framework CoreServices")
682     AC_SUBST(APPKIT_LIBS,"-framework AppKit")
683     AC_SUBST(SECURITY_LIBS,"-framework Security -framework CoreFoundation")
684     AC_SUBST(SYSTEMCONFIGURATION_LIBS,"-framework SystemConfiguration")
686     WINELOADER_LDFLAGS="-Wl,-pie,-segalign,0x1000,-pagezero_size,0x1000,-sectcreate,__TEXT,__info_plist,loader/wine_info.plist"
688     wine_can_build_preloader=yes
689     WINEPRELOADER_LDFLAGS="-nostartfiles -nodefaultlibs -e _start -ldylib1.o -Wl,-image_base,0x7d400000,-segalign,0x1000,-pagezero_size,0x1000,-sectcreate,__TEXT,__info_plist,loader/wine_info.plist,-segaddr,WINE_4GB_RESERVE,0x100000000"
690     WINE_TRY_CFLAGS([-Wl,-no_new_main -e _main],
691                     [WINEPRELOADER_LDFLAGS="-Wl,-no_new_main $WINEPRELOADER_LDFLAGS"
692                      WINE_TRY_CFLAGS([-Wl,-no_new_main -e _main -mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs],
693                                      [WINEPRELOADER_LDFLAGS="-mmacosx-version-min=10.7 $WINEPRELOADER_LDFLAGS"],
694                                      [wine_can_build_preloader=no])],
695                     [WINE_TRY_CFLAGS([-mmacosx-version-min=10.7 -nostartfiles -nodefaultlibs],
696                                      [WINEPRELOADER_LDFLAGS="-mmacosx-version-min=10.7 $WINEPRELOADER_LDFLAGS"],
697                                      [wine_can_build_preloader=no])])
698     if test "$wine_can_build_preloader" = "yes"
699     then
700         WINE_TRY_CFLAGS([-Wl,-no_pie],
701                         [WINEPRELOADER_LDFLAGS="-Wl,-no_pie $WINEPRELOADER_LDFLAGS"])
702         dnl If preloader is used, the loader needs to be an LC_UNIXTHREAD binary to avoid AppKit/Core Animation problems.
703         WINELOADER_LDFLAGS="$WINELOADER_LDFLAGS -mmacosx-version-min=10.7"
704     else
705         WINE_WARNING([can't build Wine preloader; many programs won't work])
706     fi
708     if test "x$with_coreaudio" != "xno";
709     then
710         AC_SUBST(COREAUDIO_LIBS,"-framework CoreFoundation -framework CoreAudio -framework AudioUnit -framework AudioToolbox -framework CoreMIDI")
711         enable_winecoreaudio_drv=${enable_winecoreaudio_drv:-yes}
712     fi
713     if test "$ac_cv_header_OpenCL_opencl_h" = "yes"
714     then
715         AC_SUBST(OPENCL_LIBS,"-framework OpenCL")
716         ac_cv_lib_OpenCL_clGetPlatformInfo=yes
717     fi
719     dnl Check for MTLDevice registryID property
720     AC_MSG_CHECKING([whether MTLDevice protocol supports registryID property])
721     AC_LANG_PUSH([Objective C])
722     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <Metal/Metal.h>]], [[id<MTLDevice> device; device.registryID;]])],
723                           [AC_MSG_RESULT(yes)
724                            AC_DEFINE(HAVE_MTLDEVICE_REGISTRYID, 1, [Define if MTLDevice protocol has registryID property.])],
725                           [AC_MSG_RESULT(no)])
726     AC_LANG_POP([Objective C])
728     UNIXLDFLAGS="-dynamiclib -install_name @rpath/\$(UNIXLIB) -Wl,-rpath,@loader_path\/"
729     AC_SUBST(WINELOADER_DEPENDS,"wine_info.plist")
730     ;;
732   linux-android*)
733     AC_DEFINE(_GNU_SOURCE,1,[Define to 1 to enable GNU extensions on Linux])
734     DLLFLAGS="$DLLFLAGS -fPIC"
735     LDDLLFLAGS="-fPIC"
736     LDEXECFLAGS="-Wl,-pie"
737     enable_wineandroid_drv=${enable_wineandroid_drv:-yes}
738     WINE_TRY_CFLAGS([-Wl,-z,defs],[UNIXLDFLAGS="$UNIXLDFLAGS -Wl,-z,defs"])
739     WINE_TRY_CFLAGS([-fPIC -Wl,--export-dynamic],[WINELOADER_LDFLAGS="-Wl,--export-dynamic"])
740     WINEPRELOADER_LDFLAGS="-static -nostartfiles -nodefaultlibs -Wl,-Ttext=0x7d400000"
742     WINE_CHECK_SONAME(EGL,eglGetProcAddress)
743     WINE_CHECK_SONAME(GLESv2,glFlush)
745     if test "x$exec_prefix" = xNONE
746     then
747       case $host_cpu in
748         *i[[3456]]86*) exec_prefix='${prefix}/x86' ;;
749         *x86_64*)      exec_prefix='${prefix}/x86_64' ;;
750         *arm*)         exec_prefix='${prefix}/armeabi-v7a' ;;
751         *aarch64*)     exec_prefix='${prefix}/arm64-v8a' ;;
752       esac
753     fi
754     ;;
756   *)
757     AC_DEFINE(_GNU_SOURCE,1,[Define to 1 to enable GNU extensions on Linux])
758     test "$ac_cv_sys_file_offset_bits" = 64 && AC_DEFINE(_TIME_BITS,64,[Define to 64 to enable 64-bit time_t on Linux])
759     case $host_cpu in
760       *i[[3456789]]86*)
761         DLLFLAGS="$DLLFLAGS -fno-PIC"
762         LDDLLFLAGS="-fno-PIC"
763         WINE_TRY_CFLAGS([-fno-PIC -Wl,-z,notext],[LDDLLFLAGS="$LDDLLFLAGS -Wl,-z,notext"])
764         ;;
765       *)
766         DLLFLAGS="$DLLFLAGS -fPIC"
767         LDDLLFLAGS="-fPIC" ;;
768     esac
770     WINE_TRY_CFLAGS([-Wl,-z,defs],[UNIXLDFLAGS="$UNIXLDFLAGS -Wl,-z,defs"])
771     WINE_TRY_CFLAGS([-Wl,--export-dynamic],[WINELOADER_LDFLAGS="-Wl,--export-dynamic"])
772     WINEPRELOADER_LDFLAGS="-nostartfiles -nodefaultlibs"
774     case $host_os in
775       linux*)
776         AS_VAR_APPEND([WINELOADER_LDFLAGS],[" -pie"])
777         case $HOST_ARCH in
778           i386|arm)
779             AS_VAR_APPEND([WINEPRELOADER_LDFLAGS],[" -static -Wl,-Ttext=0x7d400000"]) ;;
780           *)
781             WINE_TRY_CFLAGS([-static-pie],
782                             [AS_VAR_APPEND([WINEPRELOADER_LDFLAGS],[" -static-pie"])],
783                             [AS_VAR_APPEND([WINEPRELOADER_LDFLAGS],[" -static -Wl,-Ttext=0x7d7d00000000"])])
784             ;;
785         esac
786         ;;
787       *)
788         case $HOST_ARCH in
789           i386|arm)
790             WINE_TRY_CFLAGS([-Wl,-Ttext-segment=0x60000000],
791                             [AS_VAR_APPEND([WINELOADER_LDFLAGS],[" -Wl,-Ttext-segment=0x60000000"])],
792                             [WINE_TRY_CFLAGS([-Wl,--section-start,.interp=0x60000400],
793                                 [AS_VAR_APPEND([WINELOADER_LDFLAGS],[" -Wl,--section-start,.interp=0x60000400"])])])
794             ;;
795           *)
796             AS_VAR_APPEND([WINELOADER_LDFLAGS],[" -pie"])
797             ;;
798         esac
799         ;;
800     esac
801     ;;
802 esac
804 enable_winecoreaudio_drv=${enable_winecoreaudio_drv:-no}
805 enable_wineandroid_drv=${enable_wineandroid_drv:-no}
806 enable_winemac_drv=${enable_winemac_drv:-no}
808 dnl Check for cross compiler(s)
809 AC_SUBST(PE_ARCHS,"")
810 cross_archs=
811 AS_VAR_SET_IF([enable_archs],
812     [test "x$with_system_dllpath" = "x" || AC_MSG_ERROR("The --with-system-dllpath option is not compatible with --enable-archs")
813      ac_save_IFS=$IFS
814      IFS=' ,'
815      set x $enable_archs
816      IFS=$ac_save_IFS
817      shift
818      for arch
819      do
820          case $arch in
821            i386|x86_64|arm|aarch64) cross_archs="$cross_archs $arch" ;;
822            *) AC_MSG_ERROR([Unknown cross-compilation architecture '$arch']) ;;
823          esac
824      done],
825     [if test "x$with_mingw" != xno
826      then
827          test $HOST_ARCH = unknown || cross_archs=$HOST_ARCH
828          case "x$with_mingw" in
829            x|xyes) ;;
830            *) AS_VAR_SET(${cross_archs}_CC,$with_mingw) ;;
831          esac
832      fi])
834 for wine_arch in $cross_archs
836     AS_VAR_IF([${wine_arch}_CC],[],
837         [case $wine_arch in
838           aarch64)
839             AC_CHECK_PROGS(aarch64_CC,[aarch64-w64-mingw32-clang aarch64-w64-mingw32-gcc clang],[false])
840             ;;
841           arm)
842             AC_CHECK_PROGS(arm_CC,[armv7-w64-mingw32-clang armv7-w64-mingw32-gcc clang],[false])
843             ;;
844          i386)
845             ac_prefix_list="m4_foreach([cc],[gcc,clang],m4_foreach([cpu],[i686,i586,i486,i386],[cpu-w64-mingw32-cc ]))"
846             AC_CHECK_PROGS(i386_CC,[$ac_prefix_list clang],[false])
847             ;;
848          x86_64)
849             ac_prefix_list="m4_foreach([cc],[gcc,clang],m4_foreach([cpu],[x86_64,amd64],[cpu-w64-mingw32-cc ]))"
850             AC_CHECK_PROGS(x86_64_CC,[$ac_prefix_list clang],[false])
851             ;;
852         esac])
854     AS_VAR_IF([${wine_arch}_CC],[false],[continue])
856     saved_CC=$CC
857     saved_CFLAGS=$CFLAGS
858     saved_LDFLAGS=$LDFLAGS
860     CFLAGS=${CROSSCFLAGS:-"-g -O2"}
861     LDFLAGS=$CROSSLDFLAGS
862     AS_VAR_COPY([CC],[${wine_arch}_CC])
863     AS_VAR_COPY([${wine_arch}_CFLAGS],[CFLAGS])
864     AS_VAR_COPY([${wine_arch}_LDFLAGS],[LDFLAGS])
865     AS_VAR_SET([${wine_arch}_EXTRACFLAGS],["-D__WINE_PE_BUILD -Wall"])
867     target=""
868     AS_VAR_PUSHDEF([wine_cv_crosscc],[ac_cv_${wine_arch}_crosscc])
869     AC_CACHE_CHECK([whether $CC works],[wine_cv_crosscc],
870        [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
871                [AS_VAR_SET([wine_cv_crosscc],[yes])],[AS_VAR_SET([wine_cv_crosscc],[no])])])
872     AS_VAR_IF([wine_cv_crosscc],[yes],
873        [set x $CC
874         shift
875         while test $# -ge 1
876         do
877             case "$1" in
878                 *-gcc) target=`expr "$1" : '\(.*\)-gcc'` ;;
879                 *-clang) target=`expr "$1" : '\(.*\)-clang'` ;;
880             esac
881             shift
882         done
884         dnl Check if cross compiler supports -target argument
885         llvm_target=$target
886         if test -z "$llvm_target"
887         then
888             case $wine_arch in
889             i386) llvm_target=i686-windows ;;
890             arm)  llvm_target=armv7-windows ;;
891             *)    llvm_target=$wine_arch-windows ;;
892             esac
893         fi
894         llvm_extra_cflags="-target $llvm_target -fuse-ld=lld"
895         case $llvm_target in
896           *windows) llvm_cflags="-Wl,-subsystem:console -Wl,-WX" ;;
897         esac
898         WINE_TRY_PE_CFLAGS([$llvm_extra_cflags $llvm_cflags],
899                            [target=$llvm_target
900                             AS_VAR_SET([${wine_arch}_DELAYLOADFLAG],["-Wl,-delayload,"])
901                             AS_VAR_APPEND([${wine_arch}_EXTRACFLAGS],[" $llvm_extra_cflags"])
902                             CFLAGS="$llvm_extra_cflags $llvm_cflags"])
903         AS_VAR_SET([${wine_arch}_TARGET],[$target])])
904     AS_VAR_POPDEF([wine_cv_crosscc])
906     if test -z "$target"
907     then
908         CC=$saved_CC
909         CFLAGS=$saved_CFLAGS
910         LDFLAGS=$saved_LDFLAGS
911         continue
912     fi
913     AS_VAR_APPEND([PE_ARCHS],[" $wine_arch"])
915     AS_VAR_PUSHDEF([wine_cv_crosscc_c99],[ac_cv_${wine_arch}_crosscc_c99])
916     AC_MSG_CHECKING([for $CC option to enable C99 features])
917     AC_CACHE_VAL([wine_cv_crosscc_c99],
918         [AS_VAR_SET([wine_cv_crosscc_c99],[no])
919          for arg in '' '-std=gnu99'
920          do
921              test -z "$arg" || CC="$CC $arg"
922              AC_COMPILE_IFELSE([AC_LANG_SOURCE([$ac_c_conftest_c99_program])],
923                                [AS_VAR_SET([wine_cv_crosscc_c99],[$arg])],
924                                [AS_VAR_SET([wine_cv_crosscc_c99],[no])])
925              AS_VAR_COPY([CC],[${wine_arch}_CC])
926              AS_VAR_IF([wine_cv_crosscc_c99],[no],[],[break])
927          done])
928     AS_VAR_COPY([res],[wine_cv_crosscc_c99])
929     case "x$res" in
930       x) AC_MSG_RESULT([none needed]) ;;
931       xno) AC_MSG_RESULT([unsupported]) ;;
932       x*) AC_MSG_RESULT([$res])
933           AS_VAR_APPEND([${wine_arch}_CC],[" $res"]) ;;
934     esac
935     AS_VAR_POPDEF([wine_cv_crosscc_c99])
937     WINE_TRY_PE_CFLAGS([-fno-strict-aliasing])
938     dnl clang needs to be told to fail on unknown options
939     WINE_TRY_PE_CFLAGS([-Werror=unknown-warning-option],[CFLAGS="$CFLAGS -Werror=unknown-warning-option"])
940     WINE_TRY_PE_CFLAGS([-Werror=ignored-optimization-argument],[CFLAGS="$CFLAGS -Werror=ignored-optimization-argument"])
941     WINE_TRY_PE_CFLAGS([-Wdeclaration-after-statement])
942     WINE_TRY_PE_CFLAGS([-Wempty-body])
943     WINE_TRY_PE_CFLAGS([-Wignored-qualifiers])
944     WINE_TRY_PE_CFLAGS([-Winit-self])
945     WINE_TRY_PE_CFLAGS([-Wpacked-not-aligned],[AS_VAR_APPEND(${wine_arch}_EXTRACFLAGS,[" -Wno-packed-not-aligned"])])
946     WINE_TRY_PE_CFLAGS([-Wpragma-pack],[AS_VAR_APPEND(${wine_arch}_EXTRACFLAGS,[" -Wno-pragma-pack"])])
947     WINE_TRY_PE_CFLAGS([-Wshift-overflow=2])
948     WINE_TRY_PE_CFLAGS([-Wstrict-prototypes])
949     WINE_TRY_PE_CFLAGS([-Wtype-limits])
950     WINE_TRY_PE_CFLAGS([-Wunused-but-set-parameter])
951     WINE_TRY_PE_CFLAGS([-Wvla])
952     WINE_TRY_PE_CFLAGS([-Wwrite-strings])
953     WINE_TRY_PE_CFLAGS([-Wpointer-arith])
954     WINE_TRY_PE_CFLAGS([-Wlogical-op])
955     WINE_TRY_PE_CFLAGS([-Wabsolute-value])
957     case $wine_arch in
958       i386) WINE_TRY_PE_CFLAGS([-fno-omit-frame-pointer])
959             WINE_TRY_PE_CFLAGS([-Wl,--disable-stdcall-fixup],
960                                [AS_VAR_APPEND([${wine_arch}_LDFLAGS],[" -Wl,--disable-stdcall-fixup"])]) ;;
961       x86_64) WINE_TRY_PE_CFLAGS([-Wformat-overflow])
962               WINE_TRY_PE_CFLAGS([-Wnonnull])
963               WINE_TRY_PE_CFLAGS([-mcx16])
964               WINE_TRY_PE_CFLAGS([-mcmodel=small]) ;;
965     esac
967     dnl Determine debug info format
968     wine_crossdebug=$CROSSDEBUG
969     if test -z "$wine_crossdebug"
970     then
971       for ac_flag in $CFLAGS; do
972         case $ac_flag in
973          -gdwarf*)    wine_crossdebug=dwarf ;;
974          -gcodeview)  wine_crossdebug=pdb ;;
975          -g)          wine_crossdebug=${wine_crossdebug:-dwarf} ;;
976         esac
977       done
978     fi
980     ac_debug_format_seen=""
981     for ac_flag in $CFLAGS; do
982       case $ac_flag in
983        -gdwarf*|-gcodeview)  ac_debug_format_seen=$ac_flag ;;
984       esac
985     done
986     if test "x$ac_debug_format_seen" = x
987     then
988       case $wine_crossdebug in
989         *dwarf)  WINE_TRY_PE_CFLAGS([-gdwarf-4]) ;;
990         pdb)     WINE_TRY_PE_CFLAGS([-gcodeview]) ;;
991       esac
992     fi
993     AS_VAR_SET([${wine_arch}_DEBUG],[$wine_crossdebug])
995     test "x$enable_werror" != xyes || WINE_TRY_PE_CFLAGS([-Werror])
996     test "x$enable_build_id" != xyes || WINE_TRY_PE_CFLAGS([-Wl,--build-id],
997                                          [AS_VAR_APPEND([${wine_arch}_CFLAGS],[" -Wl,--build-id"])
998                                           AS_VAR_APPEND([${wine_arch}_LDFLAGS],[" -Wl,--build-id"])])
1000     CC=$saved_CC
1001     CFLAGS=$saved_CFLAGS
1002     LDFLAGS=$saved_LDFLAGS
1003 done
1005 if test $HOST_ARCH = aarch64
1006 then
1007     test "x$PE_ARCHS" != x || AC_MSG_ERROR([PE cross-compilation is required for ARM64, please install clang/llvm-dlltool/lld, or llvm-mingw.])
1008     DLLEXT=""
1009 else
1010     WINE_NOTICE_WITH(mingw,[test "x$PE_ARCHS" = "x"],
1011                  [MinGW compiler not found, cross-compiling PE files won't be supported.])
1014 dnl **** External libraries ****
1016 if test "x$with_system_dllpath" != "x" -a -n "$PE_ARCHS"
1017 then
1018     WINE_MINGW_PACKAGE_FLAGS(FAUDIO,[FAudio],[-lFAudio],
1019         [WINE_CHECK_MINGW_HEADER(FAudio.h,
1020             [WINE_CHECK_MINGW_LIB(FAudio,FAudio_CommitOperationSet,[:],[FAUDIO_PE_CFLAGS=""; FAUDIO_PE_LIBS=""],[$FAUDIO_PE_LIBS])],
1021             [FAUDIO_PE_CFLAGS=""; FAUDIO_PE_LIBS=""])])
1022     if test "x$FAUDIO_PE_LIBS" = "x"
1023     then
1024         WINE_NOTICE([FAudio ${notice_platform}MinGW development files not found (or too old); using bundled version.])
1025     fi
1027     WINE_MINGW_PACKAGE_FLAGS(JPEG,[libjpeg],,
1028         [WINE_CHECK_MINGW_HEADER(jpeglib.h,
1029             [WINE_CHECK_MINGW_LIB(jpeg,jpeg_start_decompress,[:],[JPEG_PE_CFLAGS=""; JPEG_PE_LIBS=""],[$JPEG_PE_LIBS])],
1030             [JPEG_PE_CFLAGS=""; JPEG_PE_LIBS=""],
1031             [#include <stddef.h>
1032              #include <stdio.h>])])
1033     if test "x$JPEG_PE_LIBS" = "x"
1034     then
1035         WINE_NOTICE([libjpeg ${notice_platform}MinGW development files not found; using bundled version.])
1036     fi
1038     WINE_MINGW_PACKAGE_FLAGS(LCMS2,[lcms2],[-llcms2],
1039         [WINE_CHECK_MINGW_HEADER(lcms2.h,
1040             [WINE_CHECK_MINGW_LIB(lcms2,cmsOpenProfileFromFile,[:],[LCMS2_PE_CFLAGS=""; LCMS2_PE_LIBS=""],[$LCMS2_PE_LIBS])],
1041             [LCMS2_PE_CFLAGS=""; LCMS2_PE_LIBS=""])])
1042     if test "x$LCMS2_PE_LIBS" = "x"
1043     then
1044         WINE_NOTICE([liblcms2 ${notice_platform}MinGW development files not found; using bundled version.])
1045     fi
1047     WINE_MINGW_PACKAGE_FLAGS(MPG123,[libmpg123],[-lmpg123],
1048         [WINE_CHECK_MINGW_HEADER(mpg123.h,
1049             [WINE_CHECK_MINGW_LIB(mpg123,mpg123_feed,[:],[MPG123_PE_CFLAGS=""; MPG123_PE_LIBS=""],[$MPG123_PE_LIBS])],
1050             [MPG123_PE_CFLAGS=""; MPG123_PE_LIBS=""])])
1051     if test "x$MPG123_PE_LIBS" = "x"
1052     then
1053         WINE_NOTICE([libmpg123 ${notice_platform}MinGW development files not found (or too old); using bundled version.])
1054     fi
1056     WINE_MINGW_PACKAGE_FLAGS(PNG,[libpng],,
1057         [WINE_CHECK_MINGW_HEADER(png.h,
1058             [WINE_CHECK_MINGW_LIB(png,png_create_read_struct,[:],[PNG_PE_CFLAGS=""; PNG_PE_LIBS=""],[$PNG_PE_LIBS])],
1059             [PNG_PE_CFLAGS=""; PNG_PE_LIBS=""])])
1060     if test "x$PNG_PE_LIBS" = "x"
1061     then
1062         WINE_NOTICE([libpng ${notice_platform}MinGW development files not found; using bundled version.])
1063     fi
1065     WINE_MINGW_PACKAGE_FLAGS(TIFF,[libtiff-4],,
1066         [WINE_CHECK_MINGW_HEADER(tiffio.h,
1067             [WINE_CHECK_MINGW_LIB(tiff,TIFFClientOpen,[:],[TIFF_PE_CFLAGS=""; TIFF_PE_LIBS=""],[$TIFF_PE_LIBS])],
1068             [TIFF_PE_CFLAGS=""; TIFF_PE_LIBS=""])])
1069     if test "x$TIFF_PE_LIBS" = "x"
1070     then
1071         WINE_NOTICE([libtiff ${notice_platform}MinGW development files not found; using bundled version.])
1072     fi
1074     WINE_MINGW_PACKAGE_FLAGS(XML2,[libxml-2.0],[-lxml2],
1075         [WINE_CHECK_MINGW_HEADER(libxml/parser.h)
1076         WINE_CHECK_MINGW_HEADER(libxml/xmlsave.h)
1077         WINE_CHECK_MINGW_HEADER(libxml/SAX2.h)
1078         if test "$ac_cv_mingw_header_libxml_parser_h" = "yes" -a "$ac_cv_mingw_header_libxml_xmlsave_h" = "yes" -a "$ac_cv_mingw_header_libxml_SAX2_h" = "yes"
1079         then
1080             WINE_CHECK_MINGW_LIB(xml2,xmlFirstElementChild,[:],[XML2_PE_CFLAGS=""; XML2_PE_LIBS=""],[$XML2_PE_LIBS])
1081         else
1082             XML2_PE_CFLAGS=""
1083             XML2_PE_LIBS=""
1084         fi])
1085     if test "x$XML2_PE_LIBS" = "x"
1086     then
1087         WINE_NOTICE([libxml2 ${notice_platform}MinGW development files not found (or too old); using bundled version.])
1088     fi
1090     WINE_MINGW_PACKAGE_FLAGS(XSLT,[libxslt],[-lxslt],
1091         [WINE_CHECK_MINGW_HEADER(libxslt/pattern.h)
1092         WINE_CHECK_MINGW_HEADER(libxslt/transform.h)
1093         if test "$ac_cv_mingw_header_libxslt_pattern_h" = "yes" -a "$ac_cv_mingw_header_libxslt_transform_h" = "yes"
1094         then
1095             WINE_CHECK_MINGW_LIB(xslt,xsltCompilePattern,[:],[XSLT_PE_CFLAGS=""; XSLT_PE_LIBS=""],[$XSLT_PE_LIBS])
1096         else
1097             XSLT_PE_CFLAGS=""
1098             XSLT_PE_LIBS=""
1099         fi])
1100     if test "x$XSLT_PE_LIBS" = "x"
1101     then
1102         WINE_NOTICE([libxslt ${notice_platform}MinGW development files not found; using bundled version.])
1103     fi
1105     WINE_MINGW_PACKAGE_FLAGS(VKD3D,[libvkd3d libvkd3d-shader],[-lvkd3d -lvkd3d-shader],
1106         [WINE_CHECK_MINGW_HEADER(vkd3d.h)
1107         WINE_CHECK_MINGW_HEADER(vkd3d_shader.h)
1108         if test "$ac_cv_mingw_header_vkd3d_h" = "yes" -a "$ac_cv_mingw_header_vkd3d_shader_h" = "yes"
1109         then
1110             WINE_CHECK_MINGW_LIB(vkd3d,vkd3d_set_log_callback,[:],[:],[$VKD3D_PE_LIBS])
1111             WINE_CHECK_MINGW_LIB(vkd3d-shader,vkd3d_shader_serialize_dxbc,[:],[:],[$VKD3D_PE_LIBS])
1112             if test "$ac_cv_mingw_lib_vkd3d" = "no" -o "$ac_cv_mingw_lib_vkd3d_shader" = "no"
1113             then
1114                 VKD3D_PE_CFLAGS=""
1115                 VKD3D_PE_LIBS=""
1116             fi
1117         else
1118             VKD3D_PE_CFLAGS=""
1119             VKD3D_PE_LIBS=""
1120         fi])
1121     if test "x$VKD3D_PE_LIBS" = "x"
1122     then
1123         WINE_NOTICE([libvkd3d ${notice_platform}MinGW development files not found (or too old); using bundled version.])
1124     fi
1126     WINE_MINGW_PACKAGE_FLAGS(ZLIB,[zlib],[-lz],
1127         [WINE_CHECK_MINGW_HEADER(zlib.h,
1128             [WINE_CHECK_MINGW_LIB(z,inflate,[:],[ZLIB_PE_CFLAGS=""; ZLIB_PE_LIBS=""],[$ZLIB_PE_LIBS])],
1129             [ZLIB_PE_CFLAGS=""; ZLIB_PE_LIBS=""])])
1130     if test "x$ZLIB_PE_LIBS" = "x"
1131     then
1132         WINE_NOTICE([zlib ${notice_platform}MinGW development files not found; using bundled version.])
1133     fi
1136 WINE_EXTLIB_FLAGS(FAUDIO, faudio, "faudio mfplat mfreadwrite mfuuid propsys", "-I\$(top_srcdir)/libs/faudio/include")
1137 WINE_EXTLIB_FLAGS(GSM, gsm, gsm, "-I\$(top_srcdir)/libs/gsm/inc")
1138 WINE_EXTLIB_FLAGS(JPEG, jpeg, jpeg, "-I\$(top_srcdir)/libs/jpeg")
1139 WINE_EXTLIB_FLAGS(JXR, jxr, jxr, "-I\$(top_srcdir)/libs/jxr/jxrgluelib -I\$(top_srcdir)/libs/jxr/image/sys")
1140 WINE_EXTLIB_FLAGS(LCMS2, lcms2, lcms2, "-I\$(top_srcdir)/libs/lcms2/include")
1141 WINE_EXTLIB_FLAGS(LDAP, ldap, ldap, "-I\$(top_srcdir)/libs/ldap/include")
1142 WINE_EXTLIB_FLAGS(MPG123, mpg123, mpg123, "-I\$(top_srcdir)/libs/mpg123/src/libmpg123")
1143 WINE_EXTLIB_FLAGS(MUSL, musl, musl)
1144 WINE_EXTLIB_FLAGS(PNG, png, "png \$(ZLIB_PE_LIBS)", "-I\$(top_srcdir)/libs/png")
1145 WINE_EXTLIB_FLAGS(TIFF, tiff, "tiff \$(ZLIB_PE_LIBS)", "-I\$(top_srcdir)/libs/tiff/libtiff")
1146 WINE_EXTLIB_FLAGS(VKD3D, vkd3d, vkd3d, "-I\$(top_srcdir)/libs/vkd3d/include")
1147 WINE_EXTLIB_FLAGS(XML2, xml2, xml2, "-I\$(top_srcdir)/libs/xml2/include -DLIBXML_STATIC")
1148 WINE_EXTLIB_FLAGS(XSLT, xslt, xslt, "-I\$(top_srcdir)/libs/xslt/libxslt -I\$(top_srcdir)/libs/xslt -DLIBXSLT_STATIC")
1149 WINE_EXTLIB_FLAGS(ZLIB, zlib, z, "-I\$(top_srcdir)/libs/zlib -DFAR= -DZ_SOLO")
1150 WINE_EXTLIB_FLAGS(ZYDIS, zydis, zydis, "-I\$(top_srcdir)/libs/zydis/include")
1152 dnl **** Check for pthread ****
1154 if test "$ac_cv_header_pthread_h" = "yes"
1155 then
1156     AC_CHECK_FUNC(pthread_create,,[AC_CHECK_LIB(pthread,pthread_create,[AC_SUBST(PTHREAD_LIBS,"-lpthread")])])
1158 WINE_ERROR_WITH(pthread,[test "x$ac_cv_func_pthread_create" != xyes -a "x$PTHREAD_LIBS" = x],
1159 [pthread ${notice_platform}development files not found.
1160 Wine cannot support threads without libpthread.])
1162 dnl **** Check for X11 ****
1164 AC_PATH_XTRA
1166 if test "$have_x" = "yes"
1167 then
1168     ac_save_CPPFLAGS="$CPPFLAGS"
1169     CPPFLAGS="$CPPFLAGS $X_CFLAGS"
1171     WINE_CHECK_SONAME(X11,XCreateWindow,,,[$X_LIBS $X_EXTRA_LIBS])
1172     WINE_CHECK_SONAME(Xext,XextCreateExtension,[X_LIBS="$X_LIBS -lXext"],,[$X_LIBS -lX11 $X_EXTRA_LIBS])
1173     X_LIBS="$X_LIBS -lX11"
1175     dnl *** All of the following tests require X11/Xlib.h
1176     AC_CHECK_HEADERS([X11/Xlib.h \
1177                       X11/XKBlib.h \
1178                       X11/Xutil.h \
1179                       X11/Xcursor/Xcursor.h \
1180                       X11/extensions/shape.h \
1181                       X11/extensions/XInput.h \
1182                       X11/extensions/XInput2.h \
1183                       X11/extensions/XShm.h \
1184                       X11/extensions/Xcomposite.h \
1185                       X11/extensions/Xfixes.h \
1186                       X11/extensions/Xinerama.h \
1187                       X11/extensions/Xrandr.h \
1188                       X11/extensions/Xrender.h \
1189                       X11/extensions/xf86vmode.h \
1190                       X11/extensions/xf86vmproto.h],,,
1191 [#ifdef HAVE_X11_XLIB_H
1192 # include <X11/Xlib.h>
1193 #endif
1194 #ifdef HAVE_X11_XUTIL_H
1195 # include <X11/Xutil.h>
1196 #endif])
1198         dnl *** Check for X cursor
1199         if test "$ac_cv_header_X11_Xcursor_Xcursor_h" = "yes"
1200         then
1201             WINE_CHECK_SONAME(Xcursor,XcursorImageLoadCursor,,,[$X_LIBS $X_EXTRA_LIBS])
1202         fi
1203         WINE_NOTICE_WITH(xcursor,[test "x$ac_cv_lib_soname_Xcursor" = "x"],
1204                          [libxcursor ${notice_platform}development files not found, the Xcursor extension won't be supported.])
1206         dnl *** Check for X input extension
1207         if test "$ac_cv_header_X11_extensions_XInput_h" = "yes"
1208         then
1209             WINE_CHECK_SONAME(Xi,XOpenDevice,,,[$X_LIBS $X_EXTRA_LIBS])
1210         fi
1211         WINE_NOTICE_WITH(xinput,[test "x$ac_cv_lib_soname_Xi" = "x"],
1212                          [libxi ${notice_platform}development files not found, the Xinput extension won't be supported.])
1214         dnl *** Check for X input 2 extension
1215         if test "x$ac_cv_lib_soname_Xi" != x
1216         then
1217             WINE_NOTICE_WITH(xinput2,[test "$ac_cv_header_X11_extensions_XInput2_h" != "yes"],
1218                              [XInput2 headers not found, the XInput 2 extension won't be supported.])
1219         fi
1221         dnl *** Check for X Shm extension
1222         if test "$ac_cv_header_X11_extensions_XShm_h" = "yes"
1223         then
1224               AC_CHECK_LIB(Xext, XShmQueryExtension,
1225               AC_DEFINE(HAVE_LIBXXSHM, 1, [Define if you have the X Shm extension]),,[$X_LIBS $X_EXTRA_LIBS])
1226         fi
1227         WINE_NOTICE_WITH(xshm,[test "$ac_cv_lib_Xext_XShmQueryExtension" != "yes"],
1228                          [XShm ${notice_platform}development files not found, X Shared Memory won't be supported.])
1230         dnl *** Check for X shape extension
1231         if test "$ac_cv_header_X11_extensions_shape_h" = "yes"
1232         then
1233               AC_CHECK_LIB(Xext,XShapeQueryExtension,
1234               AC_DEFINE(HAVE_LIBXSHAPE, 1, [Define if you have the X Shape extension]),,[$X_LIBS $X_EXTRA_LIBS])
1235         fi
1236         WINE_NOTICE_WITH(xshape,[test "$ac_cv_lib_Xext_XShapeQueryExtension" != "yes"],
1237                          [XShape ${notice_platform}development files not found, XShape won't be supported.])
1239         dnl *** Check for XFree86 VMODE extension
1240         if test "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes" -o "$ac_cv_header_X11_extensions_xf86vmproto_h" = "yes"
1241         then
1242             WINE_CHECK_SONAME(Xxf86vm,XF86VidModeQueryExtension,,,[$X_LIBS $X_EXTRA_LIBS])
1243         fi
1244         WINE_NOTICE_WITH(xxf86vm,[test "x$ac_cv_lib_soname_Xxf86vm" = "x"],
1245                          [libXxf86vm ${notice_platform}development files not found, XFree86 Vidmode won't be supported.])
1247         dnl *** Check for Transform functions in Xrender
1248         if test "$ac_cv_header_X11_extensions_Xrender_h" = "yes" -a "x$ac_cv_lib_soname_X11" != "x"
1249         then
1250             WINE_CHECK_SONAME(Xrender,XRenderQueryExtension,
1251               [AC_CHECK_LIB(Xrender,XRenderSetPictureTransform,
1252                 [AC_DEFINE(HAVE_XRENDERSETPICTURETRANSFORM, 1,
1253                  [Define if Xrender has the XRenderSetPictureTransform function])],,[$X_LIBS $X_EXTRA_LIBS])
1254                AC_CHECK_LIB(Xrender,XRenderCreateLinearGradient,
1255                 [AC_DEFINE(HAVE_XRENDERCREATELINEARGRADIENT, 1,
1256                  [Define if Xrender has the XRenderCreateLinearGradient function])],,[$X_LIBS $X_EXTRA_LIBS])],,[$X_LIBS $X_EXTRA_LIBS])
1258         fi
1259         WINE_WARNING_WITH(xrender,[test "x$ac_cv_lib_soname_Xrender" = "x"],
1260                          [libxrender ${notice_platform}development files not found, XRender won't be supported.])
1262         dnl *** Check for X RandR extension
1263         if test "$ac_cv_header_X11_extensions_Xrandr_h" = "yes" -a "x$ac_cv_lib_soname_Xrender" != "x"
1264         then
1265                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>
1266 #include <X11/extensions/Xrandr.h>]], [[static typeof(XRRSetScreenConfigAndRate) * func; if (func) return 0;]])],
1267                   [WINE_CHECK_SONAME(Xrandr,XRRQueryExtension,
1268                     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>
1269 #include <X11/extensions/Xrandr.h>]], [[static typeof(XRRGetProviderResources) *f; if (f) return 0;]])],
1270                       [AC_DEFINE(HAVE_XRRGETPROVIDERRESOURCES, 1,
1271                         [Define if Xrandr has the XRRGetProviderResources function])],
1272                       [WINE_NOTICE([libxrandr ${notice_platform}development files too old, XRandR display device handler won't be supported.])])],,[$X_LIBS $X_EXTRA_LIBS])])
1273         fi
1274         WINE_NOTICE_WITH(xrandr,[test "x$ac_cv_lib_soname_Xrandr" = "x"],
1275                          [libxrandr ${notice_platform}development files not found, XRandr won't be supported.])
1277         dnl *** Check for Xfixes extension
1278         if test "$ac_cv_header_X11_extensions_Xfixes_h" = "yes"
1279         then
1280                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>
1281 #include <X11/extensions/Xfixes.h>]], [[static typeof(XFixesQueryVersion) * func; if (func) return 0;]])],
1282                   [WINE_CHECK_SONAME(Xfixes,XFixesQueryVersion,,,[$X_LIBS $X_EXTRA_LIBS])])
1283         fi
1284         WINE_NOTICE_WITH(xfixes,[test "x$ac_cv_lib_soname_Xfixes" = "x"],
1285                          [libxfixes ${notice_platform}development files not found, Xfixes won't be supported.])
1287         dnl *** Check for Xinerama extension
1288         if test "$ac_cv_header_X11_extensions_Xinerama_h" = "yes"
1289         then
1290                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>
1291 #include <X11/extensions/Xinerama.h>]], [[static typeof(XineramaQueryScreens) * func; if (func) return 0;]])],
1292                   [WINE_CHECK_SONAME(Xinerama,XineramaQueryScreens,,,[$X_LIBS $X_EXTRA_LIBS])])
1293         fi
1294         WINE_NOTICE_WITH(xinerama,[test "x$ac_cv_lib_soname_Xinerama" = "x"],
1295                          [libxinerama ${notice_platform}development files not found, multi-monitor setups won't be supported.])
1297         dnl *** Check for X Composite extension
1298         if test "$ac_cv_header_X11_extensions_Xcomposite_h" = "yes"
1299         then
1300             WINE_CHECK_SONAME(Xcomposite,XCompositeRedirectWindow,,,[$X_LIBS $X_EXTRA_LIBS])
1301         fi
1302         WINE_NOTICE_WITH(xcomposite,[test "x$ac_cv_lib_soname_Xcomposite" = "x"],
1303                          [libxcomposite ${notice_platform}development files not found, Xcomposite won't be supported.])
1305         dnl *** Check for XICCallback struct
1306         AC_CHECK_MEMBERS([XICCallback.callback, XEvent.xcookie],,,
1307 [#ifdef HAVE_X11_XLIB_H
1308 #include <X11/Xlib.h>
1309 #endif])
1311     dnl *** End of X11/Xlib.h check
1313     dnl Check for the presence of OpenGL
1314     opengl_msg=""
1315     if test "x$with_opengl" != "xno"
1316     then
1317         WINE_CHECK_SONAME(GL,glXCreateContext,
1318                      [OPENGL_LIBS="-lGL"],
1319                      [WINE_CHECK_SONAME(GL,glXCreateContext,
1320                             [OPENGL_LIBS="-Xlinker -dylib_file -Xlinker /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -lGL"],
1321                             [if test -f /usr/X11R6/lib/libGL.a
1322                             then
1323                                 opengl_msg="/usr/X11R6/lib/libGL.a is present on your system.
1324 This probably prevents linking to OpenGL. Try deleting the file and restarting configure."
1325                             else
1326                                 opengl_msg="No OpenGL library found on this system."
1327                             fi],
1328                             $X_LIBS -lm $X_EXTRA_LIBS -dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib)],
1329                      $X_LIBS -lm $X_EXTRA_LIBS)
1330         if test "x$with_osmesa" != "xno"
1331         then
1332             WINE_CHECK_SONAME(OSMesa,OSMesaGetProcAddress,,,[$X_LIBS -lm $X_EXTRA_LIBS])
1333             WINE_NOTICE_WITH(osmesa,[test "x$ac_cv_lib_soname_OSMesa" = "x"],
1334                              [libOSMesa ${notice_platform}development files not found (or too old), OpenGL rendering in bitmaps won't be supported.])
1335         fi
1336     fi
1337     WINE_WARNING_WITH(opengl,[test -n "$opengl_msg"],[$opengl_msg
1338 OpenGL and Direct3D won't be supported.])
1340     CPPFLAGS="$ac_save_CPPFLAGS"
1341 else
1342     X_CFLAGS=""
1343     X_LIBS=""
1346 if test "$enable_wineandroid_drv$enable_winemac_drv" = "nono"
1347 then
1348     WINE_ERROR_WITH(x,[test "x$X_LIBS" = "x"],
1349 [X ${notice_platform}development files not found. Wine will be built
1350 without X support, which probably isn't what you want. You will need
1351 to install ${notice_platform}development packages of Xlib at the very least.],
1352                     [enable_winex11_drv])
1353 else
1354     WINE_NOTICE_WITH(x,[test "x$X_LIBS" = "x"],
1355                      [X ${notice_platform}development files not found, the X11 driver won't be supported.],
1356                      [enable_winex11_drv])
1359 if test "x$with_wayland" != "xno"
1360 then
1361     WINE_PACKAGE_FLAGS(WAYLAND_CLIENT,[wayland-client],,,,
1362         [AC_CHECK_HEADERS([wayland-client.h],
1363            [AC_CHECK_LIB(wayland-client,wl_display_connect,
1364               [AC_PATH_PROG(WAYLAND_SCANNER,wayland-scanner,
1365                             [`test -n "$PKG_CONFIG" && $PKG_CONFIG --variable=wayland_scanner wayland-scanner 2>/dev/null`])],
1366               [WAYLAND_CLIENT_LIBS=""],[$WAYLAND_CLIENT_LIBS])])])
1368 WINE_NOTICE_WITH(wayland, [test -z "$WAYLAND_CLIENT_LIBS" -o -z "$WAYLAND_SCANNER"],
1369                  [Wayland ${notice_platform}development files not found, the Wayland driver won't be supported.],
1370                  [enable_winewayland_drv])
1372 dnl **** Check for OpenCL ****
1373 if test "$ac_cv_header_CL_cl_h" = "yes"
1374 then
1375     AC_CHECK_LIB(OpenCL,clGetPlatformInfo,[AC_SUBST(OPENCL_LIBS,["-lOpenCL"])])
1377 WINE_NOTICE_WITH(opencl,[test "x$ac_cv_lib_OpenCL_clGetPlatformInfo" != xyes],
1378                  [OpenCL ${notice_platform}development files not found, OpenCL won't be supported.],
1379                  [enable_opencl])
1381 dnl **** Check for libpcap ****
1382 if test "$ac_cv_header_pcap_pcap_h" = "yes"
1383 then
1384     AC_CHECK_LIB(pcap,pcap_init,[AC_SUBST(PCAP_LIBS,["-lpcap"])])
1386 WINE_NOTICE_WITH(pcap,[test "x$ac_cv_lib_pcap_pcap_init" != xyes],
1387                  [pcap ${notice_platform}development files not found, wpcap won't be supported.],
1388                  [enable_wpcap])
1390 dnl **** Check for libpcsclite ****
1391 if test "x$with_pcsclite" != "xno"
1392 then
1393     AC_CHECK_LIB(pcsclite,SCardEstablishContext,[AC_SUBST(PCSCLITE_LIBS,["-lpcsclite"])])
1395 WINE_NOTICE_WITH(pcsclite,[test "x$ac_cv_lib_pcsclite_SCardEstablishContext" != xyes],
1396                  [libpcsclite not found, smart cards won't be supported.],
1397                  [enable_winscard])
1399 dnl **** Check for inotify ****
1400 if test "x$with_inotify" != "xno"
1401 then
1402     WINE_PACKAGE_FLAGS(INOTIFY,[libinotify],,,,
1403         [AC_CHECK_HEADERS([sys/inotify.h])
1404          AC_CHECK_LIB(inotify,inotify_add_watch,[:],[INOTIFY_LIBS=""],[$INOTIFY_LIBS])])
1406 WINE_NOTICE_WITH(inotify,[test "$ac_cv_header_sys_inotify_h" != "yes"],
1407                  [libinotify ${notice_platform}development files not found (or too old), filesystem change notifications won't be supported.])
1409 dnl **** Check for libdbus ****
1410 if test "x$with_dbus" != "xno"
1411 then
1412     WINE_PACKAGE_FLAGS(DBUS,[dbus-1],,,,
1413         [AC_CHECK_HEADER([dbus/dbus.h],
1414             [WINE_CHECK_SONAME(dbus-1, dbus_connection_close,,[DBUS_CFLAGS=""],[$DBUS_LIBS])],
1415             [DBUS_CFLAGS=""])])
1417 case $host_os in
1418   darwin*|macosx*) ;;
1419   *) WINE_NOTICE_WITH(dbus,[test "x$ac_cv_lib_soname_dbus_1" = "x"],
1420                       [libdbus ${notice_platform}development files not found, no dynamic device support.]) ;;
1421 esac
1423 dnl **** Check for libgnutls ****
1424 if test "x$with_gnutls" != "xno"
1425 then
1426     WINE_PACKAGE_FLAGS(GNUTLS,[gnutls],[-lgnutls],,,
1427         [AC_CHECK_HEADER(gnutls/gnutls.h,
1428             [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <gnutls/gnutls.h>
1429 #include <gnutls/crypto.h>]], [[static typeof(gnutls_mac_get_key_size) *func; if (func) return 0;]])],
1430                 [WINE_CHECK_SONAME(gnutls,gnutls_global_init,,[GNUTLS_CFLAGS=""],[$GNUTLS_LIBS],[[libgnutls\\(-deb0\\)\\{0,1\\}]])
1431                  WINE_CHECK_LIB_FUNCS(gnutls_cipher_init,[$GNUTLS_LIBS],,
1432                                       [WINE_NOTICE([libgnutls ${notice_platform}development files too old, bcrypt encryption won't be supported.])])])],
1433             [GNUTLS_CFLAGS=""])])
1435 WINE_WARNING_WITH(gnutls,[test "x$ac_cv_lib_soname_gnutls" = "x"],
1436                  [libgnutls ${notice_platform}development files not found, no schannel support.])
1438 dnl **** Check for SANE ****
1439 if test "x$with_sane" != "xno"
1440 then
1441     WINE_PACKAGE_FLAGS(SANE,[sane-backends],,[`${SANE_CONFIG:-sane-config} --cflags 2>/dev/null`],[`${SANE_CONFIG:-sane-config} --ldflags 2>/dev/null`],
1442         [AC_CHECK_HEADER(sane/sane.h,
1443             [AC_CHECK_LIB(sane,sane_init,[:],,[$SANE_LIBS])])])
1445 WINE_NOTICE_WITH(sane,[test "$ac_cv_lib_sane_sane_init" != "yes"],
1446                  [libsane ${notice_platform}development files not found, scanners won't be supported.],
1447                  [enable_sane_ds])
1449 dnl **** Check for libusb ****
1450 if test "x$with_usb" != "xno"
1451 then
1452     WINE_PACKAGE_FLAGS(USB,[libusb-1.0],[-lusb-1.0],,,
1453         [AC_CHECK_HEADER([libusb.h],
1454             [AC_CHECK_LIB(usb-1.0,libusb_interrupt_event_handler,[:],[USB_LIBS=""],[$USB_LIBS])],
1455             [USB_LIBS=""])])
1457 WINE_NOTICE_WITH(usb,[test "$ac_cv_lib_usb_1_0_libusb_interrupt_event_handler" != "yes"],
1458                  [libusb-1.0 ${notice_platform}development files not found (or too old), USB devices won't be supported.],
1459                  [enable_wineusb_sys])
1461 dnl **** Check for libv4l2 ****
1462 if test "x$with_v4l2" != "xno"
1463 then
1464     WINE_CHECK_SONAME(v4l2,v4l2_open)
1466 WINE_NOTICE_WITH(v4l2,[test "x$ac_cv_lib_soname_v4l2" = "x"],
1467                  [libv4l2 ${notice_platform}development files not found.])
1469 dnl **** Check for libgphoto2 ****
1470 if test "x$with_gphoto" != "xno"
1471 then
1472     WINE_PACKAGE_FLAGS(GPHOTO2,[libgphoto2],[-lgphoto2],
1473                        [`${GPHOTO2_CONFIG:-gphoto2-config} --cflags 2>/dev/null`],[`${GPHOTO2_CONFIG:-gphoto2-config} --libs 2>/dev/null`],
1474         [AC_CHECK_HEADER(gphoto2-camera.h,
1475                         [AC_CHECK_LIB(gphoto2,gp_camera_new,[:],,[$GPHOTO2_LIBS])])])
1476     WINE_PACKAGE_FLAGS(GPHOTO2_PORT,[libgphoto2_port],[-lgphoto2_port],
1477                        [`${GPHOTO2_PORT_CONFIG:-gphoto2-port-config} --cflags 2>/dev/null`],
1478                        [`${GPHOTO2_PORT_CONFIG:-gphoto2-port-config} --libs 2>/dev/null`],
1479         [AC_CHECK_HEADER(gphoto2-port.h,
1480                         [AC_CHECK_LIB(gphoto2_port,gp_port_info_list_new,
1481                                       [AC_DEFINE(HAVE_GPHOTO2_PORT, 1, [Define if we have the libgphoto2_port development environment])],
1482                                       [GPHOTO2_PORT_LIBS=""; GPHOTO2_PORT_CFLAGS=""],
1483                                       [$GPHOTO2_PORT_LIBS])],
1484                         [GPHOTO2_PORT_LIBS=""; GPHOTO2_PORT_CFLAGS=""])])
1486 WINE_NOTICE_WITH(gphoto,[test "$ac_cv_lib_gphoto2_gp_camera_new" != "yes"],
1487                  [libgphoto2 ${notice_platform}development files not found, digital cameras won't be supported.],
1488                  [enable_gphoto2_ds])
1489 WINE_NOTICE_WITH(gphoto,[test "$ac_cv_lib_gphoto2_port_gp_port_info_list_new" != "yes"],
1490                  [libgphoto2_port ${notice_platform}development files not found, digital cameras won't be auto-detected.])
1493 dnl **** Check for resolver library ***
1494 if test "$ac_cv_header_resolv_h" = "yes"
1495 then
1496     AC_CACHE_CHECK([for resolver library], ac_cv_have_resolv,
1497       [ac_save_LIBS="$LIBS"
1498        for lib in '' -lresolv
1499        do
1500          LIBS="$lib $ac_save_LIBS"
1501          AC_LINK_IFELSE([AC_LANG_PROGRAM([[#ifdef HAVE_NETINET_IN_H
1502 #include <netinet/in.h>
1503 #endif
1504 #include <resolv.h>]],[[if (!(_res.options & RES_INIT)) res_init(); res_query("foo",ns_c_in,0,0,0); ns_initparse(0,0,0)]])],
1505            [ac_cv_have_resolv=${lib:-"none required"}],[ac_cv_have_resolv="not found"])
1506          test "x$ac_cv_have_resolv" = "xnot found" || break
1507        done
1508        LIBS="$ac_save_LIBS"])
1510     case "$ac_cv_have_resolv" in
1511       "not found") ;;
1512       "none required")
1513         AC_DEFINE(HAVE_RESOLV, 1, [Define if you have the resolver library and header]) ;;
1514       *)
1515         AC_DEFINE(HAVE_RESOLV, 1)
1516         AC_SUBST(RESOLV_LIBS,$ac_cv_have_resolv) ;;
1517     esac
1519     if test "x$ac_cv_have_resolv" != "xnot found"
1520     then
1521         AC_CACHE_CHECK([for res_getservers], ac_cv_have_res_getservers,
1522                        [ac_save_LIBS="$LIBS"
1523                         LIBS="$RESOLV_LIBS $LIBS"
1524                         AC_LINK_IFELSE([AC_LANG_PROGRAM(
1525         [[#include <resolv.h>]],[[res_getservers(NULL, NULL, 0);]])],[ac_cv_have_res_getservers=yes],[ac_cv_have_res_getservers=no])
1526                          LIBS="$ac_save_LIBS"])
1527         if test "$ac_cv_have_res_getservers" = "yes"
1528         then
1529           AC_DEFINE(HAVE_RES_GETSERVERS, 1, [Define to 1 if you have the `res_getservers' function.])
1530         fi
1531     fi
1534 dnl **** Check for FreeType 2 ****
1535 if test "x$with_freetype" != "xno"
1536 then
1537     WINE_PACKAGE_FLAGS(FREETYPE,[freetype2],[-lfreetype],
1538                        [`(${FREETYPE_CONFIG:-freetype-config} --cflags || ${FREETYPE2_CONFIG:-freetype2-config} --cflags) 2>/dev/null`],
1539                        [`(${FREETYPE_CONFIG:-freetype-config} --libs || ${FREETYPE2_CONFIG:-freetype2-config} --libs) 2>/dev/null`],
1540         [AC_CHECK_HEADERS([ft2build.h])
1541         if test "$ac_cv_header_ft2build_h" = "yes"
1542         then
1543             WINE_CHECK_SONAME(freetype,FT_Init_FreeType,
1544                 [AC_DEFINE(HAVE_FREETYPE, 1, [Define if FreeType 2 is installed])
1545                  AC_CHECK_TYPES(FT_TrueTypeEngineType,,,[#include <ft2build.h>
1546 #include FT_MODULE_H])],
1547                 [FREETYPE_LIBS=""],[$FREETYPE_LIBS])
1548         else
1549             FREETYPE_CFLAGS=""
1550             FREETYPE_LIBS=""
1551         fi])
1553 WINE_ERROR_WITH(freetype,[test "x$ac_cv_lib_soname_freetype" = x],
1554                 [FreeType ${notice_platform}development files not found. Fonts will not be built.],
1555                 [enable_fonts])
1557 dnl **** Check for pthread functions ****
1558 WINE_CHECK_LIB_FUNCS(\
1559         pthread_getthreadid_np,
1560         [$PTHREAD_LIBS])
1562 dnl **** Check for gettextpo ****
1563 if test "x$enable_tools" != xno -a "x$with_gettextpo" = xyes
1564 then
1565     if test "$ac_cv_header_gettext_po_h" = "yes"
1566     then
1567         AC_CHECK_LIB(gettextpo,po_message_msgctxt,
1568                      [AC_DEFINE(HAVE_LIBGETTEXTPO,1,[Define to 1 if you have the `gettextpo' library (-lgettextpo).])
1569                       AC_SUBST(GETTEXTPO_LIBS,"-lgettextpo")])
1570     fi
1571     WINE_NOTICE_WITH(gettextpo,[test "x$GETTEXTPO_LIBS" = "x"],
1572       [GetText ${notice_platform}development files not found (or too old), po files can't be rebuilt.])
1573     WINE_NOTICE_WITH(gettextpo,[test "$srcdir" != .],
1574       [Rebuilding po files is not supported for out of tree builds.])
1577 dnl **** Check for PulseAudio ****
1578 if test "x$with_pulse" != "xno";
1579 then
1580     WINE_PACKAGE_FLAGS(PULSE,[libpulse],,,,
1581         [AC_CHECK_HEADERS(pulse/pulseaudio.h,
1582             [AC_CHECK_LIB(pulse, pa_stream_is_corked,[:],[PULSE_LIBS=""],[$PULSE_LIBS])],
1583             [PULSE_LIBS=""])])
1585 WINE_NOTICE_WITH(pulse, [test -z "$PULSE_LIBS"],
1586         [libpulse ${notice_platform}development files not found or too old, Pulse won't be supported.],
1587         [enable_winepulse_drv])
1589 dnl **** Check for gstreamer ****
1590 if test "x$with_gstreamer" != "xno"
1591 then
1592     WINE_PACKAGE_FLAGS(GSTREAMER,[gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 gstreamer-tag-1.0],,,,
1593         [AC_CHECK_HEADER([gst/gst.h],
1594             [AC_MSG_CHECKING([whether gint64 defined by gst/gst.h is indeed 64-bit])
1595               AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <gst/gst.h>]],
1596                                                  [[static int a[sizeof(gint64) > 4 ? 1 : -1]; if (a[0]) return 0;]])],
1597                 [AC_MSG_RESULT([yes])
1598                  AC_CHECK_LIB(gstreamer-1.0,gst_pad_new,[:],,[$GSTREAMER_LIBS])],
1599                 [AC_MSG_RESULT([no])
1600                  ac_glib2_broken=yes
1601                  WINE_NOTICE([glib-2.0 pkgconfig configuration is for the wrong architecture, winegstreamer won't be built.])])])])
1603 WINE_NOTICE_WITH(gstreamer,[test "x$ac_glib2_broken" != xyes -a "x$ac_cv_lib_gstreamer_1_0_gst_pad_new" != xyes],
1604                  [gstreamer-1.0 base plugins ${notice_platform}development files not found, GStreamer won't be supported.],
1605                  [enable_winegstreamer])
1607 dnl **** Check for ALSA 1.x ****
1608 AC_SUBST(ALSA_LIBS,"")
1609 if test "x$with_alsa" != "xno"
1610 then
1611     AC_CHECK_LIB(asound,snd_pcm_hw_params_get_access_mask,
1612         [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <alsa/asoundlib.h>]], [[snd_pcm_hw_params_get_access_mask(NULL, NULL)]])],
1613                         [ALSA_LIBS="-lasound"])])
1615 test -n "$ALSA_LIBS" || enable_winealsa_drv=${enable_winealsa_drv:-no}
1617 dnl **** Check for OSSv4 ****
1618 if test "x$with_oss" != xno
1619 then
1620     ac_save_CPPFLAGS="$CPPFLAGS"
1621     if test -f /etc/oss.conf
1622     then
1623         . /etc/oss.conf
1624     fi
1625     ac_oss_incl="-I${OSSLIBDIR:-/usr/lib/oss}/include"
1626     CPPFLAGS="$CPPFLAGS $ac_oss_incl"
1627     AC_CHECK_HEADER([sys/soundcard.h],
1628         [AC_CHECK_MEMBERS([oss_sysinfo.numaudioengines],
1629             [AC_SUBST(OSS4_CFLAGS,"$ac_oss_incl")
1630              AC_CHECK_LIB(ossaudio,_oss_ioctl,
1631                  [AC_SUBST(OSS4_LIBS,"-lossaudio")])],,
1632             [#include <sys/soundcard.h>])])
1633     CPPFLAGS="$ac_save_CPPFLAGS"
1635 WINE_NOTICE_WITH(oss,[test "x$ac_cv_member_oss_sysinfo_numaudioengines" != xyes],
1636                  [OSS sound system found but too old (OSSv4 needed), OSS won't be supported.],
1637                  [enable_wineoss_drv])
1639 dnl **** Check for libudev ****
1640 if test "x$with_udev" != "xno"
1641 then
1642     WINE_PACKAGE_FLAGS(UDEV,[libudev],[-ludev],,,
1643         [AC_CHECK_HEADERS(libudev.h,
1644             [AC_CHECK_LIB(udev,udev_new,
1645                 AC_DEFINE(HAVE_UDEV,1,[Define to 1 if you have the `udev' library (-ludev).]),
1646                 [UDEV_LIBS=""],[$UDEV_LIBS])],
1647             [UDEV_LIBS=""])])
1649 WINE_NOTICE_WITH(udev,[test "x$UDEV_LIBS" = "x"],
1650                  [libudev ${notice_platform}development files not found, plug and play won't be supported.])
1652 dnl **** Check for libunwind ****
1653 if test "x$with_unwind" != xno
1654 then
1655     WINE_PACKAGE_FLAGS(UNWIND,[libunwind],[-lunwind],,,
1656        [AC_CACHE_CHECK([for unw_step],wine_cv_have_unw_step,
1657            [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define UNW_LOCAL_ONLY
1658 #include <libunwind.h>]],
1659                 [[unw_cursor_t cursor; unw_step( &cursor );]])],
1660                 [wine_cv_have_unw_step="yes"],[wine_cv_have_unw_step="no"])])
1661         if test "$wine_cv_have_unw_step" = no -a -n "$UNWIND_LIBS"
1662         then
1663             save_libs=$LIBS
1664             dnl Force static libgcc, libunwind breaks libgcc_s unwinding
1665             UNWIND_LIBS="-static-libgcc $UNWIND_LIBS"
1666             LIBS="$UNWIND_LIBS $LIBS"
1667             AC_CACHE_CHECK([for unw_step in libunwind],wine_cv_have_libunwind_unw_step,
1668                [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define UNW_LOCAL_ONLY
1669 #include <libunwind.h>]],
1670                     [[unw_cursor_t cursor; unw_step( &cursor );]])],
1671                     [wine_cv_have_libunwind_unw_step="yes"],
1672                     [wine_cv_have_libunwind_unw_step="no"])])
1673             LIBS=$save_libs
1674         fi
1675         test "$wine_cv_have_libunwind_unw_step" = yes || UNWIND_LIBS=""
1676         if test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" != xnono
1677         then
1678             AC_DEFINE(HAVE_LIBUNWIND,1,[Define to 1 if you have the `unwind' library (-lunwind).])
1679         fi])
1681 case $host in
1682   aarch64*|*-darwin*)
1683     WINE_NOTICE_WITH(unwind,[test "x$wine_cv_have_unw_step$wine_cv_have_libunwind_unw_step" = xnono],
1684                      [libunwind ${notice_platform}development files not found, stack unwinding won't work.]) ;;
1685 esac
1687 dnl **** Check for libSDL2 ****
1688 if test "x$with_sdl" != "xno"
1689 then
1690     WINE_PACKAGE_FLAGS(SDL2,[sdl2],[-lSDL2],,,
1691         [AC_CHECK_HEADERS([SDL.h],
1692             [WINE_CHECK_SONAME(SDL2,SDL_Init,,,[$SDL2_LIBS],[[libSDL2-2.0*]])])])
1694 WINE_NOTICE_WITH(sdl,[test "x$ac_cv_lib_soname_SDL2" = "x"],
1695                  [libSDL2 ${notice_platform}development files not found, SDL2 won't be supported.])
1697 dnl **** Check for capi4linux ****
1698 if test "x$with_capi" != "xno"
1699 then
1700     WINE_PACKAGE_FLAGS(CAPI20,[capi20],,,,
1701      dnl Check for broken kernel header that doesn't define __user
1702     [AC_CHECK_HEADERS([capi20.h linux/capi.h],,,[#define __user])
1703     if test "$ac_cv_header_capi20_h" = "yes" -a "$ac_cv_header_linux_capi_h" = "yes"
1704     then
1705         AC_CHECK_LIB(capi20,capi20_register,[:],[CAPI20_LIBS=""],[$CAPI20_LIBS])
1706     fi])
1708 WINE_NOTICE_WITH(capi,[test "x$ac_cv_lib_capi20_capi20_register" != xyes],
1709                  [libcapi20 ${notice_platform}development files not found, ISDN won't be supported.],
1710                  [enable_capi2032])
1712 dnl **** Check for cups ****
1713 if test "x$with_cups" != "xno"
1714 then
1715     WINE_PACKAGE_FLAGS(CUPS,[cups],[-lcups],
1716                        [`${CUPS_CONFIG:-cups-config} --cflags 2>/dev/null`],
1717                        [`${CUPS_CONFIG:-cups-config} --libs 2>/dev/null`],
1718                        [AC_CHECK_HEADERS(cups/cups.h cups/ppd.h)
1719                         if test "$ac_cv_header_cups_cups_h" = "yes"
1720                         then
1721                             WINE_CHECK_SONAME(cups,cupsGetDefault,,[CUPS_LIBS=""],[$CUPS_LIBS])
1722                         else
1723                             CUPS_CFLAGS=""
1724                             CUPS_LIBS=""
1725                         fi])
1727 WINE_NOTICE_WITH(cups,[test "x$ac_cv_lib_soname_cups" = "x"],
1728                  [libcups ${notice_platform}development files not found, CUPS won't be supported.])
1730 dnl **** Check for fontconfig ****
1731 if test "x$with_fontconfig" != "xno"
1732 then
1733     WINE_PACKAGE_FLAGS(FONTCONFIG,[fontconfig],,[$X_CFLAGS],[$X_LIBS],
1734         [AC_CHECK_HEADERS([fontconfig/fontconfig.h])
1735         if test "$ac_cv_header_fontconfig_fontconfig_h" = "yes"
1736         then
1737             WINE_CHECK_SONAME(fontconfig,FcInit,,[FONTCONFIG_CFLAGS=""],[$FONTCONFIG_LIBS])
1738         else
1739             FONTCONFIG_CFLAGS=""
1740         fi])
1742 WINE_NOTICE_WITH(fontconfig,[test "x$ac_cv_lib_soname_fontconfig" = "x"],
1743                  [fontconfig ${notice_platform}development files not found, fontconfig won't be supported.])
1745 dnl **** Check for krb5 ****
1746 if test "x$with_krb5" != "xno"
1747 then
1748     WINE_PACKAGE_FLAGS(KRB5,[krb5],,
1749                        [`${KRB5_CONFIG:-krb5-config} --cflags 2>/dev/null`],
1750                        [`${KRB5_CONFIG:-krb5-config} --libs 2>/dev/null`],
1751         [AC_CHECK_HEADERS([krb5/krb5.h])
1752          if test "$ac_cv_header_krb5_krb5_h" = "yes"
1753          then
1754              WINE_CHECK_SONAME(krb5,krb5_is_config_principal,,[KRB5_CFLAGS=""],[$KRB5_LIBS])
1755          else
1756              KRB5_CFLAGS=""
1757          fi])
1759 WINE_NOTICE_WITH(krb5,[test "x$ac_cv_lib_soname_krb5" = "x"],
1760                  [libkrb5 ${notice_platform}development files not found (or too old), Kerberos won't be supported.])
1761 test "x$ac_cv_lib_soname_krb5" != "x" || with_gssapi=${with_gssapi:-no}
1763 dnl **** Check for gssapi ****
1764 if test "x$with_gssapi" != "xno"
1765 then
1766     WINE_PACKAGE_FLAGS(GSSAPI,[krb5-gssapi],,
1767                        [`${KRB5_CONFIG:-krb5-config} --cflags gssapi 2>/dev/null`],
1768                        [`${KRB5_CONFIG:-krb5-config} --libs gssapi 2>/dev/null`],
1769         [AC_CHECK_HEADERS([gssapi/gssapi.h gssapi/gssapi_ext.h])
1770         if test "$ac_cv_header_gssapi_gssapi_h" = "yes" -a "$ac_cv_header_gssapi_gssapi_ext_h" = "yes"
1771         then
1772             WINE_CHECK_SONAME(gssapi_krb5, gss_init_sec_context,,[GSSAPI_CFLAGS=""],[$GSSAPI_LIBS])
1773         else
1774             GSSAPI_CFLAGS=""
1775         fi])
1777 WINE_NOTICE_WITH(gssapi,[test "x$ac_cv_lib_soname_gssapi_krb5" = "x"],
1778                  [libgssapi_krb5 ${notice_platform}development files not found (or too old), no Kerberos SSP support.])
1780 dnl **** Check for libprocstat ****
1781 if test "$ac_cv_header_libprocstat_h" = "yes"
1782 then
1783     AC_CHECK_LIB(procstat,procstat_open_sysctl,
1784                  [AC_DEFINE(HAVE_LIBPROCSTAT, 1, [Define to 1 if you have the `procstat' library (-lprocstat).])
1785                   AC_SUBST(PROCSTAT_LIBS,"-lprocstat")])
1788 dnl **** Check for libodbc ****
1789 WINE_CHECK_SONAME(odbc,SQLConnect,,[AC_DEFINE_UNQUOTED(SONAME_LIBODBC,["libodbc.$LIBEXT"])])
1791 dnl **** Check for libnetapi ****
1792 if test "x$with_netapi" != "xno"
1793 then
1794     WINE_PACKAGE_FLAGS(NETAPI,[netapi],,,,
1795       [WINE_CHECK_SONAME(netapi,libnetapi_init,,[AC_DEFINE_UNQUOTED(SONAME_LIBNETAPI,["libnetapi.$LIBEXT"])],[$NETAPI_LIBS])])
1797 WINE_NOTICE_WITH(netapi,[test "x$ac_cv_lib_soname_netapi" = "x"],
1798                  [libnetapi not found, Samba NetAPI won't be supported.],
1799                  [enable_netapi])
1802 dnl **** Check for any sound system ****
1803 if test "x$enable_winealsa_drv$enable_winecoreaudio_drv$enable_winepulse_drv$enable_wineoss_drv$enable_wineandroid_drv" = xnonononono -a \
1804         "x$with_alsa$with_coreaudio$with_oss$with_pulse" != xnononono
1805 then
1806     WINE_WARNING([No sound system was found. Windows applications will be silent.])
1809 dnl *** Check for Vulkan ***
1810 if test "x$with_vulkan" != "xno"
1811 then
1812     WINE_CHECK_SONAME(vulkan, vkGetInstanceProcAddr)
1813     if test "x$ac_cv_lib_soname_vulkan" = "x"
1814     then
1815         WINE_CHECK_SONAME(MoltenVK, vkGetInstanceProcAddr)
1816     fi
1818 WINE_NOTICE_WITH(vulkan,[test "x$ac_cv_lib_soname_vulkan" = "x" -a "x$ac_cv_lib_soname_MoltenVK" = "x"],
1819                  [libvulkan and libMoltenVK ${notice_platform}development files not found, Vulkan won't be supported.])
1821 dnl **** Check for gcc specific options ****
1823 if test "x${GCC}" = "xyes"
1824 then
1825   EXTRACFLAGS="$EXTRACFLAGS -Wall -pipe"
1827   dnl Check for some compiler flags
1828   dnl clang needs to be told to fail on unknown options
1829   saved_CFLAGS=$CFLAGS
1830   WINE_TRY_CFLAGS([-Werror=unknown-warning-option],[CFLAGS="$CFLAGS -Werror=unknown-warning-option"])
1831   WINE_TRY_CFLAGS([-Werror=unused-command-line-argument],[CFLAGS="$CFLAGS -Werror=unused-command-line-argument"])
1832   WINE_TRY_CFLAGS([-Werror=ignored-optimization-argument],[CFLAGS="$CFLAGS -Werror=ignored-optimization-argument"])
1833   WINE_TRY_CFLAGS([-fcf-protection=none])
1834   WINE_TRY_CFLAGS([-fno-stack-protector])
1835   WINE_TRY_CFLAGS([-fno-strict-aliasing])
1836   WINE_TRY_CFLAGS([-Wdeclaration-after-statement])
1837   WINE_TRY_CFLAGS([-Wempty-body])
1838   WINE_TRY_CFLAGS([-Wignored-qualifiers])
1839   WINE_TRY_CFLAGS([-Winit-self])
1840   WINE_TRY_CFLAGS([-Wpacked-not-aligned],[EXTRACFLAGS="$EXTRACFLAGS -Wno-packed-not-aligned"])
1841   WINE_TRY_CFLAGS([-Wpragma-pack],[EXTRACFLAGS="$EXTRACFLAGS -Wno-pragma-pack"])
1842   WINE_TRY_CFLAGS([-Wshift-overflow=2])
1843   WINE_TRY_CFLAGS([-Wstrict-prototypes])
1844   WINE_TRY_CFLAGS([-Wtype-limits])
1845   WINE_TRY_CFLAGS([-Wunused-but-set-parameter])
1846   WINE_TRY_CFLAGS([-Wvla])
1847   WINE_TRY_CFLAGS([-Wwrite-strings])
1849   dnl Check for noisy string.h
1850   WINE_TRY_CFLAGS([-Wpointer-arith],
1851      [saved_string_h_CFLAGS=$CFLAGS
1852       CFLAGS="$CFLAGS -Wpointer-arith -Werror"
1853       AC_CACHE_CHECK([for broken string.h that generates warnings with -Wpointer-arith], ac_cv_c_string_h_warnings,
1854           AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string.h>]])],[ac_cv_c_string_h_warnings=no],[ac_cv_c_string_h_warnings=yes]))
1855       test "$ac_cv_c_string_h_warnings" = yes || EXTRACFLAGS="$EXTRACFLAGS -Wpointer-arith"
1856       CFLAGS=$saved_string_h_CFLAGS])
1858   dnl Check for noisy string.h on logical ops
1859   WINE_TRY_CFLAGS([-Wlogical-op],
1860      [saved_string_h_CFLAGS=$CFLAGS
1861       CFLAGS="$CFLAGS -Wlogical-op -Werror"
1862       AC_CACHE_CHECK([for broken string.h that generates warnings with -Wlogical-op], ac_cv_c_logicalop_noisy,
1863           AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string.h>
1864 char*f(const char *h,char n) {return strchr(h,n);}]])],[ac_cv_c_logicalop_noisy=no],[ac_cv_c_logicalop_noisy=yes]))
1865       CFLAGS=$saved_string_h_CFLAGS
1866       test "$ac_cv_c_logicalop_noisy" = yes || EXTRACFLAGS="$EXTRACFLAGS -Wlogical-op"])
1868   dnl Check for 64-bit compare-and-swap
1869   AC_CACHE_CHECK([for flags needed for 64-bit compare-and-swap support], wine_cv_64bit_compare_swap,
1870       [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8
1871 #error no
1872 #endif]])],
1873           [wine_cv_64bit_compare_swap="none needed"],
1874           [case $host_cpu in
1875             *i[[3456]]86*) wine_cv_64bit_compare_swap="-march=i586" ;;
1876             *arm*)         wine_cv_64bit_compare_swap="-march=armv7-a" ;;
1877             *)             wine_cv_64bit_compare_swap="unknown" ;;
1878            esac
1879            if test "x$wine_cv_64bit_compare_swap" != xunknown
1880            then
1881                dnl try with the new flags
1882                CFLAGS="$CFLAGS $wine_cv_64bit_compare_swap"
1883                AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifndef __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8
1884 #error no
1885 #endif]])],,[wine_cv_64bit_compare_swap="unknown"])
1886                CFLAGS=$saved_CFLAGS
1887            fi])])
1888   case "$wine_cv_64bit_compare_swap" in
1889       unknown) AC_MSG_ERROR([gcc doesn't support 64-bit compare-and-swap on this platform]) ;;
1890       "none needed") ;;
1891       *) EXTRACFLAGS="$EXTRACFLAGS $wine_cv_64bit_compare_swap" ;;
1892   esac
1894   dnl Determine debug info format
1895   ac_debug_format_seen=""
1896   for ac_flag in $CFLAGS; do
1897     case $ac_flag in
1898       -gdwarf*)    ac_debug_format_seen=yes ;;
1899       -g)          ac_debug_format_seen=${ac_debug_format_seen:-default} ;;
1900     esac
1901   done
1902   if test "x$ac_debug_format_seen" = xdefault
1903   then
1904     WINE_TRY_CFLAGS([-gdwarf-4])
1905   fi
1907   dnl Disable gcc builtins except for Mingw
1908   AC_SUBST(MSVCRTFLAGS,"")
1909   case $host_os in
1910     mingw32*)  dnl Check for delayload linker support
1911        WINE_TRY_CFLAGS([-Wl,-delayload,autoconftest.dll],[AC_SUBST(DELAYLOADFLAG,["-Wl,-delayload,"])]) ;;
1912     *) MSVCRTFLAGS="-D_WIN32"
1913        WINE_TRY_CFLAGS([-fno-builtin],[MSVCRTFLAGS="$MSVCRTFLAGS -fno-builtin"])
1914        WINE_TRY_CFLAGS([-fshort-wchar],[MSVCRTFLAGS="$MSVCRTFLAGS -fshort-wchar"])
1915        WINE_TRY_CFLAGS([-fvisibility=hidden],[MSVCRTFLAGS="$MSVCRTFLAGS -fvisibility=hidden"])
1916        WINE_TRY_CFLAGS([-Wno-format],[MSVCRTFLAGS="$MSVCRTFLAGS -Wno-format"]) ;;
1917   esac
1919   case $host_cpu in
1920     dnl gcc-4.6+ omits frame pointers by default, breaking some copy protections
1921     *i[[3456789]]86*) WINE_TRY_CFLAGS([-fno-omit-frame-pointer],[MSVCRTFLAGS="$MSVCRTFLAGS -fno-omit-frame-pointer"]) ;;
1922     *x86_64*)
1923       case $host_os in
1924         dnl Mingw uses Windows 64-bit types, not Unix ones
1925         cygwin*|mingw32*) WINE_TRY_CFLAGS([-Wno-format]) ;;
1926         dnl Default to ms_abi on 64-bit
1927         *) if test -z "$PE_ARCHS"
1928            then
1929                AC_CACHE_CHECK([for working -mabi=ms], ac_cv_mabi_ms,
1930                    [CFLAGS="$CFLAGS -mabi=ms"
1931                     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdarg.h>
1932 int a(int b, ...) { __builtin_ms_va_list list; __builtin_ms_va_start(list,b); }]])],
1933                        [ac_cv_mabi_ms=yes],[ac_cv_mabi_ms=no])
1934                     CFLAGS=$saved_CFLAGS])
1935                test $ac_cv_mabi_ms = yes || AC_MSG_ERROR([The compiler doesn't support -mabi=ms. Use gcc instead of clang, or install mingw-w64.])
1936            fi
1937            MSVCRTFLAGS="$MSVCRTFLAGS -mabi=ms" ;;
1938       esac ;;
1939     arm*)
1940       WINE_TRY_CFLAGS([-Wincompatible-function-pointer-types],[EXTRACFLAGS="$EXTRACFLAGS -Wno-error=incompatible-function-pointer-types"]) ;;
1941   esac
1943   CFLAGS=$saved_CFLAGS
1945   dnl Enable -Werror
1946   if test "x$enable_werror" = "xyes"
1947   then
1948       WINE_TRY_CFLAGS([-Werror])
1949   fi
1950   if test "x$enable_build_id" = "xyes"
1951   then
1952       WINE_TRY_CFLAGS([-Wl,--build-id], [CFLAGS="$CFLAGS -Wl,--build-id"
1953                       LDFLAGS="$LDFLAGS -Wl,--build-id"])
1954   fi
1957 dnl **** Disable Fortify, it has too many false positives
1959 AC_CACHE_CHECK([for the need to disable Fortify], ac_cv_c_fortify_enabled,
1960     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string.h>]],
1961 [[#if (defined(__USE_FORTIFY_LEVEL) && __USE_FORTIFY_LEVEL > 0) || (defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0)
1962 #error Fortify enabled
1963 #endif]])],
1964         [ac_cv_c_fortify_enabled=no],[ac_cv_c_fortify_enabled=yes]))
1965 if test "$ac_cv_c_fortify_enabled" = yes
1966 then
1967     CFLAGS="$CFLAGS -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0"
1970 dnl **** Check for CFI directives support ****
1972 AC_CACHE_CHECK([whether CFI directives are supported in assembly code], ac_cv_c_cfi_support,
1973     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[asm(".text\nac_test:\t.cfi_startproc\n\t.long 0\n\t.cfi_endproc");]])],
1974                       ac_cv_c_cfi_support="yes",ac_cv_c_cfi_support="no"))
1975 if test "$ac_cv_c_cfi_support" = "yes"
1976 then
1977    DLLFLAGS="$DLLFLAGS -fasynchronous-unwind-tables"
1978    LDDLLFLAGS="$LDDLLFLAGS -fasynchronous-unwind-tables"
1979    UNIXDLLFLAGS="$UNIXDLLFLAGS -fasynchronous-unwind-tables"
1980 elif test $HOST_ARCH = x86_64
1981 then
1982    WINE_WARNING([building 64-bit Wine without support for CFI directives; exception handling will not work properly.])
1985 dnl **** Platform-specific checks ****
1987 case "$HOST_ARCH,$PE_ARCHS" in
1988   x86_64,*i386*) wine_binary="wine" ;;
1989   x86_64,*) wine_binary="wine64" ;;
1990   *) wine_binary="wine" ;;
1991 esac
1992 AC_SUBST(WINELOADER_PROGRAMS,"$wine_binary")
1994 case $host_os in
1995   linux*)
1996     case $host_cpu in
1997       *i[[3456789]]86*|x86_64*|*aarch64*|arm*)
1998         test "$wine_binary" = wine || WINE_IGNORE_FILE(loader/wine-preloader)
1999         WINELOADER_PROGRAMS="$WINELOADER_PROGRAMS $wine_binary-preloader"
2000         ;;
2001     esac
2002     ;;
2003   darwin*|macosx*)
2004     if test "$wine_can_build_preloader" = "yes"
2005     then
2006         test "$wine_binary" = wine || WINE_IGNORE_FILE(loader/wine-preloader)
2007         WINELOADER_PROGRAMS="$WINELOADER_PROGRAMS $wine_binary-preloader"
2008     fi
2009     ;;
2010 esac
2012 dnl **** Check for functions ****
2014 dnl Check for -ldl
2015 AC_SEARCH_LIBS(dlopen, dl)
2017 dnl Check for -lnsl for Solaris
2018 AC_SEARCH_LIBS(gethostbyname, nsl)
2020 dnl Check for -lsocket for Solaris
2021 AC_SEARCH_LIBS(connect, socket)
2023 dnl Check for -lresolv for Solaris
2024 AC_SEARCH_LIBS(inet_aton, resolv)
2026 ac_save_CFLAGS="$CFLAGS"
2027 CFLAGS="$CFLAGS $BUILTINFLAG"
2028 AC_CHECK_FUNCS(\
2029         dladdr1 \
2030         dlinfo \
2031         epoll_create \
2032         fstatfs \
2033         futimens \
2034         futimes \
2035         futimesat \
2036         getaddrinfo \
2037         getattrlist \
2038         getauxval \
2039         getifaddrs \
2040         getrandom \
2041         kqueue \
2042         mach_continuous_time \
2043         pipe2 \
2044         port_create \
2045         posix_fadvise \
2046         posix_fallocate \
2047         prctl \
2048         proc_pidinfo \
2049         sched_yield \
2050         setproctitle \
2051         setprogname \
2052         sigprocmask \
2053         sysinfo \
2054         tcdrain \
2055         thr_kill2
2057 CFLAGS="$ac_save_CFLAGS"
2059 dnl Check for clock_gettime which may be in -lrt
2060 case $host_os in
2061     darwin*|macosx*) ;;
2062     *) ac_save_LIBS=$LIBS
2063         AC_SEARCH_LIBS(clock_gettime, rt,
2064             [AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define to 1 if you have the `clock_gettime' function.])
2065                 test "$ac_res" = "none required" || AC_SUBST(RT_LIBS,"$ac_res")])
2066     LIBS=$ac_save_LIBS
2067     ;;
2068 esac
2070 AC_CACHE_CHECK([for sched_setaffinity],wine_cv_have_sched_setaffinity,
2071                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
2072 [[#include <sched.h>]], [[sched_setaffinity(0, 0, 0);]])],[wine_cv_have_sched_setaffinity=yes],[wine_cv_have_sched_setaffinity=no]))
2073 if test "$wine_cv_have_sched_setaffinity" = "yes"
2074 then
2075   AC_DEFINE(HAVE_SCHED_SETAFFINITY, 1, [Define to 1 if you have the `sched_setaffinity' function.])
2078 dnl **** Check for types ****
2080 AC_C_INLINE
2081 AC_CHECK_TYPES([request_sense],,,[#include <linux/cdrom.h>])
2083 AC_CHECK_TYPES([struct xinpgen],,,
2084 [#include <sys/types.h>
2085 #include <sys/socket.h>
2086 #ifdef HAVE_SYS_SOCKETVAR_H
2087 #include <sys/socketvar.h>
2088 #endif
2089 #ifdef HAVE_NET_ROUTE_H
2090 #include <net/route.h>
2091 #endif
2092 #ifdef HAVE_NETINET_IN_H
2093 #include <netinet/in.h>
2094 #endif
2095 #ifdef HAVE_NETINET_IN_SYSTM_H
2096 #include <netinet/in_systm.h>
2097 #endif
2098 #ifdef HAVE_NETINET_IP_H
2099 #include <netinet/ip.h>
2100 #endif
2101 #ifdef HAVE_NETINET_IN_PCB_H
2102 #include <netinet/in_pcb.h>
2103 #endif])
2105 AC_CACHE_CHECK([whether we can use re-entrant gethostbyname_r Linux style],
2106         wine_cv_linux_gethostbyname_r_6,
2107         AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <netdb.h>]],[[
2108     char *name=0;
2109     struct hostent he;
2110     struct hostent *result;
2111     char *buf=0;
2112     int bufsize=0;
2113     int errnr;
2114     char *addr=0;
2115     int addrlen=0;
2116     int addrtype=0;
2117     gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
2118     gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
2119     ]])],[wine_cv_linux_gethostbyname_r_6=yes],[wine_cv_linux_gethostbyname_r_6=no
2120         ])
2121    )
2122    if test "$wine_cv_linux_gethostbyname_r_6" = "yes"
2123    then
2124       AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6, 1,
2125                 [Define if Linux-style gethostbyname_r and gethostbyaddr_r are available])
2126    fi
2128 dnl Check for socket structure members
2129 AC_CHECK_MEMBERS([struct msghdr.msg_accrights, struct sockaddr_un.sun_len],,,
2130 [#include <sys/types.h>
2131 #include <sys/socket.h>
2132 #ifdef HAVE_SYS_UN_H
2133 # include <sys/un.h>
2134 #endif])
2136 dnl Check for scsireq_t and sg_io_hdr_t members
2137 AC_CHECK_MEMBERS([scsireq_t.cmd, sg_io_hdr_t.interface_id],,,
2138 [#include <sys/types.h>
2139 #ifdef HAVE_SCSI_SG_H
2140 #include <scsi/sg.h>
2141 #endif])
2143 dnl Check for siginfo_t members
2144 AC_CHECK_MEMBERS([siginfo_t.si_fd],,,[#include <signal.h>])
2146 dnl Check for struct mtget members
2147 AC_CHECK_MEMBERS([struct mtget.mt_blksiz, struct mtget.mt_gstat, struct mtget.mt_blkno],,,
2148 [#include <sys/types.h>
2149 #ifdef HAVE_SYS_MTIO_H
2150 #include <sys/mtio.h>
2151 #endif])
2153 dnl Check for stat.st_blocks and ns-resolved times
2154 AC_CHECK_MEMBERS([
2155         struct stat.st_mtim,
2156         struct stat.st_mtimespec,
2157         struct stat.st_ctim,
2158         struct stat.st_ctimespec,
2159         struct stat.st_atim,
2160         struct stat.st_atimespec,
2161         struct stat.st_birthtime,
2162         struct stat.st_birthtim,
2163         struct stat.st_birthtimespec,
2164         struct stat.__st_birthtime,
2165         struct stat.__st_birthtim])
2167 dnl Check for sin6_scope_id
2168 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
2169 [#include <sys/types.h>
2170 #ifdef HAVE_NETINET_IN_H
2171 #include <netinet/in.h>
2172 #endif])
2174 dnl Check for struct __res_state._u._ext.nscount6
2175 AC_CHECK_MEMBERS([struct __res_state._u._ext.nscount6],,,
2176 [#ifdef HAVE_RESOLV_H
2177 #include <resolv.h>
2178 #endif])
2180 dnl Check for struct in6_pktinfo
2181 AC_CHECK_MEMBERS([struct in6_pktinfo.ipi6_addr],,,
2182 [#ifdef HAVE_NETINET_IN_H
2183 #include <netinet/in.h>
2184 #endif])
2186 dnl Check for struct ipstat
2187 AC_CHECK_MEMBERS([struct ipstat.ips_total],,,
2188 [#include <sys/types.h>
2189 #ifdef HAVE_SYS_SOCKETVAR_H
2190 #include <sys/socketvar.h>
2191 #endif
2192 #ifdef HAVE_NETINET_IN_H
2193 #include <netinet/in.h>
2194 #endif
2195 #ifdef HAVE_NETINET_IP_VAR_H
2196 #include <netinet/ip_var.h>
2197 #endif])
2199 dnl Check for struct ip_stats
2200 AC_CHECK_MEMBERS([struct ip_stats.ips_total],,,
2201 [#ifdef HAVE_NETINET_IP_VAR_H
2202 #include <netinet/ip_var.h>
2203 #endif])
2205 dnl Check for struct ip6stat
2206 AC_CHECK_MEMBERS([struct ip6stat.ip6s_total],,,
2207 [#include <sys/types.h>
2208 #ifdef HAVE_SYS_SOCKETVAR_H
2209 #include <sys/socketvar.h>
2210 #endif
2211 #ifdef HAVE_NETINET_IN_H
2212 #include <netinet/in.h>
2213 #endif
2214 #ifdef HAVE_NETINET6_IP6_VAR_H
2215 #include <netinet6/ip6_var.h>
2216 #endif])
2218 dnl Check for struct icmpstat
2219 AC_CHECK_MEMBERS([struct icmpstat.icps_error],,,
2220 [#include <sys/types.h>
2221 #ifdef HAVE_SYS_SOCKETVAR_H
2222 #include <sys/socketvar.h>
2223 #endif
2224 #ifdef HAVE_NETINET_IN_H
2225 #include <netinet/in.h>
2226 #endif
2227 #ifdef HAVE_NETINET_IP_H
2228 #include <netinet/ip.h>
2229 #endif
2230 #ifdef HAVE_NETINET_IP_ICMP_H
2231 #include <netinet/ip_icmp.h>
2232 #endif
2233 #ifdef HAVE_NETINET_ICMP_VAR_H
2234 #include <netinet/icmp_var.h>
2235 #endif])
2237 dnl Check for struct icmp6stat
2238 AC_CHECK_MEMBERS([struct icmp6stat.icp6s_error],,,
2239 [#include <sys/types.h>
2240 #ifdef HAVE_SYS_SOCKETVAR_H
2241 #include <sys/socketvar.h>
2242 #endif
2243 #ifdef HAVE_NETINET_IN_H
2244 #include <netinet/in.h>
2245 #endif
2246 #ifdef HAVE_NETINET_ICMP6_H
2247 #include <netinet/icmp6.h>
2248 #endif])
2250 dnl Check for struct tcpstat
2251 AC_CHECK_MEMBERS([struct tcpstat.tcps_connattempt],,,
2252 [#include <sys/types.h>
2253 #ifdef HAVE_SYS_SOCKETVAR_H
2254 #include <sys/socketvar.h>
2255 #endif
2256 #ifdef HAVE_NETINET_IN_H
2257 #include <netinet/in.h>
2258 #endif
2259 #ifdef HAVE_NETINET_TCP_H
2260 #include <netinet/tcp.h>
2261 #endif
2262 #ifdef HAVE_NETINET_TCP_VAR_H
2263 #include <netinet/tcp_var.h>
2264 #endif])
2266 dnl Check for struct tcp_stats
2267 AC_CHECK_MEMBERS([struct tcp_stats.tcps_connattempt],,,
2268 [#ifdef HAVE_NETINET_TCP_VAR_H
2269 #include <netinet/tcp_var.h>
2270 #endif])
2272 dnl Check for struct udpstat
2273 AC_CHECK_MEMBERS([struct udpstat.udps_ipackets],,,
2274 [#include <sys/types.h>
2275 #ifdef HAVE_NETINET_IN_H
2276 #include <netinet/in.h>
2277 #endif
2278 #ifdef HAVE_NETINET_IP_VAR_H
2279 #include <netinet/ip_var.h>
2280 #endif
2281 #ifdef HAVE_NETINET_UDP_H
2282 #include <netinet/udp.h>
2283 #endif
2284 #ifdef HAVE_NETINET_UDP_VAR_H
2285 #include <netinet/udp_var.h>
2286 #endif])
2288 dnl Check for struct ifreq.ifr_hwaddr
2289 AC_CHECK_MEMBERS([struct ifreq.ifr_hwaddr],,,
2290 [#include <sys/types.h>
2291 #ifdef HAVE_NET_IF_H
2292 # include <net/if.h>
2293 #endif])
2295 dnl Check for struct sysinfo members totalram and mem_unit
2296 AC_CHECK_MEMBERS([struct sysinfo.totalram, struct sysinfo.mem_unit],,,
2297 [#ifdef HAVE_SYS_SYSINFO_H
2298 # include <sys/sysinfo.h>
2299 #endif])
2301 LIBS="$ac_save_LIBS"
2303 dnl Check for __builtin_popcount
2304 AC_CACHE_CHECK([for __builtin_popcount], ac_cv_have___builtin_popcount,
2305                AC_LINK_IFELSE([AC_LANG_PROGRAM(,[[return __builtin_popcount(1)]])],
2306                [ac_cv_have___builtin_popcount="yes"], [ac_cv_have___builtin_popcount="no"]))
2307 if test "$ac_cv_have___builtin_popcount" = "yes"
2308 then
2309     AC_DEFINE(HAVE___BUILTIN_POPCOUNT, 1, [Define to 1 if you have the `__builtin_popcount' built-in function.])
2312 AC_CACHE_CHECK([for __clear_cache], ac_cv_have___clear_cache,
2313                AC_LINK_IFELSE([AC_LANG_PROGRAM(,[[__clear_cache((void*)0, (void*)0); return 0;]])],
2314                [ac_cv_have___clear_cache="yes"], [ac_cv_have___clear_cache="no"]))
2315 if test "$ac_cv_have___clear_cache" = "yes"
2316 then
2317     AC_DEFINE(HAVE___CLEAR_CACHE, 1, [Define to 1 if you have the `__clear_cache' (potentially built-in) function.])
2320 dnl *** check for the need to define platform-specific symbols
2322 case $host_cpu in
2323   *i[[3456789]]86*) WINE_CHECK_DEFINE([__i386__]) ;;
2324   *x86_64*)         WINE_CHECK_DEFINE([__x86_64__]) ;;
2325   *sparc64*)        WINE_CHECK_DEFINE([__sparc64__]) ;;
2326   *sparc*)          WINE_CHECK_DEFINE([__sparc__]) ;;
2327   *powerpc64*)      WINE_CHECK_DEFINE([__powerpc64__]) ;;
2328   *powerpc*)        WINE_CHECK_DEFINE([__powerpc__]) ;;
2329   *aarch64*)        WINE_CHECK_DEFINE([__aarch64__]) ;;
2330   *arm*)            WINE_CHECK_DEFINE([__arm__]) ;;
2331 esac
2333 case $host_vendor in
2334   *sun*) WINE_CHECK_DEFINE([__sun__]) ;;
2335 esac
2337 dnl **** Generate output files ****
2339 AH_TOP([#ifndef __WINE_CONFIG_H
2340 #define __WINE_CONFIG_H])
2341 AH_BOTTOM([#endif /* __WINE_CONFIG_H */])
2343 AC_CONFIG_COMMANDS([include/stamp-h], [echo timestamp > include/stamp-h])
2344 AS_ECHO_N("creating Makefile rules...") >&AS_MESSAGE_FD
2346 makedep_flags=""
2347 test "x$enable_silent_rules" = xyes && makedep_flags="$makedep_flags -S"
2349 wine_srcdir=
2350 test "$srcdir" = . || wine_srcdir="$srcdir/"
2352 WINE_CONFIG_SYMLINK(wine,tools/winewrapper)
2353 WINE_CONFIG_SYMLINK(wine64,tools/winewrapper,["$wine_binary" = wine64 -o -n "$with_wine64"])
2355 WINE_CONFIG_MAKEFILE(dlls/acledit)
2356 WINE_CONFIG_MAKEFILE(dlls/aclui)
2357 WINE_CONFIG_MAKEFILE(dlls/activeds.tlb)
2358 WINE_CONFIG_MAKEFILE(dlls/activeds)
2359 WINE_CONFIG_MAKEFILE(dlls/activeds/tests)
2360 WINE_CONFIG_MAKEFILE(dlls/actxprxy)
2361 WINE_CONFIG_MAKEFILE(dlls/adsldp)
2362 WINE_CONFIG_MAKEFILE(dlls/adsldp/tests)
2363 WINE_CONFIG_MAKEFILE(dlls/adsldpc)
2364 WINE_CONFIG_MAKEFILE(dlls/advapi32)
2365 WINE_CONFIG_MAKEFILE(dlls/advapi32/tests)
2366 WINE_CONFIG_MAKEFILE(dlls/advpack)
2367 WINE_CONFIG_MAKEFILE(dlls/advpack/tests)
2368 WINE_CONFIG_MAKEFILE(dlls/amsi)
2369 WINE_CONFIG_MAKEFILE(dlls/amstream)
2370 WINE_CONFIG_MAKEFILE(dlls/amstream/tests)
2371 WINE_CONFIG_MAKEFILE(dlls/apisetschema)
2372 WINE_CONFIG_MAKEFILE(dlls/apphelp)
2373 WINE_CONFIG_MAKEFILE(dlls/apphelp/tests)
2374 WINE_CONFIG_MAKEFILE(dlls/appwiz.cpl)
2375 WINE_CONFIG_MAKEFILE(dlls/atl)
2376 WINE_CONFIG_MAKEFILE(dlls/atl/tests)
2377 WINE_CONFIG_MAKEFILE(dlls/atl100)
2378 WINE_CONFIG_MAKEFILE(dlls/atl100/tests)
2379 WINE_CONFIG_MAKEFILE(dlls/atl110)
2380 WINE_CONFIG_MAKEFILE(dlls/atl110/tests)
2381 WINE_CONFIG_MAKEFILE(dlls/atl80)
2382 WINE_CONFIG_MAKEFILE(dlls/atl80/tests)
2383 WINE_CONFIG_MAKEFILE(dlls/atl90)
2384 WINE_CONFIG_MAKEFILE(dlls/atlthunk)
2385 WINE_CONFIG_MAKEFILE(dlls/atlthunk/tests)
2386 WINE_CONFIG_MAKEFILE(dlls/atmlib)
2387 WINE_CONFIG_MAKEFILE(dlls/authz)
2388 WINE_CONFIG_MAKEFILE(dlls/avicap32)
2389 WINE_CONFIG_MAKEFILE(dlls/avifil32)
2390 WINE_CONFIG_MAKEFILE(dlls/avifil32/tests)
2391 WINE_CONFIG_MAKEFILE(dlls/avifile.dll16,enable_win16)
2392 WINE_CONFIG_MAKEFILE(dlls/avrt)
2393 WINE_CONFIG_MAKEFILE(dlls/bcrypt)
2394 WINE_CONFIG_MAKEFILE(dlls/bcrypt/tests)
2395 WINE_CONFIG_MAKEFILE(dlls/bluetoothapis)
2396 WINE_CONFIG_MAKEFILE(dlls/browseui)
2397 WINE_CONFIG_MAKEFILE(dlls/browseui/tests)
2398 WINE_CONFIG_MAKEFILE(dlls/bthprops.cpl)
2399 WINE_CONFIG_MAKEFILE(dlls/cabinet)
2400 WINE_CONFIG_MAKEFILE(dlls/cabinet/tests)
2401 WINE_CONFIG_MAKEFILE(dlls/capi2032)
2402 WINE_CONFIG_MAKEFILE(dlls/cards)
2403 WINE_CONFIG_MAKEFILE(dlls/cdosys)
2404 WINE_CONFIG_MAKEFILE(dlls/cfgmgr32)
2405 WINE_CONFIG_MAKEFILE(dlls/cfgmgr32/tests)
2406 WINE_CONFIG_MAKEFILE(dlls/clusapi)
2407 WINE_CONFIG_MAKEFILE(dlls/cng.sys)
2408 WINE_CONFIG_MAKEFILE(dlls/combase)
2409 WINE_CONFIG_MAKEFILE(dlls/combase/tests)
2410 WINE_CONFIG_MAKEFILE(dlls/comcat)
2411 WINE_CONFIG_MAKEFILE(dlls/comcat/tests)
2412 WINE_CONFIG_MAKEFILE(dlls/comctl32)
2413 WINE_CONFIG_MAKEFILE(dlls/comctl32/tests)
2414 WINE_CONFIG_MAKEFILE(dlls/comdlg32)
2415 WINE_CONFIG_MAKEFILE(dlls/comdlg32/tests)
2416 WINE_CONFIG_MAKEFILE(dlls/comm.drv16,enable_win16)
2417 WINE_CONFIG_MAKEFILE(dlls/commdlg.dll16,enable_win16)
2418 WINE_CONFIG_MAKEFILE(dlls/compobj.dll16,enable_win16)
2419 WINE_CONFIG_MAKEFILE(dlls/compstui)
2420 WINE_CONFIG_MAKEFILE(dlls/compstui/tests)
2421 WINE_CONFIG_MAKEFILE(dlls/comsvcs)
2422 WINE_CONFIG_MAKEFILE(dlls/comsvcs/tests)
2423 WINE_CONFIG_MAKEFILE(dlls/concrt140)
2424 WINE_CONFIG_MAKEFILE(dlls/concrt140/tests)
2425 WINE_CONFIG_MAKEFILE(dlls/connect)
2426 WINE_CONFIG_MAKEFILE(dlls/credui)
2427 WINE_CONFIG_MAKEFILE(dlls/credui/tests)
2428 WINE_CONFIG_MAKEFILE(dlls/crtdll)
2429 WINE_CONFIG_MAKEFILE(dlls/crypt32)
2430 WINE_CONFIG_MAKEFILE(dlls/crypt32/tests)
2431 WINE_CONFIG_MAKEFILE(dlls/cryptdlg)
2432 WINE_CONFIG_MAKEFILE(dlls/cryptdll)
2433 WINE_CONFIG_MAKEFILE(dlls/cryptext)
2434 WINE_CONFIG_MAKEFILE(dlls/cryptnet)
2435 WINE_CONFIG_MAKEFILE(dlls/cryptnet/tests)
2436 WINE_CONFIG_MAKEFILE(dlls/cryptowinrt)
2437 WINE_CONFIG_MAKEFILE(dlls/cryptowinrt/tests)
2438 WINE_CONFIG_MAKEFILE(dlls/cryptsp)
2439 WINE_CONFIG_MAKEFILE(dlls/cryptui)
2440 WINE_CONFIG_MAKEFILE(dlls/cryptui/tests)
2441 WINE_CONFIG_MAKEFILE(dlls/ctapi32)
2442 WINE_CONFIG_MAKEFILE(dlls/ctl3d.dll16,enable_win16)
2443 WINE_CONFIG_MAKEFILE(dlls/ctl3d32)
2444 WINE_CONFIG_MAKEFILE(dlls/ctl3dv2.dll16,enable_win16)
2445 WINE_CONFIG_MAKEFILE(dlls/d2d1)
2446 WINE_CONFIG_MAKEFILE(dlls/d2d1/tests)
2447 WINE_CONFIG_MAKEFILE(dlls/d3d10)
2448 WINE_CONFIG_MAKEFILE(dlls/d3d10/tests)
2449 WINE_CONFIG_MAKEFILE(dlls/d3d10_1)
2450 WINE_CONFIG_MAKEFILE(dlls/d3d10_1/tests)
2451 WINE_CONFIG_MAKEFILE(dlls/d3d10core)
2452 WINE_CONFIG_MAKEFILE(dlls/d3d10core/tests)
2453 WINE_CONFIG_MAKEFILE(dlls/d3d11)
2454 WINE_CONFIG_MAKEFILE(dlls/d3d11/tests)
2455 WINE_CONFIG_MAKEFILE(dlls/d3d12)
2456 WINE_CONFIG_MAKEFILE(dlls/d3d12/tests)
2457 WINE_CONFIG_MAKEFILE(dlls/d3d12core)
2458 WINE_CONFIG_MAKEFILE(dlls/d3d8)
2459 WINE_CONFIG_MAKEFILE(dlls/d3d8/tests)
2460 WINE_CONFIG_MAKEFILE(dlls/d3d8thk)
2461 WINE_CONFIG_MAKEFILE(dlls/d3d9)
2462 WINE_CONFIG_MAKEFILE(dlls/d3d9/tests)
2463 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_33)
2464 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_34)
2465 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_35)
2466 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_36)
2467 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_37)
2468 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_38)
2469 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_39)
2470 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_40)
2471 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_41)
2472 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_42)
2473 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_43)
2474 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_43/tests)
2475 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_46)
2476 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_46/tests)
2477 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_47)
2478 WINE_CONFIG_MAKEFILE(dlls/d3dcompiler_47/tests)
2479 WINE_CONFIG_MAKEFILE(dlls/d3dim)
2480 WINE_CONFIG_MAKEFILE(dlls/d3dim700)
2481 WINE_CONFIG_MAKEFILE(dlls/d3drm)
2482 WINE_CONFIG_MAKEFILE(dlls/d3drm/tests)
2483 WINE_CONFIG_MAKEFILE(dlls/d3dx10_33)
2484 WINE_CONFIG_MAKEFILE(dlls/d3dx10_34)
2485 WINE_CONFIG_MAKEFILE(dlls/d3dx10_34/tests)
2486 WINE_CONFIG_MAKEFILE(dlls/d3dx10_35)
2487 WINE_CONFIG_MAKEFILE(dlls/d3dx10_35/tests)
2488 WINE_CONFIG_MAKEFILE(dlls/d3dx10_36)
2489 WINE_CONFIG_MAKEFILE(dlls/d3dx10_36/tests)
2490 WINE_CONFIG_MAKEFILE(dlls/d3dx10_37)
2491 WINE_CONFIG_MAKEFILE(dlls/d3dx10_37/tests)
2492 WINE_CONFIG_MAKEFILE(dlls/d3dx10_38)
2493 WINE_CONFIG_MAKEFILE(dlls/d3dx10_38/tests)
2494 WINE_CONFIG_MAKEFILE(dlls/d3dx10_39)
2495 WINE_CONFIG_MAKEFILE(dlls/d3dx10_39/tests)
2496 WINE_CONFIG_MAKEFILE(dlls/d3dx10_40)
2497 WINE_CONFIG_MAKEFILE(dlls/d3dx10_40/tests)
2498 WINE_CONFIG_MAKEFILE(dlls/d3dx10_41)
2499 WINE_CONFIG_MAKEFILE(dlls/d3dx10_41/tests)
2500 WINE_CONFIG_MAKEFILE(dlls/d3dx10_42)
2501 WINE_CONFIG_MAKEFILE(dlls/d3dx10_42/tests)
2502 WINE_CONFIG_MAKEFILE(dlls/d3dx10_43)
2503 WINE_CONFIG_MAKEFILE(dlls/d3dx10_43/tests)
2504 WINE_CONFIG_MAKEFILE(dlls/d3dx11_42)
2505 WINE_CONFIG_MAKEFILE(dlls/d3dx11_42/tests)
2506 WINE_CONFIG_MAKEFILE(dlls/d3dx11_43)
2507 WINE_CONFIG_MAKEFILE(dlls/d3dx11_43/tests)
2508 WINE_CONFIG_MAKEFILE(dlls/d3dx9_24)
2509 WINE_CONFIG_MAKEFILE(dlls/d3dx9_25)
2510 WINE_CONFIG_MAKEFILE(dlls/d3dx9_26)
2511 WINE_CONFIG_MAKEFILE(dlls/d3dx9_27)
2512 WINE_CONFIG_MAKEFILE(dlls/d3dx9_28)
2513 WINE_CONFIG_MAKEFILE(dlls/d3dx9_29)
2514 WINE_CONFIG_MAKEFILE(dlls/d3dx9_30)
2515 WINE_CONFIG_MAKEFILE(dlls/d3dx9_31)
2516 WINE_CONFIG_MAKEFILE(dlls/d3dx9_32)
2517 WINE_CONFIG_MAKEFILE(dlls/d3dx9_33)
2518 WINE_CONFIG_MAKEFILE(dlls/d3dx9_34)
2519 WINE_CONFIG_MAKEFILE(dlls/d3dx9_35)
2520 WINE_CONFIG_MAKEFILE(dlls/d3dx9_36)
2521 WINE_CONFIG_MAKEFILE(dlls/d3dx9_36/tests)
2522 WINE_CONFIG_MAKEFILE(dlls/d3dx9_37)
2523 WINE_CONFIG_MAKEFILE(dlls/d3dx9_38)
2524 WINE_CONFIG_MAKEFILE(dlls/d3dx9_39)
2525 WINE_CONFIG_MAKEFILE(dlls/d3dx9_40)
2526 WINE_CONFIG_MAKEFILE(dlls/d3dx9_41)
2527 WINE_CONFIG_MAKEFILE(dlls/d3dx9_42)
2528 WINE_CONFIG_MAKEFILE(dlls/d3dx9_43)
2529 WINE_CONFIG_MAKEFILE(dlls/d3dxof)
2530 WINE_CONFIG_MAKEFILE(dlls/d3dxof/tests)
2531 WINE_CONFIG_MAKEFILE(dlls/davclnt)
2532 WINE_CONFIG_MAKEFILE(dlls/dbgeng)
2533 WINE_CONFIG_MAKEFILE(dlls/dbgeng/tests)
2534 WINE_CONFIG_MAKEFILE(dlls/dbghelp)
2535 WINE_CONFIG_MAKEFILE(dlls/dbghelp/tests)
2536 WINE_CONFIG_MAKEFILE(dlls/dciman32)
2537 WINE_CONFIG_MAKEFILE(dlls/dcomp)
2538 WINE_CONFIG_MAKEFILE(dlls/ddeml.dll16,enable_win16)
2539 WINE_CONFIG_MAKEFILE(dlls/ddraw)
2540 WINE_CONFIG_MAKEFILE(dlls/ddraw/tests)
2541 WINE_CONFIG_MAKEFILE(dlls/ddrawex)
2542 WINE_CONFIG_MAKEFILE(dlls/ddrawex/tests)
2543 WINE_CONFIG_MAKEFILE(dlls/devenum)
2544 WINE_CONFIG_MAKEFILE(dlls/devenum/tests)
2545 WINE_CONFIG_MAKEFILE(dlls/dhcpcsvc)
2546 WINE_CONFIG_MAKEFILE(dlls/dhcpcsvc/tests)
2547 WINE_CONFIG_MAKEFILE(dlls/dhcpcsvc6)
2548 WINE_CONFIG_MAKEFILE(dlls/dhtmled.ocx)
2549 WINE_CONFIG_MAKEFILE(dlls/diasymreader)
2550 WINE_CONFIG_MAKEFILE(dlls/difxapi)
2551 WINE_CONFIG_MAKEFILE(dlls/dinput)
2552 WINE_CONFIG_MAKEFILE(dlls/dinput/tests)
2553 WINE_CONFIG_MAKEFILE(dlls/dinput8)
2554 WINE_CONFIG_MAKEFILE(dlls/directmanipulation)
2555 WINE_CONFIG_MAKEFILE(dlls/directmanipulation/tests)
2556 WINE_CONFIG_MAKEFILE(dlls/dispdib.dll16,enable_win16)
2557 WINE_CONFIG_MAKEFILE(dlls/dispex)
2558 WINE_CONFIG_MAKEFILE(dlls/dispex/tests)
2559 WINE_CONFIG_MAKEFILE(dlls/display.drv16,enable_win16)
2560 WINE_CONFIG_MAKEFILE(dlls/dmband)
2561 WINE_CONFIG_MAKEFILE(dlls/dmband/tests)
2562 WINE_CONFIG_MAKEFILE(dlls/dmcompos)
2563 WINE_CONFIG_MAKEFILE(dlls/dmcompos/tests)
2564 WINE_CONFIG_MAKEFILE(dlls/dmime)
2565 WINE_CONFIG_MAKEFILE(dlls/dmime/tests)
2566 WINE_CONFIG_MAKEFILE(dlls/dmloader)
2567 WINE_CONFIG_MAKEFILE(dlls/dmloader/tests)
2568 WINE_CONFIG_MAKEFILE(dlls/dmscript)
2569 WINE_CONFIG_MAKEFILE(dlls/dmscript/tests)
2570 WINE_CONFIG_MAKEFILE(dlls/dmstyle)
2571 WINE_CONFIG_MAKEFILE(dlls/dmstyle/tests)
2572 WINE_CONFIG_MAKEFILE(dlls/dmsynth)
2573 WINE_CONFIG_MAKEFILE(dlls/dmsynth/tests)
2574 WINE_CONFIG_MAKEFILE(dlls/dmusic)
2575 WINE_CONFIG_MAKEFILE(dlls/dmusic/tests)
2576 WINE_CONFIG_MAKEFILE(dlls/dmusic32)
2577 WINE_CONFIG_MAKEFILE(dlls/dnsapi)
2578 WINE_CONFIG_MAKEFILE(dlls/dnsapi/tests)
2579 WINE_CONFIG_MAKEFILE(dlls/dplay)
2580 WINE_CONFIG_MAKEFILE(dlls/dplayx)
2581 WINE_CONFIG_MAKEFILE(dlls/dplayx/tests)
2582 WINE_CONFIG_MAKEFILE(dlls/dpnaddr)
2583 WINE_CONFIG_MAKEFILE(dlls/dpnet)
2584 WINE_CONFIG_MAKEFILE(dlls/dpnet/tests)
2585 WINE_CONFIG_MAKEFILE(dlls/dpnhpast)
2586 WINE_CONFIG_MAKEFILE(dlls/dpnhupnp)
2587 WINE_CONFIG_MAKEFILE(dlls/dpnlobby)
2588 WINE_CONFIG_MAKEFILE(dlls/dpvoice)
2589 WINE_CONFIG_MAKEFILE(dlls/dpvoice/tests)
2590 WINE_CONFIG_MAKEFILE(dlls/dpwsockx)
2591 WINE_CONFIG_MAKEFILE(dlls/drmclien)
2592 WINE_CONFIG_MAKEFILE(dlls/dsdmo)
2593 WINE_CONFIG_MAKEFILE(dlls/dsdmo/tests)
2594 WINE_CONFIG_MAKEFILE(dlls/dsound)
2595 WINE_CONFIG_MAKEFILE(dlls/dsound/tests)
2596 WINE_CONFIG_MAKEFILE(dlls/dsquery)
2597 WINE_CONFIG_MAKEFILE(dlls/dssenh)
2598 WINE_CONFIG_MAKEFILE(dlls/dssenh/tests)
2599 WINE_CONFIG_MAKEFILE(dlls/dsuiext)
2600 WINE_CONFIG_MAKEFILE(dlls/dswave)
2601 WINE_CONFIG_MAKEFILE(dlls/dswave/tests)
2602 WINE_CONFIG_MAKEFILE(dlls/dwmapi)
2603 WINE_CONFIG_MAKEFILE(dlls/dwmapi/tests)
2604 WINE_CONFIG_MAKEFILE(dlls/dwrite)
2605 WINE_CONFIG_MAKEFILE(dlls/dwrite/tests)
2606 WINE_CONFIG_MAKEFILE(dlls/dx8vb)
2607 WINE_CONFIG_MAKEFILE(dlls/dxdiagn)
2608 WINE_CONFIG_MAKEFILE(dlls/dxdiagn/tests)
2609 WINE_CONFIG_MAKEFILE(dlls/dxgi)
2610 WINE_CONFIG_MAKEFILE(dlls/dxgi/tests)
2611 WINE_CONFIG_MAKEFILE(dlls/dxtrans)
2612 WINE_CONFIG_MAKEFILE(dlls/dxva2)
2613 WINE_CONFIG_MAKEFILE(dlls/dxva2/tests)
2614 WINE_CONFIG_MAKEFILE(dlls/esent)
2615 WINE_CONFIG_MAKEFILE(dlls/evr)
2616 WINE_CONFIG_MAKEFILE(dlls/evr/tests)
2617 WINE_CONFIG_MAKEFILE(dlls/explorerframe)
2618 WINE_CONFIG_MAKEFILE(dlls/explorerframe/tests)
2619 WINE_CONFIG_MAKEFILE(dlls/faultrep)
2620 WINE_CONFIG_MAKEFILE(dlls/faultrep/tests)
2621 WINE_CONFIG_MAKEFILE(dlls/feclient)
2622 WINE_CONFIG_MAKEFILE(dlls/fltlib)
2623 WINE_CONFIG_MAKEFILE(dlls/fltmgr.sys)
2624 WINE_CONFIG_MAKEFILE(dlls/fntcache)
2625 WINE_CONFIG_MAKEFILE(dlls/fontsub)
2626 WINE_CONFIG_MAKEFILE(dlls/fusion)
2627 WINE_CONFIG_MAKEFILE(dlls/fusion/tests)
2628 WINE_CONFIG_MAKEFILE(dlls/fwpuclnt)
2629 WINE_CONFIG_MAKEFILE(dlls/gameux)
2630 WINE_CONFIG_MAKEFILE(dlls/gameux/tests)
2631 WINE_CONFIG_MAKEFILE(dlls/gamingtcui)
2632 WINE_CONFIG_MAKEFILE(dlls/gdi.exe16,enable_win16)
2633 WINE_CONFIG_MAKEFILE(dlls/gdi32)
2634 WINE_CONFIG_MAKEFILE(dlls/gdi32/tests)
2635 WINE_CONFIG_MAKEFILE(dlls/gdiplus)
2636 WINE_CONFIG_MAKEFILE(dlls/gdiplus/tests)
2637 WINE_CONFIG_MAKEFILE(dlls/glu32)
2638 WINE_CONFIG_MAKEFILE(dlls/gphoto2.ds)
2639 WINE_CONFIG_MAKEFILE(dlls/gpkcsp)
2640 WINE_CONFIG_MAKEFILE(dlls/graphicscapture)
2641 WINE_CONFIG_MAKEFILE(dlls/graphicscapture/tests)
2642 WINE_CONFIG_MAKEFILE(dlls/hal)
2643 WINE_CONFIG_MAKEFILE(dlls/hhctrl.ocx)
2644 WINE_CONFIG_MAKEFILE(dlls/hid)
2645 WINE_CONFIG_MAKEFILE(dlls/hid/tests)
2646 WINE_CONFIG_MAKEFILE(dlls/hidclass.sys)
2647 WINE_CONFIG_MAKEFILE(dlls/hidparse.sys)
2648 WINE_CONFIG_MAKEFILE(dlls/hlink)
2649 WINE_CONFIG_MAKEFILE(dlls/hlink/tests)
2650 WINE_CONFIG_MAKEFILE(dlls/hnetcfg)
2651 WINE_CONFIG_MAKEFILE(dlls/hnetcfg/tests)
2652 WINE_CONFIG_MAKEFILE(dlls/hrtfapo)
2653 WINE_CONFIG_MAKEFILE(dlls/http.sys)
2654 WINE_CONFIG_MAKEFILE(dlls/httpapi)
2655 WINE_CONFIG_MAKEFILE(dlls/httpapi/tests)
2656 WINE_CONFIG_MAKEFILE(dlls/ia2comproxy)
2657 WINE_CONFIG_MAKEFILE(dlls/iccvid)
2658 WINE_CONFIG_MAKEFILE(dlls/icmp)
2659 WINE_CONFIG_MAKEFILE(dlls/ieframe)
2660 WINE_CONFIG_MAKEFILE(dlls/ieframe/tests)
2661 WINE_CONFIG_MAKEFILE(dlls/ieproxy)
2662 WINE_CONFIG_MAKEFILE(dlls/ifsmgr.vxd,enable_win16)
2663 WINE_CONFIG_MAKEFILE(dlls/imaadp32.acm)
2664 WINE_CONFIG_MAKEFILE(dlls/imagehlp)
2665 WINE_CONFIG_MAKEFILE(dlls/imagehlp/tests)
2666 WINE_CONFIG_MAKEFILE(dlls/imm.dll16,enable_win16)
2667 WINE_CONFIG_MAKEFILE(dlls/imm32)
2668 WINE_CONFIG_MAKEFILE(dlls/imm32/tests)
2669 WINE_CONFIG_MAKEFILE(dlls/inetcomm)
2670 WINE_CONFIG_MAKEFILE(dlls/inetcomm/tests)
2671 WINE_CONFIG_MAKEFILE(dlls/inetcpl.cpl)
2672 WINE_CONFIG_MAKEFILE(dlls/inetmib1)
2673 WINE_CONFIG_MAKEFILE(dlls/inetmib1/tests)
2674 WINE_CONFIG_MAKEFILE(dlls/infosoft)
2675 WINE_CONFIG_MAKEFILE(dlls/infosoft/tests)
2676 WINE_CONFIG_MAKEFILE(dlls/initpki)
2677 WINE_CONFIG_MAKEFILE(dlls/inkobj)
2678 WINE_CONFIG_MAKEFILE(dlls/inseng)
2679 WINE_CONFIG_MAKEFILE(dlls/iphlpapi)
2680 WINE_CONFIG_MAKEFILE(dlls/iphlpapi/tests)
2681 WINE_CONFIG_MAKEFILE(dlls/iprop)
2682 WINE_CONFIG_MAKEFILE(dlls/ir50_32)
2683 WINE_CONFIG_MAKEFILE(dlls/irprops.cpl)
2684 WINE_CONFIG_MAKEFILE(dlls/itircl)
2685 WINE_CONFIG_MAKEFILE(dlls/itss)
2686 WINE_CONFIG_MAKEFILE(dlls/itss/tests)
2687 WINE_CONFIG_MAKEFILE(dlls/joy.cpl)
2688 WINE_CONFIG_MAKEFILE(dlls/jscript)
2689 WINE_CONFIG_MAKEFILE(dlls/jscript/tests)
2690 WINE_CONFIG_MAKEFILE(dlls/jsproxy)
2691 WINE_CONFIG_MAKEFILE(dlls/jsproxy/tests)
2692 WINE_CONFIG_MAKEFILE(dlls/kerberos)
2693 WINE_CONFIG_MAKEFILE(dlls/kernel32)
2694 WINE_CONFIG_MAKEFILE(dlls/kernel32/tests)
2695 WINE_CONFIG_MAKEFILE(dlls/kernelbase)
2696 WINE_CONFIG_MAKEFILE(dlls/kernelbase/tests)
2697 WINE_CONFIG_MAKEFILE(dlls/keyboard.drv16,enable_win16)
2698 WINE_CONFIG_MAKEFILE(dlls/krnl386.exe16,enable_win16)
2699 WINE_CONFIG_MAKEFILE(dlls/ksecdd.sys)
2700 WINE_CONFIG_MAKEFILE(dlls/ksproxy.ax)
2701 WINE_CONFIG_MAKEFILE(dlls/ksuser)
2702 WINE_CONFIG_MAKEFILE(dlls/ktmw32)
2703 WINE_CONFIG_MAKEFILE(dlls/l3codeca.acm)
2704 WINE_CONFIG_MAKEFILE(dlls/light.msstyles)
2705 WINE_CONFIG_MAKEFILE(dlls/loadperf)
2706 WINE_CONFIG_MAKEFILE(dlls/localspl)
2707 WINE_CONFIG_MAKEFILE(dlls/localspl/tests)
2708 WINE_CONFIG_MAKEFILE(dlls/localui)
2709 WINE_CONFIG_MAKEFILE(dlls/localui/tests)
2710 WINE_CONFIG_MAKEFILE(dlls/lz32)
2711 WINE_CONFIG_MAKEFILE(dlls/lz32/tests)
2712 WINE_CONFIG_MAKEFILE(dlls/lzexpand.dll16,enable_win16)
2713 WINE_CONFIG_MAKEFILE(dlls/mapi32)
2714 WINE_CONFIG_MAKEFILE(dlls/mapi32/tests)
2715 WINE_CONFIG_MAKEFILE(dlls/mapistub)
2716 WINE_CONFIG_MAKEFILE(dlls/mciavi32)
2717 WINE_CONFIG_MAKEFILE(dlls/mcicda)
2718 WINE_CONFIG_MAKEFILE(dlls/mciqtz32)
2719 WINE_CONFIG_MAKEFILE(dlls/mciseq)
2720 WINE_CONFIG_MAKEFILE(dlls/mciwave)
2721 WINE_CONFIG_MAKEFILE(dlls/mf)
2722 WINE_CONFIG_MAKEFILE(dlls/mf/tests)
2723 WINE_CONFIG_MAKEFILE(dlls/mf3216)
2724 WINE_CONFIG_MAKEFILE(dlls/mferror)
2725 WINE_CONFIG_MAKEFILE(dlls/mfmediaengine)
2726 WINE_CONFIG_MAKEFILE(dlls/mfmediaengine/tests)
2727 WINE_CONFIG_MAKEFILE(dlls/mfplat)
2728 WINE_CONFIG_MAKEFILE(dlls/mfplat/tests)
2729 WINE_CONFIG_MAKEFILE(dlls/mfplay)
2730 WINE_CONFIG_MAKEFILE(dlls/mfplay/tests)
2731 WINE_CONFIG_MAKEFILE(dlls/mfreadwrite)
2732 WINE_CONFIG_MAKEFILE(dlls/mfreadwrite/tests)
2733 WINE_CONFIG_MAKEFILE(dlls/mfsrcsnk)
2734 WINE_CONFIG_MAKEFILE(dlls/mfsrcsnk/tests)
2735 WINE_CONFIG_MAKEFILE(dlls/mgmtapi)
2736 WINE_CONFIG_MAKEFILE(dlls/midimap)
2737 WINE_CONFIG_MAKEFILE(dlls/mlang)
2738 WINE_CONFIG_MAKEFILE(dlls/mlang/tests)
2739 WINE_CONFIG_MAKEFILE(dlls/mmcndmgr)
2740 WINE_CONFIG_MAKEFILE(dlls/mmcndmgr/tests)
2741 WINE_CONFIG_MAKEFILE(dlls/mmdevapi)
2742 WINE_CONFIG_MAKEFILE(dlls/mmdevapi/tests)
2743 WINE_CONFIG_MAKEFILE(dlls/mmdevldr.vxd,enable_win16)
2744 WINE_CONFIG_MAKEFILE(dlls/mmsystem.dll16,enable_win16)
2745 WINE_CONFIG_MAKEFILE(dlls/monodebg.vxd,enable_win16)
2746 WINE_CONFIG_MAKEFILE(dlls/mountmgr.sys)
2747 WINE_CONFIG_MAKEFILE(dlls/mouse.drv16,enable_win16)
2748 WINE_CONFIG_MAKEFILE(dlls/mp3dmod)
2749 WINE_CONFIG_MAKEFILE(dlls/mp3dmod/tests)
2750 WINE_CONFIG_MAKEFILE(dlls/mpr)
2751 WINE_CONFIG_MAKEFILE(dlls/mpr/tests)
2752 WINE_CONFIG_MAKEFILE(dlls/mprapi)
2753 WINE_CONFIG_MAKEFILE(dlls/msacm.dll16,enable_win16)
2754 WINE_CONFIG_MAKEFILE(dlls/msacm32.drv)
2755 WINE_CONFIG_MAKEFILE(dlls/msacm32)
2756 WINE_CONFIG_MAKEFILE(dlls/msacm32/tests)
2757 WINE_CONFIG_MAKEFILE(dlls/msado15)
2758 WINE_CONFIG_MAKEFILE(dlls/msado15/tests)
2759 WINE_CONFIG_MAKEFILE(dlls/msadp32.acm)
2760 WINE_CONFIG_MAKEFILE(dlls/msasn1)
2761 WINE_CONFIG_MAKEFILE(dlls/msasn1/tests)
2762 WINE_CONFIG_MAKEFILE(dlls/msauddecmft)
2763 WINE_CONFIG_MAKEFILE(dlls/mscat32)
2764 WINE_CONFIG_MAKEFILE(dlls/mscms)
2765 WINE_CONFIG_MAKEFILE(dlls/mscms/tests)
2766 WINE_CONFIG_MAKEFILE(dlls/mscoree)
2767 WINE_CONFIG_MAKEFILE(dlls/mscoree/tests)
2768 WINE_CONFIG_MAKEFILE(dlls/mscorwks)
2769 WINE_CONFIG_MAKEFILE(dlls/msctf)
2770 WINE_CONFIG_MAKEFILE(dlls/msctf/tests)
2771 WINE_CONFIG_MAKEFILE(dlls/msctfmonitor)
2772 WINE_CONFIG_MAKEFILE(dlls/msctfp)
2773 WINE_CONFIG_MAKEFILE(dlls/msdaps)
2774 WINE_CONFIG_MAKEFILE(dlls/msdasql)
2775 WINE_CONFIG_MAKEFILE(dlls/msdasql/tests)
2776 WINE_CONFIG_MAKEFILE(dlls/msdelta)
2777 WINE_CONFIG_MAKEFILE(dlls/msdmo)
2778 WINE_CONFIG_MAKEFILE(dlls/msdmo/tests)
2779 WINE_CONFIG_MAKEFILE(dlls/msdrm)
2780 WINE_CONFIG_MAKEFILE(dlls/msftedit)
2781 WINE_CONFIG_MAKEFILE(dlls/msftedit/tests)
2782 WINE_CONFIG_MAKEFILE(dlls/msg711.acm)
2783 WINE_CONFIG_MAKEFILE(dlls/msgsm32.acm)
2784 WINE_CONFIG_MAKEFILE(dlls/mshtml.tlb)
2785 WINE_CONFIG_MAKEFILE(dlls/mshtml)
2786 WINE_CONFIG_MAKEFILE(dlls/mshtml/tests)
2787 WINE_CONFIG_MAKEFILE(dlls/msi)
2788 WINE_CONFIG_MAKEFILE(dlls/msi/tests)
2789 WINE_CONFIG_MAKEFILE(dlls/msident)
2790 WINE_CONFIG_MAKEFILE(dlls/msimg32)
2791 WINE_CONFIG_MAKEFILE(dlls/msimsg)
2792 WINE_CONFIG_MAKEFILE(dlls/msimtf)
2793 WINE_CONFIG_MAKEFILE(dlls/msisip)
2794 WINE_CONFIG_MAKEFILE(dlls/msisys.ocx)
2795 WINE_CONFIG_MAKEFILE(dlls/msls31)
2796 WINE_CONFIG_MAKEFILE(dlls/msmpeg2vdec)
2797 WINE_CONFIG_MAKEFILE(dlls/msnet32)
2798 WINE_CONFIG_MAKEFILE(dlls/mspatcha)
2799 WINE_CONFIG_MAKEFILE(dlls/mspatcha/tests)
2800 WINE_CONFIG_MAKEFILE(dlls/msports)
2801 WINE_CONFIG_MAKEFILE(dlls/msrle32)
2802 WINE_CONFIG_MAKEFILE(dlls/msrle32/tests)
2803 WINE_CONFIG_MAKEFILE(dlls/msscript.ocx)
2804 WINE_CONFIG_MAKEFILE(dlls/msscript.ocx/tests)
2805 WINE_CONFIG_MAKEFILE(dlls/mssign32)
2806 WINE_CONFIG_MAKEFILE(dlls/mssip32)
2807 WINE_CONFIG_MAKEFILE(dlls/mstask)
2808 WINE_CONFIG_MAKEFILE(dlls/mstask/tests)
2809 WINE_CONFIG_MAKEFILE(dlls/msv1_0)
2810 WINE_CONFIG_MAKEFILE(dlls/msvcirt)
2811 WINE_CONFIG_MAKEFILE(dlls/msvcirt/tests)
2812 WINE_CONFIG_MAKEFILE(dlls/msvcm80)
2813 WINE_CONFIG_MAKEFILE(dlls/msvcm90)
2814 WINE_CONFIG_MAKEFILE(dlls/msvcp100)
2815 WINE_CONFIG_MAKEFILE(dlls/msvcp100/tests)
2816 WINE_CONFIG_MAKEFILE(dlls/msvcp110)
2817 WINE_CONFIG_MAKEFILE(dlls/msvcp110/tests)
2818 WINE_CONFIG_MAKEFILE(dlls/msvcp120)
2819 WINE_CONFIG_MAKEFILE(dlls/msvcp120/tests)
2820 WINE_CONFIG_MAKEFILE(dlls/msvcp120_app)
2821 WINE_CONFIG_MAKEFILE(dlls/msvcp140)
2822 WINE_CONFIG_MAKEFILE(dlls/msvcp140/tests)
2823 WINE_CONFIG_MAKEFILE(dlls/msvcp140_1)
2824 WINE_CONFIG_MAKEFILE(dlls/msvcp140_1/tests)
2825 WINE_CONFIG_MAKEFILE(dlls/msvcp140_2)
2826 WINE_CONFIG_MAKEFILE(dlls/msvcp140_atomic_wait)
2827 WINE_CONFIG_MAKEFILE(dlls/msvcp140_atomic_wait/tests)
2828 WINE_CONFIG_MAKEFILE(dlls/msvcp60)
2829 WINE_CONFIG_MAKEFILE(dlls/msvcp60/tests)
2830 WINE_CONFIG_MAKEFILE(dlls/msvcp70)
2831 WINE_CONFIG_MAKEFILE(dlls/msvcp71)
2832 WINE_CONFIG_MAKEFILE(dlls/msvcp80)
2833 WINE_CONFIG_MAKEFILE(dlls/msvcp90)
2834 WINE_CONFIG_MAKEFILE(dlls/msvcp90/tests)
2835 WINE_CONFIG_MAKEFILE(dlls/msvcp_win)
2836 WINE_CONFIG_MAKEFILE(dlls/msvcr100)
2837 WINE_CONFIG_MAKEFILE(dlls/msvcr100/tests)
2838 WINE_CONFIG_MAKEFILE(dlls/msvcr110)
2839 WINE_CONFIG_MAKEFILE(dlls/msvcr110/tests)
2840 WINE_CONFIG_MAKEFILE(dlls/msvcr120)
2841 WINE_CONFIG_MAKEFILE(dlls/msvcr120/tests)
2842 WINE_CONFIG_MAKEFILE(dlls/msvcr120_app)
2843 WINE_CONFIG_MAKEFILE(dlls/msvcr70)
2844 WINE_CONFIG_MAKEFILE(dlls/msvcr70/tests)
2845 WINE_CONFIG_MAKEFILE(dlls/msvcr71)
2846 WINE_CONFIG_MAKEFILE(dlls/msvcr71/tests)
2847 WINE_CONFIG_MAKEFILE(dlls/msvcr80)
2848 WINE_CONFIG_MAKEFILE(dlls/msvcr80/tests)
2849 WINE_CONFIG_MAKEFILE(dlls/msvcr90)
2850 WINE_CONFIG_MAKEFILE(dlls/msvcr90/tests)
2851 WINE_CONFIG_MAKEFILE(dlls/msvcrt)
2852 WINE_CONFIG_MAKEFILE(dlls/msvcrt/tests)
2853 WINE_CONFIG_MAKEFILE(dlls/msvcrt20)
2854 WINE_CONFIG_MAKEFILE(dlls/msvcrt40)
2855 WINE_CONFIG_MAKEFILE(dlls/msvcrtd)
2856 WINE_CONFIG_MAKEFILE(dlls/msvcrtd/tests)
2857 WINE_CONFIG_MAKEFILE(dlls/msvfw32)
2858 WINE_CONFIG_MAKEFILE(dlls/msvfw32/tests)
2859 WINE_CONFIG_MAKEFILE(dlls/msvidc32)
2860 WINE_CONFIG_MAKEFILE(dlls/msvideo.dll16,enable_win16)
2861 WINE_CONFIG_MAKEFILE(dlls/mswsock)
2862 WINE_CONFIG_MAKEFILE(dlls/msxml)
2863 WINE_CONFIG_MAKEFILE(dlls/msxml2)
2864 WINE_CONFIG_MAKEFILE(dlls/msxml3)
2865 WINE_CONFIG_MAKEFILE(dlls/msxml3/tests)
2866 WINE_CONFIG_MAKEFILE(dlls/msxml4)
2867 WINE_CONFIG_MAKEFILE(dlls/msxml6)
2868 WINE_CONFIG_MAKEFILE(dlls/mtxdm)
2869 WINE_CONFIG_MAKEFILE(dlls/ncrypt)
2870 WINE_CONFIG_MAKEFILE(dlls/ncrypt/tests)
2871 WINE_CONFIG_MAKEFILE(dlls/nddeapi)
2872 WINE_CONFIG_MAKEFILE(dlls/ndis.sys)
2873 WINE_CONFIG_MAKEFILE(dlls/ndis.sys/tests)
2874 WINE_CONFIG_MAKEFILE(dlls/netapi32)
2875 WINE_CONFIG_MAKEFILE(dlls/netapi32/tests)
2876 WINE_CONFIG_MAKEFILE(dlls/netcfgx)
2877 WINE_CONFIG_MAKEFILE(dlls/netcfgx/tests)
2878 WINE_CONFIG_MAKEFILE(dlls/netio.sys)
2879 WINE_CONFIG_MAKEFILE(dlls/netprofm)
2880 WINE_CONFIG_MAKEFILE(dlls/netprofm/tests)
2881 WINE_CONFIG_MAKEFILE(dlls/netutils)
2882 WINE_CONFIG_MAKEFILE(dlls/newdev)
2883 WINE_CONFIG_MAKEFILE(dlls/ninput)
2884 WINE_CONFIG_MAKEFILE(dlls/ninput/tests)
2885 WINE_CONFIG_MAKEFILE(dlls/normaliz)
2886 WINE_CONFIG_MAKEFILE(dlls/npmshtml)
2887 WINE_CONFIG_MAKEFILE(dlls/npptools)
2888 WINE_CONFIG_MAKEFILE(dlls/nsi)
2889 WINE_CONFIG_MAKEFILE(dlls/nsi/tests)
2890 WINE_CONFIG_MAKEFILE(dlls/nsiproxy.sys)
2891 WINE_CONFIG_MAKEFILE(dlls/ntdll)
2892 WINE_CONFIG_MAKEFILE(dlls/ntdll/tests)
2893 WINE_CONFIG_MAKEFILE(dlls/ntdsapi)
2894 WINE_CONFIG_MAKEFILE(dlls/ntdsapi/tests)
2895 WINE_CONFIG_MAKEFILE(dlls/ntoskrnl.exe)
2896 WINE_CONFIG_MAKEFILE(dlls/ntoskrnl.exe/tests)
2897 WINE_CONFIG_MAKEFILE(dlls/ntprint)
2898 WINE_CONFIG_MAKEFILE(dlls/ntprint/tests)
2899 WINE_CONFIG_MAKEFILE(dlls/objsel)
2900 WINE_CONFIG_MAKEFILE(dlls/odbc32)
2901 WINE_CONFIG_MAKEFILE(dlls/odbcbcp)
2902 WINE_CONFIG_MAKEFILE(dlls/odbccp32)
2903 WINE_CONFIG_MAKEFILE(dlls/odbccp32/tests)
2904 WINE_CONFIG_MAKEFILE(dlls/odbccu32)
2905 WINE_CONFIG_MAKEFILE(dlls/ole2.dll16,enable_win16)
2906 WINE_CONFIG_MAKEFILE(dlls/ole2conv.dll16,enable_win16)
2907 WINE_CONFIG_MAKEFILE(dlls/ole2disp.dll16,enable_win16)
2908 WINE_CONFIG_MAKEFILE(dlls/ole2nls.dll16,enable_win16)
2909 WINE_CONFIG_MAKEFILE(dlls/ole2prox.dll16,enable_win16)
2910 WINE_CONFIG_MAKEFILE(dlls/ole2thk.dll16,enable_win16)
2911 WINE_CONFIG_MAKEFILE(dlls/ole32)
2912 WINE_CONFIG_MAKEFILE(dlls/ole32/tests)
2913 WINE_CONFIG_MAKEFILE(dlls/oleacc)
2914 WINE_CONFIG_MAKEFILE(dlls/oleacc/tests)
2915 WINE_CONFIG_MAKEFILE(dlls/oleaut32)
2916 WINE_CONFIG_MAKEFILE(dlls/oleaut32/tests)
2917 WINE_CONFIG_MAKEFILE(dlls/olecli.dll16,enable_win16)
2918 WINE_CONFIG_MAKEFILE(dlls/olecli32)
2919 WINE_CONFIG_MAKEFILE(dlls/oledb32)
2920 WINE_CONFIG_MAKEFILE(dlls/oledb32/tests)
2921 WINE_CONFIG_MAKEFILE(dlls/oledlg)
2922 WINE_CONFIG_MAKEFILE(dlls/oledlg/tests)
2923 WINE_CONFIG_MAKEFILE(dlls/olepro32)
2924 WINE_CONFIG_MAKEFILE(dlls/olesvr.dll16,enable_win16)
2925 WINE_CONFIG_MAKEFILE(dlls/olesvr32)
2926 WINE_CONFIG_MAKEFILE(dlls/olethk32)
2927 WINE_CONFIG_MAKEFILE(dlls/opcservices)
2928 WINE_CONFIG_MAKEFILE(dlls/opcservices/tests)
2929 WINE_CONFIG_MAKEFILE(dlls/opencl)
2930 WINE_CONFIG_MAKEFILE(dlls/opengl32)
2931 WINE_CONFIG_MAKEFILE(dlls/opengl32/tests)
2932 WINE_CONFIG_MAKEFILE(dlls/packager)
2933 WINE_CONFIG_MAKEFILE(dlls/packager/tests)
2934 WINE_CONFIG_MAKEFILE(dlls/pdh)
2935 WINE_CONFIG_MAKEFILE(dlls/pdh/tests)
2936 WINE_CONFIG_MAKEFILE(dlls/photometadatahandler)
2937 WINE_CONFIG_MAKEFILE(dlls/pidgen)
2938 WINE_CONFIG_MAKEFILE(dlls/powrprof)
2939 WINE_CONFIG_MAKEFILE(dlls/printui)
2940 WINE_CONFIG_MAKEFILE(dlls/prntvpt)
2941 WINE_CONFIG_MAKEFILE(dlls/prntvpt/tests)
2942 WINE_CONFIG_MAKEFILE(dlls/propsys)
2943 WINE_CONFIG_MAKEFILE(dlls/propsys/tests)
2944 WINE_CONFIG_MAKEFILE(dlls/psapi)
2945 WINE_CONFIG_MAKEFILE(dlls/psapi/tests)
2946 WINE_CONFIG_MAKEFILE(dlls/pstorec)
2947 WINE_CONFIG_MAKEFILE(dlls/pstorec/tests)
2948 WINE_CONFIG_MAKEFILE(dlls/pwrshplugin)
2949 WINE_CONFIG_MAKEFILE(dlls/qasf)
2950 WINE_CONFIG_MAKEFILE(dlls/qasf/tests)
2951 WINE_CONFIG_MAKEFILE(dlls/qcap)
2952 WINE_CONFIG_MAKEFILE(dlls/qcap/tests)
2953 WINE_CONFIG_MAKEFILE(dlls/qdvd)
2954 WINE_CONFIG_MAKEFILE(dlls/qdvd/tests)
2955 WINE_CONFIG_MAKEFILE(dlls/qedit)
2956 WINE_CONFIG_MAKEFILE(dlls/qedit/tests)
2957 WINE_CONFIG_MAKEFILE(dlls/qmgr)
2958 WINE_CONFIG_MAKEFILE(dlls/qmgr/tests)
2959 WINE_CONFIG_MAKEFILE(dlls/qmgrprxy)
2960 WINE_CONFIG_MAKEFILE(dlls/quartz)
2961 WINE_CONFIG_MAKEFILE(dlls/quartz/tests)
2962 WINE_CONFIG_MAKEFILE(dlls/query)
2963 WINE_CONFIG_MAKEFILE(dlls/qwave)
2964 WINE_CONFIG_MAKEFILE(dlls/qwave/tests)
2965 WINE_CONFIG_MAKEFILE(dlls/rasapi16.dll16,enable_win16)
2966 WINE_CONFIG_MAKEFILE(dlls/rasapi32)
2967 WINE_CONFIG_MAKEFILE(dlls/rasapi32/tests)
2968 WINE_CONFIG_MAKEFILE(dlls/rasdlg)
2969 WINE_CONFIG_MAKEFILE(dlls/regapi)
2970 WINE_CONFIG_MAKEFILE(dlls/resutils)
2971 WINE_CONFIG_MAKEFILE(dlls/riched20)
2972 WINE_CONFIG_MAKEFILE(dlls/riched20/tests)
2973 WINE_CONFIG_MAKEFILE(dlls/riched32)
2974 WINE_CONFIG_MAKEFILE(dlls/riched32/tests)
2975 WINE_CONFIG_MAKEFILE(dlls/rpcrt4)
2976 WINE_CONFIG_MAKEFILE(dlls/rpcrt4/tests)
2977 WINE_CONFIG_MAKEFILE(dlls/rsabase)
2978 WINE_CONFIG_MAKEFILE(dlls/rsaenh)
2979 WINE_CONFIG_MAKEFILE(dlls/rsaenh/tests)
2980 WINE_CONFIG_MAKEFILE(dlls/rstrtmgr)
2981 WINE_CONFIG_MAKEFILE(dlls/rtutils)
2982 WINE_CONFIG_MAKEFILE(dlls/rtworkq)
2983 WINE_CONFIG_MAKEFILE(dlls/rtworkq/tests)
2984 WINE_CONFIG_MAKEFILE(dlls/samlib)
2985 WINE_CONFIG_MAKEFILE(dlls/sane.ds)
2986 WINE_CONFIG_MAKEFILE(dlls/sapi)
2987 WINE_CONFIG_MAKEFILE(dlls/sapi/tests)
2988 WINE_CONFIG_MAKEFILE(dlls/sas)
2989 WINE_CONFIG_MAKEFILE(dlls/scarddlg)
2990 WINE_CONFIG_MAKEFILE(dlls/scardsvr)
2991 WINE_CONFIG_MAKEFILE(dlls/sccbase)
2992 WINE_CONFIG_MAKEFILE(dlls/schannel)
2993 WINE_CONFIG_MAKEFILE(dlls/schannel/tests)
2994 WINE_CONFIG_MAKEFILE(dlls/schedsvc)
2995 WINE_CONFIG_MAKEFILE(dlls/schedsvc/tests)
2996 WINE_CONFIG_MAKEFILE(dlls/scrobj)
2997 WINE_CONFIG_MAKEFILE(dlls/scrobj/tests)
2998 WINE_CONFIG_MAKEFILE(dlls/scrrun)
2999 WINE_CONFIG_MAKEFILE(dlls/scrrun/tests)
3000 WINE_CONFIG_MAKEFILE(dlls/scsiport.sys)
3001 WINE_CONFIG_MAKEFILE(dlls/sechost)
3002 WINE_CONFIG_MAKEFILE(dlls/secur32)
3003 WINE_CONFIG_MAKEFILE(dlls/secur32/tests)
3004 WINE_CONFIG_MAKEFILE(dlls/security)
3005 WINE_CONFIG_MAKEFILE(dlls/sensapi)
3006 WINE_CONFIG_MAKEFILE(dlls/serialui)
3007 WINE_CONFIG_MAKEFILE(dlls/serialui/tests)
3008 WINE_CONFIG_MAKEFILE(dlls/setupapi)
3009 WINE_CONFIG_MAKEFILE(dlls/setupapi/tests)
3010 WINE_CONFIG_MAKEFILE(dlls/setupx.dll16,enable_win16)
3011 WINE_CONFIG_MAKEFILE(dlls/sfc)
3012 WINE_CONFIG_MAKEFILE(dlls/sfc_os)
3013 WINE_CONFIG_MAKEFILE(dlls/shcore)
3014 WINE_CONFIG_MAKEFILE(dlls/shcore/tests)
3015 WINE_CONFIG_MAKEFILE(dlls/shdoclc)
3016 WINE_CONFIG_MAKEFILE(dlls/shdocvw)
3017 WINE_CONFIG_MAKEFILE(dlls/shdocvw/tests)
3018 WINE_CONFIG_MAKEFILE(dlls/shell.dll16,enable_win16)
3019 WINE_CONFIG_MAKEFILE(dlls/shell32)
3020 WINE_CONFIG_MAKEFILE(dlls/shell32/tests)
3021 WINE_CONFIG_MAKEFILE(dlls/shfolder)
3022 WINE_CONFIG_MAKEFILE(dlls/shlwapi)
3023 WINE_CONFIG_MAKEFILE(dlls/shlwapi/tests)
3024 WINE_CONFIG_MAKEFILE(dlls/slbcsp)
3025 WINE_CONFIG_MAKEFILE(dlls/slc)
3026 WINE_CONFIG_MAKEFILE(dlls/slc/tests)
3027 WINE_CONFIG_MAKEFILE(dlls/snmpapi)
3028 WINE_CONFIG_MAKEFILE(dlls/snmpapi/tests)
3029 WINE_CONFIG_MAKEFILE(dlls/softpub)
3030 WINE_CONFIG_MAKEFILE(dlls/sound.drv16,enable_win16)
3031 WINE_CONFIG_MAKEFILE(dlls/spoolss)
3032 WINE_CONFIG_MAKEFILE(dlls/spoolss/tests)
3033 WINE_CONFIG_MAKEFILE(dlls/sppc)
3034 WINE_CONFIG_MAKEFILE(dlls/srclient)
3035 WINE_CONFIG_MAKEFILE(dlls/srvcli)
3036 WINE_CONFIG_MAKEFILE(dlls/sspicli)
3037 WINE_CONFIG_MAKEFILE(dlls/stdole2.tlb)
3038 WINE_CONFIG_MAKEFILE(dlls/stdole32.tlb)
3039 WINE_CONFIG_MAKEFILE(dlls/sti)
3040 WINE_CONFIG_MAKEFILE(dlls/sti/tests)
3041 WINE_CONFIG_MAKEFILE(dlls/storage.dll16,enable_win16)
3042 WINE_CONFIG_MAKEFILE(dlls/stress.dll16,enable_win16)
3043 WINE_CONFIG_MAKEFILE(dlls/strmdll)
3044 WINE_CONFIG_MAKEFILE(dlls/svrapi)
3045 WINE_CONFIG_MAKEFILE(dlls/sxs)
3046 WINE_CONFIG_MAKEFILE(dlls/sxs/tests)
3047 WINE_CONFIG_MAKEFILE(dlls/system.drv16,enable_win16)
3048 WINE_CONFIG_MAKEFILE(dlls/t2embed)
3049 WINE_CONFIG_MAKEFILE(dlls/t2embed/tests)
3050 WINE_CONFIG_MAKEFILE(dlls/tapi32)
3051 WINE_CONFIG_MAKEFILE(dlls/tapi32/tests)
3052 WINE_CONFIG_MAKEFILE(dlls/taskschd)
3053 WINE_CONFIG_MAKEFILE(dlls/taskschd/tests)
3054 WINE_CONFIG_MAKEFILE(dlls/tbs)
3055 WINE_CONFIG_MAKEFILE(dlls/tdh)
3056 WINE_CONFIG_MAKEFILE(dlls/tdi.sys)
3057 WINE_CONFIG_MAKEFILE(dlls/threadpoolwinrt)
3058 WINE_CONFIG_MAKEFILE(dlls/threadpoolwinrt/tests)
3059 WINE_CONFIG_MAKEFILE(dlls/toolhelp.dll16,enable_win16)
3060 WINE_CONFIG_MAKEFILE(dlls/traffic)
3061 WINE_CONFIG_MAKEFILE(dlls/twain.dll16,enable_win16)
3062 WINE_CONFIG_MAKEFILE(dlls/twain_32)
3063 WINE_CONFIG_MAKEFILE(dlls/twain_32/tests)
3064 WINE_CONFIG_MAKEFILE(dlls/twinapi.appcore)
3065 WINE_CONFIG_MAKEFILE(dlls/typelib.dll16,enable_win16)
3066 WINE_CONFIG_MAKEFILE(dlls/tzres)
3067 WINE_CONFIG_MAKEFILE(dlls/ucrtbase)
3068 WINE_CONFIG_MAKEFILE(dlls/ucrtbase/tests)
3069 WINE_CONFIG_MAKEFILE(dlls/uianimation)
3070 WINE_CONFIG_MAKEFILE(dlls/uianimation/tests)
3071 WINE_CONFIG_MAKEFILE(dlls/uiautomationcore)
3072 WINE_CONFIG_MAKEFILE(dlls/uiautomationcore/tests)
3073 WINE_CONFIG_MAKEFILE(dlls/uiribbon)
3074 WINE_CONFIG_MAKEFILE(dlls/unicows)
3075 WINE_CONFIG_MAKEFILE(dlls/updspapi)
3076 WINE_CONFIG_MAKEFILE(dlls/url)
3077 WINE_CONFIG_MAKEFILE(dlls/urlmon)
3078 WINE_CONFIG_MAKEFILE(dlls/urlmon/tests)
3079 WINE_CONFIG_MAKEFILE(dlls/usbd.sys)
3080 WINE_CONFIG_MAKEFILE(dlls/user.exe16,enable_win16)
3081 WINE_CONFIG_MAKEFILE(dlls/user32)
3082 WINE_CONFIG_MAKEFILE(dlls/user32/tests)
3083 WINE_CONFIG_MAKEFILE(dlls/userenv)
3084 WINE_CONFIG_MAKEFILE(dlls/userenv/tests)
3085 WINE_CONFIG_MAKEFILE(dlls/usp10)
3086 WINE_CONFIG_MAKEFILE(dlls/usp10/tests)
3087 WINE_CONFIG_MAKEFILE(dlls/utildll)
3088 WINE_CONFIG_MAKEFILE(dlls/uxtheme)
3089 WINE_CONFIG_MAKEFILE(dlls/uxtheme/tests)
3090 WINE_CONFIG_MAKEFILE(dlls/vbscript)
3091 WINE_CONFIG_MAKEFILE(dlls/vbscript/tests)
3092 WINE_CONFIG_MAKEFILE(dlls/vcomp)
3093 WINE_CONFIG_MAKEFILE(dlls/vcomp/tests)
3094 WINE_CONFIG_MAKEFILE(dlls/vcomp100)
3095 WINE_CONFIG_MAKEFILE(dlls/vcomp110)
3096 WINE_CONFIG_MAKEFILE(dlls/vcomp110/tests)
3097 WINE_CONFIG_MAKEFILE(dlls/vcomp120)
3098 WINE_CONFIG_MAKEFILE(dlls/vcomp140)
3099 WINE_CONFIG_MAKEFILE(dlls/vcomp90)
3100 WINE_CONFIG_MAKEFILE(dlls/vcruntime140)
3101 WINE_CONFIG_MAKEFILE(dlls/vcruntime140_1)
3102 WINE_CONFIG_MAKEFILE(dlls/vdhcp.vxd,enable_win16)
3103 WINE_CONFIG_MAKEFILE(dlls/vdmdbg)
3104 WINE_CONFIG_MAKEFILE(dlls/ver.dll16,enable_win16)
3105 WINE_CONFIG_MAKEFILE(dlls/version)
3106 WINE_CONFIG_MAKEFILE(dlls/version/tests)
3107 WINE_CONFIG_MAKEFILE(dlls/vga)
3108 WINE_CONFIG_MAKEFILE(dlls/virtdisk)
3109 WINE_CONFIG_MAKEFILE(dlls/virtdisk/tests)
3110 WINE_CONFIG_MAKEFILE(dlls/vmm.vxd,enable_win16)
3111 WINE_CONFIG_MAKEFILE(dlls/vnbt.vxd,enable_win16)
3112 WINE_CONFIG_MAKEFILE(dlls/vnetbios.vxd,enable_win16)
3113 WINE_CONFIG_MAKEFILE(dlls/vssapi)
3114 WINE_CONFIG_MAKEFILE(dlls/vtdapi.vxd,enable_win16)
3115 WINE_CONFIG_MAKEFILE(dlls/vulkan-1)
3116 WINE_CONFIG_MAKEFILE(dlls/vulkan-1/tests)
3117 WINE_CONFIG_MAKEFILE(dlls/vwin32.vxd,enable_win16)
3118 WINE_CONFIG_MAKEFILE(dlls/w32skrnl,enable_win16)
3119 WINE_CONFIG_MAKEFILE(dlls/w32sys.dll16,enable_win16)
3120 WINE_CONFIG_MAKEFILE(dlls/wbemdisp)
3121 WINE_CONFIG_MAKEFILE(dlls/wbemdisp/tests)
3122 WINE_CONFIG_MAKEFILE(dlls/wbemprox)
3123 WINE_CONFIG_MAKEFILE(dlls/wbemprox/tests)
3124 WINE_CONFIG_MAKEFILE(dlls/wdscore)
3125 WINE_CONFIG_MAKEFILE(dlls/webservices)
3126 WINE_CONFIG_MAKEFILE(dlls/webservices/tests)
3127 WINE_CONFIG_MAKEFILE(dlls/websocket)
3128 WINE_CONFIG_MAKEFILE(dlls/wer)
3129 WINE_CONFIG_MAKEFILE(dlls/wer/tests)
3130 WINE_CONFIG_MAKEFILE(dlls/wevtapi)
3131 WINE_CONFIG_MAKEFILE(dlls/wevtapi/tests)
3132 WINE_CONFIG_MAKEFILE(dlls/wevtsvc)
3133 WINE_CONFIG_MAKEFILE(dlls/wiaservc)
3134 WINE_CONFIG_MAKEFILE(dlls/wiaservc/tests)
3135 WINE_CONFIG_MAKEFILE(dlls/wimgapi)
3136 WINE_CONFIG_MAKEFILE(dlls/win32s16.dll16,enable_win16)
3137 WINE_CONFIG_MAKEFILE(dlls/win32u)
3138 WINE_CONFIG_MAKEFILE(dlls/win32u/tests)
3139 WINE_CONFIG_MAKEFILE(dlls/win87em.dll16,enable_win16)
3140 WINE_CONFIG_MAKEFILE(dlls/winaspi.dll16,enable_win16)
3141 WINE_CONFIG_MAKEFILE(dlls/windebug.dll16,enable_win16)
3142 WINE_CONFIG_MAKEFILE(dlls/windows.devices.enumeration)
3143 WINE_CONFIG_MAKEFILE(dlls/windows.devices.enumeration/tests)
3144 WINE_CONFIG_MAKEFILE(dlls/windows.gaming.input)
3145 WINE_CONFIG_MAKEFILE(dlls/windows.gaming.input/tests)
3146 WINE_CONFIG_MAKEFILE(dlls/windows.gaming.ui.gamebar)
3147 WINE_CONFIG_MAKEFILE(dlls/windows.gaming.ui.gamebar/tests)
3148 WINE_CONFIG_MAKEFILE(dlls/windows.globalization)
3149 WINE_CONFIG_MAKEFILE(dlls/windows.globalization/tests)
3150 WINE_CONFIG_MAKEFILE(dlls/windows.media.devices)
3151 WINE_CONFIG_MAKEFILE(dlls/windows.media.devices/tests)
3152 WINE_CONFIG_MAKEFILE(dlls/windows.media.speech)
3153 WINE_CONFIG_MAKEFILE(dlls/windows.media.speech/tests)
3154 WINE_CONFIG_MAKEFILE(dlls/windows.media)
3155 WINE_CONFIG_MAKEFILE(dlls/windows.media/tests)
3156 WINE_CONFIG_MAKEFILE(dlls/windows.networking)
3157 WINE_CONFIG_MAKEFILE(dlls/windows.perception.stub)
3158 WINE_CONFIG_MAKEFILE(dlls/windows.perception.stub/tests)
3159 WINE_CONFIG_MAKEFILE(dlls/windows.system.profile.systemmanufacturers)
3160 WINE_CONFIG_MAKEFILE(dlls/windows.system.profile.systemmanufacturers/tests)
3161 WINE_CONFIG_MAKEFILE(dlls/windows.ui)
3162 WINE_CONFIG_MAKEFILE(dlls/windows.ui/tests)
3163 WINE_CONFIG_MAKEFILE(dlls/windowscodecs)
3164 WINE_CONFIG_MAKEFILE(dlls/windowscodecs/tests)
3165 WINE_CONFIG_MAKEFILE(dlls/windowscodecsext)
3166 WINE_CONFIG_MAKEFILE(dlls/windowscodecsext/tests)
3167 WINE_CONFIG_MAKEFILE(dlls/winealsa.drv)
3168 WINE_CONFIG_MAKEFILE(dlls/wineandroid.drv)
3169 WINE_CONFIG_MAKEFILE(dlls/winebus.sys)
3170 WINE_CONFIG_MAKEFILE(dlls/winecoreaudio.drv)
3171 WINE_CONFIG_MAKEFILE(dlls/winecrt0)
3172 WINE_CONFIG_MAKEFILE(dlls/wined3d)
3173 WINE_CONFIG_MAKEFILE(dlls/winegstreamer)
3174 WINE_CONFIG_MAKEFILE(dlls/winehid.sys)
3175 WINE_CONFIG_MAKEFILE(dlls/winemac.drv)
3176 WINE_CONFIG_MAKEFILE(dlls/winemapi)
3177 WINE_CONFIG_MAKEFILE(dlls/wineoss.drv)
3178 WINE_CONFIG_MAKEFILE(dlls/wineps.drv)
3179 WINE_CONFIG_MAKEFILE(dlls/wineps16.drv16,enable_win16)
3180 WINE_CONFIG_MAKEFILE(dlls/winepulse.drv)
3181 WINE_CONFIG_MAKEFILE(dlls/wineusb.sys)
3182 WINE_CONFIG_MAKEFILE(dlls/winevulkan)
3183 WINE_CONFIG_MAKEFILE(dlls/winewayland.drv)
3184 WINE_CONFIG_MAKEFILE(dlls/winex11.drv)
3185 WINE_CONFIG_MAKEFILE(dlls/winexinput.sys)
3186 WINE_CONFIG_MAKEFILE(dlls/wing.dll16,enable_win16)
3187 WINE_CONFIG_MAKEFILE(dlls/wing32)
3188 WINE_CONFIG_MAKEFILE(dlls/winhttp)
3189 WINE_CONFIG_MAKEFILE(dlls/winhttp/tests)
3190 WINE_CONFIG_MAKEFILE(dlls/wininet)
3191 WINE_CONFIG_MAKEFILE(dlls/wininet/tests)
3192 WINE_CONFIG_MAKEFILE(dlls/winmm)
3193 WINE_CONFIG_MAKEFILE(dlls/winmm/tests)
3194 WINE_CONFIG_MAKEFILE(dlls/winnls.dll16,enable_win16)
3195 WINE_CONFIG_MAKEFILE(dlls/winnls32)
3196 WINE_CONFIG_MAKEFILE(dlls/winprint)
3197 WINE_CONFIG_MAKEFILE(dlls/winscard)
3198 WINE_CONFIG_MAKEFILE(dlls/winscard/tests)
3199 WINE_CONFIG_MAKEFILE(dlls/winsock.dll16,enable_win16)
3200 WINE_CONFIG_MAKEFILE(dlls/winspool.drv)
3201 WINE_CONFIG_MAKEFILE(dlls/winspool.drv/tests)
3202 WINE_CONFIG_MAKEFILE(dlls/winsta)
3203 WINE_CONFIG_MAKEFILE(dlls/wintab.dll16,enable_win16)
3204 WINE_CONFIG_MAKEFILE(dlls/wintab32)
3205 WINE_CONFIG_MAKEFILE(dlls/wintab32/tests)
3206 WINE_CONFIG_MAKEFILE(dlls/wintrust)
3207 WINE_CONFIG_MAKEFILE(dlls/wintrust/tests)
3208 WINE_CONFIG_MAKEFILE(dlls/wintypes)
3209 WINE_CONFIG_MAKEFILE(dlls/wintypes/tests)
3210 WINE_CONFIG_MAKEFILE(dlls/winusb)
3211 WINE_CONFIG_MAKEFILE(dlls/wlanapi)
3212 WINE_CONFIG_MAKEFILE(dlls/wlanapi/tests)
3213 WINE_CONFIG_MAKEFILE(dlls/wlanui)
3214 WINE_CONFIG_MAKEFILE(dlls/wldap32)
3215 WINE_CONFIG_MAKEFILE(dlls/wldap32/tests)
3216 WINE_CONFIG_MAKEFILE(dlls/wmasf)
3217 WINE_CONFIG_MAKEFILE(dlls/wmi)
3218 WINE_CONFIG_MAKEFILE(dlls/wmiutils)
3219 WINE_CONFIG_MAKEFILE(dlls/wmiutils/tests)
3220 WINE_CONFIG_MAKEFILE(dlls/wmp)
3221 WINE_CONFIG_MAKEFILE(dlls/wmp/tests)
3222 WINE_CONFIG_MAKEFILE(dlls/wmphoto)
3223 WINE_CONFIG_MAKEFILE(dlls/wmvcore)
3224 WINE_CONFIG_MAKEFILE(dlls/wmvcore/tests)
3225 WINE_CONFIG_MAKEFILE(dlls/wnaspi32)
3226 WINE_CONFIG_MAKEFILE(dlls/wofutil)
3227 WINE_CONFIG_MAKEFILE(dlls/wow32,enable_win16)
3228 WINE_CONFIG_MAKEFILE(dlls/wow64)
3229 WINE_CONFIG_MAKEFILE(dlls/wow64cpu)
3230 WINE_CONFIG_MAKEFILE(dlls/wow64win)
3231 WINE_CONFIG_MAKEFILE(dlls/wpc)
3232 WINE_CONFIG_MAKEFILE(dlls/wpc/tests)
3233 WINE_CONFIG_MAKEFILE(dlls/wpcap)
3234 WINE_CONFIG_MAKEFILE(dlls/wpcap/tests)
3235 WINE_CONFIG_MAKEFILE(dlls/ws2_32)
3236 WINE_CONFIG_MAKEFILE(dlls/ws2_32/tests)
3237 WINE_CONFIG_MAKEFILE(dlls/wsdapi)
3238 WINE_CONFIG_MAKEFILE(dlls/wsdapi/tests)
3239 WINE_CONFIG_MAKEFILE(dlls/wshom.ocx)
3240 WINE_CONFIG_MAKEFILE(dlls/wshom.ocx/tests)
3241 WINE_CONFIG_MAKEFILE(dlls/wsnmp32)
3242 WINE_CONFIG_MAKEFILE(dlls/wsnmp32/tests)
3243 WINE_CONFIG_MAKEFILE(dlls/wsock32)
3244 WINE_CONFIG_MAKEFILE(dlls/wtsapi32)
3245 WINE_CONFIG_MAKEFILE(dlls/wtsapi32/tests)
3246 WINE_CONFIG_MAKEFILE(dlls/wuapi)
3247 WINE_CONFIG_MAKEFILE(dlls/wuaueng)
3248 WINE_CONFIG_MAKEFILE(dlls/x3daudio1_0)
3249 WINE_CONFIG_MAKEFILE(dlls/x3daudio1_1)
3250 WINE_CONFIG_MAKEFILE(dlls/x3daudio1_2)
3251 WINE_CONFIG_MAKEFILE(dlls/x3daudio1_3)
3252 WINE_CONFIG_MAKEFILE(dlls/x3daudio1_4)
3253 WINE_CONFIG_MAKEFILE(dlls/x3daudio1_5)
3254 WINE_CONFIG_MAKEFILE(dlls/x3daudio1_6)
3255 WINE_CONFIG_MAKEFILE(dlls/x3daudio1_7)
3256 WINE_CONFIG_MAKEFILE(dlls/xactengine2_0)
3257 WINE_CONFIG_MAKEFILE(dlls/xactengine2_4)
3258 WINE_CONFIG_MAKEFILE(dlls/xactengine2_7)
3259 WINE_CONFIG_MAKEFILE(dlls/xactengine2_9)
3260 WINE_CONFIG_MAKEFILE(dlls/xactengine3_0)
3261 WINE_CONFIG_MAKEFILE(dlls/xactengine3_1)
3262 WINE_CONFIG_MAKEFILE(dlls/xactengine3_2)
3263 WINE_CONFIG_MAKEFILE(dlls/xactengine3_3)
3264 WINE_CONFIG_MAKEFILE(dlls/xactengine3_4)
3265 WINE_CONFIG_MAKEFILE(dlls/xactengine3_5)
3266 WINE_CONFIG_MAKEFILE(dlls/xactengine3_6)
3267 WINE_CONFIG_MAKEFILE(dlls/xactengine3_7)
3268 WINE_CONFIG_MAKEFILE(dlls/xactengine3_7/tests)
3269 WINE_CONFIG_MAKEFILE(dlls/xapofx1_1)
3270 WINE_CONFIG_MAKEFILE(dlls/xapofx1_2)
3271 WINE_CONFIG_MAKEFILE(dlls/xapofx1_3)
3272 WINE_CONFIG_MAKEFILE(dlls/xapofx1_4)
3273 WINE_CONFIG_MAKEFILE(dlls/xapofx1_5)
3274 WINE_CONFIG_MAKEFILE(dlls/xaudio2_0)
3275 WINE_CONFIG_MAKEFILE(dlls/xaudio2_1)
3276 WINE_CONFIG_MAKEFILE(dlls/xaudio2_2)
3277 WINE_CONFIG_MAKEFILE(dlls/xaudio2_3)
3278 WINE_CONFIG_MAKEFILE(dlls/xaudio2_4)
3279 WINE_CONFIG_MAKEFILE(dlls/xaudio2_5)
3280 WINE_CONFIG_MAKEFILE(dlls/xaudio2_6)
3281 WINE_CONFIG_MAKEFILE(dlls/xaudio2_7)
3282 WINE_CONFIG_MAKEFILE(dlls/xaudio2_7/tests)
3283 WINE_CONFIG_MAKEFILE(dlls/xaudio2_8)
3284 WINE_CONFIG_MAKEFILE(dlls/xaudio2_8/tests)
3285 WINE_CONFIG_MAKEFILE(dlls/xaudio2_9)
3286 WINE_CONFIG_MAKEFILE(dlls/xinput1_1)
3287 WINE_CONFIG_MAKEFILE(dlls/xinput1_2)
3288 WINE_CONFIG_MAKEFILE(dlls/xinput1_3)
3289 WINE_CONFIG_MAKEFILE(dlls/xinput1_3/tests)
3290 WINE_CONFIG_MAKEFILE(dlls/xinput1_4)
3291 WINE_CONFIG_MAKEFILE(dlls/xinput9_1_0)
3292 WINE_CONFIG_MAKEFILE(dlls/xinputuap)
3293 WINE_CONFIG_MAKEFILE(dlls/xmllite)
3294 WINE_CONFIG_MAKEFILE(dlls/xmllite/tests)
3295 WINE_CONFIG_MAKEFILE(dlls/xolehlp)
3296 WINE_CONFIG_MAKEFILE(dlls/xpsprint)
3297 WINE_CONFIG_MAKEFILE(dlls/xpssvcs)
3298 WINE_CONFIG_MAKEFILE(fonts)
3299 WINE_CONFIG_MAKEFILE(include)
3300 WINE_CONFIG_MAKEFILE(libs/adsiid)
3301 WINE_CONFIG_MAKEFILE(libs/dmoguids)
3302 WINE_CONFIG_MAKEFILE(libs/dxerr8)
3303 WINE_CONFIG_MAKEFILE(libs/dxerr9)
3304 WINE_CONFIG_MAKEFILE(libs/dxguid)
3305 WINE_CONFIG_MAKEFILE(libs/faudio)
3306 WINE_CONFIG_MAKEFILE(libs/gsm)
3307 WINE_CONFIG_MAKEFILE(libs/jpeg)
3308 WINE_CONFIG_MAKEFILE(libs/jxr)
3309 WINE_CONFIG_MAKEFILE(libs/lcms2)
3310 WINE_CONFIG_MAKEFILE(libs/ldap)
3311 WINE_CONFIG_MAKEFILE(libs/mfuuid)
3312 WINE_CONFIG_MAKEFILE(libs/mpg123)
3313 WINE_CONFIG_MAKEFILE(libs/musl)
3314 WINE_CONFIG_MAKEFILE(libs/png)
3315 WINE_CONFIG_MAKEFILE(libs/strmbase)
3316 WINE_CONFIG_MAKEFILE(libs/strmiids)
3317 WINE_CONFIG_MAKEFILE(libs/tiff)
3318 WINE_CONFIG_MAKEFILE(libs/uuid)
3319 WINE_CONFIG_MAKEFILE(libs/vkd3d)
3320 WINE_CONFIG_MAKEFILE(libs/wbemuuid)
3321 WINE_CONFIG_MAKEFILE(libs/wmcodecdspuuid)
3322 WINE_CONFIG_MAKEFILE(libs/xml2)
3323 WINE_CONFIG_MAKEFILE(libs/xslt)
3324 WINE_CONFIG_MAKEFILE(libs/zlib)
3325 WINE_CONFIG_MAKEFILE(libs/zydis)
3326 WINE_CONFIG_MAKEFILE(loader)
3327 WINE_CONFIG_MAKEFILE(nls)
3328 WINE_CONFIG_MAKEFILE(po)
3329 WINE_CONFIG_MAKEFILE(programs/arp)
3330 WINE_CONFIG_MAKEFILE(programs/aspnet_regiis)
3331 WINE_CONFIG_MAKEFILE(programs/attrib)
3332 WINE_CONFIG_MAKEFILE(programs/cabarc)
3333 WINE_CONFIG_MAKEFILE(programs/cacls)
3334 WINE_CONFIG_MAKEFILE(programs/certutil)
3335 WINE_CONFIG_MAKEFILE(programs/chcp.com)
3336 WINE_CONFIG_MAKEFILE(programs/clock)
3337 WINE_CONFIG_MAKEFILE(programs/cmd)
3338 WINE_CONFIG_MAKEFILE(programs/cmd/tests)
3339 WINE_CONFIG_MAKEFILE(programs/conhost)
3340 WINE_CONFIG_MAKEFILE(programs/conhost/tests)
3341 WINE_CONFIG_MAKEFILE(programs/control)
3342 WINE_CONFIG_MAKEFILE(programs/cscript)
3343 WINE_CONFIG_MAKEFILE(programs/dism)
3344 WINE_CONFIG_MAKEFILE(programs/dllhost)
3345 WINE_CONFIG_MAKEFILE(programs/dplaysvr)
3346 WINE_CONFIG_MAKEFILE(programs/dpnsvr)
3347 WINE_CONFIG_MAKEFILE(programs/dpvsetup)
3348 WINE_CONFIG_MAKEFILE(programs/dxdiag)
3349 WINE_CONFIG_MAKEFILE(programs/eject)
3350 WINE_CONFIG_MAKEFILE(programs/expand)
3351 WINE_CONFIG_MAKEFILE(programs/explorer)
3352 WINE_CONFIG_MAKEFILE(programs/explorer/tests)
3353 WINE_CONFIG_MAKEFILE(programs/extrac32)
3354 WINE_CONFIG_MAKEFILE(programs/fc)
3355 WINE_CONFIG_MAKEFILE(programs/find)
3356 WINE_CONFIG_MAKEFILE(programs/find/tests)
3357 WINE_CONFIG_MAKEFILE(programs/findstr)
3358 WINE_CONFIG_MAKEFILE(programs/findstr/tests)
3359 WINE_CONFIG_MAKEFILE(programs/fsutil)
3360 WINE_CONFIG_MAKEFILE(programs/fsutil/tests)
3361 WINE_CONFIG_MAKEFILE(programs/hh)
3362 WINE_CONFIG_MAKEFILE(programs/hostname)
3363 WINE_CONFIG_MAKEFILE(programs/icacls)
3364 WINE_CONFIG_MAKEFILE(programs/icinfo)
3365 WINE_CONFIG_MAKEFILE(programs/iexplore)
3366 WINE_CONFIG_MAKEFILE(programs/ipconfig)
3367 WINE_CONFIG_MAKEFILE(programs/lodctr)
3368 WINE_CONFIG_MAKEFILE(programs/mofcomp)
3369 WINE_CONFIG_MAKEFILE(programs/mshta)
3370 WINE_CONFIG_MAKEFILE(programs/msidb)
3371 WINE_CONFIG_MAKEFILE(programs/msiexec)
3372 WINE_CONFIG_MAKEFILE(programs/msinfo32)
3373 WINE_CONFIG_MAKEFILE(programs/net)
3374 WINE_CONFIG_MAKEFILE(programs/netsh)
3375 WINE_CONFIG_MAKEFILE(programs/netstat)
3376 WINE_CONFIG_MAKEFILE(programs/ngen)
3377 WINE_CONFIG_MAKEFILE(programs/notepad)
3378 WINE_CONFIG_MAKEFILE(programs/oleview)
3379 WINE_CONFIG_MAKEFILE(programs/ping)
3380 WINE_CONFIG_MAKEFILE(programs/plugplay)
3381 WINE_CONFIG_MAKEFILE(programs/powershell)
3382 WINE_CONFIG_MAKEFILE(programs/presentationfontcache)
3383 WINE_CONFIG_MAKEFILE(programs/progman)
3384 WINE_CONFIG_MAKEFILE(programs/reg)
3385 WINE_CONFIG_MAKEFILE(programs/reg/tests)
3386 WINE_CONFIG_MAKEFILE(programs/regasm)
3387 WINE_CONFIG_MAKEFILE(programs/regedit)
3388 WINE_CONFIG_MAKEFILE(programs/regedit/tests)
3389 WINE_CONFIG_MAKEFILE(programs/regini)
3390 WINE_CONFIG_MAKEFILE(programs/regsvcs)
3391 WINE_CONFIG_MAKEFILE(programs/regsvr32)
3392 WINE_CONFIG_MAKEFILE(programs/robocopy)
3393 WINE_CONFIG_MAKEFILE(programs/rpcss)
3394 WINE_CONFIG_MAKEFILE(programs/rundll.exe16,enable_win16)
3395 WINE_CONFIG_MAKEFILE(programs/rundll32)
3396 WINE_CONFIG_MAKEFILE(programs/sc)
3397 WINE_CONFIG_MAKEFILE(programs/sc/tests)
3398 WINE_CONFIG_MAKEFILE(programs/schtasks)
3399 WINE_CONFIG_MAKEFILE(programs/schtasks/tests)
3400 WINE_CONFIG_MAKEFILE(programs/sdbinst)
3401 WINE_CONFIG_MAKEFILE(programs/secedit)
3402 WINE_CONFIG_MAKEFILE(programs/servicemodelreg)
3403 WINE_CONFIG_MAKEFILE(programs/services)
3404 WINE_CONFIG_MAKEFILE(programs/services/tests)
3405 WINE_CONFIG_MAKEFILE(programs/setx)
3406 WINE_CONFIG_MAKEFILE(programs/shutdown)
3407 WINE_CONFIG_MAKEFILE(programs/spoolsv)
3408 WINE_CONFIG_MAKEFILE(programs/start)
3409 WINE_CONFIG_MAKEFILE(programs/subst)
3410 WINE_CONFIG_MAKEFILE(programs/svchost)
3411 WINE_CONFIG_MAKEFILE(programs/systeminfo)
3412 WINE_CONFIG_MAKEFILE(programs/taskkill)
3413 WINE_CONFIG_MAKEFILE(programs/tasklist)
3414 WINE_CONFIG_MAKEFILE(programs/tasklist/tests)
3415 WINE_CONFIG_MAKEFILE(programs/taskmgr)
3416 WINE_CONFIG_MAKEFILE(programs/termsv)
3417 WINE_CONFIG_MAKEFILE(programs/uninstaller)
3418 WINE_CONFIG_MAKEFILE(programs/unlodctr)
3419 WINE_CONFIG_MAKEFILE(programs/view)
3420 WINE_CONFIG_MAKEFILE(programs/wevtutil)
3421 WINE_CONFIG_MAKEFILE(programs/where)
3422 WINE_CONFIG_MAKEFILE(programs/whoami)
3423 WINE_CONFIG_MAKEFILE(programs/wineboot)
3424 WINE_CONFIG_MAKEFILE(programs/winebrowser)
3425 WINE_CONFIG_MAKEFILE(programs/winecfg)
3426 WINE_CONFIG_MAKEFILE(programs/wineconsole)
3427 WINE_CONFIG_MAKEFILE(programs/winedbg)
3428 WINE_CONFIG_MAKEFILE(programs/winedevice)
3429 WINE_CONFIG_MAKEFILE(programs/winefile)
3430 WINE_CONFIG_MAKEFILE(programs/winemenubuilder)
3431 WINE_CONFIG_MAKEFILE(programs/winemine)
3432 WINE_CONFIG_MAKEFILE(programs/winemsibuilder)
3433 WINE_CONFIG_MAKEFILE(programs/winepath)
3434 WINE_CONFIG_MAKEFILE(programs/winetest)
3435 WINE_CONFIG_MAKEFILE(programs/winevdm,enable_win16)
3436 WINE_CONFIG_MAKEFILE(programs/winhelp.exe16,enable_win16)
3437 WINE_CONFIG_MAKEFILE(programs/winhlp32)
3438 WINE_CONFIG_MAKEFILE(programs/winmgmt)
3439 WINE_CONFIG_MAKEFILE(programs/winoldap.mod16,enable_win16)
3440 WINE_CONFIG_MAKEFILE(programs/winver)
3441 WINE_CONFIG_MAKEFILE(programs/wmic)
3442 WINE_CONFIG_MAKEFILE(programs/wmplayer)
3443 WINE_CONFIG_MAKEFILE(programs/wordpad)
3444 WINE_CONFIG_MAKEFILE(programs/write)
3445 WINE_CONFIG_MAKEFILE(programs/wscript)
3446 WINE_CONFIG_MAKEFILE(programs/wscript/tests)
3447 WINE_CONFIG_MAKEFILE(programs/wuauserv)
3448 WINE_CONFIG_MAKEFILE(programs/wusa)
3449 WINE_CONFIG_MAKEFILE(programs/xcopy)
3450 WINE_CONFIG_MAKEFILE(programs/xcopy/tests)
3451 WINE_CONFIG_MAKEFILE(server)
3452 WINE_CONFIG_MAKEFILE(tools,,[test "x$enable_tools" = xno])
3453 WINE_CONFIG_MAKEFILE(tools/sfnt2fon,,[test "x$enable_tools" = xno])
3454 WINE_CONFIG_MAKEFILE(tools/widl,,[test "x$enable_tools" = xno])
3455 WINE_CONFIG_MAKEFILE(tools/winebuild,,[test "x$enable_tools" = xno])
3456 WINE_CONFIG_MAKEFILE(tools/winedump,,[test "x$enable_tools" = xno])
3457 WINE_CONFIG_MAKEFILE(tools/winegcc,,[test "x$enable_tools" = xno])
3458 WINE_CONFIG_MAKEFILE(tools/winemaker,,[test "x$enable_tools" = xno])
3459 WINE_CONFIG_MAKEFILE(tools/wmc,,[test "x$enable_tools" = xno])
3460 WINE_CONFIG_MAKEFILE(tools/wrc,,[test "x$enable_tools" = xno])
3461 dnl End of auto-generated output commands
3463 dnl Main ignore file
3465 WINE_IGNORE_FILE(TAGS)
3466 WINE_IGNORE_FILE(tags)
3467 WINE_IGNORE_FILE(autom4te.cache)
3468 WINE_IGNORE_FILE(config.log)
3469 WINE_IGNORE_FILE(config.status)
3470 WINE_IGNORE_FILE(include/config.h)
3471 WINE_IGNORE_FILE(include/stamp-h)
3472 test "$wine_binary" = wine || WINE_IGNORE_FILE(loader/wine)
3474 if test "x$enable_tools" != xno
3475 then
3476     WINE_IGNORE_FILE(tools/makedep$ac_exeext)
3477     AC_CONFIG_COMMANDS([tools/makedep],[wine_fn_output_makedep || AS_EXIT],
3478 [wine_fn_output_makedep ()
3480     AS_MKDIR_P(tools)
3481     $CC -I${wine_srcdir}tools -Iinclude -I${wine_srcdir}include -D__WINESRC__ -DWINE_UNIX_LIB $EXTRACFLAGS $CPPFLAGS $CFLAGS -o tools/makedep$ac_exeext ${wine_srcdir}tools/makedep.c $LDFLAGS
3485 AC_CONFIG_COMMANDS([Makefile], [wine_fn_output_makefile Makefile],
3486 [wine_fn_output_makefile ()
3488     cat <<\_WINE_EOF >\$tmp/makefile && mv -f \$tmp/makefile \$[]1 && "$wine_makedep"$makedep_flags && return
3489 # This Makefile understands the following targets:
3491 # all (default):   build wine
3492 # clean:           remove all intermediate files
3493 # distclean:       also remove all files created by configure
3494 # test:            run tests
3495 # testclean:       clean test results to force running all tests again
3496 # install-lib:     install libraries needed to run applications
3497 # install-dev:     install development environment
3498 # install:         install everything
3499 # uninstall:       uninstall everything
3500 # ctags:           create a tags file for vim and others.
3501 # etags:           create a TAGS file for Emacs.
3503 m4_set_foreach([_AC_SUBST_VARS],[var],[var = $var
3504 ])$SET_MAKE
3505 $wine_rules
3506 _WINE_EOF
3507     AS_ERROR([could not create Makefile])
3510 dnl Main makefile
3512 AC_SUBST(SHELL,[/bin/sh])
3514 WINE_APPEND_RULE(
3515 [all: wine
3516         @echo \"Wine build complete.\"
3517 .INIT: Makefile
3518 .MAKEFILEDEPS:
3519 all: Makefile
3520 Makefile: config.status \$(MAKEDEP)
3521         @./config.status Makefile
3522 depend: \$(MAKEDEP)
3523         \$(MAKEDEP)$makedep_flags])
3525 dnl Rules for re-running configure
3527 WINE_APPEND_RULE(
3528 [config.status: ${wine_srcdir}configure
3529         @./config.status --recheck
3530 include/config.h: include/stamp-h
3531 include/stamp-h: ${wine_srcdir}include/config.h.in config.status
3532         @./config.status include/config.h include/stamp-h])
3534 if test "x$enable_maintainer_mode" = xyes
3535 then
3536     WINE_APPEND_RULE(
3537 [configure: configure.ac aclocal.m4
3538         autoconf --warnings=all
3539 include/config.h.in: include/stamp-h.in
3540 include/stamp-h.in: configure.ac aclocal.m4
3541         autoheader --warnings=all
3542         @echo timestamp > \$[@]])
3545 if test "x$enable_tools" != xno
3546 then
3547     WINE_APPEND_RULE(
3548 [tools/makedep$ac_exeext: ${wine_srcdir}tools/makedep.c include/config.h config.status
3549         @./config.status tools/makedep
3550 Makefile: tools/makedep$ac_exeext])
3551 else
3552     WINE_APPEND_RULE(
3553 [\$(MAKEDEP):
3554         @echo \"You need to run make in $toolsdir first\" && false])
3557 dnl Rules for wineloader
3559 if test -n "$with_wine64"
3560 then
3561     case "$with_wine64" in
3562       /*) reldir="" ;;
3563       *)  reldir="../" ;;
3564     esac
3565     dnl Get rid of old symlinks
3566     rm -f fonts server 2>/dev/null
3567     WINE_APPEND_RULE(
3568 [all: loader/wine64 loader/wine64-preloader $with_wine64/loader/wine $with_wine64/loader/wine-preloader
3569 loader/wine64 loader/wine64-preloader:
3570         rm -f \$[@] && \$(LN_S) $reldir$with_wine64/\$[@] \$[@]
3571 $with_wine64/loader/wine:
3572         rm -f \$[@] && \$(LN_S) $ac_pwd/loader/wine \$[@]
3573 $with_wine64/loader/wine-preloader:
3574         rm -f \$[@] && \$(LN_S) $ac_pwd/loader/wine-preloader \$[@]
3575 clean::
3576         rm -f loader/wine64 loader/wine64-preloader $with_wine64/loader/wine $with_wine64/loader/wine-preloader])
3577 else
3578     TOP_INSTALL_DEV="$TOP_INSTALL_DEV include"
3579     TOP_INSTALL_LIB="$TOP_INSTALL_LIB \
3580 fonts \
3581 loader/wine.inf \
3582 nls \
3583 programs/msidb/msidb \
3584 programs/msiexec/msiexec \
3585 programs/notepad/notepad \
3586 programs/regedit/regedit \
3587 programs/regsvr32/regsvr32 \
3588 programs/wineboot/wineboot \
3589 programs/winecfg/winecfg \
3590 programs/wineconsole/wineconsole \
3591 programs/winedbg/winedbg \
3592 programs/winefile/winefile \
3593 programs/winemine/winemine \
3594 programs/winepath/winepath \
3595 server/wineserver"
3597     case $host_os in
3598       cygwin*|mingw32*|darwin*|macosx*|linux-android*) ;;
3599       *) TOP_INSTALL_LIB="$TOP_INSTALL_LIB loader/wine.desktop" ;;
3600     esac
3603 dnl Rules for cleaning
3605 WINE_APPEND_RULE(
3606 [distclean:: clean
3607         rm -rf autom4te.cache
3608 maintainer-clean::
3609         rm -f configure include/config.h.in])
3611 dnl Rules for generated source files
3613 WINE_APPEND_RULE(
3614 [dlls/ntdll/unix/version.c: dummy
3615         @version=\`(GIT_DIR=${wine_srcdir}.git git describe HEAD 2>/dev/null || echo \"wine-\$(PACKAGE_VERSION)\") | sed -n -e '\$\$s/\(.*\)/const char wine_build[[]] = \"\\1\";/p'\` && (echo \$\$version | cmp -s - \$[@]) || echo \$\$version >\$[@] || (rm -f \$[@] && exit 1)
3616 programs/winetest/build.rc: dummy
3617         @build=\"STRINGTABLE { 1 \\\"\`GIT_DIR=${wine_srcdir}.git git rev-parse HEAD 2>/dev/null\`\\\" }\" && (echo \$\$build | cmp -s - \$[@]) || echo \$\$build >\$[@] || (rm -f \$[@] && exit 1)
3618 programs/winetest/build.nfo:
3619         @-\$(CC) -v 2>\$[@]
3620 dlls/wineandroid.drv/wine-debug.apk: dlls/wineandroid.drv/build.gradle ${wine_srcdir}dlls/wineandroid.drv/AndroidManifest.xml ${wine_srcdir}dlls/wineandroid.drv/WineActivity.java ${wine_srcdir}dlls/wineandroid.drv/wine.svg
3621         cd dlls/wineandroid.drv && gradle -q -Psrcdir=$srcdir assembleDebug
3622         mv dlls/wineandroid.drv/build/outputs/apk/wine-debug.apk \$[@]])
3624 dnl Misc rules
3626 AC_SUBST(TAGSFLAGS,["--langmap='c:+.idl.l.rh,make:(Make*.in)'"])
3627 WINE_APPEND_RULE(
3628 [TAGS etags:
3629         rm -f TAGS
3630         (test -d .git && git ls-files || find -L $srcdir -name '*.[[ch]]' -print) | xargs etags -a \$(TAGSFLAGS)
3631 tags ctags:
3632         rm -f tags
3633         (test -d .git && git ls-files || find -L $srcdir -name '*.[[ch]]' -print) | xargs ctags -a \$(TAGSFLAGS)
3634 dummy:
3635 .PHONY: depend dummy install-manpages])
3637 AS_ECHO(" done") >&AS_MESSAGE_FD
3638 AC_OUTPUT
3640 if test "$no_create" = "yes"
3641 then
3642   exit 0
3645 WINE_PRINT_MESSAGES
3647 AS_ECHO("
3648 $as_me: Finished.  Do '${ac_make}' to compile Wine.
3649 ") >&AS_MESSAGE_FD
3651 dnl Local Variables:
3652 dnl comment-start: "dnl "
3653 dnl comment-end: ""
3654 dnl comment-start-skip: "\\bdnl\\b\\s *"
3655 dnl compile-command: "autoreconf --warnings=all"
3656 dnl End: