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