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