Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1 | dnl Process this file with autoconf to produce a configure script. |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 2 | dnl Original author: Michael Patra |
| 3 | dnl See ChangeLog file for detailed change history. |
| 4 | |
| 5 | m4_define(WINE_VERSION,regexp(m4_include(VERSION),[version \([-.0-9A-Za-z]+\)],[\1])) |
| 6 | |
Vincent Béron | 82103fe | 2005-09-14 11:14:46 +0000 | [diff] [blame] | 7 | AC_PREREQ(2.53b) |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 8 | AC_INIT([Wine],[WINE_VERSION],[wine-devel@winehq.org]) |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame] | 9 | AC_CONFIG_SRCDIR(server/atom.c) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 10 | AC_CONFIG_HEADERS(include/config.h) |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 11 | AC_CONFIG_AUX_DIR(tools) |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 12 | |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 13 | dnl **** Command-line arguments **** |
| 14 | |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 15 | AC_ARG_ENABLE(win16, AS_HELP_STRING([--disable-win16],[do not include Win16 support])) |
| 16 | AC_ARG_ENABLE(win64, AS_HELP_STRING([--enable-win64],[build a Win64 emulator on AMD64 (won't run Win32 binaries)])) |
Alexandre Julliard | 9d03722 | 2008-03-20 13:00:12 +0100 | [diff] [blame] | 17 | AC_ARG_ENABLE(maintainer-mode, AS_HELP_STRING([--enable-maintainer-mode],[enable maintainer-specific build rules]), |
| 18 | ,[AC_SUBST([MAINTAINER_MODE],[\#])]) |
Alexandre Julliard | b807499 | 2002-11-21 21:51:24 +0000 | [diff] [blame] | 19 | |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 20 | AC_ARG_WITH(alsa, AS_HELP_STRING([--without-alsa],[do not use the Alsa sound support]), |
| 21 | [if test "x$withval" = "xno"; then ac_cv_header_sys_asoundlib_h=no; ac_cv_header_alsa_asoundlib_h=no; fi]) |
| 22 | AC_ARG_WITH(audioio, AS_HELP_STRING([--without-audioio],[do not use the AudioIO sound support]), |
| 23 | [if test "x$withval" = "xno"; then ac_cv_header_libaudioio_h=no; fi]) |
| 24 | AC_ARG_WITH(capi, AS_HELP_STRING([--without-capi],[do not use CAPI (ISDN support)]), |
| 25 | [if test "x$withval" = "xno"; then ac_cv_header_capi20_h=no; ac_cv_header_linux_capi_h=no; fi]) |
| 26 | AC_ARG_WITH(cms, AS_HELP_STRING([--without-cms],[do not use CMS (color management support)]), |
| 27 | [if test "x$withval" = "xno"; then ac_cv_header_lcms_h=no; ac_cv_header_lcms_lcms_h=no; fi]) |
| 28 | AC_ARG_WITH(coreaudio, AS_HELP_STRING([--without-coreaudio],[do not use the CoreAudio sound support]), |
| 29 | [if test "x$withval" = "xno"; then ac_cv_header_CoreAudio_CoreAudio_h=no; fi]) |
| 30 | AC_ARG_WITH(cups, AS_HELP_STRING([--without-cups],[do not use CUPS]), |
| 31 | [if test "x$withval" = "xno"; then ac_cv_header_cups_cups_h=no; fi]) |
| 32 | AC_ARG_WITH(curses, AS_HELP_STRING([--without-curses],[do not use (n)curses]), |
| 33 | [if test "x$withval" = "xno"; then ac_cv_header_ncurses_h=no; ac_cv_header_curses_h=no; fi]) |
| 34 | AC_ARG_WITH(esd, AS_HELP_STRING([--without-esd],[do not use the EsounD sound support])) |
| 35 | AC_ARG_WITH(fontconfig,AS_HELP_STRING([--without-fontconfig],[do not use fontconfig]), |
| 36 | [if test "x$withval" = "xno"; then ac_cv_header_fontconfig_fontconfig_h=no; fi]) |
| 37 | AC_ARG_WITH(gphoto, AS_HELP_STRING([--without-gphoto],[do not use gphoto (Digital Camera support)])) |
| 38 | AC_ARG_WITH(hal, AS_HELP_STRING([--without-hal],[do not use HAL (dynamic device support)])) |
| 39 | AC_ARG_WITH(jack, AS_HELP_STRING([--without-jack],[do not use the Jack sound support]), |
| 40 | [if test "x$withval" = "xno"; then ac_cv_header_jack_jack_h=no; fi]) |
| 41 | AC_ARG_WITH(jpeg, AS_HELP_STRING([--without-jpeg],[do not use JPEG]), |
| 42 | [if test "x$withval" = "xno"; then ac_cv_header_jpeglib_h=no; fi]) |
| 43 | AC_ARG_WITH(ldap, AS_HELP_STRING([--without-ldap],[do not use LDAP]), |
| 44 | [if test "x$withval" = "xno"; then ac_cv_header_ldap_h=no; ac_cv_header_lber_h=no; fi]) |
| 45 | AC_ARG_WITH(nas, AS_HELP_STRING([--without-nas],[do not use the NAS sound support]), |
| 46 | [if test "x$withval" = "xno"; then ac_cv_header_audio_audiolib_h=no; fi]) |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 47 | AC_ARG_WITH(opengl, AS_HELP_STRING([--without-opengl],[do not use OpenGL])) |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 48 | AC_ARG_WITH(openssl, AS_HELP_STRING([--without-openssl],[do not use OpenSSL]), |
| 49 | [if test "x$withval" = "xno"; then ac_cv_header_openssl_err_h=no; ac_cv_header_openssl_ssl_h=no; fi]) |
| 50 | AC_ARG_WITH(oss, AS_HELP_STRING([--without-oss],[do not use the OSS sound support]), |
| 51 | [if test "x$withval" = "xno"; then ac_cv_header_soundcard_h=no; ac_cv_header_sys_soundcard_h=no; ac_cv_header_machine_soundcard_h=no; fi]) |
| 52 | AC_ARG_WITH(png, AS_HELP_STRING([--without-png],[do not use PNG]), |
| 53 | [if test "x$withval" = "xno"; then ac_cv_header_png_h=no; fi]) |
| 54 | AC_ARG_WITH(sane, AS_HELP_STRING([--without-sane],[do not use SANE (scanner support)])) |
| 55 | AC_ARG_WITH(xcomposite,AS_HELP_STRING([--without-xcomposite],[do not use the Xcomposite extension]), |
| 56 | [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xcomposite_h=no; fi]) |
| 57 | AC_ARG_WITH(xcursor, AS_HELP_STRING([--without-xcursor],[do not use the Xcursor extension]), |
| 58 | [if test "x$withval" = "xno"; then ac_cv_header_X11_Xcursor_Xcursor_h=no; fi]) |
| 59 | AC_ARG_WITH(xinerama, AS_HELP_STRING([--without-xinerama],[do not use Xinerama (multi-monitor support)]), |
| 60 | [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xinerama_h=no; fi]) |
| 61 | AC_ARG_WITH(xinput, AS_HELP_STRING([--without-xinput],[do not use the Xinput extension]), |
| 62 | [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XInput_h=no; fi]) |
| 63 | AC_ARG_WITH(xml, AS_HELP_STRING([--without-xml],[do not use XML])) |
| 64 | AC_ARG_WITH(xrandr, AS_HELP_STRING([--without-xrandr],[do not use Xrandr (resolution changes)]), |
| 65 | [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrandr_h=no; fi]) |
| 66 | AC_ARG_WITH(xrender, AS_HELP_STRING([--without-xrender],[do not use the Xrender extension]), |
| 67 | [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xrender_h=no; fi]) |
| 68 | AC_ARG_WITH(xshape, AS_HELP_STRING([--without-xshape],[do not use the Xshape extension]), |
| 69 | [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_shape_h=no; fi]) |
| 70 | AC_ARG_WITH(xshm, AS_HELP_STRING([--without-xshm],[do not use XShm (shared memory extension)]), |
| 71 | [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_XShm_h=no; fi]) |
| 72 | AC_ARG_WITH(xslt, AS_HELP_STRING([--without-xslt],[do not use XSLT])) |
| 73 | AC_ARG_WITH(xvidmode, AS_HELP_STRING([--without-xvidmode],[do not use XFree video mode extension]), |
| 74 | [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_xf86vmode_h=no; fi]) |
| 75 | |
| 76 | AC_ARG_WITH(wine-tools,AS_HELP_STRING([--with-wine-tools=DIR],[use Wine tools from directory DIR])) |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 77 | |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 78 | AC_CANONICAL_HOST |
Alexandre Julliard | 2aa8e87 | 2004-10-08 23:39:16 +0000 | [diff] [blame] | 79 | case $host in |
| 80 | x86_64*linux*) |
| 81 | if test "x$enable_win64" != "xyes" |
| 82 | then |
| 83 | test -n "$CC" || CC="gcc -m32" |
Alexandre Julliard | e06016f | 2007-08-01 12:13:41 +0200 | [diff] [blame] | 84 | test -n "$CXX"|| CXX="g++ -m32" |
Alexandre Julliard | 2aa8e87 | 2004-10-08 23:39:16 +0000 | [diff] [blame] | 85 | test -n "$LD" || LD="ld -m elf_i386" |
| 86 | test -n "$AS" || AS="as --32" |
Alex Woods | bbcf986 | 2005-02-10 19:09:08 +0000 | [diff] [blame] | 87 | host_cpu="i386" |
Alexandre Julliard | 2aa8e87 | 2004-10-08 23:39:16 +0000 | [diff] [blame] | 88 | fi |
| 89 | ;; |
| 90 | esac |
| 91 | |
Alexandre Julliard | 71440f3 | 2005-05-19 14:28:17 +0000 | [diff] [blame] | 92 | dnl enable_win16 defaults to yes on x86, to no on other CPUs |
| 93 | case $host_cpu in |
| 94 | *i[[3456789]]86*) |
| 95 | if test "x$enable_win16" != "xno" |
| 96 | then |
| 97 | enable_win16="yes" |
| 98 | fi |
| 99 | ;; |
| 100 | esac |
| 101 | |
| 102 | AC_SUBST(WIN16_FILES,"\$(WIN16_FILES)") |
| 103 | AC_SUBST(WIN16_INSTALL,"\$(WIN16_INSTALL)") |
| 104 | if test "x$enable_win16" != "xyes" |
| 105 | then |
| 106 | WIN16_FILES="" |
| 107 | WIN16_INSTALL="" |
| 108 | fi |
| 109 | |
Alexandre Julliard | 73b724e | 2006-12-28 11:40:19 +0100 | [diff] [blame] | 110 | dnl check for out of tree build with unclean source tree |
| 111 | case "$srcdir" in |
| 112 | .) ;; |
| 113 | *) if test -f "$srcdir/Makefile" -o -f "$srcdir/include/config.h"; then |
| 114 | AC_MSG_ERROR([you are building out of the source tree, but the source tree contains object files. |
| 115 | You need to run 'make distclean' in the source tree first.]) |
| 116 | fi ;; |
| 117 | esac |
| 118 | |
Alexandre Julliard | 71440f3 | 2005-05-19 14:28:17 +0000 | [diff] [blame] | 119 | dnl **** Check for some programs **** |
| 120 | |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 121 | AC_PROG_MAKE_SET |
| 122 | AC_PROG_CC |
Dimitrie O. Paun | f41c2b2 | 2004-03-02 02:23:26 +0000 | [diff] [blame] | 123 | AC_PROG_CXX |
Alexandre Julliard | a631ef6 | 2004-03-03 20:30:46 +0000 | [diff] [blame] | 124 | dnl We can't use AC_PROG_CPP for winegcc, it uses by default $(CC) -E |
| 125 | AC_CHECK_TOOL(CPPBIN,cpp,cpp) |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 126 | |
| 127 | AC_CACHE_CHECK([for the directory containing the Wine tools], wine_cv_toolsdir, |
| 128 | [if test -z "$with_wine_tools"; then |
| 129 | if test "$cross_compiling" = "yes"; then |
| 130 | AC_MSG_ERROR([you must use the --with-wine-tools option when cross-compiling.]) |
| 131 | else |
| 132 | wine_cv_toolsdir="\$(TOPOBJDIR)" |
| 133 | fi |
| 134 | elif test -d "$with_wine_tools/tools/winebuild"; then |
| 135 | case $with_wine_tools in |
| 136 | /*) wine_cv_toolsdir="$with_wine_tools" ;; |
| 137 | *) wine_cv_toolsdir="\$(TOPOBJDIR)/$with_wine_tools" ;; |
| 138 | esac |
| 139 | else |
| 140 | AC_MSG_ERROR([could not find Wine tools in $with_wine_tools.]) |
| 141 | fi]) |
| 142 | AC_SUBST(TOOLSDIR,$wine_cv_toolsdir) |
| 143 | |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 144 | AC_PATH_XTRA |
Marcus Meissner | 5c5a621 | 2002-01-22 18:28:25 +0000 | [diff] [blame] | 145 | |
Alexandre Julliard | 4091627 | 2007-03-08 13:19:50 +0100 | [diff] [blame] | 146 | dnl Check for flex |
| 147 | AC_CHECK_PROGS(FLEX,flex,none) |
| 148 | if test "$FLEX" = "none" |
Marcus Meissner | b53bb41 | 2000-07-23 13:41:51 +0000 | [diff] [blame] | 149 | then |
Alexandre Julliard | 4091627 | 2007-03-08 13:19:50 +0100 | [diff] [blame] | 150 | AC_MSG_ERROR([no suitable flex found. Please install the 'flex' package.]) |
Marcus Meissner | b53bb41 | 2000-07-23 13:41:51 +0000 | [diff] [blame] | 151 | fi |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 152 | |
Mike McCormack | c068f67 | 2004-03-16 03:11:39 +0000 | [diff] [blame] | 153 | dnl Check for bison |
| 154 | AC_CHECK_PROGS(BISON,bison,none) |
| 155 | if test "$BISON" = "none" |
| 156 | then |
| 157 | AC_MSG_ERROR([no suitable bison found. Please install the 'bison' package.]) |
| 158 | fi |
| 159 | |
Alexandre Julliard | c80c290 | 2003-05-06 18:41:52 +0000 | [diff] [blame] | 160 | AC_CHECK_TOOLS(AS,[gas as],as) |
Alexandre Julliard | eb5f89c | 2002-05-24 21:22:10 +0000 | [diff] [blame] | 161 | AC_CHECK_TOOL(LD,ld,ld) |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 162 | AC_CHECK_TOOL(AR,ar,ar) |
Rob Shearman | 0c694d7 | 2008-03-04 15:53:41 +0000 | [diff] [blame] | 163 | AC_SUBST(ARFLAGS,rc) |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 164 | AC_PROG_RANLIB |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 165 | AC_CHECK_TOOL(STRIP,strip,strip) |
| 166 | AC_CHECK_TOOL(WINDRES,windres,false) |
Alexandre Julliard | 641ee76 | 1997-08-04 16:34:36 +0000 | [diff] [blame] | 167 | AC_PROG_LN_S |
Alexandre Julliard | df234a9 | 2002-05-22 02:10:39 +0000 | [diff] [blame] | 168 | WINE_PROG_LN |
Alexandre Julliard | c626491 | 2004-08-16 20:09:37 +0000 | [diff] [blame] | 169 | AC_PROG_EGREP |
Bill Medland | 91372b3 | 2002-04-20 21:00:42 +0000 | [diff] [blame] | 170 | AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH]) |
Alexandre Julliard | e24bcc7 | 2002-12-24 00:35:19 +0000 | [diff] [blame] | 171 | AC_PROG_INSTALL |
| 172 | dnl Prepend src dir to install path dir if it's a relative path |
| 173 | case "$INSTALL" in |
Alexandre Julliard | 8418d8f | 2002-12-24 02:39:47 +0000 | [diff] [blame] | 174 | [[\\/$]]* | ?:[[\\/]]* ) ;; |
Alexandre Julliard | e24bcc7 | 2002-12-24 00:35:19 +0000 | [diff] [blame] | 175 | *) INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;; |
| 176 | esac |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 177 | |
Patrik Stridvall | a9be64e | 1999-07-31 17:39:44 +0000 | [diff] [blame] | 178 | dnl Check for lint |
| 179 | AC_CHECK_PROGS(LINT, lclint lint) |
| 180 | if test "$LINT" = "lint" |
| 181 | then |
| 182 | LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4" |
| 183 | dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64' |
| 184 | fi |
| 185 | AC_SUBST(LINT) |
| 186 | AC_SUBST(LINTFLAGS) |
| 187 | |
Huw Davies | 00acb5f | 2004-08-17 22:33:14 +0000 | [diff] [blame] | 188 | dnl Check for various programs |
Huw Davies | 00acb5f | 2004-08-17 22:33:14 +0000 | [diff] [blame] | 189 | AC_CHECK_PROGS(FONTFORGE, fontforge, false) |
Mike McCormack | 90c75bd | 2005-08-08 18:36:53 +0000 | [diff] [blame] | 190 | AC_CHECK_PROGS(PKG_CONFIG, pkg-config, false) |
Alexandre Julliard | dc4a475 | 2008-03-20 16:09:18 +0100 | [diff] [blame] | 191 | AC_CHECK_PROGS(RSVG, rsvg, false) |
| 192 | AC_CHECK_PROGS(ICOTOOL, icotool, false) |
| 193 | |
| 194 | if test "${enable_maintainer_mode+set}" = set |
| 195 | then |
Alexandre Julliard | 8ad6049 | 2008-03-22 21:23:56 +0100 | [diff] [blame] | 196 | if test "$FONTFORGE" = "false"; then WINE_WARNING([fontforge is missing, fonts can't be rebuilt.]); fi |
Alexandre Julliard | dc4a475 | 2008-03-20 16:09:18 +0100 | [diff] [blame] | 197 | if test "$RSVG" = "false"; then WINE_WARNING([rsvg is missing, icons can't be rebuilt.]); fi |
| 198 | if test "$ICOTOOL" = "false"; then WINE_WARNING([icotool is missing, icons can't be rebuilt.]); fi |
| 199 | fi |
Dimitrie O. Paun | b817a3c | 2003-10-09 04:33:20 +0000 | [diff] [blame] | 200 | |
Alexandre Julliard | adbb098 | 2005-08-09 11:12:29 +0000 | [diff] [blame] | 201 | case $host_cpu in |
| 202 | *i[[3456789]]86*) |
Alexandre Julliard | 3d08f5d | 2006-07-18 10:12:20 +0200 | [diff] [blame] | 203 | AC_PATH_PROG(PRELINK, prelink, false, [/sbin /usr/sbin $PATH]) |
Alexandre Julliard | adbb098 | 2005-08-09 11:12:29 +0000 | [diff] [blame] | 204 | ;; |
| 205 | esac |
| 206 | |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 207 | dnl **** Check for some libraries **** |
| 208 | |
Alexandre Julliard | d37eb36 | 1997-07-20 16:23:21 +0000 | [diff] [blame] | 209 | dnl Check for -li386 for NetBSD and OpenBSD |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 210 | AC_CHECK_LIB(i386,i386_set_ldt) |
Todd Vierling | ecc7669 | 1998-12-15 17:49:02 +0000 | [diff] [blame] | 211 | dnl Check for -lossaudio for NetBSD |
| 212 | AC_CHECK_LIB(ossaudio,_oss_ioctl) |
Alexandre Julliard | f45325e | 2003-11-06 23:05:41 +0000 | [diff] [blame] | 213 | dnl Check for -lpthread |
| 214 | AC_CHECK_LIB(pthread,pthread_create,AC_SUBST(LIBPTHREAD,"-lpthread")) |
Alexandre Julliard | 3f510ad | 2002-01-01 01:13:03 +0000 | [diff] [blame] | 215 | |
Alexandre Julliard | 8277602 | 2005-08-08 11:17:25 +0000 | [diff] [blame] | 216 | AC_SUBST(XLIB,"") |
| 217 | AC_SUBST(XFILES,"") |
| 218 | AC_SUBST(OPENGLFILES,"") |
| 219 | AC_SUBST(GLU32FILES,"") |
| 220 | AC_SUBST(OPENGL_LIBS,"") |
Pierre d'Herbemont | 0888451 | 2006-10-24 15:26:33 +0200 | [diff] [blame] | 221 | AC_SUBST(QUARTZFILES,"") |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 222 | |
| 223 | dnl **** Check for header files **** |
| 224 | |
| 225 | AC_CHECK_HEADERS(\ |
Emmanuel Maillard | 144a535 | 2006-05-28 22:46:23 +0200 | [diff] [blame] | 226 | AudioUnit/AudioUnit.h \ |
Pierre d'Herbemont | 0888451 | 2006-10-24 15:26:33 +0200 | [diff] [blame] | 227 | Carbon/Carbon.h \ |
Emmanuel Maillard | 144a535 | 2006-05-28 22:46:23 +0200 | [diff] [blame] | 228 | CoreAudio/CoreAudio.h \ |
Alexandre Julliard | 66f45a5 | 2006-11-06 13:33:16 +0100 | [diff] [blame] | 229 | DiskArbitration/DiskArbitration.h \ |
Phil Krylov | 0f6c039 | 2005-07-01 19:15:26 +0000 | [diff] [blame] | 230 | IOKit/IOKitLib.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 231 | alsa/asoundlib.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 232 | arpa/inet.h \ |
| 233 | arpa/nameser.h \ |
Maarten Lankhorst | 888eaae | 2005-04-27 09:46:25 +0000 | [diff] [blame] | 234 | asm/types.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 235 | capi20.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 236 | cups/cups.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 237 | curses.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 238 | direct.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 239 | dlfcn.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 240 | elf.h \ |
| 241 | float.h \ |
| 242 | fontconfig/fontconfig.h \ |
| 243 | getopt.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 244 | ieeefp.h \ |
| 245 | io.h \ |
| 246 | jack/jack.h \ |
| 247 | jpeglib.h \ |
Hans Leidekker | ea524de | 2005-07-15 16:39:42 +0000 | [diff] [blame] | 248 | lber.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 249 | lcms.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 250 | lcms/lcms.h \ |
Hans Leidekker | ea524de | 2005-07-15 16:39:42 +0000 | [diff] [blame] | 251 | ldap.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 252 | libaudioio.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 253 | link.h \ |
| 254 | linux/cdrom.h \ |
| 255 | linux/compiler.h \ |
| 256 | linux/hdreg.h \ |
| 257 | linux/input.h \ |
| 258 | linux/ioctl.h \ |
| 259 | linux/joystick.h \ |
| 260 | linux/major.h \ |
| 261 | linux/param.h \ |
| 262 | linux/serial.h \ |
| 263 | linux/ucdrom.h \ |
Alexandre Julliard | 150b5dc | 2006-12-29 20:02:02 +0100 | [diff] [blame] | 264 | mach/mach.h \ |
Emmanuel Maillard | 64c0778 | 2005-05-18 18:20:23 +0000 | [diff] [blame] | 265 | mach/machine.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 266 | machine/cpu.h \ |
Emmanuel Maillard | 64c0778 | 2005-05-18 18:20:23 +0000 | [diff] [blame] | 267 | machine/limits.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 268 | machine/soundcard.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 269 | mntent.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 270 | ncurses.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 271 | netdb.h \ |
| 272 | netinet/in.h \ |
| 273 | netinet/in_systm.h \ |
| 274 | netinet/tcp.h \ |
| 275 | netinet/tcp_fsm.h \ |
Robert Shearman | 1e5153c | 2005-12-01 11:18:43 +0100 | [diff] [blame] | 276 | openssl/err.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 277 | openssl/ssl.h \ |
Alexandre Julliard | 0030215 | 2007-07-02 19:54:00 +0200 | [diff] [blame] | 278 | png.h \ |
Steven Edwards | 5727918 | 2005-03-04 12:38:36 +0000 | [diff] [blame] | 279 | poll.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 280 | process.h \ |
| 281 | pthread.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 282 | pwd.h \ |
| 283 | regex.h \ |
| 284 | sched.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 285 | scsi/scsi.h \ |
| 286 | scsi/scsi_ioctl.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 287 | scsi/sg.h \ |
| 288 | soundcard.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 289 | stdint.h \ |
| 290 | strings.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 291 | sys/asoundlib.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 292 | sys/cdio.h \ |
| 293 | sys/elf32.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 294 | sys/epoll.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 295 | sys/errno.h \ |
Alexandre Julliard | c827892 | 2006-08-04 22:11:00 +0200 | [diff] [blame] | 296 | sys/event.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 297 | sys/exec_elf.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 298 | sys/filio.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 299 | sys/ioctl.h \ |
| 300 | sys/ipc.h \ |
Gerald Pfeifer | ebe0484 | 2005-08-22 09:33:37 +0000 | [diff] [blame] | 301 | sys/limits.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 302 | sys/link.h \ |
| 303 | sys/lwp.h \ |
| 304 | sys/mman.h \ |
| 305 | sys/modem.h \ |
| 306 | sys/msg.h \ |
Hans Leidekker | 0844b70 | 2006-01-26 13:23:08 +0100 | [diff] [blame] | 307 | sys/mtio.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 308 | sys/param.h \ |
| 309 | sys/poll.h \ |
Alexandre Julliard | 9603ee0 | 2006-04-06 11:57:37 +0200 | [diff] [blame] | 310 | sys/prctl.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 311 | sys/ptrace.h \ |
| 312 | sys/reg.h \ |
Mike McCormack | 0cd0626 | 2006-03-01 01:07:04 +0900 | [diff] [blame] | 313 | sys/resource.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 314 | sys/scsiio.h \ |
| 315 | sys/shm.h \ |
| 316 | sys/signal.h \ |
| 317 | sys/socket.h \ |
Mark Adams | 2569635 | 2007-07-10 23:39:21 -0400 | [diff] [blame] | 318 | sys/socketvar.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 319 | sys/sockio.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 320 | sys/soundcard.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 321 | sys/statvfs.h \ |
| 322 | sys/strtio.h \ |
| 323 | sys/syscall.h \ |
| 324 | sys/sysctl.h \ |
| 325 | sys/time.h \ |
| 326 | sys/times.h \ |
| 327 | sys/uio.h \ |
| 328 | sys/un.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 329 | sys/vm86.h \ |
| 330 | sys/wait.h \ |
| 331 | syscall.h \ |
| 332 | termios.h \ |
| 333 | unistd.h \ |
| 334 | utime.h \ |
| 335 | valgrind/memcheck.h |
| 336 | ) |
| 337 | AC_HEADER_STAT() |
| 338 | |
Hans Leidekker | 2d6d4e9 | 2006-04-09 18:36:01 +0200 | [diff] [blame] | 339 | dnl **** Checks for headers that depend on other ones **** |
| 340 | |
| 341 | AC_CHECK_HEADERS([sys/mount.h sys/statfs.h sys/user.h sys/vfs.h],,, |
| 342 | [#include <sys/types.h> |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 343 | #ifdef HAVE_SYS_PARAM_H |
Hans Leidekker | 2d6d4e9 | 2006-04-09 18:36:01 +0200 | [diff] [blame] | 344 | # include <sys/param.h> |
| 345 | #endif]) |
| 346 | |
Mark Adams | 2569635 | 2007-07-10 23:39:21 -0400 | [diff] [blame] | 347 | AC_CHECK_HEADERS([netinet/in_pcb.h netinet/ip_var.h net/if.h net/if_arp.h net/if_dl.h net/if_types.h net/route.h netipx/ipx.h],,, |
Hans Leidekker | 2d6d4e9 | 2006-04-09 18:36:01 +0200 | [diff] [blame] | 348 | [#include <sys/types.h> |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 349 | #ifdef HAVE_SYS_SOCKET_H |
Hans Leidekker | 2d6d4e9 | 2006-04-09 18:36:01 +0200 | [diff] [blame] | 350 | # include <sys/socket.h> |
Ken Thomases | a609fee | 2007-10-19 16:18:17 -0500 | [diff] [blame] | 351 | #endif |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 352 | #ifdef HAVE_SYS_SOCKETVAR_H |
Mark Adams | 2569635 | 2007-07-10 23:39:21 -0400 | [diff] [blame] | 353 | # include <sys/socketvar.h> |
Ken Thomases | ffd78b1 | 2007-10-19 16:18:27 -0500 | [diff] [blame] | 354 | #endif |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 355 | #ifdef HAVE_NETINET_IN_H |
Ken Thomases | ffd78b1 | 2007-10-19 16:18:27 -0500 | [diff] [blame] | 356 | # include <netinet/in.h> |
Ken Thomases | a609fee | 2007-10-19 16:18:17 -0500 | [diff] [blame] | 357 | #endif]) |
Mark Adams | 2569635 | 2007-07-10 23:39:21 -0400 | [diff] [blame] | 358 | |
| 359 | AC_CHECK_HEADERS([netinet/tcp_var.h],,, |
| 360 | [#include <sys/types.h> |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 361 | #ifdef HAVE_SYS_SOCKET_H |
Mark Adams | 2569635 | 2007-07-10 23:39:21 -0400 | [diff] [blame] | 362 | # include <sys/socket.h> |
| 363 | #endif |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 364 | #ifdef HAVE_SYS_SOCKETVAR_H |
Mark Adams | 2569635 | 2007-07-10 23:39:21 -0400 | [diff] [blame] | 365 | # include <sys/socketvar.h> |
| 366 | #endif |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 367 | #ifdef HAVE_NETINET_IN_H |
Mark Adams | 2569635 | 2007-07-10 23:39:21 -0400 | [diff] [blame] | 368 | # include <netinet/in.h> |
| 369 | #endif |
| 370 | #ifdef HAVE_NETINET_TCP_H |
| 371 | # include <netinet/tcp.h> |
| 372 | #endif]) |
Hans Leidekker | 2d6d4e9 | 2006-04-09 18:36:01 +0200 | [diff] [blame] | 373 | |
Francois Gouget | faf05df | 2006-08-07 21:52:36 +0200 | [diff] [blame] | 374 | AC_CHECK_HEADERS([linux/ipx.h],,, |
| 375 | [#include <sys/types.h> |
| 376 | #ifdef HAVE_ASM_TYPES_H |
| 377 | # include <asm/types.h> |
| 378 | #endif |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 379 | #ifdef HAVE_SYS_SOCKET_H |
Francois Gouget | faf05df | 2006-08-07 21:52:36 +0200 | [diff] [blame] | 380 | # include <sys/socket.h> |
| 381 | #endif]) |
| 382 | |
Hans Leidekker | 2d6d4e9 | 2006-04-09 18:36:01 +0200 | [diff] [blame] | 383 | AC_CHECK_HEADERS([resolv.h],,, |
| 384 | [#include <sys/types.h> |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 385 | #ifdef HAVE_SYS_SOCKET_H |
Hans Leidekker | 2d6d4e9 | 2006-04-09 18:36:01 +0200 | [diff] [blame] | 386 | # include <sys/socket.h> |
| 387 | #endif |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 388 | #ifdef HAVE_NETINET_IN_H |
Hans Leidekker | 2d6d4e9 | 2006-04-09 18:36:01 +0200 | [diff] [blame] | 389 | # include <netinet/in.h> |
| 390 | #endif |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 391 | #ifdef HAVE_ARPA_NAMESER_H |
Hans Leidekker | 2d6d4e9 | 2006-04-09 18:36:01 +0200 | [diff] [blame] | 392 | # include <arpa/nameser.h> |
| 393 | #endif]) |
| 394 | |
| 395 | AC_CHECK_HEADERS(ucontext.h,,,[#include <signal.h>]) |
| 396 | |
Tijl Coosemans | 60833da | 2007-08-08 00:25:24 +0200 | [diff] [blame] | 397 | AC_CHECK_HEADERS([sys/thr.h],,, |
| 398 | [#include <sys/types.h> |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 399 | #ifdef HAVE_UCONTEXT_H |
Tijl Coosemans | 60833da | 2007-08-08 00:25:24 +0200 | [diff] [blame] | 400 | #include <ucontext.h> |
| 401 | #endif]) |
| 402 | |
Gerald Pfeifer | 4ff90b4 | 2006-08-21 20:00:20 +0200 | [diff] [blame] | 403 | AC_CHECK_HEADERS([pthread_np.h],,, |
| 404 | [#ifdef HAVE_PTHREAD_H |
| 405 | #include <pthread.h> |
| 406 | #endif]) |
| 407 | |
Francois Gouget | faf05df | 2006-08-07 21:52:36 +0200 | [diff] [blame] | 408 | AC_CHECK_HEADERS([linux/videodev.h],,, |
Hans Leidekker | 2d6d4e9 | 2006-04-09 18:36:01 +0200 | [diff] [blame] | 409 | [#ifdef HAVE_SYS_TIME_H |
| 410 | #include <sys/time.h> |
| 411 | #endif |
| 412 | #include <sys/types.h> |
| 413 | #ifdef HAVE_ASM_TYPES_H |
| 414 | #include <asm/types.h> |
| 415 | #endif]) |
| 416 | |
Alexandre Julliard | b079add | 2006-02-24 11:46:17 +0100 | [diff] [blame] | 417 | dnl Check for broken kernel header that doesn't define __user |
| 418 | AC_CHECK_HEADERS([linux/capi.h],,,[#define __user]) |
| 419 | |
Alexandre Julliard | a309762 | 2007-07-02 17:27:48 +0200 | [diff] [blame] | 420 | dnl **** Check for working dll **** |
| 421 | |
| 422 | AC_SUBST(DLLEXT,"") |
| 423 | AC_SUBST(DLLFLAGS,"-D_REENTRANT") |
| 424 | AC_SUBST(LDSHARED,"") |
| 425 | AC_SUBST(LDDLLFLAGS,"") |
| 426 | AC_SUBST(LIBEXT,"so") |
| 427 | AC_SUBST(IMPLIBEXT,"def") |
| 428 | AC_SUBST(LDRPATH_INSTALL,"") |
| 429 | AC_SUBST(LDRPATH_LOCAL,"") |
| 430 | WINE_PATH_LDD |
| 431 | |
| 432 | case $host_os in |
| 433 | cygwin*|mingw32*) |
| 434 | AC_CHECK_TOOL(DLLTOOL,dlltool,false) |
| 435 | AC_CHECK_TOOL(DLLWRAP,dllwrap,false) |
| 436 | AC_CHECK_TOOL(MINGWAR,ar,false) |
| 437 | if test "$DLLWRAP" = "false"; then |
| 438 | LIBEXT="a" |
| 439 | else |
| 440 | dnl FIXME - check whether dllwrap works correctly... |
| 441 | LIBEXT="dll" |
| 442 | fi |
| 443 | IMPLIBEXT="a" |
| 444 | dnl We can't build 16-bit NE dlls |
| 445 | WIN16_FILES="" |
| 446 | WIN16_INSTALL="" |
| 447 | ;; |
| 448 | darwin*|macosx*) |
| 449 | DLLEXT=".so" |
| 450 | LIBEXT="dylib" |
| 451 | DLLFLAGS="$DLLFLAGS -fPIC" |
| 452 | LDDLLFLAGS="-bundle -multiply_defined suppress" |
| 453 | LIBWINE_LDFLAGS="-multiply_defined suppress" |
| 454 | LDSHARED="\$(CC) -dynamiclib" |
| 455 | STRIP="$STRIP -x" |
| 456 | LDRPATH_LOCAL="&& install_name_tool -change @executable_path/\`\$(RELPATH) \$(bindir) \$(libdir)\`/libwine.1.dylib @executable_path/\$(TOPOBJDIR)/libs/wine/libwine.1.dylib \$@ || \$(RM) \$@" |
| 457 | dnl declare needed frameworks |
Rob Shearman | 312a1db | 2007-11-26 22:57:35 +0000 | [diff] [blame] | 458 | AC_SUBST(SECURITYLIB,"-framework Security -framework CoreFoundation") |
Alexandre Julliard | a309762 | 2007-07-02 17:27:48 +0200 | [diff] [blame] | 459 | AC_SUBST(COREFOUNDATIONLIB,"-framework CoreFoundation") |
| 460 | AC_SUBST(IOKITLIB,"-framework IOKit -framework CoreFoundation") |
| 461 | AC_SUBST(LDEXECFLAGS,["-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00000000,-segaddr,WINE_SHARED_HEAP,0x7f000000"]) |
| 462 | if test "$ac_cv_header_DiskArbitration_DiskArbitration_h" = "yes" |
| 463 | then |
| 464 | dnl DiskArbitration API is not public on Darwin < 8.0, use it only if header found |
| 465 | AC_SUBST(DISKARBITRATIONLIB,"-framework DiskArbitration -framework CoreFoundation") |
| 466 | fi |
| 467 | if test "$ac_cv_header_CoreAudio_CoreAudio_h" = "yes" -a "$ac_cv_header_AudioUnit_AudioUnit_h" = "yes" |
| 468 | then |
| 469 | dnl CoreServices needed by AudioUnit |
| 470 | AC_SUBST(COREAUDIO,"-framework CoreAudio -framework AudioUnit -framework CoreServices -framework AudioToolbox -framework CoreMIDI") |
| 471 | fi |
| 472 | case $host_cpu in |
| 473 | *powerpc*) |
| 474 | LDDLLFLAGS="$LDDLLFLAGS -read_only_relocs warning" dnl FIXME |
| 475 | ;; |
| 476 | esac |
| 477 | dnl Enable quartz driver on Mac OS X |
| 478 | if test "$ac_cv_header_Carbon_Carbon_h" = "yes" |
| 479 | then |
| 480 | AC_SUBST(CARBONLIB,"-framework Carbon") |
| 481 | QUARTZFILES='$(QUARTZFILES)' |
| 482 | fi |
| 483 | ;; |
| 484 | *) |
| 485 | DLLFLAGS="$DLLFLAGS -fPIC" |
| 486 | DLLEXT=".so" |
| 487 | AC_CACHE_CHECK([whether we can build a GNU style ELF dll], ac_cv_c_dll_gnuelf, |
| 488 | [WINE_TRY_SHLIB_FLAGS([-fPIC -shared -Wl,-Bsymbolic], |
| 489 | ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")]) |
| 490 | if test "$ac_cv_c_dll_gnuelf" = "yes" |
| 491 | then |
| 492 | LDSHARED="\$(CC) -shared" |
| 493 | LDDLLFLAGS="-shared -Wl,-Bsymbolic" |
| 494 | WINE_TRY_CFLAGS([-fPIC -shared -Wl,-soname,confest.so.1], |
| 495 | [LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)"], |
| 496 | [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-h,confest.so.1], |
| 497 | [LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-h,%)"])]) |
| 498 | |
| 499 | WINE_TRY_CFLAGS([-fPIC -shared -Wl,-Bsymbolic,-z,defs], [LDDLLFLAGS="$LDDLLFLAGS,-z,defs"]) |
| 500 | |
| 501 | WINE_TRY_CFLAGS([-fPIC -shared -Wl,-Bsymbolic,-init,__wine_spec_init,-fini,__wine_spec_fini], |
| 502 | [LDDLLFLAGS="$LDDLLFLAGS,-init,__wine_spec_init,-fini,__wine_spec_fini"]) |
| 503 | |
| 504 | echo '{ global: *; };' >conftest.map |
| 505 | WINE_TRY_CFLAGS([-fPIC -shared -Wl,--version-script=conftest.map], |
| 506 | [LDSHARED="$LDSHARED \$(VERSCRIPT:%=-Wl,--version-script=%)"]) |
| 507 | rm -f conftest.map |
| 508 | |
| 509 | WINE_TRY_CFLAGS([-fPIC -Wl,--export-dynamic], |
| 510 | [AC_SUBST(LDEXECFLAGS,["-Wl,--export-dynamic"])]) |
| 511 | |
| 512 | WINE_TRY_CFLAGS([-fPIC -Wl,--rpath,\$ORIGIN/../lib], |
| 513 | [LDRPATH_INSTALL="-Wl,--rpath,\\\$\$ORIGIN/\`\$(RELPATH) \$(bindir) \$(libdir)\`" |
| 514 | LDRPATH_LOCAL="-Wl,--rpath,\\\$\$ORIGIN/\$(TOPOBJDIR)/libs/wine"], |
| 515 | [WINE_TRY_CFLAGS([-fPIC -Wl,-R,\$ORIGIN/../lib], |
| 516 | [LDRPATH_INSTALL="-Wl,-R,\\\$\$ORIGIN/\`\$(RELPATH) \$(bindir) \$(libdir)\`" |
| 517 | LDRPATH_LOCAL="-Wl,-R,\\\$\$ORIGIN/\$(TOPOBJDIR)/libs/wine"])]) |
| 518 | |
Tomas Carnecky | f4077ae | 2007-07-30 22:38:55 +0200 | [diff] [blame] | 519 | WINE_TRY_CFLAGS([-Wl,--enable-new-dtags], |
| 520 | [LDRPATH_INSTALL="$LDRPATH_INSTALL -Wl,--enable-new-dtags"]) |
| 521 | |
Alexandre Julliard | a309762 | 2007-07-02 17:27:48 +0200 | [diff] [blame] | 522 | case $host_cpu in |
| 523 | *i[[3456789]]86* | x86_64) |
| 524 | WINE_TRY_CFLAGS([-Wl,--section-start,.interp=0x7bf00400], |
| 525 | [LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7bf00400"]) |
| 526 | ;; |
| 527 | esac |
| 528 | |
| 529 | else |
| 530 | AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll, ac_cv_c_dll_unixware, |
| 531 | [WINE_TRY_SHLIB_FLAGS([-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic], |
| 532 | ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")]) |
| 533 | if test "$ac_cv_c_dll_unixware" = "yes" |
| 534 | then |
| 535 | LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,%)" |
| 536 | LDDLLFLAGS="-Wl,-G,-B,symbolic" |
| 537 | |
| 538 | else |
| 539 | AC_CACHE_CHECK(whether we can build an HP-UX dll, ac_cv_c_dll_hpux, |
| 540 | [WINE_TRY_SHLIB_FLAGS([-shared], ac_cv_c_dll_hpux="yes", ac_cv_c_dll_hpux="no")]) |
| 541 | if test "$ac_cv_c_dll_hpux" = "yes" |
| 542 | then |
| 543 | LIBEXT="sl" |
| 544 | DLLEXT=".sl" |
| 545 | LDDLLFLAGS="-shared -fPIC" |
| 546 | LDSHARED="\$(CC) -shared" |
| 547 | fi |
| 548 | fi |
| 549 | fi |
| 550 | |
| 551 | dnl Check for cross compiler to build test programs |
| 552 | AC_SUBST(CROSSTEST,"") |
| 553 | if test "$cross_compiling" = "no" |
| 554 | then |
| 555 | WINE_CHECK_MINGW_PROG(CROSSCC,gcc,false) |
| 556 | WINE_CHECK_MINGW_PROG(DLLTOOL,dlltool,false) |
| 557 | WINE_CHECK_MINGW_PROG(CROSSWINDRES,windres,false) |
| 558 | WINE_CHECK_MINGW_PROG(MINGWAR,ar,false) |
| 559 | if test "$CROSSCC" != "false"; then CROSSTEST="\$(CROSSTEST)"; fi |
| 560 | fi |
| 561 | ;; |
| 562 | esac |
| 563 | |
| 564 | if test "$LIBEXT" = "a"; then |
| 565 | AC_MSG_ERROR( |
| 566 | [could not find a way to build shared libraries. |
| 567 | It is currently not possible to build Wine without shared library |
| 568 | (.so) support to allow transparent switch between .so and .dll files. |
| 569 | If you are using Linux, you will need a newer binutils.] |
| 570 | ) |
| 571 | fi |
| 572 | |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 573 | dnl **** Check for X11 **** |
| 574 | |
Patrik Stridvall | ea58472 | 1998-11-01 16:22:07 +0000 | [diff] [blame] | 575 | if test "$have_x" = "yes" |
| 576 | then |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 577 | XLIB="-lXext -lX11" |
Ove Kaaven | 1eb593c | 1999-02-14 09:34:46 +0000 | [diff] [blame] | 578 | ac_save_CPPFLAGS="$CPPFLAGS" |
| 579 | CPPFLAGS="$CPPFLAGS $X_CFLAGS" |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 580 | |
Alexandre Julliard | a851854 | 2007-07-09 22:43:45 +0200 | [diff] [blame] | 581 | WINE_CHECK_SONAME(X11,XCreateWindow,,,[$X_LIBS $X_EXTRA_LIBS]) |
| 582 | WINE_CHECK_SONAME(Xext,XextCreateExtension,,,[$X_LIBS -lX11 $X_EXTRA_LIBS]) |
| 583 | |
Huw D M Davies | ff453fc | 2001-09-14 01:04:25 +0000 | [diff] [blame] | 584 | dnl *** All of the following tests require X11/Xlib.h |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 585 | AC_CHECK_HEADERS([X11/Xlib.h \ |
| 586 | X11/XKBlib.h \ |
| 587 | X11/Xutil.h \ |
Andrew Riedi | 23e2cb1 | 2007-03-22 12:06:19 -0700 | [diff] [blame] | 588 | X11/Xcursor/Xcursor.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 589 | X11/extensions/shape.h \ |
| 590 | X11/extensions/XInput.h \ |
| 591 | X11/extensions/XShm.h \ |
Chris Robinson | 4258465 | 2007-09-22 18:19:08 -0700 | [diff] [blame] | 592 | X11/extensions/Xcomposite.h \ |
Alexandre Julliard | 7d00b05 | 2006-10-23 13:46:34 +0200 | [diff] [blame] | 593 | X11/extensions/Xinerama.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 594 | X11/extensions/Xrandr.h \ |
| 595 | X11/extensions/Xrender.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 596 | X11/extensions/xf86vmode.h],,, |
| 597 | [#ifdef HAVE_X11_XLIB_H |
| 598 | # include <X11/Xlib.h> |
| 599 | #endif |
| 600 | #ifdef HAVE_X11_XUTIL_H |
| 601 | # include <X11/Xutil.h> |
| 602 | #endif]) |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 603 | |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 604 | dnl *** Check for X keyboard extension |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 605 | if test "$ac_cv_header_X11_XKBlib_h" = "yes" |
| 606 | then |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 607 | AC_CHECK_LIB(X11, XkbQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 608 | AC_DEFINE(HAVE_XKB, 1, [Define if you have the XKB extension]),, |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 609 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 610 | fi |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 611 | |
Alexandre Julliard | 19a988a | 2007-07-09 22:42:28 +0200 | [diff] [blame] | 612 | dnl *** Check for X cursor |
| 613 | if test "$ac_cv_header_X11_Xcursor_Xcursor_h" = "yes" |
| 614 | then |
| 615 | WINE_CHECK_SONAME(Xcursor,XcursorImageLoadCursor,,,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS]) |
| 616 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 617 | WINE_NOTICE_WITH(xcursor,[test "x$ac_cv_lib_soname_Xcursor" = "x"], |
| 618 | [libxcursor development files not found, the Xcursor extension won't be supported.]) |
Alexandre Julliard | 19a988a | 2007-07-09 22:42:28 +0200 | [diff] [blame] | 619 | |
Alexandre Julliard | d68d433 | 2007-07-09 22:42:49 +0200 | [diff] [blame] | 620 | dnl *** Check for X input extension |
| 621 | if test "$ac_cv_header_X11_extensions_XInput_h" = "yes" |
| 622 | then |
| 623 | WINE_CHECK_SONAME(Xi,XOpenDevice,,,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS]) |
| 624 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 625 | WINE_NOTICE_WITH(xinput,[test "x$ac_cv_lib_soname_Xi" = "x"], |
| 626 | [libxi development files not found, the Xinput extension won't be supported.]) |
Alexandre Julliard | d68d433 | 2007-07-09 22:42:49 +0200 | [diff] [blame] | 627 | |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 628 | dnl *** Check for X Shm extension |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 629 | if test "$ac_cv_header_X11_extensions_XShm_h" = "yes" |
| 630 | then |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 631 | AC_CHECK_LIB(Xext, XShmQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 632 | AC_DEFINE(HAVE_LIBXXSHM, 1, [Define if you have the X Shm extension]),, |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 633 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 634 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 635 | WINE_NOTICE_WITH(xshm,[test "$ac_cv_lib_Xext_XShmQueryExtension" != "yes"], |
| 636 | [XShm development files not found, X Shared Memory won't be supported.]) |
Gregg Mattinson | 044b5c4 | 2002-07-19 03:16:51 +0000 | [diff] [blame] | 637 | |
Francois Jacques | 5b6879c | 2000-07-28 23:04:54 +0000 | [diff] [blame] | 638 | dnl *** Check for X shape extension |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 639 | if test "$ac_cv_header_X11_extensions_shape_h" = "yes" |
| 640 | then |
Francois Jacques | 5b6879c | 2000-07-28 23:04:54 +0000 | [diff] [blame] | 641 | AC_CHECK_LIB(Xext,XShapeQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 642 | AC_DEFINE(HAVE_LIBXSHAPE, 1, [Define if you have the X Shape extension]),, |
Francois Jacques | 5b6879c | 2000-07-28 23:04:54 +0000 | [diff] [blame] | 643 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 644 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 645 | WINE_NOTICE_WITH(xshape,[test "$ac_cv_lib_Xext_XShapeQueryExtension" != "yes"], |
| 646 | [XShape development files not found, XShape won't be supported.]) |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame] | 647 | |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 648 | dnl *** Check for XFree86 VMODE extension |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 649 | if test "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes" |
| 650 | then |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 651 | AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 652 | [ AC_DEFINE(HAVE_LIBXXF86VM, 1, [Define if you have the Xxf86vm library]) |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 653 | X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm" |
| 654 | ],, |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 655 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
| 656 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 657 | WINE_NOTICE_WITH(xvidmode,[test "$ac_cv_lib_Xxf86vm_XF86VidModeQueryExtension" != "yes"], |
Francois Gouget | 29ef0b9 | 2008-03-01 21:10:38 +0100 | [diff] [blame] | 658 | [libXxf86vm development files not found, XFree86 Vidmode won't be supported.]) |
Lionel Ulmer | 3d2f32d | 2000-09-06 19:46:59 +0000 | [diff] [blame] | 659 | |
Alexandre Julliard | 629639e | 2007-07-04 12:47:57 +0200 | [diff] [blame] | 660 | dnl *** Check for Transform functions in Xrender |
Alexandre Julliard | a851854 | 2007-07-09 22:43:45 +0200 | [diff] [blame] | 661 | if test "$ac_cv_header_X11_extensions_Xrender_h" = "yes" -a "x$ac_cv_lib_soname_X11" != "x" -a "x$ac_cv_lib_soname_Xext" != "x" |
Alexandre Julliard | 629639e | 2007-07-04 12:47:57 +0200 | [diff] [blame] | 662 | then |
| 663 | WINE_CHECK_SONAME(Xrender,XRenderQueryExtension, |
| 664 | [AC_CHECK_LIB(Xrender,XRenderSetPictureTransform, |
| 665 | [AC_DEFINE(HAVE_XRENDERSETPICTURETRANSFORM, 1, |
| 666 | [Define if Xrender has the XRenderSetPictureTransform function])],, |
| 667 | [$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])],,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS]) |
| 668 | |
| 669 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 670 | WINE_NOTICE_WITH(xrender,[test "x$ac_cv_lib_soname_Xrender" = "x"], |
| 671 | [libxrender development files not found, XRender won't be supported.]) |
Alexandre Julliard | 629639e | 2007-07-04 12:47:57 +0200 | [diff] [blame] | 672 | |
Alex Pasadyn | 8f174bc | 2003-10-15 03:28:04 +0000 | [diff] [blame] | 673 | dnl *** Check for X RandR extension |
Alexandre Julliard | 629639e | 2007-07-04 12:47:57 +0200 | [diff] [blame] | 674 | if test "$ac_cv_header_X11_extensions_Xrandr_h" = "yes" -a "x$ac_cv_lib_soname_Xrender" != "x" |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 675 | then |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 676 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h> |
| 677 | #include <X11/extensions/Xrandr.h>]], [[static typeof(XRRSetScreenConfigAndRate) * func;]])], |
Alexandre Julliard | af928ec | 2007-07-04 12:45:03 +0200 | [diff] [blame] | 678 | [WINE_CHECK_SONAME(Xrandr,XRRQueryExtension,,,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])]) |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 679 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 680 | WINE_NOTICE_WITH(xrandr,[test "x$ac_cv_lib_soname_Xrandr" = "x"], |
| 681 | [libxrandr development files not found, XRandr won't be supported.]) |
Alex Pasadyn | 8f174bc | 2003-10-15 03:28:04 +0000 | [diff] [blame] | 682 | |
Alexandre Julliard | 7d00b05 | 2006-10-23 13:46:34 +0200 | [diff] [blame] | 683 | dnl *** Check for Xinerama extension |
| 684 | if test "$ac_cv_header_X11_extensions_Xinerama_h" = "yes" |
| 685 | then |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 686 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h> |
| 687 | #include <X11/extensions/Xinerama.h>]], [[static typeof(XineramaQueryScreens) * func;]])], |
Alexandre Julliard | 35d2fd7 | 2007-07-04 12:48:50 +0200 | [diff] [blame] | 688 | [WINE_CHECK_SONAME(Xinerama,XineramaQueryScreens,,,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS])]) |
Alexandre Julliard | 7d00b05 | 2006-10-23 13:46:34 +0200 | [diff] [blame] | 689 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 690 | WINE_NOTICE_WITH(xinerama,[test "x$ac_cv_lib_soname_Xinerama" = "x"], |
| 691 | [libxinerama development files not found, multi-monitor setups won't be supported.]) |
Alexandre Julliard | 7d00b05 | 2006-10-23 13:46:34 +0200 | [diff] [blame] | 692 | |
Chris Robinson | 4258465 | 2007-09-22 18:19:08 -0700 | [diff] [blame] | 693 | dnl *** Check for X Composite extension |
| 694 | if test "$ac_cv_header_X11_extensions_Xcomposite_h" = "yes" |
| 695 | then |
| 696 | WINE_CHECK_SONAME(Xcomposite,XCompositeRedirectWindow,,,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS]) |
| 697 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 698 | WINE_NOTICE_WITH(xcomposite,[test "x$ac_cv_lib_soname_Xcomposite" = "x"], |
| 699 | [libxcomposite development files not found, Xcomposite won't be supported.]) |
Chris Robinson | 4258465 | 2007-09-22 18:19:08 -0700 | [diff] [blame] | 700 | |
Kusanagi Kouichi | 75e4022 | 2008-04-16 00:34:54 +0900 | [diff] [blame] | 701 | dnl *** Check for XICCallback struct |
| 702 | AC_CHECK_MEMBERS([XICCallback.callback],,, |
| 703 | [#ifdef HAVE_X11_XLIB_H |
| 704 | #include <X11/Xlib.h> |
| 705 | #endif]) |
| 706 | |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 707 | dnl *** End of X11/Xlib.h check |
Lionel Ulmer | 5c08570 | 1999-02-28 19:48:53 +0000 | [diff] [blame] | 708 | |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 709 | dnl Check for the presence of OpenGL |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 710 | opengl_msg="" |
Alexandre Julliard | b807499 | 2002-11-21 21:51:24 +0000 | [diff] [blame] | 711 | if test "x$with_opengl" != "xno" |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 712 | then |
Huw Davies | 4eb4546 | 2006-03-07 13:55:35 +0000 | [diff] [blame] | 713 | AC_CHECK_HEADERS(GL/gl.h GL/glx.h GL/glext.h GL/glu.h,,, |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 714 | [#ifdef HAVE_GL_GLX_H |
| 715 | # include <GL/glx.h> |
| 716 | #endif]) |
Marcus Meissner | 22a969b | 2000-08-08 20:46:50 +0000 | [diff] [blame] | 717 | if test "$ac_cv_header_GL_gl_h" = "yes" -a "$ac_cv_header_GL_glx_h" = "yes" |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 718 | then |
| 719 | dnl Check for some problems due to old Mesa versions |
Roderick Colenbrander | bc66d7e | 2006-08-24 01:11:27 +0200 | [diff] [blame] | 720 | AC_CACHE_CHECK([for up-to-date OpenGL version], wine_cv_opengl_header_version_OK, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 721 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <GL/gl.h>]], [[GLenum test = GL_UNSIGNED_SHORT_5_6_5;]])], |
Roderick Colenbrander | bc66d7e | 2006-08-24 01:11:27 +0200 | [diff] [blame] | 722 | [wine_cv_opengl_header_version_OK="yes"], |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 723 | [wine_cv_opengl_header_version_OK="no"])) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 724 | |
Alexandre Julliard | cc6a08c | 2006-08-24 14:34:22 +0200 | [diff] [blame] | 725 | if test "$wine_cv_opengl_header_version_OK" = "yes" |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 726 | then |
Andreas Mohr | 4eefb96 | 2000-08-01 00:27:35 +0000 | [diff] [blame] | 727 | dnl Check for the presence of the library |
Alexandre Julliard | 31353e1 | 2007-07-04 12:44:12 +0200 | [diff] [blame] | 728 | WINE_CHECK_SONAME(GL,glXCreateContext, |
Alexandre Julliard | c84c478 | 2006-09-22 09:36:12 +0200 | [diff] [blame] | 729 | [OPENGL_LIBS="-lGL" |
| 730 | OPENGLFILES='$(OPENGLFILES)' |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 731 | AC_DEFINE(HAVE_OPENGL, 1, [Define if OpenGL is present on the system])], |
Francois Gouget | d701ee2 | 2007-12-18 10:17:20 +0100 | [diff] [blame] | 732 | [WINE_CHECK_SONAME(GL,glXCreateContext, |
| 733 | [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" |
| 734 | OPENGLFILES='$(OPENGLFILES)' |
| 735 | AC_DEFINE(HAVE_OPENGL, 1, [Define if OpenGL is present on the system])], |
| 736 | [if test -f /usr/X11R6/lib/libGL.a |
| 737 | then |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 738 | opengl_msg="/usr/X11R6/lib/libGL.a is present on your system. |
| 739 | This probably prevents linking to OpenGL. Try deleting the file and restarting configure." |
Francois Gouget | d701ee2 | 2007-12-18 10:17:20 +0100 | [diff] [blame] | 740 | else |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 741 | opengl_msg="No OpenGL library found on this system." |
Francois Gouget | d701ee2 | 2007-12-18 10:17:20 +0100 | [diff] [blame] | 742 | fi], |
| 743 | $X_LIBS -lXext -lX11 -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)], |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 744 | $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 745 | |
Marcus Meissner | b63ab44 | 2001-06-08 19:02:57 +0000 | [diff] [blame] | 746 | dnl Check for GLU32 library. |
Marcus Meissner | 6e9ab40 | 2001-08-08 23:21:16 +0000 | [diff] [blame] | 747 | AC_CHECK_LIB(GLU,gluLookAt, |
Lionel Ulmer | 56ab2b3e | 2002-11-15 04:16:38 +0000 | [diff] [blame] | 748 | [OPENGL_LIBS="$OPENGL_LIBS -lGLU" |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 749 | GLU32FILES='$(GLU32FILES)'] |
Marcus Meissner | b63ab44 | 2001-06-08 19:02:57 +0000 | [diff] [blame] | 750 | ,, |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 751 | $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS) |
| 752 | else |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 753 | opengl_msg="Old Mesa headers detected. Consider upgrading your Mesa libraries." |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 754 | fi |
Roderick Colenbrander | bc66d7e | 2006-08-24 01:11:27 +0200 | [diff] [blame] | 755 | else |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 756 | opengl_msg="OpenGL development headers not found." |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 757 | fi |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 758 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 759 | WINE_WARNING_WITH(opengl,[test -n "$opengl_msg"],[$opengl_msg |
| 760 | OpenGL and Direct3D won't be supported.]) |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 761 | |
Francois Gouget | 6f670b1 | 2002-10-10 17:54:27 +0000 | [diff] [blame] | 762 | dnl **** Check for NAS **** |
| 763 | AC_SUBST(NASLIBS,"") |
| 764 | AC_CHECK_HEADERS(audio/audiolib.h, |
| 765 | [AC_CHECK_HEADERS(audio/soundlib.h,,,[#include <audio/audiolib.h>]) |
| 766 | AC_CHECK_LIB(audio,AuCreateFlow, |
| 767 | [AC_DEFINE(HAVE_NAS,1,[Define if you have NAS including devel headers]) |
Gerald Pfeifer | 575d894 | 2007-03-25 00:44:50 +0100 | [diff] [blame] | 768 | AC_CHECK_LIB(Xau,XauGetBestAuthByAddr, |
| 769 | [NASLIBS="-lXau -laudio -lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS"], |
| 770 | [NASLIBS="-laudio -lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS"], |
| 771 | [$X_LIBS]) |
| 772 | ],, |
Francois Gouget | 6f670b1 | 2002-10-10 17:54:27 +0000 | [diff] [blame] | 773 | [-lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS])]) |
| 774 | |
Ove Kaaven | 1eb593c | 1999-02-14 09:34:46 +0000 | [diff] [blame] | 775 | CPPFLAGS="$ac_save_CPPFLAGS" |
Patrik Stridvall | 2941a21 | 2000-04-25 20:34:22 +0000 | [diff] [blame] | 776 | XFILES='$(XFILES)' |
Patrik Stridvall | ea58472 | 1998-11-01 16:22:07 +0000 | [diff] [blame] | 777 | else |
| 778 | XLIB="" |
| 779 | X_CFLAGS="" |
| 780 | X_LIBS="" |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 781 | fi |
| 782 | WINE_WARNING_WITH(x,[test "x$XLIB" = "x"],[X development files not found. Wine will be built |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 783 | without X support, which probably isn't what you want. You will need to install |
| 784 | development packages of Xlib/Xfree86 at the very least.]) |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 785 | |
Mike McCormack | dcc2d6c | 2005-08-02 11:29:04 +0000 | [diff] [blame] | 786 | dnl **** Check for libxml2 **** |
| 787 | |
| 788 | AC_SUBST(XML2LIBS,"") |
| 789 | AC_SUBST(XML2INCL,"") |
Mike McCormack | f3719a8 | 2005-09-03 09:39:38 +0000 | [diff] [blame] | 790 | AC_SUBST(XSLTLIBS,"") |
| 791 | AC_SUBST(XSLTINCL,"") |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 792 | if test "x$with_xml" != "xno" |
Mike McCormack | 90c75bd | 2005-08-08 18:36:53 +0000 | [diff] [blame] | 793 | then |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 794 | ac_save_CPPFLAGS="$CPPFLAGS" |
| 795 | if test "$PKG_CONFIG" != "false" |
| 796 | then |
| 797 | ac_xml_libs="`$PKG_CONFIG --libs libxml-2.0 2>/dev/null`" |
| 798 | ac_xml_cflags="`$PKG_CONFIG --cflags libxml-2.0 2>/dev/null`" |
| 799 | else |
| 800 | ac_xml_libs="`xml2-config --libs 2>/dev/null`" |
| 801 | ac_xml_cflags="`xml2-config --cflags 2>/dev/null`" |
| 802 | fi |
| 803 | CPPFLAGS="$CPPFLAGS $ac_xml_cflags" |
| 804 | AC_CHECK_HEADERS(libxml/parser.h, |
| 805 | [AC_CHECK_LIB(xml2, xmlParseMemory, |
| 806 | [AC_DEFINE(HAVE_LIBXML2, 1, [Define if you have the libxml2 library]) |
| 807 | XML2LIBS="$ac_xml_libs" |
| 808 | XML2INCL="$ac_xml_cflags"],,$ac_xml_libs) |
| 809 | AC_CHECK_LIB(xml2, xmlReadMemory, |
| 810 | [AC_DEFINE(HAVE_XMLREADMEMORY,1,[Define if libxml2 has the xmlReadMemory function])],,$ac_xml_libs) |
| 811 | AC_CHECK_LIB(xml2, xmlNewDocPI, |
| 812 | [AC_DEFINE(HAVE_XMLNEWDOCPI,1,[Define if libxml2 has the xmlNewDocPI function])],,$ac_xml_libs) |
| 813 | ]) |
| 814 | CPPFLAGS="$ac_save_CPPFLAGS" |
Emmanuel Maillard | 2a98b40 | 2007-06-22 02:58:39 +0200 | [diff] [blame] | 815 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 816 | WINE_NOTICE_WITH(xml,[test "$ac_cv_lib_xml2_xmlParseMemory" != "yes"], |
| 817 | [libxml2 development files not found, XML won't be supported.]) |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 818 | |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 819 | if test "x$with_xslt" != "xno" |
Emmanuel Maillard | 2a98b40 | 2007-06-22 02:58:39 +0200 | [diff] [blame] | 820 | then |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 821 | if test "$PKG_CONFIG" != "false" |
| 822 | then |
| 823 | ac_xslt_libs="`$PKG_CONFIG --libs libxslt 2>/dev/null`" |
| 824 | ac_xslt_cflags="`$PKG_CONFIG --cflags libxslt 2>/dev/null`" |
| 825 | else |
| 826 | ac_xslt_libs="`xslt-config --libs 2>/dev/null`" |
| 827 | ac_xslt_cflags="`xslt-config --cflags 2>/dev/null`" |
| 828 | fi |
Lei Zhang | 9d7f7bf | 2008-04-17 13:00:22 -0700 | [diff] [blame] | 829 | ac_save_CPPFLAGS="$CPPFLAGS" |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 830 | CPPFLAGS="$CPPFLAGS $ac_xslt_cflags" |
Lei Zhang | 9d7f7bf | 2008-04-17 13:00:22 -0700 | [diff] [blame] | 831 | AC_CHECK_HEADERS([libxslt/pattern.h libxslt/transform.h],,, |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 832 | [#ifdef HAVE_LIBXSLT_PATTERN_H |
Vincent Béron | d7f6424 | 2005-09-15 09:39:09 +0000 | [diff] [blame] | 833 | # include <libxslt/pattern.h> |
| 834 | #endif]) |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 835 | CPPFLAGS="$ac_save_CPPFLAGS" |
Lei Zhang | 9d7f7bf | 2008-04-17 13:00:22 -0700 | [diff] [blame] | 836 | if test "$ac_cv_header_libxslt_transform_h" = "yes" |
| 837 | then |
| 838 | AC_CHECK_LIB(xslt, xsltCompilePattern, |
| 839 | [AC_DEFINE(HAVE_LIBXSLT, 1, [Define if you have the libxslt library]) |
| 840 | XSLTLIBS="$ac_xslt_libs" |
| 841 | XSLTINCL="$ac_xslt_cflags" |
| 842 | ac_save_LIBS="$LIBS" |
| 843 | LIBS="$LIBS $ac_xslt_libs" |
| 844 | AC_CHECK_FUNCS(xsltInit) |
| 845 | LIBS="$ac_save_LIBS"],,$ac_xslt_libs) |
| 846 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 847 | fi |
| 848 | WINE_NOTICE_WITH(xslt,[test "$ac_cv_lib_xslt_xsltCompilePattern" != "yes"], |
| 849 | [libxslt development files not found, xslt won't be supported.]) |
Mike McCormack | dcc2d6c | 2005-08-02 11:29:04 +0000 | [diff] [blame] | 850 | |
Alexandre Julliard | 0006898 | 2006-04-18 16:47:53 +0200 | [diff] [blame] | 851 | dnl **** Check for libhal **** |
| 852 | AC_SUBST(HALINCL,"") |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 853 | if test "x$with_hal" != "xno" -a "$PKG_CONFIG" != "false" |
Alexandre Julliard | 0006898 | 2006-04-18 16:47:53 +0200 | [diff] [blame] | 854 | then |
| 855 | ac_save_CPPFLAGS="$CPPFLAGS" |
Alexandre Julliard | d01063e | 2006-06-22 12:07:57 +0200 | [diff] [blame] | 856 | ac_hal_libs="`$PKG_CONFIG --libs hal 2>/dev/null`" |
| 857 | ac_hal_cflags="`$PKG_CONFIG --cflags hal 2>/dev/null`" |
Alexandre Julliard | 0006898 | 2006-04-18 16:47:53 +0200 | [diff] [blame] | 858 | CPPFLAGS="$CPPFLAGS $ac_hal_cflags" |
Alexandre Julliard | b18b9f3 | 2006-04-18 19:10:59 +0200 | [diff] [blame] | 859 | AC_CHECK_HEADERS([dbus/dbus.h hal/libhal.h]) |
| 860 | if test "$ac_cv_header_dbus_dbus_h" = "yes" -a "$ac_cv_header_hal_libhal_h" = "yes" |
| 861 | then |
Alexandre Julliard | c1099bb | 2007-07-02 17:28:33 +0200 | [diff] [blame] | 862 | AC_CHECK_LIB(dbus-1, dbus_connection_close, |
| 863 | [WINE_CHECK_SONAME(hal, libhal_ctx_new, |
| 864 | [HALINCL="$ac_hal_cflags"],,[$ac_hal_libs])],,[$ac_hal_libs]) |
Alexandre Julliard | b18b9f3 | 2006-04-18 19:10:59 +0200 | [diff] [blame] | 865 | fi |
Alexandre Julliard | 0006898 | 2006-04-18 16:47:53 +0200 | [diff] [blame] | 866 | CPPFLAGS="$ac_save_CPPFLAGS" |
| 867 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 868 | WINE_NOTICE_WITH(hal,[test "x$ac_cv_lib_soname_hal" = "x"], |
| 869 | [libhal development files not found, no dynamic device support.]) |
Alexandre Julliard | 0006898 | 2006-04-18 16:47:53 +0200 | [diff] [blame] | 870 | |
Joseph Pranevich | e884f9c | 1999-01-03 16:14:34 +0000 | [diff] [blame] | 871 | dnl **** Check which curses lib to use *** |
Alexandre Julliard | 4895768 | 2001-12-26 23:08:31 +0000 | [diff] [blame] | 872 | CURSESLIBS="" |
Alexandre Julliard | 8f1d42e | 2006-12-16 17:01:37 +0100 | [diff] [blame] | 873 | if test "$ac_cv_header_ncurses_h" = "yes" |
Alexandre Julliard | 638f169 | 1999-01-17 16:32:32 +0000 | [diff] [blame] | 874 | then |
Alexandre Julliard | d078377 | 2007-07-02 17:28:50 +0200 | [diff] [blame] | 875 | WINE_CHECK_SONAME(ncurses,waddch,[CURSESLIBS="-lncurses"]) |
Alexandre Julliard | 8f1d42e | 2006-12-16 17:01:37 +0100 | [diff] [blame] | 876 | elif test "$ac_cv_header_curses_h" = "yes" |
| 877 | then |
Alexandre Julliard | d078377 | 2007-07-02 17:28:50 +0200 | [diff] [blame] | 878 | WINE_CHECK_SONAME(curses,waddch,[CURSESLIBS="-lcurses"]) |
Joseph Pranevich | e884f9c | 1999-01-03 16:14:34 +0000 | [diff] [blame] | 879 | fi |
Alexandre Julliard | 8f1d42e | 2006-12-16 17:01:37 +0100 | [diff] [blame] | 880 | ac_save_LIBS="$LIBS" |
| 881 | LIBS="$LIBS $CURSESLIBS" |
| 882 | AC_CHECK_FUNCS(mousemask) |
| 883 | LIBS="$ac_save_LIBS" |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 884 | WINE_NOTICE_WITH(curses,[test "x$ac_cv_lib_soname_curses$ac_cv_lib_soname_ncurses" = "x"], |
| 885 | [lib(n)curses development files not found, curses won't be supported.]) |
Joseph Pranevich | e884f9c | 1999-01-03 16:14:34 +0000 | [diff] [blame] | 886 | |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 887 | dnl **** Check for SANE **** |
| 888 | AC_CHECK_PROG(sane_devel,sane-config,sane-config,no) |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 889 | if test "$sane_devel" != "no" -a "x$with_sane" != "xno" |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 890 | then |
Alexandre Julliard | 418e74b | 2007-07-02 19:42:13 +0200 | [diff] [blame] | 891 | ac_sane_incl="`$sane_devel --cflags`" |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 892 | ac_save_CPPFLAGS="$CPPFLAGS" |
Alexandre Julliard | 418e74b | 2007-07-02 19:42:13 +0200 | [diff] [blame] | 893 | CPPFLAGS="$CPPFLAGS $ac_sane_incl" |
Alexandre Julliard | 96328b3 | 2002-03-31 19:23:41 +0000 | [diff] [blame] | 894 | AC_CHECK_HEADER(sane/sane.h, |
Alexandre Julliard | 418e74b | 2007-07-02 19:42:13 +0200 | [diff] [blame] | 895 | [WINE_CHECK_SONAME(sane,sane_init,[AC_SUBST(SANEINCL,"$ac_sane_incl")])]) |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 896 | CPPFLAGS="$ac_save_CPPFLAGS" |
| 897 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 898 | WINE_NOTICE_WITH(sane,[test "x$ac_cv_lib_soname_sane" = "x"], |
| 899 | [libsane development files not found, scanners won't be supported.]) |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 900 | |
Marcus Meissner | 40e7ef3 | 2006-05-08 20:09:37 +0200 | [diff] [blame] | 901 | dnl **** Check for libgphoto2 **** |
| 902 | AC_CHECK_PROG(gphoto2_devel,gphoto2-config,gphoto2-config,no) |
| 903 | AC_CHECK_PROG(gphoto2port_devel,gphoto2-port-config,gphoto2-port-config,no) |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 904 | if test "$gphoto2_devel" != "no" -a "$gphoto2port_devel" != "no" -a "x$with_gphoto" != "xno" |
Marcus Meissner | 40e7ef3 | 2006-05-08 20:09:37 +0200 | [diff] [blame] | 905 | then |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 906 | ac_gphoto2_incl="`$gphoto2_devel --cflags` `$gphoto2port_devel --cflags`" |
| 907 | ac_gphoto2_libs="" |
Marcus Meissner | 40e7ef3 | 2006-05-08 20:09:37 +0200 | [diff] [blame] | 908 | for i in `$gphoto2_devel --libs` `$gphoto2port_devel --libs` |
| 909 | do |
| 910 | case "$i" in |
| 911 | -L/usr/lib|-L/usr/lib64) ;; |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 912 | -L*|-l*) ac_gphoto2_libs="$ac_gphoto2_libs $i";; |
Marcus Meissner | 40e7ef3 | 2006-05-08 20:09:37 +0200 | [diff] [blame] | 913 | esac |
| 914 | done |
| 915 | ac_save_CPPFLAGS="$CPPFLAGS" |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 916 | CPPFLAGS="$CPPFLAGS $ac_gphoto2_incl" |
Marcus Meissner | 40e7ef3 | 2006-05-08 20:09:37 +0200 | [diff] [blame] | 917 | AC_CHECK_HEADER(gphoto2-camera.h, |
| 918 | [AC_CHECK_LIB(gphoto2,gp_camera_new, |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 919 | [AC_DEFINE(HAVE_GPHOTO2, 1, [Define if we have libgphoto2 development environment]) |
| 920 | AC_SUBST(GPHOTO2LIBS,"$ac_gphoto2_libs") |
| 921 | AC_SUBST(GPHOTO2INCL,"$ac_gphoto2_incl")],, |
| 922 | [$GPHOTO2LIBS])]) |
Marcus Meissner | 40e7ef3 | 2006-05-08 20:09:37 +0200 | [diff] [blame] | 923 | CPPFLAGS="$ac_save_CPPFLAGS" |
| 924 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 925 | WINE_NOTICE_WITH(gphoto,[test "$ac_cv_lib_gphoto2_gp_camera_new" != "yes"], |
| 926 | [libgphoto2 development files not found, digital cameras won't be supported.]) |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 927 | |
Marcus Meissner | 40e7ef3 | 2006-05-08 20:09:37 +0200 | [diff] [blame] | 928 | |
Hans Leidekker | 2d6d4e9 | 2006-04-09 18:36:01 +0200 | [diff] [blame] | 929 | dnl **** Check for resolver library *** |
| 930 | AC_SUBST(RESOLVLIBS,"") |
| 931 | if test "$ac_cv_header_resolv_h" = "yes" |
| 932 | then |
| 933 | AC_CHECK_LIB(resolv, res_query, |
| 934 | [AC_DEFINE(HAVE_RESOLV, 1, [Define if you have the resolver library and header]) |
| 935 | RESOLVLIBS="-lresolv"]) |
| 936 | fi |
| 937 | |
Hans Leidekker | d344702 | 2005-07-15 10:09:43 +0000 | [diff] [blame] | 938 | dnl **** Check for LittleCMS *** |
| 939 | AC_SUBST(LCMSLIBS,"") |
| 940 | if test "$ac_cv_header_lcms_h" = "yes" -o "$ac_cv_header_lcms_lcms_h" = "yes" |
| 941 | then |
| 942 | AC_CHECK_LIB(lcms, cmsOpenProfileFromFile, |
| 943 | [AC_DEFINE(HAVE_LCMS, 1, [Define if you have the LittleCMS development environment]) |
| 944 | LCMSLIBS="-llcms"]) |
| 945 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 946 | WINE_NOTICE_WITH(cms,[test "$ac_cv_lib_lcms_cmsOpenProfileFromFile" != "yes"], |
| 947 | [liblcms development files not found, Color Management won't be supported.]) |
Hans Leidekker | d344702 | 2005-07-15 10:09:43 +0000 | [diff] [blame] | 948 | |
Hans Leidekker | ea524de | 2005-07-15 16:39:42 +0000 | [diff] [blame] | 949 | dnl **** Check for OpenLDAP *** |
| 950 | AC_SUBST(LDAPLIBS,"") |
| 951 | if test "$ac_cv_header_ldap_h" = "yes" -a "$ac_cv_header_lber_h" = "yes" |
| 952 | then |
Hans Leidekker | ecfc2c1 | 2005-11-29 17:35:09 +0100 | [diff] [blame] | 953 | AC_CHECK_LIB(ldap_r, ldap_initialize, |
Hans Leidekker | ea524de | 2005-07-15 16:39:42 +0000 | [diff] [blame] | 954 | [AC_CHECK_LIB(lber, ber_init, |
| 955 | [AC_DEFINE(HAVE_LDAP, 1, [Define if you have the OpenLDAP development environment]) |
Hans Leidekker | ecfc2c1 | 2005-11-29 17:35:09 +0100 | [diff] [blame] | 956 | LDAPLIBS="-lldap_r -llber"],, |
| 957 | [$LIBPTHREAD])],, |
| 958 | [$LIBPTHREAD]) |
Alexandre Julliard | 2d1a627 | 2006-02-11 20:54:06 +0100 | [diff] [blame] | 959 | WINE_CHECK_LIB_FUNCS(\ |
Hans Leidekker | b2c62c9 | 2005-12-21 18:42:00 +0100 | [diff] [blame] | 960 | ldap_count_references \ |
| 961 | ldap_first_reference \ |
| 962 | ldap_next_reference \ |
Hans Leidekker | 032dbfe | 2007-11-08 12:35:36 +0100 | [diff] [blame] | 963 | ldap_parse_reference \ |
| 964 | ldap_parse_sort_control \ |
| 965 | ldap_parse_sortresponse_control \ |
| 966 | ldap_parse_vlv_control \ |
| 967 | ldap_parse_vlvresponse_control, |
Alexandre Julliard | 2d1a627 | 2006-02-11 20:54:06 +0100 | [diff] [blame] | 968 | [$LDAPLIBS $LIBPTHREAD]) |
Hans Leidekker | ea524de | 2005-07-15 16:39:42 +0000 | [diff] [blame] | 969 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 970 | WINE_NOTICE_WITH(ldap,[test "x$LDAPLIBS" = "x"], |
| 971 | [libldap (OpenLDAP) development files not found, LDAP won't be supported.]) |
Hans Leidekker | ea524de | 2005-07-15 16:39:42 +0000 | [diff] [blame] | 972 | |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 973 | dnl **** Check for FreeType 2 **** |
Alexandre Julliard | 24a55f3 | 2007-07-09 22:43:20 +0200 | [diff] [blame] | 974 | AC_CHECK_PROGS(ft_devel,[freetype-config freetype2-config],false) |
| 975 | if test "$ft_devel" != "false" |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 976 | then |
Alexandre Julliard | 24a55f3 | 2007-07-09 22:43:20 +0200 | [diff] [blame] | 977 | ac_freetype_libs=`$ft_devel --libs` |
| 978 | ac_freetype_incl=`$ft_devel --cflags` |
| 979 | WINE_CHECK_SONAME(freetype,FT_Init_FreeType,[ft_lib=yes],[ft_lib=no],[$ac_freetype_libs]) |
| 980 | if test "$ft_lib" = "yes" |
Marcus Meissner | d28955d | 2001-05-31 21:35:15 +0000 | [diff] [blame] | 981 | then |
Ian Pilcher | 40432fe | 2001-06-06 21:05:23 +0000 | [diff] [blame] | 982 | ac_save_CPPFLAGS="$CPPFLAGS" |
Alexandre Julliard | 24a55f3 | 2007-07-09 22:43:20 +0200 | [diff] [blame] | 983 | CPPFLAGS="$ac_freetype_incl $CPPFLAGS" |
Rein Klazes | e617a9c | 2003-11-19 02:18:13 +0000 | [diff] [blame] | 984 | AC_CHECK_HEADERS(ft2build.h \ |
| 985 | freetype/freetype.h \ |
Ian Pilcher | 40432fe | 2001-06-06 21:05:23 +0000 | [diff] [blame] | 986 | freetype/ftglyph.h \ |
Dmitry Timoshkov | b0d1590 | 2007-09-20 19:10:31 +0900 | [diff] [blame] | 987 | freetype/fttypes.h \ |
Ian Pilcher | 40432fe | 2001-06-06 21:05:23 +0000 | [diff] [blame] | 988 | freetype/tttables.h \ |
| 989 | freetype/ftnames.h \ |
| 990 | freetype/ftsnames.h \ |
Huw D M Davies | 814654e | 2001-09-12 20:21:06 +0000 | [diff] [blame] | 991 | freetype/ttnameid.h \ |
Huw D M Davies | 4e2024e | 2001-10-23 20:06:32 +0000 | [diff] [blame] | 992 | freetype/ftoutln.h \ |
Huw Davies | c221718 | 2004-06-16 20:06:26 +0000 | [diff] [blame] | 993 | freetype/ftwinfnt.h \ |
Huw Davies | 603d21c | 2006-01-24 10:57:35 +0100 | [diff] [blame] | 994 | freetype/ftmodapi.h \ |
Rein Klazes | 9c26917 | 2003-11-20 04:17:33 +0000 | [diff] [blame] | 995 | freetype/internal/sfnt.h,,, |
Francois Gouget | 9e67edf | 2008-03-06 12:34:48 +0100 | [diff] [blame] | 996 | [#ifdef HAVE_FT2BUILD_H |
| 997 | # include <ft2build.h> |
Rein Klazes | 9c26917 | 2003-11-20 04:17:33 +0000 | [diff] [blame] | 998 | #endif]) |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 999 | AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include <ft2build.h> |
| 1000 | #include <freetype/fttrigon.h>]])],[AC_DEFINE(HAVE_FREETYPE_FTTRIGON_H, 1, |
Huw D M Davies | c1d3813 | 2002-02-08 17:09:50 +0000 | [diff] [blame] | 1001 | [Define if you have the <freetype/fttrigon.h> header file.]) |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1002 | wine_cv_fttrigon=yes],[wine_cv_fttrigon=no]) |
Huw Davies | d8a6c27 | 2006-02-22 12:24:25 +0000 | [diff] [blame] | 1003 | AC_CHECK_TYPES(FT_TrueTypeEngineType,,,[#include <freetype/ftmodapi.h>]) |
Huw Davies | 35bca77 | 2006-04-12 12:14:27 +0100 | [diff] [blame] | 1004 | ac_save_CFLAGS="$CFLAGS" |
Alexandre Julliard | 24a55f3 | 2007-07-09 22:43:20 +0200 | [diff] [blame] | 1005 | CFLAGS="$CFLAGS $ac_freetype_libs" |
Huw Davies | 35bca77 | 2006-04-12 12:14:27 +0100 | [diff] [blame] | 1006 | AC_CHECK_FUNCS(FT_Load_Sfnt_Table) |
| 1007 | CFLAGS="$ac_save_CFLAGS" |
Ian Pilcher | 40432fe | 2001-06-06 21:05:23 +0000 | [diff] [blame] | 1008 | CPPFLAGS="$ac_save_CPPFLAGS" |
Huw D M Davies | 9b1d372 | 2002-01-29 17:09:28 +0000 | [diff] [blame] | 1009 | dnl Check that we have at least freetype/freetype.h |
Huw D M Davies | c1d3813 | 2002-02-08 17:09:50 +0000 | [diff] [blame] | 1010 | if test "$ac_cv_header_freetype_freetype_h" = "yes" -a "$wine_cv_fttrigon" = "yes" |
Huw D M Davies | 9b1d372 | 2002-01-29 17:09:28 +0000 | [diff] [blame] | 1011 | then |
| 1012 | AC_DEFINE(HAVE_FREETYPE, 1, [Define if FreeType 2 is installed]) |
Alexandre Julliard | 24a55f3 | 2007-07-09 22:43:20 +0200 | [diff] [blame] | 1013 | AC_SUBST(FREETYPELIBS,"$ac_freetype_libs") |
| 1014 | AC_SUBST(FREETYPEINCL,"$ac_freetype_incl") |
Huw D M Davies | 9b1d372 | 2002-01-29 17:09:28 +0000 | [diff] [blame] | 1015 | fi |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 1016 | fi |
| 1017 | fi |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 1018 | |
Alexandre Julliard | 8ad6049 | 2008-03-22 21:23:56 +0100 | [diff] [blame] | 1019 | dnl Only build the fonts dir if we have freetype |
| 1020 | if test "x$FREETYPELIBS" = "x" |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 1021 | then |
| 1022 | WINE_WARNING([FreeType development files not found. |
| 1023 | Fonts will not be built. Dialog text may be invisible or unaligned.]) |
| 1024 | else |
Huw Davies | 00acb5f | 2004-08-17 22:33:14 +0000 | [diff] [blame] | 1025 | AC_SUBST(FONTSSUBDIRS,"fonts") |
| 1026 | fi |
| 1027 | |
Uwe Bonnes | 6509fa9 | 2001-06-26 21:06:07 +0000 | [diff] [blame] | 1028 | dnl **** Check for parport (currently Linux only) **** |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1029 | AC_CACHE_CHECK([for parport header/ppdev.h], ac_cv_c_ppdev, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1030 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <linux/ppdev.h>]], [[ioctl (1,PPCLAIM,0)]])], |
| 1031 | [ac_cv_c_ppdev="yes"],[ac_cv_c_ppdev="no"])) |
Uwe Bonnes | 6509fa9 | 2001-06-26 21:06:07 +0000 | [diff] [blame] | 1032 | if test "$ac_cv_c_ppdev" = "yes" |
| 1033 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1034 | AC_DEFINE(HAVE_PPDEV, 1, [Define if we can use ppdev.h for parallel port access]) |
Uwe Bonnes | 6509fa9 | 2001-06-26 21:06:07 +0000 | [diff] [blame] | 1035 | fi |
| 1036 | |
Marcus Meissner | 5ee517a | 2002-08-09 19:49:31 +0000 | [diff] [blame] | 1037 | dnl **** Check for va_copy **** |
| 1038 | AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1039 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdarg.h>]], [[va_list ap1, ap2; va_copy(ap1,ap2);]])], |
| 1040 | [ac_cv_c_va_copy="yes"],[ac_cv_c_va_copy="no"]) |
Marcus Meissner | 5ee517a | 2002-08-09 19:49:31 +0000 | [diff] [blame] | 1041 | ) |
| 1042 | if test "$ac_cv_c_va_copy" = "yes" |
| 1043 | then |
| 1044 | AC_DEFINE(HAVE_VA_COPY, 1, [Define if we have va_copy]) |
| 1045 | fi |
| 1046 | AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1047 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdarg.h>]], [[va_list ap1, ap2; __va_copy(ap1,ap2);]])], |
| 1048 | [ac_cv_c___va_copy="yes"],[ac_cv_c___va_copy="no"]) |
Marcus Meissner | 5ee517a | 2002-08-09 19:49:31 +0000 | [diff] [blame] | 1049 | ) |
| 1050 | if test "$ac_cv_c___va_copy" = "yes" |
| 1051 | then |
| 1052 | AC_DEFINE(HAVE___VA_COPY, 1, [Define if we have __va_copy]) |
| 1053 | fi |
| 1054 | |
Alexandre Julliard | b2d937d | 2003-11-12 03:16:00 +0000 | [diff] [blame] | 1055 | dnl **** Check for sigsetjmp **** |
| 1056 | AC_CACHE_CHECK([for sigsetjmp], ac_cv_c_sigsetjmp, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1057 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <setjmp.h>]], [[sigjmp_buf buf; |
Alexandre Julliard | b2d937d | 2003-11-12 03:16:00 +0000 | [diff] [blame] | 1058 | sigsetjmp( buf, 1 ); |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1059 | siglongjmp( buf, 1 );]])],[ac_cv_c_sigsetjmp="yes"],[ac_cv_c_sigsetjmp="no"]) |
Alexandre Julliard | b2d937d | 2003-11-12 03:16:00 +0000 | [diff] [blame] | 1060 | ) |
| 1061 | if test "$ac_cv_c_sigsetjmp" = "yes" |
| 1062 | then |
| 1063 | AC_DEFINE(HAVE_SIGSETJMP, 1, [Define to 1 if you have the sigsetjmp (and siglongjmp) function]) |
| 1064 | fi |
| 1065 | |
Alexandre Julliard | 80e34db | 2003-09-03 00:26:08 +0000 | [diff] [blame] | 1066 | dnl **** Check for pthread_rwlock_t **** |
| 1067 | AC_CHECK_TYPES([pthread_rwlock_t, pthread_rwlockattr_t],,,[#define _GNU_SOURCE |
| 1068 | #include <pthread.h>]) |
| 1069 | |
Emmanuel Maillard | d110e1f | 2004-07-21 03:06:03 +0000 | [diff] [blame] | 1070 | dnl **** Check for pthread functions **** |
Alexandre Julliard | 2d1a627 | 2006-02-11 20:54:06 +0100 | [diff] [blame] | 1071 | WINE_CHECK_LIB_FUNCS(\ |
Tijl Coosemans | fc8172f | 2006-08-05 23:31:07 +0200 | [diff] [blame] | 1072 | pthread_attr_get_np \ |
Emmanuel Maillard | d110e1f | 2004-07-21 03:06:03 +0000 | [diff] [blame] | 1073 | pthread_getattr_np \ |
| 1074 | pthread_get_stackaddr_np \ |
Alexandre Julliard | 2d1a627 | 2006-02-11 20:54:06 +0100 | [diff] [blame] | 1075 | pthread_get_stacksize_np, |
| 1076 | [$LIBPTHREAD]) |
Alexandre Julliard | 821ab86 | 2003-11-12 22:44:56 +0000 | [diff] [blame] | 1077 | |
Peter Åstrand | 7a15eb9 | 2005-08-03 15:53:26 +0000 | [diff] [blame] | 1078 | dnl **** Check for EsounD **** |
| 1079 | AC_PATH_PROG(ESDCONFIG, esd-config) |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 1080 | if test "x$with_esd" != xno -a "x$ESDCONFIG" != x -a "x$ESDCONFIG" != x'"$ESDCONFIG"'; |
Peter Åstrand | 7a15eb9 | 2005-08-03 15:53:26 +0000 | [diff] [blame] | 1081 | then |
| 1082 | ESD_CFLAGS="" |
| 1083 | for i in `$ESDCONFIG --cflags` |
| 1084 | do |
| 1085 | case "$i" in |
| 1086 | -I*) ESD_CFLAGS="$ESD_CFLAGS $i";; |
| 1087 | esac |
| 1088 | done |
| 1089 | ESD_LIBS=`$ESDCONFIG --libs` |
| 1090 | save_CFLAGS="$CFLAGS" |
| 1091 | CFLAGS="$CFLAGS $ESD_CFLAGS" |
| 1092 | AC_CHECK_LIB(esd,esd_open_sound, |
| 1093 | [AC_SUBST(ESDLIBS, $ESD_LIBS) |
| 1094 | AC_SUBST(ESDINCL, $ESD_CFLAGS) |
| 1095 | AC_DEFINE(HAVE_ESD, 1, [Define if you have EsounD sound server])]) |
| 1096 | CFLAGS="$save_CFLAGS" |
| 1097 | fi |
| 1098 | |
Vincent Béron | 151015f | 2005-01-10 13:26:33 +0000 | [diff] [blame] | 1099 | dnl **** Check for ALSA 1.x **** |
Alexandre Julliard | f92b7c0 | 2002-06-28 18:31:01 +0000 | [diff] [blame] | 1100 | AC_SUBST(ALSALIBS,"") |
Marco Pietrobono | 0e79a41 | 2002-08-29 01:51:31 +0000 | [diff] [blame] | 1101 | if test "$ac_cv_header_sys_asoundlib_h" = "yes" -o "$ac_cv_header_alsa_asoundlib_h" = "yes" |
Alexandre Julliard | f92b7c0 | 2002-06-28 18:31:01 +0000 | [diff] [blame] | 1102 | then |
Vincent Béron | 151015f | 2005-01-10 13:26:33 +0000 | [diff] [blame] | 1103 | AC_CHECK_LIB(asound,snd_pcm_hw_params_get_access, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1104 | [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifdef HAVE_ALSA_ASOUNDLIB_H |
Vincent Béron | 151015f | 2005-01-10 13:26:33 +0000 | [diff] [blame] | 1105 | #include <alsa/asoundlib.h> |
| 1106 | #elif defined(HAVE_SYS_ASOUNDLIB_H) |
| 1107 | #include <sys/asoundlib.h> |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1108 | #endif]], [[int ret = snd_pcm_hw_params_get_access(NULL, NULL)]])], |
Vincent Béron | 151015f | 2005-01-10 13:26:33 +0000 | [diff] [blame] | 1109 | [AC_DEFINE(HAVE_ALSA,1,[Define if you have ALSA 1.x including devel headers]) |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1110 | ALSALIBS="-lasound"],[])]) |
Alexandre Julliard | f92b7c0 | 2002-06-28 18:31:01 +0000 | [diff] [blame] | 1111 | fi |
| 1112 | |
Robert Lunnon | 2a91e3f | 2002-08-01 18:22:38 +0000 | [diff] [blame] | 1113 | dnl **** Check for libaudioio (which can be used to get solaris audio support) **** |
Robert Lunnon | 2a91e3f | 2002-08-01 18:22:38 +0000 | [diff] [blame] | 1114 | AC_SUBST(AUDIOIOLIBS,"") |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 1115 | if test "$ac_cv_header_libaudioio_h" = "yes" |
| 1116 | then |
| 1117 | AC_CHECK_LIB(audioio,AudioIOGetVersion, |
Robert Lunnon | 2a91e3f | 2002-08-01 18:22:38 +0000 | [diff] [blame] | 1118 | [AUDIOIOLIBS="-laudioio" |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 1119 | AC_DEFINE(HAVE_LIBAUDIOIO, 1, [Define if you have libaudioIO])]) |
| 1120 | fi |
Robert Lunnon | 2a91e3f | 2002-08-01 18:22:38 +0000 | [diff] [blame] | 1121 | |
Alexandre Julliard | 00fdd9f | 2003-11-06 00:26:43 +0000 | [diff] [blame] | 1122 | dnl **** Check for capi4linux **** |
| 1123 | |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 1124 | if test "$ac_cv_header_capi20_h" = "yes" -a "$ac_cv_header_linux_capi_h" = "yes" |
| 1125 | then |
Alexandre Julliard | 3336e9b | 2007-07-02 17:29:17 +0200 | [diff] [blame] | 1126 | WINE_CHECK_SONAME(capi20,capi20_register) |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 1127 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 1128 | WINE_NOTICE_WITH(capi,[test "x$ac_cv_lib_soname_capi20" = "x"], |
| 1129 | [libcapi20 development files not found, ISDN won't be supported.]) |
Alexandre Julliard | 00fdd9f | 2003-11-06 00:26:43 +0000 | [diff] [blame] | 1130 | |
Alexandre Julliard | 702d355 | 2007-07-02 17:30:44 +0200 | [diff] [blame] | 1131 | dnl **** Check for cups **** |
| 1132 | if test "$ac_cv_header_cups_cups_h" = "yes" |
| 1133 | then |
| 1134 | WINE_CHECK_SONAME(cups,cupsGetDefault) |
| 1135 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 1136 | WINE_NOTICE_WITH(cups,[test "x$ac_cv_lib_soname_cups" = "x"], |
| 1137 | [libcups development files not found, CUPS won't be supported.]) |
Alexandre Julliard | 702d355 | 2007-07-02 17:30:44 +0200 | [diff] [blame] | 1138 | |
Alexandre Julliard | 34200c3 | 2007-07-02 17:31:19 +0200 | [diff] [blame] | 1139 | dnl **** Check for jack **** |
| 1140 | if test "$ac_cv_header_jack_jack_h" = "yes" |
| 1141 | then |
| 1142 | WINE_CHECK_SONAME(jack,jack_client_new) |
| 1143 | fi |
| 1144 | |
Alexandre Julliard | ccd5f28 | 2007-07-02 17:31:48 +0200 | [diff] [blame] | 1145 | dnl **** Check for fontconfig **** |
| 1146 | if test "$ac_cv_header_fontconfig_fontconfig_h" = "yes" |
| 1147 | then |
| 1148 | WINE_CHECK_SONAME(fontconfig,FcInit) |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 1149 | elif test -n "$X_CFLAGS" -a "x$with_fontconfig" != "xno" |
Alexandre Julliard | 5c07673 | 2007-10-17 17:04:01 +0200 | [diff] [blame] | 1150 | then |
| 1151 | dnl fontconfig is in the X directory on Mac OS X |
| 1152 | ac_save_CPPFLAGS="$CPPFLAGS" |
| 1153 | CPPFLAGS="$CPPFLAGS $X_CFLAGS" |
| 1154 | $as_unset ac_cv_header_fontconfig_fontconfig_h |
| 1155 | AC_CHECK_HEADERS([fontconfig/fontconfig.h]) |
| 1156 | CPPFLAGS="$ac_save_CPPFLAGS" |
| 1157 | if test "$ac_cv_header_fontconfig_fontconfig_h" = "yes" |
| 1158 | then |
| 1159 | AC_SUBST(FONTCONFIGINCL,"$X_CFLAGS") |
| 1160 | WINE_CHECK_SONAME(fontconfig,FcInit,,,[$X_LIBS]) |
| 1161 | fi |
Alexandre Julliard | ccd5f28 | 2007-07-02 17:31:48 +0200 | [diff] [blame] | 1162 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 1163 | WINE_NOTICE_WITH(fontconfig,[test "x$ac_cv_lib_soname_fontconfig" = "x"], |
| 1164 | [fontconfig development files not found, fontconfig won't be supported.]) |
Alexandre Julliard | ccd5f28 | 2007-07-02 17:31:48 +0200 | [diff] [blame] | 1165 | |
Alexandre Julliard | f91909b | 2007-07-02 17:32:09 +0200 | [diff] [blame] | 1166 | dnl **** Check for SSL **** |
| 1167 | if test "$ac_cv_header_openssl_err_h" = "yes" -a "$ac_cv_header_openssl_ssl_h" = "yes" |
| 1168 | then |
| 1169 | WINE_CHECK_SONAME(ssl,SSL_library_init) |
| 1170 | WINE_CHECK_SONAME(crypto,BIO_new_socket) |
| 1171 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 1172 | WINE_NOTICE_WITH(openssl,[test "x$ac_cv_lib_soname_ssl" = "x"], |
| 1173 | [OpenSSL development files not found, SSL won't be supported.]) |
Alexandre Julliard | f91909b | 2007-07-02 17:32:09 +0200 | [diff] [blame] | 1174 | |
Alexandre Julliard | d0fddf4 | 2007-07-02 19:53:14 +0200 | [diff] [blame] | 1175 | dnl **** Check for libjpeg **** |
| 1176 | if test "$ac_cv_header_jpeglib_h" = "yes" |
| 1177 | then |
| 1178 | WINE_CHECK_SONAME(jpeg,jpeg_start_decompress) |
| 1179 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 1180 | WINE_NOTICE_WITH(jpeg,[test "x$ac_cv_lib_soname_jpeg" = "x"], |
| 1181 | [libjpeg development files not found, JPEG won't be supported.]) |
Alexandre Julliard | d0fddf4 | 2007-07-02 19:53:14 +0200 | [diff] [blame] | 1182 | |
Alexandre Julliard | 0030215 | 2007-07-02 19:54:00 +0200 | [diff] [blame] | 1183 | dnl **** Check for libpng **** |
| 1184 | if test "$ac_cv_header_png_h" = "yes" |
| 1185 | then |
| 1186 | WINE_CHECK_SONAME(png,png_create_read_struct,,,,[[libpng[[0-9]]*]]) |
| 1187 | fi |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 1188 | WINE_NOTICE_WITH(png,[test "x$ac_cv_lib_soname_png" = "x"], |
| 1189 | [libpng development files not found, PNG won't be supported.]) |
Alexandre Julliard | 0030215 | 2007-07-02 19:54:00 +0200 | [diff] [blame] | 1190 | |
Alexandre Julliard | 84f8ab6 | 2008-01-07 17:16:29 +0100 | [diff] [blame] | 1191 | dnl **** Check for libodbc **** |
| 1192 | WINE_CHECK_SONAME(odbc,SQLConnect,,[AC_DEFINE_UNQUOTED(SONAME_LIBODBC,["libodbc.$LIBEXT"])]) |
| 1193 | |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 1194 | dnl **** Check for any sound system **** |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 1195 | if test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESD_LIBS$ac_cv_lib_soname_jack" = "x" -a \ |
| 1196 | "$ac_cv_header_sys_soundcard_h" != "yes" -a \ |
| 1197 | "$ac_cv_header_machine_soundcard_h" != "yes" -a \ |
| 1198 | "$ac_cv_header_soundcard_h" != "yes" -a \ |
| 1199 | "x$with_alsa$with_audioio$with_coreaudio$with_nas$with_esd$with_jack$with_oss" != xnonononononono |
| 1200 | then |
| 1201 | WINE_WARNING([No sound system was found. Windows applications will be silent.]) |
| 1202 | fi |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 1203 | |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 1204 | dnl **** Check for gcc specific options **** |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 1205 | |
Alexandre Julliard | fc09423 | 2003-04-14 21:46:41 +0000 | [diff] [blame] | 1206 | AC_SUBST(EXTRACFLAGS,"") |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 1207 | if test "x${GCC}" = "xyes" |
| 1208 | then |
Hans Leidekker | d17b232 | 2004-01-06 21:37:44 +0000 | [diff] [blame] | 1209 | EXTRACFLAGS="-Wall -pipe" |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 1210 | |
| 1211 | dnl Check for strength-reduce bug |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1212 | AC_CACHE_CHECK( [for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1213 | AC_RUN_IFELSE([AC_LANG_PROGRAM([[int L[[4]] = {0,1,2,3};]], |
| 1214 | [[static int Array[[3]]; |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 1215 | unsigned int B = 3; |
| 1216 | int i; |
Alexandre Julliard | d2e1c1a | 1996-03-09 16:12:43 +0000 | [diff] [blame] | 1217 | for(i=0; i<B; i++) Array[[i]] = i - 3; |
Eric Pouech | 5aee80f | 2000-11-11 00:31:39 +0000 | [diff] [blame] | 1218 | for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]]; |
| 1219 | L[[i]] = 4; |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1220 | exit( Array[[1]] != -2 || L[[2]] != 3)]])], |
| 1221 | [ac_cv_c_gcc_strength_bug="no"],[ac_cv_c_gcc_strength_bug="yes"],[ac_cv_c_gcc_strength_bug="yes"]) ) |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 1222 | if test "$ac_cv_c_gcc_strength_bug" = "yes" |
| 1223 | then |
Alexandre Julliard | fc09423 | 2003-04-14 21:46:41 +0000 | [diff] [blame] | 1224 | EXTRACFLAGS="$EXTRACFLAGS -fno-strength-reduce" |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 1225 | fi |
Alexandre Julliard | f9b94cb | 2000-12-06 03:50:22 +0000 | [diff] [blame] | 1226 | |
Alexandre Julliard | 182d150 | 2006-08-25 13:22:33 +0200 | [diff] [blame] | 1227 | dnl Check for some compiler flags |
Dimitrie O. Paun | f41c2b2 | 2004-03-02 02:23:26 +0000 | [diff] [blame] | 1228 | |
Alexandre Julliard | 182d150 | 2006-08-25 13:22:33 +0200 | [diff] [blame] | 1229 | WINE_TRY_CFLAGS([-fshort-wchar], |
| 1230 | [AC_DEFINE(CC_FLAG_SHORT_WCHAR, "-fshort-wchar", |
| 1231 | [Specifies the compiler flag that forces a short wchar_t])]) |
| 1232 | WINE_TRY_CFLAGS([-fno-strict-aliasing]) |
Alexandre Julliard | 182d150 | 2006-08-25 13:22:33 +0200 | [diff] [blame] | 1233 | WINE_TRY_CFLAGS([-Wdeclaration-after-statement]) |
| 1234 | WINE_TRY_CFLAGS([-Wwrite-strings]) |
Gerald Pfeifer | 701ef1d | 2008-01-28 01:28:59 +0100 | [diff] [blame] | 1235 | WINE_TRY_CFLAGS([-Wtype-limits]) |
Alexandre Julliard | d75cc5a | 2006-08-25 12:07:34 +0200 | [diff] [blame] | 1236 | |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 1237 | dnl Check for noisy string.h |
Alexandre Julliard | 4d52d37 | 2003-03-24 19:33:20 +0000 | [diff] [blame] | 1238 | saved_CFLAGS="$CFLAGS" |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 1239 | CFLAGS="$CFLAGS -Wpointer-arith -Werror" |
| 1240 | AC_CACHE_CHECK([for broken string.h that generates warnings], ac_cv_c_string_h_warnings, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1241 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string.h>]], [[]])],[ac_cv_c_string_h_warnings=no],[ac_cv_c_string_h_warnings=yes])) |
Alexandre Julliard | 4d52d37 | 2003-03-24 19:33:20 +0000 | [diff] [blame] | 1242 | CFLAGS="$saved_CFLAGS" |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 1243 | if test "$ac_cv_c_string_h_warnings" = "no" |
| 1244 | then |
Alexandre Julliard | fc09423 | 2003-04-14 21:46:41 +0000 | [diff] [blame] | 1245 | EXTRACFLAGS="$EXTRACFLAGS -Wpointer-arith" |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 1246 | fi |
Mike McCormack | b744372 | 2005-08-11 17:12:18 +0000 | [diff] [blame] | 1247 | |
| 1248 | AC_SUBST(BUILTINFLAG,"") |
| 1249 | saved_CFLAGS="$CFLAGS" |
| 1250 | CFLAGS="$CFLAGS -Werror" |
| 1251 | AC_CACHE_CHECK([for builtin wchar inlines], ac_cv_c_builtin_wchar_ctype, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1252 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[int iswlower(unsigned short);]])],[ac_cv_c_builtin_wchar_ctype=no],[ac_cv_c_builtin_wchar_ctype=yes])) |
Mike McCormack | b744372 | 2005-08-11 17:12:18 +0000 | [diff] [blame] | 1253 | CFLAGS="$saved_CFLAGS" |
| 1254 | if test "$ac_cv_c_builtin_wchar_ctype" = "yes" |
| 1255 | then |
Mike McCormack | a26dabe | 2006-07-19 19:16:59 +0900 | [diff] [blame] | 1256 | BUILTINFLAG="-fno-builtin" |
Mike McCormack | b744372 | 2005-08-11 17:12:18 +0000 | [diff] [blame] | 1257 | fi |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 1258 | fi |
| 1259 | |
Alexandre Julliard | 84555cc | 2002-07-22 20:51:02 +0000 | [diff] [blame] | 1260 | dnl **** Check how to define a function in assembly code **** |
Dimitrie O. Paun | c77cbbc | 2000-11-27 23:32:55 +0000 | [diff] [blame] | 1261 | |
Alexandre Julliard | 84555cc | 2002-07-22 20:51:02 +0000 | [diff] [blame] | 1262 | AC_CACHE_CHECK([how to define a function in assembly code], ac_cv_asm_func_def, |
| 1263 | WINE_TRY_ASM_LINK( |
| 1264 | ["\t.globl _ac_test\n\t.def _ac_test; .scl 2; .type 32; .endef\n_ac_test:\t.long 0"],,, |
| 1265 | ac_cv_asm_func_def=".def", |
| 1266 | [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,@function\n_ac_test:\t.long 0"],,, |
| 1267 | ac_cv_asm_func_def=".type @function", |
| 1268 | [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,2\n_ac_test:\t.long 0"],,, |
| 1269 | ac_cv_asm_func_def=".type 2", |
| 1270 | ac_cv_asm_func_def="unknown")])])) |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame] | 1271 | |
Alexandre Julliard | 84555cc | 2002-07-22 20:51:02 +0000 | [diff] [blame] | 1272 | AH_TEMPLATE(__ASM_FUNC,[Define to a macro to generate an assembly function directive]) |
| 1273 | case "$ac_cv_asm_func_def" in |
| 1274 | ".def") |
| 1275 | AC_DEFINE([__ASM_FUNC(name)], [".def " __ASM_NAME(name) "; .scl 2; .type 32; .endef"]) ;; |
| 1276 | ".type @function") |
| 1277 | AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",@function"]) ;; |
| 1278 | ".type 2") |
| 1279 | AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",2"]) ;; |
| 1280 | *) |
| 1281 | AC_DEFINE([__ASM_FUNC(name)], [""]) ;; |
| 1282 | esac |
Gregg Mattinson | 57807fa | 2002-07-20 20:17:13 +0000 | [diff] [blame] | 1283 | |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 1284 | dnl **** Check for underscore on external symbols **** |
| 1285 | |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 1286 | AC_CACHE_CHECK([whether external symbols need an underscore prefix], ac_cv_c_extern_prefix, |
Alexandre Julliard | 84555cc | 2002-07-22 20:51:02 +0000 | [diff] [blame] | 1287 | WINE_TRY_ASM_LINK([".globl _ac_test\n_ac_test:\t.long 0"], |
| 1288 | [extern int ac_test;], |
| 1289 | [if (ac_test) return 1], |
| 1290 | ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")) |
| 1291 | |
| 1292 | AH_TEMPLATE(__ASM_NAME,[Define to a macro to generate an assembly name from a C symbol]) |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 1293 | if test "$ac_cv_c_extern_prefix" = "yes" |
| 1294 | then |
Alexandre Julliard | 84555cc | 2002-07-22 20:51:02 +0000 | [diff] [blame] | 1295 | AC_DEFINE([__ASM_NAME(name)], ["_" name]) |
| 1296 | else |
| 1297 | AC_DEFINE([__ASM_NAME(name)], [name]) |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 1298 | fi |
| 1299 | |
Alexandre Julliard | a309762 | 2007-07-02 17:27:48 +0200 | [diff] [blame] | 1300 | dnl **** Platform-specific checks **** |
Hidenori Takeshima | d48ca94 | 2000-12-22 22:28:00 +0000 | [diff] [blame] | 1301 | |
Alexandre Julliard | 3a0233d | 2007-07-02 14:38:04 +0200 | [diff] [blame] | 1302 | AC_SUBST(LDPATH,"") |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 1303 | case $build_os in |
| 1304 | cygwin*|mingw32*) |
Alexandre Julliard | 3a0233d | 2007-07-02 14:38:04 +0200 | [diff] [blame] | 1305 | LDPATH="PATH=\"\$(TOOLSDIR)/libs/wine:\$\$PATH\"" |
| 1306 | ;; |
Pierre d'Herbemont | 794bf0f | 2003-11-25 03:31:26 +0000 | [diff] [blame] | 1307 | darwin*|macosx*) |
Alexandre Julliard | 3a0233d | 2007-07-02 14:38:04 +0200 | [diff] [blame] | 1308 | ;; |
| 1309 | linux*|solaris*) dnl FIXME: What other platforms support $ORIGIN? |
| 1310 | if test -z "$LDRPATH_LOCAL" |
| 1311 | then |
| 1312 | LDPATH="LD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$LD_LIBRARY_PATH\"" |
| 1313 | fi |
| 1314 | ;; |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 1315 | *) |
Alexandre Julliard | 3a0233d | 2007-07-02 14:38:04 +0200 | [diff] [blame] | 1316 | LDPATH="LD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/wine:\$\$LD_LIBRARY_PATH\"" |
| 1317 | ;; |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 1318 | esac |
| 1319 | |
Steven Edwards | c91ae45 | 2004-09-03 18:57:19 +0000 | [diff] [blame] | 1320 | dnl Mingw needs explicit msvcrt for linking libwine and winsock for wininet |
Alexandre Julliard | 7bf07d1 | 2002-08-03 00:25:59 +0000 | [diff] [blame] | 1321 | case $host_os in |
| 1322 | mingw32*) |
Steven Edwards | c91ae45 | 2004-09-03 18:57:19 +0000 | [diff] [blame] | 1323 | AC_SUBST(CRTLIBS,"-lmsvcrt") |
| 1324 | AC_SUBST(SOCKETLIBS,"-lws2_32") |
| 1325 | ;; |
Alexandre Julliard | 546839f | 2003-11-11 00:48:21 +0000 | [diff] [blame] | 1326 | esac |
| 1327 | |
Alexandre Julliard | 40bbcfb | 2006-06-20 13:44:19 +0200 | [diff] [blame] | 1328 | AC_SUBST(MAIN_BINARY,"wine-pthread") dnl Default value |
Alexandre Julliard | 2cdfd4d | 2006-02-18 15:03:51 +0100 | [diff] [blame] | 1329 | case $host_cpu in |
| 1330 | *i[[3456789]]86*) |
| 1331 | case $host_os in |
| 1332 | linux* | k*bsd*-gnu) |
| 1333 | AC_SUBST(MAIN_BINARY,"wine-glibc") |
| 1334 | AC_SUBST(EXTRA_BINARIES,"wine-kthread wine-pthread wine-preloader") ;; |
Tijl Coosemans | 9f5c69c | 2007-08-24 15:46:36 +0200 | [diff] [blame] | 1335 | freebsd*) |
| 1336 | AC_SUBST(MAIN_BINARY,"wine-freebsd") |
| 1337 | AC_SUBST(EXTRA_BINARIES,"wine-pthread") ;; |
Alexandre Julliard | 2cdfd4d | 2006-02-18 15:03:51 +0100 | [diff] [blame] | 1338 | esac |
Alexandre Julliard | 546839f | 2003-11-11 00:48:21 +0000 | [diff] [blame] | 1339 | ;; |
Alexandre Julliard | 7bf07d1 | 2002-08-03 00:25:59 +0000 | [diff] [blame] | 1340 | esac |
Alexandre Julliard | 7e6ae4b | 1996-12-08 19:25:27 +0000 | [diff] [blame] | 1341 | |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1342 | dnl **** Check for functions **** |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1343 | |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1344 | AC_CHECK_FUNCS(\ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 1345 | _pclose \ |
| 1346 | _popen \ |
Steven Edwards | 0a8e15a | 2002-05-10 01:33:40 +0000 | [diff] [blame] | 1347 | _snprintf \ |
Alexandre Julliard | c45bbad | 2003-04-01 00:12:02 +0000 | [diff] [blame] | 1348 | _spawnvp \ |
Bang Jun-young | ff96bd6 | 2007-10-15 17:09:12 +0900 | [diff] [blame] | 1349 | _strdup \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 1350 | _stricmp \ |
| 1351 | _strnicmp \ |
Rob Shearman | e9f5bce | 2008-03-03 21:48:18 +0000 | [diff] [blame] | 1352 | _strtoi64 \ |
| 1353 | _strtoui64 \ |
Steven Edwards | be514b9 | 2003-01-14 19:35:03 +0000 | [diff] [blame] | 1354 | _vsnprintf \ |
Alexandre Julliard | f9e5b0f | 2006-01-14 17:22:03 +0100 | [diff] [blame] | 1355 | asctime_r \ |
Steven Edwards | b9627c1 | 2002-05-05 21:03:44 +0000 | [diff] [blame] | 1356 | chsize \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1357 | clone \ |
Alexandre Julliard | e533e97 | 2006-08-15 12:11:30 +0200 | [diff] [blame] | 1358 | dlopen \ |
Alexandre Julliard | 969f57c | 2004-09-23 04:48:24 +0000 | [diff] [blame] | 1359 | epoll_create \ |
Hans Leidekker | c3de6ef | 2004-10-19 23:53:26 +0000 | [diff] [blame] | 1360 | ffs \ |
Jon Griffiths | d6deb6d | 2000-11-27 01:37:28 +0000 | [diff] [blame] | 1361 | finite \ |
Hans Leidekker | bed3842 | 2004-10-14 03:08:57 +0000 | [diff] [blame] | 1362 | fork \ |
Jon Griffiths | d6deb6d | 2000-11-27 01:37:28 +0000 | [diff] [blame] | 1363 | fpclass \ |
Alexandre Julliard | e77c9be | 2004-04-06 03:33:25 +0000 | [diff] [blame] | 1364 | fstatfs \ |
| 1365 | fstatvfs \ |
Steven Edwards | b9627c1 | 2002-05-05 21:03:44 +0000 | [diff] [blame] | 1366 | ftruncate \ |
Alexandre Julliard | a1fe8b4 | 2004-03-27 01:48:52 +0000 | [diff] [blame] | 1367 | futimes \ |
Robert Lunnon | c0cb4d3 | 2005-05-07 14:53:38 +0000 | [diff] [blame] | 1368 | futimesat \ |
Alexandre Julliard | a9f214c | 2006-11-13 15:42:48 +0100 | [diff] [blame] | 1369 | getdirentries \ |
Dimitrie O. Paun | 647c1a3 | 2002-12-10 19:16:24 +0000 | [diff] [blame] | 1370 | getopt_long \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1371 | getpagesize \ |
Alexandre Julliard | 142dab8 | 2002-07-01 18:17:30 +0000 | [diff] [blame] | 1372 | getpwuid \ |
Alexandre Julliard | b2d937d | 2003-11-12 03:16:00 +0000 | [diff] [blame] | 1373 | gettid \ |
Alexandre Julliard | 8d7b8e5 | 2003-03-23 20:11:45 +0000 | [diff] [blame] | 1374 | gettimeofday \ |
Steven Edwards | e7c3ab1 | 2004-10-04 20:45:49 +0000 | [diff] [blame] | 1375 | getuid \ |
Kai Blin | fd13323 | 2007-06-29 23:39:20 +0200 | [diff] [blame] | 1376 | inet_pton \ |
Alexandre Julliard | c827892 | 2006-08-04 22:11:00 +0200 | [diff] [blame] | 1377 | kqueue \ |
Alexandre Julliard | 27bb311 | 2000-11-29 17:48:06 +0000 | [diff] [blame] | 1378 | lstat \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1379 | memmove \ |
Hidenori Takeshima | a85b0a6 | 2000-11-25 23:54:12 +0000 | [diff] [blame] | 1380 | mmap \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 1381 | pclose \ |
Alexandre Julliard | 1089260 | 2006-08-15 11:41:59 +0200 | [diff] [blame] | 1382 | poll \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 1383 | popen \ |
Alexandre Julliard | 9603ee0 | 2006-04-06 11:57:37 +0200 | [diff] [blame] | 1384 | prctl \ |
Steven Edwards | b9627c1 | 2002-05-05 21:03:44 +0000 | [diff] [blame] | 1385 | pread \ |
Alexandre Julliard | f1a0de9 | 2002-01-07 21:00:27 +0000 | [diff] [blame] | 1386 | pwrite \ |
Alexandre Julliard | e293074 | 2004-01-08 05:07:05 +0000 | [diff] [blame] | 1387 | readlink \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1388 | rfork \ |
Jeremy White | 08c0f69 | 2004-10-09 02:26:29 +0000 | [diff] [blame] | 1389 | sched_yield \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 1390 | select \ |
Gerald Pfeifer | 39f6727 | 2008-01-20 21:23:08 +0100 | [diff] [blame] | 1391 | setproctitle \ |
Paul Millar | df10b7d | 2006-07-16 15:06:28 +0100 | [diff] [blame] | 1392 | setrlimit \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 1393 | settimeofday \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1394 | sigaltstack \ |
Paul Millar | 10a6c56 | 2004-12-07 17:19:54 +0000 | [diff] [blame] | 1395 | sigprocmask \ |
Steven Edwards | 0a8e15a | 2002-05-10 01:33:40 +0000 | [diff] [blame] | 1396 | snprintf \ |
Pavel Roskin | 7add08a | 2003-09-24 18:54:40 +0000 | [diff] [blame] | 1397 | spawnvp \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 1398 | statfs \ |
Alexandre Julliard | 13af489 | 2004-03-05 21:03:46 +0000 | [diff] [blame] | 1399 | statvfs \ |
Alexandre Julliard | 3b96efc | 1999-09-04 14:36:02 +0000 | [diff] [blame] | 1400 | strcasecmp \ |
Bang Jun-young | ff96bd6 | 2007-10-15 17:09:12 +0900 | [diff] [blame] | 1401 | strdup \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1402 | strerror \ |
Alexandre Julliard | 3b96efc | 1999-09-04 14:36:02 +0000 | [diff] [blame] | 1403 | strncasecmp \ |
Louis Lenders | 6c04a18 | 2006-12-17 17:56:50 +0000 | [diff] [blame] | 1404 | strtold \ |
Rob Shearman | e9f5bce | 2008-03-03 21:48:18 +0000 | [diff] [blame] | 1405 | strtoll \ |
| 1406 | strtoull \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1407 | tcgetattr \ |
Tijl Coosemans | 0c4f152 | 2007-08-23 14:12:37 +0200 | [diff] [blame] | 1408 | thr_kill2 \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1409 | timegm \ |
| 1410 | usleep \ |
Steven Edwards | be514b9 | 2003-01-14 19:35:03 +0000 | [diff] [blame] | 1411 | vsnprintf \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1412 | wait4 \ |
| 1413 | waitpid \ |
| 1414 | ) |
| 1415 | |
Alexandre Julliard | e533e97 | 2006-08-15 12:11:30 +0200 | [diff] [blame] | 1416 | dnl Check for -ldl |
| 1417 | if test "$ac_cv_func_dlopen" = no |
| 1418 | then |
| 1419 | AC_CHECK_LIB(dl,dlopen,[AC_DEFINE(HAVE_DLOPEN,1) AC_SUBST(LIBDL,"-ldl")]) |
| 1420 | fi |
| 1421 | WINE_CHECK_LIB_FUNCS(dladdr,[$LIBDL]) |
| 1422 | |
Alexandre Julliard | 1089260 | 2006-08-15 11:41:59 +0200 | [diff] [blame] | 1423 | dnl Check for -lpoll for Mac OS X/Darwin |
| 1424 | if test "$ac_cv_func_poll" = no |
| 1425 | then |
| 1426 | AC_CHECK_LIB(poll,poll,[AC_DEFINE(HAVE_POLL,1) AC_SUBST(LIBPOLL,"-lpoll")]) |
| 1427 | fi |
Maarten Lankhorst | 888eaae | 2005-04-27 09:46:25 +0000 | [diff] [blame] | 1428 | |
Alexandre Julliard | e533e97 | 2006-08-15 12:11:30 +0200 | [diff] [blame] | 1429 | dnl Check for -lnsl for Solaris |
Alexandre Julliard | 2871041 | 2007-04-23 16:31:58 +0200 | [diff] [blame] | 1430 | AC_SEARCH_LIBS(gethostbyname, nsl) |
Alexandre Julliard | e533e97 | 2006-08-15 12:11:30 +0200 | [diff] [blame] | 1431 | |
| 1432 | dnl Check for -lsocket for Solaris |
Alexandre Julliard | 2871041 | 2007-04-23 16:31:58 +0200 | [diff] [blame] | 1433 | AC_SEARCH_LIBS(connect, socket) |
Alexandre Julliard | e533e97 | 2006-08-15 12:11:30 +0200 | [diff] [blame] | 1434 | |
| 1435 | dnl Check for -lresolv for Solaris |
Alexandre Julliard | 2871041 | 2007-04-23 16:31:58 +0200 | [diff] [blame] | 1436 | AC_SEARCH_LIBS(inet_aton, resolv) |
Alexandre Julliard | e533e97 | 2006-08-15 12:11:30 +0200 | [diff] [blame] | 1437 | |
Ben Taylor | 41c5996 | 2007-04-23 13:41:42 +0000 | [diff] [blame] | 1438 | dnl **** Check for functions which may rely on -lsocket on Solaris. |
| 1439 | AC_CHECK_FUNCS(\ |
| 1440 | getaddrinfo \ |
| 1441 | getnameinfo \ |
| 1442 | getnetbyname \ |
| 1443 | getprotobyname \ |
| 1444 | getprotobynumber \ |
| 1445 | getservbyport \ |
| 1446 | inet_network \ |
| 1447 | sendmsg \ |
| 1448 | ) |
| 1449 | |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1450 | dnl **** Check for types **** |
| 1451 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1452 | AC_C_CONST |
| 1453 | AC_C_INLINE |
Alexandre Julliard | 60a8fcf | 2004-09-16 20:34:27 +0000 | [diff] [blame] | 1454 | AC_CHECK_TYPES([mode_t, off_t, pid_t, size_t, ssize_t, long long, fsblkcnt_t, fsfilcnt_t]) |
Paul Millar | 10a6c56 | 2004-12-07 17:19:54 +0000 | [diff] [blame] | 1455 | AC_CHECK_TYPES([sigset_t],,,[#include <signal.h>]) |
Gerald Pfeifer | b8b15f3 | 2005-07-10 17:42:46 +0000 | [diff] [blame] | 1456 | AC_CHECK_TYPES([request_sense],,,[#include <linux/cdrom.h>]) |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 1457 | |
Daniel Remenak | e491e8f | 2005-07-29 14:18:58 +0000 | [diff] [blame] | 1458 | AC_CHECK_MEMBERS([struct ff_effect.direction],,, |
| 1459 | [#ifdef HAVE_LINUX_INPUT_H |
| 1460 | #include <linux/input.h> |
| 1461 | #endif]) |
| 1462 | |
Paul Millar | 10a6c56 | 2004-12-07 17:19:54 +0000 | [diff] [blame] | 1463 | AC_CACHE_CHECK([for sigaddset],wine_cv_have_sigaddset, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1464 | 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])) |
Paul Millar | 10a6c56 | 2004-12-07 17:19:54 +0000 | [diff] [blame] | 1465 | if test "$wine_cv_have_sigaddset" = "yes" |
| 1466 | then |
| 1467 | AC_DEFINE(HAVE_SIGADDSET, 1, [Define if sigaddset is supported]) |
| 1468 | fi |
| 1469 | |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame] | 1470 | |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1471 | AC_CACHE_CHECK([whether we can use re-entrant gethostbyname_r Linux style], |
Rein Klazes | ff7a61f | 2000-09-24 19:41:57 +0000 | [diff] [blame] | 1472 | wine_cv_linux_gethostbyname_r_6, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1473 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <netdb.h>]],[[ |
Ken Thomases | 20d9bad | 2007-10-19 16:18:51 -0500 | [diff] [blame] | 1474 | char *name=0; |
Rein Klazes | ff7a61f | 2000-09-24 19:41:57 +0000 | [diff] [blame] | 1475 | struct hostent he; |
| 1476 | struct hostent *result; |
Ken Thomases | 20d9bad | 2007-10-19 16:18:51 -0500 | [diff] [blame] | 1477 | char *buf=0; |
Rein Klazes | ff7a61f | 2000-09-24 19:41:57 +0000 | [diff] [blame] | 1478 | int bufsize=0; |
| 1479 | int res,errnr; |
Ken Thomases | 20d9bad | 2007-10-19 16:18:51 -0500 | [diff] [blame] | 1480 | char *addr=0; |
Rein Klazes | ff7a61f | 2000-09-24 19:41:57 +0000 | [diff] [blame] | 1481 | int addrlen=0; |
| 1482 | int addrtype=0; |
| 1483 | res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr); |
| 1484 | res=gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr); |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1485 | ]])],[wine_cv_linux_gethostbyname_r_6=yes],[wine_cv_linux_gethostbyname_r_6=no |
| 1486 | ]) |
Rein Klazes | ff7a61f | 2000-09-24 19:41:57 +0000 | [diff] [blame] | 1487 | ) |
| 1488 | if test "$wine_cv_linux_gethostbyname_r_6" = "yes" |
| 1489 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1490 | AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6, 1, |
| 1491 | [Define if Linux-style gethostbyname_r and gethostbyaddr_r are available]) |
Rein Klazes | ff7a61f | 2000-09-24 19:41:57 +0000 | [diff] [blame] | 1492 | fi |
| 1493 | |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1494 | if test "$ac_cv_header_linux_joystick_h" = "yes" |
| 1495 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1496 | AC_CACHE_CHECK([whether linux/joystick.h uses the Linux 2.2+ API], |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1497 | wine_cv_linux_joystick_22_api, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1498 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1499 | #include <sys/ioctl.h> |
Marcus Meissner | 7c43499 | 2007-04-12 12:12:05 +0200 | [diff] [blame] | 1500 | #include <sys/types.h> |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1501 | #include <linux/joystick.h> |
| 1502 | |
| 1503 | struct js_event blub; |
Marcus Meissner | 605a9c3 | 1999-11-04 02:04:01 +0000 | [diff] [blame] | 1504 | #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON) |
| 1505 | #error "no 2.2 header" |
| 1506 | #endif |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1507 | ]], [[/*empty*/]])],[wine_cv_linux_joystick_22_api=yes],[wine_cv_linux_joystick_22_api=no]) |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1508 | ) |
Rein Klazes | 87d224a | 2000-04-24 17:33:49 +0000 | [diff] [blame] | 1509 | if test "$wine_cv_linux_joystick_22_api" = "yes" |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1510 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1511 | AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API, 1, |
| 1512 | [Define if <linux/joystick.h> defines the Linux 2.2 joystick API]) |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1513 | fi |
| 1514 | fi |
| 1515 | |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1516 | dnl **** FIXME: what about mixed cases, where we need two of them? *** |
| 1517 | |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 1518 | dnl Check for statfs members |
Alexandre Julliard | b859a68 | 2004-03-07 03:16:43 +0000 | [diff] [blame] | 1519 | 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],,, |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1520 | [#include <sys/types.h> |
| 1521 | #ifdef HAVE_SYS_PARAM_H |
| 1522 | # include <sys/param.h> |
| 1523 | #endif |
Robert Millan | 55b7448 | 2006-02-06 21:53:27 +0100 | [diff] [blame] | 1524 | #ifdef HAVE_SYS_MOUNT_H |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1525 | # include <sys/mount.h> |
Robert Millan | 55b7448 | 2006-02-06 21:53:27 +0100 | [diff] [blame] | 1526 | #endif |
| 1527 | #ifdef HAVE_SYS_VFS_H |
| 1528 | # include <sys/vfs.h> |
| 1529 | #endif |
| 1530 | #ifdef HAVE_SYS_STATFS_H |
| 1531 | # include <sys/statfs.h> |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 1532 | #endif]) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1533 | |
Alexandre Julliard | 13af489 | 2004-03-05 21:03:46 +0000 | [diff] [blame] | 1534 | AC_CHECK_MEMBERS([struct statvfs.f_blocks],,, |
| 1535 | [#ifdef HAVE_SYS_STATVFS_H |
| 1536 | #include <sys/statvfs.h> |
| 1537 | #endif]) |
| 1538 | |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 1539 | dnl Check for socket structure members |
| 1540 | AC_CHECK_MEMBERS([struct msghdr.msg_accrights, struct sockaddr.sa_len, struct sockaddr_un.sun_len],,, |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1541 | [#include <sys/types.h> |
Patrik Stridvall | 63ae7fe | 2002-11-08 19:34:52 +0000 | [diff] [blame] | 1542 | #ifdef HAVE_SYS_SOCKET_H |
| 1543 | # include <sys/socket.h> |
| 1544 | #endif |
| 1545 | #ifdef HAVE_SYS_UN_H |
| 1546 | # include <sys/un.h> |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 1547 | #endif]) |
| 1548 | |
Dmitry Timoshkov | ea64a36 | 2005-06-27 12:07:49 +0000 | [diff] [blame] | 1549 | dnl Check for scsireq_t and sg_io_hdr_t members |
| 1550 | AC_CHECK_MEMBERS([scsireq_t.cmd, sg_io_hdr_t.interface_id],,, |
| 1551 | [#include <sys/types.h> |
| 1552 | #ifdef HAVE_SCSI_SG_H |
| 1553 | #include <scsi/sg.h> |
| 1554 | #endif]) |
| 1555 | |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 1556 | dnl Check for siginfo_t members |
| 1557 | AC_CHECK_MEMBERS([siginfo_t.si_fd],,,[#include <signal.h>]) |
Juergen Lock | 2d33ab9 | 2000-02-13 16:03:29 +0000 | [diff] [blame] | 1558 | |
Gerald Pfeifer | 36bdc64 | 2006-02-05 13:51:03 +0100 | [diff] [blame] | 1559 | dnl Check for struct mtget members |
Gerald Pfeifer | 571d9fb | 2006-02-06 20:59:44 +0100 | [diff] [blame] | 1560 | AC_CHECK_MEMBERS([struct mtget.mt_blksiz, struct mtget.mt_gstat, struct mtget.mt_blkno],,, |
Phil Krylov | 368dab3 | 2006-02-11 20:26:33 +0100 | [diff] [blame] | 1561 | [#include <sys/types.h> |
| 1562 | #ifdef HAVE_SYS_MTIO_H |
Gerald Pfeifer | 36bdc64 | 2006-02-05 13:51:03 +0100 | [diff] [blame] | 1563 | #include <sys/mtio.h> |
| 1564 | #endif]) |
| 1565 | |
Alexandre Julliard | db89a54 | 2003-04-20 02:56:14 +0000 | [diff] [blame] | 1566 | dnl Check for struct option |
| 1567 | AC_CHECK_MEMBERS([struct option.name],,, |
| 1568 | [#ifdef HAVE_GETOPT_H |
| 1569 | #include <getopt.h> |
| 1570 | #endif]) |
| 1571 | |
Pavel Roskin | d650719 | 2003-10-03 03:28:40 +0000 | [diff] [blame] | 1572 | dnl Check for stat.st_blocks |
| 1573 | AC_CHECK_MEMBERS([struct stat.st_blocks]) |
| 1574 | |
Vitaly Lipatov | 40a6a74 | 2006-02-20 15:33:09 +0300 | [diff] [blame] | 1575 | dnl Check for sin6_scope_id |
| 1576 | AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_scope_id],,, |
| 1577 | [#ifdef HAVE_SYS_TYPES_H |
| 1578 | #include <sys/types.h> |
| 1579 | #endif |
| 1580 | #ifdef HAVE_NETINET_IN_H |
| 1581 | #include <netinet/in.h> |
| 1582 | #endif]) |
| 1583 | |
Alexandre Julliard | 788e30f | 2006-05-31 14:43:21 +0200 | [diff] [blame] | 1584 | dnl Check for ns_msg ptr member |
| 1585 | AC_CHECK_MEMBERS([ns_msg._msg_ptr],,, |
| 1586 | [#ifdef HAVE_SYS_TYPES_H |
| 1587 | #include <sys/types.h> |
| 1588 | #endif |
| 1589 | #ifdef HAVE_NETINET_IN_H |
| 1590 | # include <netinet/in.h> |
| 1591 | #endif |
| 1592 | #ifdef HAVE_ARPA_NAMESER_H |
| 1593 | # include <arpa/nameser.h> |
| 1594 | #endif]) |
| 1595 | |
Phil Krylov | 6618b03 | 2005-05-24 11:52:46 +0000 | [diff] [blame] | 1596 | dnl Check for the external timezone variables timezone and daylight |
| 1597 | AC_CACHE_CHECK([for timezone variable], ac_cv_have_timezone, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1598 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[timezone = 1]])],[ac_cv_have_timezone="yes"],[ac_cv_have_timezone="no"])) |
Phil Krylov | 6618b03 | 2005-05-24 11:52:46 +0000 | [diff] [blame] | 1599 | if test "$ac_cv_have_timezone" = "yes" |
| 1600 | then |
| 1601 | AC_DEFINE(HAVE_TIMEZONE, 1, [Define if you have the timezone variable]) |
| 1602 | fi |
| 1603 | AC_CACHE_CHECK([for daylight variable], ac_cv_have_daylight, |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 1604 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[daylight = 1]])],[ac_cv_have_daylight="yes"],[ac_cv_have_daylight="no"])) |
Phil Krylov | 6618b03 | 2005-05-24 11:52:46 +0000 | [diff] [blame] | 1605 | if test "$ac_cv_have_daylight" = "yes" |
| 1606 | then |
| 1607 | AC_DEFINE(HAVE_DAYLIGHT, 1, [Define if you have the daylight variable]) |
| 1608 | fi |
| 1609 | |
Alexandre Julliard | 05783b5 | 2002-12-11 00:21:55 +0000 | [diff] [blame] | 1610 | dnl *** check for the need to define platform-specific symbols |
Alexandre Julliard | 51d46ba | 1999-05-08 16:05:27 +0000 | [diff] [blame] | 1611 | |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 1612 | case $host_cpu in |
Alexandre Julliard | 05783b5 | 2002-12-11 00:21:55 +0000 | [diff] [blame] | 1613 | *i[[3456789]]86*) WINE_CHECK_DEFINE([__i386__]) ;; |
Alexandre Julliard | 9abd885 | 2006-10-16 21:29:23 +0200 | [diff] [blame] | 1614 | *x86_64*) WINE_CHECK_DEFINE([__x86_64__]) ;; |
Alexandre Julliard | 05783b5 | 2002-12-11 00:21:55 +0000 | [diff] [blame] | 1615 | *alpha*) WINE_CHECK_DEFINE([__ALPHA__]) ;; |
| 1616 | *sparc*) WINE_CHECK_DEFINE([__sparc__]) ;; |
Pierre d'Herbemont | b64b7de | 2003-07-16 23:37:22 +0000 | [diff] [blame] | 1617 | *powerpc*) WINE_CHECK_DEFINE([__powerpc__]) ;; |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1618 | esac |
Gregg Mattinson | 57807fa | 2002-07-20 20:17:13 +0000 | [diff] [blame] | 1619 | |
| 1620 | case $host_vendor in |
Alexandre Julliard | 05783b5 | 2002-12-11 00:21:55 +0000 | [diff] [blame] | 1621 | *sun*) WINE_CHECK_DEFINE([__sun__]) ;; |
Gregg Mattinson | 57807fa | 2002-07-20 20:17:13 +0000 | [diff] [blame] | 1622 | esac |
Gregg Mattinson | 57807fa | 2002-07-20 20:17:13 +0000 | [diff] [blame] | 1623 | |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1624 | dnl **** Generate output files **** |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1625 | |
Alexandre Julliard | 1333ac8 | 2006-09-20 21:46:49 +0200 | [diff] [blame] | 1626 | dnl autoconf versions before 2.59d need backslashes to escape newlines in subst variables |
| 1627 | AC_SUBST(DEPENDENCIES,m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]), [2.59d]), -1, |
| 1628 | ["### Dependencies:\\ |
| 1629 | \\ |
| 1630 | .INIT: Makefile\\ |
| 1631 | .BEGIN: Makefile\\ |
| 1632 | Makefile: dummy\\ |
| 1633 | -\$(MAKEDEP) -C\$(SRCDIR) -S\$(TOPSRCDIR) -T\$(TOPOBJDIR) \$(EXTRAINCL) \$(DEPEND_SRCS)\\ |
| 1634 | \\ |
Alexandre Julliard | a4b6ee3 | 2007-03-08 13:20:12 +0100 | [diff] [blame] | 1635 | \$(OBJS): \$(IDL_GEN_HEADERS)\\ |
Alexandre Julliard | 12c1962 | 2006-10-16 17:20:37 +0200 | [diff] [blame] | 1636 | \$(IDL_GEN_C_SRCS:.c=.o): \$(IDL_GEN_C_SRCS)\\ |
Alexandre Julliard | da19122 | 2008-04-24 22:13:57 +0200 | [diff] [blame] | 1637 | \$(RC_SRCS:.rc=.res): \$(IDL_TLB_SRCS:.idl=.tlb)\\ |
Alexandre Julliard | 1333ac8 | 2006-09-20 21:46:49 +0200 | [diff] [blame] | 1638 | \$(LEX_SRCS:.l=.yy.o): \$(LEX_SRCS:.l=.yy.c)\\ |
| 1639 | \$(BISON_SRCS:.y=.tab.o): \$(BISON_SRCS:.y=.tab.c)"], |
| 1640 | ["### Dependencies: |
Alexandre Julliard | 32ab895 | 2006-09-14 09:38:16 +0200 | [diff] [blame] | 1641 | |
Alexandre Julliard | 8598a4c | 2006-09-14 09:40:00 +0200 | [diff] [blame] | 1642 | .INIT: Makefile |
| 1643 | .BEGIN: Makefile |
| 1644 | Makefile: dummy |
| 1645 | -\$(MAKEDEP) -C\$(SRCDIR) -S\$(TOPSRCDIR) -T\$(TOPOBJDIR) \$(EXTRAINCL) \$(DEPEND_SRCS) |
| 1646 | |
Alexandre Julliard | a4b6ee3 | 2007-03-08 13:20:12 +0100 | [diff] [blame] | 1647 | \$(OBJS): \$(IDL_GEN_HEADERS) |
Alexandre Julliard | 12c1962 | 2006-10-16 17:20:37 +0200 | [diff] [blame] | 1648 | \$(IDL_GEN_C_SRCS:.c=.o): \$(IDL_GEN_C_SRCS) |
Alexandre Julliard | da19122 | 2008-04-24 22:13:57 +0200 | [diff] [blame] | 1649 | \$(RC_SRCS:.rc=.res): \$(IDL_TLB_SRCS:.idl=.tlb) |
Alexandre Julliard | 32ab895 | 2006-09-14 09:38:16 +0200 | [diff] [blame] | 1650 | \$(LEX_SRCS:.l=.yy.o): \$(LEX_SRCS:.l=.yy.c) |
Alexandre Julliard | 1333ac8 | 2006-09-20 21:46:49 +0200 | [diff] [blame] | 1651 | \$(BISON_SRCS:.y=.tab.o): \$(BISON_SRCS:.y=.tab.c)"])) |
Alexandre Julliard | 32ab895 | 2006-09-14 09:38:16 +0200 | [diff] [blame] | 1652 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1653 | AH_TOP([#define __WINE_CONFIG_H]) |
| 1654 | |
Alexandre Julliard | c4704c2 | 2006-09-22 09:33:00 +0200 | [diff] [blame] | 1655 | AC_CONFIG_COMMANDS([include/stamp-h], [echo timestamp > include/stamp-h]) |
| 1656 | |
Alexandre Julliard | 7dfc447 | 2006-10-20 12:25:29 +0200 | [diff] [blame] | 1657 | WINE_CONFIG_EXTRA_DIR(dlls/gdi32/enhmfdrv) |
| 1658 | WINE_CONFIG_EXTRA_DIR(dlls/gdi32/mfdrv) |
Alexandre Julliard | 1c60e3b | 2006-09-12 16:10:51 +0200 | [diff] [blame] | 1659 | WINE_CONFIG_EXTRA_DIR(dlls/kernel32/nls) |
Alexandre Julliard | b8a2e3b | 2006-11-16 14:49:25 +0100 | [diff] [blame] | 1660 | WINE_CONFIG_EXTRA_DIR(dlls/user32/resources) |
Alexandre Julliard | 57ed75b | 2006-05-23 16:42:56 +0200 | [diff] [blame] | 1661 | WINE_CONFIG_EXTRA_DIR(dlls/wineps.drv/data) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1662 | WINE_CONFIG_EXTRA_DIR(include/wine) |
| 1663 | |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1664 | MAKE_RULES=Make.rules |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 1665 | AC_SUBST_FILE(MAKE_RULES) |
| 1666 | |
Alexandre Julliard | d0edc5f | 2000-03-04 22:31:27 +0000 | [diff] [blame] | 1667 | MAKE_DLL_RULES=dlls/Makedll.rules |
| 1668 | AC_SUBST_FILE(MAKE_DLL_RULES) |
| 1669 | |
Alexandre Julliard | 633b12d | 2005-08-25 12:14:13 +0000 | [diff] [blame] | 1670 | MAKE_IMPLIB_RULES=dlls/Makeimplib.rules |
| 1671 | AC_SUBST_FILE(MAKE_IMPLIB_RULES) |
| 1672 | |
Alexandre Julliard | edeee89 | 2002-08-09 01:22:40 +0000 | [diff] [blame] | 1673 | MAKE_TEST_RULES=dlls/Maketest.rules |
| 1674 | AC_SUBST_FILE(MAKE_TEST_RULES) |
| 1675 | |
Alexandre Julliard | 626f425 | 2000-11-10 23:35:20 +0000 | [diff] [blame] | 1676 | MAKE_PROG_RULES=programs/Makeprog.rules |
| 1677 | AC_SUBST_FILE(MAKE_PROG_RULES) |
| 1678 | |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1679 | AC_CONFIG_FILES([Make.rules]) |
| 1680 | AC_CONFIG_FILES([dlls/Makedll.rules]) |
| 1681 | AC_CONFIG_FILES([dlls/Makeimplib.rules]) |
| 1682 | AC_CONFIG_FILES([dlls/Maketest.rules]) |
| 1683 | AC_CONFIG_FILES([programs/Makeprog.rules]) |
| 1684 | AC_CONFIG_FILES([Makefile]) |
| 1685 | AC_CONFIG_FILES([dlls/Makefile]) |
Eric Pouech | 0da02fb | 2007-04-16 09:22:03 +0200 | [diff] [blame] | 1686 | AC_CONFIG_FILES([dlls/acledit/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1687 | AC_CONFIG_FILES([dlls/activeds/Makefile]) |
Rob Shearman | e8c7c06 | 2007-12-07 16:02:30 +0000 | [diff] [blame] | 1688 | AC_CONFIG_FILES([dlls/actxprxy/Makefile]) |
Rob Shearman | 76e0896 | 2008-03-06 15:01:34 +0000 | [diff] [blame] | 1689 | AC_CONFIG_FILES([dlls/adsiid/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1690 | AC_CONFIG_FILES([dlls/advapi32/Makefile]) |
| 1691 | AC_CONFIG_FILES([dlls/advapi32/tests/Makefile]) |
| 1692 | AC_CONFIG_FILES([dlls/advpack/Makefile]) |
| 1693 | AC_CONFIG_FILES([dlls/advpack/tests/Makefile]) |
| 1694 | AC_CONFIG_FILES([dlls/amstream/Makefile]) |
| 1695 | AC_CONFIG_FILES([dlls/atl/Makefile]) |
| 1696 | AC_CONFIG_FILES([dlls/avicap32/Makefile]) |
| 1697 | AC_CONFIG_FILES([dlls/avifil32/Makefile]) |
| 1698 | AC_CONFIG_FILES([dlls/browseui/Makefile]) |
| 1699 | AC_CONFIG_FILES([dlls/browseui/tests/Makefile]) |
| 1700 | AC_CONFIG_FILES([dlls/cabinet/Makefile]) |
| 1701 | AC_CONFIG_FILES([dlls/cabinet/tests/Makefile]) |
| 1702 | AC_CONFIG_FILES([dlls/capi2032/Makefile]) |
| 1703 | AC_CONFIG_FILES([dlls/cards/Makefile]) |
| 1704 | AC_CONFIG_FILES([dlls/cfgmgr32/Makefile]) |
| 1705 | AC_CONFIG_FILES([dlls/clusapi/Makefile]) |
| 1706 | AC_CONFIG_FILES([dlls/comcat/Makefile]) |
| 1707 | AC_CONFIG_FILES([dlls/comcat/tests/Makefile]) |
| 1708 | AC_CONFIG_FILES([dlls/comctl32/Makefile]) |
| 1709 | AC_CONFIG_FILES([dlls/comctl32/tests/Makefile]) |
| 1710 | AC_CONFIG_FILES([dlls/comdlg32/Makefile]) |
| 1711 | AC_CONFIG_FILES([dlls/comdlg32/tests/Makefile]) |
| 1712 | AC_CONFIG_FILES([dlls/compstui/Makefile]) |
| 1713 | AC_CONFIG_FILES([dlls/credui/Makefile]) |
Rob Shearman | e146591 | 2007-10-24 16:17:36 +0100 | [diff] [blame] | 1714 | AC_CONFIG_FILES([dlls/credui/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1715 | AC_CONFIG_FILES([dlls/crtdll/Makefile]) |
| 1716 | AC_CONFIG_FILES([dlls/crypt32/Makefile]) |
| 1717 | AC_CONFIG_FILES([dlls/crypt32/tests/Makefile]) |
Maarten Lankhorst | f930821 | 2008-02-17 18:20:32 -0800 | [diff] [blame] | 1718 | AC_CONFIG_FILES([dlls/cryptdlg/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1719 | AC_CONFIG_FILES([dlls/cryptdll/Makefile]) |
| 1720 | AC_CONFIG_FILES([dlls/cryptnet/Makefile]) |
Juan Lang | 322bcdd | 2007-10-18 10:28:32 -0700 | [diff] [blame] | 1721 | AC_CONFIG_FILES([dlls/cryptnet/tests/Makefile]) |
Juan Lang | 2016c63 | 2008-04-10 11:16:01 -0700 | [diff] [blame] | 1722 | AC_CONFIG_FILES([dlls/cryptui/Makefile]) |
Christian Eggers | f89c6de | 2007-11-02 13:46:18 +0100 | [diff] [blame] | 1723 | AC_CONFIG_FILES([dlls/ctapi32/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1724 | AC_CONFIG_FILES([dlls/ctl3d32/Makefile]) |
Kovács András | 0db109f | 2007-07-09 14:06:40 +0200 | [diff] [blame] | 1725 | AC_CONFIG_FILES([dlls/d3d10/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1726 | AC_CONFIG_FILES([dlls/d3d8/Makefile]) |
| 1727 | AC_CONFIG_FILES([dlls/d3d8/tests/Makefile]) |
| 1728 | AC_CONFIG_FILES([dlls/d3d9/Makefile]) |
| 1729 | AC_CONFIG_FILES([dlls/d3d9/tests/Makefile]) |
| 1730 | AC_CONFIG_FILES([dlls/d3dim/Makefile]) |
| 1731 | AC_CONFIG_FILES([dlls/d3drm/Makefile]) |
David Adam | f50800b | 2007-04-19 21:03:53 +0200 | [diff] [blame] | 1732 | AC_CONFIG_FILES([dlls/d3drm/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1733 | AC_CONFIG_FILES([dlls/d3dx8/Makefile]) |
David Adam | e4ba8eb | 2007-10-14 00:39:54 +0200 | [diff] [blame] | 1734 | AC_CONFIG_FILES([dlls/d3dx8/tests/Makefile]) |
Tony Wasserka | 6f834d3 | 2008-02-02 10:24:28 +0100 | [diff] [blame] | 1735 | AC_CONFIG_FILES([dlls/d3dx9_24/Makefile]) |
Tony Wasserka | e9c1639 | 2008-02-02 16:22:27 +0100 | [diff] [blame] | 1736 | AC_CONFIG_FILES([dlls/d3dx9_25/Makefile]) |
Tony Wasserka | 409b19b | 2008-02-02 18:06:52 +0100 | [diff] [blame] | 1737 | AC_CONFIG_FILES([dlls/d3dx9_26/Makefile]) |
| 1738 | AC_CONFIG_FILES([dlls/d3dx9_27/Makefile]) |
Tony Wasserka | 2aa1505 | 2008-02-02 18:29:07 +0100 | [diff] [blame] | 1739 | AC_CONFIG_FILES([dlls/d3dx9_28/Makefile]) |
| 1740 | AC_CONFIG_FILES([dlls/d3dx9_29/Makefile]) |
| 1741 | AC_CONFIG_FILES([dlls/d3dx9_30/Makefile]) |
Tony Wasserka | e486662 | 2008-02-02 18:35:38 +0100 | [diff] [blame] | 1742 | AC_CONFIG_FILES([dlls/d3dx9_31/Makefile]) |
Tony Wasserka | df0a694 | 2008-02-02 19:02:34 +0100 | [diff] [blame] | 1743 | AC_CONFIG_FILES([dlls/d3dx9_32/Makefile]) |
| 1744 | AC_CONFIG_FILES([dlls/d3dx9_33/Makefile]) |
| 1745 | AC_CONFIG_FILES([dlls/d3dx9_34/Makefile]) |
| 1746 | AC_CONFIG_FILES([dlls/d3dx9_35/Makefile]) |
Tony Wasserka | 87fefc7 | 2008-01-13 11:34:43 +0100 | [diff] [blame] | 1747 | AC_CONFIG_FILES([dlls/d3dx9_36/Makefile]) |
Philip Nilsson | b67290b | 2008-03-21 11:04:46 +0100 | [diff] [blame] | 1748 | AC_CONFIG_FILES([dlls/d3dx9_36/tests/Makefile]) |
Tony Wasserka | be0799f | 2008-03-24 12:32:54 +0100 | [diff] [blame] | 1749 | AC_CONFIG_FILES([dlls/d3dx9_37/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1750 | AC_CONFIG_FILES([dlls/d3dxof/Makefile]) |
| 1751 | AC_CONFIG_FILES([dlls/dbghelp/Makefile]) |
| 1752 | AC_CONFIG_FILES([dlls/dciman32/Makefile]) |
| 1753 | AC_CONFIG_FILES([dlls/ddraw/Makefile]) |
| 1754 | AC_CONFIG_FILES([dlls/ddraw/tests/Makefile]) |
| 1755 | AC_CONFIG_FILES([dlls/ddrawex/Makefile]) |
| 1756 | AC_CONFIG_FILES([dlls/devenum/Makefile]) |
| 1757 | AC_CONFIG_FILES([dlls/dinput/Makefile]) |
| 1758 | AC_CONFIG_FILES([dlls/dinput/tests/Makefile]) |
| 1759 | AC_CONFIG_FILES([dlls/dinput8/Makefile]) |
| 1760 | AC_CONFIG_FILES([dlls/dmband/Makefile]) |
| 1761 | AC_CONFIG_FILES([dlls/dmcompos/Makefile]) |
| 1762 | AC_CONFIG_FILES([dlls/dmime/Makefile]) |
| 1763 | AC_CONFIG_FILES([dlls/dmloader/Makefile]) |
| 1764 | AC_CONFIG_FILES([dlls/dmscript/Makefile]) |
| 1765 | AC_CONFIG_FILES([dlls/dmstyle/Makefile]) |
| 1766 | AC_CONFIG_FILES([dlls/dmsynth/Makefile]) |
| 1767 | AC_CONFIG_FILES([dlls/dmusic/Makefile]) |
| 1768 | AC_CONFIG_FILES([dlls/dmusic32/Makefile]) |
| 1769 | AC_CONFIG_FILES([dlls/dnsapi/Makefile]) |
| 1770 | AC_CONFIG_FILES([dlls/dnsapi/tests/Makefile]) |
| 1771 | AC_CONFIG_FILES([dlls/dplay/Makefile]) |
| 1772 | AC_CONFIG_FILES([dlls/dplayx/Makefile]) |
Alessandro Pignotti | d1331e6 | 2007-02-27 17:27:43 +0100 | [diff] [blame] | 1773 | AC_CONFIG_FILES([dlls/dplayx/tests/Makefile]) |
Luis Carlos Busquets Pérez | 8caf078 | 2007-03-07 09:41:41 +0100 | [diff] [blame] | 1774 | AC_CONFIG_FILES([dlls/dpnaddr/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1775 | AC_CONFIG_FILES([dlls/dpnet/Makefile]) |
| 1776 | AC_CONFIG_FILES([dlls/dpnhpast/Makefile]) |
Luis C. Busquets Pérez | 5996c13 | 2007-08-02 11:04:50 +0200 | [diff] [blame] | 1777 | AC_CONFIG_FILES([dlls/dpnlobby/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1778 | AC_CONFIG_FILES([dlls/dsound/Makefile]) |
| 1779 | AC_CONFIG_FILES([dlls/dsound/tests/Makefile]) |
Maarten Lankhorst | 2472e81 | 2008-02-17 18:20:32 -0800 | [diff] [blame] | 1780 | AC_CONFIG_FILES([dlls/dssenh/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1781 | AC_CONFIG_FILES([dlls/dswave/Makefile]) |
Kovács András | c0ddd5e | 2007-06-19 09:36:14 +0200 | [diff] [blame] | 1782 | AC_CONFIG_FILES([dlls/dwmapi/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1783 | AC_CONFIG_FILES([dlls/dxdiagn/Makefile]) |
| 1784 | AC_CONFIG_FILES([dlls/dxerr8/Makefile]) |
| 1785 | AC_CONFIG_FILES([dlls/dxerr9/Makefile]) |
| 1786 | AC_CONFIG_FILES([dlls/dxguid/Makefile]) |
Peter Dons Tychsen | a2cd643 | 2007-07-27 01:43:49 +0200 | [diff] [blame] | 1787 | AC_CONFIG_FILES([dlls/faultrep/Makefile]) |
James Hawkins | c0b3af3 | 2008-03-20 18:27:46 -0700 | [diff] [blame] | 1788 | AC_CONFIG_FILES([dlls/fusion/Makefile]) |
James Hawkins | 9e021cf | 2008-03-31 01:03:24 -0500 | [diff] [blame] | 1789 | AC_CONFIG_FILES([dlls/fusion/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1790 | AC_CONFIG_FILES([dlls/gdi32/Makefile]) |
| 1791 | AC_CONFIG_FILES([dlls/gdi32/tests/Makefile]) |
Evan Stade | bed761c | 2007-05-25 10:21:44 -0700 | [diff] [blame] | 1792 | AC_CONFIG_FILES([dlls/gdiplus/Makefile]) |
Evan Stade | fcd7a62 | 2007-06-11 11:52:26 -0700 | [diff] [blame] | 1793 | AC_CONFIG_FILES([dlls/gdiplus/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1794 | AC_CONFIG_FILES([dlls/glu32/Makefile]) |
| 1795 | AC_CONFIG_FILES([dlls/gphoto2.ds/Makefile]) |
Maarten Lankhorst | e4576c8 | 2008-02-17 18:20:32 -0800 | [diff] [blame] | 1796 | AC_CONFIG_FILES([dlls/gpkcsp/Makefile]) |
Alexandre Julliard | d2d6870 | 2007-05-14 20:05:15 +0200 | [diff] [blame] | 1797 | AC_CONFIG_FILES([dlls/hal/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1798 | AC_CONFIG_FILES([dlls/hhctrl.ocx/Makefile]) |
| 1799 | AC_CONFIG_FILES([dlls/hid/Makefile]) |
| 1800 | AC_CONFIG_FILES([dlls/hlink/Makefile]) |
| 1801 | AC_CONFIG_FILES([dlls/hlink/tests/Makefile]) |
Jeff Latimer | a00aa03 | 2007-06-18 23:27:00 +1000 | [diff] [blame] | 1802 | AC_CONFIG_FILES([dlls/hnetcfg/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1803 | AC_CONFIG_FILES([dlls/iccvid/Makefile]) |
| 1804 | AC_CONFIG_FILES([dlls/icmp/Makefile]) |
| 1805 | AC_CONFIG_FILES([dlls/ifsmgr.vxd/Makefile]) |
| 1806 | AC_CONFIG_FILES([dlls/imaadp32.acm/Makefile]) |
| 1807 | AC_CONFIG_FILES([dlls/imagehlp/Makefile]) |
| 1808 | AC_CONFIG_FILES([dlls/imm32/Makefile]) |
Michael Jung | 0a31ab7 | 2008-01-02 23:14:49 +0100 | [diff] [blame] | 1809 | AC_CONFIG_FILES([dlls/imm32/tests/Makefile]) |
Rob Shearman | beab2c1 | 2007-11-02 11:35:34 +0000 | [diff] [blame] | 1810 | AC_CONFIG_FILES([dlls/inetcomm/Makefile]) |
Huw Davies | ba6b7e8 | 2007-11-02 15:45:39 +0000 | [diff] [blame] | 1811 | AC_CONFIG_FILES([dlls/inetcomm/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1812 | AC_CONFIG_FILES([dlls/infosoft/Makefile]) |
| 1813 | AC_CONFIG_FILES([dlls/infosoft/tests/Makefile]) |
Maarten Lankhorst | 7c3d24b | 2008-02-17 18:20:32 -0800 | [diff] [blame] | 1814 | AC_CONFIG_FILES([dlls/initpki/Makefile]) |
John Klehm | e925225 | 2007-07-31 11:58:02 -0500 | [diff] [blame] | 1815 | AC_CONFIG_FILES([dlls/inkobj/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1816 | AC_CONFIG_FILES([dlls/inseng/Makefile]) |
| 1817 | AC_CONFIG_FILES([dlls/iphlpapi/Makefile]) |
| 1818 | AC_CONFIG_FILES([dlls/iphlpapi/tests/Makefile]) |
James Hawkins | 58b0686 | 2008-02-15 17:39:46 -0600 | [diff] [blame] | 1819 | AC_CONFIG_FILES([dlls/itircl/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1820 | AC_CONFIG_FILES([dlls/itss/Makefile]) |
| 1821 | AC_CONFIG_FILES([dlls/itss/tests/Makefile]) |
Jacek Caban | fa23a2c | 2008-03-09 00:07:57 +0100 | [diff] [blame] | 1822 | AC_CONFIG_FILES([dlls/jscript/Makefile]) |
Jacek Caban | 63ebe01 | 2008-03-24 21:53:14 +0100 | [diff] [blame] | 1823 | AC_CONFIG_FILES([dlls/jscript/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1824 | AC_CONFIG_FILES([dlls/kernel32/Makefile]) |
| 1825 | AC_CONFIG_FILES([dlls/kernel32/tests/Makefile]) |
| 1826 | AC_CONFIG_FILES([dlls/localspl/Makefile]) |
| 1827 | AC_CONFIG_FILES([dlls/localspl/tests/Makefile]) |
Detlef Riekenberg | d24bc08 | 2007-04-06 22:33:01 +0200 | [diff] [blame] | 1828 | AC_CONFIG_FILES([dlls/localui/Makefile]) |
Detlef Riekenberg | 62e9279 | 2007-04-06 22:33:17 +0200 | [diff] [blame] | 1829 | AC_CONFIG_FILES([dlls/localui/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1830 | AC_CONFIG_FILES([dlls/lz32/Makefile]) |
| 1831 | AC_CONFIG_FILES([dlls/lz32/tests/Makefile]) |
| 1832 | AC_CONFIG_FILES([dlls/mapi32/Makefile]) |
| 1833 | AC_CONFIG_FILES([dlls/mapi32/tests/Makefile]) |
| 1834 | AC_CONFIG_FILES([dlls/mciavi32/Makefile]) |
| 1835 | AC_CONFIG_FILES([dlls/mcicda/Makefile]) |
| 1836 | AC_CONFIG_FILES([dlls/mciseq/Makefile]) |
| 1837 | AC_CONFIG_FILES([dlls/mciwave/Makefile]) |
| 1838 | AC_CONFIG_FILES([dlls/midimap/Makefile]) |
| 1839 | AC_CONFIG_FILES([dlls/mlang/Makefile]) |
| 1840 | AC_CONFIG_FILES([dlls/mlang/tests/Makefile]) |
| 1841 | AC_CONFIG_FILES([dlls/mmdevldr.vxd/Makefile]) |
| 1842 | AC_CONFIG_FILES([dlls/monodebg.vxd/Makefile]) |
Alexandre Julliard | 43dc80e | 2008-01-04 13:07:05 +0100 | [diff] [blame] | 1843 | AC_CONFIG_FILES([dlls/mountmgr.sys/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1844 | AC_CONFIG_FILES([dlls/mpr/Makefile]) |
| 1845 | AC_CONFIG_FILES([dlls/mprapi/Makefile]) |
| 1846 | AC_CONFIG_FILES([dlls/msacm32.drv/Makefile]) |
| 1847 | AC_CONFIG_FILES([dlls/msacm32/Makefile]) |
| 1848 | AC_CONFIG_FILES([dlls/msacm32/tests/Makefile]) |
| 1849 | AC_CONFIG_FILES([dlls/msadp32.acm/Makefile]) |
Alexander Nicolaysen Sørnes | 6103f31 | 2007-10-28 19:43:51 +0100 | [diff] [blame] | 1850 | AC_CONFIG_FILES([dlls/mscat32/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1851 | AC_CONFIG_FILES([dlls/mscms/Makefile]) |
| 1852 | AC_CONFIG_FILES([dlls/mscms/tests/Makefile]) |
| 1853 | AC_CONFIG_FILES([dlls/mscoree/Makefile]) |
| 1854 | AC_CONFIG_FILES([dlls/msdmo/Makefile]) |
| 1855 | AC_CONFIG_FILES([dlls/msftedit/Makefile]) |
| 1856 | AC_CONFIG_FILES([dlls/msg711.acm/Makefile]) |
Jacek Caban | 021d06a | 2007-07-29 21:25:14 +0200 | [diff] [blame] | 1857 | AC_CONFIG_FILES([dlls/mshtml.tlb/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1858 | AC_CONFIG_FILES([dlls/mshtml/Makefile]) |
| 1859 | AC_CONFIG_FILES([dlls/mshtml/tests/Makefile]) |
| 1860 | AC_CONFIG_FILES([dlls/msi/Makefile]) |
| 1861 | AC_CONFIG_FILES([dlls/msi/tests/Makefile]) |
| 1862 | AC_CONFIG_FILES([dlls/msimg32/Makefile]) |
Jacek Caban | 44a808f | 2007-10-14 19:31:45 +0200 | [diff] [blame] | 1863 | AC_CONFIG_FILES([dlls/msimtf/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1864 | AC_CONFIG_FILES([dlls/msisys.ocx/Makefile]) |
| 1865 | AC_CONFIG_FILES([dlls/msnet32/Makefile]) |
| 1866 | AC_CONFIG_FILES([dlls/msrle32/Makefile]) |
Maarten Lankhorst | c438d23 | 2008-02-17 18:20:32 -0800 | [diff] [blame] | 1867 | AC_CONFIG_FILES([dlls/mssip32/Makefile]) |
Alexandre Julliard | 455a499 | 2007-09-28 20:43:43 +0200 | [diff] [blame] | 1868 | AC_CONFIG_FILES([dlls/msvcirt/Makefile]) |
Hans Leidekker | 67815c6 | 2008-01-20 19:34:01 +0100 | [diff] [blame] | 1869 | AC_CONFIG_FILES([dlls/msvcr71/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1870 | AC_CONFIG_FILES([dlls/msvcrt/Makefile]) |
| 1871 | AC_CONFIG_FILES([dlls/msvcrt/tests/Makefile]) |
| 1872 | AC_CONFIG_FILES([dlls/msvcrt20/Makefile]) |
| 1873 | AC_CONFIG_FILES([dlls/msvcrt40/Makefile]) |
| 1874 | AC_CONFIG_FILES([dlls/msvcrtd/Makefile]) |
| 1875 | AC_CONFIG_FILES([dlls/msvcrtd/tests/Makefile]) |
| 1876 | AC_CONFIG_FILES([dlls/msvfw32/Makefile]) |
| 1877 | AC_CONFIG_FILES([dlls/msvidc32/Makefile]) |
| 1878 | AC_CONFIG_FILES([dlls/mswsock/Makefile]) |
| 1879 | AC_CONFIG_FILES([dlls/msxml3/Makefile]) |
| 1880 | AC_CONFIG_FILES([dlls/msxml3/tests/Makefile]) |
| 1881 | AC_CONFIG_FILES([dlls/nddeapi/Makefile]) |
| 1882 | AC_CONFIG_FILES([dlls/netapi32/Makefile]) |
| 1883 | AC_CONFIG_FILES([dlls/netapi32/tests/Makefile]) |
| 1884 | AC_CONFIG_FILES([dlls/newdev/Makefile]) |
| 1885 | AC_CONFIG_FILES([dlls/ntdll/Makefile]) |
| 1886 | AC_CONFIG_FILES([dlls/ntdll/tests/Makefile]) |
| 1887 | AC_CONFIG_FILES([dlls/ntdsapi/Makefile]) |
Rob Shearman | 5db4504 | 2008-01-24 18:36:36 +0000 | [diff] [blame] | 1888 | AC_CONFIG_FILES([dlls/ntdsapi/tests/Makefile]) |
Alexandre Julliard | 12c169d | 2007-05-14 19:55:32 +0200 | [diff] [blame] | 1889 | AC_CONFIG_FILES([dlls/ntoskrnl.exe/Makefile]) |
Detlef Riekenberg | a8697b5 | 2007-06-19 00:02:15 +0200 | [diff] [blame] | 1890 | AC_CONFIG_FILES([dlls/ntprint/Makefile]) |
Detlef Riekenberg | a114483 | 2007-06-21 06:07:10 +0200 | [diff] [blame] | 1891 | AC_CONFIG_FILES([dlls/ntprint/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1892 | AC_CONFIG_FILES([dlls/objsel/Makefile]) |
| 1893 | AC_CONFIG_FILES([dlls/odbc32/Makefile]) |
| 1894 | AC_CONFIG_FILES([dlls/odbccp32/Makefile]) |
| 1895 | AC_CONFIG_FILES([dlls/odbccp32/tests/Makefile]) |
| 1896 | AC_CONFIG_FILES([dlls/ole32/Makefile]) |
| 1897 | AC_CONFIG_FILES([dlls/ole32/tests/Makefile]) |
| 1898 | AC_CONFIG_FILES([dlls/oleacc/Makefile]) |
| 1899 | AC_CONFIG_FILES([dlls/oleaut32/Makefile]) |
| 1900 | AC_CONFIG_FILES([dlls/oleaut32/tests/Makefile]) |
| 1901 | AC_CONFIG_FILES([dlls/olecli32/Makefile]) |
| 1902 | AC_CONFIG_FILES([dlls/oledlg/Makefile]) |
| 1903 | AC_CONFIG_FILES([dlls/olepro32/Makefile]) |
| 1904 | AC_CONFIG_FILES([dlls/olesvr32/Makefile]) |
Stefan Leichter | 7db1bd9 | 2007-09-07 21:15:41 +0200 | [diff] [blame] | 1905 | AC_CONFIG_FILES([dlls/olethk32/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1906 | AC_CONFIG_FILES([dlls/opengl32/Makefile]) |
Roderick Colenbrander | 219269c | 2007-08-01 14:38:49 +0200 | [diff] [blame] | 1907 | AC_CONFIG_FILES([dlls/opengl32/tests/Makefile]) |
Andrey Turkin | 41f15a7 | 2007-06-02 02:28:45 +0400 | [diff] [blame] | 1908 | AC_CONFIG_FILES([dlls/pdh/Makefile]) |
Hans Leidekker | 0a6f687 | 2007-07-08 14:06:08 +0200 | [diff] [blame] | 1909 | AC_CONFIG_FILES([dlls/pdh/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1910 | AC_CONFIG_FILES([dlls/powrprof/Makefile]) |
Detlef Riekenberg | 3fd4a53 | 2007-06-18 00:32:12 +0200 | [diff] [blame] | 1911 | AC_CONFIG_FILES([dlls/printui/Makefile]) |
James Hawkins | 0758802 | 2008-01-16 00:11:17 -0600 | [diff] [blame] | 1912 | AC_CONFIG_FILES([dlls/propsys/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1913 | AC_CONFIG_FILES([dlls/psapi/Makefile]) |
| 1914 | AC_CONFIG_FILES([dlls/psapi/tests/Makefile]) |
| 1915 | AC_CONFIG_FILES([dlls/pstorec/Makefile]) |
| 1916 | AC_CONFIG_FILES([dlls/qcap/Makefile]) |
Lei Zhang | 6de8be7 | 2008-02-11 18:07:45 -0800 | [diff] [blame] | 1917 | AC_CONFIG_FILES([dlls/qedit/Makefile]) |
Lei Zhang | e8551a0 | 2008-02-13 14:47:12 -0800 | [diff] [blame] | 1918 | AC_CONFIG_FILES([dlls/qedit/tests/Makefile]) |
Roy Shea | 2b0255f | 2007-10-08 10:38:06 -0700 | [diff] [blame] | 1919 | AC_CONFIG_FILES([dlls/qmgr/Makefile]) |
Roy Shea | 884e7e7 | 2008-02-11 11:09:34 -0800 | [diff] [blame] | 1920 | AC_CONFIG_FILES([dlls/qmgr/tests/Makefile]) |
Roy Shea | 00ef4e5 | 2007-12-09 13:16:07 -0800 | [diff] [blame] | 1921 | AC_CONFIG_FILES([dlls/qmgrprxy/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1922 | AC_CONFIG_FILES([dlls/quartz/Makefile]) |
| 1923 | AC_CONFIG_FILES([dlls/quartz/tests/Makefile]) |
| 1924 | AC_CONFIG_FILES([dlls/query/Makefile]) |
| 1925 | AC_CONFIG_FILES([dlls/rasapi32/Makefile]) |
| 1926 | AC_CONFIG_FILES([dlls/resutils/Makefile]) |
| 1927 | AC_CONFIG_FILES([dlls/riched20/Makefile]) |
| 1928 | AC_CONFIG_FILES([dlls/riched20/tests/Makefile]) |
| 1929 | AC_CONFIG_FILES([dlls/riched32/Makefile]) |
Alex Villacís Lasso | 74cd590 | 2007-10-22 10:47:59 -0500 | [diff] [blame] | 1930 | AC_CONFIG_FILES([dlls/riched32/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1931 | AC_CONFIG_FILES([dlls/rpcrt4/Makefile]) |
| 1932 | AC_CONFIG_FILES([dlls/rpcrt4/tests/Makefile]) |
| 1933 | AC_CONFIG_FILES([dlls/rsabase/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1934 | AC_CONFIG_FILES([dlls/rsaenh/Makefile]) |
| 1935 | AC_CONFIG_FILES([dlls/rsaenh/tests/Makefile]) |
| 1936 | AC_CONFIG_FILES([dlls/sane.ds/Makefile]) |
Maarten Lankhorst | 322d4ca | 2008-02-17 18:20:32 -0800 | [diff] [blame] | 1937 | AC_CONFIG_FILES([dlls/sccbase/Makefile]) |
Rob Shearman | 361c6f2 | 2007-03-01 12:17:59 +0000 | [diff] [blame] | 1938 | AC_CONFIG_FILES([dlls/schannel/Makefile]) |
Yuval Fledel | 735df24 | 2007-04-25 22:49:08 +0300 | [diff] [blame] | 1939 | AC_CONFIG_FILES([dlls/schannel/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1940 | AC_CONFIG_FILES([dlls/secur32/Makefile]) |
| 1941 | AC_CONFIG_FILES([dlls/secur32/tests/Makefile]) |
| 1942 | AC_CONFIG_FILES([dlls/security/Makefile]) |
| 1943 | AC_CONFIG_FILES([dlls/sensapi/Makefile]) |
| 1944 | AC_CONFIG_FILES([dlls/serialui/Makefile]) |
| 1945 | AC_CONFIG_FILES([dlls/serialui/tests/Makefile]) |
| 1946 | AC_CONFIG_FILES([dlls/setupapi/Makefile]) |
| 1947 | AC_CONFIG_FILES([dlls/setupapi/tests/Makefile]) |
| 1948 | AC_CONFIG_FILES([dlls/sfc/Makefile]) |
| 1949 | AC_CONFIG_FILES([dlls/sfc_os/Makefile]) |
| 1950 | AC_CONFIG_FILES([dlls/shdoclc/Makefile]) |
| 1951 | AC_CONFIG_FILES([dlls/shdocvw/Makefile]) |
| 1952 | AC_CONFIG_FILES([dlls/shdocvw/tests/Makefile]) |
| 1953 | AC_CONFIG_FILES([dlls/shell32/Makefile]) |
| 1954 | AC_CONFIG_FILES([dlls/shell32/tests/Makefile]) |
| 1955 | AC_CONFIG_FILES([dlls/shfolder/Makefile]) |
| 1956 | AC_CONFIG_FILES([dlls/shlwapi/Makefile]) |
| 1957 | AC_CONFIG_FILES([dlls/shlwapi/tests/Makefile]) |
Maarten Lankhorst | b3a9699 | 2008-02-17 18:20:32 -0800 | [diff] [blame] | 1958 | AC_CONFIG_FILES([dlls/slbcsp/Makefile]) |
Alistair Leslie-Hughes | ea56370 | 2008-02-20 00:17:08 +1100 | [diff] [blame] | 1959 | AC_CONFIG_FILES([dlls/slc/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1960 | AC_CONFIG_FILES([dlls/snmpapi/Makefile]) |
| 1961 | AC_CONFIG_FILES([dlls/snmpapi/tests/Makefile]) |
Maarten Lankhorst | e11826f | 2008-02-17 18:20:32 -0800 | [diff] [blame] | 1962 | AC_CONFIG_FILES([dlls/softpub/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1963 | AC_CONFIG_FILES([dlls/spoolss/Makefile]) |
Detlef Riekenberg | cf122ba | 2007-10-03 01:01:12 +0200 | [diff] [blame] | 1964 | AC_CONFIG_FILES([dlls/spoolss/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1965 | AC_CONFIG_FILES([dlls/stdole2.tlb/Makefile]) |
| 1966 | AC_CONFIG_FILES([dlls/stdole32.tlb/Makefile]) |
| 1967 | AC_CONFIG_FILES([dlls/sti/Makefile]) |
| 1968 | AC_CONFIG_FILES([dlls/strmiids/Makefile]) |
| 1969 | AC_CONFIG_FILES([dlls/svrapi/Makefile]) |
EA Durbin | 74977da | 2007-04-19 18:28:52 -0500 | [diff] [blame] | 1970 | AC_CONFIG_FILES([dlls/sxs/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1971 | AC_CONFIG_FILES([dlls/tapi32/Makefile]) |
| 1972 | AC_CONFIG_FILES([dlls/twain_32/Makefile]) |
| 1973 | AC_CONFIG_FILES([dlls/unicows/Makefile]) |
| 1974 | AC_CONFIG_FILES([dlls/url/Makefile]) |
| 1975 | AC_CONFIG_FILES([dlls/urlmon/Makefile]) |
| 1976 | AC_CONFIG_FILES([dlls/urlmon/tests/Makefile]) |
| 1977 | AC_CONFIG_FILES([dlls/user32/Makefile]) |
| 1978 | AC_CONFIG_FILES([dlls/user32/tests/Makefile]) |
| 1979 | AC_CONFIG_FILES([dlls/userenv/Makefile]) |
Lei Zhang | ffb0457 | 2008-04-29 18:09:24 -0700 | [diff] [blame] | 1980 | AC_CONFIG_FILES([dlls/userenv/tests/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1981 | AC_CONFIG_FILES([dlls/usp10/Makefile]) |
| 1982 | AC_CONFIG_FILES([dlls/usp10/tests/Makefile]) |
| 1983 | AC_CONFIG_FILES([dlls/uuid/Makefile]) |
| 1984 | AC_CONFIG_FILES([dlls/uxtheme/Makefile]) |
| 1985 | AC_CONFIG_FILES([dlls/uxtheme/tests/Makefile]) |
| 1986 | AC_CONFIG_FILES([dlls/vdhcp.vxd/Makefile]) |
| 1987 | AC_CONFIG_FILES([dlls/vdmdbg/Makefile]) |
| 1988 | AC_CONFIG_FILES([dlls/version/Makefile]) |
| 1989 | AC_CONFIG_FILES([dlls/version/tests/Makefile]) |
| 1990 | AC_CONFIG_FILES([dlls/vmm.vxd/Makefile]) |
| 1991 | AC_CONFIG_FILES([dlls/vnbt.vxd/Makefile]) |
| 1992 | AC_CONFIG_FILES([dlls/vnetbios.vxd/Makefile]) |
| 1993 | AC_CONFIG_FILES([dlls/vtdapi.vxd/Makefile]) |
| 1994 | AC_CONFIG_FILES([dlls/vwin32.vxd/Makefile]) |
| 1995 | AC_CONFIG_FILES([dlls/w32skrnl/Makefile]) |
| 1996 | AC_CONFIG_FILES([dlls/winealsa.drv/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 1997 | AC_CONFIG_FILES([dlls/wineaudioio.drv/Makefile]) |
| 1998 | AC_CONFIG_FILES([dlls/winecoreaudio.drv/Makefile]) |
| 1999 | AC_CONFIG_FILES([dlls/winecrt0/Makefile]) |
| 2000 | AC_CONFIG_FILES([dlls/wined3d/Makefile]) |
| 2001 | AC_CONFIG_FILES([dlls/winedos/Makefile]) |
| 2002 | AC_CONFIG_FILES([dlls/wineesd.drv/Makefile]) |
| 2003 | AC_CONFIG_FILES([dlls/winejack.drv/Makefile]) |
| 2004 | AC_CONFIG_FILES([dlls/winejoystick.drv/Makefile]) |
| 2005 | AC_CONFIG_FILES([dlls/winemp3.acm/Makefile]) |
| 2006 | AC_CONFIG_FILES([dlls/winenas.drv/Makefile]) |
| 2007 | AC_CONFIG_FILES([dlls/wineoss.drv/Makefile]) |
| 2008 | AC_CONFIG_FILES([dlls/wineps.drv/Makefile]) |
| 2009 | AC_CONFIG_FILES([dlls/winequartz.drv/Makefile]) |
| 2010 | AC_CONFIG_FILES([dlls/winex11.drv/Makefile]) |
| 2011 | AC_CONFIG_FILES([dlls/wing32/Makefile]) |
Jacek Caban | 2157296 | 2007-07-31 00:54:42 +0200 | [diff] [blame] | 2012 | AC_CONFIG_FILES([dlls/winhttp/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 2013 | AC_CONFIG_FILES([dlls/wininet/Makefile]) |
| 2014 | AC_CONFIG_FILES([dlls/wininet/tests/Makefile]) |
| 2015 | AC_CONFIG_FILES([dlls/winmm/Makefile]) |
| 2016 | AC_CONFIG_FILES([dlls/winmm/tests/Makefile]) |
| 2017 | AC_CONFIG_FILES([dlls/winnls32/Makefile]) |
Mounir IDRASSI | 23df68d | 2007-05-23 00:51:46 +0200 | [diff] [blame] | 2018 | AC_CONFIG_FILES([dlls/winscard/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 2019 | AC_CONFIG_FILES([dlls/winspool.drv/Makefile]) |
| 2020 | AC_CONFIG_FILES([dlls/winspool.drv/tests/Makefile]) |
| 2021 | AC_CONFIG_FILES([dlls/wintab32/Makefile]) |
| 2022 | AC_CONFIG_FILES([dlls/wintrust/Makefile]) |
| 2023 | AC_CONFIG_FILES([dlls/wintrust/tests/Makefile]) |
| 2024 | AC_CONFIG_FILES([dlls/wldap32/Makefile]) |
Marcus Meissner | 4328d92 | 2008-01-16 15:03:03 +0100 | [diff] [blame] | 2025 | AC_CONFIG_FILES([dlls/wmi/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 2026 | AC_CONFIG_FILES([dlls/wnaspi32/Makefile]) |
| 2027 | AC_CONFIG_FILES([dlls/wow32/Makefile]) |
| 2028 | AC_CONFIG_FILES([dlls/ws2_32/Makefile]) |
| 2029 | AC_CONFIG_FILES([dlls/ws2_32/tests/Makefile]) |
| 2030 | AC_CONFIG_FILES([dlls/wsock32/Makefile]) |
| 2031 | AC_CONFIG_FILES([dlls/wtsapi32/Makefile]) |
| 2032 | AC_CONFIG_FILES([documentation/Makefile]) |
| 2033 | AC_CONFIG_FILES([fonts/Makefile]) |
| 2034 | AC_CONFIG_FILES([include/Makefile]) |
| 2035 | AC_CONFIG_FILES([libs/Makefile]) |
| 2036 | AC_CONFIG_FILES([libs/port/Makefile]) |
| 2037 | AC_CONFIG_FILES([libs/wine/Makefile]) |
| 2038 | AC_CONFIG_FILES([libs/wpp/Makefile]) |
| 2039 | AC_CONFIG_FILES([loader/Makefile]) |
| 2040 | AC_CONFIG_FILES([programs/Makefile]) |
| 2041 | AC_CONFIG_FILES([programs/clock/Makefile]) |
| 2042 | AC_CONFIG_FILES([programs/cmd/Makefile]) |
| 2043 | AC_CONFIG_FILES([programs/cmdlgtst/Makefile]) |
| 2044 | AC_CONFIG_FILES([programs/control/Makefile]) |
| 2045 | AC_CONFIG_FILES([programs/eject/Makefile]) |
| 2046 | AC_CONFIG_FILES([programs/expand/Makefile]) |
| 2047 | AC_CONFIG_FILES([programs/explorer/Makefile]) |
| 2048 | AC_CONFIG_FILES([programs/hh/Makefile]) |
| 2049 | AC_CONFIG_FILES([programs/icinfo/Makefile]) |
| 2050 | AC_CONFIG_FILES([programs/iexplore/Makefile]) |
| 2051 | AC_CONFIG_FILES([programs/msiexec/Makefile]) |
Tim Schwartz | 451616e | 2007-05-02 12:30:19 -0500 | [diff] [blame] | 2052 | AC_CONFIG_FILES([programs/net/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 2053 | AC_CONFIG_FILES([programs/notepad/Makefile]) |
| 2054 | AC_CONFIG_FILES([programs/oleview/Makefile]) |
| 2055 | AC_CONFIG_FILES([programs/progman/Makefile]) |
Andrew Riedi | 2087ad4 | 2008-03-18 23:36:28 -0700 | [diff] [blame] | 2056 | AC_CONFIG_FILES([programs/reg/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 2057 | AC_CONFIG_FILES([programs/regedit/Makefile]) |
| 2058 | AC_CONFIG_FILES([programs/regsvr32/Makefile]) |
| 2059 | AC_CONFIG_FILES([programs/rpcss/Makefile]) |
| 2060 | AC_CONFIG_FILES([programs/rundll32/Makefile]) |
Louis Lenders | 6547fef | 2008-02-26 22:12:40 +0000 | [diff] [blame] | 2061 | AC_CONFIG_FILES([programs/secedit/Makefile]) |
Mikołaj Zalewski | 7bd0efa | 2008-03-15 09:49:42 +0100 | [diff] [blame] | 2062 | AC_CONFIG_FILES([programs/services/Makefile]) |
Jacek Caban | d1ddc9c | 2007-03-19 14:13:34 +0100 | [diff] [blame] | 2063 | AC_CONFIG_FILES([programs/spoolsv/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 2064 | AC_CONFIG_FILES([programs/start/Makefile]) |
Roy Shea | 4714c4f | 2007-12-04 15:00:34 -0800 | [diff] [blame] | 2065 | AC_CONFIG_FILES([programs/svchost/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 2066 | AC_CONFIG_FILES([programs/taskmgr/Makefile]) |
| 2067 | AC_CONFIG_FILES([programs/uninstaller/Makefile]) |
| 2068 | AC_CONFIG_FILES([programs/view/Makefile]) |
| 2069 | AC_CONFIG_FILES([programs/wineboot/Makefile]) |
| 2070 | AC_CONFIG_FILES([programs/winebrowser/Makefile]) |
| 2071 | AC_CONFIG_FILES([programs/winecfg/Makefile]) |
| 2072 | AC_CONFIG_FILES([programs/wineconsole/Makefile]) |
| 2073 | AC_CONFIG_FILES([programs/winedbg/Makefile]) |
Alexandre Julliard | c81d099 | 2007-05-17 16:51:44 +0200 | [diff] [blame] | 2074 | AC_CONFIG_FILES([programs/winedevice/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 2075 | AC_CONFIG_FILES([programs/winefile/Makefile]) |
| 2076 | AC_CONFIG_FILES([programs/winemenubuilder/Makefile]) |
| 2077 | AC_CONFIG_FILES([programs/winemine/Makefile]) |
| 2078 | AC_CONFIG_FILES([programs/winepath/Makefile]) |
| 2079 | AC_CONFIG_FILES([programs/winetest/Makefile]) |
| 2080 | AC_CONFIG_FILES([programs/winevdm/Makefile]) |
| 2081 | AC_CONFIG_FILES([programs/winhelp/Makefile]) |
| 2082 | AC_CONFIG_FILES([programs/winver/Makefile]) |
| 2083 | AC_CONFIG_FILES([programs/wordpad/Makefile]) |
Mikołaj Zalewski | 2777a94 | 2007-08-01 20:01:29 -0700 | [diff] [blame] | 2084 | AC_CONFIG_FILES([programs/write/Makefile]) |
Jason Edmeades | 921edab | 2007-03-06 20:04:15 +0000 | [diff] [blame] | 2085 | AC_CONFIG_FILES([programs/xcopy/Makefile]) |
Marcus Meissner | fbc80d7 | 2007-02-27 07:48:58 +0100 | [diff] [blame] | 2086 | AC_CONFIG_FILES([server/Makefile]) |
| 2087 | AC_CONFIG_FILES([tools/Makefile]) |
| 2088 | AC_CONFIG_FILES([tools/widl/Makefile]) |
| 2089 | AC_CONFIG_FILES([tools/winebuild/Makefile]) |
| 2090 | AC_CONFIG_FILES([tools/winedump/Makefile]) |
| 2091 | AC_CONFIG_FILES([tools/winegcc/Makefile]) |
| 2092 | AC_CONFIG_FILES([tools/wmc/Makefile]) |
| 2093 | AC_CONFIG_FILES([tools/wrc/Makefile]) |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 2094 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 2095 | AC_OUTPUT |
| 2096 | |
Alexandre Julliard | e3bd111 | 2006-09-21 11:14:38 +0200 | [diff] [blame] | 2097 | if test "$no_create" = "yes" |
| 2098 | then |
| 2099 | exit 0 |
| 2100 | fi |
| 2101 | |
Alexandre Julliard | f9dec94 | 2007-07-10 15:14:15 +0200 | [diff] [blame] | 2102 | WINE_PRINT_MESSAGES |
Francois Gouget | 99d026f | 2005-03-19 17:08:18 +0000 | [diff] [blame] | 2103 | |
Alexandre Julliard | a41f0f1 | 2008-01-07 14:51:44 +0100 | [diff] [blame] | 2104 | echo " |
| 2105 | $as_me: Finished. Do '${ac_make} depend && ${ac_make}' to compile Wine. |
| 2106 | " >&AS_MESSAGE_FD |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 2107 | |
| 2108 | dnl Local Variables: |
| 2109 | dnl comment-start: "dnl " |
| 2110 | dnl comment-end: "" |
| 2111 | dnl comment-start-skip: "\\bdnl\\b\\s *" |
Alexandre Julliard | ad356de | 2007-06-08 20:23:16 +0200 | [diff] [blame] | 2112 | dnl compile-command: "autoreconf --warnings=all" |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 2113 | dnl End: |