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 | |
Alexandre Julliard | daa2886 | 2002-04-11 21:54:01 +0000 | [diff] [blame] | 7 | AC_PREREQ(2.53) |
Alexandre Julliard | 875927f | 2004-01-02 01:55:29 +0000 | [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 | c728efc | 2002-10-02 02:34:09 +0000 | [diff] [blame] | 15 | AC_ARG_ENABLE(win16, AC_HELP_STRING([--disable-win16],[do not include Win16 support])) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 16 | AC_ARG_ENABLE(debug, AC_HELP_STRING([--disable-debug],[compile out all debugging messages])) |
| 17 | AC_ARG_ENABLE(trace, AC_HELP_STRING([--disable-trace],[compile out TRACE messages])) |
Alexandre Julliard | 2aa8e87 | 2004-10-08 23:39:16 +0000 | [diff] [blame] | 18 | AC_ARG_ENABLE(win64, AC_HELP_STRING([--enable-win64], [build a Win64 emulator on AMD64 (won't run Win32 binaries)])) |
Alexandre Julliard | b807499 | 2002-11-21 21:51:24 +0000 | [diff] [blame] | 19 | |
| 20 | AC_ARG_WITH(opengl, AC_HELP_STRING([--without-opengl],[do not use OpenGL])) |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 21 | AC_ARG_WITH(curses, AC_HELP_STRING([--without-curses],[do not use curses])) |
| 22 | AC_ARG_WITH(wine-tools,AC_HELP_STRING([--with-wine-tools=<dir>],[use Wine tools from directory <dir>])) |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 23 | |
Vincent Béron | 1f50414 | 2004-10-19 23:06:11 +0000 | [diff] [blame] | 24 | AC_SUBST(DLLDEFS,"") |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 25 | if test "x$enable_debug" = "xno" |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 26 | then |
Vincent Béron | 1f50414 | 2004-10-19 23:06:11 +0000 | [diff] [blame] | 27 | DLLDEFS="$DLLDEFS -DWINE_NO_DEBUG_MSGS" |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 28 | fi |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 29 | if test "x$enable_trace" = "xno" -o "x$enable_debug" = "xno" |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 30 | then |
Vincent Béron | 1f50414 | 2004-10-19 23:06:11 +0000 | [diff] [blame] | 31 | DLLDEFS="$DLLDEFS -DWINE_NO_TRACE_MSGS" |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 32 | fi |
| 33 | |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 34 | AC_CANONICAL_HOST |
Alexandre Julliard | 2aa8e87 | 2004-10-08 23:39:16 +0000 | [diff] [blame] | 35 | case $host in |
| 36 | x86_64*linux*) |
| 37 | if test "x$enable_win64" != "xyes" |
| 38 | then |
| 39 | test -n "$CC" || CC="gcc -m32" |
| 40 | test -n "$LD" || LD="ld -m elf_i386" |
| 41 | test -n "$AS" || AS="as --32" |
Alex Woods | bbcf986 | 2005-02-10 19:09:08 +0000 | [diff] [blame] | 42 | host_cpu="i386" |
Alexandre Julliard | 2aa8e87 | 2004-10-08 23:39:16 +0000 | [diff] [blame] | 43 | fi |
| 44 | ;; |
| 45 | esac |
| 46 | |
Alexandre Julliard | 71440f3 | 2005-05-19 14:28:17 +0000 | [diff] [blame] | 47 | dnl enable_win16 defaults to yes on x86, to no on other CPUs |
| 48 | case $host_cpu in |
| 49 | *i[[3456789]]86*) |
| 50 | if test "x$enable_win16" != "xno" |
| 51 | then |
| 52 | enable_win16="yes" |
| 53 | fi |
| 54 | ;; |
| 55 | esac |
| 56 | |
| 57 | AC_SUBST(WIN16_FILES,"\$(WIN16_FILES)") |
| 58 | AC_SUBST(WIN16_INSTALL,"\$(WIN16_INSTALL)") |
| 59 | if test "x$enable_win16" != "xyes" |
| 60 | then |
| 61 | WIN16_FILES="" |
| 62 | WIN16_INSTALL="" |
| 63 | fi |
| 64 | |
| 65 | dnl **** Check for some programs **** |
| 66 | |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 67 | AC_PROG_MAKE_SET |
| 68 | AC_PROG_CC |
Dimitrie O. Paun | f41c2b2 | 2004-03-02 02:23:26 +0000 | [diff] [blame] | 69 | AC_PROG_CXX |
Alexandre Julliard | a631ef6 | 2004-03-03 20:30:46 +0000 | [diff] [blame] | 70 | dnl We can't use AC_PROG_CPP for winegcc, it uses by default $(CC) -E |
| 71 | AC_CHECK_TOOL(CPPBIN,cpp,cpp) |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 72 | |
| 73 | AC_CACHE_CHECK([for the directory containing the Wine tools], wine_cv_toolsdir, |
| 74 | [if test -z "$with_wine_tools"; then |
| 75 | if test "$cross_compiling" = "yes"; then |
| 76 | AC_MSG_ERROR([you must use the --with-wine-tools option when cross-compiling.]) |
| 77 | else |
| 78 | wine_cv_toolsdir="\$(TOPOBJDIR)" |
| 79 | fi |
| 80 | elif test -d "$with_wine_tools/tools/winebuild"; then |
| 81 | case $with_wine_tools in |
| 82 | /*) wine_cv_toolsdir="$with_wine_tools" ;; |
| 83 | *) wine_cv_toolsdir="\$(TOPOBJDIR)/$with_wine_tools" ;; |
| 84 | esac |
| 85 | else |
| 86 | AC_MSG_ERROR([could not find Wine tools in $with_wine_tools.]) |
| 87 | fi]) |
| 88 | AC_SUBST(TOOLSDIR,$wine_cv_toolsdir) |
| 89 | |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 90 | AC_PATH_XTRA |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 91 | AC_PROG_LEX |
Marcus Meissner | 5c5a621 | 2002-01-22 18:28:25 +0000 | [diff] [blame] | 92 | |
Mike McCormack | c068f67 | 2004-03-16 03:11:39 +0000 | [diff] [blame] | 93 | dnl **** Just additional warning checks, since AC_PROG just sets 'lex' even |
Marcus Meissner | 5c5a621 | 2002-01-22 18:28:25 +0000 | [diff] [blame] | 94 | dnl **** without one present. |
Marcus Meissner | b53bb41 | 2000-07-23 13:41:51 +0000 | [diff] [blame] | 95 | AC_CHECK_PROGS(XLEX,$LEX flex lex,none) |
| 96 | if test "$XLEX" = "none" |
| 97 | then |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 98 | AC_MSG_ERROR([no suitable lex found. Please install the 'flex' package.]) |
Marcus Meissner | b53bb41 | 2000-07-23 13:41:51 +0000 | [diff] [blame] | 99 | fi |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 100 | |
Mike McCormack | c068f67 | 2004-03-16 03:11:39 +0000 | [diff] [blame] | 101 | dnl Check for bison |
| 102 | AC_CHECK_PROGS(BISON,bison,none) |
| 103 | if test "$BISON" = "none" |
| 104 | then |
| 105 | AC_MSG_ERROR([no suitable bison found. Please install the 'bison' package.]) |
| 106 | fi |
| 107 | |
Alexandre Julliard | c80c290 | 2003-05-06 18:41:52 +0000 | [diff] [blame] | 108 | AC_CHECK_TOOLS(AS,[gas as],as) |
Alexandre Julliard | eb5f89c | 2002-05-24 21:22:10 +0000 | [diff] [blame] | 109 | AC_CHECK_TOOL(LD,ld,ld) |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 110 | AC_CHECK_TOOL(AR,ar,ar) |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 111 | AC_PROG_RANLIB |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 112 | AC_CHECK_TOOL(STRIP,strip,strip) |
| 113 | AC_CHECK_TOOL(WINDRES,windres,false) |
Alexandre Julliard | 641ee76 | 1997-08-04 16:34:36 +0000 | [diff] [blame] | 114 | AC_PROG_LN_S |
Alexandre Julliard | df234a9 | 2002-05-22 02:10:39 +0000 | [diff] [blame] | 115 | WINE_PROG_LN |
Alexandre Julliard | c626491 | 2004-08-16 20:09:37 +0000 | [diff] [blame] | 116 | AC_PROG_EGREP |
Bill Medland | 91372b3 | 2002-04-20 21:00:42 +0000 | [diff] [blame] | 117 | AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH]) |
Alexandre Julliard | e24bcc7 | 2002-12-24 00:35:19 +0000 | [diff] [blame] | 118 | AC_PROG_INSTALL |
| 119 | dnl Prepend src dir to install path dir if it's a relative path |
| 120 | case "$INSTALL" in |
Alexandre Julliard | 8418d8f | 2002-12-24 02:39:47 +0000 | [diff] [blame] | 121 | [[\\/$]]* | ?:[[\\/]]* ) ;; |
Alexandre Julliard | e24bcc7 | 2002-12-24 00:35:19 +0000 | [diff] [blame] | 122 | *) INSTALL="\\\$(TOPSRCDIR)/$INSTALL" ;; |
| 123 | esac |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 124 | |
Patrik Stridvall | a9be64e | 1999-07-31 17:39:44 +0000 | [diff] [blame] | 125 | dnl Check for lint |
| 126 | AC_CHECK_PROGS(LINT, lclint lint) |
| 127 | if test "$LINT" = "lint" |
| 128 | then |
| 129 | LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4" |
| 130 | dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64' |
| 131 | fi |
| 132 | AC_SUBST(LINT) |
| 133 | AC_SUBST(LINTFLAGS) |
| 134 | |
Huw Davies | 00acb5f | 2004-08-17 22:33:14 +0000 | [diff] [blame] | 135 | dnl Check for various programs |
Huw Davies | 00acb5f | 2004-08-17 22:33:14 +0000 | [diff] [blame] | 136 | AC_CHECK_PROGS(FONTFORGE, fontforge, false) |
Mike McCormack | 90c75bd | 2005-08-08 18:36:53 +0000 | [diff] [blame] | 137 | AC_CHECK_PROGS(PKG_CONFIG, pkg-config, false) |
Dimitrie O. Paun | b817a3c | 2003-10-09 04:33:20 +0000 | [diff] [blame] | 138 | |
Alexandre Julliard | adbb098 | 2005-08-09 11:12:29 +0000 | [diff] [blame^] | 139 | case $host_cpu in |
| 140 | *i[[3456789]]86*) |
| 141 | AC_CHECK_PROGS(PRELINK, prelink, false, [/sbin /usr/sbin $PATH]) |
| 142 | ;; |
| 143 | esac |
| 144 | |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 145 | dnl **** Check for some libraries **** |
| 146 | |
Alexandre Julliard | d37eb36 | 1997-07-20 16:23:21 +0000 | [diff] [blame] | 147 | dnl Check for -li386 for NetBSD and OpenBSD |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 148 | AC_CHECK_LIB(i386,i386_set_ldt) |
Todd Vierling | ecc7669 | 1998-12-15 17:49:02 +0000 | [diff] [blame] | 149 | dnl Check for -lossaudio for NetBSD |
| 150 | AC_CHECK_LIB(ossaudio,_oss_ioctl) |
Patrik Stridvall | ea58472 | 1998-11-01 16:22:07 +0000 | [diff] [blame] | 151 | dnl Check for -lnsl for Solaris |
Ulrich Weigand | 2e8e233 | 2000-12-27 18:49:08 +0000 | [diff] [blame] | 152 | AC_CHECK_FUNCS(gethostbyname,,AC_CHECK_LIB(nsl,gethostbyname)) |
Ulrich Weigand | 715a55e | 1999-04-18 13:19:56 +0000 | [diff] [blame] | 153 | dnl Check for -lsocket for Solaris |
Marcus Meissner | f070fda | 1999-04-24 12:02:14 +0000 | [diff] [blame] | 154 | AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect)) |
Francois Gouget | 3b943bc | 2002-04-01 21:05:15 +0000 | [diff] [blame] | 155 | dnl Check for -lresolv for Solaris |
Alexandre Julliard | c555274 | 2002-04-03 20:24:44 +0000 | [diff] [blame] | 156 | AC_CHECK_FUNCS(inet_aton,,AC_CHECK_LIB(resolv,inet_aton)) |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 157 | dnl Check for -lxpg4 for FreeBSD |
Satsuki Fujishima | 66fb607 | 2001-03-19 19:19:59 +0000 | [diff] [blame] | 158 | AC_CHECK_LIB(xpg4,_xpg4_setrunelocale) |
Pierre d'Herbemont | 794bf0f | 2003-11-25 03:31:26 +0000 | [diff] [blame] | 159 | dnl Check for -lpoll for Mac OS X/Darwin |
| 160 | AC_CHECK_LIB(poll,poll) |
Emmanuel Maillard | bc21f44 | 2004-07-06 19:41:12 +0000 | [diff] [blame] | 161 | dnl Check for -lresolv for Mac OS X/Darwin |
| 162 | AC_CHECK_LIB(resolv,res_9_init) |
Alexandre Julliard | f45325e | 2003-11-06 23:05:41 +0000 | [diff] [blame] | 163 | dnl Check for -lpthread |
| 164 | AC_CHECK_LIB(pthread,pthread_create,AC_SUBST(LIBPTHREAD,"-lpthread")) |
Alexandre Julliard | 3f510ad | 2002-01-01 01:13:03 +0000 | [diff] [blame] | 165 | |
Alexandre Julliard | 8277602 | 2005-08-08 11:17:25 +0000 | [diff] [blame] | 166 | AC_SUBST(XLIB,"") |
| 167 | AC_SUBST(XFILES,"") |
| 168 | AC_SUBST(OPENGLFILES,"") |
| 169 | AC_SUBST(GLU32FILES,"") |
| 170 | AC_SUBST(OPENGL_LIBS,"") |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 171 | |
| 172 | dnl **** Check for header files **** |
| 173 | |
| 174 | AC_CHECK_HEADERS(\ |
Phil Krylov | 0f6c039 | 2005-07-01 19:15:26 +0000 | [diff] [blame] | 175 | IOKit/IOKitLib.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 176 | alsa/asoundlib.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 177 | arpa/inet.h \ |
| 178 | arpa/nameser.h \ |
Maarten Lankhorst | 888eaae | 2005-04-27 09:46:25 +0000 | [diff] [blame] | 179 | asm/types.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 180 | capi20.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 181 | cups/cups.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 182 | curses.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 183 | direct.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 184 | dlfcn.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 185 | elf.h \ |
| 186 | float.h \ |
| 187 | fontconfig/fontconfig.h \ |
| 188 | getopt.h \ |
| 189 | gif_lib.h \ |
| 190 | ieeefp.h \ |
| 191 | io.h \ |
| 192 | jack/jack.h \ |
| 193 | jpeglib.h \ |
Hans Leidekker | ea524de | 2005-07-15 16:39:42 +0000 | [diff] [blame] | 194 | lber.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 195 | lcms.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 196 | lcms/lcms.h \ |
Hans Leidekker | ea524de | 2005-07-15 16:39:42 +0000 | [diff] [blame] | 197 | ldap.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 198 | libaudioio.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 199 | link.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 200 | linux/capi.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 201 | linux/cdrom.h \ |
| 202 | linux/compiler.h \ |
| 203 | linux/hdreg.h \ |
| 204 | linux/input.h \ |
| 205 | linux/ioctl.h \ |
| 206 | linux/joystick.h \ |
| 207 | linux/major.h \ |
| 208 | linux/param.h \ |
| 209 | linux/serial.h \ |
| 210 | linux/ucdrom.h \ |
Emmanuel Maillard | 64c0778 | 2005-05-18 18:20:23 +0000 | [diff] [blame] | 211 | mach/machine.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 212 | machine/cpu.h \ |
Emmanuel Maillard | 64c0778 | 2005-05-18 18:20:23 +0000 | [diff] [blame] | 213 | machine/limits.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 214 | machine/soundcard.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 215 | mntent.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 216 | ncurses.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 217 | netdb.h \ |
| 218 | netinet/in.h \ |
| 219 | netinet/in_systm.h \ |
| 220 | netinet/tcp.h \ |
| 221 | netinet/tcp_fsm.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 222 | openssl/ssl.h \ |
Steven Edwards | 5727918 | 2005-03-04 12:38:36 +0000 | [diff] [blame] | 223 | poll.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 224 | process.h \ |
| 225 | pthread.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 226 | pwd.h \ |
| 227 | regex.h \ |
| 228 | sched.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 229 | scsi/scsi.h \ |
| 230 | scsi/scsi_ioctl.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 231 | scsi/sg.h \ |
| 232 | soundcard.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 233 | stdint.h \ |
| 234 | strings.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 235 | sys/asoundlib.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 236 | sys/cdio.h \ |
| 237 | sys/elf32.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 238 | sys/epoll.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 239 | sys/errno.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 240 | sys/exec_elf.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 241 | sys/filio.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 242 | sys/ioctl.h \ |
| 243 | sys/ipc.h \ |
| 244 | sys/link.h \ |
| 245 | sys/lwp.h \ |
| 246 | sys/mman.h \ |
| 247 | sys/modem.h \ |
| 248 | sys/msg.h \ |
| 249 | sys/param.h \ |
| 250 | sys/poll.h \ |
| 251 | sys/ptrace.h \ |
| 252 | sys/reg.h \ |
| 253 | sys/scsiio.h \ |
| 254 | sys/shm.h \ |
| 255 | sys/signal.h \ |
| 256 | sys/socket.h \ |
| 257 | sys/sockio.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 258 | sys/soundcard.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 259 | sys/statvfs.h \ |
| 260 | sys/strtio.h \ |
| 261 | sys/syscall.h \ |
| 262 | sys/sysctl.h \ |
| 263 | sys/time.h \ |
| 264 | sys/times.h \ |
| 265 | sys/uio.h \ |
| 266 | sys/un.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 267 | sys/vm86.h \ |
| 268 | sys/wait.h \ |
| 269 | syscall.h \ |
| 270 | termios.h \ |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 271 | unicode/ubidi.h \ |
Rein Klazes | 7ff1256 | 2004-11-09 20:16:35 +0000 | [diff] [blame] | 272 | unistd.h \ |
| 273 | utime.h \ |
| 274 | valgrind/memcheck.h |
| 275 | ) |
| 276 | AC_HEADER_STAT() |
| 277 | |
| 278 | dnl **** Check for X11 **** |
| 279 | |
Patrik Stridvall | ea58472 | 1998-11-01 16:22:07 +0000 | [diff] [blame] | 280 | if test "$have_x" = "yes" |
| 281 | then |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 282 | XLIB="-lXext -lX11" |
Ove Kaaven | 1eb593c | 1999-02-14 09:34:46 +0000 | [diff] [blame] | 283 | ac_save_CPPFLAGS="$CPPFLAGS" |
| 284 | CPPFLAGS="$CPPFLAGS $X_CFLAGS" |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 285 | |
Huw D M Davies | ff453fc | 2001-09-14 01:04:25 +0000 | [diff] [blame] | 286 | dnl *** All of the following tests require X11/Xlib.h |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 287 | AC_CHECK_HEADERS([X11/Xlib.h \ |
| 288 | X11/XKBlib.h \ |
| 289 | X11/Xutil.h \ |
| 290 | X11/extensions/shape.h \ |
| 291 | X11/extensions/XInput.h \ |
| 292 | X11/extensions/XShm.h \ |
| 293 | X11/extensions/Xrandr.h \ |
| 294 | X11/extensions/Xrender.h \ |
| 295 | X11/extensions/xf86dga.h \ |
| 296 | X11/extensions/xf86vmode.h],,, |
| 297 | [#ifdef HAVE_X11_XLIB_H |
| 298 | # include <X11/Xlib.h> |
| 299 | #endif |
| 300 | #ifdef HAVE_X11_XUTIL_H |
| 301 | # include <X11/Xutil.h> |
| 302 | #endif]) |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 303 | |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 304 | dnl *** Check for X keyboard extension |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 305 | if test "$ac_cv_header_X11_XKBlib_h" = "yes" |
| 306 | then |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 307 | AC_CHECK_LIB(X11, XkbQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 308 | AC_DEFINE(HAVE_XKB, 1, [Define if you have the XKB extension]),, |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 309 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 310 | fi |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 311 | |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 312 | dnl *** Check for X Shm extension |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 313 | if test "$ac_cv_header_X11_extensions_XShm_h" = "yes" |
| 314 | then |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 315 | AC_CHECK_LIB(Xext, XShmQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 316 | 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] | 317 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 318 | fi |
Gregg Mattinson | 044b5c4 | 2002-07-19 03:16:51 +0000 | [diff] [blame] | 319 | |
Francois Jacques | 5b6879c | 2000-07-28 23:04:54 +0000 | [diff] [blame] | 320 | dnl *** Check for X shape extension |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 321 | if test "$ac_cv_header_X11_extensions_shape_h" = "yes" |
| 322 | then |
Francois Jacques | 5b6879c | 2000-07-28 23:04:54 +0000 | [diff] [blame] | 323 | AC_CHECK_LIB(Xext,XShapeQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 324 | 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] | 325 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 326 | fi |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame] | 327 | |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 328 | dnl *** Check for XFree86 DGA / DGA 2.0 extension |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 329 | if test "$ac_cv_header_X11_extensions_xf86dga_h" = "yes" |
| 330 | then |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 331 | AC_CHECK_LIB(Xxf86dga, XDGAQueryExtension, |
Huw Davies | 14de481 | 2004-11-23 13:48:00 +0000 | [diff] [blame] | 332 | [ AC_DEFINE(HAVE_LIBXXF86DGA2, 1, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 333 | [Define if you have the Xxf86dga library version 2]) |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 334 | X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga" |
Huw Davies | 14de481 | 2004-11-23 13:48:00 +0000 | [diff] [blame] | 335 | ],, |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 336 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
| 337 | fi |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 338 | |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 339 | dnl *** Check for XFree86 VMODE extension |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 340 | if test "$ac_cv_header_X11_extensions_xf86vmode_h" = "yes" |
| 341 | then |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 342 | AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 343 | [ 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] | 344 | X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm" |
| 345 | ],, |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 346 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
| 347 | fi |
Lionel Ulmer | 3d2f32d | 2000-09-06 19:46:59 +0000 | [diff] [blame] | 348 | |
Alex Pasadyn | 8f174bc | 2003-10-15 03:28:04 +0000 | [diff] [blame] | 349 | dnl *** Check for X RandR extension |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 350 | if test "$ac_cv_header_X11_extensions_Xrandr_h" = "yes" |
| 351 | then |
Mike McCormack | c7c9f93 | 2004-04-07 03:57:35 +0000 | [diff] [blame] | 352 | AC_TRY_COMPILE([#include <X11/Xlib.h> |
| 353 | #include <X11/extensions/Xrandr.h>],[static typeof(XRRSetScreenConfigAndRate) * func;], |
| 354 | [AC_DEFINE(HAVE_LIBXRANDR, 1, [Define if you have the Xrandr library])]) |
Alexandre Julliard | 255b486 | 2003-10-15 04:09:55 +0000 | [diff] [blame] | 355 | fi |
Alex Pasadyn | 8f174bc | 2003-10-15 03:28:04 +0000 | [diff] [blame] | 356 | |
Kevin Koltzau | 92ec21b | 2004-10-27 00:43:50 +0000 | [diff] [blame] | 357 | dnl *** Check for Transform functions in Xrender |
| 358 | if test "$ac_cv_header_X11_extensions_Xrender_h" = "yes" |
| 359 | then |
| 360 | AC_CHECK_LIB(Xrender, XRenderSetPictureTransform, |
| 361 | [AC_DEFINE(HAVE_XRENDERSETPICTURETRANSFORM, 1, |
| 362 | [Define if Xrender has the XRenderSetPictureTransform function])],, |
| 363 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
| 364 | fi |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 365 | dnl *** End of X11/Xlib.h check |
Lionel Ulmer | 5c08570 | 1999-02-28 19:48:53 +0000 | [diff] [blame] | 366 | |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 367 | dnl Check for the presence of OpenGL |
Alexandre Julliard | b807499 | 2002-11-21 21:51:24 +0000 | [diff] [blame] | 368 | if test "x$with_opengl" != "xno" |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 369 | then |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 370 | AC_CHECK_HEADERS(GL/gl.h GL/glx.h GL/glext.h,,, |
| 371 | [#ifdef HAVE_GL_GLX_H |
| 372 | # include <GL/glx.h> |
| 373 | #endif]) |
Marcus Meissner | 22a969b | 2000-08-08 20:46:50 +0000 | [diff] [blame] | 374 | 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] | 375 | then |
| 376 | dnl Check for some problems due to old Mesa versions |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 377 | AC_CACHE_CHECK([for up-to-date OpenGL version], wine_cv_opengl_version_OK, |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 378 | AC_TRY_COMPILE( |
Lionel Ulmer | 48c0816 | 2000-01-05 01:51:02 +0000 | [diff] [blame] | 379 | [#include <GL/gl.h>], |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 380 | [GLenum test = GL_UNSIGNED_SHORT_5_6_5;], |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 381 | [wine_cv_opengl_version_OK="yes"], |
| 382 | [wine_cv_opengl_version_OK="no"] |
Lionel Ulmer | 48c0816 | 2000-01-05 01:51:02 +0000 | [diff] [blame] | 383 | ) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 384 | ) |
| 385 | |
Alexandre Julliard | b807499 | 2002-11-21 21:51:24 +0000 | [diff] [blame] | 386 | if test "$wine_cv_opengl_version_OK" = "yes" |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 387 | then |
Andreas Mohr | 4eefb96 | 2000-08-01 00:27:35 +0000 | [diff] [blame] | 388 | dnl Check for the presence of the library |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 389 | AC_CHECK_LIB(GL,glXCreateContext, |
Lionel Ulmer | 56ab2b3e | 2002-11-15 04:16:38 +0000 | [diff] [blame] | 390 | OPENGL_LIBS="-lGL" |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 391 | ,, |
| 392 | $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS) |
| 393 | |
Alexandre Julliard | b508a1d | 2002-01-21 18:06:10 +0000 | [diff] [blame] | 394 | if test "$ac_cv_lib_GL_glXCreateContext" = "yes" |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 395 | then |
Lionel Ulmer | bd8ede1 | 2000-10-12 20:45:58 +0000 | [diff] [blame] | 396 | OPENGLFILES='$(OPENGLFILES)' |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 397 | AC_DEFINE(HAVE_OPENGL, 1, [Define if OpenGL is present on the system]) |
Anderson Lizardo | 5a2da4e | 2005-07-25 11:12:11 +0000 | [diff] [blame] | 398 | else |
| 399 | if test -f /usr/X11R6/lib/libGL.a |
| 400 | then |
| 401 | AC_MSG_ERROR([/usr/X11R6/lib/libGL.a is present on your system. |
| 402 | This prevents linking to OpenGL. Delete the file and restart configure.]) |
| 403 | fi |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 404 | fi |
Anderson Lizardo | 5a2da4e | 2005-07-25 11:12:11 +0000 | [diff] [blame] | 405 | |
Marcus Meissner | b63ab44 | 2001-06-08 19:02:57 +0000 | [diff] [blame] | 406 | dnl Check for GLU32 library. |
Marcus Meissner | 6e9ab40 | 2001-08-08 23:21:16 +0000 | [diff] [blame] | 407 | AC_CHECK_LIB(GLU,gluLookAt, |
Lionel Ulmer | 56ab2b3e | 2002-11-15 04:16:38 +0000 | [diff] [blame] | 408 | [OPENGL_LIBS="$OPENGL_LIBS -lGLU" |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 409 | GLU32FILES='$(GLU32FILES)'] |
Marcus Meissner | b63ab44 | 2001-06-08 19:02:57 +0000 | [diff] [blame] | 410 | ,, |
Lionel Ulmer | 56ab2b3e | 2002-11-15 04:16:38 +0000 | [diff] [blame] | 411 | $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS |
Marcus Meissner | b63ab44 | 2001-06-08 19:02:57 +0000 | [diff] [blame] | 412 | ) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 413 | fi |
Jacek Caban | ef799c4 | 2003-12-02 04:11:09 +0000 | [diff] [blame] | 414 | |
| 415 | dnl Check for glut32 library. |
| 416 | AC_CHECK_LIB(glut,glutMainLoop, |
Jacek Caban | 5e69f11 | 2003-12-03 20:26:43 +0000 | [diff] [blame] | 417 | [AC_SUBST(GLUT_LIBS,"-lglut -lXmu -lXi") |
Jacek Caban | ef799c4 | 2003-12-02 04:11:09 +0000 | [diff] [blame] | 418 | AC_SUBST(GLUT32FILES,'$(GLUT32FILES)')],, |
Jacek Caban | 5e69f11 | 2003-12-03 20:26:43 +0000 | [diff] [blame] | 419 | $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXmu -lXi -lX11 $X_EXTRA_LIBS) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 420 | fi |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 421 | fi |
Ove Kaaven | 1eb593c | 1999-02-14 09:34:46 +0000 | [diff] [blame] | 422 | |
Francois Gouget | 6f670b1 | 2002-10-10 17:54:27 +0000 | [diff] [blame] | 423 | dnl **** Check for NAS **** |
| 424 | AC_SUBST(NASLIBS,"") |
| 425 | AC_CHECK_HEADERS(audio/audiolib.h, |
| 426 | [AC_CHECK_HEADERS(audio/soundlib.h,,,[#include <audio/audiolib.h>]) |
| 427 | AC_CHECK_LIB(audio,AuCreateFlow, |
| 428 | [AC_DEFINE(HAVE_NAS,1,[Define if you have NAS including devel headers]) |
| 429 | NASLIBS="-laudio -lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS"],, |
| 430 | [-lXt $X_LIBS -lXext -lX11 $X_EXTRA_LIBS])]) |
| 431 | |
Ove Kaaven | 1eb593c | 1999-02-14 09:34:46 +0000 | [diff] [blame] | 432 | CPPFLAGS="$ac_save_CPPFLAGS" |
Patrik Stridvall | 2941a21 | 2000-04-25 20:34:22 +0000 | [diff] [blame] | 433 | XFILES='$(XFILES)' |
Patrik Stridvall | ea58472 | 1998-11-01 16:22:07 +0000 | [diff] [blame] | 434 | else |
| 435 | XLIB="" |
| 436 | X_CFLAGS="" |
| 437 | X_LIBS="" |
| 438 | fi |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 439 | |
Mike McCormack | dcc2d6c | 2005-08-02 11:29:04 +0000 | [diff] [blame] | 440 | dnl **** Check for libxml2 **** |
| 441 | |
| 442 | AC_SUBST(XML2LIBS,"") |
| 443 | AC_SUBST(XML2INCL,"") |
Mike McCormack | 90c75bd | 2005-08-08 18:36:53 +0000 | [diff] [blame] | 444 | if test "$PKG_CONFIG" != "false" |
| 445 | then |
| 446 | ac_save_CPPFLAGS="$CPPFLAGS" |
| 447 | ac_xml_libs="`$PKG_CONFIG --libs libxml-2.0`" |
| 448 | ac_xml_cflags="`$PKG_CONFIG --cflags libxml-2.0`" |
| 449 | CPPFLAGS="$CPPFLAGS $ac_xml_cflags" |
| 450 | AC_CHECK_HEADERS(libxml/parser.h, |
| 451 | [AC_CHECK_LIB(xml2, xmlParseMemory, |
| 452 | [AC_DEFINE(HAVE_LIBXML2, 1, [Define if you have the libxml2 library]) |
| 453 | XML2LIBS="$ac_xml_libs" |
| 454 | XML2INCL="$ac_xml_cflags"],,$ac_xml_libs)]) |
| 455 | CPPFLAGS="$ac_save_CPPFLAGS" |
| 456 | fi |
Mike McCormack | dcc2d6c | 2005-08-02 11:29:04 +0000 | [diff] [blame] | 457 | |
Joseph Pranevich | e884f9c | 1999-01-03 16:14:34 +0000 | [diff] [blame] | 458 | dnl **** Check which curses lib to use *** |
Alexandre Julliard | 4895768 | 2001-12-26 23:08:31 +0000 | [diff] [blame] | 459 | CURSESLIBS="" |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 460 | if test "x$with_curses" != "xno" |
Alexandre Julliard | 638f169 | 1999-01-17 16:32:32 +0000 | [diff] [blame] | 461 | then |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 462 | if test "$ac_cv_header_ncurses_h" = "yes" |
| 463 | then |
| 464 | AC_CHECK_LIB(ncurses,waddch, |
Alexandre Julliard | 4895768 | 2001-12-26 23:08:31 +0000 | [diff] [blame] | 465 | [AC_DEFINE(HAVE_LIBNCURSES, 1, [Define if you have the ncurses library (-lncurses)]) |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 466 | CURSESLIBS="-lncurses"]) |
| 467 | elif test "$ac_cv_header_curses_h" = "yes" |
| 468 | then |
| 469 | AC_CHECK_LIB(curses,waddch, |
| 470 | [AC_DEFINE(HAVE_LIBCURSES, 1, [Define if you have the curses library (-lcurses)]) |
| 471 | CURSESLIBS="-lcurses"]) |
| 472 | fi |
Joseph Pranevich | e884f9c | 1999-01-03 16:14:34 +0000 | [diff] [blame] | 473 | fi |
Alexandre Julliard | 4895768 | 2001-12-26 23:08:31 +0000 | [diff] [blame] | 474 | AC_SUBST(CURSESLIBS) |
Joseph Pranevich | e884f9c | 1999-01-03 16:14:34 +0000 | [diff] [blame] | 475 | |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 476 | dnl **** Check for SANE **** |
| 477 | AC_CHECK_PROG(sane_devel,sane-config,sane-config,no) |
Alexandre Julliard | 8277602 | 2005-08-08 11:17:25 +0000 | [diff] [blame] | 478 | AC_SUBST(SANELIBS,"") |
| 479 | AC_SUBST(SANEINCL,"") |
| 480 | if test "$sane_devel" != "no" |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 481 | then |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 482 | SANELIBS="`$sane_devel --libs`" |
| 483 | SANEINCL="`$sane_devel --cflags`" |
| 484 | ac_save_CPPFLAGS="$CPPFLAGS" |
| 485 | ac_save_LIBS="$LIBS" |
| 486 | CPPFLAGS="$CPPFLAGS $SANEINCL" |
| 487 | LIBS="$LIBS $SANELIBS" |
Alexandre Julliard | 96328b3 | 2002-03-31 19:23:41 +0000 | [diff] [blame] | 488 | AC_CHECK_HEADER(sane/sane.h, |
| 489 | [AC_CHECK_LIB(sane,sane_open, |
| 490 | [AC_DEFINE(HAVE_SANE, 1, [Define if we have SANE development environment])], |
| 491 | [SANELIBS="" |
| 492 | SANEINCL=""])], |
| 493 | [SANELIBS="" |
| 494 | SANEINCL=""]) |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 495 | LIBS="$ac_save_LIBS" |
| 496 | CPPFLAGS="$ac_save_CPPFLAGS" |
| 497 | fi |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 498 | |
Alexandre Julliard | 4ee8290 | 2003-06-20 21:38:10 +0000 | [diff] [blame] | 499 | dnl **** Check for the ICU library **** |
Alexandre Julliard | 4ee8290 | 2003-06-20 21:38:10 +0000 | [diff] [blame] | 500 | if test "$ac_cv_header_unicode_ubidi_h" = "yes" |
| 501 | then |
Marcus Meissner | bc62458 | 2004-01-18 22:15:46 +0000 | [diff] [blame] | 502 | saved_libs="$LIBS" |
| 503 | ICU_LIB_DIR="${ICU_LIB_DIR-/usr/lib}" |
Shachar Shemesh | 9f2627e | 2004-04-06 20:13:21 +0000 | [diff] [blame] | 504 | ICUUC_LIB="${ICUUC_LIB-$ICU_LIB_DIR/libsicuuc.a}" |
| 505 | ICUDATA_LIB="${ICUDATA_LIB-$ICU_LIB_DIR/libsicudata.a}" |
| 506 | AC_MSG_CHECKING(whether can link with ICU libraries $ICUUC_LIB and $ICUDATA_LIB) |
Marcus Meissner | bc62458 | 2004-01-18 22:15:46 +0000 | [diff] [blame] | 507 | LIBS="$LIBS $ICUUC_LIB $ICUDATA_LIB -lstdc++ -lgcc_s" |
| 508 | AC_TRY_LINK([#include <unicode/ubidi.h>],[ubidi_open()], |
| 509 | [AC_DEFINE(HAVE_ICU,1,[Define to 1 if the ICU libraries are installed]) |
Shachar Shemesh | 9f2627e | 2004-04-06 20:13:21 +0000 | [diff] [blame] | 510 | AC_SUBST(ICULIBS,"$ICUUC_LIB $ICUDATA_LIB -lstdc++ -lgcc_s") |
| 511 | AC_MSG_RESULT(yes)], |
| 512 | [AC_MSG_RESULT(no)]) |
Marcus Meissner | bc62458 | 2004-01-18 22:15:46 +0000 | [diff] [blame] | 513 | LIBS="$saved_libs" |
Alexandre Julliard | 4ee8290 | 2003-06-20 21:38:10 +0000 | [diff] [blame] | 514 | fi |
| 515 | |
Hans Leidekker | d344702 | 2005-07-15 10:09:43 +0000 | [diff] [blame] | 516 | dnl **** Check for LittleCMS *** |
| 517 | AC_SUBST(LCMSLIBS,"") |
| 518 | if test "$ac_cv_header_lcms_h" = "yes" -o "$ac_cv_header_lcms_lcms_h" = "yes" |
| 519 | then |
| 520 | AC_CHECK_LIB(lcms, cmsOpenProfileFromFile, |
| 521 | [AC_DEFINE(HAVE_LCMS, 1, [Define if you have the LittleCMS development environment]) |
| 522 | LCMSLIBS="-llcms"]) |
| 523 | fi |
| 524 | |
Hans Leidekker | ea524de | 2005-07-15 16:39:42 +0000 | [diff] [blame] | 525 | dnl **** Check for OpenLDAP *** |
| 526 | AC_SUBST(LDAPLIBS,"") |
| 527 | if test "$ac_cv_header_ldap_h" = "yes" -a "$ac_cv_header_lber_h" = "yes" |
| 528 | then |
| 529 | AC_CHECK_LIB(ldap, ldap_init, |
| 530 | [AC_CHECK_LIB(lber, ber_init, |
| 531 | [AC_DEFINE(HAVE_LDAP, 1, [Define if you have the OpenLDAP development environment]) |
| 532 | LDAPLIBS="-lldap -llber"])]) |
| 533 | fi |
| 534 | |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 535 | dnl **** Check for FreeType 2 **** |
Alexandre Julliard | 8277602 | 2005-08-08 11:17:25 +0000 | [diff] [blame] | 536 | AC_SUBST(FREETYPELIBS,"") |
| 537 | AC_SUBST(FREETYPEINCL,"") |
Dmitry Timoshkov | 8871a11 | 2001-11-06 22:26:53 +0000 | [diff] [blame] | 538 | AC_CHECK_LIB(freetype,FT_Init_FreeType,ft_lib=yes,ft_lib=no,$X_LIBS) |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 539 | if test "$ft_lib" = "no" |
| 540 | then |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 541 | wine_cv_msg_freetype=no |
| 542 | else |
Marcus Meissner | d28955d | 2001-05-31 21:35:15 +0000 | [diff] [blame] | 543 | AC_CHECK_PROG(ft_devel,freetype-config,freetype-config,no) |
| 544 | if test "$ft_devel" = "no" |
| 545 | then |
| 546 | AC_CHECK_PROG(ft_devel2,freetype2-config,freetype2-config,no) |
| 547 | if test "$ft_devel2" = "freetype2-config" |
| 548 | then |
| 549 | ft_devel=$ft_devel2 |
| 550 | fi |
| 551 | fi |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 552 | if test "$ft_devel" = "no" |
| 553 | then |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 554 | wine_cv_msg_freetype=yes |
| 555 | else |
Huw Davies | 00acb5f | 2004-08-17 22:33:14 +0000 | [diff] [blame] | 556 | FREETYPELIBS=`$ft_devel --libs` |
Marcus Meissner | d28955d | 2001-05-31 21:35:15 +0000 | [diff] [blame] | 557 | FREETYPEINCL=`$ft_devel --cflags` |
Ian Pilcher | 40432fe | 2001-06-06 21:05:23 +0000 | [diff] [blame] | 558 | ac_save_CPPFLAGS="$CPPFLAGS" |
| 559 | CPPFLAGS="$FREETYPEINCL $CPPFLAGS" |
Rein Klazes | e617a9c | 2003-11-19 02:18:13 +0000 | [diff] [blame] | 560 | AC_CHECK_HEADERS(ft2build.h \ |
| 561 | freetype/freetype.h \ |
Ian Pilcher | 40432fe | 2001-06-06 21:05:23 +0000 | [diff] [blame] | 562 | freetype/ftglyph.h \ |
| 563 | freetype/tttables.h \ |
| 564 | freetype/ftnames.h \ |
| 565 | freetype/ftsnames.h \ |
Huw D M Davies | 814654e | 2001-09-12 20:21:06 +0000 | [diff] [blame] | 566 | freetype/ttnameid.h \ |
Huw D M Davies | 4e2024e | 2001-10-23 20:06:32 +0000 | [diff] [blame] | 567 | freetype/ftoutln.h \ |
Huw Davies | c221718 | 2004-06-16 20:06:26 +0000 | [diff] [blame] | 568 | freetype/ftwinfnt.h \ |
Rein Klazes | 9c26917 | 2003-11-20 04:17:33 +0000 | [diff] [blame] | 569 | freetype/internal/sfnt.h,,, |
| 570 | [#if HAVE_FT2BUILD_H |
| 571 | #include <ft2build.h> |
| 572 | #endif]) |
Alexandre Julliard | 18d7573 | 2002-01-29 03:02:50 +0000 | [diff] [blame] | 573 | AC_TRY_CPP([#include <ft2build.h> |
| 574 | #include <freetype/fttrigon.h>], |
Huw D M Davies | c1d3813 | 2002-02-08 17:09:50 +0000 | [diff] [blame] | 575 | [AC_DEFINE(HAVE_FREETYPE_FTTRIGON_H, 1, |
| 576 | [Define if you have the <freetype/fttrigon.h> header file.]) |
| 577 | wine_cv_fttrigon=yes], |
| 578 | wine_cv_fttrigon=no) |
Ian Pilcher | 40432fe | 2001-06-06 21:05:23 +0000 | [diff] [blame] | 579 | CPPFLAGS="$ac_save_CPPFLAGS" |
Huw D M Davies | 9b1d372 | 2002-01-29 17:09:28 +0000 | [diff] [blame] | 580 | dnl Check that we have at least freetype/freetype.h |
Huw D M Davies | c1d3813 | 2002-02-08 17:09:50 +0000 | [diff] [blame] | 581 | 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] | 582 | then |
| 583 | AC_DEFINE(HAVE_FREETYPE, 1, [Define if FreeType 2 is installed]) |
| 584 | wine_cv_msg_freetype=no |
| 585 | else |
Huw Davies | 00acb5f | 2004-08-17 22:33:14 +0000 | [diff] [blame] | 586 | FREETYPELIBS="" |
Huw D M Davies | 9b1d372 | 2002-01-29 17:09:28 +0000 | [diff] [blame] | 587 | FREETYPEINCL="" |
| 588 | wine_cv_msg_freetype=yes |
| 589 | fi |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 590 | fi |
| 591 | fi |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 592 | |
Huw Davies | 00acb5f | 2004-08-17 22:33:14 +0000 | [diff] [blame] | 593 | dnl Only build the fonts dir if we have both freetype and fontforge |
| 594 | if test "$FONTFORGE" != "false" -a -n "$FREETYPELIBS" |
| 595 | then |
| 596 | AC_SUBST(FONTSSUBDIRS,"fonts") |
| 597 | fi |
| 598 | |
Uwe Bonnes | 6509fa9 | 2001-06-26 21:06:07 +0000 | [diff] [blame] | 599 | dnl **** Check for parport (currently Linux only) **** |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 600 | AC_CACHE_CHECK([for parport header/ppdev.h], ac_cv_c_ppdev, |
Uwe Bonnes | 6509fa9 | 2001-06-26 21:06:07 +0000 | [diff] [blame] | 601 | AC_TRY_COMPILE( |
| 602 | [#include <linux/ppdev.h>], |
| 603 | [ioctl (1,PPCLAIM,0)], |
| 604 | [ac_cv_c_ppdev="yes"], |
| 605 | [ac_cv_c_ppdev="no"]) |
| 606 | ) |
| 607 | if test "$ac_cv_c_ppdev" = "yes" |
| 608 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 609 | 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] | 610 | fi |
| 611 | |
Marcus Meissner | 5ee517a | 2002-08-09 19:49:31 +0000 | [diff] [blame] | 612 | dnl **** Check for va_copy **** |
| 613 | AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy, |
| 614 | AC_TRY_LINK( |
| 615 | [#include <stdarg.h>], |
| 616 | [va_list ap1, ap2; |
| 617 | va_copy(ap1,ap2); |
| 618 | ], |
| 619 | [ac_cv_c_va_copy="yes"], |
| 620 | [ac_cv_c_va_copy="no"]) |
| 621 | ) |
| 622 | if test "$ac_cv_c_va_copy" = "yes" |
| 623 | then |
| 624 | AC_DEFINE(HAVE_VA_COPY, 1, [Define if we have va_copy]) |
| 625 | fi |
| 626 | AC_CACHE_CHECK([for __va_copy], ac_cv_c___va_copy, |
| 627 | AC_TRY_LINK( |
| 628 | [#include <stdarg.h>], |
| 629 | [va_list ap1, ap2; |
| 630 | __va_copy(ap1,ap2); |
| 631 | ], |
| 632 | [ac_cv_c___va_copy="yes"], |
| 633 | [ac_cv_c___va_copy="no"]) |
| 634 | ) |
| 635 | if test "$ac_cv_c___va_copy" = "yes" |
| 636 | then |
| 637 | AC_DEFINE(HAVE___VA_COPY, 1, [Define if we have __va_copy]) |
| 638 | fi |
| 639 | |
Alexandre Julliard | b2d937d | 2003-11-12 03:16:00 +0000 | [diff] [blame] | 640 | dnl **** Check for sigsetjmp **** |
| 641 | AC_CACHE_CHECK([for sigsetjmp], ac_cv_c_sigsetjmp, |
| 642 | AC_TRY_LINK( |
| 643 | [#include <setjmp.h>], |
| 644 | [sigjmp_buf buf; |
| 645 | sigsetjmp( buf, 1 ); |
| 646 | siglongjmp( buf, 1 );], |
| 647 | [ac_cv_c_sigsetjmp="yes"], |
| 648 | [ac_cv_c_sigsetjmp="no"]) |
| 649 | ) |
| 650 | if test "$ac_cv_c_sigsetjmp" = "yes" |
| 651 | then |
| 652 | AC_DEFINE(HAVE_SIGSETJMP, 1, [Define to 1 if you have the sigsetjmp (and siglongjmp) function]) |
| 653 | fi |
| 654 | |
Alexandre Julliard | 80e34db | 2003-09-03 00:26:08 +0000 | [diff] [blame] | 655 | dnl **** Check for pthread_rwlock_t **** |
| 656 | AC_CHECK_TYPES([pthread_rwlock_t, pthread_rwlockattr_t],,,[#define _GNU_SOURCE |
| 657 | #include <pthread.h>]) |
| 658 | |
Emmanuel Maillard | d110e1f | 2004-07-21 03:06:03 +0000 | [diff] [blame] | 659 | dnl **** Check for pthread functions **** |
Alexandre Julliard | 821ab86 | 2003-11-12 22:44:56 +0000 | [diff] [blame] | 660 | ac_save_LIBS="$LIBS" |
| 661 | LIBS="$LIBS $LIBPTHREAD" |
Emmanuel Maillard | d110e1f | 2004-07-21 03:06:03 +0000 | [diff] [blame] | 662 | AC_CHECK_FUNCS(\ |
| 663 | pthread_getattr_np \ |
| 664 | pthread_get_stackaddr_np \ |
| 665 | pthread_get_stacksize_np \ |
| 666 | ) |
Alexandre Julliard | 821ab86 | 2003-11-12 22:44:56 +0000 | [diff] [blame] | 667 | LIBS="$ac_save_LIBS" |
| 668 | |
Chris Morgan | 9b0ba7c | 2002-03-21 01:38:19 +0000 | [diff] [blame] | 669 | dnl **** Check for aRts Sound Server **** |
| 670 | AC_PATH_PROG(ARTSCCONFIG, artsc-config) |
Marcus Meissner | bc62458 | 2004-01-18 22:15:46 +0000 | [diff] [blame] | 671 | if test x$ARTSCCONFIG != x -a x$ARTSCCONFIG != x'"$ARTSCCONFIG"'; |
Chris Morgan | 9b0ba7c | 2002-03-21 01:38:19 +0000 | [diff] [blame] | 672 | then |
Alexandre Julliard | b3b12cf | 2004-02-24 01:24:20 +0000 | [diff] [blame] | 673 | ARTSC_CFLAGS="" |
| 674 | for i in `$ARTSCCONFIG --cflags` |
| 675 | do |
| 676 | case "$i" in |
| 677 | -I*) ARTSC_CFLAGS="$ARTSC_CFLAGS $i";; |
| 678 | esac |
| 679 | done |
Marcus Meissner | bc62458 | 2004-01-18 22:15:46 +0000 | [diff] [blame] | 680 | ARTSC_LIBS=`$ARTSCCONFIG --libs` |
| 681 | save_CFLAGS="$CFLAGS" |
| 682 | CFLAGS="$CFLAGS $ARTSC_CFLAGS" |
Jacek Caban | 6f8f475 | 2005-03-28 09:58:45 +0000 | [diff] [blame] | 683 | AC_CHECK_LIB(artsc,arts_init, |
| 684 | [AC_TRY_COMPILE([#include <artsc.h>],[arts_stream_t stream;], |
| 685 | [AC_SUBST(ARTSLIBS, $ARTSC_LIBS) |
| 686 | AC_SUBST(ARTSINCL, $ARTSC_CFLAGS) |
Vitaliy Margolen | 80816e9 | 2005-06-30 20:46:59 +0000 | [diff] [blame] | 687 | AC_DEFINE(HAVE_ARTS, 1, [Define if you have ARTS sound server])])],, |
| 688 | $ARTSC_LIBS) |
Marcus Meissner | bc62458 | 2004-01-18 22:15:46 +0000 | [diff] [blame] | 689 | CFLAGS="$save_CFLAGS" |
Chris Morgan | 9b0ba7c | 2002-03-21 01:38:19 +0000 | [diff] [blame] | 690 | fi |
| 691 | |
Peter Åstrand | 7a15eb9 | 2005-08-03 15:53:26 +0000 | [diff] [blame] | 692 | dnl **** Check for EsounD **** |
| 693 | AC_PATH_PROG(ESDCONFIG, esd-config) |
| 694 | if test x$ESDCONFIG != x -a x$ESDCONFIG != x'"$ESDCONFIG"'; |
| 695 | then |
| 696 | ESD_CFLAGS="" |
| 697 | for i in `$ESDCONFIG --cflags` |
| 698 | do |
| 699 | case "$i" in |
| 700 | -I*) ESD_CFLAGS="$ESD_CFLAGS $i";; |
| 701 | esac |
| 702 | done |
| 703 | ESD_LIBS=`$ESDCONFIG --libs` |
| 704 | save_CFLAGS="$CFLAGS" |
| 705 | CFLAGS="$CFLAGS $ESD_CFLAGS" |
| 706 | AC_CHECK_LIB(esd,esd_open_sound, |
| 707 | [AC_SUBST(ESDLIBS, $ESD_LIBS) |
| 708 | AC_SUBST(ESDINCL, $ESD_CFLAGS) |
| 709 | AC_DEFINE(HAVE_ESD, 1, [Define if you have EsounD sound server])]) |
| 710 | CFLAGS="$save_CFLAGS" |
| 711 | fi |
| 712 | |
Vincent Béron | 151015f | 2005-01-10 13:26:33 +0000 | [diff] [blame] | 713 | dnl **** Check for ALSA 1.x **** |
Alexandre Julliard | f92b7c0 | 2002-06-28 18:31:01 +0000 | [diff] [blame] | 714 | AC_SUBST(ALSALIBS,"") |
Marco Pietrobono | 0e79a41 | 2002-08-29 01:51:31 +0000 | [diff] [blame] | 715 | 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] | 716 | then |
Vincent Béron | 151015f | 2005-01-10 13:26:33 +0000 | [diff] [blame] | 717 | AC_CHECK_LIB(asound,snd_pcm_hw_params_get_access, |
| 718 | [AC_TRY_COMPILE([#ifdef HAVE_ALSA_ASOUNDLIB_H |
| 719 | #include <alsa/asoundlib.h> |
| 720 | #elif defined(HAVE_SYS_ASOUNDLIB_H) |
| 721 | #include <sys/asoundlib.h> |
| 722 | #endif], |
| 723 | [int ret = snd_pcm_hw_params_get_access(NULL, NULL)], |
| 724 | [AC_DEFINE(HAVE_ALSA,1,[Define if you have ALSA 1.x including devel headers]) |
| 725 | ALSALIBS="-lasound"])]) |
Alexandre Julliard | f92b7c0 | 2002-06-28 18:31:01 +0000 | [diff] [blame] | 726 | fi |
| 727 | |
Robert Lunnon | 2a91e3f | 2002-08-01 18:22:38 +0000 | [diff] [blame] | 728 | dnl **** Check for libaudioio (which can be used to get solaris audio support) **** |
| 729 | |
| 730 | AC_SUBST(AUDIOIOLIBS,"") |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 731 | if test "$ac_cv_header_libaudioio_h" = "yes" |
| 732 | then |
| 733 | AC_CHECK_LIB(audioio,AudioIOGetVersion, |
Robert Lunnon | 2a91e3f | 2002-08-01 18:22:38 +0000 | [diff] [blame] | 734 | [AUDIOIOLIBS="-laudioio" |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 735 | AC_DEFINE(HAVE_LIBAUDIOIO, 1, [Define if you have libaudioIO])]) |
| 736 | fi |
Robert Lunnon | 2a91e3f | 2002-08-01 18:22:38 +0000 | [diff] [blame] | 737 | |
Alexandre Julliard | 00fdd9f | 2003-11-06 00:26:43 +0000 | [diff] [blame] | 738 | dnl **** Check for capi4linux **** |
| 739 | |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 740 | if test "$ac_cv_header_capi20_h" = "yes" -a "$ac_cv_header_linux_capi_h" = "yes" |
| 741 | then |
| 742 | AC_CHECK_LIB(capi20,capi20_register,[AC_DEFINE(HAVE_CAPI4LINUX,1,[Define if you have capi4linux libs and headers])]) |
| 743 | fi |
Alexandre Julliard | 00fdd9f | 2003-11-06 00:26:43 +0000 | [diff] [blame] | 744 | |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 745 | dnl **** Check for gcc specific options **** |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 746 | |
Alexandre Julliard | fc09423 | 2003-04-14 21:46:41 +0000 | [diff] [blame] | 747 | AC_SUBST(EXTRACFLAGS,"") |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 748 | if test "x${GCC}" = "xyes" |
| 749 | then |
Hans Leidekker | d17b232 | 2004-01-06 21:37:44 +0000 | [diff] [blame] | 750 | EXTRACFLAGS="-Wall -pipe" |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 751 | |
| 752 | dnl Check for strength-reduce bug |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 753 | AC_CACHE_CHECK( [for gcc strength-reduce bug], ac_cv_c_gcc_strength_bug, |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 754 | AC_TRY_RUN([ |
Eric Pouech | 5aee80f | 2000-11-11 00:31:39 +0000 | [diff] [blame] | 755 | int L[[4]] = {0,1,2,3}; |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 756 | int main(void) { |
Alexandre Julliard | d2e1c1a | 1996-03-09 16:12:43 +0000 | [diff] [blame] | 757 | static int Array[[3]]; |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 758 | unsigned int B = 3; |
| 759 | int i; |
Alexandre Julliard | d2e1c1a | 1996-03-09 16:12:43 +0000 | [diff] [blame] | 760 | for(i=0; i<B; i++) Array[[i]] = i - 3; |
Eric Pouech | 5aee80f | 2000-11-11 00:31:39 +0000 | [diff] [blame] | 761 | for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]]; |
| 762 | L[[i]] = 4; |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame] | 763 | |
Eric Pouech | 5aee80f | 2000-11-11 00:31:39 +0000 | [diff] [blame] | 764 | exit( Array[[1]] != -2 || L[[2]] != 3); |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 765 | }], |
| 766 | ac_cv_c_gcc_strength_bug="no", |
| 767 | ac_cv_c_gcc_strength_bug="yes", |
| 768 | ac_cv_c_gcc_strength_bug="yes") ) |
| 769 | if test "$ac_cv_c_gcc_strength_bug" = "yes" |
| 770 | then |
Alexandre Julliard | fc09423 | 2003-04-14 21:46:41 +0000 | [diff] [blame] | 771 | EXTRACFLAGS="$EXTRACFLAGS -fno-strength-reduce" |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 772 | fi |
Alexandre Julliard | f9b94cb | 2000-12-06 03:50:22 +0000 | [diff] [blame] | 773 | |
Dimitrie O. Paun | f41c2b2 | 2004-03-02 02:23:26 +0000 | [diff] [blame] | 774 | dnl Check for -fshort-wchar |
| 775 | AC_CACHE_CHECK([for gcc -fshort-wchar support], ac_cv_c_gcc_fshort_wchar, |
| 776 | [WINE_TRY_CFLAGS([-fshort-wchar], |
| 777 | ac_cv_c_gcc_fshort_wchar="yes",ac_cv_c_gcc_fshort_wchar="no")]) |
| 778 | if test "$ac_cv_c_gcc_fshort_wchar" = "yes" |
| 779 | then |
| 780 | AC_DEFINE(CC_FLAG_SHORT_WCHAR, "-fshort-wchar", [Specifies the compiler flag that forces a short wchar_t]) |
| 781 | fi |
| 782 | |
Alexandre Julliard | f9b94cb | 2000-12-06 03:50:22 +0000 | [diff] [blame] | 783 | dnl Check for -mpreferred-stack-boundary |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 784 | AC_CACHE_CHECK([for gcc -mpreferred-stack-boundary=2 support], ac_cv_c_gcc_stack_boundary, |
| 785 | [WINE_TRY_CFLAGS([-mpreferred-stack-boundary=2], |
| 786 | ac_cv_c_gcc_stack_boundary="yes",ac_cv_c_gcc_stack_boundary="no")]) |
Alexandre Julliard | f9b94cb | 2000-12-06 03:50:22 +0000 | [diff] [blame] | 787 | if test "$ac_cv_c_gcc_stack_boundary" = "yes" |
| 788 | then |
Alexandre Julliard | fc09423 | 2003-04-14 21:46:41 +0000 | [diff] [blame] | 789 | EXTRACFLAGS="$EXTRACFLAGS -mpreferred-stack-boundary=2" |
Alexandre Julliard | f9b94cb | 2000-12-06 03:50:22 +0000 | [diff] [blame] | 790 | fi |
Alexandre Julliard | 14bd120 | 2003-01-09 00:42:26 +0000 | [diff] [blame] | 791 | |
Alexandre Julliard | efca0f6 | 2003-07-24 00:09:51 +0000 | [diff] [blame] | 792 | dnl Check for -fno-strict-aliasing |
| 793 | AC_CACHE_CHECK([for gcc -fno-strict-aliasing support], ac_cv_c_gcc_no_strict_aliasing, |
| 794 | [WINE_TRY_CFLAGS([-fno-strict-aliasing], |
| 795 | ac_cv_c_gcc_no_strict_aliasing="yes",ac_cv_c_gcc_no_strict_aliasing="no")]) |
| 796 | if test "$ac_cv_c_gcc_no_strict_aliasing" = "yes" |
| 797 | then |
| 798 | EXTRACFLAGS="$EXTRACFLAGS -fno-strict-aliasing" |
| 799 | fi |
| 800 | |
Alexandre Julliard | 14bd120 | 2003-01-09 00:42:26 +0000 | [diff] [blame] | 801 | dnl Check for -gstabs+ option |
| 802 | AC_CACHE_CHECK([for gcc -gstabs+ support], ac_cv_c_gcc_gstabs, |
| 803 | [WINE_TRY_CFLAGS([-gstabs+],ac_cv_c_gcc_gstabs="yes", ac_cv_c_gcc_gstabs="no")]) |
| 804 | if test "$ac_cv_c_gcc_gstabs" = "yes" |
| 805 | then |
Alexandre Julliard | fc09423 | 2003-04-14 21:46:41 +0000 | [diff] [blame] | 806 | EXTRACFLAGS="$EXTRACFLAGS -gstabs+" |
Alexandre Julliard | 14bd120 | 2003-01-09 00:42:26 +0000 | [diff] [blame] | 807 | fi |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 808 | |
| 809 | dnl Check for noisy string.h |
Alexandre Julliard | 4d52d37 | 2003-03-24 19:33:20 +0000 | [diff] [blame] | 810 | saved_CFLAGS="$CFLAGS" |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 811 | CFLAGS="$CFLAGS -Wpointer-arith -Werror" |
| 812 | AC_CACHE_CHECK([for broken string.h that generates warnings], ac_cv_c_string_h_warnings, |
| 813 | AC_TRY_COMPILE([#include <string.h>],[], |
| 814 | [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] | 815 | CFLAGS="$saved_CFLAGS" |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 816 | if test "$ac_cv_c_string_h_warnings" = "no" |
| 817 | then |
Alexandre Julliard | fc09423 | 2003-04-14 21:46:41 +0000 | [diff] [blame] | 818 | EXTRACFLAGS="$EXTRACFLAGS -Wpointer-arith" |
Mike McCormack | c509bc4 | 2003-02-25 04:01:58 +0000 | [diff] [blame] | 819 | fi |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 820 | fi |
| 821 | |
Alexandre Julliard | 84555cc | 2002-07-22 20:51:02 +0000 | [diff] [blame] | 822 | dnl **** Check how to define a function in assembly code **** |
Dimitrie O. Paun | c77cbbc | 2000-11-27 23:32:55 +0000 | [diff] [blame] | 823 | |
Alexandre Julliard | 84555cc | 2002-07-22 20:51:02 +0000 | [diff] [blame] | 824 | AC_CACHE_CHECK([how to define a function in assembly code], ac_cv_asm_func_def, |
| 825 | WINE_TRY_ASM_LINK( |
| 826 | ["\t.globl _ac_test\n\t.def _ac_test; .scl 2; .type 32; .endef\n_ac_test:\t.long 0"],,, |
| 827 | ac_cv_asm_func_def=".def", |
| 828 | [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,@function\n_ac_test:\t.long 0"],,, |
| 829 | ac_cv_asm_func_def=".type @function", |
| 830 | [WINE_TRY_ASM_LINK(["\t.globl _ac_test\n\t.type _ac_test,2\n_ac_test:\t.long 0"],,, |
| 831 | ac_cv_asm_func_def=".type 2", |
| 832 | ac_cv_asm_func_def="unknown")])])) |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame] | 833 | |
Alexandre Julliard | 84555cc | 2002-07-22 20:51:02 +0000 | [diff] [blame] | 834 | AH_TEMPLATE(__ASM_FUNC,[Define to a macro to generate an assembly function directive]) |
| 835 | case "$ac_cv_asm_func_def" in |
| 836 | ".def") |
| 837 | AC_DEFINE([__ASM_FUNC(name)], [".def " __ASM_NAME(name) "; .scl 2; .type 32; .endef"]) ;; |
| 838 | ".type @function") |
| 839 | AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",@function"]) ;; |
| 840 | ".type 2") |
| 841 | AC_DEFINE([__ASM_FUNC(name)], [".type " __ASM_NAME(name) ",2"]) ;; |
| 842 | *) |
| 843 | AC_DEFINE([__ASM_FUNC(name)], [""]) ;; |
| 844 | esac |
Gregg Mattinson | 57807fa | 2002-07-20 20:17:13 +0000 | [diff] [blame] | 845 | |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 846 | dnl **** Check for underscore on external symbols **** |
| 847 | |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 848 | 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] | 849 | WINE_TRY_ASM_LINK([".globl _ac_test\n_ac_test:\t.long 0"], |
| 850 | [extern int ac_test;], |
| 851 | [if (ac_test) return 1], |
| 852 | ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")) |
| 853 | |
| 854 | 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] | 855 | if test "$ac_cv_c_extern_prefix" = "yes" |
| 856 | then |
Alexandre Julliard | 84555cc | 2002-07-22 20:51:02 +0000 | [diff] [blame] | 857 | AC_DEFINE([__ASM_NAME(name)], ["_" name]) |
| 858 | else |
| 859 | AC_DEFINE([__ASM_NAME(name)], [name]) |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 860 | fi |
| 861 | |
Alexandre Julliard | 7e6ae4b | 1996-12-08 19:25:27 +0000 | [diff] [blame] | 862 | dnl **** Check for working dll **** |
| 863 | |
Alexandre Julliard | 7bf07d1 | 2002-08-03 00:25:59 +0000 | [diff] [blame] | 864 | AC_SUBST(DLLEXT,"") |
Alexandre Julliard | fc09423 | 2003-04-14 21:46:41 +0000 | [diff] [blame] | 865 | AC_SUBST(DLLFLAGS,"-D_REENTRANT") |
Alexandre Julliard | 7bf07d1 | 2002-08-03 00:25:59 +0000 | [diff] [blame] | 866 | AC_SUBST(DLLIBS,"") |
Alexandre Julliard | 7bf07d1 | 2002-08-03 00:25:59 +0000 | [diff] [blame] | 867 | AC_SUBST(LDSHARED,"") |
Dimitrie O. Paun | f41c2b2 | 2004-03-02 02:23:26 +0000 | [diff] [blame] | 868 | AC_SUBST(LDDLLFLAGS,"") |
Alexandre Julliard | ada5e65 | 2002-12-12 22:03:14 +0000 | [diff] [blame] | 869 | AC_SUBST(LIBEXT,"so") |
| 870 | AC_SUBST(IMPLIBEXT,"def") |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 871 | |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 872 | case $host_os in |
| 873 | cygwin*|mingw32*) |
Alexandre Julliard | ada5e65 | 2002-12-12 22:03:14 +0000 | [diff] [blame] | 874 | AC_CHECK_TOOL(DLLTOOL,dlltool,false) |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 875 | AC_CHECK_TOOL(DLLWRAP,dllwrap,false) |
| 876 | if test "$DLLWRAP" = "false"; then |
| 877 | LIBEXT="a" |
| 878 | else |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 879 | dnl FIXME - check whether dllwrap works correctly... |
| 880 | LIBEXT="dll" |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 881 | fi |
Alexandre Julliard | ada5e65 | 2002-12-12 22:03:14 +0000 | [diff] [blame] | 882 | IMPLIBEXT="a" |
Alexandre Julliard | 56a4a76 | 2004-08-12 03:27:50 +0000 | [diff] [blame] | 883 | dnl We can't build 16-bit NE dlls |
| 884 | WIN16_FILES="" |
| 885 | WIN16_INSTALL="" |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 886 | ;; |
| 887 | *) |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 888 | if test "$ac_cv_header_dlfcn_h" = "yes" |
| 889 | then |
| 890 | AC_CHECK_FUNCS(dlopen,, |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 891 | [AC_CHECK_LIB(dl,dlopen, |
| 892 | [AC_DEFINE(HAVE_DLOPEN,1,[Define if you have dlopen]) |
| 893 | DLLIBS="-ldl"], |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 894 | [LIBEXT="a"])]) |
| 895 | else |
| 896 | LIBEXT="a" |
| 897 | fi |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 898 | |
| 899 | if test "$LIBEXT" = "so" |
| 900 | then |
Alexandre Julliard | fc09423 | 2003-04-14 21:46:41 +0000 | [diff] [blame] | 901 | DLLFLAGS="$DLLFLAGS -fPIC" |
Alexandre Julliard | 7bf07d1 | 2002-08-03 00:25:59 +0000 | [diff] [blame] | 902 | DLLEXT=".so" |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 903 | AC_CACHE_CHECK([whether we can build a GNU style ELF dll], ac_cv_c_dll_gnuelf, |
Warren Baird | 421e8b9 | 2004-09-22 19:17:55 +0000 | [diff] [blame] | 904 | [WINE_TRY_SHLIB_FLAGS([-fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic], |
| 905 | ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")]) |
Alexandre Julliard | 466ae14 | 2002-05-07 18:33:47 +0000 | [diff] [blame] | 906 | if test "$ac_cv_c_dll_gnuelf" = "yes" |
| 907 | then |
| 908 | LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)" |
Dimitrie O. Paun | f41c2b2 | 2004-03-02 02:23:26 +0000 | [diff] [blame] | 909 | LDDLLFLAGS="-shared -Wl,-Bsymbolic" |
Alexandre Julliard | f2abe47 | 2002-11-21 04:13:35 +0000 | [diff] [blame] | 910 | AC_CACHE_CHECK([whether the linker accepts -z defs], ac_cv_c_dll_zdefs, |
| 911 | [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-Bsymbolic,-z,defs], |
| 912 | ac_cv_c_dll_zdefs="yes",ac_cv_c_dll_zdefs="no")]) |
| 913 | if test "$ac_cv_c_dll_zdefs" = "yes" |
| 914 | then |
Dimitrie O. Paun | f41c2b2 | 2004-03-02 02:23:26 +0000 | [diff] [blame] | 915 | LDDLLFLAGS="$LDDLLFLAGS,-z,defs" |
Alexandre Julliard | f2abe47 | 2002-11-21 04:13:35 +0000 | [diff] [blame] | 916 | fi |
Alexandre Julliard | c6d44be | 2003-11-22 00:08:26 +0000 | [diff] [blame] | 917 | |
Alexandre Julliard | 3604824 | 2004-01-08 03:36:53 +0000 | [diff] [blame] | 918 | AC_CACHE_CHECK([whether the linker accepts -init and -fini], ac_cv_c_dll_init_fini, |
| 919 | [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-Bsymbolic,-init,__wine_spec_init,-fini,__wine_spec_fini], |
| 920 | ac_cv_c_dll_init_fini="yes",ac_cv_c_dll_init_fini="no")]) |
| 921 | if test "$ac_cv_c_dll_init_fini" = "yes" |
| 922 | then |
Dimitrie O. Paun | f41c2b2 | 2004-03-02 02:23:26 +0000 | [diff] [blame] | 923 | LDDLLFLAGS="$LDDLLFLAGS,-init,__wine_spec_init,-fini,__wine_spec_fini" |
Alexandre Julliard | 3604824 | 2004-01-08 03:36:53 +0000 | [diff] [blame] | 924 | fi |
| 925 | |
Alexandre Julliard | 440ff6d | 2004-02-12 22:54:00 +0000 | [diff] [blame] | 926 | AC_CACHE_CHECK([whether the linker accepts version scripts], ac_cv_c_ld_version_scripts, |
| 927 | [echo '{ global: *; };' >conftest.map |
| 928 | WINE_TRY_CFLAGS([-fPIC -shared -Wl,--version-script=conftest.map], |
| 929 | ac_cv_c_ld_version_scripts="yes",ac_cv_c_ld_version_scripts="no") |
| 930 | rm -f conftest.map]) |
| 931 | if test "$ac_cv_c_ld_version_scripts" = "yes" |
| 932 | then |
| 933 | LDSHARED="$LDSHARED \$(VERSCRIPT:%=-Wl,--version-script=%)" |
| 934 | fi |
| 935 | |
Alexandre Julliard | ef2d04d | 2003-11-17 20:07:55 +0000 | [diff] [blame] | 936 | AC_CACHE_CHECK([whether the linker accepts --export-dynamic], ac_cv_c_export_dynamic, |
| 937 | [WINE_TRY_CFLAGS([-fPIC -Wl,--export-dynamic], |
| 938 | ac_cv_c_export_dynamic="yes",ac_cv_c_export_dynamic="no")]) |
| 939 | if test "$ac_cv_c_export_dynamic" = "yes" |
| 940 | then |
Alexandre Julliard | c6d44be | 2003-11-22 00:08:26 +0000 | [diff] [blame] | 941 | AC_SUBST(LDEXECFLAGS,["-Wl,--export-dynamic"]) |
Alexandre Julliard | ef2d04d | 2003-11-17 20:07:55 +0000 | [diff] [blame] | 942 | fi |
Alexandre Julliard | c6d44be | 2003-11-22 00:08:26 +0000 | [diff] [blame] | 943 | |
| 944 | case $host_cpu in |
| 945 | *i[[3456789]]86*) |
Alexandre Julliard | 5729f58 | 2005-06-17 10:22:46 +0000 | [diff] [blame] | 946 | AC_CACHE_CHECK([whether we can relocate the executable to 0x7bf00000], ac_cv_ld_reloc_exec, |
| 947 | [WINE_TRY_CFLAGS([-Wl,--section-start,.interp=0x7bf00400], |
Alexandre Julliard | b1abca8 | 2004-05-28 20:59:22 +0000 | [diff] [blame] | 948 | ac_cv_ld_reloc_exec="yes", ac_cv_ld_reloc_exec="no")]) |
Alexandre Julliard | c6d44be | 2003-11-22 00:08:26 +0000 | [diff] [blame] | 949 | if test "$ac_cv_ld_reloc_exec" = "yes" |
| 950 | then |
Alexandre Julliard | 5729f58 | 2005-06-17 10:22:46 +0000 | [diff] [blame] | 951 | LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7bf00400" |
Alexandre Julliard | c6d44be | 2003-11-22 00:08:26 +0000 | [diff] [blame] | 952 | fi |
| 953 | ;; |
| 954 | esac |
| 955 | |
Alexandre Julliard | 466ae14 | 2002-05-07 18:33:47 +0000 | [diff] [blame] | 956 | else |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 957 | AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll, ac_cv_c_dll_unixware, |
Warren Baird | 421e8b9 | 2004-09-22 19:17:55 +0000 | [diff] [blame] | 958 | [WINE_TRY_SHLIB_FLAGS([-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic], |
| 959 | ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")]) |
Alexandre Julliard | 466ae14 | 2002-05-07 18:33:47 +0000 | [diff] [blame] | 960 | if test "$ac_cv_c_dll_unixware" = "yes" |
| 961 | then |
| 962 | LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,%)" |
Dimitrie O. Paun | f41c2b2 | 2004-03-02 02:23:26 +0000 | [diff] [blame] | 963 | LDDLLFLAGS="-Wl,-G,-B,symbolic" |
Pierre d'Herbemont | 794bf0f | 2003-11-25 03:31:26 +0000 | [diff] [blame] | 964 | |
| 965 | else |
| 966 | AC_CACHE_CHECK(whether we can build a Mach-O (Mac OS X/Darwin) dll, ac_cv_c_dll_macho, |
Warren Baird | 421e8b9 | 2004-09-22 19:17:55 +0000 | [diff] [blame] | 967 | [WINE_TRY_SHLIB_FLAGS([-bundle], ac_cv_c_dll_macho="yes", ac_cv_c_dll_macho="no")]) |
Pierre d'Herbemont | 794bf0f | 2003-11-25 03:31:26 +0000 | [diff] [blame] | 968 | if test "$ac_cv_c_dll_macho" = "yes" |
| 969 | then |
| 970 | LIBEXT="dylib" |
Emmanuel Maillard | 4fe448d | 2005-03-01 10:46:27 +0000 | [diff] [blame] | 971 | LDDLLFLAGS="-bundle -flat_namespace -undefined suppress -read_only_relocs warning" |
Pierre d'Herbemont | 794bf0f | 2003-11-25 03:31:26 +0000 | [diff] [blame] | 972 | LDSHARED="\$(CC) -dynamiclib" |
| 973 | CFLAGS="$CFLAGS -ffixed-r13 -no-cpp-precomp" |
Emmanuel Maillard | 46718f8 | 2004-07-22 19:48:41 +0000 | [diff] [blame] | 974 | STRIP="$STRIP -u -r" |
| 975 | dnl Relocate wine executable |
| 976 | AC_SUBST(LDEXECFLAGS,"-seg1addr 0x120000") |
| 977 | dnl Relocate libwine.dyld too |
| 978 | AC_SUBST(LDLIBWINEFLAGS,"-seg1addr 0x140000") |
Emmanuel Maillard | 2300ce6 | 2004-08-19 01:20:45 +0000 | [diff] [blame] | 979 | dnl declare needed frameworks |
| 980 | AC_SUBST(COREFOUNDATIONLIB,"-framework CoreFoundation") |
| 981 | AC_SUBST(IOKITLIB,"-framework IOKit") |
| 982 | dnl using IOKit imply we use CoreFoundation too |
Pierre d'Herbemont | f94121e | 2005-02-26 17:43:50 +0000 | [diff] [blame] | 983 | IOKITLIB="$IOKITLIB $COREFOUNDATIONLIB" |
Warren Baird | 421e8b9 | 2004-09-22 19:17:55 +0000 | [diff] [blame] | 984 | else |
| 985 | AC_CACHE_CHECK(whether we can build an HP-UX dll, ac_cv_c_dll_hpux, |
| 986 | [WINE_TRY_SHLIB_FLAGS([-shared], ac_cv_c_dll_hpux="yes", ac_cv_c_dll_hpux="no")]) |
| 987 | if test "$ac_cv_c_dll_hpux" = "yes" |
| 988 | then |
| 989 | LIBEXT="sl" |
Warren Baird | 1023fe3 | 2004-10-19 21:37:09 +0000 | [diff] [blame] | 990 | DLLEXT=".sl" |
| 991 | LDDLLFLAGS="-shared -fPIC" |
Warren Baird | 421e8b9 | 2004-09-22 19:17:55 +0000 | [diff] [blame] | 992 | LDSHARED="\$(CC) -shared" |
| 993 | fi |
Pierre d'Herbemont | 794bf0f | 2003-11-25 03:31:26 +0000 | [diff] [blame] | 994 | fi |
Alexandre Julliard | 466ae14 | 2002-05-07 18:33:47 +0000 | [diff] [blame] | 995 | fi |
| 996 | fi |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 997 | fi |
Alexandre Julliard | c3c587e | 2002-09-06 19:46:00 +0000 | [diff] [blame] | 998 | |
| 999 | dnl Check for cross compiler to build test programs |
| 1000 | AC_SUBST(CROSSTEST,"") |
| 1001 | if test "$cross_compiling" = "no" |
| 1002 | then |
Kevin Koltzau | d344456 | 2004-04-15 00:01:05 +0000 | [diff] [blame] | 1003 | AC_CHECK_PROGS(CROSSCC,i586-mingw32msvc-gcc i386-mingw32msvc-gcc i386-mingw32-gcc mingw-gcc,false) |
| 1004 | AC_CHECK_PROGS(DLLTOOL,i586-mingw32msvc-dlltool i386-mingw32msvc-dlltool i386-mingw32-dlltool mingw-dlltool,false) |
| 1005 | AC_CHECK_PROGS(CROSSWINDRES,i586-mingw32msvc-windres i386-mingw32msvc-windres i386-mingw32-windres mingw-windres,false) |
Alexandre Julliard | c3c587e | 2002-09-06 19:46:00 +0000 | [diff] [blame] | 1006 | if test "$CROSSCC" != "false"; then CROSSTEST="\$(CROSSTEST)"; fi |
| 1007 | fi |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 1008 | ;; |
| 1009 | esac |
Alexandre Julliard | 0adad95 | 2000-01-26 01:45:58 +0000 | [diff] [blame] | 1010 | |
Hidenori Takeshima | d48ca94 | 2000-12-22 22:28:00 +0000 | [diff] [blame] | 1011 | if test "$LIBEXT" = "a"; then |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1012 | AC_MSG_ERROR( |
| 1013 | [could not find a way to build shared libraries. |
| 1014 | It is currently not possible to build Wine without shared library |
| 1015 | (.so) support to allow transparent switch between .so and .dll files. |
| 1016 | If you are using Linux, you will need a newer binutils.] |
| 1017 | ) |
Hidenori Takeshima | d48ca94 | 2000-12-22 22:28:00 +0000 | [diff] [blame] | 1018 | fi |
| 1019 | |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 1020 | case $build_os in |
| 1021 | cygwin*|mingw32*) |
Alexandre Julliard | 7ab9a71 | 2003-03-21 05:06:48 +0000 | [diff] [blame] | 1022 | AC_SUBST(LDPATH,"PATH=\"\$(TOOLSDIR)/libs/unicode:\$\$PATH\"") ;; |
Pierre d'Herbemont | 794bf0f | 2003-11-25 03:31:26 +0000 | [diff] [blame] | 1023 | darwin*|macosx*) |
| 1024 | AC_SUBST(LDPATH,"DYLD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/unicode:\$\$DYLD_LIBRARY_PATH\"") ;; |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 1025 | *) |
Alexandre Julliard | 7ab9a71 | 2003-03-21 05:06:48 +0000 | [diff] [blame] | 1026 | AC_SUBST(LDPATH,"LD_LIBRARY_PATH=\"\$(TOOLSDIR)/libs/unicode:\$\$LD_LIBRARY_PATH\"") ;; |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 1027 | esac |
| 1028 | |
Steven Edwards | c91ae45 | 2004-09-03 18:57:19 +0000 | [diff] [blame] | 1029 | dnl Mingw needs explicit msvcrt for linking libwine and winsock for wininet |
Alexandre Julliard | 7bf07d1 | 2002-08-03 00:25:59 +0000 | [diff] [blame] | 1030 | case $host_os in |
| 1031 | mingw32*) |
Steven Edwards | c91ae45 | 2004-09-03 18:57:19 +0000 | [diff] [blame] | 1032 | AC_SUBST(CRTLIBS,"-lmsvcrt") |
| 1033 | AC_SUBST(SOCKETLIBS,"-lws2_32") |
| 1034 | ;; |
Alexandre Julliard | 546839f | 2003-11-11 00:48:21 +0000 | [diff] [blame] | 1035 | esac |
| 1036 | |
| 1037 | case $host_os in |
| 1038 | linux*) |
Vincent Béron | 4bf9d98 | 2004-10-14 00:30:59 +0000 | [diff] [blame] | 1039 | case $host_cpu in |
| 1040 | *i[[3456789]]86*) AC_SUBST(WINE_BINARIES,"wine-glibc wine-kthread wine-pthread wine-preloader") ;; |
| 1041 | *) AC_SUBST(WINE_BINARIES,"wine-glibc wine-kthread wine-pthread") ;; |
| 1042 | esac |
Alexandre Julliard | a628c13 | 2003-11-12 03:28:21 +0000 | [diff] [blame] | 1043 | AC_SUBST(MAIN_BINARY,"wine-glibc") |
Alexandre Julliard | 546839f | 2003-11-11 00:48:21 +0000 | [diff] [blame] | 1044 | ;; |
Emmanuel Maillard | 3bc8d2e | 2004-07-19 20:11:10 +0000 | [diff] [blame] | 1045 | darwin*) |
| 1046 | AC_SUBST(WINE_BINARIES,"wine-pthread") |
| 1047 | AC_SUBST(MAIN_BINARY,"wine-pthread") |
| 1048 | ;; |
Alexandre Julliard | 546839f | 2003-11-11 00:48:21 +0000 | [diff] [blame] | 1049 | *) |
| 1050 | AC_SUBST(WINE_BINARIES,"wine-kthread") |
| 1051 | AC_SUBST(MAIN_BINARY,"wine-kthread") |
| 1052 | ;; |
Alexandre Julliard | 7bf07d1 | 2002-08-03 00:25:59 +0000 | [diff] [blame] | 1053 | esac |
Alexandre Julliard | 7e6ae4b | 1996-12-08 19:25:27 +0000 | [diff] [blame] | 1054 | |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 1055 | dnl **** Get the soname for libraries that we load dynamically **** |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1056 | |
Pierre d'Herbemont | 197b5e3 | 2004-06-14 19:34:42 +0000 | [diff] [blame] | 1057 | if test "$LIBEXT" = "so" -o "$LIBEXT" = "dylib" |
Alexandre Julliard | 598412e | 2001-01-17 20:22:22 +0000 | [diff] [blame] | 1058 | then |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 1059 | WINE_GET_SONAME(X11,XCreateWindow,[$X_LIBS $X_EXTRA_LIBS]) |
| 1060 | WINE_GET_SONAME(Xext,XextCreateExtension,[$X_LIBS -lX11 $X_EXTRA_LIBS]) |
Aric Stewart | 2eebf3c | 2004-01-09 00:03:00 +0000 | [diff] [blame] | 1061 | WINE_GET_SONAME(Xi,XOpenDevice,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS]) |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 1062 | WINE_GET_SONAME(Xrender,XRenderQueryExtension,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS]) |
Mike McCormack | c7c9f93 | 2004-04-07 03:57:35 +0000 | [diff] [blame] | 1063 | WINE_GET_SONAME(Xrandr,XRRQueryExtension,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS]) |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 1064 | WINE_GET_SONAME(freetype,FT_Init_FreeType,[$X_LIBS]) |
Lionel Ulmer | 56ab2b3e | 2002-11-15 04:16:38 +0000 | [diff] [blame] | 1065 | WINE_GET_SONAME(GL,glXQueryExtension,[$X_LIBS $X_EXTRA_LIBS]) |
Christian Costa | eac96b5 | 2004-07-30 18:54:32 +0000 | [diff] [blame] | 1066 | WINE_GET_SONAME(txc_dxtn,fetch_2d_texel_rgba_dxt1) |
Marcus Meissner | f061f76 | 2002-11-12 02:22:24 +0000 | [diff] [blame] | 1067 | WINE_GET_SONAME(cups,cupsGetDefault) |
Chris Morgan | 4691b18 | 2002-12-13 02:26:18 +0000 | [diff] [blame] | 1068 | WINE_GET_SONAME(jack,jack_client_new) |
Alexandre Julliard | 7999469 | 2003-11-13 20:58:55 +0000 | [diff] [blame] | 1069 | WINE_GET_SONAME(fontconfig,FcInit) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 1070 | WINE_GET_SONAME(ssl,SSL_library_init) |
| 1071 | WINE_GET_SONAME(crypto,BIO_new_socket) |
Mike McCormack | 9557d1b | 2003-08-20 04:19:01 +0000 | [diff] [blame] | 1072 | WINE_GET_SONAME(ncurses,waddch) |
| 1073 | WINE_GET_SONAME(curses,waddch) |
Huw Davies | e82dfab | 2004-08-04 19:10:26 +0000 | [diff] [blame] | 1074 | WINE_GET_SONAME(jpeg,jpeg_start_decompress) |
| 1075 | WINE_GET_SONAME(ungif,DGifOpen) |
Marcus Meissner | 00cf13a | 2004-09-14 19:27:58 +0000 | [diff] [blame] | 1076 | WINE_GET_SONAME(gif,DGifOpen) |
Marcus Meissner | 67d3afb | 2005-01-07 15:33:02 +0000 | [diff] [blame] | 1077 | WINE_GET_SONAME(capi20,capi20_isinstalled) |
Alexandre Julliard | 598412e | 2001-01-17 20:22:22 +0000 | [diff] [blame] | 1078 | fi |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 1079 | |
| 1080 | |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1081 | dnl **** Check for functions **** |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1082 | |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1083 | AC_CHECK_FUNCS(\ |
| 1084 | _lwp_create \ |
Alexandre Julliard | 6f7a204 | 2003-04-01 04:39:35 +0000 | [diff] [blame] | 1085 | _lwp_self \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 1086 | _pclose \ |
| 1087 | _popen \ |
Steven Edwards | 0a8e15a | 2002-05-10 01:33:40 +0000 | [diff] [blame] | 1088 | _snprintf \ |
Alexandre Julliard | c45bbad | 2003-04-01 00:12:02 +0000 | [diff] [blame] | 1089 | _spawnvp \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 1090 | _stricmp \ |
| 1091 | _strnicmp \ |
Steven Edwards | be514b9 | 2003-01-14 19:35:03 +0000 | [diff] [blame] | 1092 | _vsnprintf \ |
Steven Edwards | b9627c1 | 2002-05-05 21:03:44 +0000 | [diff] [blame] | 1093 | chsize \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1094 | clone \ |
Alexandre Julliard | 969f57c | 2004-09-23 04:48:24 +0000 | [diff] [blame] | 1095 | epoll_create \ |
Hans Leidekker | c3de6ef | 2004-10-19 23:53:26 +0000 | [diff] [blame] | 1096 | ffs \ |
Jon Griffiths | d6deb6d | 2000-11-27 01:37:28 +0000 | [diff] [blame] | 1097 | finite \ |
Hans Leidekker | bed3842 | 2004-10-14 03:08:57 +0000 | [diff] [blame] | 1098 | fork \ |
Jon Griffiths | d6deb6d | 2000-11-27 01:37:28 +0000 | [diff] [blame] | 1099 | fpclass \ |
Alexandre Julliard | e77c9be | 2004-04-06 03:33:25 +0000 | [diff] [blame] | 1100 | fstatfs \ |
| 1101 | fstatvfs \ |
Steven Edwards | b9627c1 | 2002-05-05 21:03:44 +0000 | [diff] [blame] | 1102 | ftruncate \ |
Alexandre Julliard | a1fe8b4 | 2004-03-27 01:48:52 +0000 | [diff] [blame] | 1103 | futimes \ |
Robert Lunnon | c0cb4d3 | 2005-05-07 14:53:38 +0000 | [diff] [blame] | 1104 | futimesat \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 1105 | getnetbyname \ |
Dimitrie O. Paun | 647c1a3 | 2002-12-10 19:16:24 +0000 | [diff] [blame] | 1106 | getopt_long \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1107 | getpagesize \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 1108 | getprotobyname \ |
| 1109 | getprotobynumber \ |
Alexandre Julliard | 142dab8 | 2002-07-01 18:17:30 +0000 | [diff] [blame] | 1110 | getpwuid \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 1111 | getservbyport \ |
Alexandre Julliard | b2d937d | 2003-11-12 03:16:00 +0000 | [diff] [blame] | 1112 | gettid \ |
Alexandre Julliard | 8d7b8e5 | 2003-03-23 20:11:45 +0000 | [diff] [blame] | 1113 | gettimeofday \ |
Steven Edwards | e7c3ab1 | 2004-10-04 20:45:49 +0000 | [diff] [blame] | 1114 | getuid \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 1115 | inet_network \ |
Alexandre Julliard | 27bb311 | 2000-11-29 17:48:06 +0000 | [diff] [blame] | 1116 | lstat \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1117 | memmove \ |
Hidenori Takeshima | a85b0a6 | 2000-11-25 23:54:12 +0000 | [diff] [blame] | 1118 | mmap \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 1119 | pclose \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 1120 | popen \ |
Steven Edwards | b9627c1 | 2002-05-05 21:03:44 +0000 | [diff] [blame] | 1121 | pread \ |
Alexandre Julliard | f1a0de9 | 2002-01-07 21:00:27 +0000 | [diff] [blame] | 1122 | pwrite \ |
Alexandre Julliard | e293074 | 2004-01-08 05:07:05 +0000 | [diff] [blame] | 1123 | readlink \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1124 | rfork \ |
Jeremy White | 08c0f69 | 2004-10-09 02:26:29 +0000 | [diff] [blame] | 1125 | sched_yield \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 1126 | select \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1127 | sendmsg \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 1128 | settimeofday \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1129 | sigaltstack \ |
Paul Millar | 10a6c56 | 2004-12-07 17:19:54 +0000 | [diff] [blame] | 1130 | sigprocmask \ |
Steven Edwards | 0a8e15a | 2002-05-10 01:33:40 +0000 | [diff] [blame] | 1131 | snprintf \ |
Pavel Roskin | 7add08a | 2003-09-24 18:54:40 +0000 | [diff] [blame] | 1132 | spawnvp \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 1133 | statfs \ |
Alexandre Julliard | 13af489 | 2004-03-05 21:03:46 +0000 | [diff] [blame] | 1134 | statvfs \ |
Alexandre Julliard | 3b96efc | 1999-09-04 14:36:02 +0000 | [diff] [blame] | 1135 | strcasecmp \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1136 | strerror \ |
Alexandre Julliard | 3b96efc | 1999-09-04 14:36:02 +0000 | [diff] [blame] | 1137 | strncasecmp \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1138 | tcgetattr \ |
| 1139 | timegm \ |
| 1140 | usleep \ |
Steven Edwards | be514b9 | 2003-01-14 19:35:03 +0000 | [diff] [blame] | 1141 | vsnprintf \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1142 | wait4 \ |
| 1143 | waitpid \ |
| 1144 | ) |
| 1145 | |
Gerald Pfeifer | 6cef4cd | 2002-11-06 22:00:10 +0000 | [diff] [blame] | 1146 | dnl **** Checks for headers that depend on other ones **** |
| 1147 | |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 1148 | AC_CHECK_HEADERS([sys/mount.h sys/statfs.h sys/user.h sys/vfs.h],,, |
Patrik Stridvall | 63ae7fe | 2002-11-08 19:34:52 +0000 | [diff] [blame] | 1149 | [#include <sys/types.h> |
| 1150 | #if HAVE_SYS_PARAM_H |
| 1151 | # include <sys/param.h> |
Gerald Pfeifer | 6cef4cd | 2002-11-06 22:00:10 +0000 | [diff] [blame] | 1152 | #endif]) |
| 1153 | |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 1154 | AC_CHECK_HEADERS([net/if.h net/if_arp.h net/if_dl.h net/if_types.h net/route.h netipx/ipx.h],,, |
Patrik Stridvall | 63ae7fe | 2002-11-08 19:34:52 +0000 | [diff] [blame] | 1155 | [#include <sys/types.h> |
Gerald Pfeifer | 87c369d | 2002-07-23 02:02:02 +0000 | [diff] [blame] | 1156 | #if HAVE_SYS_SOCKET_H |
Gregg Mattinson | 044b5c4 | 2002-07-19 03:16:51 +0000 | [diff] [blame] | 1157 | # include <sys/socket.h> |
| 1158 | #endif]) |
| 1159 | |
Gerald Pfeifer | bcb6ecf | 2003-08-11 18:37:13 +0000 | [diff] [blame] | 1160 | AC_CHECK_HEADERS([resolv.h],,, |
| 1161 | [#include <sys/types.h> |
| 1162 | #if HAVE_SYS_SOCKET_H |
| 1163 | # include <sys/socket.h> |
| 1164 | #endif |
| 1165 | #if HAVE_NETINET_IN_H |
| 1166 | # include <netinet/in.h> |
Pierre d'Herbemont | ae8ca36 | 2003-10-27 21:55:00 +0000 | [diff] [blame] | 1167 | #endif |
| 1168 | #if HAVE_ARPA_NAMESER_H |
| 1169 | # include <arpa/nameser.h> |
Gerald Pfeifer | bcb6ecf | 2003-08-11 18:37:13 +0000 | [diff] [blame] | 1170 | #endif]) |
| 1171 | |
Gerald Pfeifer | d2033a5 | 2002-11-12 23:21:55 +0000 | [diff] [blame] | 1172 | AC_CHECK_HEADERS(ucontext.h,,,[#include <signal.h>]) |
| 1173 | |
Alexandre Julliard | 7348214 | 2005-08-03 19:21:04 +0000 | [diff] [blame] | 1174 | AC_CHECK_HEADERS([linux/ipx.h linux/videodev.h],,, |
Maarten Lankhorst | 888eaae | 2005-04-27 09:46:25 +0000 | [diff] [blame] | 1175 | [#ifdef HAVE_SYS_TIME_H |
| 1176 | #include <sys/time.h> |
| 1177 | #endif |
Adrian Harvey | 59f9725 | 2005-06-12 11:10:43 +0000 | [diff] [blame] | 1178 | #include <sys/types.h> |
Maarten Lankhorst | 888eaae | 2005-04-27 09:46:25 +0000 | [diff] [blame] | 1179 | #ifdef HAVE_ASM_TYPES_H |
| 1180 | #include <asm/types.h> |
| 1181 | #endif]) |
| 1182 | |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 1183 | dnl **** Check for types **** |
| 1184 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1185 | AC_C_CONST |
| 1186 | AC_C_INLINE |
Alexandre Julliard | 60a8fcf | 2004-09-16 20:34:27 +0000 | [diff] [blame] | 1187 | 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] | 1188 | AC_CHECK_TYPES([sigset_t],,,[#include <signal.h>]) |
Gerald Pfeifer | b8b15f3 | 2005-07-10 17:42:46 +0000 | [diff] [blame] | 1189 | AC_CHECK_TYPES([request_sense],,,[#include <linux/cdrom.h>]) |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 1190 | |
Daniel Remenak | e491e8f | 2005-07-29 14:18:58 +0000 | [diff] [blame] | 1191 | AC_CHECK_MEMBERS([struct ff_effect.direction],,, |
| 1192 | [#ifdef HAVE_LINUX_INPUT_H |
| 1193 | #include <linux/input.h> |
| 1194 | #endif]) |
| 1195 | |
Paul Millar | 10a6c56 | 2004-12-07 17:19:54 +0000 | [diff] [blame] | 1196 | AC_CACHE_CHECK([for sigaddset],wine_cv_have_sigaddset, |
| 1197 | AC_TRY_LINK([#include <signal.h>],[sigset_t set; sigaddset(&set,SIGTERM);], |
| 1198 | wine_cv_have_sigaddset=yes,wine_cv_have_sigaddset=no)) |
| 1199 | if test "$wine_cv_have_sigaddset" = "yes" |
| 1200 | then |
| 1201 | AC_DEFINE(HAVE_SIGADDSET, 1, [Define if sigaddset is supported]) |
| 1202 | fi |
| 1203 | |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame] | 1204 | |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1205 | 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] | 1206 | wine_cv_linux_gethostbyname_r_6, |
Marcus Meissner | dfd315b | 2004-01-02 03:53:57 +0000 | [diff] [blame] | 1207 | AC_TRY_LINK([ |
Rein Klazes | ff7a61f | 2000-09-24 19:41:57 +0000 | [diff] [blame] | 1208 | #include <netdb.h> |
| 1209 | ], [ |
| 1210 | char *name=NULL; |
| 1211 | struct hostent he; |
| 1212 | struct hostent *result; |
| 1213 | char *buf=NULL; |
| 1214 | int bufsize=0; |
| 1215 | int res,errnr; |
| 1216 | char *addr=NULL; |
| 1217 | int addrlen=0; |
| 1218 | int addrtype=0; |
| 1219 | res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr); |
| 1220 | res=gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr); |
| 1221 | ], |
| 1222 | wine_cv_linux_gethostbyname_r_6=yes, |
| 1223 | wine_cv_linux_gethostbyname_r_6=no |
| 1224 | ) |
| 1225 | ) |
| 1226 | if test "$wine_cv_linux_gethostbyname_r_6" = "yes" |
| 1227 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1228 | AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6, 1, |
| 1229 | [Define if Linux-style gethostbyname_r and gethostbyaddr_r are available]) |
Rein Klazes | ff7a61f | 2000-09-24 19:41:57 +0000 | [diff] [blame] | 1230 | fi |
| 1231 | |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1232 | if test "$ac_cv_header_linux_joystick_h" = "yes" |
| 1233 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1234 | 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] | 1235 | wine_cv_linux_joystick_22_api, |
| 1236 | AC_TRY_COMPILE([ |
| 1237 | #include <sys/ioctl.h> |
| 1238 | #include <linux/joystick.h> |
| 1239 | |
| 1240 | struct js_event blub; |
Marcus Meissner | 605a9c3 | 1999-11-04 02:04:01 +0000 | [diff] [blame] | 1241 | #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON) |
| 1242 | #error "no 2.2 header" |
| 1243 | #endif |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1244 | ],/*empty*/, |
| 1245 | wine_cv_linux_joystick_22_api=yes, |
| 1246 | wine_cv_linux_joystick_22_api=no, |
| 1247 | wine_cv_linux_joystick_22_api=no |
| 1248 | ) |
| 1249 | ) |
Rein Klazes | 87d224a | 2000-04-24 17:33:49 +0000 | [diff] [blame] | 1250 | if test "$wine_cv_linux_joystick_22_api" = "yes" |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1251 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1252 | AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API, 1, |
| 1253 | [Define if <linux/joystick.h> defines the Linux 2.2 joystick API]) |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1254 | fi |
| 1255 | fi |
| 1256 | |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1257 | dnl **** statfs checks **** |
| 1258 | |
| 1259 | if test "$ac_cv_header_sys_vfs_h" = "yes" |
| 1260 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1261 | AC_CACHE_CHECK( [whether sys/vfs.h defines statfs], |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1262 | wine_cv_sys_vfs_has_statfs, |
| 1263 | AC_TRY_COMPILE([ |
| 1264 | #include <sys/types.h> |
| 1265 | #ifdef HAVE_SYS_PARAM_H |
| 1266 | # include <sys/param.h> |
| 1267 | #endif |
| 1268 | #include <sys/vfs.h> |
| 1269 | ],[ |
| 1270 | struct statfs stfs; |
| 1271 | |
| 1272 | memset(&stfs,0,sizeof(stfs)); |
| 1273 | ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no |
| 1274 | ) |
| 1275 | ) |
| 1276 | if test "$wine_cv_sys_vfs_has_statfs" = "yes" |
| 1277 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1278 | AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS, 1, |
| 1279 | [Define if the struct statfs is defined by <sys/vfs.h>]) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1280 | fi |
| 1281 | fi |
| 1282 | |
| 1283 | if test "$ac_cv_header_sys_statfs_h" = "yes" |
| 1284 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1285 | AC_CACHE_CHECK( [whether sys/statfs.h defines statfs], |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1286 | wine_cv_sys_statfs_has_statfs, |
| 1287 | AC_TRY_COMPILE([ |
| 1288 | #include <sys/types.h> |
| 1289 | #ifdef HAVE_SYS_PARAM_H |
| 1290 | # include <sys/param.h> |
| 1291 | #endif |
| 1292 | #include <sys/statfs.h> |
| 1293 | ],[ |
| 1294 | struct statfs stfs; |
| 1295 | ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no |
| 1296 | ) |
| 1297 | ) |
| 1298 | if test "$wine_cv_sys_statfs_has_statfs" = "yes" |
| 1299 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1300 | AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS, 1, |
| 1301 | [Define if the struct statfs is defined by <sys/statfs.h>]) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1302 | fi |
| 1303 | fi |
| 1304 | |
| 1305 | if test "$ac_cv_header_sys_mount_h" = "yes" |
| 1306 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1307 | AC_CACHE_CHECK( [whether sys/mount.h defines statfs], |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1308 | wine_cv_sys_mount_has_statfs, |
| 1309 | AC_TRY_COMPILE([ |
| 1310 | #include <sys/types.h> |
| 1311 | #ifdef HAVE_SYS_PARAM_H |
| 1312 | # include <sys/param.h> |
| 1313 | #endif |
| 1314 | #include <sys/mount.h> |
| 1315 | ],[ |
| 1316 | struct statfs stfs; |
| 1317 | ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no |
| 1318 | ) |
| 1319 | ) |
| 1320 | if test "$wine_cv_sys_mount_has_statfs" = "yes" |
| 1321 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1322 | AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT, 1, |
| 1323 | [Define if the struct statfs is defined by <sys/mount.h>]) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1324 | fi |
| 1325 | fi |
| 1326 | |
| 1327 | dnl **** FIXME: what about mixed cases, where we need two of them? *** |
| 1328 | |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 1329 | dnl Check for statfs members |
Alexandre Julliard | b859a68 | 2004-03-07 03:16:43 +0000 | [diff] [blame] | 1330 | 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] | 1331 | [#include <sys/types.h> |
| 1332 | #ifdef HAVE_SYS_PARAM_H |
| 1333 | # include <sys/param.h> |
| 1334 | #endif |
| 1335 | #ifdef STATFS_DEFINED_BY_SYS_MOUNT |
| 1336 | # include <sys/mount.h> |
| 1337 | #else |
| 1338 | # ifdef STATFS_DEFINED_BY_SYS_VFS |
| 1339 | # include <sys/vfs.h> |
| 1340 | # else |
| 1341 | # ifdef STATFS_DEFINED_BY_SYS_STATFS |
| 1342 | # include <sys/statfs.h> |
| 1343 | # endif |
| 1344 | # endif |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 1345 | #endif]) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1346 | |
Alexandre Julliard | 13af489 | 2004-03-05 21:03:46 +0000 | [diff] [blame] | 1347 | AC_CHECK_MEMBERS([struct statvfs.f_blocks],,, |
| 1348 | [#ifdef HAVE_SYS_STATVFS_H |
| 1349 | #include <sys/statvfs.h> |
| 1350 | #endif]) |
| 1351 | |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 1352 | dnl Check for socket structure members |
| 1353 | 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] | 1354 | [#include <sys/types.h> |
Patrik Stridvall | 63ae7fe | 2002-11-08 19:34:52 +0000 | [diff] [blame] | 1355 | #ifdef HAVE_SYS_SOCKET_H |
| 1356 | # include <sys/socket.h> |
| 1357 | #endif |
| 1358 | #ifdef HAVE_SYS_UN_H |
| 1359 | # include <sys/un.h> |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 1360 | #endif]) |
| 1361 | |
Dmitry Timoshkov | ea64a36 | 2005-06-27 12:07:49 +0000 | [diff] [blame] | 1362 | dnl Check for scsireq_t and sg_io_hdr_t members |
| 1363 | AC_CHECK_MEMBERS([scsireq_t.cmd, sg_io_hdr_t.interface_id],,, |
| 1364 | [#include <sys/types.h> |
| 1365 | #ifdef HAVE_SCSI_SG_H |
| 1366 | #include <scsi/sg.h> |
| 1367 | #endif]) |
| 1368 | |
Alexandre Julliard | 5537dbb | 2003-03-28 00:36:12 +0000 | [diff] [blame] | 1369 | dnl Check for siginfo_t members |
| 1370 | AC_CHECK_MEMBERS([siginfo_t.si_fd],,,[#include <signal.h>]) |
Juergen Lock | 2d33ab9 | 2000-02-13 16:03:29 +0000 | [diff] [blame] | 1371 | |
Alexandre Julliard | db89a54 | 2003-04-20 02:56:14 +0000 | [diff] [blame] | 1372 | dnl Check for struct option |
| 1373 | AC_CHECK_MEMBERS([struct option.name],,, |
| 1374 | [#ifdef HAVE_GETOPT_H |
| 1375 | #include <getopt.h> |
| 1376 | #endif]) |
| 1377 | |
Pavel Roskin | d650719 | 2003-10-03 03:28:40 +0000 | [diff] [blame] | 1378 | dnl Check for stat.st_blocks |
| 1379 | AC_CHECK_MEMBERS([struct stat.st_blocks]) |
| 1380 | |
Phil Krylov | 6618b03 | 2005-05-24 11:52:46 +0000 | [diff] [blame] | 1381 | dnl Check for the external timezone variables timezone and daylight |
| 1382 | AC_CACHE_CHECK([for timezone variable], ac_cv_have_timezone, |
| 1383 | AC_TRY_LINK([#include <time.h>],[timezone;], |
| 1384 | ac_cv_have_timezone="yes", ac_cv_have_timezone="no")) |
| 1385 | if test "$ac_cv_have_timezone" = "yes" |
| 1386 | then |
| 1387 | AC_DEFINE(HAVE_TIMEZONE, 1, [Define if you have the timezone variable]) |
| 1388 | fi |
| 1389 | AC_CACHE_CHECK([for daylight variable], ac_cv_have_daylight, |
| 1390 | AC_TRY_LINK([#include <time.h>],[daylight;], |
| 1391 | ac_cv_have_daylight="yes", ac_cv_have_daylight="no")) |
| 1392 | if test "$ac_cv_have_daylight" = "yes" |
| 1393 | then |
| 1394 | AC_DEFINE(HAVE_DAYLIGHT, 1, [Define if you have the daylight variable]) |
| 1395 | fi |
| 1396 | |
Alexandre Julliard | 05783b5 | 2002-12-11 00:21:55 +0000 | [diff] [blame] | 1397 | dnl *** check for the need to define platform-specific symbols |
Alexandre Julliard | 51d46ba | 1999-05-08 16:05:27 +0000 | [diff] [blame] | 1398 | |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 1399 | case $host_cpu in |
Alexandre Julliard | 05783b5 | 2002-12-11 00:21:55 +0000 | [diff] [blame] | 1400 | *i[[3456789]]86*) WINE_CHECK_DEFINE([__i386__]) ;; |
| 1401 | *alpha*) WINE_CHECK_DEFINE([__ALPHA__]) ;; |
| 1402 | *sparc*) WINE_CHECK_DEFINE([__sparc__]) ;; |
Pierre d'Herbemont | b64b7de | 2003-07-16 23:37:22 +0000 | [diff] [blame] | 1403 | *powerpc*) WINE_CHECK_DEFINE([__powerpc__]) ;; |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1404 | esac |
Gregg Mattinson | 57807fa | 2002-07-20 20:17:13 +0000 | [diff] [blame] | 1405 | |
| 1406 | case $host_vendor in |
Alexandre Julliard | 05783b5 | 2002-12-11 00:21:55 +0000 | [diff] [blame] | 1407 | *sun*) WINE_CHECK_DEFINE([__sun__]) ;; |
Gregg Mattinson | 57807fa | 2002-07-20 20:17:13 +0000 | [diff] [blame] | 1408 | esac |
Gregg Mattinson | 57807fa | 2002-07-20 20:17:13 +0000 | [diff] [blame] | 1409 | |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1410 | dnl **** Generate output files **** |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1411 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1412 | AH_TOP([#define __WINE_CONFIG_H]) |
| 1413 | |
Alexandre Julliard | 8911856 | 2002-03-27 21:13:40 +0000 | [diff] [blame] | 1414 | WINE_CONFIG_EXTRA_DIR(dlls/gdi/enhmfdrv) |
| 1415 | WINE_CONFIG_EXTRA_DIR(dlls/gdi/mfdrv) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1416 | WINE_CONFIG_EXTRA_DIR(dlls/kernel/messages) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1417 | WINE_CONFIG_EXTRA_DIR(dlls/user/resources) |
| 1418 | WINE_CONFIG_EXTRA_DIR(dlls/wineps/data) |
| 1419 | WINE_CONFIG_EXTRA_DIR(include/wine) |
| 1420 | |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1421 | MAKE_RULES=Make.rules |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 1422 | AC_SUBST_FILE(MAKE_RULES) |
| 1423 | |
Alexandre Julliard | d0edc5f | 2000-03-04 22:31:27 +0000 | [diff] [blame] | 1424 | MAKE_DLL_RULES=dlls/Makedll.rules |
| 1425 | AC_SUBST_FILE(MAKE_DLL_RULES) |
| 1426 | |
Alexandre Julliard | edeee89 | 2002-08-09 01:22:40 +0000 | [diff] [blame] | 1427 | MAKE_TEST_RULES=dlls/Maketest.rules |
| 1428 | AC_SUBST_FILE(MAKE_TEST_RULES) |
| 1429 | |
Alexandre Julliard | 117436e | 2003-05-01 00:39:29 +0000 | [diff] [blame] | 1430 | MAKE_LIB_RULES=libs/Makelib.rules |
| 1431 | AC_SUBST_FILE(MAKE_LIB_RULES) |
| 1432 | |
Alexandre Julliard | 626f425 | 2000-11-10 23:35:20 +0000 | [diff] [blame] | 1433 | MAKE_PROG_RULES=programs/Makeprog.rules |
| 1434 | AC_SUBST_FILE(MAKE_PROG_RULES) |
| 1435 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1436 | AC_CONFIG_FILES([ |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1437 | Make.rules |
Alexandre Julliard | 626f425 | 2000-11-10 23:35:20 +0000 | [diff] [blame] | 1438 | dlls/Makedll.rules |
Alexandre Julliard | edeee89 | 2002-08-09 01:22:40 +0000 | [diff] [blame] | 1439 | dlls/Maketest.rules |
Alexandre Julliard | 117436e | 2003-05-01 00:39:29 +0000 | [diff] [blame] | 1440 | libs/Makelib.rules |
Alexandre Julliard | 626f425 | 2000-11-10 23:35:20 +0000 | [diff] [blame] | 1441 | programs/Makeprog.rules |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1442 | Makefile |
Alexandre Julliard | 85ed45e | 1998-08-22 19:03:56 +0000 | [diff] [blame] | 1443 | dlls/Makefile |
Detlef Riekenberg | 2905663 | 2005-06-13 11:47:46 +0000 | [diff] [blame] | 1444 | dlls/activeds/Makefile |
Juergen Schmied | f7b0de3 | 1999-01-03 12:48:29 +0000 | [diff] [blame] | 1445 | dlls/advapi32/Makefile |
Alexandre Julliard | edeee89 | 2002-08-09 01:22:40 +0000 | [diff] [blame] | 1446 | dlls/advapi32/tests/Makefile |
Huw Davies | 20313b8 | 2004-09-27 20:39:40 +0000 | [diff] [blame] | 1447 | dlls/advpack/Makefile |
Robert Reif | 9719982 | 2005-01-20 20:03:13 +0000 | [diff] [blame] | 1448 | dlls/advpack/tests/Makefile |
Christian Costa | 76b7787 | 2004-03-09 01:29:56 +0000 | [diff] [blame] | 1449 | dlls/amstream/Makefile |
Aric Stewart | 4bd374f | 2004-07-06 21:01:18 +0000 | [diff] [blame] | 1450 | dlls/atl/Makefile |
Hidenori Takeshima | 1c53a7f | 2001-11-06 00:41:05 +0000 | [diff] [blame] | 1451 | dlls/avicap32/Makefile |
Marcus Meissner | b3d1a22 | 1999-03-13 18:07:44 +0000 | [diff] [blame] | 1452 | dlls/avifil32/Makefile |
Patrik Stridvall | d1447fa | 2002-11-19 00:47:12 +0000 | [diff] [blame] | 1453 | dlls/cabinet/Makefile |
Alexandre Julliard | 00fdd9f | 2003-11-06 00:26:43 +0000 | [diff] [blame] | 1454 | dlls/capi2032/Makefile |
Sami Nopanen | 9063cef | 2004-03-15 20:26:42 +0000 | [diff] [blame] | 1455 | dlls/cards/Makefile |
Mike McCormack | b107b92 | 2003-10-31 03:38:07 +0000 | [diff] [blame] | 1456 | dlls/cfgmgr32/Makefile |
John K. Hohm | 34909c2 | 2002-05-14 21:50:56 +0000 | [diff] [blame] | 1457 | dlls/comcat/Makefile |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1458 | dlls/comctl32/Makefile |
Uwe Bonnes | 2c4fd42 | 2003-05-15 23:58:48 +0000 | [diff] [blame] | 1459 | dlls/comctl32/tests/Makefile |
Klaas van Gend | c912749 | 1999-02-28 20:05:11 +0000 | [diff] [blame] | 1460 | dlls/commdlg/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1461 | dlls/crtdll/Makefile |
Travis Michielsen | 0f21ee8 | 2002-01-10 19:41:11 +0000 | [diff] [blame] | 1462 | dlls/crypt32/Makefile |
Kees Cook | 255541a | 2005-05-24 09:58:26 +0000 | [diff] [blame] | 1463 | dlls/crypt32/tests/Makefile |
Ulrich Czekalla | c173f6a | 2005-01-24 19:07:16 +0000 | [diff] [blame] | 1464 | dlls/cryptdll/Makefile |
Dmitry Timoshkov | 5a23a00 | 2003-01-02 19:34:14 +0000 | [diff] [blame] | 1465 | dlls/ctl3d/Makefile |
Sylvain Petreolle | 3a99d8b | 2002-06-25 23:23:03 +0000 | [diff] [blame] | 1466 | dlls/d3d8/Makefile |
Alexandre Julliard | aa1bdc4 | 2003-07-01 01:11:13 +0000 | [diff] [blame] | 1467 | dlls/d3d9/Makefile |
Enrico Horn | eaae705 | 2003-01-24 01:08:15 +0000 | [diff] [blame] | 1468 | dlls/d3dim/Makefile |
Ivan Leo Murray-Smith | 8f14eb0 | 2004-05-18 00:54:12 +0000 | [diff] [blame] | 1469 | dlls/d3drm/Makefile |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 1470 | dlls/d3dx8/Makefile |
Christian Costa | 7590fe5 | 2004-06-03 00:03:23 +0000 | [diff] [blame] | 1471 | dlls/d3dxof/Makefile |
Eric Pouech | 800864a | 2004-04-05 22:21:27 +0000 | [diff] [blame] | 1472 | dlls/dbghelp/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1473 | dlls/dciman32/Makefile |
Alexandre Julliard | ddce652 | 2000-03-17 16:58:10 +0000 | [diff] [blame] | 1474 | dlls/ddraw/Makefile |
Sami Aario | f22a472 | 2003-11-18 00:12:00 +0000 | [diff] [blame] | 1475 | dlls/ddraw/tests/Makefile |
Hidenori Takeshima | b4be998 | 2001-10-23 20:35:23 +0000 | [diff] [blame] | 1476 | dlls/devenum/Makefile |
Alexandre Julliard | ddce652 | 2000-03-17 16:58:10 +0000 | [diff] [blame] | 1477 | dlls/dinput/Makefile |
Robert Reif | 8bffed5 | 2005-05-11 12:05:17 +0000 | [diff] [blame] | 1478 | dlls/dinput/tests/Makefile |
Ove Kaaven | d2d08f0 | 2002-06-14 00:39:44 +0000 | [diff] [blame] | 1479 | dlls/dinput8/Makefile |
Rok Mandeljc | 3dec4c5 | 2003-04-08 03:56:04 +0000 | [diff] [blame] | 1480 | dlls/dmband/Makefile |
| 1481 | dlls/dmcompos/Makefile |
| 1482 | dlls/dmime/Makefile |
| 1483 | dlls/dmloader/Makefile |
| 1484 | dlls/dmscript/Makefile |
| 1485 | dlls/dmstyle/Makefile |
| 1486 | dlls/dmsynth/Makefile |
Rok Mandeljc | 2d04be7 | 2003-03-21 00:42:38 +0000 | [diff] [blame] | 1487 | dlls/dmusic/Makefile |
Rok Mandeljc | 3dec4c5 | 2003-04-08 03:56:04 +0000 | [diff] [blame] | 1488 | dlls/dmusic32/Makefile |
Alexandre Julliard | c607532 | 2000-07-09 11:19:35 +0000 | [diff] [blame] | 1489 | dlls/dplay/Makefile |
Peter Hunnisett | 22b861c | 1999-09-28 16:35:32 +0000 | [diff] [blame] | 1490 | dlls/dplayx/Makefile |
Raphael Junqueira | 5f3f214 | 2004-04-07 20:39:00 +0000 | [diff] [blame] | 1491 | dlls/dpnet/Makefile |
Rok Mandeljc | 3dec4c5 | 2003-04-08 03:56:04 +0000 | [diff] [blame] | 1492 | dlls/dpnhpast/Makefile |
Eric Pouech | 68944c2 | 1999-10-24 18:42:42 +0000 | [diff] [blame] | 1493 | dlls/dsound/Makefile |
Francois Gouget | d523a45 | 2002-12-05 19:19:41 +0000 | [diff] [blame] | 1494 | dlls/dsound/tests/Makefile |
Rok Mandeljc | 0382ea1 | 2004-01-20 00:21:40 +0000 | [diff] [blame] | 1495 | dlls/dswave/Makefile |
Raphael Junqueira | 033ae92 | 2004-04-16 00:26:14 +0000 | [diff] [blame] | 1496 | dlls/dxdiagn/Makefile |
Robert Reif | cc02d95 | 2004-03-09 23:25:57 +0000 | [diff] [blame] | 1497 | dlls/dxerr8/Makefile |
| 1498 | dlls/dxerr9/Makefile |
Alexandre Julliard | c3eac43 | 2004-01-26 21:29:05 +0000 | [diff] [blame] | 1499 | dlls/dxguid/Makefile |
Alexandre Julliard | 1dac57f | 2000-03-19 12:08:09 +0000 | [diff] [blame] | 1500 | dlls/gdi/Makefile |
Patrik Stridvall | 928ecb4 | 2002-10-02 19:58:27 +0000 | [diff] [blame] | 1501 | dlls/gdi/tests/Makefile |
Marcus Meissner | b63ab44 | 2001-06-08 19:02:57 +0000 | [diff] [blame] | 1502 | dlls/glu32/Makefile |
Jacek Caban | ef799c4 | 2003-12-02 04:11:09 +0000 | [diff] [blame] | 1503 | dlls/glut32/Makefile |
Krzysztof Foltman | 9bca690 | 2004-04-22 03:45:00 +0000 | [diff] [blame] | 1504 | dlls/hhctrl.ocx/Makefile |
Alexandre Julliard | 0a106bf | 2004-01-15 04:56:18 +0000 | [diff] [blame] | 1505 | dlls/iccvid/Makefile |
Francois Gouget | edf3e43 | 1999-11-07 21:22:17 +0000 | [diff] [blame] | 1506 | dlls/icmp/Makefile |
Alexandre Julliard | a21cf07 | 2004-02-20 01:18:43 +0000 | [diff] [blame] | 1507 | dlls/ifsmgr.vxd/Makefile |
Patrik Stridvall | 8295c86 | 1998-10-11 17:09:05 +0000 | [diff] [blame] | 1508 | dlls/imagehlp/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1509 | dlls/imm32/Makefile |
Juan Lang | 38fa5ad | 2003-05-13 03:32:20 +0000 | [diff] [blame] | 1510 | dlls/iphlpapi/Makefile |
Juan Lang | e6f491a | 2004-01-07 01:08:55 +0000 | [diff] [blame] | 1511 | dlls/iphlpapi/tests/Makefile |
Alexandre Julliard | 5f6e3c8 | 2004-08-24 21:00:15 +0000 | [diff] [blame] | 1512 | dlls/itss/Makefile |
Dimitrie O. Paun | 36b5b6b | 2000-06-03 00:07:44 +0000 | [diff] [blame] | 1513 | dlls/kernel/Makefile |
Alexandre Julliard | edeee89 | 2002-08-09 01:22:40 +0000 | [diff] [blame] | 1514 | dlls/kernel/tests/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1515 | dlls/lzexpand/Makefile |
Evan G. Parry | d23f5ef | 2004-11-21 16:05:14 +0000 | [diff] [blame] | 1516 | dlls/lzexpand/tests/Makefile |
Hidenori Takeshima | 1a8b339 | 2001-09-14 21:36:30 +0000 | [diff] [blame] | 1517 | dlls/mapi32/Makefile |
Jon Griffiths | 4ec0d3b | 2004-04-23 23:30:00 +0000 | [diff] [blame] | 1518 | dlls/mapi32/tests/Makefile |
Rémi Assailly | f9f5eaa | 2005-07-21 11:31:56 +0000 | [diff] [blame] | 1519 | dlls/midimap/Makefile |
Alexandre Julliard | 94a9d33 | 2004-08-04 18:33:06 +0000 | [diff] [blame] | 1520 | dlls/mlang/Makefile |
| 1521 | dlls/mlang/tests/Makefile |
Alexandre Julliard | a21cf07 | 2004-02-20 01:18:43 +0000 | [diff] [blame] | 1522 | dlls/mmdevldr.vxd/Makefile |
| 1523 | dlls/monodebg.vxd/Makefile |
Ulrich Weigand | bb1984e | 1999-08-07 14:32:33 +0000 | [diff] [blame] | 1524 | dlls/mpr/Makefile |
Patrik Stridvall | 8295c86 | 1998-10-11 17:09:05 +0000 | [diff] [blame] | 1525 | dlls/msacm/Makefile |
Hidenori Takeshima | 0307f6d | 2002-03-23 20:18:11 +0000 | [diff] [blame] | 1526 | dlls/msacm/imaadp32/Makefile |
Eric Pouech | bed67fc | 2002-05-22 02:00:05 +0000 | [diff] [blame] | 1527 | dlls/msacm/msadp32/Makefile |
Hidenori Takeshima | bcb9c46 | 2002-03-22 19:16:10 +0000 | [diff] [blame] | 1528 | dlls/msacm/msg711/Makefile |
Eric Pouech | b706b23 | 2002-06-04 17:53:46 +0000 | [diff] [blame] | 1529 | dlls/msacm/winemp3/Makefile |
Robert Reif | 00cd2b2 | 2004-05-03 20:17:43 +0000 | [diff] [blame] | 1530 | dlls/msacm/tests/Makefile |
Hans Leidekker | 5164757 | 2004-09-22 04:08:38 +0000 | [diff] [blame] | 1531 | dlls/mscms/Makefile |
Hans Leidekker | 081b250 | 2004-10-07 19:12:41 +0000 | [diff] [blame] | 1532 | dlls/mscms/tests/Makefile |
Hidenori Takeshima | b4be998 | 2001-10-23 20:35:23 +0000 | [diff] [blame] | 1533 | dlls/msdmo/Makefile |
Mike McCormack | aa1c2a3 | 2003-09-08 19:32:14 +0000 | [diff] [blame] | 1534 | dlls/mshtml/Makefile |
Jacek Caban | 51bb3f6 | 2005-06-27 11:19:49 +0000 | [diff] [blame] | 1535 | dlls/mshtml/tests/Makefile |
Mike McCormack | 6386edc | 2003-08-13 01:27:48 +0000 | [diff] [blame] | 1536 | dlls/msi/Makefile |
Mike McCormack | 23b291a | 2005-01-05 13:26:34 +0000 | [diff] [blame] | 1537 | dlls/msi/tests/Makefile |
Hidenori Takeshima | 1a8b339 | 2001-09-14 21:36:30 +0000 | [diff] [blame] | 1538 | dlls/msimg32/Makefile |
Mike McCormack | f6be044 | 2002-04-08 23:56:14 +0000 | [diff] [blame] | 1539 | dlls/msisys/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1540 | dlls/msnet32/Makefile |
Alexandre Julliard | 7ba8fba | 2004-02-27 21:51:12 +0000 | [diff] [blame] | 1541 | dlls/msrle32/Makefile |
Jon Griffiths | 1db20bf | 2001-01-10 23:59:25 +0000 | [diff] [blame] | 1542 | dlls/msvcrt/Makefile |
Uwe Bonnes | a768fa3 | 2002-10-30 23:49:03 +0000 | [diff] [blame] | 1543 | dlls/msvcrt/tests/Makefile |
Aric Stewart | c2a5ebc | 2002-01-29 18:09:46 +0000 | [diff] [blame] | 1544 | dlls/msvcrt20/Makefile |
Mike McCormack | d077946 | 2004-01-12 22:12:27 +0000 | [diff] [blame] | 1545 | dlls/msvcrt40/Makefile |
Adam Gundy | 19a1513 | 2003-04-04 19:37:57 +0000 | [diff] [blame] | 1546 | dlls/msvcrtd/Makefile |
Patrik Stridvall | 5c4420f | 2004-05-18 01:05:36 +0000 | [diff] [blame] | 1547 | dlls/msvcrtd/tests/Makefile |
Mike McCormack | 4cc64c8 | 2004-01-23 05:00:37 +0000 | [diff] [blame] | 1548 | dlls/msvidc32/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1549 | dlls/msvideo/Makefile |
André Johansen | 2123c13 | 2003-08-02 00:52:02 +0000 | [diff] [blame] | 1550 | dlls/mswsock/Makefile |
Mike McCormack | dcc2d6c | 2005-08-02 11:29:04 +0000 | [diff] [blame] | 1551 | dlls/msxml3/Makefile |
Mike McCormack | 2e40b96 | 2001-11-06 17:52:36 +0000 | [diff] [blame] | 1552 | dlls/netapi32/Makefile |
Andriy Palamarchuk | b812c90 | 2002-09-11 02:35:17 +0000 | [diff] [blame] | 1553 | dlls/netapi32/tests/Makefile |
Ulrich Czekalla | 9655a5f | 2003-12-30 22:19:30 +0000 | [diff] [blame] | 1554 | dlls/newdev/Makefile |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 1555 | dlls/ntdll/Makefile |
Jon Griffiths | 1da2971 | 2002-08-15 22:08:40 +0000 | [diff] [blame] | 1556 | dlls/ntdll/tests/Makefile |
Thomas Weidenmueller | 96e052b | 2005-07-26 11:30:42 +0000 | [diff] [blame] | 1557 | dlls/objsel/Makefile |
Alexandre Julliard | 8551f8c | 1999-12-11 23:56:46 +0000 | [diff] [blame] | 1558 | dlls/odbc32/Makefile |
Mike McCormack | b5c63ed | 2005-05-16 19:42:47 +0000 | [diff] [blame] | 1559 | dlls/odbccp32/Makefile |
Ulrich Weigand | 2a722f4 | 1999-09-19 18:36:53 +0000 | [diff] [blame] | 1560 | dlls/ole32/Makefile |
Mike McCormack | 06b8046 | 2004-08-11 00:17:52 +0000 | [diff] [blame] | 1561 | dlls/ole32/tests/Makefile |
Eric Pouech | 5caccaf | 2003-06-23 03:43:00 +0000 | [diff] [blame] | 1562 | dlls/oleacc/Makefile |
Ulrich Weigand | 2a722f4 | 1999-09-19 18:36:53 +0000 | [diff] [blame] | 1563 | dlls/oleaut32/Makefile |
Alexandre Julliard | edeee89 | 2002-08-09 01:22:40 +0000 | [diff] [blame] | 1564 | dlls/oleaut32/tests/Makefile |
Ulrich Weigand | 2a722f4 | 1999-09-19 18:36:53 +0000 | [diff] [blame] | 1565 | dlls/olecli/Makefile |
| 1566 | dlls/oledlg/Makefile |
Sean Langley | 58c71d4 | 2000-02-07 16:26:56 +0000 | [diff] [blame] | 1567 | dlls/olepro32/Makefile |
Ulrich Weigand | 2a722f4 | 1999-09-19 18:36:53 +0000 | [diff] [blame] | 1568 | dlls/olesvr/Makefile |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 1569 | dlls/opengl32/Makefile |
Benjamin Cutler | 250a8ae | 2005-04-20 19:15:31 +0000 | [diff] [blame] | 1570 | dlls/powrprof/Makefile |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1571 | dlls/psapi/Makefile |
Stefan Leichter | 0d4fff4 | 2004-06-15 20:23:47 +0000 | [diff] [blame] | 1572 | dlls/psapi/tests/Makefile |
Hidenori Takeshima | b4be998 | 2001-10-23 20:35:23 +0000 | [diff] [blame] | 1573 | dlls/qcap/Makefile |
Hidenori Takeshima | b7d4b4e | 2001-07-02 18:57:22 +0000 | [diff] [blame] | 1574 | dlls/quartz/Makefile |
Christian Costa | e3a288f | 2004-08-16 21:14:28 +0000 | [diff] [blame] | 1575 | dlls/quartz/tests/Makefile |
Marcus Meissner | 30ef877 | 1998-12-11 13:26:26 +0000 | [diff] [blame] | 1576 | dlls/rasapi32/Makefile |
Krzysztof Foltman | d488f3f | 2005-03-05 11:19:14 +0000 | [diff] [blame] | 1577 | dlls/riched20/Makefile |
Hidenori Takeshima | e75f9fb | 2000-05-03 18:12:19 +0000 | [diff] [blame] | 1578 | dlls/richedit/Makefile |
Huw D M Davies | 10b1b23 | 2000-07-15 19:53:50 +0000 | [diff] [blame] | 1579 | dlls/rpcrt4/Makefile |
Greg Turner | ac89cc2 | 2002-10-07 21:54:07 +0000 | [diff] [blame] | 1580 | dlls/rpcrt4/tests/Makefile |
Mike McCormack | b6de304 | 2004-02-13 20:47:07 +0000 | [diff] [blame] | 1581 | dlls/rsabase/Makefile |
Michael Jung | b4b0c24 | 2004-07-30 00:06:54 +0000 | [diff] [blame] | 1582 | dlls/rsabase/tests/Makefile |
Michael Jung | 64dce8a | 2004-11-04 21:15:32 +0000 | [diff] [blame] | 1583 | dlls/rsaenh/Makefile |
| 1584 | dlls/rsaenh/tests/Makefile |
Juan Lang | 3ed89c3 | 2004-03-02 04:57:35 +0000 | [diff] [blame] | 1585 | dlls/secur32/Makefile |
Kai Blin | 84fb791 | 2005-08-03 13:08:49 +0000 | [diff] [blame] | 1586 | dlls/secur32/tests/Makefile |
Steven Edwards | 160e647 | 2005-01-28 11:41:23 +0000 | [diff] [blame] | 1587 | dlls/sensapi/Makefile |
Mike McCormack | dc2461e | 2000-07-15 21:35:55 +0000 | [diff] [blame] | 1588 | dlls/serialui/Makefile |
Francois Jacques | df5e579 | 2000-07-08 18:27:03 +0000 | [diff] [blame] | 1589 | dlls/setupapi/Makefile |
John R. Sheets | bc80a3b | 2001-01-11 22:32:44 +0000 | [diff] [blame] | 1590 | dlls/shdocvw/Makefile |
Alexandre Julliard | 85ed45e | 1998-08-22 19:03:56 +0000 | [diff] [blame] | 1591 | dlls/shell32/Makefile |
Andriy Palamarchuk | 5b5bea0 | 2002-08-27 01:34:33 +0000 | [diff] [blame] | 1592 | dlls/shell32/tests/Makefile |
Alexandre Julliard | c607532 | 2000-07-09 11:19:35 +0000 | [diff] [blame] | 1593 | dlls/shfolder/Makefile |
| 1594 | dlls/shlwapi/Makefile |
Alexandre Julliard | edeee89 | 2002-08-09 01:22:40 +0000 | [diff] [blame] | 1595 | dlls/shlwapi/tests/Makefile |
Patrik Stridvall | 4c692b9 | 2002-04-29 18:43:35 +0000 | [diff] [blame] | 1596 | dlls/snmpapi/Makefile |
Huw Davies | a30c1b9 | 2005-07-20 17:52:04 +0000 | [diff] [blame] | 1597 | dlls/stdole2.tlb/Makefile |
Huw Davies | 4046846 | 2005-01-28 14:13:08 +0000 | [diff] [blame] | 1598 | dlls/stdole32.tlb/Makefile |
Hidenori Takeshima | 1a8b339 | 2001-09-14 21:36:30 +0000 | [diff] [blame] | 1599 | dlls/sti/Makefile |
Francois Gouget | a896389 | 2004-08-19 19:31:20 +0000 | [diff] [blame] | 1600 | dlls/strmiids/Makefile |
Andreas Mohr | 5aa96c1 | 1999-03-14 12:34:25 +0000 | [diff] [blame] | 1601 | dlls/tapi32/Makefile |
Alexandre Julliard | 1dac57f | 2000-03-19 12:08:09 +0000 | [diff] [blame] | 1602 | dlls/ttydrv/Makefile |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 1603 | dlls/twain/Makefile |
Alexandre Julliard | 46321f4 | 2003-11-27 01:10:26 +0000 | [diff] [blame] | 1604 | dlls/unicows/Makefile |
Hidenori Takeshima | 1a8b339 | 2001-09-14 21:36:30 +0000 | [diff] [blame] | 1605 | dlls/url/Makefile |
Alexandre Julliard | 819fa8c | 2000-04-11 20:07:00 +0000 | [diff] [blame] | 1606 | dlls/urlmon/Makefile |
Patrik Stridvall | 9398d9c | 2002-11-12 01:13:10 +0000 | [diff] [blame] | 1607 | dlls/urlmon/tests/Makefile |
Alexandre Julliard | 1dac57f | 2000-03-19 12:08:09 +0000 | [diff] [blame] | 1608 | dlls/user/Makefile |
Alexandre Julliard | edeee89 | 2002-08-09 01:22:40 +0000 | [diff] [blame] | 1609 | dlls/user/tests/Makefile |
Steven Edwards | 54508df | 2005-07-27 11:02:52 +0000 | [diff] [blame] | 1610 | dlls/usp10/Makefile |
Alexandre Julliard | c3eac43 | 2004-01-26 21:29:05 +0000 | [diff] [blame] | 1611 | dlls/uuid/Makefile |
Kevin Koltzau | 0af4fb9 | 2003-10-04 03:48:11 +0000 | [diff] [blame] | 1612 | dlls/uxtheme/Makefile |
Alexandre Julliard | a21cf07 | 2004-02-20 01:18:43 +0000 | [diff] [blame] | 1613 | dlls/vdhcp.vxd/Makefile |
Sami Aario | 78f1224 | 2004-04-07 19:41:21 +0000 | [diff] [blame] | 1614 | dlls/vdmdbg/Makefile |
Ulrich Weigand | d43a46a | 1999-01-31 10:11:04 +0000 | [diff] [blame] | 1615 | dlls/version/Makefile |
Stefan Leichter | 09733db | 2004-04-05 22:54:03 +0000 | [diff] [blame] | 1616 | dlls/version/tests/Makefile |
Alexandre Julliard | 6c8147b | 2004-02-21 04:13:56 +0000 | [diff] [blame] | 1617 | dlls/vmm.vxd/Makefile |
Juan Lang | e9ed2f3 | 2004-03-01 23:35:25 +0000 | [diff] [blame] | 1618 | dlls/vnbt.vxd/Makefile |
Alexandre Julliard | a21cf07 | 2004-02-20 01:18:43 +0000 | [diff] [blame] | 1619 | dlls/vnetbios.vxd/Makefile |
| 1620 | dlls/vtdapi.vxd/Makefile |
| 1621 | dlls/vwin32.vxd/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1622 | dlls/win32s/Makefile |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1623 | dlls/winaspi/Makefile |
Alexandre Julliard | c3eac43 | 2004-01-26 21:29:05 +0000 | [diff] [blame] | 1624 | dlls/wined3d/Makefile |
Ove Kaaven | e5557b3 | 2000-12-26 00:22:45 +0000 | [diff] [blame] | 1625 | dlls/winedos/Makefile |
Dimitrie O. Paun | 84bde6a | 2000-05-30 20:27:23 +0000 | [diff] [blame] | 1626 | dlls/wineps/Makefile |
Alexandre Julliard | 819fa8c | 2000-04-11 20:07:00 +0000 | [diff] [blame] | 1627 | dlls/wininet/Makefile |
Alexandre Julliard | edeee89 | 2002-08-09 01:22:40 +0000 | [diff] [blame] | 1628 | dlls/wininet/tests/Makefile |
Eric Pouech | 68944c2 | 1999-10-24 18:42:42 +0000 | [diff] [blame] | 1629 | dlls/winmm/Makefile |
Eric Pouech | 2a3b0a1 | 2000-02-26 13:14:04 +0000 | [diff] [blame] | 1630 | dlls/winmm/joystick/Makefile |
Eric Pouech | 68944c2 | 1999-10-24 18:42:42 +0000 | [diff] [blame] | 1631 | dlls/winmm/mcianim/Makefile |
| 1632 | dlls/winmm/mciavi/Makefile |
Rémi Assailly | dbbd0d5 | 2005-07-27 15:42:40 +0000 | [diff] [blame] | 1633 | dlls/mcicda/Makefile |
Eric Pouech | 68944c2 | 1999-10-24 18:42:42 +0000 | [diff] [blame] | 1634 | dlls/winmm/mciseq/Makefile |
| 1635 | dlls/winmm/mciwave/Makefile |
Francois Gouget | 4ce2837 | 2002-11-04 23:47:49 +0000 | [diff] [blame] | 1636 | dlls/winmm/tests/Makefile |
Eric Pouech | abe7227 | 1999-10-31 02:23:49 +0000 | [diff] [blame] | 1637 | dlls/winmm/wavemap/Makefile |
Eric Pouech | a120ce0 | 2002-06-28 17:40:16 +0000 | [diff] [blame] | 1638 | dlls/winmm/winealsa/Makefile |
Chris Morgan | 9b0ba7c | 2002-03-21 01:38:19 +0000 | [diff] [blame] | 1639 | dlls/winmm/winearts/Makefile |
Robert Lunnon | 2a91e3f | 2002-08-01 18:22:38 +0000 | [diff] [blame] | 1640 | dlls/winmm/wineaudioio/Makefile |
Peter Åstrand | 7a15eb9 | 2005-08-03 15:53:26 +0000 | [diff] [blame] | 1641 | dlls/winmm/wineesd/Makefile |
Chris Morgan | 4691b18 | 2002-12-13 02:26:18 +0000 | [diff] [blame] | 1642 | dlls/winmm/winejack/Makefile |
Alexandre Julliard | c3eac43 | 2004-01-26 21:29:05 +0000 | [diff] [blame] | 1643 | dlls/winmm/winenas/Makefile |
Eric Pouech | 68944c2 | 1999-10-24 18:42:42 +0000 | [diff] [blame] | 1644 | dlls/winmm/wineoss/Makefile |
Hidenori Takeshima | 9c67213 | 2000-12-14 21:56:18 +0000 | [diff] [blame] | 1645 | dlls/winnls/Makefile |
Alexandre Julliard | de07869 | 2000-01-23 22:07:15 +0000 | [diff] [blame] | 1646 | dlls/winsock/Makefile |
Alexandre Julliard | edeee89 | 2002-08-09 01:22:40 +0000 | [diff] [blame] | 1647 | dlls/winsock/tests/Makefile |
Huw D M Davies | e39b676 | 1999-05-17 16:20:51 +0000 | [diff] [blame] | 1648 | dlls/winspool/Makefile |
Stefan Leichter | 88b1106 | 2003-01-15 00:50:48 +0000 | [diff] [blame] | 1649 | dlls/winspool/tests/Makefile |
Patrik Stridvall | 5caddc7 | 2002-12-17 01:49:16 +0000 | [diff] [blame] | 1650 | dlls/wintab32/Makefile |
Rein Klazes | 2a4c68b | 2001-04-16 19:36:12 +0000 | [diff] [blame] | 1651 | dlls/wintrust/Makefile |
Hans Leidekker | 8d63dfb | 2005-07-13 11:56:15 +0000 | [diff] [blame] | 1652 | dlls/wldap32/Makefile |
Alexandre Julliard | c607532 | 2000-07-09 11:19:35 +0000 | [diff] [blame] | 1653 | dlls/wow32/Makefile |
| 1654 | dlls/wsock32/Makefile |
Ulrich Czekalla | 04f6346 | 2005-01-24 19:42:02 +0000 | [diff] [blame] | 1655 | dlls/wtsapi32/Makefile |
Alexandre Julliard | 1dac57f | 2000-03-19 12:08:09 +0000 | [diff] [blame] | 1656 | dlls/x11drv/Makefile |
Alexandre Julliard | d37eb36 | 1997-07-20 16:23:21 +0000 | [diff] [blame] | 1657 | documentation/Makefile |
Huw Davies | 00acb5f | 2004-08-17 22:33:14 +0000 | [diff] [blame] | 1658 | fonts/Makefile |
James Juran | c70dc83 | 1999-02-13 12:18:33 +0000 | [diff] [blame] | 1659 | include/Makefile |
Alexandre Julliard | 6a9fe36 | 2003-03-19 22:09:16 +0000 | [diff] [blame] | 1660 | libs/Makefile |
| 1661 | libs/port/Makefile |
Alexandre Julliard | 7ab9a71 | 2003-03-21 05:06:48 +0000 | [diff] [blame] | 1662 | libs/unicode/Makefile |
Alexandre Julliard | 2d1c790 | 2003-03-22 20:40:48 +0000 | [diff] [blame] | 1663 | libs/wine/Makefile |
Alexandre Julliard | e1a9b10 | 2003-05-01 03:16:21 +0000 | [diff] [blame] | 1664 | libs/wpp/Makefile |
Alexandre Julliard | 357c740 | 2003-11-06 01:17:56 +0000 | [diff] [blame] | 1665 | loader/Makefile |
Alexandre Julliard | 02ed4c2 | 1996-03-02 19:34:10 +0000 | [diff] [blame] | 1666 | programs/Makefile |
Andreas Mohr | 4eefb96 | 2000-08-01 00:27:35 +0000 | [diff] [blame] | 1667 | programs/avitools/Makefile |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 1668 | programs/clock/Makefile |
Eric Williams | 30008a0 | 1999-02-05 17:40:47 +0000 | [diff] [blame] | 1669 | programs/cmdlgtst/Makefile |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1670 | programs/control/Makefile |
Alexandre Julliard | acfda14 | 2002-05-20 19:18:16 +0000 | [diff] [blame] | 1671 | programs/expand/Makefile |
Jacek Caban | 8831329 | 2005-07-12 20:41:52 +0000 | [diff] [blame] | 1672 | programs/hh/Makefile |
Vincent Béron | 3496689 | 2004-07-19 19:44:07 +0000 | [diff] [blame] | 1673 | programs/msiexec/Makefile |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 1674 | programs/notepad/Makefile |
Alexandre Julliard | 02ed4c2 | 1996-03-02 19:34:10 +0000 | [diff] [blame] | 1675 | programs/progman/Makefile |
Andriy Palamarchuk | 4e2e176 | 2002-04-11 23:58:40 +0000 | [diff] [blame] | 1676 | programs/regedit/Makefile |
Andriy Palamarchuk | 2f0d85c | 2002-04-29 23:47:39 +0000 | [diff] [blame] | 1677 | programs/regsvr32/Makefile |
Alexandre Julliard | d77294a | 2002-12-02 21:17:04 +0000 | [diff] [blame] | 1678 | programs/rpcss/Makefile |
Alberto Massari | 15e8e0a | 2002-11-15 01:41:20 +0000 | [diff] [blame] | 1679 | programs/rundll32/Makefile |
Dan Kegel | ba02ae4 | 2003-01-21 20:14:36 +0000 | [diff] [blame] | 1680 | programs/start/Makefile |
Eric Pouech | d6b348f | 2004-03-23 01:19:54 +0000 | [diff] [blame] | 1681 | programs/taskmgr/Makefile |
Andreas Mohr | 4eefb96 | 2000-08-01 00:27:35 +0000 | [diff] [blame] | 1682 | programs/uninstaller/Makefile |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 1683 | programs/view/Makefile |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1684 | programs/wcmd/Makefile |
Shachar Shemesh | 175d059 | 2003-01-04 02:52:05 +0000 | [diff] [blame] | 1685 | programs/wineboot/Makefile |
Chris Morgan | d888d36 | 2004-01-06 20:49:58 +0000 | [diff] [blame] | 1686 | programs/winebrowser/Makefile |
Dimitrie O. Paun | 82ce2cc | 2003-03-31 19:41:55 +0000 | [diff] [blame] | 1687 | programs/winecfg/Makefile |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1688 | programs/wineconsole/Makefile |
Alexandre Julliard | f264bd3 | 2002-09-13 17:54:27 +0000 | [diff] [blame] | 1689 | programs/winedbg/Makefile |
Alexandre Julliard | 65a4216 | 2002-06-04 21:29:40 +0000 | [diff] [blame] | 1690 | programs/winefile/Makefile |
Mike McCormack | 88090b4 | 2003-05-21 18:50:53 +0000 | [diff] [blame] | 1691 | programs/winemenubuilder/Makefile |
Joshua Thielen | a3f2380 | 2000-03-15 19:06:39 +0000 | [diff] [blame] | 1692 | programs/winemine/Makefile |
Mike Wetherell | 0d8a9fa | 2002-05-05 20:31:54 +0000 | [diff] [blame] | 1693 | programs/winepath/Makefile |
Alexandre Julliard | 9f71bd9 | 2003-12-04 02:01:39 +0000 | [diff] [blame] | 1694 | programs/winetest/Makefile |
Alexandre Julliard | fedc411 | 2003-04-27 00:47:58 +0000 | [diff] [blame] | 1695 | programs/winevdm/Makefile |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 1696 | programs/winhelp/Makefile |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 1697 | programs/winver/Makefile |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 1698 | server/Makefile |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1699 | tools/Makefile |
Alexandre Julliard | 7d4ee77 | 2002-07-16 03:20:45 +0000 | [diff] [blame] | 1700 | tools/widl/Makefile |
Patrik Stridvall | 647ac51 | 2001-07-30 20:21:34 +0000 | [diff] [blame] | 1701 | tools/winapi/Makefile |
Alexandre Julliard | e482eeb | 2000-06-23 20:15:35 +0000 | [diff] [blame] | 1702 | tools/winebuild/Makefile |
Eric Pouech | d786a12 | 2001-09-07 16:04:38 +0000 | [diff] [blame] | 1703 | tools/winedump/Makefile |
Alexandre Julliard | 280661c | 2003-09-11 21:27:58 +0000 | [diff] [blame] | 1704 | tools/winegcc/Makefile |
Bertho Stultiens | 3085591 | 2000-06-13 04:34:41 +0000 | [diff] [blame] | 1705 | tools/wmc/Makefile |
Alexandre Julliard | 7ab9a71 | 2003-03-21 05:06:48 +0000 | [diff] [blame] | 1706 | tools/wrc/Makefile]) |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1707 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1708 | AC_OUTPUT |
| 1709 | |
Ove Kaaven | 8b4431f | 1999-01-23 13:59:11 +0000 | [diff] [blame] | 1710 | if test "$have_x" = "no" |
| 1711 | then |
| 1712 | echo |
| 1713 | echo "*** Warning: X development files not found. Wine will be built without" |
| 1714 | echo "*** X support, which currently does not work, and would probably not be" |
| 1715 | echo "*** what you want anyway. You will need to install devel packages of" |
Alexandre Julliard | 18e4b5e | 2002-01-04 18:52:40 +0000 | [diff] [blame] | 1716 | echo "*** Xlib/Xfree86 at the very least." |
Ove Kaaven | 8b4431f | 1999-01-23 13:59:11 +0000 | [diff] [blame] | 1717 | fi |
| 1718 | |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 1719 | if test "$wine_cv_opengl_version_OK" = "no" |
Lionel Ulmer | 5c08570 | 1999-02-28 19:48:53 +0000 | [diff] [blame] | 1720 | then |
| 1721 | echo |
| 1722 | echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D" |
Lionel Ulmer | 5eee0bf | 2000-03-24 21:20:33 +0000 | [diff] [blame] | 1723 | echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)." |
| 1724 | fi |
| 1725 | |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 1726 | if test "$wine_cv_msg_freetype" = "yes" |
| 1727 | then |
| 1728 | echo |
| 1729 | echo "*** Note: Your system appears to have the FreeType 2 runtime libraries" |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1730 | echo "*** installed, but 'freetype-config' is not in your PATH. Install the" |
| 1731 | echo "*** freetype-devel package (or its equivalent on your distribution) to" |
| 1732 | echo "*** enable Wine to use TrueType fonts." |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 1733 | fi |
| 1734 | |
Alexandre Julliard | 8277602 | 2005-08-08 11:17:25 +0000 | [diff] [blame] | 1735 | if test -z "$ALSALIBS" -a \ |
| 1736 | -z "$ARTSC_LIBS" -a \ |
| 1737 | -z "$AUDIOIOLIBS" -a \ |
| 1738 | -z "$NASLIBS" -a \ |
| 1739 | -z "$ESD_LIBS" -a \ |
| 1740 | -z "$ac_cv_lib_soname_jack" -a \ |
| 1741 | "$ac_cv_header_sys_soundcard_h" != "yes" -a \ |
| 1742 | "$ac_cv_header_machine_soundcard_h" != "yes" -a \ |
| 1743 | "$ac_cv_header_soundcard_h" != "yes" |
Francois Gouget | 99d026f | 2005-03-19 17:08:18 +0000 | [diff] [blame] | 1744 | then |
| 1745 | echo "*** No sound system was found. Windows applications will be silent." |
| 1746 | echo "*** The currently supported sound systems are:" |
Peter Åstrand | 7a15eb9 | 2005-08-03 15:53:26 +0000 | [diff] [blame] | 1747 | echo "*** ALSA, ARTS, EsounD, AudioIO, Jack, NAS and OSS" |
Francois Gouget | 99d026f | 2005-03-19 17:08:18 +0000 | [diff] [blame] | 1748 | fi |
| 1749 | |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1750 | echo |
Vincent Béron | 5606d10 | 2004-08-19 00:03:45 +0000 | [diff] [blame] | 1751 | echo "Configure finished. Do '${ac_make} depend && ${ac_make}' to compile Wine." |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1752 | echo |
| 1753 | |
| 1754 | dnl Local Variables: |
| 1755 | dnl comment-start: "dnl " |
| 1756 | dnl comment-end: "" |
| 1757 | dnl comment-start-skip: "\\bdnl\\b\\s *" |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1758 | dnl compile-command: "autoconf" |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1759 | dnl End: |