ws2_32/tests: Add some more select() related tests.
[wine/multimedia.git] / configure.ac
blob688ab269dc581dd90417f19b0bd3ecc4aa1ff6ec
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.62 don't handle source dir symlinks correctly
8 AC_PREREQ(2.62)
9 AC_INIT([Wine],[WINE_VERSION],[wine-devel@winehq.org],[wine],[http://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 autoconf versions before 2.63b don't have AS_VAR_APPEND or AS_VAR_IF
17 m4_ifdef([AS_VAR_APPEND],,[as_fn_append () { eval $[1]=\$$[1]\$[2]; }
18 AC_DEFUN([AS_VAR_APPEND],[as_fn_append $1 $2])])dnl
19 m4_ifdef([AS_VAR_IF],,[AC_DEFUN([AS_VAR_IF],
20 [AS_LITERAL_IF([$1],
21   [AS_IF([test "x$$1" = x""$2], [$3], [$4])],
22   [eval as_val=\$$1
23    AS_IF([test "x$as_val" = x""$2], [$3], [$4])])])])dnl
24 dnl autoconf versions before 2.64 don't have AC_PACKAGE_URL
25 m4_ifdef([AC_PACKAGE_URL],,
26   [AC_DEFINE([PACKAGE_URL], ["http://www.winehq.org"], [Define to the home page for this package.])
27    AC_SUBST([PACKAGE_URL], ["http://www.winehq.org"])])dnl
29 dnl **** Command-line arguments ****
31 AC_ARG_ENABLE(win16, AS_HELP_STRING([--disable-win16],[do not include Win16 support]))
32 AC_ARG_ENABLE(win64, AS_HELP_STRING([--enable-win64],[build a Win64 emulator on AMD64 (won't run Win32 binaries)]))
33 AC_ARG_ENABLE(tests, AS_HELP_STRING([--disable-tests],[do not build the regression tests]))
34 AC_ARG_ENABLE(maintainer-mode, AS_HELP_STRING([--enable-maintainer-mode],[enable maintainer-specific build rules]))
36 AC_ARG_WITH(alsa,      AS_HELP_STRING([--without-alsa],[do not use the Alsa sound support]),
37             [if test "x$withval" = "xno"; then ac_cv_header_sys_asoundlib_h=no; ac_cv_header_alsa_asoundlib_h=no; fi])
38 AC_ARG_WITH(capi,      AS_HELP_STRING([--without-capi],[do not use CAPI (ISDN support)]))
39 AC_ARG_WITH(cms,       AS_HELP_STRING([--without-cms],[do not use CMS (color management support)]))
40 AC_ARG_WITH(coreaudio, AS_HELP_STRING([--without-coreaudio],[do not use the CoreAudio sound support]),
41             [if test "x$withval" = "xno"; then ac_cv_header_CoreAudio_CoreAudio_h=no; fi])
42 AC_ARG_WITH(cups,      AS_HELP_STRING([--without-cups],[do not use CUPS]))
43 AC_ARG_WITH(curses,    AS_HELP_STRING([--without-curses],[do not use (n)curses]),
44             [if test "x$withval" = "xno"; then ac_cv_header_ncurses_h=no; ac_cv_header_curses_h=no; fi])
45 AC_ARG_WITH(dbus,      AS_HELP_STRING([--without-dbus],[do not use DBus (dynamic device support)]))
46 AC_ARG_WITH(fontconfig,AS_HELP_STRING([--without-fontconfig],[do not use fontconfig]))
47 AC_ARG_WITH(freetype,  AS_HELP_STRING([--without-freetype],[do not use the FreeType library]))
48 AC_ARG_WITH(gettext,   AS_HELP_STRING([--without-gettext],[do not use gettext]))
49 AC_ARG_WITH(gettextpo, AS_HELP_STRING([--with-gettextpo],[use the GetTextPO library to rebuild po files]),
50             [if test "x$withval" = "xno"; then ac_cv_header_gettext_po_h=no; fi])
51 AC_ARG_WITH(gphoto,    AS_HELP_STRING([--without-gphoto],[do not use gphoto (Digital Camera support)]))
52 AC_ARG_WITH(glu,       AS_HELP_STRING([--without-glu],[do not use the GLU library]))
53 AC_ARG_WITH(gnutls,    AS_HELP_STRING([--without-gnutls],[do not use GnuTLS (schannel support)]))
54 AC_ARG_WITH(gsm,       AS_HELP_STRING([--without-gsm],[do not use libgsm (GSM 06.10 codec support)]),
55             [if test "x$withval" = "xno"; then ac_cv_header_gsm_h=no; ac_cv_header_gsm_gsm_h=no; fi])
56 AC_ARG_WITH(gstreamer, AS_HELP_STRING([--without-gstreamer],[do not use GStreamer (codecs support)]))
57 AC_ARG_WITH(hal,       AS_HELP_STRING([--without-hal],[do not use HAL (dynamic device support)]))
58 AC_ARG_WITH(jpeg,      AS_HELP_STRING([--without-jpeg],[do not use JPEG]))
59 AC_ARG_WITH(ldap,      AS_HELP_STRING([--without-ldap],[do not use LDAP]),
60             [if test "x$withval" = "xno"; then ac_cv_header_ldap_h=no; ac_cv_header_lber_h=no; fi])
61 AC_ARG_WITH(mpg123,    AS_HELP_STRING([--without-mpg123],[do not use the mpg123 library]))
62 AC_ARG_WITH(netapi,    AS_HELP_STRING([--without-netapi],[do not use the Samba NetAPI library]))
63 AC_ARG_WITH(openal,    AS_HELP_STRING([--without-openal],[do not use OpenAL]),
64             [if test "x$withval" = "xno"; then ac_cv_header_AL_al_h=no; ac_cv_header_OpenAL_al_h=no; fi])
65 AC_ARG_WITH(opencl,    AS_HELP_STRING([--without-opencl],[do not use OpenCL]),
66             [if test "x$withval" = "xno"; then ac_cv_header_CL_cl_h=no; ac_cv_header_OpenCL_opencl_h=no; fi])
67 AC_ARG_WITH(opengl,    AS_HELP_STRING([--without-opengl],[do not use OpenGL]))
68 AC_ARG_WITH(osmesa,     AS_HELP_STRING([--without-osmesa],[do not use the OSMesa library]))
69 AC_ARG_WITH(oss,       AS_HELP_STRING([--without-oss],[do not use the OSS sound support]))
70 AC_ARG_WITH(pcap,      AS_HELP_STRING([--without-pcap],[do not use the Packet Capture library]),
71             [if test "x$withval" = "xno"; then ac_cv_header_pcap_pcap_h=no; fi])
72 AC_ARG_WITH(png,       AS_HELP_STRING([--without-png],[do not use PNG]))
73 AC_ARG_WITH(pthread,   AS_HELP_STRING([--without-pthread],[do not use the pthread library]),
74             [if test "x$withval" = "xno"; then ac_cv_header_pthread_h=no; fi])
75 AC_ARG_WITH(sane,      AS_HELP_STRING([--without-sane],[do not use SANE (scanner support)]))
76 AC_ARG_WITH(tiff,      AS_HELP_STRING([--without-tiff],[do not use TIFF]))
77 AC_ARG_WITH(v4l,       AS_HELP_STRING([--without-v4l],[do not use v4l1 (v4l support)]))
78 AC_ARG_WITH(xcomposite,AS_HELP_STRING([--without-xcomposite],[do not use the Xcomposite extension]),
79             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xcomposite_h=no; fi])
80 AC_ARG_WITH(xcursor,   AS_HELP_STRING([--without-xcursor],[do not use the Xcursor extension]),
81             [if test "x$withval" = "xno"; then ac_cv_header_X11_Xcursor_Xcursor_h=no; fi])
82 AC_ARG_WITH(xinerama,  AS_HELP_STRING([--without-xinerama],[do not use Xinerama (multi-monitor support)]),
83             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xinerama_h=no; fi])
84 AC_ARG_WITH(xinput,    AS_HELP_STRING([--without-xinput],[do not use the Xinput extension]),
85             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XInput_h=no; fi])
86 AC_ARG_WITH(xinput2,   AS_HELP_STRING([--without-xinput2],[do not use the Xinput 2 extension]),
87             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XInput2_h=no; fi])
88 AC_ARG_WITH(xml,       AS_HELP_STRING([--without-xml],[do not use XML]))
89 AC_ARG_WITH(xrandr,    AS_HELP_STRING([--without-xrandr],[do not use Xrandr (resolution changes)]),
90             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrandr_h=no; fi])
91 AC_ARG_WITH(xrender,   AS_HELP_STRING([--without-xrender],[do not use the Xrender extension]),
92             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrender_h=no; fi])
93 AC_ARG_WITH(xshape,    AS_HELP_STRING([--without-xshape],[do not use the Xshape extension]),
94             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_shape_h=no; fi])
95 AC_ARG_WITH(xshm,      AS_HELP_STRING([--without-xshm],[do not use XShm (shared memory extension)]),
96             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XShm_h=no; fi])
97 AC_ARG_WITH(xslt,      AS_HELP_STRING([--without-xslt],[do not use XSLT]))
98 AC_ARG_WITH(xxf86vm,   AS_HELP_STRING([--without-xxf86vm],[do not use XFree video mode extension]),
99             [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_xf86vmode_h=no; ac_cv_header_X11_extensions_xf86vmproto_h=no; fi])
100 AC_ARG_WITH(zlib,      AS_HELP_STRING([--without-zlib],[do not use Zlib (data compression)]),
101             [if test "x$withval" = "xno"; then ac_cv_header_zlib_h=no; fi])
103 AC_ARG_WITH(wine-tools,AS_HELP_STRING([--with-wine-tools=DIR],[use Wine tools from directory DIR]))
104 AC_ARG_WITH(wine64,    AS_HELP_STRING([--with-wine64=DIR],[use the 64-bit Wine in DIR for a Wow64 build]))
106 AC_CANONICAL_HOST
108 dnl check for out of tree build with unclean source tree
109 case "$srcdir" in
110  .) ;;
111  *) if test -f "$srcdir/Makefile" -o -f "$srcdir/include/config.h"; then
112       AC_MSG_ERROR([you are building out of the source tree, but the source tree contains object files.
113 You need to run 'make distclean' in the source tree first.])
114     fi ;;
115 esac
117 dnl **** Check for some programs ****
119 AC_PROG_MAKE_SET
120 AC_PROG_CC
121 AC_PROG_CXX
122 dnl We can't use AC_PROG_CPP for winegcc, it uses by default $(CC) -E
123 AC_CHECK_TOOL(CPPBIN,cpp,cpp)
124 AC_DEFINE_UNQUOTED(EXEEXT,["$ac_exeext"],[Define to the file extension for executables.])
125 AC_CHECK_TOOL(LD,ld)
127 case $host in
128   *-darwin*)
129     if test "x$enable_win64" = "xyes"
130     then
131       CC="$CC -m64"
132       CXX="$CXX -m64"
133       host_cpu="x86_64"
134       notice_platform="64-bit "
135       AC_SUBST(TARGETFLAGS,"-m64")
136     else
137       CC="$CC -m32"
138       CXX="$CXX -m32"
139       host_cpu="i386"
140       notice_platform="32-bit "
141       AC_SUBST(TARGETFLAGS,"-m32")
142       enable_win16=${enable_win16:-yes}
143     fi
144     with_fontconfig=${with_fontconfig:-no}
145     ;;
146   x86_64*|amd64*)
147     if test "x$enable_win64" != "xyes" -a "$cross_compiling" != "yes"
148     then
149       CC="$CC -m32"
150       CXX="$CXX -m32"
151       AC_MSG_CHECKING([whether $CC works])
152       AC_LINK_IFELSE([AC_LANG_PROGRAM()],AC_MSG_RESULT([yes]),
153                      [AC_MSG_RESULT([no])
154                       AC_MSG_ERROR([Cannot build a 32-bit program, you need to install 32-bit development libraries.])])
155       host_cpu="i386"
156       notice_platform="32-bit "
157       AC_SUBST(TARGETFLAGS,"-m32")
158       enable_win16=${enable_win16:-yes}
159     else
160       if test "x${GCC}" = "xyes"
161       then
162         AC_MSG_CHECKING([whether $CC supports __builtin_ms_va_list])
163         AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stdarg.h>]], [[void func(__builtin_ms_va_list *args);]])],
164                           [AC_MSG_RESULT([yes])],
165                           [AC_MSG_RESULT([no])
166                            AC_MSG_ERROR([You need gcc >= 4.4 to build Wine as 64-bit.])])
167       fi
168       host_cpu="x86_64"
169       AC_SUBST(TARGETFLAGS,"-m64")
170     fi
171     ;;
172   arm*)
173     AC_MSG_CHECKING([whether $CC supports Thumb])
174     WINE_TRY_ASM_LINK([".thumb\nblx ac_test\n.arm"],[int ac_test(int i) { return i; }], [if (ac_test(1)) return 1],
175                       [AC_MSG_RESULT([yes])],
176                       [AC_MSG_RESULT([no])
177                        AC_MSG_ERROR([You need a target with Thumb support to build Wine for ARM.])])
178     CFLAGS="$CFLAGS -marm"
179     AC_SUBST(TARGETFLAGS,"-marm")
180     ;;
181   *-mingw32*|*-cygwin*)
182     enable_win16=${enable_win16:-no}
183     CFLAGS="$CFLAGS -D_WIN32"
184     ;;
185   i[[3456789]]86*)
186     enable_win16=${enable_win16:-yes}
187     ;;
188 esac
190 dnl enable_win16 defaults to yes on x86, to no on other CPUs
191 enable_win16=${enable_win16:-no}
192 enable_win64=${enable_win64:-no}
194 dnl Disable winetest too if tests are disabled
195 enable_winetest=${enable_winetest:-$enable_tests}
197 dnl Some special cases for the wow64 build
198 if test -n "$with_wine64"
199 then
200     if test "x$enable_win64" = "xyes"
201     then
202         AC_MSG_ERROR([--enable-win64 and --with-wine64 are mutually exclusive.
203 --enable-win64 should be used in the 64-bit build tree, --with-wine64 in the 32-bit Wow64 build tree.])
204     fi
205     enable_fonts=${enable_fonts:-no}
206     enable_server=${enable_server:-no}
207 elif test "x$enable_win64" = "xyes"
208 then
209     test "x$libdir" != "x\${exec_prefix}/lib" || libdir="\${exec_prefix}/lib64"
212 AC_CACHE_CHECK([for the directory containing the Wine tools], wine_cv_toolsdir,
213   [wine_cv_toolsdir="$with_wine_tools"
214    if test -z "$with_wine_tools"; then
215      if test "$cross_compiling" = "yes"; then
216        AC_MSG_ERROR([you must use the --with-wine-tools option when cross-compiling.])
217      elif test -n "$with_wine64"; then
218        wine_cv_toolsdir="$with_wine64"
219      fi
220    fi
221    if test -z "$wine_cv_toolsdir"; then
222      wine_makedep=tools/makedep
223      wine_cv_toolsdir="\$(top_builddir)"
224    elif test -d "$wine_cv_toolsdir/tools/winebuild"; then
225      wine_makedep=$wine_cv_toolsdir/tools/makedep
226      case "$wine_cv_toolsdir" in
227        /*) ;;
228        *)  wine_cv_toolsdir="\$(top_builddir)/$wine_cv_toolsdir" ;;
229      esac
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])
234    fi])
235 AC_SUBST(TOOLSDIR,$wine_cv_toolsdir)
236 if test -n "$host_alias" -a "$host_alias" != "$build_alias"
237 then
238     AC_SUBST(TARGETFLAGS,"-b $host_alias $TARGETFLAGS")
241 dnl Check for flex
242 AC_CHECK_PROGS(FLEX,flex,none)
243 if test "$FLEX" = "none"
244 then
245   AC_MSG_ERROR([no suitable flex found. Please install the 'flex' package.])
247 AC_MSG_CHECKING([whether flex is recent enough])
248 cat >conftest.l <<EOF
249 %top{
250 #include "prediluvian.h"
254 if $FLEX -t conftest.l >/dev/null 2>&AS_MESSAGE_LOG_FD
255 then
256   AC_MSG_RESULT([yes])
257 else
258   AC_MSG_RESULT([no])
259   AC_MSG_ERROR([Your flex version is too old. Please install flex version 2.5.33 or newer.])
262 dnl Check for bison
263 AC_CHECK_PROGS(BISON,bison,none)
264 if test "$BISON" = "none"
265 then
266   AC_MSG_ERROR([no suitable bison found. Please install the 'bison' package.])
269 AC_CHECK_TOOLS(AR,[ar gar],ar)
270 AC_CHECK_TOOL(STRIP,strip,strip)
271 AC_SUBST(ARFLAGS,rc)
272 AC_PROG_RANLIB
273 AC_PROG_LN_S
274 AC_PROG_EGREP
275 AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH])
276 AC_CHECK_PROGS(MSGFMT, msgfmt, false)
277 WINE_PATH_PKG_CONFIG
279 if test "x$enable_maintainer_mode" != "xyes"
280 then
281   FONTFORGE=""
282   RSVG=""
283   CONVERT=""
284   ICOTOOL=""
285 else
286   test "$srcdir" = . || AC_MSG_ERROR([Maintainer mode cannot work out of tree.])
287   AC_CHECK_PROGS(FONTFORGE, fontforge, false)
288   AC_CHECK_PROGS(RSVG, rsvg-convert rsvg, false)
289   AC_CHECK_PROGS(CONVERT, convert, false)
290   AC_CHECK_PROGS(ICOTOOL, icotool, false)
291   test "$FONTFORGE" != "false" || AC_MSG_ERROR([You need fontforge to rebuild fonts in maintainer mode.])
292   test "$RSVG" != "false" || AC_MSG_ERROR([You need rsvg to rebuild icons in maintainer mode.])
294   dnl Check the imagemagick version
295   if test "$CONVERT" = false
296   then
297     AC_MSG_ERROR([You need imagemagick to rebuild icons in maintainer mode.])
298   else
299     AC_MSG_CHECKING([for recent enough imagemagick])
300     convert_version=`convert --version | head -n1`
301     if test "x$convert_version" != "x"
302     then
303       convert_version_major=`expr "$convert_version" : '.* \([[0-9]]*\)\.[[0-9]]*'`
304       convert_version_minor=`expr "$convert_version" : '.* [[0-9]]*\.\([[0-9]]*\)'`
305       if test "$convert_version_major" -eq 6 -a "$convert_version_minor" -lt 6
306       then
307         CONVERT=false
308       fi
309     fi
310     if test "$CONVERT" = false
311     then
312       AC_MSG_RESULT([no ($convert_version_major.$convert_version_minor)])
313       AC_MSG_ERROR([You need imagemagick version 6.6 or newer to rebuild icons in maintainer mode.])
314     else
315       AC_MSG_RESULT([yes ($convert_version_major.$convert_version_minor)])
316     fi
317   fi
319   dnl Check the icotool version
320   if test "$ICOTOOL" = false
321   then
322     AC_MSG_ERROR([You need icotool to rebuild icons in maintainer mode.])
323   else
324     AC_MSG_CHECKING([for recent enough icotool])
325     icotool_version=`icotool --version | head -n1`
326     if test "x$icotool_version" != "x"
327     then
328       icotool_version_major=`expr "$icotool_version" : '.* \([[0-9]]*\)\.[[0-9]]*'`
329       icotool_version_minor=`expr "$icotool_version" : '.* [[0-9]]*\.\([[0-9]]*\)'`
330       if test "$icotool_version_major" -eq 0 -a "$icotool_version_minor" -lt 29
331       then
332         ICOTOOL=false
333         WINE_WARNING([icotool version 0.29.0 or newer is needed to rebuild icons.])
334       fi
335     fi
336     if test "$ICOTOOL" = false
337     then
338       AC_MSG_RESULT([no ($icotool_version_major.$icotool_version_minor)])
339       AC_MSG_ERROR([You need icotool version 0.29.0 or newer to rebuild icons in maintainer mode.])
340     else
341       AC_MSG_RESULT([yes ($icotool_version_major.$icotool_version_minor)])
342     fi
343   fi
345   dnl Maintainer mode requires gettext
346   with_gettext=yes
347   with_gettextpo=yes
348   AS_UNSET(ac_cv_header_gettext_po_h)
351 test "x$with_gettext" != xno || MSGFMT=false
352 if test "$MSGFMT" != "false"
353 then
354   AC_MSG_CHECKING([whether msgfmt supports contexts])
355   cat >conftest.po <<EOF
356 # comment
357 msgctxt "ctxt"
358 msgid "id"
359 msgstr "str"
361   if $MSGFMT -o /dev/null conftest.po 2>&AS_MESSAGE_LOG_FD
362   then
363     AC_MSG_RESULT([yes])
364   else
365     AC_MSG_RESULT([no])
366     MSGFMT=false
367   fi
369 WINE_WARNING_WITH(gettext,[test "$MSGFMT" = false],
370                   [gettext tools not found (or too old), translations won't be built.])
372 dnl **** Check for some libraries ****
374 dnl Check for -li386 for NetBSD and OpenBSD
375 AC_CHECK_LIB(i386,i386_set_ldt)
376 dnl Check for -lossaudio for NetBSD
377 AC_CHECK_LIB(ossaudio,_oss_ioctl)
379 AC_SUBST(OPENGL_LIBS,"")
381 dnl **** Check for header files ****
383 AC_SYS_LARGEFILE()
385 AC_CHECK_HEADERS(\
386         AL/al.h \
387         ApplicationServices/ApplicationServices.h \
388         AudioToolbox/AudioConverter.h \
389         AudioUnit/AudioUnit.h \
390         AudioUnit/AudioComponent.h \
391         CL/cl.h \
392         Carbon/Carbon.h \
393         CoreAudio/CoreAudio.h \
394         CoreServices/CoreServices.h \
395         DiskArbitration/DiskArbitration.h \
396         IOKit/IOKitLib.h \
397         IOKit/hid/IOHIDLib.h \
398         OpenAL/al.h \
399         OpenCL/opencl.h \
400         QuickTime/ImageCompression.h \
401         Security/Security.h \
402         alias.h \
403         alsa/asoundlib.h \
404         arpa/inet.h \
405         arpa/nameser.h \
406         asm/types.h \
407         asm/user.h \
408         curses.h \
409         direct.h \
410         dirent.h \
411         dlfcn.h \
412         elf.h \
413         float.h \
414         fnmatch.h \
415         getopt.h \
416         gettext-po.h \
417         grp.h \
418         gsm.h \
419         gsm/gsm.h \
420         ieeefp.h \
421         inet/mib2.h \
422         io.h \
423         kstat.h \
424         lber.h \
425         ldap.h \
426         libproc.h \
427         link.h \
428         linux/cdrom.h \
429         linux/compiler.h \
430         linux/filter.h \
431         linux/hdreg.h \
432         linux/input.h \
433         linux/ioctl.h \
434         linux/joystick.h \
435         linux/major.h \
436         linux/param.h \
437         linux/serial.h \
438         linux/types.h \
439         linux/ucdrom.h \
440         lwp.h \
441         mach-o/nlist.h \
442         mach-o/loader.h \
443         mach/mach.h \
444         mach/machine.h \
445         machine/cpu.h \
446         machine/limits.h \
447         machine/sysarch.h \
448         mntent.h \
449         ncurses.h \
450         netdb.h \
451         netinet/in.h \
452         netinet/in_systm.h \
453         netinet/tcp.h \
454         netinet/tcp_fsm.h \
455         pcap/pcap.h \
456         poll.h \
457         port.h \
458         process.h \
459         pthread.h \
460         pwd.h \
461         sched.h \
462         scsi/scsi.h \
463         scsi/scsi_ioctl.h \
464         scsi/sg.h \
465         stdbool.h \
466         stdint.h \
467         stropts.h \
468         sys/asoundlib.h \
469         sys/attr.h \
470         sys/cdio.h \
471         sys/elf32.h \
472         sys/epoll.h \
473         sys/event.h \
474         sys/exec_elf.h \
475         sys/filio.h \
476         sys/inotify.h \
477         sys/ioctl.h \
478         sys/ipc.h \
479         sys/limits.h \
480         sys/link.h \
481         sys/mman.h \
482         sys/modem.h \
483         sys/msg.h \
484         sys/mtio.h \
485         sys/param.h \
486         sys/poll.h \
487         sys/prctl.h \
488         sys/protosw.h \
489         sys/ptrace.h \
490         sys/queue.h \
491         sys/resource.h \
492         sys/scsiio.h \
493         sys/shm.h \
494         sys/signal.h \
495         sys/socket.h \
496         sys/socketvar.h \
497         sys/sockio.h \
498         sys/statvfs.h \
499         sys/strtio.h \
500         sys/syscall.h \
501         sys/tihdr.h \
502         sys/time.h \
503         sys/timeout.h \
504         sys/times.h \
505         sys/uio.h \
506         sys/user.h \
507         sys/utsname.h \
508         sys/vm86.h \
509         sys/wait.h \
510         syscall.h \
511         termios.h \
512         unistd.h \
513         utime.h \
514         valgrind/memcheck.h \
515         valgrind/valgrind.h \
516         zlib.h
518 AC_HEADER_STAT()
520 dnl **** Checks for headers that depend on other ones ****
522 AC_CHECK_HEADERS([sys/mount.h sys/statfs.h sys/sysctl.h sys/user.h sys/vfs.h],,,
523     [#include <sys/types.h>
524      #ifdef HAVE_SYS_PARAM_H
525      # include <sys/param.h>
526      #endif])
528 AC_CHECK_HEADERS(\
529         netinet/ip.h \
530         net/if.h \
531         net/if_arp.h \
532         net/if_dl.h \
533         net/if_types.h \
534         net/route.h \
535         netinet/if_ether.h \
536         netinet/if_inarp.h \
537         netinet/in_pcb.h \
538         netinet/ip_icmp.h \
539         netinet/ip_var.h \
540         netinet/udp.h \
541         netipx/ipx.h \
542         sys/un.h \
543 ,,,[#include <sys/types.h>
544      #ifdef HAVE_SYS_SOCKET_H
545      # include <sys/socket.h>
546      #endif
547      #ifdef HAVE_SYS_SOCKETVAR_H
548      # include <sys/socketvar.h>
549      #endif
550      #ifdef HAVE_NET_ROUTE_H
551      # include <net/route.h>
552      #endif
553      #ifdef HAVE_NETINET_IN_H
554      # include <netinet/in.h>
555      #endif
556      #ifdef HAVE_NETINET_IN_SYSTM_H
557      # include <netinet/in_systm.h>
558      #endif
559      #ifdef HAVE_NET_IF_H
560      # include <net/if.h>
561      #endif
562      #ifdef HAVE_NETINET_IP_H
563      # include <netinet/ip.h>
564      #endif])
566 AC_CHECK_HEADERS([netinet/tcp_timer.h netinet/udp_var.h netinet/icmp_var.h netinet/tcp_var.h ],,,
567     [#include <sys/types.h>
568      #ifdef HAVE_ALIAS_H
569      # include <alias.h>
570      #endif
571      #ifdef HAVE_SYS_SOCKET_H
572      # include <sys/socket.h>
573      #endif
574      #ifdef HAVE_SYS_SOCKETVAR_H
575      # include <sys/socketvar.h>
576      #endif
577      #ifdef HAVE_SYS_TIMEOUT_H
578      # include <sys/timeout.h>
579      #endif
580      #ifdef HAVE_NETINET_IN_H
581      # include <netinet/in.h>
582      #endif
583      #ifdef HAVE_NETINET_IN_SYSTM_H
584      # include <netinet/in_systm.h>
585      #endif
586      #ifdef HAVE_NETINET_IP_H
587      # include <netinet/ip.h>
588      #endif
589      #ifdef HAVE_NETINET_IP_VAR_H
590      # include <netinet/ip_var.h>
591      #endif
592      #ifdef HAVE_NETINET_IP_ICMP_H
593      # include <netinet/ip_icmp.h>
594      #endif
595      #ifdef HAVE_NETINET_UDP_H
596      # include <netinet/udp.h>
597      #endif
598      #ifdef HAVE_NETINET_TCP_H
599      # include <netinet/tcp.h>
600      #endif
601      #ifdef HAVE_NETINET_TCP_TIMER_H
602      #include <netinet/tcp_timer.h>
603      #endif])
605 AC_CHECK_HEADERS([linux/ipx.h linux/irda.h linux/rtnetlink.h],,,
606     [#include <sys/types.h>
607      #ifdef HAVE_ASM_TYPES_H
608      # include <asm/types.h>
609      #endif
610      #ifdef HAVE_SYS_SOCKET_H
611      # include <sys/socket.h>
612      #endif
613      #ifdef HAVE_LINUX_TYPES_H
614      # include <linux/types.h>
615      #endif])
617 AC_CHECK_HEADERS([mach-o/dyld_images.h],,,
618     [#ifdef HAVE_STDBOOL_H
619      # include <stdbool.h>
620      #endif
621      #ifdef HAVE_STDINT_H
622      # include <stdint.h>
623      #endif])
625 AC_CHECK_HEADERS([resolv.h],,,
626     [#include <sys/types.h>
627      #ifdef HAVE_SYS_SOCKET_H
628      # include <sys/socket.h>
629      #endif
630      #ifdef HAVE_NETINET_IN_H
631      # include <netinet/in.h>
632      #endif
633      #ifdef HAVE_ARPA_NAMESER_H
634      # include <arpa/nameser.h>
635      #endif])
637 AC_CHECK_HEADERS([ifaddrs.h],,,[#include <sys/types.h>])
639 AC_CHECK_HEADERS(sys/ucontext.h,,,[#include <signal.h>])
641 AC_CHECK_HEADERS([sys/thr.h],,,
642 [#include <sys/types.h>
643 #ifdef HAVE_SYS_UCONTEXT_H
644 #include <sys/ucontext.h>
645 #endif])
647 AC_CHECK_HEADERS([pthread_np.h],,,
648 [#ifdef HAVE_PTHREAD_H
649 #include <pthread.h>
650 #endif])
652 AC_CHECK_HEADERS([linux/videodev.h linux/videodev2.h libv4l1.h],,,
653 [#ifdef HAVE_SYS_TIME_H
654 #include <sys/time.h>
655 #endif
656 #include <sys/types.h>
657 #ifdef HAVE_ASM_TYPES_H
658 #include <asm/types.h>
659 #endif])
661 AC_CHECK_HEADERS([libprocstat.h],,,
662 [#ifdef HAVE_SYS_PARAM_H
663 #include <sys/param.h>
664 #endif
665 #ifdef HAVE_SYS_QUEUE_H
666 #include <sys/queue.h>
667 #endif
668 #ifdef HAVE_SYS_SOCKET_H
669 #include <sys/socket.h>
670 #endif])
672 dnl **** Check for working dll ****
674 AC_SUBST(dlldir,"\${libdir}/wine")
675 AC_SUBST(DLLPREFIX,"")
676 AC_SUBST(DLLFLAGS,"-D_REENTRANT")
677 AC_SUBST(LDRPATH_INSTALL,"")
678 AC_SUBST(LDRPATH_LOCAL,"")
679 LIBEXT="so"
680 DLLEXT=".so"
681 IMPLIBEXT="def"
682 STATIC_IMPLIBEXT="def.a"
683 WINE_PATH_SONAME_TOOLS
684 WINE_CONFIG_HELPERS
686 wine_binary="wine"
687 test "x$enable_win64" != "xyes" || wine_binary="wine64"
688 loader_programs="$wine_binary wine-installed"
689 libwine_soversion=`expr $libwine_version : '\([[0-9]]*\)\..*'`
691 AC_SUBST(LOADER_RULES,["
692 all: wine.inf
694 install install-lib:: wine-installed
695         \$(INSTALL_PROGRAM) wine-installed \$(DESTDIR)\$(bindir)/$wine_binary
697 uninstall::
698         \$(RM) \$(DESTDIR)\$(bindir)/$wine_binary
701 case $host_os in
702   cygwin*|mingw32*)
703     AC_CHECK_TOOL(DLLTOOL,dlltool,false)
704     LIBEXT="dll"
705     DLLEXT=""
706     IMPLIBEXT="a"
707     STATIC_IMPLIBEXT="a"
708     dnl Disable modules that can't be used on Windows
709     enable_iphlpapi=${enable_iphlpapi:-no}
710     enable_kernel32=${enable_kernel32:-no}
711     enable_msvcrt=${enable_msvcrt:-no}
712     enable_ntdll=${enable_ntdll:-no}
713     enable_ws2_32=${enable_ws2_32:-no}
714     enable_loader=${enable_loader:-no}
715     enable_server=${enable_server:-no}
716     dnl Disable dependencies that are not useful on Windows
717     with_x=${with_x:-no}
718     with_pthread=${with_pthread:-no}
720     dnl Mingw needs explicit msvcrt for linking libwine and winsock for wininet
721     crtlibs=""
722     case $host_os in
723         mingw32*)
724           crtlibs="-lmsvcrt"
725           AC_SUBST(SOCKET_LIBS,"-L\$(top_builddir)/dlls/ws2_32 -lws2_32") ;;
726     esac
728     libwine_targets="libwine.dll libwine.a"
729     AC_SUBST(LIBWINE_RULES,["
730 OBJS = \$(C_SRCS:.c=.o) \$(EXTRA_OBJS)
732 all: libwine.dll libwine.a
734 libwine.a: \$(srcdir)/wine.def
735         \$(DLLTOOL) -l \$@ -d \$(srcdir)/wine.def
737 libwine.dll: \$(OBJS) \$(srcdir)/wine.def
738         \$(CC) -shared \$(srcdir)/wine.def -o \$@ \$(OBJS) $crtlibs \$(EXTRALIBS)
740 install install-lib:: libwine.dll
741         \$(INSTALL_DATA) libwine.dll \$(DESTDIR)\$(libdir)/libwine.dll
743 install install-dev:: libwine.a
744         \$(INSTALL_DATA) libwine.a \$(DESTDIR)\$(libdir)/libwine.a
746 uninstall::
747         -cd \$(DESTDIR)\$(libdir) && \$(RM) libwine.a libwine.dll
749     ;;
751   darwin*|macosx*)
752     LIBEXT="dylib"
753     DLLFLAGS="$DLLFLAGS -fPIC"
754     LIBWINE_LDFLAGS="-multiply_defined suppress"
755     LDRPATH_INSTALL="-Wl,-rpath,@loader_path/\`\$(MAKEDEP) -R \$(bindir) \$(libdir)\`"
756     LDRPATH_LOCAL="-Wl,-rpath,@loader_path/\$(top_builddir)/libs/wine"
757     dnl declare needed frameworks
758     AC_SUBST(COREFOUNDATION_LIBS,"-framework CoreFoundation")
759     AC_SUBST(IOKIT_LIBS,"-framework IOKit -framework CoreFoundation")
760     AC_SUBST(FORCEFEEDBACK_LIBS,"-framework ForceFeedback -framework CoreFoundation")
761     AC_SUBST(APPLICATIONSERVICES_LIBS,"-framework ApplicationServices")
762     AC_SUBST(CORESERVICES_LIBS,"-framework CoreServices")
763     AC_SUBST(APPKIT_LIBS,"-framework AppKit")
764     LDEXECFLAGS="-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00001000,-segaddr,WINE_SHAREDHEAP,0x7f000000,-sectcreate,__TEXT,__info_plist,wine_info.plist"
765     WINE_TRY_CFLAGS([-Wl,-no_pie],
766                     [LDEXECFLAGS="-Wl,-no_pie $LDEXECFLAGS"])
767     if test "$ac_cv_header_DiskArbitration_DiskArbitration_h" = "yes"
768     then
769         dnl DiskArbitration API is not public on Darwin < 8.0, use it only if header found
770         AC_SUBST(DISKARBITRATION_LIBS,"-framework DiskArbitration -framework CoreFoundation")
771     fi
772     if test "$ac_cv_header_Security_Security_h" = "yes"
773     then
774         AC_SUBST(SECURITY_LIBS,"-framework Security -framework CoreFoundation")
775         dnl Check for the SSLCopyPeerCertificates function
776         ac_save_LIBS="$LIBS"
777         LIBS="$LIBS $SECURITY_LIBS"
778         AC_CHECK_FUNCS(SSLCopyPeerCertificates)
779         LIBS="$ac_save_LIBS"
780         with_gnutls=${with_gnutls:-no}
781     fi
782     if test "$ac_cv_header_CoreAudio_CoreAudio_h" = "yes" -a "$ac_cv_header_AudioUnit_AudioUnit_h" = "yes"
783     then
784         if test "$ac_cv_header_AudioUnit_AudioComponent_h" = "yes"
785         then
786             AC_SUBST(COREAUDIO_LIBS,"-framework CoreFoundation -framework CoreAudio -framework AudioUnit -framework AudioToolbox -framework CoreMIDI")
787         else
788             dnl CoreServices needed by AudioUnit
789             AC_SUBST(COREAUDIO_LIBS,"-framework CoreAudio -framework AudioUnit -framework CoreServices -framework AudioToolbox -framework CoreMIDI")
790         fi
791         dnl Check for the AUGraphAddNode function
792         ac_save_LIBS="$LIBS"
793         LIBS="$LIBS $COREAUDIO_LIBS"
794         AC_CHECK_FUNCS(AUGraphAddNode)
795         LIBS="$ac_save_LIBS"
796     fi
797     if test "$ac_cv_header_OpenAL_al_h" = "yes"
798     then
799         AC_SUBST(OPENAL_LIBS,"-framework OpenAL")
800         AC_DEFINE_UNQUOTED(HAVE_OPENAL,1,[Define to 1 if OpenAL is available])
801         ac_cv_lib_openal=yes
802     fi
803     if test "$ac_cv_header_OpenCL_opencl_h" = "yes"
804     then
805         AC_SUBST(OPENCL_LIBS,"-framework OpenCL")
806         ac_cv_lib_OpenCL_clGetPlatformInfo=yes
807     fi
808     if test "$ac_cv_header_IOKit_hid_IOHIDLib_h" = "yes"
809     then
810         ac_save_LIBS="$LIBS"
811         LIBS="$LIBS $IOKIT_LIBS"
812         AC_CHECK_FUNCS(IOHIDManagerCreate)
813         LIBS="$ac_save_LIBS"
814     fi
815     if test "$ac_cv_header_QuickTime_ImageCompression_h" = "yes"
816     then
817         dnl Make sure we can actually use the QuickTime framework
818         ac_save_LIBS="$LIBS"
819         LIBS="-framework QuickTime -framework ApplicationServices -framework CoreVideo $LIBS"
820         AC_MSG_CHECKING([for the QuickTime framework])
821         AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <QuickTime/ImageCompression.h>]],[[CodecManagerVersion(NULL);]])],
822                        [AC_MSG_RESULT([yes])
823                         AC_SUBST(QUICKTIME_LIBS,"-framework QuickTime -framework ApplicationServices -framework CoreVideo")
824                         enable_wineqtdecoder=${enable_wineqtdecoder:-yes}],
825                        [AC_MSG_RESULT([no])
826                         ac_cv_header_QuickTime_ImageCompression_h=no])
827         LIBS="$ac_save_LIBS"
828     fi
829     if test "$ac_cv_header_QuickTime_ImageCompression_h" != "yes"
830     then
831         WINE_NOTICE([QuickTime ${notice_platform}development files not found, video decoding won't be supported.])
832     fi
833     if test "$ac_cv_header_Carbon_Carbon_h" = "yes"
834     then
835         AC_SUBST(CARBON_LIBS,"-framework Carbon")
836     fi
838     dnl Enable Mac driver on Mac OS X 10.6 or later
839     if test "$ac_cv_header_ApplicationServices_ApplicationServices_h" = "yes"
840     then
841         ac_save_LIBS="$LIBS"
842         LIBS="$LIBS $APPLICATIONSERVICES_LIBS"
843         AC_CHECK_FUNC(CGDisplayModeGetWidth,enable_winemac_drv=${enable_winemac_drv:-yes})
844         LIBS="$ac_save_LIBS"
845     fi
847     dnl Check for Xcode 3.x broken 16-bit support
848     if test "x$enable_win16" = "xyes"
849     then
850         AC_MSG_CHECKING([whether 16-bit code can be built correctly])
851         AC_RUN_IFELSE([AC_LANG_PROGRAM([[asm(".text\n"
852                                             "bad:\tnop;nop\n"
853                                             "good:\tnop;nop\n\t"
854                                             ".globl _testfunc\n"
855                                             "_testfunc:\tcallw good");
856                                         extern void testfunc();]],
857                                       [[unsigned short *p = (unsigned short *)testfunc;
858                                         return p[0] != 0xe866 || p[1] != 0xfffa]])],
859                                       AC_MSG_RESULT(yes),
860                                       [AC_MSG_RESULT(no)
861                                        AC_MSG_ERROR([Xcode 3.x cannot build 16-bit code correctly. Use --disable-win16 if you don't need 16-bit support.])],
862                                        AC_MSG_RESULT([[cross-compiling, assuming yes]]))
863     fi
865     libwine_targets="libwine.dylib libwine.$libwine_soversion.dylib libwine.$libwine_version.dylib"
866     AC_SUBST(LIBWINE_RULES,["
867 OBJS = \$(C_SRCS:.c=.o) \$(EXTRA_OBJS)
869 all: libwine.dylib
871 libwine.$libwine_version.dylib: \$(OBJS)
872         \$(CC) -dynamiclib -install_name @rpath/libwine.$libwine_soversion.dylib -Wl,-rpath,@loader_path/ -compatibility_version $libwine_soversion -current_version $libwine_version \$(OBJS) \$(EXTRALIBS) \$(LDFLAGS) \$(LIBS) -o \$@
874 libwine.$libwine_soversion.dylib: libwine.$libwine_version.dylib
875         \$(RM) \$@ && \$(LN_S) libwine.$libwine_version.dylib \$@
877 libwine.dylib: libwine.$libwine_soversion.dylib
878         \$(RM) \$@ && \$(LN_S) libwine.$libwine_soversion.dylib \$@
880 install install-lib:: libwine.$libwine_version.dylib
881         \$(INSTALL_PROGRAM) libwine.$libwine_version.dylib \$(DESTDIR)\$(libdir)/libwine.$libwine_version.dylib
882         cd \$(DESTDIR)\$(libdir) && \$(RM) libwine.$libwine_soversion.dylib && \$(LN_S) libwine.$libwine_version.dylib libwine.$libwine_soversion.dylib
884 install install-dev::
885         cd \$(DESTDIR)\$(libdir) && \$(RM) libwine.dylib && \$(LN_S) libwine.$libwine_version.dylib libwine.dylib
887 uninstall::
888         -cd \$(DESTDIR)\$(libdir) && \$(RM) libwine.dylib libwine.$libwine_soversion.dylib libwine.$libwine_version.dylib
891     AS_VAR_APPEND([LOADER_RULES],["
892 $wine_binary: main.o wine_info.plist
893         \$(CC) -o \$@ $LDEXECFLAGS main.o \$(LIBWINE) \$(LIBPORT) \$(EXTRALIBS) \$(LDFLAGS) \$(LDRPATH_LOCAL)
895 wine-installed: main.o wine_info.plist
896         \$(CC) -o \$@ $LDEXECFLAGS main.o \$(LIBWINE) \$(LIBPORT) \$(EXTRALIBS) \$(LDFLAGS) \$(LDRPATH_INSTALL)
898     ;;
900   linux-android*)
901     DLLFLAGS="$DLLFLAGS -fPIC"
902     DLLPREFIX="lib"
903     LDEXECFLAGS=""
904     dlldir="\${libdir}"
905     WINE_TRY_CFLAGS([-fPIC -Wl,--export-dynamic],
906                     [LDEXECFLAGS="-Wl,--export-dynamic"])
907     WINE_TRY_CFLAGS([-fPIC -Wl,--rpath,\$ORIGIN/../lib],
908                     [LDRPATH_INSTALL="-Wl,--rpath,\\\$\$ORIGIN/\`\$(MAKEDEP) -R \$(bindir) \$(libdir)\`"
909                      LDRPATH_LOCAL="-Wl,--rpath,\\\$\$ORIGIN/\$(top_builddir)/libs/wine"],
910         [WINE_TRY_CFLAGS([-fPIC -Wl,-R,\$ORIGIN/../lib],
911                          [LDRPATH_INSTALL="-Wl,-R,\\\$\$ORIGIN/\`\$(MAKEDEP) -R \$(bindir) \$(libdir)\`"
912                           LDRPATH_LOCAL="-Wl,-R,\\\$\$ORIGIN/\$(top_builddir)/libs/wine"])])
914     WINE_TRY_CFLAGS([-Wl,--enable-new-dtags],
915                     [LDRPATH_INSTALL="$LDRPATH_INSTALL -Wl,--enable-new-dtags"])
917     case $host_cpu in
918       *i[[3456789]]86* | x86_64)
919         WINE_TRY_CFLAGS([-Wl,--section-start,.interp=0x7bf00400],
920                         [LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7bf00400"])
921         ;;
922     esac
924     libwine_targets="libwine.so"
925     AC_SUBST(LIBWINE_RULES,["
926 OBJS = \$(C_SRCS:.c=.o) \$(EXTRA_OBJS)
928 all: libwine.so
930 libwine.so: \$(OBJS)
931         \$(CC) -shared \$(OBJS) \$(EXTRALIBS) \$(LDFLAGS) \$(LIBS) -o \$@
933 install install-lib:: libwine.so
934         \$(INSTALL_PROGRAM) libwine.so \$(DESTDIR)\$(libdir)/libwine.so
936 uninstall::
937         \$(RM) \$(DESTDIR)\$(libdir)/libwine.so
940     AS_VAR_APPEND([LOADER_RULES],["
941 $wine_binary: main.o
942         \$(CC) -o \$@ $LDEXECFLAGS main.o \$(LIBWINE) \$(LIBPORT) \$(EXTRALIBS) \$(LDFLAGS) \$(LDRPATH_LOCAL)
944 wine-installed: main.o
945         \$(CC) -o \$@ $LDEXECFLAGS main.o \$(LIBWINE) \$(LIBPORT) \$(EXTRALIBS) \$(LDFLAGS) \$(LDRPATH_INSTALL)
947     ;;
949   *)
950     DLLFLAGS="$DLLFLAGS -fPIC"
951     LDEXECFLAGS=""
952     AC_CACHE_CHECK([whether we can build a GNU style ELF dll], ac_cv_c_dll_gnuelf,
953         [WINE_TRY_SHLIB_FLAGS([-fPIC -shared -Wl,-Bsymbolic],
954                               ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")])
955     if test "$ac_cv_c_dll_gnuelf" = "yes"
956     then
957       LDSHARED="\$(CC) -shared"
958       WINE_TRY_CFLAGS([-fPIC -shared -Wl,-soname,confest.so.1],
959                       [LDSHARED="\$(CC) -shared -Wl,-soname,libwine.so.$libwine_soversion"],
960                       [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-h,confest.so.1],
961                                        [LDSHARED="\$(CC) -shared -Wl,-h,libwine.so.$libwine_soversion"])])
963       echo '{ global: *; };' >conftest.map
964       WINE_TRY_CFLAGS([-fPIC -shared -Wl,--version-script=conftest.map],
965                       [LDSHARED="$LDSHARED -Wl,--version-script=\$(srcdir)/wine.map"])
966       rm -f conftest.map
968       WINE_TRY_CFLAGS([-fPIC -Wl,--export-dynamic],
969                       [LDEXECFLAGS="-Wl,--export-dynamic"])
971       WINE_TRY_CFLAGS([-fPIC -Wl,--rpath,\$ORIGIN/../lib],
972                       [LDRPATH_INSTALL="-Wl,--rpath,\\\$\$ORIGIN/\`\$(MAKEDEP) -R \$(bindir) \$(libdir)\`"
973                        LDRPATH_LOCAL="-Wl,--rpath,\\\$\$ORIGIN/\$(top_builddir)/libs/wine"],
974           [WINE_TRY_CFLAGS([-fPIC -Wl,-R,\$ORIGIN/../lib],
975                            [LDRPATH_INSTALL="-Wl,-R,\\\$\$ORIGIN/\`\$(MAKEDEP) -R \$(bindir) \$(libdir)\`"
976                             LDRPATH_LOCAL="-Wl,-R,\\\$\$ORIGIN/\$(top_builddir)/libs/wine"])])
978       WINE_TRY_CFLAGS([-Wl,--enable-new-dtags],
979                       [LDRPATH_INSTALL="$LDRPATH_INSTALL -Wl,--enable-new-dtags"])
981       case $host_cpu in
982         *i[[3456789]]86* | x86_64)
983           WINE_TRY_CFLAGS([-Wl,--section-start,.interp=0x7bf00400],
984                           [case $host_os in
985                            freebsd* | kfreebsd*-gnu) LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x60000400" ;;
986                            *) LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7bf00400" ;;
987                            esac
988                           ])
989           AC_PATH_PROG(PRELINK, prelink, false, [/sbin /usr/sbin $PATH])
990           if test "x$PRELINK" = xfalse
991           then
992               WINE_WARNING([prelink not found, base address of core dlls won't be set correctly.])
993           fi
994           ;;
995       esac
997     else
998       AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll, ac_cv_c_dll_unixware,
999           [WINE_TRY_SHLIB_FLAGS([-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic],
1000                                 ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")])
1001       if test "$ac_cv_c_dll_unixware" = "yes"
1002       then
1003         LDSHARED="\$(CC) -Wl,-G,-h,libwine.so.$libwine_soversion"
1004       fi
1005     fi
1006     libwine_targets="libwine.so libwine.so.$libwine_soversion libwine.so.$libwine_version"
1007     AC_SUBST(LIBWINE_RULES,["
1008 OBJS = \$(C_SRCS:.c=.o) \$(EXTRA_OBJS)
1010 all: libwine.so
1012 libwine.so.$libwine_version: \$(OBJS) \$(srcdir)/wine.map
1013         $LDSHARED \$(OBJS) \$(EXTRALIBS) \$(LDFLAGS) \$(LIBS) -o \$@
1015 libwine.so.$libwine_soversion: libwine.so.$libwine_version
1016         \$(RM) \$@ && \$(LN_S) libwine.so.$libwine_version \$@
1018 libwine.so: libwine.so.$libwine_soversion
1019         \$(RM) \$@ && \$(LN_S) libwine.so.$libwine_soversion \$@
1021 install install-lib:: libwine.so.$libwine_version
1022         \$(INSTALL_PROGRAM) libwine.so.$libwine_version \$(DESTDIR)\$(libdir)/libwine.so.$libwine_version
1023         cd \$(DESTDIR)\$(libdir) && \$(RM) libwine.so.$libwine_soversion && \$(LN_S) libwine.so.$libwine_version libwine.so.$libwine_soversion
1025 install install-dev::
1026         cd \$(DESTDIR)\$(libdir) && \$(RM) libwine.so && \$(LN_S) libwine.so.$libwine_version libwine.so
1028 uninstall::
1029         -cd \$(DESTDIR)\$(libdir) && \$(RM) libwine.so libwine.so.$libwine_soversion libwine.so.$libwine_version
1032     AS_VAR_APPEND([LOADER_RULES],["
1033 $wine_binary: main.o
1034         \$(CC) -o \$@ $LDEXECFLAGS main.o \$(LIBWINE) \$(LIBPORT) \$(EXTRALIBS) \$(LDFLAGS) \$(LDRPATH_LOCAL)
1036 wine-installed: main.o
1037         \$(CC) -o \$@ $LDEXECFLAGS main.o \$(LIBWINE) \$(LIBPORT) \$(EXTRALIBS) \$(LDFLAGS) \$(LDRPATH_INSTALL)
1039     ;;
1040 esac
1042 AS_VAR_APPEND([LIBWINE_RULES],["
1043 EXTRA_TARGETS = $libwine_targets
1046 enable_wineqtdecoder=${enable_wineqtdecoder:-no}
1047 enable_winemac_drv=${enable_winemac_drv:-no}
1049 dnl Check for cross compiler to build test programs
1050 AC_SUBST(CROSSTARGET,"")
1051 if test "$cross_compiling" = "no" -a "x$enable_tests" != xno -a "$LIBEXT" != "dll"
1052 then
1053     WINE_CHECK_MINGW_PROG(CROSSCC,gcc,false)
1054     if test "$CROSSCC" != "false"
1055     then
1056         ac_save_CC="$CC"
1057         CC="$CROSSCC"
1058         AC_MSG_CHECKING([whether $CROSSCC works])
1059         AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
1060                           [AC_MSG_RESULT([yes])
1061                            set x $CROSSCC
1062                            shift
1063                            while test $# -ge 1
1064                            do
1065                                case "$1" in
1066                                  *-gcc) CROSSTARGET=`expr "$1" : '\(.*\)-gcc'` ;;
1067                                esac
1068                                shift
1069                            done],
1070                           [AC_MSG_RESULT([no])])
1071         CC="$ac_save_CC"
1072     fi
1075 dnl **** Check for pthread ****
1077 if test "$ac_cv_header_pthread_h" = "yes"
1078 then
1079     AC_CHECK_FUNC(pthread_create,,[AC_CHECK_LIB(pthread,pthread_create,[AC_SUBST(PTHREAD_LIBS,"-lpthread")])])
1081 WINE_ERROR_WITH(pthread,[test "x$ac_cv_func_pthread_create" != xyes -a "x$PTHREAD_LIBS" = x],
1082 [pthread ${notice_platform}development files not found.
1083 Wine cannot support threads without libpthread.])
1085 dnl **** Check for X11 ****
1087 AC_PATH_XTRA
1089 if test "$have_x" = "yes"
1090 then
1091     ac_save_CPPFLAGS="$CPPFLAGS"
1092     CPPFLAGS="$CPPFLAGS $X_CFLAGS"
1094     WINE_CHECK_SONAME(X11,XCreateWindow,,,[$X_LIBS $X_EXTRA_LIBS])
1095     WINE_CHECK_SONAME(Xext,XextCreateExtension,[X_LIBS="$X_LIBS -lXext"],,[$X_LIBS -lX11 $X_EXTRA_LIBS])
1096     X_LIBS="$X_LIBS -lX11"
1098     dnl *** All of the following tests require X11/Xlib.h
1099     AC_CHECK_HEADERS([X11/Xlib.h \
1100                       X11/XKBlib.h \
1101                       X11/Xutil.h \
1102                       X11/Xcursor/Xcursor.h \
1103                       X11/extensions/shape.h \
1104                       X11/extensions/XInput.h \
1105                       X11/extensions/XInput2.h \
1106                       X11/extensions/XShm.h \
1107                       X11/extensions/Xcomposite.h \
1108                       X11/extensions/Xinerama.h \
1109                       X11/extensions/Xrandr.h \
1110                       X11/extensions/Xrender.h \
1111                       X11/extensions/xf86vmode.h \
1112                       X11/extensions/xf86vmproto.h],,,
1113 [#ifdef HAVE_X11_XLIB_H
1114 # include <X11/Xlib.h>
1115 #endif
1116 #ifdef HAVE_X11_XUTIL_H
1117 # include <X11/Xutil.h>
1118 #endif])
1120         dnl *** Check for X keyboard extension
1121         if test "$ac_cv_header_X11_XKBlib_h" = "yes"
1122         then
1123               AC_CHECK_LIB(X11, XkbQueryExtension,
1124               AC_DEFINE(HAVE_XKB, 1, [Define if you have the XKB extension]),,[$X_LIBS $X_EXTRA_LIBS])
1125         fi
1127         dnl *** Check for X cursor
1128         if test "$ac_cv_header_X11_Xcursor_Xcursor_h" = "yes"
1129         then
1130             WINE_CHECK_SONAME(Xcursor,XcursorImageLoadCursor,,,[$X_LIBS $X_EXTRA_LIBS])
1131         fi
1132         WINE_NOTICE_WITH(xcursor,[test "x$ac_cv_lib_soname_Xcursor" = "x"],
1133                          [libxcursor ${notice_platform}development files not found, the Xcursor extension won't be supported.])
1135         dnl *** Check for X input extension
1136         if test "$ac_cv_header_X11_extensions_XInput_h" = "yes"
1137         then
1138             WINE_CHECK_SONAME(Xi,XOpenDevice,,,[$X_LIBS $X_EXTRA_LIBS])
1139         fi
1140         WINE_NOTICE_WITH(xinput,[test "x$ac_cv_lib_soname_Xi" = "x"],
1141                          [libxi ${notice_platform}development files not found, the Xinput extension won't be supported.])
1143         dnl *** Check for X input 2 extension
1144         if test "x$ac_cv_lib_soname_Xi" != x
1145         then
1146             WINE_NOTICE_WITH(xinput2,[test "$ac_cv_header_X11_extensions_XInput2_h" != "yes"],
1147                              [XInput2 headers not found, the XInput 2 extension won't be supported.])
1148         fi
1150         dnl *** Check for X Shm extension
1151         if test "$ac_cv_header_X11_extensions_XShm_h" = "yes"
1152         then
1153               AC_CHECK_LIB(Xext, XShmQueryExtension,
1154               AC_DEFINE(HAVE_LIBXXSHM, 1, [Define if you have the X Shm extension]),,[$X_LIBS $X_EXTRA_LIBS])
1155         fi
1156         WINE_NOTICE_WITH(xshm,[test "$ac_cv_lib_Xext_XShmQueryExtension" != "yes"],
1157                          [XShm ${notice_platform}development files not found, X Shared Memory won't be supported.])
1159         dnl *** Check for X shape extension
1160         if test "$ac_cv_header_X11_extensions_shape_h" = "yes"
1161         then
1162               AC_CHECK_LIB(Xext,XShapeQueryExtension,
1163               AC_DEFINE(HAVE_LIBXSHAPE, 1, [Define if you have the X Shape extension]),,[$X_LIBS $X_EXTRA_LIBS])
1164         fi
1165         WINE_NOTICE_WITH(xshape,[test "$ac_cv_lib_Xext_XShapeQueryExtension" != "yes"],
1166                          [XShape ${notice_platform}development files not found, XShape won't be supported.])
1168         dnl *** Check for XFree86 VMODE extension
1169         if test "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes" -o "$ac_cv_header_X11_extensions_xf86vmproto_h" = "yes"
1170         then
1171             WINE_CHECK_SONAME(Xxf86vm,XF86VidModeQueryExtension,,,[$X_LIBS $X_EXTRA_LIBS])
1172         fi
1173         WINE_NOTICE_WITH(xxf86vm,[test "x$ac_cv_lib_soname_Xxf86vm" = "x"],
1174                          [libXxf86vm ${notice_platform}development files not found, XFree86 Vidmode won't be supported.])
1176         dnl *** Check for Transform functions in Xrender
1177         if test "$ac_cv_header_X11_extensions_Xrender_h" = "yes" -a "x$ac_cv_lib_soname_X11" != "x"
1178         then
1179             WINE_CHECK_SONAME(Xrender,XRenderQueryExtension,
1180               [AC_CHECK_LIB(Xrender,XRenderSetPictureTransform,
1181                 [AC_DEFINE(HAVE_XRENDERSETPICTURETRANSFORM, 1,
1182                  [Define if Xrender has the XRenderSetPictureTransform function])],,[$X_LIBS $X_EXTRA_LIBS])
1183                AC_CHECK_LIB(Xrender,XRenderCreateLinearGradient,
1184                 [AC_DEFINE(HAVE_XRENDERCREATELINEARGRADIENT, 1,
1185                  [Define if Xrender has the XRenderCreateLinearGradient function])],,[$X_LIBS $X_EXTRA_LIBS])],,[$X_LIBS $X_EXTRA_LIBS])
1187         fi
1188         WINE_WARNING_WITH(xrender,[test "x$ac_cv_lib_soname_Xrender" = "x"],
1189                          [libxrender ${notice_platform}development files not found, XRender won't be supported.])
1191         dnl *** Check for X RandR extension
1192         if test "$ac_cv_header_X11_extensions_Xrandr_h" = "yes" -a "x$ac_cv_lib_soname_Xrender" != "x"
1193         then
1194                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>
1195 #include <X11/extensions/Xrandr.h>]], [[static typeof(XRRSetScreenConfigAndRate) * func; if (func) return 0;]])],
1196                   [WINE_CHECK_SONAME(Xrandr,XRRQueryExtension,
1197                     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>
1198 #include <X11/extensions/Xrandr.h>]], [[static typeof(XRRGetScreenResources) *f; if (f) return 0;]])],
1199                       [AC_DEFINE(HAVE_XRRGETSCREENRESOURCES, 1,
1200                         [Define if Xrandr has the XRRGetScreenResources function])])],,[$X_LIBS $X_EXTRA_LIBS])])
1201         fi
1202         WINE_NOTICE_WITH(xrandr,[test "x$ac_cv_lib_soname_Xrandr" = "x"],
1203                          [libxrandr ${notice_platform}development files not found, XRandr won't be supported.])
1205         dnl *** Check for Xinerama extension
1206         if test "$ac_cv_header_X11_extensions_Xinerama_h" = "yes"
1207         then
1208                 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>
1209 #include <X11/extensions/Xinerama.h>]], [[static typeof(XineramaQueryScreens) * func; if (func) return 0;]])],
1210                   [WINE_CHECK_SONAME(Xinerama,XineramaQueryScreens,,,[$X_LIBS $X_EXTRA_LIBS])])
1211         fi
1212         WINE_NOTICE_WITH(xinerama,[test "x$ac_cv_lib_soname_Xinerama" = "x"],
1213                          [libxinerama ${notice_platform}development files not found, multi-monitor setups won't be supported.])
1215         dnl *** Check for X Composite extension
1216         if test "$ac_cv_header_X11_extensions_Xcomposite_h" = "yes"
1217         then
1218             WINE_CHECK_SONAME(Xcomposite,XCompositeRedirectWindow,,,[$X_LIBS $X_EXTRA_LIBS])
1219         fi
1220         WINE_NOTICE_WITH(xcomposite,[test "x$ac_cv_lib_soname_Xcomposite" = "x"],
1221                          [libxcomposite ${notice_platform}development files not found, Xcomposite won't be supported.])
1223         dnl *** Check for XICCallback struct
1224         AC_CHECK_MEMBERS([XICCallback.callback, XEvent.xcookie],,,
1225 [#ifdef HAVE_X11_XLIB_H
1226 #include <X11/Xlib.h>
1227 #endif])
1229     dnl *** End of X11/Xlib.h check
1231     dnl Check for the presence of OpenGL
1232     opengl_msg=""
1233     if test "x$with_opengl" != "xno"
1234     then
1235         WINE_CHECK_SONAME(GL,glXCreateContext,
1236                      [OPENGL_LIBS="-lGL"],
1237                      [WINE_CHECK_SONAME(GL,glXCreateContext,
1238                             [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"],
1239                             [if test -f /usr/X11R6/lib/libGL.a
1240                             then
1241                                 opengl_msg="/usr/X11R6/lib/libGL.a is present on your system.
1242 This probably prevents linking to OpenGL. Try deleting the file and restarting configure."
1243                             else
1244                                 opengl_msg="No OpenGL library found on this system."
1245                             fi],
1246                             $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)],
1247                      $X_LIBS -lm $X_EXTRA_LIBS)
1248         if test "x$with_glu" != "xno"
1249         then
1250             AC_CHECK_LIB(GLU,gluLookAt,[:],,[$OPENGL_LIBS $X_LIBS -lm $X_EXTRA_LIBS])
1251             WINE_NOTICE_WITH(glu,[test "x$ac_cv_lib_GLU_gluLookAt" != xyes],
1252                              [libGLU ${notice_platform}development files not found, GLU won't be supported.])
1253         fi
1255         if test "x$with_osmesa" != "xno"
1256         then
1257             WINE_CHECK_SONAME(OSMesa,glAccum,,,[$X_LIBS -lm $X_EXTRA_LIBS])
1258             WINE_NOTICE_WITH(osmesa,[test "x$ac_cv_lib_soname_OSMesa" = "x"],
1259                              [libOSMesa ${notice_platform}development files not found (or too old), OpenGL rendering in bitmaps won't be supported.])
1260         fi
1261     fi
1262     WINE_WARNING_WITH(opengl,[test -n "$opengl_msg"],[$opengl_msg
1263 OpenGL and Direct3D won't be supported.])
1265     CPPFLAGS="$ac_save_CPPFLAGS"
1266 else
1267     X_CFLAGS=""
1268     X_LIBS=""
1269     enable_winex11_drv=${enable_winex11_drv:-no}
1271 WINE_ERROR_WITH(x,[test "x$X_LIBS" = "x"],[X ${notice_platform}development files not found. Wine will be built
1272 without X support, which probably isn't what you want. You will need
1273 to install ${notice_platform}development packages of Xlib/Xfree86 at the very least.])
1275 test "x$ac_cv_lib_GLU_gluLookAt" != xyes && enable_glu32=${enable_glu32:-no}
1277 dnl **** Check for OpenCL ****
1278 if test "$ac_cv_header_CL_cl_h" = "yes"
1279 then
1280     AC_CHECK_LIB(OpenCL,clGetPlatformInfo,[AC_SUBST(OPENCL_LIBS,["-lOpenCL"])])
1282 WINE_NOTICE_WITH(opencl,[test "x$ac_cv_lib_OpenCL_clGetPlatformInfo" != xyes],
1283                  [OpenCL ${notice_platform}development files not found, OpenCL won't be supported.])
1284 test "x$ac_cv_lib_OpenCL_clGetPlatformInfo" != xyes && enable_opencl=${enable_opencl:-no}
1286 dnl **** Check for libpcap ****
1287 if test "$ac_cv_header_pcap_pcap_h" = "yes"
1288 then
1289     AC_CHECK_LIB(pcap,pcap_create,[AC_SUBST(LIBPCAP,["-lpcap"])])
1291 WINE_NOTICE_WITH(pcap,[test "x$ac_cv_lib_pcap_pcap_create" != xyes],
1292                  [pcap ${notice_platform}development files not found, wpcap won't be supported.])
1293 test "x$ac_cv_lib_pcap_pcap_create" != xyes && enable_wpcap=${enable_wpcap:-no}
1295 dnl **** Check for libxml2 ****
1297 if test "x$with_xml" != "xno"
1298 then
1299     WINE_PACKAGE_FLAGS(XML2,[libxml-2.0],[-lxml2],
1300                        [`xml2-config --cflags 2>/dev/null`],[`xml2-config --libs 2>/dev/null`],
1301         [AC_CHECK_HEADERS([libxml/parser.h libxml/xmlsave.h libxml/SAX2.h])
1302         if test "$ac_cv_header_libxml_parser_h" = "yes" -a "$ac_cv_header_libxml_xmlsave_h" = "yes" -a "$ac_cv_header_libxml_SAX2_h" = "yes"
1303         then
1304             AC_CHECK_LIB(xml2, xmlParseMemory,
1305                 [AC_DEFINE(HAVE_LIBXML2, 1, [Define if you have the libxml2 library])],[XML2_LIBS=""],[$XML2_LIBS])
1306             AC_CHECK_LIB(xml2, xmlReadMemory,
1307                 [AC_DEFINE(HAVE_XMLREADMEMORY,1,[Define if libxml2 has the xmlReadMemory function])],,[$XML2_LIBS])
1308             AC_CHECK_LIB(xml2, xmlNewDocPI,
1309                 [AC_DEFINE(HAVE_XMLNEWDOCPI,1,[Define if libxml2 has the xmlNewDocPI function])],,[$XML2_LIBS])
1310             AC_CHECK_LIB(xml2, xmlSchemaSetParserStructuredErrors,
1311                 [AC_DEFINE(HAVE_XMLSCHEMASSETPARSERSTRUCTUREDERRORS,1,[Define if libxml2 has the xmlSchemaSetParserStructuredErrors function])],,[$XML2_LIBS])
1312             AC_CHECK_LIB(xml2, xmlSchemaSetValidStructuredErrors,
1313                 [AC_DEFINE(HAVE_XMLSCHEMASSETVALIDSTRUCTUREDERRORS,1,[Define if libxml2 has the xmlSchemaSetValidStructuredErrors function])],,[$XML2_LIBS])
1314             AC_CHECK_LIB(xml2, xmlFirstElementChild,
1315                 [AC_DEFINE(HAVE_XMLFIRSTELEMENTCHILD,1,[Define if libxml2 has the xmlFirstElementChild function])],,[$XML2_LIBS])
1316             AC_CHECK_TYPE([xmlDocProperties],
1317                 [AC_DEFINE(HAVE_XMLDOC_PROPERTIES,1,[Define if libxml2 has the xmlDocProperties enum])],,[[#include <libxml/tree.h>]])
1318         else
1319             XML2_CFLAGS=""
1320             XML2_LIBS=""
1321         fi])
1323 WINE_WARNING_WITH(xml,[test "$ac_cv_lib_xml2_xmlParseMemory" != "yes"],
1324                  [libxml2 ${notice_platform}development files not found (or too old), XML won't be supported.])
1326 if test "x$with_xslt" != "xno"
1327 then
1328     WINE_PACKAGE_FLAGS(XSLT,[libxslt],[-lxml2],
1329                        [`xslt-config --cflags 2>/dev/null`],[`xslt-config --libs 2>/dev/null`],
1330         [AC_CHECK_HEADERS([libxslt/pattern.h libxslt/transform.h],,,
1331         [#ifdef HAVE_LIBXSLT_PATTERN_H
1332 # include <libxslt/pattern.h>
1333 #endif])
1334         if test "$ac_cv_header_libxslt_transform_h" = "yes"
1335         then
1336             WINE_CHECK_SONAME(xslt,xsltCompilePattern,,,[$XSLT_LIBS])
1337         else
1338             XSLT_CFLAGS=""
1339         fi])
1341 WINE_WARNING_WITH(xslt,[test "x$ac_cv_lib_soname_xslt" = "x"],
1342                  [libxslt ${notice_platform}development files not found, xslt won't be supported.])
1344 dnl **** Check for libdbus ****
1345 if test "x$with_dbus" != "xno"
1346 then
1347     WINE_PACKAGE_FLAGS(DBUS,[dbus-1],,,,
1348         [AC_CHECK_HEADER([dbus/dbus.h],
1349             [WINE_CHECK_SONAME(dbus-1, dbus_connection_close,,[DBUS_CFLAGS=""],[$DBUS_LIBS])],
1350             [DBUS_CFLAGS=""])])
1352 WINE_NOTICE_WITH(dbus,[test "x$ac_cv_lib_soname_dbus_1" = "x" -a \
1353                             "x$ac_cv_header_DiskArbitration_DiskArbitration_h" != "xyes"],
1354                  [libdbus ${notice_platform}development files not found, no dynamic device support.])
1356 dnl **** Check for libhal ****
1357 if test "x$with_hal" != "xno" -a "x$ac_cv_lib_soname_dbus_1" != x
1358 then
1359     WINE_PACKAGE_FLAGS(HAL,[hal],[-ldbus-1],,,
1360         [AC_CHECK_HEADER([hal/libhal.h],
1361             [WINE_CHECK_SONAME(hal, libhal_ctx_new,,[HAL_CFLAGS=""],[$HAL_LIBS])],
1362             [HAL_CFLAGS=""])])
1363     WINE_NOTICE_WITH(hal,[test "x$ac_cv_lib_soname_hal" = "x" -a \
1364                                "x$ac_cv_header_DiskArbitration_DiskArbitration_h" != "xyes"],
1365                      [libhal ${notice_platform}development files not found, no legacy dynamic device support.])
1368 dnl **** Check for libgnutls ****
1369 if test "x$with_gnutls" != "xno"
1370 then
1371     WINE_PACKAGE_FLAGS(GNUTLS,[gnutls],,,,
1372         [AC_CHECK_HEADER(gnutls/gnutls.h,
1373             [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <gnutls/gnutls.h>
1374 #include <gnutls/crypto.h>]], [[static typeof(gnutls_mac_get_key_size) *func; if (func) return 0;]])],
1375                 [WINE_CHECK_SONAME(gnutls,gnutls_global_init,,[GNUTLS_CFLAGS=""],[$GNUTLS_LIBS],[[libgnutls\\(-deb0\\)\\{0,1\\}]])])],
1376             [GNUTLS_CFLAGS=""])])
1378 WINE_WARNING_WITH(gnutls,[test "x$ac_cv_lib_soname_gnutls" = "x"],
1379                  [libgnutls ${notice_platform}development files not found, no schannel support.])
1381 dnl **** Check which curses lib to use ***
1382 CURSES_LIBS=""
1383 if test "$ac_cv_header_ncurses_h" = "yes"
1384 then
1385     WINE_CHECK_SONAME(ncurses,waddch,[CURSES_LIBS="-lncurses"],,,[[libncursesw\\{0,1\\}]])
1386 elif test "$ac_cv_header_curses_h" = "yes"
1387 then
1388     WINE_CHECK_SONAME(curses,waddch,[CURSES_LIBS="-lcurses"])
1390 ac_save_LIBS="$LIBS"
1391 LIBS="$LIBS $CURSES_LIBS"
1392 AC_CHECK_FUNCS(mousemask)
1393 LIBS="$ac_save_LIBS"
1394 WINE_NOTICE_WITH(curses,[test "x$ac_cv_lib_soname_curses$ac_cv_lib_soname_ncurses" = "x"],
1395                  [lib(n)curses ${notice_platform}development files not found, curses won't be supported.])
1397 dnl **** Check for SANE ****
1398 if test "x$with_sane" != "xno"
1399 then
1400     WINE_PACKAGE_FLAGS(SANE,[libsane],,[`sane-config --cflags 2>/dev/null`],[`sane-config --ldflags 2>/dev/null`],
1401         [AC_CHECK_HEADER(sane/sane.h,
1402             [WINE_CHECK_SONAME(sane,sane_init,,[SANE_CFLAGS=""],[$SANE_LIBS])],
1403             [SANE_CFLAGS=""])])
1405 WINE_NOTICE_WITH(sane,[test "x$ac_cv_lib_soname_sane" = "x"],
1406                  [libsane ${notice_platform}development files not found, scanners won't be supported.])
1408 dnl **** Check for libv4l1 ****
1409 if test "x$with_v4l" != "xno"
1410 then
1411     WINE_CHECK_SONAME(v4l1,v4l1_open,,,)
1413 WINE_NOTICE_WITH(v4l,[test "x$ac_cv_lib_soname_v4l1" = "x"],
1414                  [libv4l ${notice_platform}development files not found.])
1416 dnl **** Check for libgphoto2 ****
1417 if test "x$with_gphoto" != "xno"
1418 then
1419     WINE_PACKAGE_FLAGS(GPHOTO2,[libgphoto2],[-lgphoto2],
1420                        [`gphoto2-config --cflags 2>/dev/null`],[`gphoto2-config --libs 2>/dev/null`],
1421         [AC_CHECK_HEADER(gphoto2-camera.h,
1422                         [AC_CHECK_LIB(gphoto2,gp_camera_new,
1423                                       [AC_DEFINE(HAVE_GPHOTO2, 1, [Define if we have the libgphoto2 development environment])],
1424                                       [GPHOTO2_LIBS=""; GPHOTO2_CFLAGS=""],
1425                                       [$GPHOTO2_LIBS])],
1426                         [GPHOTO2_LIBS=""; GPHOTO2_CFLAGS=""])])
1427     WINE_PACKAGE_FLAGS(GPHOTO2_PORT,[libgphoto2_port],[-lgphoto2_port],
1428                        [`gphoto2-port-config --cflags 2>/dev/null`],
1429                        [`gphoto2-port-config --libs 2>/dev/null`],
1430         [AC_CHECK_HEADER(gphoto2-port.h,
1431                         [AC_CHECK_LIB(gphoto2_port,gp_port_info_list_new,
1432                                       [AC_DEFINE(HAVE_GPHOTO2_PORT, 1, [Define if we have the libgphoto2_port development environment])],
1433                                       [GPHOTO2_PORT_LIBS=""; GPHOTO2_PORT_CFLAGS=""],
1434                                       [$GPHOTO2_PORT_LIBS])],
1435                         [GPHOTO2_PORT_LIBS=""; GPHOTO2_PORT_CFLAGS=""])])
1437 WINE_NOTICE_WITH(gphoto,[test "$ac_cv_lib_gphoto2_gp_camera_new" != "yes"],
1438                  [libgphoto2 ${notice_platform}development files not found, digital cameras won't be supported.])
1439 WINE_NOTICE_WITH(gphoto,[test "$ac_cv_lib_gphoto2_port_gp_port_info_list_new" != "yes"],
1440                  [libgphoto2_port ${notice_platform}development files not found, digital cameras won't be auto-detected.])
1443 dnl **** Check for resolver library ***
1444 if test "$ac_cv_header_resolv_h" = "yes"
1445 then
1446     AC_CACHE_CHECK([for resolver library], ac_cv_have_resolv,
1447       [ac_save_LIBS="$LIBS"
1448        for lib in '' -lresolv
1449        do
1450          LIBS="$lib $ac_save_LIBS"
1451          AC_LINK_IFELSE([AC_LANG_PROGRAM([[#ifdef HAVE_NETINET_IN_H
1452 #include <netinet/in.h>
1453 #endif
1454 #include <resolv.h>]],[[if (!(_res.options & RES_INIT)) res_init(); res_query("foo",ns_c_in,0,0,0)]])],
1455            [ac_cv_have_resolv=${lib:-"none required"}],[ac_cv_have_resolv="not found"])
1456          test "x$ac_cv_have_resolv" = "xnot found" || break
1457        done
1458        LIBS="$ac_save_LIBS"])
1460     case "$ac_cv_have_resolv" in
1461       "not found") ;;
1462       "none required")
1463         AC_DEFINE(HAVE_RESOLV, 1, [Define if you have the resolver library and header]) ;;
1464       *)
1465         AC_DEFINE(HAVE_RESOLV, 1)
1466         AC_SUBST(RESOLV_LIBS,$ac_cv_have_resolv) ;;
1467     esac
1470 dnl **** Check for LittleCMS ***
1471 if test "x$with_cms" != "xno"
1472 then
1473     WINE_PACKAGE_FLAGS(LCMS2,[lcms2],[-llcms2],,,
1474         [AC_CHECK_HEADERS([lcms2.h])
1475         if test "$ac_cv_header_lcms2_h" = "yes"
1476         then
1477             AC_CHECK_LIB(lcms2, cmsOpenProfileFromFile,
1478                 [AC_DEFINE(HAVE_LCMS2, 1, [Define if you have the LittleCMS development environment])],[LCMS2_LIBS=""],[$LCMS2_LIBS])
1479         else
1480             LCMS2_CFLAGS=""
1481             LCMS2_LIBS=""
1482         fi])
1484 WINE_NOTICE_WITH(cms,[test "$ac_cv_lib_lcms2_cmsOpenProfileFromFile" != "yes"],
1485                  [liblcms2 ${notice_platform}development files not found, Color Management won't be supported.])
1487 dnl **** Check for FreeType 2 ****
1488 if test "x$with_freetype" != "xno"
1489 then
1490     WINE_PACKAGE_FLAGS(FREETYPE,[freetype2],[-lfreetype],
1491                        [`(freetype-config --cflags || freetype2-config --cflags) 2>/dev/null`],
1492                        [`(freetype-config --libs || freetype2-config --libs) 2>/dev/null`],
1493         [AC_CHECK_HEADERS([ft2build.h])
1494         if test "$ac_cv_header_ft2build_h" = "yes"
1495         then
1496             WINE_CHECK_SONAME(freetype,FT_Init_FreeType,
1497                 [AC_DEFINE(HAVE_FREETYPE, 1, [Define if FreeType 2 is installed])
1498                  AC_CHECK_TYPES(FT_TrueTypeEngineType,,,[#include <ft2build.h>
1499 #include FT_MODULE_H])],
1500                 [FREETYPE_LIBS=""],[$FREETYPE_LIBS])
1501         else
1502             FREETYPE_CFLAGS=""
1503             FREETYPE_LIBS=""
1504         fi])
1506 WINE_ERROR_WITH(freetype,[test "x$ac_cv_lib_soname_freetype" = x],
1507                 [FreeType ${notice_platform}development files not found. Fonts will not be built.])
1508 test "x$ac_cv_lib_soname_freetype" = x && enable_fonts=${enable_fonts:-no}
1510 dnl **** Check for parport (currently Linux only) ****
1511 AC_CACHE_CHECK([for parport header/ppdev.h], ac_cv_c_ppdev,
1512  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifdef HAVE_SYS_IOCTL_H
1513 # include <sys/ioctl.h>
1514 #endif
1515 #include <linux/ppdev.h>]], [[ioctl (1,PPCLAIM,0)]])],
1516     [ac_cv_c_ppdev="yes"],[ac_cv_c_ppdev="no"]))
1517 if test "$ac_cv_c_ppdev" = "yes"
1518 then
1519     AC_DEFINE(HAVE_PPDEV, 1, [Define if we can use ppdev.h for parallel port access])
1522 dnl **** Check for pthread functions ****
1523 WINE_CHECK_LIB_FUNCS(\
1524         pthread_attr_get_np \
1525         pthread_getattr_np \
1526         pthread_getthreadid_np \
1527         pthread_get_stackaddr_np \
1528         pthread_get_stacksize_np,
1529         [$PTHREAD_LIBS])
1531 dnl **** Check for zlib ****
1532 if test "$ac_cv_header_zlib_h" = "yes"
1533 then
1534     AC_CHECK_LIB(z,inflate,[AC_DEFINE(HAVE_ZLIB,1,[Define to 1 if you have the `z' library (-lz).])
1535                             AC_SUBST(Z_LIBS,"-lz")])
1537 WINE_NOTICE_WITH(zlib,[test "x$Z_LIBS" = "x"],[libz ${notice_platform}development files not found, data compression won't be supported.])
1539 dnl **** Check for gettextpo ****
1540 if test "x$enable_tools" != xno
1541 then
1542     if test "$ac_cv_header_gettext_po_h" = "yes"
1543     then
1544         AC_CHECK_LIB(gettextpo,po_message_msgctxt,
1545                      [AC_DEFINE(HAVE_LIBGETTEXTPO,1,[Define to 1 if you have the `gettextpo' library (-lgettextpo).])
1546                       AC_SUBST(GETTEXTPO_LIBS,"-lgettextpo")])
1547     fi
1548     test "x$with_gettextpo" != xyes || WINE_NOTICE_WITH(gettextpo,[test "x$GETTEXTPO_LIBS" = "x"],
1549           [GetText ${notice_platform}development files not found (or too old), po files can't be rebuilt.])
1552 dnl **** Check for gstreamer ****
1553 if test "x$with_gstreamer" != "xno"
1554 then
1555     WINE_PACKAGE_FLAGS(GSTREAMER,[gstreamer-app-0.10],,,,
1556         [ac_gst_incl=""
1557         for i in $GSTREAMER_CFLAGS
1558         do
1559             case "$i" in
1560                 -I*) ac_gst_incl="$ac_gst_incl $i";;
1561             esac
1562         done
1563         GSTREAMER_CFLAGS=$ac_gst_incl
1564         CPPFLAGS="$ac_save_CPPFLAGS $GSTREAMER_CFLAGS"
1565         AC_CHECK_HEADER([gst/gstpad.h],
1566             [AC_CHECK_HEADER([gst/app/gstappsink.h],
1567                  [AC_MSG_CHECKING([whether gint64 defined by gst/app/gstappsink.h is indeed 64-bit])
1568                   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <gst/app/gstappsink.h>]],
1569                                                      [[static int a[sizeof(gint64) > 4 ? 1 : -1]; if (a[0]) return 0;]])],
1570                     [AC_MSG_RESULT([yes])
1571                      AC_CHECK_LIB(gstreamer-0.10,gst_pad_get_caps_reffed,
1572                        [AC_CHECK_LIB(gstapp-0.10,gst_app_buffer_new,[:],,[$GSTREAMER_LIBS])])],
1573                     [AC_MSG_RESULT([no])])])],
1574             [GSTREAMER_CFLAGS=""])])
1576 WINE_NOTICE_WITH(gstreamer,[test "x$ac_cv_lib_gstapp_0_10_gst_app_buffer_new" != xyes -a "x$ac_cv_header_QuickTime_ImageCompression_h" != xyes],
1577                  [gstreamer-0.10 base plugins ${notice_platform}development files not found, gstreamer support disabled])
1578 test "x$ac_cv_lib_gstapp_0_10_gst_app_buffer_new" = xyes || enable_winegstreamer=${enable_winegstreamer:-no}
1580 dnl **** Check for ALSA 1.x ****
1581 AC_SUBST(ALSA_LIBS,"")
1582 if test "$ac_cv_header_sys_asoundlib_h" = "yes" -o "$ac_cv_header_alsa_asoundlib_h" = "yes"
1583 then
1584     AC_CHECK_LIB(asound,snd_pcm_hw_params_get_access_mask,
1585         [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifdef HAVE_ALSA_ASOUNDLIB_H
1586 #include <alsa/asoundlib.h>
1587 #elif defined(HAVE_SYS_ASOUNDLIB_H)
1588 #include <sys/asoundlib.h>
1589 #endif]], [[snd_pcm_hw_params_get_access_mask(NULL, NULL)]])],
1590                         [ALSA_LIBS="-lasound"])])
1593 dnl **** Check for OSSv4 ****
1594 if test "x$with_oss" != xno
1595 then
1596     ac_save_CPPFLAGS="$CPPFLAGS"
1597     if test -f /etc/oss.conf
1598     then
1599         . /etc/oss.conf
1600     fi
1601     ac_oss_incl="-I${OSSLIBDIR:-/usr/lib/oss}/include"
1602     CPPFLAGS="$CPPFLAGS $ac_oss_incl"
1603     AC_CHECK_HEADER([sys/soundcard.h],
1604         [AC_CHECK_MEMBERS([oss_sysinfo.numaudioengines],
1605                           [AC_SUBST(OSS4_CFLAGS,"$ac_oss_incl")],,
1606                           [#include <sys/soundcard.h>])])
1607     CPPFLAGS="$ac_save_CPPFLAGS"
1608     if test "x$ac_cv_member_oss_sysinfo_numaudioengines" != xyes
1609     then
1610         WINE_NOTICE([OSS sound system found but too old (OSSv4 needed), OSS won't be supported.])
1611     fi
1614 dnl **** Check for capi4linux ****
1615 if test "x$with_capi" != "xno"
1616 then
1617     WINE_PACKAGE_FLAGS(CAPI20,[capi20],,,,
1618      dnl Check for broken kernel header that doesn't define __user
1619     [AC_CHECK_HEADERS([capi20.h linux/capi.h],,,[#define __user])
1620     if test "$ac_cv_header_capi20_h" = "yes" -a "$ac_cv_header_linux_capi_h" = "yes"
1621     then
1622         WINE_CHECK_SONAME(capi20,capi20_register,,,[$CAPI20_LIBS])
1623     fi])
1625 WINE_NOTICE_WITH(capi,[test "x$ac_cv_lib_soname_capi20" = "x"],
1626                  [libcapi20 ${notice_platform}development files not found, ISDN won't be supported.])
1628 dnl **** Check for cups ****
1629 AC_SUBST(CUPS_CFLAGS,"")
1630 if test "x$with_cups" != "xno"
1631 then
1632     ac_save_CPPFLAGS="$CPPFLAGS"
1633     ac_cups_cflags=`cups-config --cflags 2>/dev/null`
1634     ac_cups_libs=`cups-config --ldflags 2>/dev/null`
1635     CPPFLAGS="$CPPFLAGS $ac_cups_cflags"
1636     AC_CHECK_HEADERS(cups/cups.h,
1637             [WINE_CHECK_SONAME(cups,cupsGetDefault,
1638                        [CUPS_CFLAGS="$ac_cups_cflags"],,
1639                        [$ac_cups_libs])])
1640     CPPFLAGS="$ac_save_CPPFLAGS"
1642 WINE_NOTICE_WITH(cups,[test "x$ac_cv_lib_soname_cups" = "x"],
1643                  [libcups ${notice_platform}development files not found, CUPS won't be supported.])
1645 dnl **** Check for fontconfig ****
1646 if test "x$with_fontconfig" != "xno"
1647 then
1648     WINE_PACKAGE_FLAGS(FONTCONFIG,[fontconfig],,[$X_CFLAGS],[$X_LIBS],
1649         [AC_CHECK_HEADERS([fontconfig/fontconfig.h])
1650         if test "$ac_cv_header_fontconfig_fontconfig_h" = "yes"
1651         then
1652             WINE_CHECK_SONAME(fontconfig,FcInit,,[FONTCONFIG_CFLAGS=""],[$FONTCONFIG_LIBS])
1653         else
1654             FONTCONFIG_CFLAGS=""
1655         fi])
1657 WINE_NOTICE_WITH(fontconfig,[test "x$ac_cv_lib_soname_fontconfig" = "x"],
1658                  [fontconfig ${notice_platform}development files not found, fontconfig won't be supported.])
1660 dnl **** Check for gsm codec ****
1661 if test "$ac_cv_header_gsm_h" = "yes" -o "$ac_cv_header_gsm_gsm_h" = "yes"
1662 then
1663     WINE_CHECK_SONAME(gsm,gsm_create)
1665 WINE_NOTICE_WITH(gsm,[test "x$ac_cv_lib_soname_gsm" = "x"],
1666                  [libgsm ${notice_platform}development files not found, gsm 06.10 codec won't be supported.])
1668 dnl **** Check for libjpeg ****
1669 if test "x$with_jpeg" != "xno"
1670 then
1671     WINE_PACKAGE_FLAGS(JPEG,[libjpeg],,,,
1672         [AC_CHECK_HEADERS([jpeglib.h])
1673         if test "$ac_cv_header_jpeglib_h" = "yes"
1674         then
1675             WINE_CHECK_SONAME(jpeg,jpeg_start_decompress,,[JPEG_CFLAGS=""],[$JPEG_LIBS])
1676         else
1677             JPEG_CFLAGS=""
1678         fi])
1680 WINE_WARNING_WITH(jpeg,[test "x$ac_cv_lib_soname_jpeg" = "x"],
1681                  [libjpeg ${notice_platform}development files not found, JPEG won't be supported.])
1683 dnl **** Check for libpng ****
1684 if test "x$with_png" != "xno"
1685 then
1686     WINE_PACKAGE_FLAGS(PNG,[libpng],,[$X_CFLAGS],[$X_LIBS],
1687         [AC_CHECK_HEADERS([png.h])
1688         if test "$ac_cv_header_png_h" = "yes"
1689         then
1690             WINE_CHECK_SONAME(png,png_create_read_struct,
1691                 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <png.h>]],[[typeof(png_set_expand_gray_1_2_4_to_8) *p]])],
1692                     [AC_DEFINE(HAVE_PNG_SET_EXPAND_GRAY_1_2_4_TO_8,1,[Define to 1 if libpng has the png_set_expand_gray_1_2_4_to_8 function.])])],
1693                 [PNG_CFLAGS=""],[$PNG_LIBS -lm -lz],[[libpng[[0-9]]*]])
1694         else
1695             PNG_CFLAGS=""
1696         fi])
1698 WINE_WARNING_WITH(png,[test "x$ac_cv_lib_soname_png" = "x"],
1699                  [libpng ${notice_platform}development files not found, PNG won't be supported.])
1701 dnl **** Check for libtiff ****
1702 if test "x$with_tiff" != "xno"
1703 then
1704     WINE_PACKAGE_FLAGS(TIFF,[libtiff],,,,
1705         [AC_CHECK_HEADERS([tiffio.h])
1706         if test "$ac_cv_header_tiffio_h" = "yes"
1707         then
1708             WINE_CHECK_SONAME(tiff,TIFFClientOpen,,,[$TIFF_LIBS])
1709         fi])
1711 WINE_NOTICE_WITH(tiff,[test "x$ac_cv_lib_soname_tiff" = "x"],
1712                  [libtiff ${notice_platform}development files not found, TIFF won't be supported.])
1714 dnl **** Check for mpg123 ****
1715 if test "x$with_mpg123" != "xno"
1716 then
1717     WINE_PACKAGE_FLAGS(MPG123,[libmpg123],[-lmpg123],,,
1718         [AC_CHECK_HEADERS([mpg123.h])
1719         if test "$ac_cv_header_mpg123_h" = "yes"
1720         then
1721             AC_CHECK_LIB(mpg123,mpg123_feed,[:],[MPG123_LIBS=""],[$MPG123_LIBS])
1722         else
1723             MPG123_CFLAGS=""
1724             MPG123_LIBS=""
1725         fi])
1727 WINE_NOTICE_WITH(mpg123,[test "x$ac_cv_lib_mpg123_mpg123_feed" != xyes -a x"$ac_cv_header_CoreAudio_CoreAudio_h" != xyes],
1728                  [libmpg123 ${notice_platform}development files not found (or too old), mp3 codec won't be supported.])
1729 test "x$ac_cv_lib_mpg123_mpg123_feed" = xyes -o "x$ac_cv_header_AudioToolbox_AudioConverter_h" = xyes || enable_winemp3_acm=${enable_winemp3_acm:-no}
1731 dnl **** Check for OpenAL 1.1 ****
1732 if test "$ac_cv_header_AL_al_h" = "yes"
1733 then
1734     WINE_CHECK_SONAME(openal,alGetSource3i,[AC_SUBST(OPENAL_LIBS,"-lopenal")
1735                       ac_cv_lib_openal=yes
1736                       AC_DEFINE_UNQUOTED(HAVE_OPENAL,1,[Define to 1 if OpenAL is available])],,)
1738 WINE_NOTICE_WITH(openal,[test "x$ac_cv_lib_openal" != xyes],
1739                  [libopenal ${notice_platform}development files not found (or too old), OpenAL won't be supported.])
1740 test "x$ac_cv_lib_openal" = xyes || enable_openal32=${enable_openal32:-no}
1742 dnl **** Check for libkstat ****
1743 if test "$ac_cv_header_kstat_h" = "yes"
1744 then
1745     AC_CHECK_LIB(kstat,kstat_open,
1746                  [AC_DEFINE(HAVE_LIBKSTAT, 1, [Define to 1 if you have the `kstat' library (-lkstat).])
1747                   AC_SUBST(KSTAT_LIBS,"-lkstat")])
1750 dnl **** Check for libprocstat ****
1751 if test "$ac_cv_header_libprocstat_h" = "yes"
1752 then
1753     AC_CHECK_LIB(procstat,procstat_open_sysctl,
1754                  [AC_DEFINE(HAVE_LIBPROCSTAT, 1, [Define to 1 if you have the `procstat' library (-lprocstat).])
1755                   AC_SUBST(PROCSTAT_LIBS,"-lprocstat")])
1758 dnl **** Check for libodbc ****
1759 WINE_CHECK_SONAME(odbc,SQLConnect,,[AC_DEFINE_UNQUOTED(SONAME_LIBODBC,["libodbc.$LIBEXT"])])
1761 dnl **** Check for libnetapi ****
1762 if test "x$with_netapi" != "xno"
1763 then
1764     WINE_CHECK_SONAME(netapi,libnetapi_init,,[AC_DEFINE_UNQUOTED(SONAME_LIBNETAPI,["libnetapi.$LIBEXT"])])
1767 dnl **** Disable unsupported winmm drivers ****
1768 test -n "$ALSA_LIBS" || enable_winealsa_drv=${enable_winealsa_drv:-no}
1769 test -n "$COREAUDIO_LIBS" || enable_winecoreaudio_drv=${enable_winecoreaudio_drv:-no}
1770 test "x$ac_cv_member_oss_sysinfo_numaudioengines" = xyes || enable_wineoss_drv=${enable_wineoss_drv:-no}
1771 test "$ac_cv_header_linux_joystick_h" = "yes" -o "$ac_cv_header_IOKit_hid_IOHIDLib_h" = "yes" || enable_winejoystick_drv=${enable_winejoystick_drv:-no}
1773 dnl **** Check for any sound system ****
1774 if test "x$ALSA_LIBS$COREAUDIO_LIBS" = "x" -a \
1775         "x$ac_cv_member_oss_sysinfo_numaudioengines" != xyes -a \
1776         "x$with_alsa$with_coreaudio$with_oss" != xnonono
1777 then
1778     WINE_WARNING([No sound system was found. Windows applications will be silent.])
1781 dnl **** Check for gcc specific options ****
1783 AC_SUBST(EXTRACFLAGS,"")
1784 if test "x${GCC}" = "xyes"
1785 then
1786   EXTRACFLAGS="-Wall -pipe"
1788   dnl Check for strength-reduce bug
1789   AC_CACHE_CHECK( [for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug,
1790                   AC_RUN_IFELSE([AC_LANG_PROGRAM([[int L[[4]] = {0,1,2,3};]],
1791 [[static int Array[[3]];
1792   unsigned int B = 3;
1793   int i;
1794   for(i=0; i<B; i++) Array[[i]] = i - 3;
1795   for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]];
1796   L[[i]] = 4;
1797   return (Array[[1]] != -2 || L[[2]] != 3)]])],
1798     [ac_cv_c_gcc_strength_bug="no"],[ac_cv_c_gcc_strength_bug="yes"],[ac_cv_c_gcc_strength_bug="yes"]) )
1799   if test "$ac_cv_c_gcc_strength_bug" = "yes"
1800   then
1801     EXTRACFLAGS="$EXTRACFLAGS -fno-strength-reduce"
1802   fi
1804   dnl Check for some compiler flags
1805   WINE_TRY_CFLAGS([-fno-builtin],[AC_SUBST(BUILTINFLAG,"-fno-builtin")])
1806   WINE_TRY_CFLAGS([-fno-strict-aliasing])
1807   dnl clang needs to be told to fail on unknown options
1808   saved_CFLAGS=$CFLAGS
1809   WINE_TRY_CFLAGS([-Werror=unknown-warning-option],[CFLAGS="$CFLAGS -Werror=unknown-warning-option"])
1810   WINE_TRY_CFLAGS([-Wdeclaration-after-statement])
1811   WINE_TRY_CFLAGS([-Wempty-body])
1812   WINE_TRY_CFLAGS([-Wignored-qualifiers])
1813   WINE_TRY_CFLAGS([-Wstrict-prototypes])
1814   WINE_TRY_CFLAGS([-Wtype-limits])
1815   WINE_TRY_CFLAGS([-Wunused-but-set-parameter])
1816   WINE_TRY_CFLAGS([-Wvla])
1817   WINE_TRY_CFLAGS([-Wwrite-strings])
1819   dnl Check for noisy string.h
1820   WINE_TRY_CFLAGS([-Wpointer-arith],
1821      [saved_string_h_CFLAGS=$CFLAGS
1822       CFLAGS="$CFLAGS -Wpointer-arith -Werror"
1823       AC_CACHE_CHECK([for broken string.h that generates warnings with -Wpointer-arith], ac_cv_c_string_h_warnings,
1824           AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string.h>]])],[ac_cv_c_string_h_warnings=no],[ac_cv_c_string_h_warnings=yes]))
1825       test "$ac_cv_c_string_h_warnings" = yes || EXTRACFLAGS="$EXTRACFLAGS -Wpointer-arith"
1826       CFLAGS=$saved_string_h_CFLAGS])
1828   dnl Check for noisy string.h on logical ops
1829   WINE_TRY_CFLAGS([-Wlogical-op],
1830      [saved_string_h_CFLAGS=$CFLAGS
1831       CFLAGS="$CFLAGS -Wlogical-op -Werror"
1832       AC_CACHE_CHECK([for broken string.h that generates warnings with -Wlogical-op], ac_cv_c_logicalop_noisy,
1833           AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string.h>
1834 char*f(const char *h,char n) {return strchr(h,n);}]])],[ac_cv_c_logicalop_noisy=no],[ac_cv_c_logicalop_noisy=yes]))
1835       CFLAGS=$saved_string_h_CFLAGS
1836       test "$ac_cv_c_logicalop_noisy" = yes || EXTRACFLAGS="$EXTRACFLAGS -Wlogical-op"])
1838   CFLAGS=$saved_CFLAGS
1840   dnl On Darwin, prefer stabs; everywhere else, default to dwarf-2 debug info
1841   for ac_flag in $CFLAGS; do
1842     case $ac_flag in
1843       -g) case $host_os in
1844             darwin*) WINE_TRY_CFLAGS([-gstabs+]) ;;
1845             *) WINE_TRY_CFLAGS([-gdwarf-2])
1846                WINE_TRY_CFLAGS([-gstrict-dwarf]) ;;
1847           esac ;;
1848     esac
1849   done
1851   dnl gcc-4.6+ omits frame pointers by default, breaking some copy protections
1852   case $host_cpu in
1853     *i[[3456789]]86*) WINE_TRY_CFLAGS([-fno-omit-frame-pointer]) ;;
1854   esac
1856   dnl mingw uses Windows 64-bit types, not Unix ones
1857   case $host in
1858     x86_64-*mingw32*|x86_64-*cygwin*) WINE_TRY_CFLAGS([-Wno-format]) ;;
1859   esac
1861   dnl Enable -Werror for maintainer mode
1862   if test "x$enable_maintainer_mode" = "xyes"
1863   then
1864       WINE_TRY_CFLAGS([-Werror])
1865   fi
1867   dnl Check for ms_hook_prologue support
1868   saved_CFLAGS="$CFLAGS"
1869   CFLAGS="$CFLAGS -Werror"
1870   AC_CACHE_CHECK([for ms_hook_prologue attribute], ac_cv_have_ms_hook_prologue,
1871                  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[int __attribute__((__ms_hook_prologue__)) test(void) { return 0; }]])],
1872                                    [ac_cv_have_ms_hook_prologue="yes"],[ac_cv_have_ms_hook_prologue="no"]))
1873   CFLAGS="$saved_CFLAGS"
1874   if test "$ac_cv_have_ms_hook_prologue" = "yes"
1875   then
1876       AC_DEFINE(DECLSPEC_HOTPATCH, [__attribute__((__ms_hook_prologue__))],
1877                 [Define to a function attribute for Microsoft hotpatch assembly prefix.])
1878   else
1879       AC_DEFINE(DECLSPEC_HOTPATCH, [/* */])
1880   fi
1883 dnl **** Disable Fortify, it has too many false positives
1885 AC_CACHE_CHECK([for the need to disable Fortify], ac_cv_c_fortify_enabled,
1886     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string.h>]],
1887 [[#if defined(__USE_FORTIFY_LEVEL) && __USE_FORTIFY_LEVEL > 0
1888 #error Fortify enabled
1889 #endif]])],
1890         [ac_cv_c_fortify_enabled=no],[ac_cv_c_fortify_enabled=yes]))
1891 if test "$ac_cv_c_fortify_enabled" = yes
1892 then
1893     CFLAGS="$CFLAGS -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0"
1896 dnl **** Check for underscore on external symbols ****
1898 AC_CACHE_CHECK([whether external symbols need an underscore prefix], ac_cv_c_extern_prefix,
1899     WINE_TRY_ASM_LINK([".globl _ac_test\n_ac_test:\t.long 0"],
1900                       [extern int ac_test;],
1901                       [if (ac_test) return 1],
1902                       ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no"))
1904 case $host_cpu in
1905   *i[[3456789]]86*)
1906     AC_CACHE_CHECK([whether external symbols need stdcall decoration], ac_cv_c_stdcall_suffix,
1907         WINE_TRY_ASM_LINK(["jmp _ac_test@4"],
1908 [#ifndef _MSC_VER
1909 #define __stdcall __attribute__((__stdcall__))
1910 #endif
1911 int __stdcall ac_test(int i) { return i; }],
1912                           [if (ac_test(1)) return 1],
1913                           ac_cv_c_stdcall_suffix="yes",ac_cv_c_stdcall_suffix="no")) ;;
1914   *) ac_cv_c_stdcall_suffix="no" ;;
1915 esac
1917 AH_TEMPLATE(__ASM_NAME,[Define to a macro to generate an assembly name from a C symbol])
1918 if test "$ac_cv_c_extern_prefix" = "yes"
1919 then
1920     AC_DEFINE([__ASM_NAME(name)], ["_" name])
1921     asm_name_prefix="_"
1922 else
1923     AC_DEFINE([__ASM_NAME(name)], [name])
1924     asm_name_prefix=""
1927 AH_TEMPLATE(__ASM_STDCALL,[Define to a macro to generate an stdcall suffix])
1928 if test "$ac_cv_c_stdcall_suffix" = "yes"
1929 then
1930     AC_DEFINE([__ASM_STDCALL(args)],["@" #args])
1931 else
1932     AC_DEFINE([__ASM_STDCALL(args)],[""])
1935 dnl **** Check how to define a function in assembly code ****
1937 AC_CACHE_CHECK([how to define a function in assembly code], ac_cv_asm_func_def,
1938   WINE_TRY_ASM_LINK(
1939       ["\t.globl _ac_test\n\t.def _ac_test; .scl 2; .type 32; .endef\n_ac_test:\t.long 0"],,,
1940       ac_cv_asm_func_def=".def",
1941     [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,@function\n_ac_test:\t.long 0"],,,
1942       ac_cv_asm_func_def=".type @function",
1943     [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,2\n_ac_test:\t.long 0"],,,
1944       ac_cv_asm_func_def=".type 2",
1945       ac_cv_asm_func_def="unknown")])]))
1947 AH_TEMPLATE(__ASM_FUNC,[Define to a macro to generate an assembly function directive])
1948 case "$ac_cv_asm_func_def" in
1949   ".def")
1950      AC_DEFINE([__ASM_FUNC(name)], [".def " __ASM_NAME(name) "; .scl 2; .type 32; .endef"])
1951      asm_func_header=".def $asm_name_prefix\" #name suffix \"; .scl 2; .type 32; .endef" ;;
1952   ".type @function")
1953      AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",@function"])
1954      asm_func_header=".type $asm_name_prefix\" #name suffix \",@function" ;;
1955   ".type 2")
1956      AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",2"])
1957      asm_func_header=".type $asm_name_prefix\" #name suffix \",2" ;;
1958   *)
1959      AC_DEFINE([__ASM_FUNC(name)], [""])
1960      asm_func_header="" ;;
1961 esac
1963 AC_CACHE_CHECK([whether asm() works outside of functions], ac_cv_c_asm_outside_funcs,
1964     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[asm(".text\n\t.long 0");]],)],
1965                       ac_cv_c_asm_outside_funcs="yes",ac_cv_c_asm_outside_funcs="no"))
1967 AC_CACHE_CHECK([whether .previous is supported in assembly code], ac_cv_c_dot_previous,
1968     WINE_TRY_ASM_LINK([".text\nac_test:\t.long 0\n\t.previous"],,,
1969                       ac_cv_c_dot_previous="yes",ac_cv_c_dot_previous="no"))
1971 AC_CACHE_CHECK([whether CFI directives are supported in assembly code], ac_cv_c_cfi_support,
1972     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[asm(".text\nac_test:\t.cfi_startproc\n\t.long 0\n\t.cfi_endproc");]])],
1973                       ac_cv_c_cfi_support="yes",ac_cv_c_cfi_support="no"))
1975 asm_func_header=".globl $asm_name_prefix\" #name suffix \"\\n\\t$asm_func_header\\n$asm_name_prefix\" #name suffix \":\\n\\t"
1976 asm_func_trailer=""
1977 if test "$ac_cv_c_dot_previous" = "yes"
1978 then
1979    asm_func_trailer="\\n\\t.previous"
1981 if test "$ac_cv_c_cfi_support" = "yes"
1982 then
1983    asm_func_header="$asm_func_header.cfi_startproc\\n\\t"
1984    asm_func_trailer="\\n\\t.cfi_endproc$asm_func_trailer"
1985    AC_DEFINE([__ASM_CFI(str)],[str],[Define to a macro to output a .cfi assembly pseudo-op])
1986    AC_SUBST([UNWINDFLAGS],[-fasynchronous-unwind-tables])
1987 else
1988    AC_DEFINE([__ASM_CFI(str)],[""])
1991 asm_func_code="$asm_func_header\" code \"$asm_func_trailer"
1993 AH_TEMPLATE(__ASM_DEFINE_FUNC,[Define to a macro to define an assembly function])
1994 if test "$ac_cv_c_asm_outside_funcs" = "yes"
1995 then
1996     AC_DEFINE_UNQUOTED([__ASM_DEFINE_FUNC(name,suffix,code)],[asm(".text\n\t.align 4\n\t$asm_func_code");])
1997 else
1998     AC_DEFINE_UNQUOTED([__ASM_DEFINE_FUNC(name,suffix,code)],[void __asm_dummy_##name(void) { asm(".text\n\t.align 4\n\t$asm_func_code"); }])
2000 AC_DEFINE([__ASM_GLOBAL_FUNC(name,code)],[__ASM_DEFINE_FUNC(name,"",code)],
2001           [Define to a macro to generate an assembly function with C calling convention])
2002 AC_DEFINE([__ASM_STDCALL_FUNC(name,args,code)],[__ASM_DEFINE_FUNC(name,__ASM_STDCALL(args),code)],
2003           [Define to a macro to generate an assembly function with stdcall calling convention])
2005 dnl **** Platform-specific checks ****
2007 case $build_os in
2008   cygwin*|mingw32*) AC_SUBST(TOOLSEXT,".exe") ;;
2009 esac
2011 case $host_os in
2012   linux*)
2013     case $host_cpu in
2014       *i[[3456789]]86*|x86_64*)
2015         test "$wine_binary" = wine || WINE_IGNORE_FILE("loader/wine-preloader")
2016         loader_programs="$loader_programs $wine_binary-preloader"
2017         AS_VAR_APPEND([LOADER_RULES],["
2018 $wine_binary-preloader: preloader.o
2019         \$(CC) -o \$@ -static -nostartfiles -nodefaultlibs -Wl,-Ttext=0x7c400000 preloader.o \$(LIBPORT) \$(LDFLAGS)
2021 install install-lib:: $wine_binary-preloader
2022         \$(INSTALL_PROGRAM) $wine_binary-preloader \$(DESTDIR)\$(bindir)/$wine_binary-preloader
2024 uninstall::
2025         \$(RM) \$(DESTDIR)\$(bindir)/$wine_binary-preloader
2027 preloader_EXTRADEFS = $BUILTINFLAG
2028 "]) ;;
2029     esac
2030     ;;
2031 esac
2032 AS_VAR_APPEND([LOADER_RULES],["
2033 PROGRAMS = $loader_programs
2036 dnl **** Check for functions ****
2038 ac_save_CFLAGS="$CFLAGS"
2039 CFLAGS="$CFLAGS $BUILTINFLAG"
2040 AC_CHECK_FUNCS(\
2041         __res_get_state \
2042         __res_getservers \
2043         _finite \
2044         _isnan \
2045         _pclose \
2046         _popen \
2047         _snprintf \
2048         _spawnvp \
2049         _strdup \
2050         _stricmp \
2051         _strnicmp \
2052         _strtoi64 \
2053         _strtoui64 \
2054         _vsnprintf \
2055         asctime_r \
2056         chsize \
2057         dlopen \
2058         epoll_create \
2059         ffs \
2060         finitef \
2061         fnmatch \
2062         fork \
2063         fpclass \
2064         fstatfs \
2065         fstatvfs \
2066         ftruncate \
2067         futimens \
2068         futimes \
2069         futimesat \
2070         getattrlist \
2071         getdirentries \
2072         getopt_long_only \
2073         getpwuid \
2074         gettimeofday \
2075         getuid \
2076         if_nameindex \
2077         isnanf \
2078         kqueue \
2079         lstat \
2080         memmove \
2081         mmap \
2082         pclose \
2083         pipe2 \
2084         poll \
2085         popen \
2086         port_create \
2087         prctl \
2088         pread \
2089         proc_pidinfo \
2090         pwrite \
2091         readdir \
2092         readlink \
2093         sched_yield \
2094         select \
2095         setproctitle \
2096         setrlimit \
2097         settimeofday \
2098         sigaltstack \
2099         sigprocmask \
2100         snprintf \
2101         statfs \
2102         statvfs \
2103         strcasecmp \
2104         strdup \
2105         strerror \
2106         strncasecmp \
2107         strtold \
2108         strtoll \
2109         strtoull \
2110         symlink \
2111         tcdrain \
2112         thr_kill2 \
2113         timegm \
2114         usleep \
2115         vsnprintf
2117 CFLAGS="$ac_save_CFLAGS"
2119 dnl Check for -ldl
2120 if test "$ac_cv_func_dlopen" = no
2121 then
2122     AC_CHECK_LIB(dl,dlopen,[AC_DEFINE(HAVE_DLOPEN,1) AC_SUBST(DL_LIBS,"-ldl")])
2124 WINE_CHECK_LIB_FUNCS(dladdr,[$DL_LIBS])
2126 dnl Check for -lpoll for Mac OS X/Darwin
2127 if test "$ac_cv_func_poll" = no
2128 then
2129     AC_CHECK_LIB(poll,poll,[AC_DEFINE(HAVE_POLL,1) AC_SUBST(POLL_LIBS,"-lpoll")])
2132 dnl Check for -lnsl for Solaris
2133 AC_SEARCH_LIBS(gethostbyname, nsl)
2135 dnl Check for -lsocket for Solaris
2136 AC_SEARCH_LIBS(connect, socket)
2138 dnl Check for -lresolv for Solaris
2139 AC_SEARCH_LIBS(inet_aton, resolv)
2141 dnl **** Check for functions which may rely on -lsocket on Solaris.
2142 AC_CHECK_FUNCS(\
2143         getaddrinfo \
2144         getnameinfo \
2145         getnetbyname \
2146         getprotobyname \
2147         getprotobynumber \
2148         getservbyport \
2149         inet_addr \
2150         inet_network \
2151         inet_ntop \
2152         inet_pton \
2153         sendmsg \
2154         socketpair \
2157 dnl Check for clock_gettime which may be in -lrt
2158 ac_save_LIBS=$LIBS
2159 AC_SEARCH_LIBS(clock_gettime, rt,
2160                [AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define to 1 if you have the `clock_gettime' function.])
2161                 test "$ac_res" = "none required" || AC_SUBST(RT_LIBS,"$ac_res")])
2162 LIBS=$ac_save_LIBS
2164 dnl **** Check for OpenLDAP ***
2165 AC_SUBST(LDAP_LIBS,"")
2166 if test "$ac_cv_header_ldap_h" = "yes" -a "$ac_cv_header_lber_h" = "yes"
2167 then
2168     AC_CHECK_TYPE(LDAPSortKey,
2169         [AC_CHECK_LIB(ldap_r, ldap_initialize,
2170             [AC_CHECK_LIB(lber, ber_init,
2171                 [AC_DEFINE(HAVE_LDAP, 1, [Define if you have the OpenLDAP development environment])
2172                  LDAP_LIBS="-lldap_r -llber"],,
2173                  [$PTHREAD_LIBS])],,
2174                  [$PTHREAD_LIBS])],,
2175         [#include <ldap.h>])
2176     WINE_CHECK_LIB_FUNCS(\
2177         ldap_count_references \
2178         ldap_first_reference \
2179         ldap_next_reference \
2180         ldap_parse_reference \
2181         ldap_parse_sort_control \
2182         ldap_parse_sortresponse_control \
2183         ldap_parse_vlv_control \
2184         ldap_parse_vlvresponse_control,
2185         [$LDAP_LIBS $PTHREAD_LIBS])
2187 WINE_NOTICE_WITH(ldap,[test "x$LDAP_LIBS" = "x"],
2188                  [libldap (OpenLDAP) ${notice_platform}development files not found, LDAP won't be supported.])
2190 AC_CACHE_CHECK([whether mkdir takes only one argument],
2191         wine_cv_one_arg_mkdir,
2192         AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/stat.h>]],[[mkdir("foo");]])],
2193                           [wine_cv_one_arg_mkdir=yes],[wine_cv_one_arg_mkdir=no]))
2194 if test "$wine_cv_one_arg_mkdir" = "yes"
2195 then
2196   AC_DEFINE(HAVE_ONE_ARG_MKDIR, 1, [Define if mkdir takes only one argument])
2199 AC_CACHE_CHECK([for sched_setaffinity],wine_cv_have_sched_setaffinity,
2200                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
2201 [[#define _GNU_SOURCE
2202 #include <sched.h>]], [[sched_setaffinity(0, 0, 0);]])],[wine_cv_have_sched_setaffinity=yes],[wine_cv_have_sched_setaffinity=no]))
2203 if test "$wine_cv_have_sched_setaffinity" = "yes"
2204 then
2205   AC_DEFINE(HAVE_SCHED_SETAFFINITY, 1, [Define to 1 if you have the `sched_setaffinity' function.])
2208 AC_CACHE_CHECK([for fallocate],wine_cv_have_fallocate,
2209                 AC_LINK_IFELSE([AC_LANG_PROGRAM(
2210 [[#define _GNU_SOURCE
2211 #include <fcntl.h>]], [[fallocate(-1, 0, 0, 0);]])],[wine_cv_have_fallocate=yes],[wine_cv_have_fallocate=no]))
2212 if test "$wine_cv_have_fallocate" = "yes"
2213 then
2214   AC_DEFINE(HAVE_FALLOCATE, 1, [Define to 1 if you have the `fallocate' function.])
2217 dnl **** Check for types ****
2219 AC_C_INLINE
2220 AC_CHECK_TYPES([mode_t, off_t, pid_t, size_t, ssize_t, long long, fsblkcnt_t, fsfilcnt_t])
2221 AC_CHECK_TYPES([sigset_t],,,[#include <sys/types.h>
2222 #include <signal.h>])
2223 AC_CHECK_TYPES([request_sense],,,[#include <linux/cdrom.h>])
2225 AC_CHECK_TYPES([struct xinpgen],,,
2226 [#include <sys/types.h>
2227 #ifdef HAVE_SYS_SOCKET_H
2228 #include <sys/socket.h>
2229 #endif
2230 #ifdef HAVE_SYS_SOCKETVAR_H
2231 #include <sys/socketvar.h>
2232 #endif
2233 #ifdef HAVE_NET_ROUTE_H
2234 #include <net/route.h>
2235 #endif
2236 #ifdef HAVE_NETINET_IN_H
2237 #include <netinet/in.h>
2238 #endif
2239 #ifdef HAVE_NETINET_IN_SYSTM_H
2240 #include <netinet/in_systm.h>
2241 #endif
2242 #ifdef HAVE_NETINET_IP_H
2243 #include <netinet/ip.h>
2244 #endif
2245 #ifdef HAVE_NETINET_IN_PCB_H
2246 #include <netinet/in_pcb.h>
2247 #endif])
2249 AC_CHECK_TYPES([struct r_debug, struct link_map],,,
2250 [#ifdef HAVE_LINK_H
2251 #include <link.h>
2252 #endif
2253 #ifdef HAVE_SYS_LINK_H
2254 #include <sys/link.h>
2255 #endif])
2257 AC_CHECK_MEMBERS([struct ff_effect.direction],,,
2258 [#ifdef HAVE_LINUX_INPUT_H
2259 #include <linux/input.h>
2260 #endif])
2262 AC_CACHE_CHECK([for sigaddset],wine_cv_have_sigaddset,
2263                AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <signal.h>]], [[sigset_t set; sigaddset(&set,SIGTERM);]])],[wine_cv_have_sigaddset=yes],[wine_cv_have_sigaddset=no]))
2264 if test "$wine_cv_have_sigaddset" = "yes"
2265 then
2266   AC_DEFINE(HAVE_SIGADDSET, 1, [Define if sigaddset is supported])
2270 AC_CACHE_CHECK([whether we can use re-entrant gethostbyname_r Linux style],
2271         wine_cv_linux_gethostbyname_r_6,
2272         AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <netdb.h>]],[[
2273     char *name=0;
2274     struct hostent he;
2275     struct hostent *result;
2276     char *buf=0;
2277     int bufsize=0;
2278     int errnr;
2279     char *addr=0;
2280     int addrlen=0;
2281     int addrtype=0;
2282     gethostbyname_r(name,&he,buf,bufsize,&result,&errnr);
2283     gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr);
2284     ]])],[wine_cv_linux_gethostbyname_r_6=yes],[wine_cv_linux_gethostbyname_r_6=no
2285         ])
2286    )
2287    if test "$wine_cv_linux_gethostbyname_r_6" = "yes"
2288    then
2289       AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6, 1,
2290                 [Define if Linux-style gethostbyname_r and gethostbyaddr_r are available])
2291    fi
2293 if test "$ac_cv_header_linux_joystick_h" = "yes"
2294 then
2295    AC_CACHE_CHECK([whether linux/joystick.h uses the Linux 2.2+ API],
2296         wine_cv_linux_joystick_22_api,
2297         AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2298         #include <sys/ioctl.h>
2299         #include <sys/types.h>
2300         #include <linux/joystick.h>
2302         struct js_event blub;
2303         #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON)
2304         #error "no 2.2 header"
2305         #endif
2306         ]], [[/*empty*/]])],[wine_cv_linux_joystick_22_api=yes],[wine_cv_linux_joystick_22_api=no])
2307    )
2308    if test "$wine_cv_linux_joystick_22_api" = "yes"
2309    then
2310       AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API, 1,
2311                 [Define if <linux/joystick.h> defines the Linux 2.2 joystick API])
2312    fi
2315 dnl **** FIXME: what about mixed cases, where we need two of them? ***
2317 dnl Check for statfs members
2318 AC_CHECK_MEMBERS([struct statfs.f_bfree, struct statfs.f_bavail, struct statfs.f_frsize, struct statfs.f_ffree, struct statfs.f_favail, struct statfs.f_namelen],,,
2319 [#include <sys/types.h>
2320 #ifdef HAVE_SYS_PARAM_H
2321 # include <sys/param.h>
2322 #endif
2323 #ifdef HAVE_SYS_MOUNT_H
2324 # include <sys/mount.h>
2325 #endif
2326 #ifdef HAVE_SYS_VFS_H
2327 # include <sys/vfs.h>
2328 #endif
2329 #ifdef HAVE_SYS_STATFS_H
2330 # include <sys/statfs.h>
2331 #endif])
2333 AC_CHECK_MEMBERS([struct statvfs.f_blocks],,,
2334 [#ifdef HAVE_SYS_STATVFS_H
2335 #include <sys/statvfs.h>
2336 #endif])
2338 dnl Check for dirent.d_reclen
2339 AC_CHECK_MEMBERS([struct dirent.d_reclen],,,
2340 [#ifdef HAVE_DIRENT_H
2341 #include <dirent.h>
2342 #endif])
2344 dnl Check for socket structure members
2345 AC_CHECK_MEMBERS([struct msghdr.msg_accrights, struct sockaddr.sa_len, struct sockaddr_un.sun_len],,,
2346 [#include <sys/types.h>
2347 #ifdef HAVE_SYS_SOCKET_H
2348 # include <sys/socket.h>
2349 #endif
2350 #ifdef HAVE_SYS_UN_H
2351 # include <sys/un.h>
2352 #endif])
2354 dnl Check for scsireq_t and sg_io_hdr_t members
2355 AC_CHECK_MEMBERS([scsireq_t.cmd, sg_io_hdr_t.interface_id],,,
2356 [#include <sys/types.h>
2357 #ifdef HAVE_SCSI_SG_H
2358 #include <scsi/sg.h>
2359 #endif])
2361 dnl Check for siginfo_t members
2362 AC_CHECK_MEMBERS([siginfo_t.si_fd],,,[#include <signal.h>])
2364 dnl Check for struct mtget members
2365 AC_CHECK_MEMBERS([struct mtget.mt_blksiz, struct mtget.mt_gstat, struct mtget.mt_blkno],,,
2366 [#include <sys/types.h>
2367 #ifdef HAVE_SYS_MTIO_H
2368 #include <sys/mtio.h>
2369 #endif])
2371 dnl Check for struct option
2372 AC_CHECK_MEMBERS([struct option.name],,,
2373 [#ifdef HAVE_GETOPT_H
2374 #include <getopt.h>
2375 #endif])
2377 dnl Check for stat.st_blocks and ns-resolved times
2378 AC_CHECK_MEMBERS([
2379         struct stat.st_blocks,
2380         struct stat.st_mtim,
2381         struct stat.st_mtimespec,
2382         struct stat.st_ctim,
2383         struct stat.st_ctimespec,
2384         struct stat.st_atim,
2385         struct stat.st_atimespec,
2386         struct stat.st_birthtime,
2387         struct stat.st_birthtim,
2388         struct stat.st_birthtimespec,
2389         struct stat.__st_birthtime,
2390         struct stat.__st_birthtim])
2392 dnl Check for sin6_scope_id
2393 AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,,
2394 [#ifdef HAVE_SYS_TYPES_H
2395 #include <sys/types.h>
2396 #endif
2397 #ifdef HAVE_NETINET_IN_H
2398 #include <netinet/in.h>
2399 #endif])
2401 dnl Check for struct __res_state
2402 AC_CHECK_TYPES([struct __res_state],,,
2403 [#ifdef HAVE_RESOLV_H
2404 #include <resolv.h>
2405 #endif])
2407 dnl Check for _u._ext.nscount6
2408 AC_CHECK_MEMBERS([struct __res_state._u._ext.nscount6],,,
2409 [#ifdef HAVE_RESOLV_H
2410 #include <resolv.h>
2411 #endif])
2413 dnl Check for ns_msg ptr member
2414 AC_CHECK_MEMBERS([ns_msg._msg_ptr],,,
2415 [#ifdef HAVE_SYS_TYPES_H
2416 #include <sys/types.h>
2417 #endif
2418 #ifdef HAVE_NETINET_IN_H
2419 # include <netinet/in.h>
2420 #endif
2421 #ifdef HAVE_ARPA_NAMESER_H
2422 # include <arpa/nameser.h>
2423 #endif])
2425 dnl Check for struct icmpstat
2426 AC_CHECK_MEMBERS([struct icmpstat.icps_inhist],,,
2427 [#ifdef HAVE_SYS_TYPES_H
2428 #include <sys/types.h>
2429 #endif
2430 #ifdef HAVE_NETINET_IP_H
2431 #include <netinet/ip.h>
2432 #endif
2433 #ifdef HAVE_NETINET_IP_ICMP_H
2434 #include <netinet/ip_icmp.h>
2435 #endif
2436 #ifdef HAVE_NETINET_ICMP_VAR_H
2437 #include <netinet/icmp_var.h>
2438 #endif])
2440 dnl Check for struct icmpstat.icps_outhist
2441 AC_CHECK_MEMBERS([struct icmpstat.icps_outhist],,,
2442 [#ifdef HAVE_SYS_TYPES_H
2443 #include <sys/types.h>
2444 #endif
2445 #ifdef HAVE_ALIAS_H
2446 #include <alias.h>
2447 #endif
2448 #ifdef HAVE_SYS_SOCKET_H
2449 #include <sys/socket.h>
2450 #endif
2451 #ifdef HAVE_SYS_SOCKETVAR_H
2452 #include <sys/socketvar.h>
2453 #endif
2454 #ifdef HAVE_SYS_TIMEOUT_H
2455 #include <sys/timeout.h>
2456 #endif
2457 #ifdef HAVE_NETINET_IN_H
2458 #include <netinet/in.h>
2459 #endif
2460 #ifdef HAVE_NETINET_IN_SYSTM_H
2461 #include <netinet/in_systm.h>
2462 #endif
2463 #ifdef HAVE_NETINET_IP_H
2464 #include <netinet/ip.h>
2465 #endif
2466 #ifdef HAVE_NETINET_IP_VAR_H
2467 #include <netinet/ip_var.h>
2468 #endif
2469 #ifdef HAVE_NETINET_IP_ICMP_H
2470 #include <netinet/ip_icmp.h>
2471 #endif
2472 #ifdef HAVE_NETINET_ICMP_VAR_H
2473 #include <netinet/icmp_var.h>
2474 #endif])
2476 dnl Check for struct ipstat
2477 AC_CHECK_MEMBERS([struct ipstat.ips_total],,,
2478 [#ifdef HAVE_SYS_TYPES_H
2479 #include <sys/types.h>
2480 #endif
2481 #ifdef HAVE_SYS_SOCKETVAR_H
2482 #include <sys/socketvar.h>
2483 #endif
2484 #ifdef HAVE_NETINET_IN_H
2485 #include <netinet/in.h>
2486 #endif
2487 #ifdef HAVE_NETINET_IP_VAR_H
2488 #include <netinet/ip_var.h>
2489 #endif])
2491 dnl Check for struct ip_stats
2492 AC_CHECK_MEMBERS([struct ip_stats.ips_total],,,
2493 [#ifdef HAVE_NETINET_IP_VAR_H
2494 #include <netinet/ip_var.h>
2495 #endif])
2497 dnl Check for struct tcpstat
2498 AC_CHECK_MEMBERS([struct tcpstat.tcps_connattempt],,,
2499 [#ifdef HAVE_SYS_TYPES_H
2500 #include <sys/types.h>
2501 #endif
2502 #ifdef HAVE_SYS_SOCKETVAR_H
2503 #include <sys/socketvar.h>
2504 #endif
2505 #ifdef HAVE_NETINET_IN_H
2506 #include <netinet/in.h>
2507 #endif
2508 #ifdef HAVE_NETINET_TCP_H
2509 #include <netinet/tcp.h>
2510 #endif
2511 #ifdef HAVE_NETINET_TCP_VAR_H
2512 #include <netinet/tcp_var.h>
2513 #endif])
2515 dnl Check for struct tcp_stats
2516 AC_CHECK_MEMBERS([struct tcp_stats.tcps_connattempt],,,
2517 [#ifdef HAVE_NETINET_TCP_VAR_H
2518 #include <netinet/tcp_var.h>
2519 #endif])
2521 dnl Check for struct udpstat
2522 AC_CHECK_MEMBERS([struct udpstat.udps_ipackets],,,
2523 [#ifdef HAVE_SYS_TYPES_H
2524 #include <sys/types.h>
2525 #endif
2526 #ifdef HAVE_NETINET_IN_H
2527 #include <netinet/in.h>
2528 #endif
2529 #ifdef HAVE_NETINET_IP_VAR_H
2530 #include <netinet/ip_var.h>
2531 #endif
2532 #ifdef HAVE_NETINET_UDP_H
2533 #include <netinet/udp.h>
2534 #endif
2535 #ifdef HAVE_NETINET_UDP_VAR_H
2536 #include <netinet/udp_var.h>
2537 #endif])
2539 dnl Check for struct ifreq.ifr_hwaddr
2540 AC_CHECK_MEMBERS([struct ifreq.ifr_hwaddr],,,
2541 [#ifdef HAVE_SYS_TYPES_H
2542 #include <sys/types.h>
2543 #endif
2544 #ifdef HAVE_NET_IF_H
2545 # include <net/if.h>
2546 #endif])
2548 dnl Check for the external timezone variables timezone and daylight
2549 AC_CACHE_CHECK([for timezone variable], ac_cv_have_timezone,
2550                AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[timezone = 1]])],[ac_cv_have_timezone="yes"],[ac_cv_have_timezone="no"]))
2551 if test "$ac_cv_have_timezone" = "yes"
2552 then
2553     AC_DEFINE(HAVE_TIMEZONE, 1, [Define if you have the timezone variable])
2555 AC_CACHE_CHECK([for daylight variable], ac_cv_have_daylight,
2556                AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[daylight = 1]])],[ac_cv_have_daylight="yes"],[ac_cv_have_daylight="no"]))
2557 if test "$ac_cv_have_daylight" = "yes"
2558 then
2559     AC_DEFINE(HAVE_DAYLIGHT, 1, [Define if you have the daylight variable])
2562 dnl Check for isfinite
2563 ac_save_LIBS="$LIBS"
2564 LIBS="$LIBS -lm"
2565 AC_CACHE_CHECK([for isfinite], ac_cv_have_isfinite,
2566                AC_LINK_IFELSE([AC_LANG_PROGRAM([[#define _GNU_SOURCE
2567 #include <math.h>]], [[float f = 0.0; return isfinite(f)]])],[ac_cv_have_isfinite="yes"],[ac_cv_have_isfinite="no"]))
2568 if test "$ac_cv_have_isfinite" = "yes"
2569 then
2570     AC_DEFINE(HAVE_ISFINITE, 1, [Define to 1 if you have the `isfinite' function.])
2573 dnl Check for isinf
2574 AC_CACHE_CHECK([for isinf], ac_cv_have_isinf,
2575                AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>]], [[float f = 0.0; return isinf(f)]])],[ac_cv_have_isinf="yes"],[ac_cv_have_isinf="no"]))
2576 if test "$ac_cv_have_isinf" = "yes"
2577 then
2578     AC_DEFINE(HAVE_ISINF, 1, [Define to 1 if you have the `isinf' function.])
2581 dnl Check for isnan
2582 AC_CACHE_CHECK([for isnan], ac_cv_have_isnan,
2583                AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <math.h>]], [[float f = 0.0; return isnan(f)]])],[ac_cv_have_isnan="yes"],[ac_cv_have_isnan="no"]))
2584 if test "$ac_cv_have_isnan" = "yes"
2585 then
2586     AC_DEFINE(HAVE_ISNAN, 1, [Define to 1 if you have the `isnan' function.])
2589 AC_CHECK_FUNCS(\
2590         cbrt \
2591         cbrtf \
2592         exp2 \
2593         exp2f \
2594         llrint \
2595         llrintf \
2596         llround \
2597         llroundf \
2598         log2 \
2599         log2f \
2600         lrint \
2601         lrintf \
2602         lround \
2603         lroundf \
2604         rint \
2605         rintf \
2606         round \
2607         roundf \
2608         trunc \
2609         truncf
2611 LIBS="$ac_save_LIBS"
2613 dnl Check for __builtin_clz
2614 AC_CACHE_CHECK([for __builtin_clz], ac_cv_have___builtin_clz,
2615                AC_LINK_IFELSE([AC_LANG_PROGRAM(,[[return __builtin_clz(1)]])],
2616                [ac_cv_have___builtin_clz="yes"], [ac_cv_have___builtin_clz="no"]))
2617 if test "$ac_cv_have___builtin_clz" = "yes"
2618 then
2619     AC_DEFINE(HAVE___BUILTIN_CLZ, 1, [Define to 1 if you have the `__builtin_clz' built-in function.])
2622 dnl *** check for the need to define platform-specific symbols
2624 case $host_cpu in
2625   *i[[3456789]]86*) WINE_CHECK_DEFINE([__i386__]) ;;
2626   *x86_64*)         WINE_CHECK_DEFINE([__x86_64__]) ;;
2627   *sparc64*)        WINE_CHECK_DEFINE([__sparc64__]) ;;
2628   *sparc*)          WINE_CHECK_DEFINE([__sparc__]) ;;
2629   *powerpc64*)      WINE_CHECK_DEFINE([__powerpc64__]) ;;
2630   *powerpc*)        WINE_CHECK_DEFINE([__powerpc__]) ;;
2631   *aarch64*)        WINE_CHECK_DEFINE([__aarch64__]) ;;
2632   *arm*)            WINE_CHECK_DEFINE([__arm__]) ;;
2633 esac
2635 case $host_vendor in
2636   *sun*) WINE_CHECK_DEFINE([__sun__]) ;;
2637 esac
2639 dnl **** Generate output files ****
2641 AH_TOP([#ifndef __WINE_CONFIG_H
2642 #define __WINE_CONFIG_H
2643 #ifndef WINE_CROSSTEST])
2644 AH_BOTTOM([#endif /* WINE_CROSSTEST */
2645 #endif /* __WINE_CONFIG_H */])
2647 AC_CONFIG_COMMANDS([include/stamp-h], [echo timestamp > include/stamp-h])
2648 AS_ECHO_N("creating Makefile rules...") >&AS_MESSAGE_FD
2650 AC_SUBST([ALL_VARS_RULES],
2651 "m4_set_foreach([_AC_SUBST_VARS],[var],[m4_if(m4_bregexp(m4_defn([var]),[\(_CFLAGS\|_LIBS\)$]),-1,,[var = $var
2652 ])])")
2654 dnl Main makefile
2656 WINE_APPEND_RULE([
2657 # Rules automatically generated by configure
2659 CLEAN_FILES = *.o *.a *.so *.res *.fake *.ok *.tab.[[ch]] *.yy.c
2661 .INIT: Makefile
2662 .MAKEFILEDEPS:
2663 all: Makefile
2664 Makefile: $srcdir/Makefile.in $srcdir/Make.vars.in config.status \$(MAKEDEP)
2665         @./config.status Make.tmp Makefile])
2667 test "$srcdir" = . && WINE_APPEND_RULE(
2668 [all: .gitignore
2669 .gitignore: config.status
2670         @./config.status .gitignore])
2672 test -n "$CROSSTARGET" || WINE_APPEND_RULE(
2673 [crosstest:
2674         @echo \"crosstest is not supported (mingw not installed?)\" && false])
2676 WINE_CONFIG_SYMLINK(fonts,fonts,[marlett.ttf,symbol.ttf,tahoma.ttf,tahomabd.ttf],enable_fonts)
2677 WINE_CONFIG_SYMLINK(loader,loader,[l_intl.nls])
2678 WINE_CONFIG_SYMLINK(po,po,[LINGUAS])
2679 WINE_CONFIG_SYMLINK(,tools,[wine],,winewrapper)
2680 WINE_CONFIG_SYMLINK(,tools,[wine64],enable_win64,winewrapper)
2682 WINE_CONFIG_DLL(acledit)
2683 WINE_CONFIG_DLL(aclui,,[implib])
2684 WINE_CONFIG_DLL(activeds,,[implib])
2685 WINE_CONFIG_DLL(actxprxy,,[clean])
2686 WINE_CONFIG_LIB(adsiid)
2687 WINE_CONFIG_DLL(advapi32,,[clean,implib])
2688 WINE_CONFIG_TEST(dlls/advapi32/tests)
2689 WINE_CONFIG_DLL(advpack,,[implib])
2690 WINE_CONFIG_TEST(dlls/advpack/tests)
2691 WINE_CONFIG_DLL(amstream,,[clean])
2692 WINE_CONFIG_TEST(dlls/amstream/tests)
2693 WINE_CONFIG_DLL(api-ms-win-core-com-l1-1-0)
2694 WINE_CONFIG_DLL(api-ms-win-core-console-l1-1-0)
2695 WINE_CONFIG_DLL(api-ms-win-core-datetime-l1-1-0)
2696 WINE_CONFIG_DLL(api-ms-win-core-datetime-l1-1-1)
2697 WINE_CONFIG_DLL(api-ms-win-core-debug-l1-1-1)
2698 WINE_CONFIG_DLL(api-ms-win-core-errorhandling-l1-1-1)
2699 WINE_CONFIG_DLL(api-ms-win-core-errorhandling-l1-1-2)
2700 WINE_CONFIG_DLL(api-ms-win-core-fibers-l1-1-0)
2701 WINE_CONFIG_DLL(api-ms-win-core-fibers-l1-1-1)
2702 WINE_CONFIG_DLL(api-ms-win-core-file-l1-2-0)
2703 WINE_CONFIG_DLL(api-ms-win-core-file-l2-1-0)
2704 WINE_CONFIG_DLL(api-ms-win-core-file-l2-1-1)
2705 WINE_CONFIG_DLL(api-ms-win-core-handle-l1-1-0)
2706 WINE_CONFIG_DLL(api-ms-win-core-heap-l1-2-0)
2707 WINE_CONFIG_DLL(api-ms-win-core-heap-obsolete-l1-1-0)
2708 WINE_CONFIG_DLL(api-ms-win-core-interlocked-l1-2-0)
2709 WINE_CONFIG_DLL(api-ms-win-core-io-l1-1-1)
2710 WINE_CONFIG_DLL(api-ms-win-core-kernel32-legacy-l1-1-0)
2711 WINE_CONFIG_DLL(api-ms-win-core-libraryloader-l1-1-1)
2712 WINE_CONFIG_DLL(api-ms-win-core-localization-l1-2-0)
2713 WINE_CONFIG_DLL(api-ms-win-core-localization-l1-2-1)
2714 WINE_CONFIG_DLL(api-ms-win-core-localization-obsolete-l1-1-0)
2715 WINE_CONFIG_DLL(api-ms-win-core-localregistry-l1-1-0)
2716 WINE_CONFIG_DLL(api-ms-win-core-memory-l1-1-1)
2717 WINE_CONFIG_DLL(api-ms-win-core-namedpipe-l1-2-0)
2718 WINE_CONFIG_DLL(api-ms-win-core-processenvironment-l1-2-0)
2719 WINE_CONFIG_DLL(api-ms-win-core-processthreads-l1-1-0)
2720 WINE_CONFIG_DLL(api-ms-win-core-processthreads-l1-1-1)
2721 WINE_CONFIG_DLL(api-ms-win-core-processthreads-l1-1-2)
2722 WINE_CONFIG_DLL(api-ms-win-core-profile-l1-1-0)
2723 WINE_CONFIG_DLL(api-ms-win-core-psapi-l1-1-0)
2724 WINE_CONFIG_DLL(api-ms-win-core-registry-l1-1-0)
2725 WINE_CONFIG_DLL(api-ms-win-core-rtlsupport-l1-2-0)
2726 WINE_CONFIG_DLL(api-ms-win-core-shlwapi-legacy-l1-1-0)
2727 WINE_CONFIG_DLL(api-ms-win-core-string-l1-1-0)
2728 WINE_CONFIG_DLL(api-ms-win-core-synch-l1-2-0)
2729 WINE_CONFIG_DLL(api-ms-win-core-sysinfo-l1-2-0)
2730 WINE_CONFIG_DLL(api-ms-win-core-sysinfo-l1-2-1)
2731 WINE_CONFIG_DLL(api-ms-win-core-threadpool-legacy-l1-1-0)
2732 WINE_CONFIG_DLL(api-ms-win-core-timezone-l1-1-0)
2733 WINE_CONFIG_DLL(api-ms-win-core-url-l1-1-0)
2734 WINE_CONFIG_DLL(api-ms-win-core-util-l1-1-0)
2735 WINE_CONFIG_DLL(api-ms-win-core-winrt-error-l1-1-0)
2736 WINE_CONFIG_DLL(api-ms-win-core-winrt-error-l1-1-1)
2737 WINE_CONFIG_DLL(api-ms-win-core-winrt-l1-1-0)
2738 WINE_CONFIG_DLL(api-ms-win-core-winrt-string-l1-1-0)
2739 WINE_CONFIG_DLL(api-ms-win-core-xstate-l2-1-0)
2740 WINE_CONFIG_DLL(api-ms-win-downlevel-advapi32-l1-1-0)
2741 WINE_CONFIG_DLL(api-ms-win-downlevel-advapi32-l2-1-0)
2742 WINE_CONFIG_DLL(api-ms-win-downlevel-normaliz-l1-1-0)
2743 WINE_CONFIG_DLL(api-ms-win-downlevel-ole32-l1-1-0)
2744 WINE_CONFIG_DLL(api-ms-win-downlevel-shell32-l1-1-0)
2745 WINE_CONFIG_DLL(api-ms-win-downlevel-shlwapi-l1-1-0)
2746 WINE_CONFIG_DLL(api-ms-win-downlevel-shlwapi-l2-1-0)
2747 WINE_CONFIG_DLL(api-ms-win-downlevel-user32-l1-1-0)
2748 WINE_CONFIG_DLL(api-ms-win-downlevel-version-l1-1-0)
2749 WINE_CONFIG_DLL(api-ms-win-eventing-provider-l1-1-0)
2750 WINE_CONFIG_DLL(api-ms-win-ntuser-dc-access-l1-1-0)
2751 WINE_CONFIG_DLL(api-ms-win-security-base-l1-1-0)
2752 WINE_CONFIG_DLL(api-ms-win-security-base-l1-2-0)
2753 WINE_CONFIG_DLL(api-ms-win-security-sddl-l1-1-0)
2754 WINE_CONFIG_DLL(api-ms-win-service-core-l1-1-1)
2755 WINE_CONFIG_DLL(api-ms-win-service-management-l1-1-0)
2756 WINE_CONFIG_DLL(api-ms-win-service-winsvc-l1-2-0)
2757 WINE_CONFIG_DLL(apphelp)
2758 WINE_CONFIG_TEST(dlls/apphelp/tests)
2759 WINE_CONFIG_DLL(appwiz.cpl,,[po])
2760 WINE_CONFIG_DLL(atl,,[clean,implib])
2761 WINE_CONFIG_TEST(dlls/atl/tests)
2762 WINE_CONFIG_DLL(atl100,,[clean,implib])
2763 WINE_CONFIG_TEST(dlls/atl100/tests)
2764 WINE_CONFIG_DLL(atl110,,[clean])
2765 WINE_CONFIG_DLL(atl80,,[clean,implib])
2766 WINE_CONFIG_TEST(dlls/atl80/tests)
2767 WINE_CONFIG_DLL(atl90,,[clean])
2768 WINE_CONFIG_DLL(authz)
2769 WINE_CONFIG_DLL(avicap32,,[implib])
2770 WINE_CONFIG_DLL(avifil32,,[clean,implib,po])
2771 WINE_CONFIG_TEST(dlls/avifil32/tests)
2772 WINE_CONFIG_DLL(avifile.dll16,enable_win16)
2773 WINE_CONFIG_DLL(avrt,,[implib])
2774 WINE_CONFIG_DLL(bcrypt)
2775 WINE_CONFIG_TEST(dlls/bcrypt/tests)
2776 WINE_CONFIG_DLL(browseui,,[clean,po])
2777 WINE_CONFIG_TEST(dlls/browseui/tests)
2778 WINE_CONFIG_DLL(cabinet,,[implib])
2779 WINE_CONFIG_TEST(dlls/cabinet/tests)
2780 WINE_CONFIG_DLL(capi2032,,[implib])
2781 WINE_CONFIG_DLL(cards,,[implib])
2782 WINE_CONFIG_DLL(cfgmgr32,,[implib])
2783 WINE_CONFIG_DLL(clusapi,,[implib])
2784 WINE_CONFIG_DLL(combase)
2785 WINE_CONFIG_TEST(dlls/combase/tests)
2786 WINE_CONFIG_DLL(comcat)
2787 WINE_CONFIG_TEST(dlls/comcat/tests)
2788 WINE_CONFIG_DLL(comctl32,,[implib,po])
2789 WINE_CONFIG_TEST(dlls/comctl32/tests)
2790 WINE_CONFIG_DLL(comdlg32,,[clean,implib,po])
2791 WINE_CONFIG_TEST(dlls/comdlg32/tests)
2792 WINE_CONFIG_DLL(comm.drv16,enable_win16)
2793 WINE_CONFIG_DLL(commdlg.dll16,enable_win16)
2794 WINE_CONFIG_DLL(compobj.dll16,enable_win16)
2795 WINE_CONFIG_DLL(compstui,,[implib])
2796 WINE_CONFIG_DLL(comsvcs,,[implib])
2797 WINE_CONFIG_DLL(connect)
2798 WINE_CONFIG_DLL(credui,,[implib,po])
2799 WINE_CONFIG_TEST(dlls/credui/tests)
2800 WINE_CONFIG_DLL(crtdll,,[implib])
2801 WINE_CONFIG_DLL(crypt32,,[implib,po])
2802 WINE_CONFIG_TEST(dlls/crypt32/tests)
2803 WINE_CONFIG_DLL(cryptdlg,,[po])
2804 WINE_CONFIG_DLL(cryptdll,,[implib])
2805 WINE_CONFIG_DLL(cryptext)
2806 WINE_CONFIG_DLL(cryptnet,,[implib])
2807 WINE_CONFIG_TEST(dlls/cryptnet/tests)
2808 WINE_CONFIG_DLL(cryptui,,[implib,po])
2809 WINE_CONFIG_TEST(dlls/cryptui/tests)
2810 WINE_CONFIG_DLL(ctapi32)
2811 WINE_CONFIG_DLL(ctl3d.dll16,enable_win16)
2812 WINE_CONFIG_DLL(ctl3d32,,[implib])
2813 WINE_CONFIG_DLL(ctl3dv2.dll16,enable_win16)
2814 WINE_CONFIG_DLL(d2d1,,[implib])
2815 WINE_CONFIG_TEST(dlls/d2d1/tests)
2816 WINE_CONFIG_DLL(d3d10,,[implib])
2817 WINE_CONFIG_TEST(dlls/d3d10/tests)
2818 WINE_CONFIG_DLL(d3d10_1,,[implib])
2819 WINE_CONFIG_DLL(d3d10core,,[implib])
2820 WINE_CONFIG_TEST(dlls/d3d10core/tests)
2821 WINE_CONFIG_DLL(d3d11)
2822 WINE_CONFIG_DLL(d3d8,,[implib])
2823 WINE_CONFIG_TEST(dlls/d3d8/tests)
2824 WINE_CONFIG_DLL(d3d9,,[implib])
2825 WINE_CONFIG_TEST(dlls/d3d9/tests)
2826 WINE_CONFIG_DLL(d3dcompiler_33)
2827 WINE_CONFIG_DLL(d3dcompiler_34)
2828 WINE_CONFIG_DLL(d3dcompiler_35)
2829 WINE_CONFIG_DLL(d3dcompiler_36)
2830 WINE_CONFIG_DLL(d3dcompiler_37)
2831 WINE_CONFIG_DLL(d3dcompiler_38)
2832 WINE_CONFIG_DLL(d3dcompiler_39)
2833 WINE_CONFIG_DLL(d3dcompiler_40)
2834 WINE_CONFIG_DLL(d3dcompiler_41)
2835 WINE_CONFIG_DLL(d3dcompiler_42)
2836 WINE_CONFIG_DLL(d3dcompiler_43,,[implib],[d3dcompiler])
2837 WINE_CONFIG_TEST(dlls/d3dcompiler_43/tests)
2838 WINE_CONFIG_DLL(d3dim,,[implib])
2839 WINE_CONFIG_DLL(d3drm,,[implib])
2840 WINE_CONFIG_TEST(dlls/d3drm/tests)
2841 WINE_CONFIG_DLL(d3dx10_33)
2842 WINE_CONFIG_DLL(d3dx10_34)
2843 WINE_CONFIG_DLL(d3dx10_35)
2844 WINE_CONFIG_DLL(d3dx10_36)
2845 WINE_CONFIG_DLL(d3dx10_37)
2846 WINE_CONFIG_DLL(d3dx10_38)
2847 WINE_CONFIG_DLL(d3dx10_39)
2848 WINE_CONFIG_DLL(d3dx10_40)
2849 WINE_CONFIG_DLL(d3dx10_41)
2850 WINE_CONFIG_DLL(d3dx10_42)
2851 WINE_CONFIG_DLL(d3dx10_43)
2852 WINE_CONFIG_DLL(d3dx11_42)
2853 WINE_CONFIG_DLL(d3dx11_43)
2854 WINE_CONFIG_DLL(d3dx9_24)
2855 WINE_CONFIG_DLL(d3dx9_25)
2856 WINE_CONFIG_DLL(d3dx9_26)
2857 WINE_CONFIG_DLL(d3dx9_27)
2858 WINE_CONFIG_DLL(d3dx9_28)
2859 WINE_CONFIG_DLL(d3dx9_29)
2860 WINE_CONFIG_DLL(d3dx9_30)
2861 WINE_CONFIG_DLL(d3dx9_31)
2862 WINE_CONFIG_DLL(d3dx9_32)
2863 WINE_CONFIG_DLL(d3dx9_33)
2864 WINE_CONFIG_DLL(d3dx9_34)
2865 WINE_CONFIG_DLL(d3dx9_35)
2866 WINE_CONFIG_DLL(d3dx9_36,,[implib],[d3dx9])
2867 WINE_CONFIG_TEST(dlls/d3dx9_36/tests)
2868 WINE_CONFIG_DLL(d3dx9_37)
2869 WINE_CONFIG_DLL(d3dx9_38)
2870 WINE_CONFIG_DLL(d3dx9_39)
2871 WINE_CONFIG_DLL(d3dx9_40)
2872 WINE_CONFIG_DLL(d3dx9_41)
2873 WINE_CONFIG_DLL(d3dx9_42)
2874 WINE_CONFIG_DLL(d3dx9_43)
2875 WINE_CONFIG_DLL(d3dxof,,[clean,implib])
2876 WINE_CONFIG_TEST(dlls/d3dxof/tests)
2877 WINE_CONFIG_DLL(dbgeng,,[implib])
2878 WINE_CONFIG_DLL(dbghelp,,[implib])
2879 WINE_CONFIG_DLL(dciman32,,[implib])
2880 WINE_CONFIG_DLL(ddeml.dll16,enable_win16)
2881 WINE_CONFIG_DLL(ddraw,,[clean,implib])
2882 WINE_CONFIG_TEST(dlls/ddraw/tests)
2883 WINE_CONFIG_DLL(ddrawex,,[clean])
2884 WINE_CONFIG_TEST(dlls/ddrawex/tests)
2885 WINE_CONFIG_DLL(devenum,,[clean,po])
2886 WINE_CONFIG_TEST(dlls/devenum/tests)
2887 WINE_CONFIG_DLL(dhcpcsvc)
2888 WINE_CONFIG_DLL(difxapi)
2889 WINE_CONFIG_DLL(dinput,,[clean,implib,po,staticimplib])
2890 WINE_CONFIG_TEST(dlls/dinput/tests)
2891 WINE_CONFIG_DLL(dinput8,,[clean,implib])
2892 WINE_CONFIG_TEST(dlls/dinput8/tests)
2893 WINE_CONFIG_DLL(dispdib.dll16,enable_win16)
2894 WINE_CONFIG_DLL(dispex,,[clean])
2895 WINE_CONFIG_TEST(dlls/dispex/tests)
2896 WINE_CONFIG_DLL(display.drv16,enable_win16)
2897 WINE_CONFIG_DLL(dmband,,[clean])
2898 WINE_CONFIG_TEST(dlls/dmband/tests)
2899 WINE_CONFIG_DLL(dmcompos,,[clean])
2900 WINE_CONFIG_TEST(dlls/dmcompos/tests)
2901 WINE_CONFIG_DLL(dmime,,[clean])
2902 WINE_CONFIG_TEST(dlls/dmime/tests)
2903 WINE_CONFIG_DLL(dmloader,,[clean])
2904 WINE_CONFIG_TEST(dlls/dmloader/tests)
2905 WINE_CONFIG_DLL(dmscript,,[clean])
2906 WINE_CONFIG_TEST(dlls/dmscript/tests)
2907 WINE_CONFIG_DLL(dmstyle,,[clean])
2908 WINE_CONFIG_TEST(dlls/dmstyle/tests)
2909 WINE_CONFIG_DLL(dmsynth,,[clean])
2910 WINE_CONFIG_TEST(dlls/dmsynth/tests)
2911 WINE_CONFIG_DLL(dmusic,,[clean])
2912 WINE_CONFIG_TEST(dlls/dmusic/tests)
2913 WINE_CONFIG_DLL(dmusic32,,[implib])
2914 WINE_CONFIG_DLL(dnsapi,,[implib])
2915 WINE_CONFIG_TEST(dlls/dnsapi/tests)
2916 WINE_CONFIG_DLL(dplay,,[implib])
2917 WINE_CONFIG_DLL(dplayx,,[clean,implib])
2918 WINE_CONFIG_TEST(dlls/dplayx/tests)
2919 WINE_CONFIG_DLL(dpnaddr)
2920 WINE_CONFIG_DLL(dpnet,,[clean,implib])
2921 WINE_CONFIG_TEST(dlls/dpnet/tests)
2922 WINE_CONFIG_DLL(dpnhpast)
2923 WINE_CONFIG_DLL(dpnlobby)
2924 WINE_CONFIG_DLL(dpvoice,,[clean])
2925 WINE_CONFIG_TEST(dlls/dpvoice/tests)
2926 WINE_CONFIG_DLL(dpwsockx)
2927 WINE_CONFIG_DLL(drmclien)
2928 WINE_CONFIG_DLL(dsound,,[clean,implib])
2929 WINE_CONFIG_TEST(dlls/dsound/tests)
2930 WINE_CONFIG_DLL(dssenh)
2931 WINE_CONFIG_TEST(dlls/dssenh/tests)
2932 WINE_CONFIG_DLL(dswave,,[clean])
2933 WINE_CONFIG_TEST(dlls/dswave/tests)
2934 WINE_CONFIG_DLL(dwmapi,,[implib])
2935 WINE_CONFIG_DLL(dwrite,,[implib])
2936 WINE_CONFIG_TEST(dlls/dwrite/tests)
2937 WINE_CONFIG_DLL(dxdiagn,,[clean,po])
2938 WINE_CONFIG_TEST(dlls/dxdiagn/tests)
2939 WINE_CONFIG_LIB(dxerr8)
2940 WINE_CONFIG_LIB(dxerr9)
2941 WINE_CONFIG_DLL(dxgi,,[implib])
2942 WINE_CONFIG_TEST(dlls/dxgi/tests)
2943 WINE_CONFIG_LIB(dxguid)
2944 WINE_CONFIG_DLL(dxva2)
2945 WINE_CONFIG_DLL(evr)
2946 WINE_CONFIG_DLL(explorerframe,,[clean])
2947 WINE_CONFIG_TEST(dlls/explorerframe/tests)
2948 WINE_CONFIG_DLL(ext-ms-win-gdi-devcaps-l1-1-0)
2949 WINE_CONFIG_DLL(faultrep,,[implib])
2950 WINE_CONFIG_TEST(dlls/faultrep/tests)
2951 WINE_CONFIG_DLL(fltlib)
2952 WINE_CONFIG_DLL(fntcache)
2953 WINE_CONFIG_DLL(fontsub)
2954 WINE_CONFIG_DLL(fusion)
2955 WINE_CONFIG_TEST(dlls/fusion/tests)
2956 WINE_CONFIG_DLL(fwpuclnt)
2957 WINE_CONFIG_DLL(gameux,,[clean])
2958 WINE_CONFIG_TEST(dlls/gameux/tests)
2959 WINE_CONFIG_DLL(gdi.exe16,enable_win16)
2960 WINE_CONFIG_DLL(gdi32,,[clean,implib,po])
2961 WINE_CONFIG_TEST(dlls/gdi32/tests)
2962 WINE_CONFIG_DLL(gdiplus,,[implib])
2963 WINE_CONFIG_TEST(dlls/gdiplus/tests)
2964 WINE_CONFIG_DLL(glu32,,[implib])
2965 WINE_CONFIG_DLL(gphoto2.ds,,[po])
2966 WINE_CONFIG_DLL(gpkcsp)
2967 WINE_CONFIG_DLL(hal)
2968 WINE_CONFIG_DLL(hhctrl.ocx,,[clean,implib,po],[htmlhelp])
2969 WINE_CONFIG_DLL(hid,,[implib])
2970 WINE_CONFIG_DLL(hlink,,[clean,implib])
2971 WINE_CONFIG_TEST(dlls/hlink/tests)
2972 WINE_CONFIG_DLL(hnetcfg,,[clean])
2973 WINE_CONFIG_DLL(httpapi)
2974 WINE_CONFIG_DLL(iccvid,,[po])
2975 WINE_CONFIG_DLL(icmp)
2976 WINE_CONFIG_DLL(ieframe,,[clean,implib,po])
2977 WINE_CONFIG_TEST(dlls/ieframe/tests)
2978 WINE_CONFIG_DLL(ifsmgr.vxd,enable_win16)
2979 WINE_CONFIG_DLL(imaadp32.acm)
2980 WINE_CONFIG_DLL(imagehlp,,[implib])
2981 WINE_CONFIG_TEST(dlls/imagehlp/tests)
2982 WINE_CONFIG_DLL(imm.dll16,enable_win16)
2983 WINE_CONFIG_DLL(imm32,,[implib])
2984 WINE_CONFIG_TEST(dlls/imm32/tests)
2985 WINE_CONFIG_DLL(inetcomm,,[clean,implib])
2986 WINE_CONFIG_TEST(dlls/inetcomm/tests)
2987 WINE_CONFIG_DLL(inetcpl.cpl,,[po])
2988 WINE_CONFIG_DLL(inetmib1)
2989 WINE_CONFIG_TEST(dlls/inetmib1/tests)
2990 WINE_CONFIG_DLL(infosoft,,[clean])
2991 WINE_CONFIG_TEST(dlls/infosoft/tests)
2992 WINE_CONFIG_DLL(initpki)
2993 WINE_CONFIG_DLL(inkobj)
2994 WINE_CONFIG_DLL(inseng,,[clean])
2995 WINE_CONFIG_DLL(iphlpapi,,[implib])
2996 WINE_CONFIG_TEST(dlls/iphlpapi/tests)
2997 WINE_CONFIG_DLL(itircl)
2998 WINE_CONFIG_DLL(itss,,[clean])
2999 WINE_CONFIG_TEST(dlls/itss/tests)
3000 WINE_CONFIG_DLL(joy.cpl,,[po])
3001 WINE_CONFIG_DLL(jscript,,[clean,po])
3002 WINE_CONFIG_TEST(dlls/jscript/tests)
3003 WINE_CONFIG_DLL(jsproxy,,[implib])
3004 WINE_CONFIG_DLL(kernel32,,[clean,implib,mc])
3005 WINE_CONFIG_TEST(dlls/kernel32/tests)
3006 WINE_CONFIG_DLL(keyboard.drv16,enable_win16)
3007 WINE_CONFIG_DLL(krnl386.exe16,enable_win16,[implib],[kernel])
3008 WINE_CONFIG_DLL(ksuser)
3009 WINE_CONFIG_DLL(ktmw32)
3010 WINE_CONFIG_DLL(loadperf,,[implib])
3011 WINE_CONFIG_DLL(localspl,,[po])
3012 WINE_CONFIG_TEST(dlls/localspl/tests)
3013 WINE_CONFIG_DLL(localui,,[po])
3014 WINE_CONFIG_TEST(dlls/localui/tests)
3015 WINE_CONFIG_DLL(lz32,,[implib])
3016 WINE_CONFIG_TEST(dlls/lz32/tests)
3017 WINE_CONFIG_DLL(lzexpand.dll16,enable_win16)
3018 WINE_CONFIG_DLL(mapi32,,[implib,po])
3019 WINE_CONFIG_TEST(dlls/mapi32/tests)
3020 WINE_CONFIG_DLL(mapistub)
3021 WINE_CONFIG_DLL(mciavi32)
3022 WINE_CONFIG_DLL(mcicda)
3023 WINE_CONFIG_DLL(mciqtz32)
3024 WINE_CONFIG_DLL(mciseq)
3025 WINE_CONFIG_DLL(mciwave)
3026 WINE_CONFIG_DLL(mf)
3027 WINE_CONFIG_DLL(mfplat)
3028 WINE_CONFIG_DLL(mfreadwrite)
3029 WINE_CONFIG_DLL(mgmtapi)
3030 WINE_CONFIG_DLL(midimap)
3031 WINE_CONFIG_DLL(mlang,,[clean,implib])
3032 WINE_CONFIG_TEST(dlls/mlang/tests)
3033 WINE_CONFIG_DLL(mmcndmgr,,[clean])
3034 WINE_CONFIG_TEST(dlls/mmcndmgr/tests)
3035 WINE_CONFIG_DLL(mmdevapi,,[clean])
3036 WINE_CONFIG_TEST(dlls/mmdevapi/tests)
3037 WINE_CONFIG_DLL(mmdevldr.vxd,enable_win16)
3038 WINE_CONFIG_DLL(mmsystem.dll16,enable_win16)
3039 WINE_CONFIG_DLL(monodebg.vxd,enable_win16)
3040 WINE_CONFIG_DLL(mountmgr.sys)
3041 WINE_CONFIG_DLL(mouse.drv16,enable_win16)
3042 WINE_CONFIG_DLL(mpr,,[implib,po])
3043 WINE_CONFIG_TEST(dlls/mpr/tests)
3044 WINE_CONFIG_DLL(mprapi,,[implib])
3045 WINE_CONFIG_DLL(msacm.dll16,enable_win16)
3046 WINE_CONFIG_DLL(msacm32.drv)
3047 WINE_CONFIG_DLL(msacm32,,[implib,po])
3048 WINE_CONFIG_TEST(dlls/msacm32/tests)
3049 WINE_CONFIG_DLL(msadp32.acm)
3050 WINE_CONFIG_DLL(msasn1,,[implib])
3051 WINE_CONFIG_DLL(mscat32)
3052 WINE_CONFIG_DLL(mscms,,[implib])
3053 WINE_CONFIG_TEST(dlls/mscms/tests)
3054 WINE_CONFIG_DLL(mscoree,,[clean])
3055 WINE_CONFIG_TEST(dlls/mscoree/tests)
3056 WINE_CONFIG_DLL(msctf,,[clean])
3057 WINE_CONFIG_TEST(dlls/msctf/tests)
3058 WINE_CONFIG_DLL(msdaps,,[clean])
3059 WINE_CONFIG_DLL(msdmo,,[implib])
3060 WINE_CONFIG_TEST(dlls/msdmo/tests)
3061 WINE_CONFIG_DLL(msftedit)
3062 WINE_CONFIG_DLL(msg711.acm)
3063 WINE_CONFIG_DLL(msgsm32.acm)
3064 WINE_CONFIG_DLL(mshtml.tlb,,[clean])
3065 WINE_CONFIG_DLL(mshtml,,[clean,implib,po])
3066 WINE_CONFIG_TEST(dlls/mshtml/tests,[clean])
3067 WINE_CONFIG_DLL(msi,,[clean,implib,po])
3068 WINE_CONFIG_TEST(dlls/msi/tests)
3069 WINE_CONFIG_DLL(msident,,[clean])
3070 WINE_CONFIG_DLL(msimg32,,[implib])
3071 WINE_CONFIG_DLL(msimsg)
3072 WINE_CONFIG_DLL(msimtf,,[clean])
3073 WINE_CONFIG_DLL(msisip)
3074 WINE_CONFIG_DLL(msisys.ocx)
3075 WINE_CONFIG_DLL(msls31)
3076 WINE_CONFIG_DLL(msnet32)
3077 WINE_CONFIG_DLL(mspatcha,,[implib])
3078 WINE_CONFIG_DLL(msrle32,,[po])
3079 WINE_CONFIG_TEST(dlls/msrle32/tests)
3080 WINE_CONFIG_DLL(mssign32)
3081 WINE_CONFIG_DLL(mssip32)
3082 WINE_CONFIG_DLL(mstask,,[clean])
3083 WINE_CONFIG_TEST(dlls/mstask/tests)
3084 WINE_CONFIG_DLL(msvcirt)
3085 WINE_CONFIG_DLL(msvcm80)
3086 WINE_CONFIG_DLL(msvcm90)
3087 WINE_CONFIG_DLL(msvcp100)
3088 WINE_CONFIG_TEST(dlls/msvcp100/tests)
3089 WINE_CONFIG_DLL(msvcp110)
3090 WINE_CONFIG_DLL(msvcp120)
3091 WINE_CONFIG_TEST(dlls/msvcp120/tests)
3092 WINE_CONFIG_DLL(msvcp120_app)
3093 WINE_CONFIG_DLL(msvcp60)
3094 WINE_CONFIG_TEST(dlls/msvcp60/tests)
3095 WINE_CONFIG_DLL(msvcp70)
3096 WINE_CONFIG_DLL(msvcp71)
3097 WINE_CONFIG_DLL(msvcp80)
3098 WINE_CONFIG_DLL(msvcp90)
3099 WINE_CONFIG_TEST(dlls/msvcp90/tests)
3100 WINE_CONFIG_DLL(msvcr100,,[implib])
3101 WINE_CONFIG_TEST(dlls/msvcr100/tests)
3102 WINE_CONFIG_DLL(msvcr110,,[implib])
3103 WINE_CONFIG_DLL(msvcr120,,[implib])
3104 WINE_CONFIG_TEST(dlls/msvcr120/tests)
3105 WINE_CONFIG_DLL(msvcr120_app)
3106 WINE_CONFIG_DLL(msvcr70,,[implib])
3107 WINE_CONFIG_DLL(msvcr71,,[implib])
3108 WINE_CONFIG_DLL(msvcr80,,[implib])
3109 WINE_CONFIG_DLL(msvcr90,,[implib])
3110 WINE_CONFIG_TEST(dlls/msvcr90/tests)
3111 WINE_CONFIG_DLL(msvcrt,,[implib])
3112 WINE_CONFIG_TEST(dlls/msvcrt/tests)
3113 WINE_CONFIG_DLL(msvcrt20,,[implib])
3114 WINE_CONFIG_DLL(msvcrt40,,[implib])
3115 WINE_CONFIG_DLL(msvcrtd,,[implib])
3116 WINE_CONFIG_TEST(dlls/msvcrtd/tests)
3117 WINE_CONFIG_DLL(msvfw32,,[implib,po])
3118 WINE_CONFIG_TEST(dlls/msvfw32/tests)
3119 WINE_CONFIG_DLL(msvidc32,,[po])
3120 WINE_CONFIG_DLL(msvideo.dll16,enable_win16)
3121 WINE_CONFIG_DLL(mswsock,,[implib])
3122 WINE_CONFIG_DLL(msxml,,[clean])
3123 WINE_CONFIG_DLL(msxml2,,[clean])
3124 WINE_CONFIG_DLL(msxml3,,[clean])
3125 WINE_CONFIG_TEST(dlls/msxml3/tests,[clean])
3126 WINE_CONFIG_DLL(msxml4,,[clean])
3127 WINE_CONFIG_DLL(msxml6,,[clean])
3128 WINE_CONFIG_DLL(nddeapi,,[implib])
3129 WINE_CONFIG_DLL(ndis.sys)
3130 WINE_CONFIG_DLL(netapi32,,[implib])
3131 WINE_CONFIG_TEST(dlls/netapi32/tests)
3132 WINE_CONFIG_DLL(netcfgx,,[clean])
3133 WINE_CONFIG_TEST(dlls/netcfgx/tests)
3134 WINE_CONFIG_DLL(netprofm,,[clean])
3135 WINE_CONFIG_TEST(dlls/netprofm/tests)
3136 WINE_CONFIG_DLL(newdev,,[implib])
3137 WINE_CONFIG_DLL(normaliz,,[implib])
3138 WINE_CONFIG_DLL(npmshtml)
3139 WINE_CONFIG_DLL(npptools)
3140 WINE_CONFIG_DLL(ntdll,,[implib])
3141 WINE_CONFIG_TEST(dlls/ntdll/tests)
3142 WINE_CONFIG_DLL(ntdsapi,,[implib])
3143 WINE_CONFIG_TEST(dlls/ntdsapi/tests)
3144 WINE_CONFIG_DLL(ntoskrnl.exe,,[implib])
3145 WINE_CONFIG_DLL(ntprint)
3146 WINE_CONFIG_TEST(dlls/ntprint/tests)
3147 WINE_CONFIG_DLL(objsel,,[clean])
3148 WINE_CONFIG_DLL(odbc32,,[implib])
3149 WINE_CONFIG_DLL(odbccp32,,[implib])
3150 WINE_CONFIG_TEST(dlls/odbccp32/tests)
3151 WINE_CONFIG_DLL(odbccu32)
3152 WINE_CONFIG_DLL(ole2.dll16,enable_win16)
3153 WINE_CONFIG_DLL(ole2conv.dll16,enable_win16)
3154 WINE_CONFIG_DLL(ole2disp.dll16,enable_win16)
3155 WINE_CONFIG_DLL(ole2nls.dll16,enable_win16)
3156 WINE_CONFIG_DLL(ole2prox.dll16,enable_win16)
3157 WINE_CONFIG_DLL(ole2thk.dll16,enable_win16)
3158 WINE_CONFIG_DLL(ole32,,[clean,implib])
3159 WINE_CONFIG_TEST(dlls/ole32/tests)
3160 WINE_CONFIG_DLL(oleacc,,[clean,implib,po])
3161 WINE_CONFIG_TEST(dlls/oleacc/tests)
3162 WINE_CONFIG_DLL(oleaut32,,[clean,implib,po])
3163 WINE_CONFIG_TEST(dlls/oleaut32/tests,[clean])
3164 WINE_CONFIG_DLL(olecli.dll16,enable_win16)
3165 WINE_CONFIG_DLL(olecli32,,[implib])
3166 WINE_CONFIG_DLL(oledb32,,[clean])
3167 WINE_CONFIG_TEST(dlls/oledb32/tests,[clean])
3168 WINE_CONFIG_DLL(oledlg,,[implib,po])
3169 WINE_CONFIG_DLL(olepro32,,[implib])
3170 WINE_CONFIG_DLL(olesvr.dll16,enable_win16)
3171 WINE_CONFIG_DLL(olesvr32,,[implib])
3172 WINE_CONFIG_DLL(olethk32)
3173 WINE_CONFIG_DLL(openal32)
3174 WINE_CONFIG_DLL(opencl)
3175 WINE_CONFIG_DLL(opengl32,,[implib])
3176 WINE_CONFIG_TEST(dlls/opengl32/tests)
3177 WINE_CONFIG_DLL(packager,,[clean])
3178 WINE_CONFIG_TEST(dlls/packager/tests)
3179 WINE_CONFIG_DLL(pdh,,[implib])
3180 WINE_CONFIG_TEST(dlls/pdh/tests)
3181 WINE_CONFIG_DLL(photometadatahandler)
3182 WINE_CONFIG_DLL(pidgen)
3183 WINE_CONFIG_DLL(powrprof,,[implib])
3184 WINE_CONFIG_DLL(printui)
3185 WINE_CONFIG_DLL(prntvpt)
3186 WINE_CONFIG_DLL(propsys,,[clean,implib])
3187 WINE_CONFIG_TEST(dlls/propsys/tests)
3188 WINE_CONFIG_DLL(psapi,,[implib])
3189 WINE_CONFIG_TEST(dlls/psapi/tests)
3190 WINE_CONFIG_DLL(pstorec,,[clean])
3191 WINE_CONFIG_DLL(qcap)
3192 WINE_CONFIG_TEST(dlls/qcap/tests)
3193 WINE_CONFIG_DLL(qedit,,[clean])
3194 WINE_CONFIG_TEST(dlls/qedit/tests)
3195 WINE_CONFIG_DLL(qmgr,,[clean])
3196 WINE_CONFIG_TEST(dlls/qmgr/tests)
3197 WINE_CONFIG_DLL(qmgrprxy,,[clean])
3198 WINE_CONFIG_DLL(quartz,,[clean,implib])
3199 WINE_CONFIG_TEST(dlls/quartz/tests,[clean])
3200 WINE_CONFIG_DLL(query)
3201 WINE_CONFIG_DLL(rasapi16.dll16,enable_win16)
3202 WINE_CONFIG_DLL(rasapi32,,[implib])
3203 WINE_CONFIG_TEST(dlls/rasapi32/tests)
3204 WINE_CONFIG_DLL(rasdlg,,[implib])
3205 WINE_CONFIG_DLL(regapi)
3206 WINE_CONFIG_DLL(resutils,,[implib])
3207 WINE_CONFIG_DLL(riched20,,[implib])
3208 WINE_CONFIG_TEST(dlls/riched20/tests)
3209 WINE_CONFIG_DLL(riched32)
3210 WINE_CONFIG_TEST(dlls/riched32/tests)
3211 WINE_CONFIG_DLL(rpcrt4,,[clean,implib])
3212 WINE_CONFIG_TEST(dlls/rpcrt4/tests,[clean])
3213 WINE_CONFIG_DLL(rsabase)
3214 WINE_CONFIG_DLL(rsaenh,,[implib])
3215 WINE_CONFIG_TEST(dlls/rsaenh/tests)
3216 WINE_CONFIG_DLL(rstrtmgr)
3217 WINE_CONFIG_DLL(rtutils,,[implib])
3218 WINE_CONFIG_DLL(samlib)
3219 WINE_CONFIG_DLL(sane.ds,,[po])
3220 WINE_CONFIG_DLL(scarddlg)
3221 WINE_CONFIG_DLL(sccbase)
3222 WINE_CONFIG_DLL(schannel)
3223 WINE_CONFIG_TEST(dlls/schannel/tests)
3224 WINE_CONFIG_DLL(schedsvc,,[clean])
3225 WINE_CONFIG_TEST(dlls/schedsvc/tests,[clean])
3226 WINE_CONFIG_DLL(scrrun,,[clean])
3227 WINE_CONFIG_TEST(dlls/scrrun/tests,[clean])
3228 WINE_CONFIG_DLL(scsiport.sys)
3229 WINE_CONFIG_DLL(secur32,,[implib])
3230 WINE_CONFIG_TEST(dlls/secur32/tests)
3231 WINE_CONFIG_DLL(security)
3232 WINE_CONFIG_DLL(sensapi,,[implib])
3233 WINE_CONFIG_DLL(serialui,,[implib,po])
3234 WINE_CONFIG_TEST(dlls/serialui/tests)
3235 WINE_CONFIG_DLL(setupapi,,[implib,po])
3236 WINE_CONFIG_TEST(dlls/setupapi/tests)
3237 WINE_CONFIG_DLL(setupx.dll16,enable_win16)
3238 WINE_CONFIG_DLL(sfc,,[implib])
3239 WINE_CONFIG_DLL(sfc_os,,[implib])
3240 WINE_CONFIG_DLL(shdoclc,,[po])
3241 WINE_CONFIG_DLL(shdocvw,,[clean,implib])
3242 WINE_CONFIG_TEST(dlls/shdocvw/tests)
3243 WINE_CONFIG_DLL(shell.dll16,enable_win16)
3244 WINE_CONFIG_DLL(shell32,,[clean,implib,po])
3245 WINE_CONFIG_TEST(dlls/shell32/tests)
3246 WINE_CONFIG_DLL(shfolder,,[implib])
3247 WINE_CONFIG_DLL(shlwapi,,[implib,po])
3248 WINE_CONFIG_TEST(dlls/shlwapi/tests)
3249 WINE_CONFIG_DLL(slbcsp)
3250 WINE_CONFIG_DLL(slc,,[implib])
3251 WINE_CONFIG_TEST(dlls/slc/tests)
3252 WINE_CONFIG_DLL(snmpapi,,[implib])
3253 WINE_CONFIG_TEST(dlls/snmpapi/tests)
3254 WINE_CONFIG_DLL(softpub)
3255 WINE_CONFIG_DLL(sound.drv16,enable_win16)
3256 WINE_CONFIG_DLL(spoolss,,[implib])
3257 WINE_CONFIG_TEST(dlls/spoolss/tests)
3258 WINE_CONFIG_DLL(stdole2.tlb,,[clean])
3259 WINE_CONFIG_DLL(stdole32.tlb,,[clean])
3260 WINE_CONFIG_DLL(sti,,[clean,implib])
3261 WINE_CONFIG_TEST(dlls/sti/tests)
3262 WINE_CONFIG_DLL(storage.dll16,enable_win16)
3263 WINE_CONFIG_DLL(stress.dll16,enable_win16)
3264 WINE_CONFIG_LIB(strmbase)
3265 WINE_CONFIG_LIB(strmiids)
3266 WINE_CONFIG_DLL(svrapi)
3267 WINE_CONFIG_DLL(sxs,,[implib])
3268 WINE_CONFIG_TEST(dlls/sxs/tests)
3269 WINE_CONFIG_DLL(system.drv16,enable_win16)
3270 WINE_CONFIG_DLL(t2embed)
3271 WINE_CONFIG_DLL(tapi32,,[implib])
3272 WINE_CONFIG_DLL(taskschd,,[clean])
3273 WINE_CONFIG_TEST(dlls/taskschd/tests)
3274 WINE_CONFIG_DLL(toolhelp.dll16,enable_win16)
3275 WINE_CONFIG_DLL(traffic)
3276 WINE_CONFIG_DLL(twain.dll16,enable_win16)
3277 WINE_CONFIG_DLL(twain_32)
3278 WINE_CONFIG_TEST(dlls/twain_32/tests)
3279 WINE_CONFIG_DLL(typelib.dll16,enable_win16)
3280 WINE_CONFIG_DLL(unicows,,[implib])
3281 WINE_CONFIG_DLL(updspapi)
3282 WINE_CONFIG_DLL(url,,[implib])
3283 WINE_CONFIG_DLL(urlmon,,[clean,implib,po])
3284 WINE_CONFIG_TEST(dlls/urlmon/tests)
3285 WINE_CONFIG_DLL(usbd.sys,,[implib])
3286 WINE_CONFIG_DLL(user.exe16,enable_win16)
3287 WINE_CONFIG_DLL(user32,,[clean,implib,po])
3288 WINE_CONFIG_TEST(dlls/user32/tests)
3289 WINE_CONFIG_DLL(userenv,,[implib])
3290 WINE_CONFIG_TEST(dlls/userenv/tests)
3291 WINE_CONFIG_DLL(usp10,,[implib])
3292 WINE_CONFIG_TEST(dlls/usp10/tests)
3293 WINE_CONFIG_LIB(uuid)
3294 WINE_CONFIG_DLL(uxtheme,,[implib])
3295 WINE_CONFIG_TEST(dlls/uxtheme/tests)
3296 WINE_CONFIG_DLL(vbscript,,[clean])
3297 WINE_CONFIG_TEST(dlls/vbscript/tests,[clean])
3298 WINE_CONFIG_DLL(vcomp)
3299 WINE_CONFIG_DLL(vcomp100)
3300 WINE_CONFIG_DLL(vcomp90)
3301 WINE_CONFIG_DLL(vdhcp.vxd,enable_win16)
3302 WINE_CONFIG_DLL(vdmdbg,,[implib])
3303 WINE_CONFIG_DLL(ver.dll16,enable_win16)
3304 WINE_CONFIG_DLL(version,,[implib])
3305 WINE_CONFIG_TEST(dlls/version/tests)
3306 WINE_CONFIG_DLL(vmm.vxd,enable_win16)
3307 WINE_CONFIG_DLL(vnbt.vxd,enable_win16)
3308 WINE_CONFIG_DLL(vnetbios.vxd,enable_win16)
3309 WINE_CONFIG_DLL(vssapi)
3310 WINE_CONFIG_DLL(vtdapi.vxd,enable_win16)
3311 WINE_CONFIG_DLL(vwin32.vxd,enable_win16)
3312 WINE_CONFIG_DLL(w32skrnl,enable_win16)
3313 WINE_CONFIG_DLL(w32sys.dll16,enable_win16)
3314 WINE_CONFIG_DLL(wbemdisp,,[clean])
3315 WINE_CONFIG_TEST(dlls/wbemdisp/tests)
3316 WINE_CONFIG_DLL(wbemprox,,[clean])
3317 WINE_CONFIG_TEST(dlls/wbemprox/tests)
3318 WINE_CONFIG_DLL(webservices,,[implib])
3319 WINE_CONFIG_DLL(wer,,[implib])
3320 WINE_CONFIG_TEST(dlls/wer/tests)
3321 WINE_CONFIG_DLL(wevtapi)
3322 WINE_CONFIG_DLL(wiaservc,,[clean])
3323 WINE_CONFIG_DLL(win32s16.dll16,enable_win16)
3324 WINE_CONFIG_DLL(win87em.dll16,enable_win16)
3325 WINE_CONFIG_DLL(winaspi.dll16,enable_win16)
3326 WINE_CONFIG_DLL(windebug.dll16,enable_win16)
3327 WINE_CONFIG_DLL(windowscodecs,,[clean,implib])
3328 WINE_CONFIG_TEST(dlls/windowscodecs/tests)
3329 WINE_CONFIG_DLL(windowscodecsext,,[implib])
3330 WINE_CONFIG_TEST(dlls/windowscodecsext/tests)
3331 WINE_CONFIG_DLL(winealsa.drv)
3332 WINE_CONFIG_DLL(winecoreaudio.drv)
3333 WINE_CONFIG_LIB(winecrt0)
3334 WINE_CONFIG_DLL(wined3d,,[implib])
3335 WINE_CONFIG_DLL(winegstreamer)
3336 WINE_CONFIG_DLL(winejoystick.drv)
3337 WINE_CONFIG_DLL(winemac.drv)
3338 WINE_CONFIG_DLL(winemapi)
3339 WINE_CONFIG_DLL(winemp3.acm)
3340 WINE_CONFIG_DLL(wineoss.drv)
3341 WINE_CONFIG_DLL(wineps.drv,,[clean,po])
3342 WINE_CONFIG_DLL(wineps16.drv16,enable_win16)
3343 WINE_CONFIG_DLL(wineqtdecoder)
3344 WINE_CONFIG_DLL(winex11.drv)
3345 WINE_CONFIG_DLL(wing.dll16,enable_win16)
3346 WINE_CONFIG_DLL(wing32)
3347 WINE_CONFIG_DLL(winhttp,,[clean,implib])
3348 WINE_CONFIG_TEST(dlls/winhttp/tests)
3349 WINE_CONFIG_DLL(wininet,,[implib,po])
3350 WINE_CONFIG_TEST(dlls/wininet/tests)
3351 WINE_CONFIG_DLL(winmm,,[implib,po])
3352 WINE_CONFIG_TEST(dlls/winmm/tests)
3353 WINE_CONFIG_DLL(winnls.dll16,enable_win16)
3354 WINE_CONFIG_DLL(winnls32,,[implib])
3355 WINE_CONFIG_DLL(winscard,,[implib])
3356 WINE_CONFIG_DLL(winsock.dll16,enable_win16)
3357 WINE_CONFIG_DLL(winspool.drv,,[implib,po],[winspool])
3358 WINE_CONFIG_TEST(dlls/winspool.drv/tests)
3359 WINE_CONFIG_DLL(winsta)
3360 WINE_CONFIG_DLL(wintab.dll16,enable_win16)
3361 WINE_CONFIG_DLL(wintab32,,[implib])
3362 WINE_CONFIG_TEST(dlls/wintab32/tests)
3363 WINE_CONFIG_DLL(wintrust,,[implib])
3364 WINE_CONFIG_TEST(dlls/wintrust/tests)
3365 WINE_CONFIG_DLL(wlanapi)
3366 WINE_CONFIG_DLL(wldap32,,[implib,po])
3367 WINE_CONFIG_TEST(dlls/wldap32/tests)
3368 WINE_CONFIG_DLL(wmi)
3369 WINE_CONFIG_DLL(wmiutils,,[clean])
3370 WINE_CONFIG_TEST(dlls/wmiutils/tests)
3371 WINE_CONFIG_DLL(wmp,,[clean])
3372 WINE_CONFIG_TEST(dlls/wmp/tests)
3373 WINE_CONFIG_DLL(wmvcore)
3374 WINE_CONFIG_DLL(wnaspi32,,[implib])
3375 WINE_CONFIG_DLL(wow32,enable_win16,[implib])
3376 WINE_CONFIG_DLL(wpcap)
3377 WINE_CONFIG_DLL(ws2_32,,[implib])
3378 WINE_CONFIG_TEST(dlls/ws2_32/tests)
3379 WINE_CONFIG_DLL(wshom.ocx,,[clean])
3380 WINE_CONFIG_TEST(dlls/wshom.ocx/tests,[clean])
3381 WINE_CONFIG_DLL(wsnmp32,,[implib])
3382 WINE_CONFIG_TEST(dlls/wsnmp32/tests)
3383 WINE_CONFIG_DLL(wsock32,,[implib])
3384 WINE_CONFIG_DLL(wtsapi32,,[implib])
3385 WINE_CONFIG_TEST(dlls/wtsapi32/tests)
3386 WINE_CONFIG_DLL(wuapi,,[clean])
3387 WINE_CONFIG_DLL(wuaueng)
3388 WINE_CONFIG_DLL(x3daudio1_1)
3389 WINE_CONFIG_DLL(x3daudio1_2)
3390 WINE_CONFIG_DLL(x3daudio1_3)
3391 WINE_CONFIG_DLL(x3daudio1_4)
3392 WINE_CONFIG_DLL(x3daudio1_5)
3393 WINE_CONFIG_DLL(x3daudio1_6)
3394 WINE_CONFIG_DLL(x3daudio1_7)
3395 WINE_CONFIG_DLL(xapofx1_1)
3396 WINE_CONFIG_DLL(xapofx1_3)
3397 WINE_CONFIG_DLL(xapofx1_4)
3398 WINE_CONFIG_DLL(xapofx1_5)
3399 WINE_CONFIG_DLL(xaudio2_7)
3400 WINE_CONFIG_DLL(xinput1_1)
3401 WINE_CONFIG_DLL(xinput1_2)
3402 WINE_CONFIG_DLL(xinput1_3,,[implib],[xinput])
3403 WINE_CONFIG_TEST(dlls/xinput1_3/tests)
3404 WINE_CONFIG_DLL(xinput1_4)
3405 WINE_CONFIG_DLL(xinput9_1_0)
3406 WINE_CONFIG_DLL(xmllite,,[implib])
3407 WINE_CONFIG_TEST(dlls/xmllite/tests)
3408 WINE_CONFIG_DLL(xolehlp)
3409 WINE_CONFIG_DLL(xpsprint)
3410 WINE_CONFIG_DLL(xpssvcs)
3411 WINE_CONFIG_MAKEFILE([documentation],,[clean])
3412 WINE_CONFIG_MAKEFILE([fonts],,[clean,install-lib])
3413 WINE_CONFIG_MAKEFILE([include],,[clean,install-dev])
3414 WINE_CONFIG_MAKEFILE([libs/port])
3415 WINE_CONFIG_MAKEFILE([libs/wine],,[clean,install-dev,install-lib])
3416 WINE_CONFIG_MAKEFILE([libs/wpp])
3417 WINE_CONFIG_MAKEFILE([loader],,[clean,install-lib,manpage])
3418 WINE_CONFIG_PROGRAM(arp,,[install])
3419 WINE_CONFIG_PROGRAM(aspnet_regiis,,[install])
3420 WINE_CONFIG_PROGRAM(attrib,,[install,po])
3421 WINE_CONFIG_PROGRAM(cabarc,,[install])
3422 WINE_CONFIG_PROGRAM(cacls,,[install])
3423 WINE_CONFIG_PROGRAM(clock,,[install,po])
3424 WINE_CONFIG_PROGRAM(cmd,,[install,po])
3425 WINE_CONFIG_TEST(programs/cmd/tests)
3426 WINE_CONFIG_PROGRAM(conhost,,[install])
3427 WINE_CONFIG_PROGRAM(control,,[install])
3428 WINE_CONFIG_PROGRAM(cscript,,[clean,install])
3429 WINE_CONFIG_PROGRAM(dpnsvr,,[install])
3430 WINE_CONFIG_PROGRAM(dxdiag,,[install,po])
3431 WINE_CONFIG_PROGRAM(eject,,[install])
3432 WINE_CONFIG_PROGRAM(expand,,[install])
3433 WINE_CONFIG_PROGRAM(explorer,,[install,po])
3434 WINE_CONFIG_PROGRAM(extrac32,,[install])
3435 WINE_CONFIG_PROGRAM(findstr,,[install])
3436 WINE_CONFIG_PROGRAM(hh,,[install])
3437 WINE_CONFIG_PROGRAM(hostname,,[install,po])
3438 WINE_CONFIG_PROGRAM(icinfo,,[install])
3439 WINE_CONFIG_PROGRAM(iexplore,,[install])
3440 WINE_CONFIG_PROGRAM(ipconfig,,[install,po])
3441 WINE_CONFIG_PROGRAM(lodctr,,[install])
3442 WINE_CONFIG_PROGRAM(mofcomp,,[install])
3443 WINE_CONFIG_PROGRAM(mshta,,[install])
3444 WINE_CONFIG_PROGRAM(msiexec,,[install,installbin,manpage])
3445 WINE_CONFIG_PROGRAM(net,,[install,po])
3446 WINE_CONFIG_PROGRAM(netsh,,[install])
3447 WINE_CONFIG_PROGRAM(netstat,,[install,po])
3448 WINE_CONFIG_PROGRAM(ngen,,[install])
3449 WINE_CONFIG_PROGRAM(notepad,,[install,installbin,manpage,po])
3450 WINE_CONFIG_PROGRAM(oleview,,[install,po])
3451 WINE_CONFIG_PROGRAM(ping,,[install])
3452 WINE_CONFIG_PROGRAM(plugplay,,[install])
3453 WINE_CONFIG_PROGRAM(presentationfontcache,,[install])
3454 WINE_CONFIG_PROGRAM(progman,,[install,po])
3455 WINE_CONFIG_PROGRAM(reg,,[install,po])
3456 WINE_CONFIG_TEST(programs/reg/tests)
3457 WINE_CONFIG_PROGRAM(regasm,,[install])
3458 WINE_CONFIG_PROGRAM(regedit,,[install,installbin,manpage,po])
3459 WINE_CONFIG_TEST(programs/regedit/tests)
3460 WINE_CONFIG_PROGRAM(regsvcs,,[install])
3461 WINE_CONFIG_PROGRAM(regsvr32,,[install,installbin,manpage,po])
3462 WINE_CONFIG_PROGRAM(rpcss,,[clean,install])
3463 WINE_CONFIG_PROGRAM(rundll.exe16,enable_win16,[install])
3464 WINE_CONFIG_PROGRAM(rundll32,,[install])
3465 WINE_CONFIG_PROGRAM(sc,,[install])
3466 WINE_CONFIG_PROGRAM(schtasks,,[install])
3467 WINE_CONFIG_PROGRAM(sdbinst,,[install])
3468 WINE_CONFIG_PROGRAM(secedit,,[install])
3469 WINE_CONFIG_PROGRAM(servicemodelreg,,[install])
3470 WINE_CONFIG_PROGRAM(services,,[clean,install])
3471 WINE_CONFIG_TEST(programs/services/tests)
3472 WINE_CONFIG_PROGRAM(spoolsv,,[install])
3473 WINE_CONFIG_PROGRAM(start,,[install,po])
3474 WINE_CONFIG_PROGRAM(svchost,,[install])
3475 WINE_CONFIG_PROGRAM(systeminfo,,[install])
3476 WINE_CONFIG_PROGRAM(taskkill,,[install,po])
3477 WINE_CONFIG_PROGRAM(tasklist,,[install])
3478 WINE_CONFIG_PROGRAM(taskmgr,,[install,po])
3479 WINE_CONFIG_PROGRAM(termsv,,[install])
3480 WINE_CONFIG_PROGRAM(uninstaller,,[install,po])
3481 WINE_CONFIG_PROGRAM(unlodctr,,[install])
3482 WINE_CONFIG_PROGRAM(view,,[install,po])
3483 WINE_CONFIG_PROGRAM(wevtutil,,[install])
3484 WINE_CONFIG_PROGRAM(wineboot,,[install,installbin,manpage,po])
3485 WINE_CONFIG_PROGRAM(winebrowser,,[install])
3486 WINE_CONFIG_PROGRAM(winecfg,,[install,installbin,manpage,po])
3487 WINE_CONFIG_PROGRAM(wineconsole,,[install,installbin,manpage,po])
3488 WINE_CONFIG_PROGRAM(winedbg,,[install,installbin,manpage,po])
3489 WINE_CONFIG_PROGRAM(winedevice,,[install])
3490 WINE_CONFIG_PROGRAM(winefile,,[install,installbin,manpage,po])
3491 WINE_CONFIG_PROGRAM(winemenubuilder,,[install])
3492 WINE_CONFIG_PROGRAM(winemine,,[install,installbin,manpage,po])
3493 WINE_CONFIG_PROGRAM(winemsibuilder,,[install])
3494 WINE_CONFIG_PROGRAM(winepath,,[install,installbin,manpage])
3495 WINE_CONFIG_PROGRAM(winetest,,[clean])
3496 WINE_CONFIG_PROGRAM(winevdm,enable_win16,[install])
3497 WINE_CONFIG_PROGRAM(winhelp.exe16,enable_win16,[install])
3498 WINE_CONFIG_PROGRAM(winhlp32,,[install,po])
3499 WINE_CONFIG_PROGRAM(winoldap.mod16,enable_win16,[install])
3500 WINE_CONFIG_PROGRAM(winver,,[install])
3501 WINE_CONFIG_PROGRAM(wmic,,[install,po])
3502 WINE_CONFIG_PROGRAM(wordpad,,[install,po])
3503 WINE_CONFIG_PROGRAM(write,,[install,po])
3504 WINE_CONFIG_PROGRAM(wscript,,[clean,install])
3505 WINE_CONFIG_TEST(programs/wscript/tests)
3506 WINE_CONFIG_PROGRAM(wusa,,[install])
3507 WINE_CONFIG_PROGRAM(xcopy,,[install,po])
3508 WINE_CONFIG_TEST(programs/xcopy/tests)
3509 WINE_CONFIG_MAKEFILE([server],,[clean,install-lib,manpage])
3510 WINE_CONFIG_TOOL(tools,[clean,install-dev,install-lib,manpage])
3511 WINE_CONFIG_TOOL(tools/sfnt2fon,[clean])
3512 WINE_CONFIG_TOOL(tools/widl,[clean,install-dev,manpage])
3513 WINE_CONFIG_TOOL(tools/winebuild,[clean,install-dev,manpage])
3514 WINE_CONFIG_TOOL(tools/winedump,[clean,install-dev,manpage])
3515 WINE_CONFIG_TOOL(tools/winegcc,[clean,install-dev,manpage])
3516 WINE_CONFIG_TOOL(tools/wmc,[clean,install-dev,manpage])
3517 WINE_CONFIG_TOOL(tools/wrc,[clean,install-dev,manpage])
3519 AC_SUBST([LINGUAS],["\
3520 ar \
3521 bg \
3522 ca \
3523 cs \
3524 da \
3525 de \
3526 el \
3527 en \
3528 en_US \
3529 eo \
3530 es \
3531 fa \
3532 fi \
3533 fr \
3534 he \
3535 hi \
3536 hr \
3537 hu \
3538 it \
3539 ja \
3540 ko \
3541 lt \
3542 ml \
3543 nb_NO \
3544 nl \
3545 or \
3546 pa \
3547 pl \
3548 pt_BR \
3549 pt_PT \
3550 rm \
3551 ro \
3552 ru \
3553 sk \
3554 sl \
3555 sr_RS@cyrillic \
3556 sr_RS@latin \
3557 sv \
3558 te \
3559 th \
3560 tr \
3561 uk \
3562 wa \
3563 zh_CN \
3564 zh_TW"])
3566 dnl End of auto-generated output commands
3568 dnl Main ignore file
3570 WINE_IGNORE_FILE(".gitignore")
3571 WINE_IGNORE_FILE("Makefile")
3572 WINE_IGNORE_FILE("TAGS")
3573 WINE_IGNORE_FILE("tags")
3574 WINE_IGNORE_FILE("autom4te.cache")
3575 WINE_IGNORE_FILE("config.cache")
3576 WINE_IGNORE_FILE("config.log")
3577 WINE_IGNORE_FILE("config.status")
3578 WINE_IGNORE_FILE("configure.lineno")
3579 WINE_IGNORE_FILE("include/config.h")
3580 WINE_IGNORE_FILE("include/stamp-h")
3581 test "$wine_binary" = wine || WINE_IGNORE_FILE("loader/wine")
3583 if test "x$enable_tools" != xno
3584 then
3585     WINE_IGNORE_FILE("tools/makedep$ac_exeext")
3586     AC_CONFIG_COMMANDS([tools/makedep],[wine_fn_output_makedep || AS_EXIT],
3587 [wine_fn_output_makedep ()
3589     AS_MKDIR_P(tools)
3590     $CC -Iinclude -I$srcdir/include -D__WINESRC__ $EXTRACFLAGS $CPPFLAGS $CFLAGS -o tools/makedep$ac_exeext $srcdir/tools/makedep.c $LDFLAGS
3594 AC_CONFIG_COMMANDS([Makefile], [wine_fn_output_makefile Makefile],
3595 [wine_fn_output_makefile ()
3597     cat Make.tmp - <<\_WINE_EOF >\$tmp/makefile && mv -f \$tmp/makefile \$[]1 && rm -f Make.tmp && "$wine_makedep" . && return
3598 `cat $wine_rules_file`
3599 _WINE_EOF
3600     AS_ERROR([could not create Makefile])
3603 AC_CONFIG_FILES([Make.tmp:Make.vars.in:Makefile.in])
3605 dnl Some final makefile rules
3607 if test "x$enable_maintainer_mode" = xyes
3608 then
3609     WINE_APPEND_RULE(
3610 [configure: configure.ac aclocal.m4
3611         autoconf --warnings=all
3612 include/config.h.in: include/stamp-h.in
3613 include/stamp-h.in: configure.ac aclocal.m4
3614         autoheader --warnings=all
3615         @echo timestamp > \$[@]])
3618 if test "x$with_gettextpo" = xyes
3619 then
3620     test "$srcdir" = . || AC_MSG_ERROR([Rebuilding po files is not supported for out of tree builds.])
3621     WINE_APPEND_RULE(
3622 [ALL_POT_FILES =$ALL_POT_FILES
3623 \$(LINGUAS:%=po/%.po): po/wine.pot
3624         msgmerge --previous -q \$[@] po/wine.pot | msgattrib --no-obsolete -o \$[@].new && mv \$[@].new \$[@]
3625 po/wine.pot: \$(ALL_POT_FILES)
3626         msgcat -o \$[@] \$(ALL_POT_FILES)])
3629 if test "$MSGFMT" != false
3630 then
3631     WINE_APPEND_RULE(
3632 [__builddeps__: \$(LINGUAS:%=po/%.mo)
3633 clean::
3634         \$(RM) \$(LINGUAS:%=po/%.mo)])
3636     posrc="po"
3637     test "$srcdir" = . || posrc="$srcdir/po"
3638     for i in $LINGUAS
3639     do
3640         WINE_IGNORE_FILE("po/$i.mo")
3641         WINE_APPEND_RULE(
3642 [po/$i.mo: $posrc/$i.po
3643         \$(MSGFMT) -o \$@ $posrc/$i.po])
3644     done
3645 else
3646     LINGUAS=
3649 if test "x$enable_tools" != xno
3650 then
3651     WINE_APPEND_RULE(
3652 [tools/makedep$ac_exeext: $srcdir/tools/makedep.c include/config.h config.status
3653         @./config.status tools/makedep
3654 Makefile: tools/makedep$ac_exeext
3655 distclean:: clean
3656         \$(RM) tools/makedep$ac_exeext])
3657 else
3658     WINE_APPEND_RULE(
3659 [\$(MAKEDEP):
3660         @echo \"You need to run make in $TOOLSDIR first\" && false])
3663 if test -n "$with_wine64"
3664 then
3665     WINE_APPEND_RULE(
3666 [all: fonts server tools $with_wine64/loader/wine $with_wine64/loader/wine-preloader
3667 fonts server tools:
3668         \$(RM) \$[@] && \$(LN_S) $with_wine64/\$[@] \$[@]
3669 $with_wine64/loader/wine:
3670         \$(RM) \$[@] && \$(LN_S) $ac_pwd/loader/wine \$[@]
3671 $with_wine64/loader/wine-preloader:
3672         \$(RM) \$[@] && \$(LN_S) $ac_pwd/loader/wine-preloader \$[@]
3673 clean::
3674         \$(RM) fonts server tools $with_wine64/loader/wine $with_wine64/loader/wine-preloader])
3675 else
3676     AS_VAR_APPEND([LOADER_RULES],["
3677 install install-lib:: wine.inf install-man-pages
3678         \$(INSTALL_DATA) wine.inf \$(DESTDIR)\$(datadir)/wine/wine.inf
3679         \$(INSTALL_DATA) \$(srcdir)/l_intl.nls \$(DESTDIR)\$(datadir)/wine/l_intl.nls
3681 uninstall::
3682         \$(RM) \$(DESTDIR)\$(datadir)/wine/wine.inf \$(DESTDIR)\$(datadir)/wine/l_intl.nls
3686 if test "$srcdir" = .
3687 then
3688     AC_CONFIG_COMMANDS([.gitignore], [wine_fn_output_gitignore .gitignore],
3689 [wine_fn_output_gitignore ()
3691     sort <<\_WINE_EOF >\$tmp/gitignore && mv -f \$tmp/gitignore \$[]1 && return
3692 $GITIGNORE
3693 _WINE_EOF
3694     AS_ERROR([could not create .gitignore])
3698 AS_ECHO(" done") >&AS_MESSAGE_FD
3699 AC_OUTPUT
3701 if test "$no_create" = "yes"
3702 then
3703   exit 0
3706 WINE_PRINT_MESSAGES
3708 AS_ECHO("
3709 $as_me: Finished.  Do '${ac_make}' to compile Wine.
3710 ") >&AS_MESSAGE_FD
3712 dnl Local Variables:
3713 dnl comment-start: "dnl "
3714 dnl comment-end: ""
3715 dnl comment-start-skip: "\\bdnl\\b\\s *"
3716 dnl compile-command: "autoreconf --warnings=all"
3717 dnl End: