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