Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1 | dnl Process this file with autoconf to produce a configure script. |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 2 | dnl Original author: Michael Patra |
| 3 | dnl See ChangeLog file for detailed change history. |
| 4 | |
| 5 | m4_define(WINE_VERSION,regexp(m4_include(VERSION),[version \([-.0-9A-Za-z]+\)],[\1])) |
| 6 | |
Alexandre Julliard | daa2886 | 2002-04-11 21:54:01 +0000 | [diff] [blame] | 7 | AC_PREREQ(2.53) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 8 | AC_INIT([Wine],WINE_VERSION) |
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 | a0b2b1d | 1997-11-16 17:38:29 +0000 | [diff] [blame] | 15 | dnl Default values |
Alexandre Julliard | 318f4ce | 2000-01-31 05:02:49 +0000 | [diff] [blame] | 16 | LIBEXT=so # library type .so or .a |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 17 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 18 | AC_ARG_ENABLE(debug, AC_HELP_STRING([--disable-debug],[compile out all debugging messages])) |
| 19 | AC_ARG_ENABLE(trace, AC_HELP_STRING([--disable-trace],[compile out TRACE messages])) |
| 20 | AC_ARG_ENABLE(opengl,AC_HELP_STRING([--enable-opengl],[force usage of OpenGL even if the latter is thread-safe via pthread])) |
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 | |
Alexandre Julliard | 18f92e7 | 1996-07-17 20:02:21 +0000 | [diff] [blame] | 24 | AC_SUBST(OPTIONS) |
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 |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 27 | AC_DEFINE(NO_DEBUG_MSGS,1,[Define to disable all debug messages.]) |
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 |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 31 | AC_DEFINE(NO_TRACE_MSGS,1,[Define to disable trace messages.]) |
Alexandre Julliard | f90efa9 | 1998-06-14 15:24:15 +0000 | [diff] [blame] | 32 | fi |
| 33 | |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 34 | dnl **** Check for some programs **** |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 35 | |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 36 | AC_CANONICAL_HOST |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 37 | AC_PROG_MAKE_SET |
| 38 | AC_PROG_CC |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 39 | AC_PROG_CPP |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 40 | |
| 41 | AC_CACHE_CHECK([for the directory containing the Wine tools], wine_cv_toolsdir, |
| 42 | [if test -z "$with_wine_tools"; then |
| 43 | if test "$cross_compiling" = "yes"; then |
| 44 | AC_MSG_ERROR([you must use the --with-wine-tools option when cross-compiling.]) |
| 45 | else |
| 46 | wine_cv_toolsdir="\$(TOPOBJDIR)" |
| 47 | fi |
| 48 | elif test -d "$with_wine_tools/tools/winebuild"; then |
| 49 | case $with_wine_tools in |
| 50 | /*) wine_cv_toolsdir="$with_wine_tools" ;; |
| 51 | *) wine_cv_toolsdir="\$(TOPOBJDIR)/$with_wine_tools" ;; |
| 52 | esac |
| 53 | else |
| 54 | AC_MSG_ERROR([could not find Wine tools in $with_wine_tools.]) |
| 55 | fi]) |
| 56 | AC_SUBST(TOOLSDIR,$wine_cv_toolsdir) |
| 57 | |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 58 | AC_PATH_XTRA |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 59 | AC_PROG_YACC |
| 60 | AC_PROG_LEX |
Marcus Meissner | 5c5a621 | 2002-01-22 18:28:25 +0000 | [diff] [blame] | 61 | |
| 62 | dnl **** Just additional warning checks, since AC_PROG just sets 'yacc' even |
| 63 | dnl **** without one present. |
| 64 | AC_CHECK_PROGS(XYACC,$YACC bison yacc,none) |
| 65 | if test "$XYACC" = "none" |
| 66 | then |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 67 | AC_MSG_ERROR([no suitable bison/yacc found. Please install the 'bison' package.]) |
Marcus Meissner | 5c5a621 | 2002-01-22 18:28:25 +0000 | [diff] [blame] | 68 | fi |
Marcus Meissner | b53bb41 | 2000-07-23 13:41:51 +0000 | [diff] [blame] | 69 | AC_CHECK_PROGS(XLEX,$LEX flex lex,none) |
| 70 | if test "$XLEX" = "none" |
| 71 | then |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 72 | AC_MSG_ERROR([no suitable lex found. Please install the 'flex' package.]) |
Marcus Meissner | b53bb41 | 2000-07-23 13:41:51 +0000 | [diff] [blame] | 73 | fi |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 74 | |
Alexandre Julliard | eb5f89c | 2002-05-24 21:22:10 +0000 | [diff] [blame] | 75 | AC_CHECK_TOOL(LD,ld,ld) |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 76 | AC_CHECK_TOOL(AR,ar,ar) |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 77 | AC_PROG_RANLIB |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 78 | AC_CHECK_TOOL(STRIP,strip,strip) |
| 79 | AC_CHECK_TOOL(WINDRES,windres,false) |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 80 | AC_PROG_INSTALL |
Alexandre Julliard | 641ee76 | 1997-08-04 16:34:36 +0000 | [diff] [blame] | 81 | AC_PROG_LN_S |
Alexandre Julliard | df234a9 | 2002-05-22 02:10:39 +0000 | [diff] [blame] | 82 | WINE_PROG_LN |
Mike McCormack | e0df32f | 2000-08-11 21:15:21 +0000 | [diff] [blame] | 83 | AC_CHECK_PROG(C2MAN,c2man,c2man,\$(TOPSRCDIR)/tools/c2man.pl) |
Bill Medland | 91372b3 | 2002-04-20 21:00:42 +0000 | [diff] [blame] | 84 | AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH]) |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 85 | |
Patrik Stridvall | a9be64e | 1999-07-31 17:39:44 +0000 | [diff] [blame] | 86 | dnl Check for lint |
| 87 | AC_CHECK_PROGS(LINT, lclint lint) |
| 88 | if test "$LINT" = "lint" |
| 89 | then |
| 90 | LINTFLAGS="$LINTFLAGS -errchk=%all,no%longptr64 -errhdr=%user -Ncheck=macro -Nlevel=4" |
| 91 | dnl LINTFLAGS='-D_SIZE_T "-Dsize_t=unsigned long" -errchk=longptr64' |
| 92 | fi |
| 93 | AC_SUBST(LINT) |
| 94 | AC_SUBST(LINTFLAGS) |
| 95 | |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 96 | dnl **** Check for some libraries **** |
| 97 | |
Marcus Meissner | b63ab44 | 2001-06-08 19:02:57 +0000 | [diff] [blame] | 98 | dnl Check for -lm |
Howard Abrams | 1327748 | 1999-07-10 13:16:29 +0000 | [diff] [blame] | 99 | AC_CHECK_LIB(m,sqrt) |
Alexandre Julliard | d37eb36 | 1997-07-20 16:23:21 +0000 | [diff] [blame] | 100 | dnl Check for -li386 for NetBSD and OpenBSD |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 101 | AC_CHECK_LIB(i386,i386_set_ldt) |
Todd Vierling | ecc7669 | 1998-12-15 17:49:02 +0000 | [diff] [blame] | 102 | dnl Check for -lossaudio for NetBSD |
| 103 | AC_CHECK_LIB(ossaudio,_oss_ioctl) |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 104 | dnl Check for -lw for Solaris |
Ulrich Weigand | 2e8e233 | 2000-12-27 18:49:08 +0000 | [diff] [blame] | 105 | AC_CHECK_FUNCS(iswalnum,,AC_CHECK_LIB(w,iswalnum)) |
Patrik Stridvall | ea58472 | 1998-11-01 16:22:07 +0000 | [diff] [blame] | 106 | dnl Check for -lnsl for Solaris |
Ulrich Weigand | 2e8e233 | 2000-12-27 18:49:08 +0000 | [diff] [blame] | 107 | AC_CHECK_FUNCS(gethostbyname,,AC_CHECK_LIB(nsl,gethostbyname)) |
Ulrich Weigand | 715a55e | 1999-04-18 13:19:56 +0000 | [diff] [blame] | 108 | dnl Check for -lsocket for Solaris |
Marcus Meissner | f070fda | 1999-04-24 12:02:14 +0000 | [diff] [blame] | 109 | AC_CHECK_FUNCS(connect,,AC_CHECK_LIB(socket,connect)) |
Francois Gouget | 3b943bc | 2002-04-01 21:05:15 +0000 | [diff] [blame] | 110 | dnl Check for -lresolv for Solaris |
Alexandre Julliard | c555274 | 2002-04-03 20:24:44 +0000 | [diff] [blame] | 111 | AC_CHECK_FUNCS(inet_aton,,AC_CHECK_LIB(resolv,inet_aton)) |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 112 | dnl Check for -lxpg4 for FreeBSD |
Satsuki Fujishima | 66fb607 | 2001-03-19 19:19:59 +0000 | [diff] [blame] | 113 | AC_CHECK_LIB(xpg4,_xpg4_setrunelocale) |
Alexandre Julliard | 0e7bd08 | 1999-05-02 11:46:02 +0000 | [diff] [blame] | 114 | dnl Check for -lmmap for OS/2 |
| 115 | AC_CHECK_LIB(mmap,mmap) |
Alexandre Julliard | 3f510ad | 2002-01-01 01:13:03 +0000 | [diff] [blame] | 116 | |
Marcus Meissner | 252b0fe | 2001-08-06 18:52:14 +0000 | [diff] [blame] | 117 | JPEGLIB="" |
| 118 | AC_SUBST(JPEGLIB) |
| 119 | AC_CHECK_HEADERS(jpeglib.h, |
| 120 | AC_CHECK_LIB(jpeg,jpeg_start_decompress, |
| 121 | AC_DEFINE(HAVE_LIBJPEG,1,[Define if you have libjpeg including devel headers]) |
| 122 | JPEGLIB="-ljpeg" |
| 123 | ) |
| 124 | ) |
| 125 | |
| 126 | |
Patrik Stridvall | ea58472 | 1998-11-01 16:22:07 +0000 | [diff] [blame] | 127 | AC_SUBST(XLIB) |
Patrik Stridvall | 2941a21 | 2000-04-25 20:34:22 +0000 | [diff] [blame] | 128 | AC_SUBST(XFILES) |
| 129 | XFILES="" |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 130 | AC_SUBST(OPENGLFILES) |
| 131 | OPENGLFILES="" |
Marcus Meissner | b63ab44 | 2001-06-08 19:02:57 +0000 | [diff] [blame] | 132 | AC_SUBST(GLU32FILES) |
Alexandre Julliard | f33f7f0 | 2001-09-17 20:09:08 +0000 | [diff] [blame] | 133 | GLU32FILES="" |
Patrik Stridvall | ea58472 | 1998-11-01 16:22:07 +0000 | [diff] [blame] | 134 | if test "$have_x" = "yes" |
| 135 | then |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 136 | XLIB="-lXext -lX11" |
Ove Kaaven | 1eb593c | 1999-02-14 09:34:46 +0000 | [diff] [blame] | 137 | ac_save_CPPFLAGS="$CPPFLAGS" |
| 138 | CPPFLAGS="$CPPFLAGS $X_CFLAGS" |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 139 | |
Huw D M Davies | ff453fc | 2001-09-14 01:04:25 +0000 | [diff] [blame] | 140 | dnl *** All of the following tests require X11/Xlib.h |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 141 | AC_CHECK_HEADERS(X11/Xlib.h, |
| 142 | [ |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 143 | dnl *** Check for X keyboard extension |
| 144 | AC_CHECK_HEADERS(X11/XKBlib.h, |
| 145 | [ dnl *** If X11/XKBlib.h exists... |
| 146 | AC_CHECK_LIB(X11, XkbQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 147 | AC_DEFINE(HAVE_XKB, 1, [Define if you have the XKB extension]),, |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 148 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
| 149 | ], |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 150 | AC_MSG_WARN([[Xkb extension not found, Wine will be built without it]]) |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 151 | ) |
| 152 | |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 153 | dnl *** Check for X Shm extension |
| 154 | AC_CHECK_HEADERS(X11/extensions/XShm.h, |
| 155 | [ dnl *** If X11/extensions/XShm.h exists... |
| 156 | AC_CHECK_LIB(Xext, XShmQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 157 | 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] | 158 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
| 159 | ], |
Alexandre Julliard | daa2886 | 2002-04-11 21:54:01 +0000 | [diff] [blame] | 160 | AC_MSG_WARN([[XShm extension not found, Wine will be built without it]]), |
| 161 | [#include <X11/Xlib.h>]) |
Marcus Meissner | cb99b0e | 1999-12-20 04:10:06 +0000 | [diff] [blame] | 162 | |
Francois Jacques | 5b6879c | 2000-07-28 23:04:54 +0000 | [diff] [blame] | 163 | dnl *** Check for X shape extension |
Ove Kaaven | c90fb25 | 2001-01-02 22:39:14 +0000 | [diff] [blame] | 164 | AC_CHECK_HEADERS(X11/extensions/shape.h, |
Francois Jacques | 5b6879c | 2000-07-28 23:04:54 +0000 | [diff] [blame] | 165 | [ dnl *** If X11/extensions/shape.h exists... |
| 166 | AC_CHECK_LIB(Xext,XShapeQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 167 | 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] | 168 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) |
| 169 | ], |
Alexandre Julliard | daa2886 | 2002-04-11 21:54:01 +0000 | [diff] [blame] | 170 | AC_MSG_WARN([[XShape extension not found, Wine will be built without it]]), |
| 171 | [#include <X11/Xlib.h>]) |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame^] | 172 | |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 173 | dnl *** Check for XFree86 DGA / DGA 2.0 extension |
| 174 | AC_CHECK_HEADERS(X11/extensions/xf86dga.h, |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame^] | 175 | [ dnl *** If X11/extensions/xf86dga.h exists, check |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 176 | dnl *** for XDGAQueryExtension()... |
| 177 | AC_CHECK_LIB(Xxf86dga, XDGAQueryExtension, |
| 178 | [ dnl *** If found... |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 179 | AC_DEFINE(HAVE_LIBXXF86DGA2, 1, |
| 180 | [Define if you have the Xxf86dga library version 2]) |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 181 | X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga" |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 182 | ], |
| 183 | [ dnl *** If not found, look for XF86DGAQueryExtension() |
| 184 | dnl *** instead (DGA 2.0 not found)... |
| 185 | AC_CHECK_LIB(Xxf86dga, XF86DGAQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 186 | [ AC_DEFINE(HAVE_LIBXXF86DGA, 1, |
| 187 | [Define if you have the Xxf86dga library version 1]) |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 188 | X_PRE_LIBS="$X_PRE_LIBS -lXxf86dga" |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 189 | ],, |
| 190 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS |
| 191 | ) |
| 192 | ], |
| 193 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS |
| 194 | ) |
| 195 | ], |
Alexandre Julliard | daa2886 | 2002-04-11 21:54:01 +0000 | [diff] [blame] | 196 | AC_MSG_WARN([[DGA extension not found, Wine will be built without it]]), |
| 197 | [#include <X11/Xlib.h>]) |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 198 | |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 199 | dnl *** Check for XFree86 VMODE extension |
| 200 | AC_CHECK_HEADERS(X11/extensions/xf86vmode.h, |
| 201 | [ dnl *** If X11/extensions/xf86vmode.h exists... |
| 202 | AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 203 | [ 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] | 204 | X_PRE_LIBS="$X_PRE_LIBS -lXxf86vm" |
| 205 | ],, |
| 206 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS |
| 207 | ) |
| 208 | ], |
Alexandre Julliard | daa2886 | 2002-04-11 21:54:01 +0000 | [diff] [blame] | 209 | AC_MSG_WARN([[XFree86 VMODE extension not found, Wine will be built without it]]), |
| 210 | [#include <X11/Xlib.h>]) |
Lionel Ulmer | 3d2f32d | 2000-09-06 19:46:59 +0000 | [diff] [blame] | 211 | |
| 212 | dnl *** Check for XVideo extension supporting XvImages |
| 213 | AC_CHECK_HEADERS(X11/extensions/Xvlib.h, |
| 214 | [ dnl *** If X11/extensions/Xvlib.h exists... |
| 215 | AC_CHECK_LIB(Xv, XvShmCreateImage, |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 216 | [ AC_DEFINE(HAVE_XVIDEO, 1, [Define if the X libraries support XVideo]) |
Lionel Ulmer | 3d2f32d | 2000-09-06 19:46:59 +0000 | [diff] [blame] | 217 | X_PRE_LIBS="$X_PRE_LIBS -lXv" |
| 218 | ],, |
| 219 | $X_LIBS -lXext -lX11 $X_EXTRA_LIBS |
| 220 | ) |
| 221 | ], |
Alexandre Julliard | daa2886 | 2002-04-11 21:54:01 +0000 | [diff] [blame] | 222 | AC_MSG_WARN([[XVideo extension not found, Wine will be built without it]]), |
| 223 | [#include <X11/Xlib.h>]) |
Lionel Ulmer | 3d2f32d | 2000-09-06 19:46:59 +0000 | [diff] [blame] | 224 | |
Alexandre Julliard | 21e9166 | 2002-04-23 22:06:41 +0000 | [diff] [blame] | 225 | dnl *** Check for XRender include file |
| 226 | AC_CHECK_HEADERS(X11/extensions/Xrender.h,,,[#include <X11/Xlib.h>]) |
John R. Sheets | f2b77cc | 2000-05-23 21:18:51 +0000 | [diff] [blame] | 227 | ] |
| 228 | ) dnl *** End of X11/Xlib.h check |
Lionel Ulmer | 5c08570 | 1999-02-28 19:48:53 +0000 | [diff] [blame] | 229 | |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 230 | dnl Check for the presence of OpenGL |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 231 | if test "x$enable_opengl" != "xno" |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 232 | then |
Francois Gouget | 42dcd97 | 2002-01-29 17:52:28 +0000 | [diff] [blame] | 233 | if test -f /usr/X11R6/lib/libGL.a -a ! -f /usr/X11R6/lib/libGL.so |
Alexandre Julliard | b508a1d | 2002-01-21 18:06:10 +0000 | [diff] [blame] | 234 | then |
| 235 | AC_MSG_ERROR([/usr/X11R6/lib/libGL.a is present on your system. |
| 236 | This prevents linking to OpenGL. Delete the file and restart configure.]) |
| 237 | fi |
| 238 | |
Alexandre Julliard | daa2886 | 2002-04-11 21:54:01 +0000 | [diff] [blame] | 239 | AC_CHECK_HEADERS(GL/gl.h GL/glx.h) |
Marcus Meissner | 22a969b | 2000-08-08 20:46:50 +0000 | [diff] [blame] | 240 | 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] | 241 | then |
Alexandre Julliard | daa2886 | 2002-04-11 21:54:01 +0000 | [diff] [blame] | 242 | AC_CHECK_HEADERS(GL/glext.h,,,[#include <GL/glx.h>]) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 243 | dnl Check for some problems due to old Mesa versions |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 244 | 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] | 245 | AC_TRY_COMPILE( |
Lionel Ulmer | 48c0816 | 2000-01-05 01:51:02 +0000 | [diff] [blame] | 246 | [#include <GL/gl.h>], |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 247 | [GLenum test = GL_UNSIGNED_SHORT_5_6_5;], |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 248 | [wine_cv_opengl_version_OK="yes"], |
| 249 | [wine_cv_opengl_version_OK="no"] |
Lionel Ulmer | 48c0816 | 2000-01-05 01:51:02 +0000 | [diff] [blame] | 250 | ) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 251 | ) |
| 252 | |
| 253 | dnl Check for the thread-safety of the OpenGL library |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame^] | 254 | AC_CACHE_CHECK([for thread-safe OpenGL version], |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 255 | wine_cv_opengl_version_threadsafe, |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 256 | [saved_libs=$LIBS |
| 257 | LIBS="$X_LIBS -lGL" |
| 258 | AC_TRY_LINK([],[pthread_getspecific();], |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 259 | [wine_cv_opengl_version_threadsafe="yes"], |
| 260 | [wine_cv_opengl_version_threadsafe="no"]) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 261 | LIBS=$saved_libs] |
Lionel Ulmer | 48c0816 | 2000-01-05 01:51:02 +0000 | [diff] [blame] | 262 | ) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 263 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 264 | if test "$wine_cv_opengl_version_OK" = "yes" -a \( "$wine_cv_opengl_version_threadsafe" = "no" -o "x$enable_opengl" = "xyes" \) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 265 | then |
Andreas Mohr | 4eefb96 | 2000-08-01 00:27:35 +0000 | [diff] [blame] | 266 | dnl Check for the presence of the library |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 267 | AC_CHECK_LIB(GL,glXCreateContext, |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 268 | X_PRE_LIBS="$X_PRE_LIBS -lGL" |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 269 | ,, |
| 270 | $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS) |
| 271 | |
Alexandre Julliard | b508a1d | 2002-01-21 18:06:10 +0000 | [diff] [blame] | 272 | if test "$ac_cv_lib_GL_glXCreateContext" = "yes" |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 273 | then |
Lionel Ulmer | bd8ede1 | 2000-10-12 20:45:58 +0000 | [diff] [blame] | 274 | OPENGLFILES='$(OPENGLFILES)' |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 275 | AC_DEFINE(HAVE_OPENGL, 1, [Define if OpenGL is present on the system]) |
Lionel Ulmer | bd8ede1 | 2000-10-12 20:45:58 +0000 | [diff] [blame] | 276 | |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 277 | AC_CHECK_LIB(GL,glXGetProcAddressARB, |
| 278 | AC_DEFINE(HAVE_GLX_GETPROCADDRESS, 1, |
| 279 | [Define if the OpenGL library supports the glXGetProcAddressARB call]),, |
| 280 | $X_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 281 | |
Alexandre Julliard | b508a1d | 2002-01-21 18:06:10 +0000 | [diff] [blame] | 282 | if test "$ac_cv_lib_GL_glXGetProcAddressARB" = "yes" |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 283 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 284 | AC_CACHE_CHECK([for OpenGL extension functions prototypes], wine_cv_extension_prototypes, |
| 285 | [AC_TRY_COMPILE([#include <GL/gl.h> |
Marcus Meissner | 6bb6d4c | 2000-08-09 22:21:08 +0000 | [diff] [blame] | 286 | #ifdef HAVE_GL_GLEXT_H |
| 287 | # include <GL/glext.h> |
| 288 | #endif |
| 289 | ], |
Lionel Ulmer | 1434d87 | 2000-07-23 14:23:31 +0000 | [diff] [blame] | 290 | [PFNGLCOLORTABLEEXTPROC test_proc;], |
Lionel Ulmer | fe210ef | 2000-07-29 11:30:56 +0000 | [diff] [blame] | 291 | [wine_cv_extension_prototypes="yes"], |
Lionel Ulmer | 1434d87 | 2000-07-23 14:23:31 +0000 | [diff] [blame] | 292 | [wine_cv_extension_prototypes="no"] |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 293 | )] |
Lionel Ulmer | 1434d87 | 2000-07-23 14:23:31 +0000 | [diff] [blame] | 294 | ) |
Alexandre Julliard | b508a1d | 2002-01-21 18:06:10 +0000 | [diff] [blame] | 295 | if test "$wine_cv_extension_prototypes" = "yes" |
Lionel Ulmer | fe210ef | 2000-07-29 11:30:56 +0000 | [diff] [blame] | 296 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 297 | AC_DEFINE(HAVE_GLEXT_PROTOTYPES, 1, |
| 298 | [Define if the OpenGL headers define extension typedefs]) |
Lionel Ulmer | fe210ef | 2000-07-29 11:30:56 +0000 | [diff] [blame] | 299 | fi |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 300 | fi |
Alexandre Julliard | d6c0f9f | 2001-01-04 22:44:55 +0000 | [diff] [blame] | 301 | |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 302 | fi |
Marcus Meissner | b63ab44 | 2001-06-08 19:02:57 +0000 | [diff] [blame] | 303 | dnl Check for GLU32 library. |
Marcus Meissner | 6e9ab40 | 2001-08-08 23:21:16 +0000 | [diff] [blame] | 304 | AC_CHECK_LIB(GLU,gluLookAt, |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 305 | [X_PRE_LIBS="$X_PRE_LIBS -lGLU" |
| 306 | GLU32FILES='$(GLU32FILES)'] |
Marcus Meissner | b63ab44 | 2001-06-08 19:02:57 +0000 | [diff] [blame] | 307 | ,, |
| 308 | $X_LIBS $X_PRE_LIBS -lXext -lX11 -lm $X_EXTRA_LIBS |
| 309 | ) |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 310 | fi |
| 311 | fi |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 312 | fi |
Ove Kaaven | 1eb593c | 1999-02-14 09:34:46 +0000 | [diff] [blame] | 313 | |
| 314 | CPPFLAGS="$ac_save_CPPFLAGS" |
Patrik Stridvall | 2941a21 | 2000-04-25 20:34:22 +0000 | [diff] [blame] | 315 | XFILES='$(XFILES)' |
Patrik Stridvall | ea58472 | 1998-11-01 16:22:07 +0000 | [diff] [blame] | 316 | else |
| 317 | XLIB="" |
| 318 | X_CFLAGS="" |
| 319 | X_LIBS="" |
| 320 | fi |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 321 | |
Joseph Pranevich | e884f9c | 1999-01-03 16:14:34 +0000 | [diff] [blame] | 322 | dnl **** Check which curses lib to use *** |
Alexandre Julliard | 4895768 | 2001-12-26 23:08:31 +0000 | [diff] [blame] | 323 | CURSESLIBS="" |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 324 | if test "x$with_curses" != "xno" |
Alexandre Julliard | 638f169 | 1999-01-17 16:32:32 +0000 | [diff] [blame] | 325 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 326 | AC_CHECK_HEADERS(ncurses.h, |
Bernhard Rosenkraenzer | 5ea3031 | 2002-01-06 19:08:03 +0000 | [diff] [blame] | 327 | [AC_CHECK_LIB(ncurses,waddch, |
Alexandre Julliard | 4895768 | 2001-12-26 23:08:31 +0000 | [diff] [blame] | 328 | [AC_DEFINE(HAVE_LIBNCURSES, 1, [Define if you have the ncurses library (-lncurses)]) |
| 329 | CURSESLIBS="-lncurses"], |
| 330 | [AC_CHECK_HEADERS(curses.h, |
| 331 | [AC_CHECK_LIB(curses,waddch, |
| 332 | [AC_DEFINE(HAVE_LIBCURSES, 1, [Define if you have the curses library (-lcurses)]) |
Bernhard Rosenkraenzer | 5ea3031 | 2002-01-06 19:08:03 +0000 | [diff] [blame] | 333 | CURSESLIBS="-lcurses"])])])]) |
Alexandre Julliard | 4895768 | 2001-12-26 23:08:31 +0000 | [diff] [blame] | 334 | saved_libs="$LIBS" |
| 335 | LIBS="$CURSESLIBS $LIBS" |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 336 | AC_CHECK_FUNCS(getbkgd resizeterm) |
Alexandre Julliard | 4895768 | 2001-12-26 23:08:31 +0000 | [diff] [blame] | 337 | LIBS="$saved_libs" |
Joseph Pranevich | e884f9c | 1999-01-03 16:14:34 +0000 | [diff] [blame] | 338 | fi |
Alexandre Julliard | 4895768 | 2001-12-26 23:08:31 +0000 | [diff] [blame] | 339 | AC_SUBST(CURSESLIBS) |
Joseph Pranevich | e884f9c | 1999-01-03 16:14:34 +0000 | [diff] [blame] | 340 | |
Marcus Meissner | ab8b7db | 2001-04-27 18:02:46 +0000 | [diff] [blame] | 341 | CUPSLIBS="" |
| 342 | dnl **** Check for CUPS **** |
Marcus Meissner | 3ee02ba | 2001-04-30 18:18:50 +0000 | [diff] [blame] | 343 | wine_cv_warn_cups_h=no |
Marcus Meissner | ab8b7db | 2001-04-27 18:02:46 +0000 | [diff] [blame] | 344 | AC_CHECK_LIB(cups,cupsGetPPD, |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 345 | [AC_CHECK_HEADER(cups/cups.h, |
| 346 | [AC_DEFINE(HAVE_CUPS, 1, [Define if we have CUPS]) |
| 347 | CUPSLIBS="-lcups"], |
| 348 | wine_cv_warn_cups_h=yes)] |
Marcus Meissner | ab8b7db | 2001-04-27 18:02:46 +0000 | [diff] [blame] | 349 | ) |
| 350 | AC_SUBST(CUPSLIBS) |
| 351 | |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 352 | dnl **** Check for SANE **** |
| 353 | AC_CHECK_PROG(sane_devel,sane-config,sane-config,no) |
| 354 | if test "$sane_devel" = "no" |
| 355 | then |
| 356 | SANELIBS="" |
| 357 | SANEINCL="" |
| 358 | else |
| 359 | SANELIBS="`$sane_devel --libs`" |
| 360 | SANEINCL="`$sane_devel --cflags`" |
| 361 | ac_save_CPPFLAGS="$CPPFLAGS" |
| 362 | ac_save_LIBS="$LIBS" |
| 363 | CPPFLAGS="$CPPFLAGS $SANEINCL" |
| 364 | LIBS="$LIBS $SANELIBS" |
Alexandre Julliard | 96328b3 | 2002-03-31 19:23:41 +0000 | [diff] [blame] | 365 | AC_CHECK_HEADER(sane/sane.h, |
| 366 | [AC_CHECK_LIB(sane,sane_open, |
| 367 | [AC_DEFINE(HAVE_SANE, 1, [Define if we have SANE development environment])], |
| 368 | [SANELIBS="" |
| 369 | SANEINCL=""])], |
| 370 | [SANELIBS="" |
| 371 | SANEINCL=""]) |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 372 | LIBS="$ac_save_LIBS" |
| 373 | CPPFLAGS="$ac_save_CPPFLAGS" |
| 374 | fi |
| 375 | AC_SUBST(SANELIBS) |
| 376 | AC_SUBST(SANEINCL) |
| 377 | |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 378 | dnl **** Check for FreeType 2 **** |
Dmitry Timoshkov | 8871a11 | 2001-11-06 22:26:53 +0000 | [diff] [blame] | 379 | 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] | 380 | if test "$ft_lib" = "no" |
| 381 | then |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 382 | FREETYPEINCL="" |
| 383 | wine_cv_msg_freetype=no |
| 384 | else |
Marcus Meissner | d28955d | 2001-05-31 21:35:15 +0000 | [diff] [blame] | 385 | AC_CHECK_PROG(ft_devel,freetype-config,freetype-config,no) |
| 386 | if test "$ft_devel" = "no" |
| 387 | then |
| 388 | AC_CHECK_PROG(ft_devel2,freetype2-config,freetype2-config,no) |
| 389 | if test "$ft_devel2" = "freetype2-config" |
| 390 | then |
| 391 | ft_devel=$ft_devel2 |
| 392 | fi |
| 393 | fi |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 394 | if test "$ft_devel" = "no" |
| 395 | then |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 396 | FREETYPEINCL="" |
| 397 | wine_cv_msg_freetype=yes |
| 398 | else |
Marcus Meissner | d28955d | 2001-05-31 21:35:15 +0000 | [diff] [blame] | 399 | FREETYPEINCL=`$ft_devel --cflags` |
Ian Pilcher | 40432fe | 2001-06-06 21:05:23 +0000 | [diff] [blame] | 400 | ac_save_CPPFLAGS="$CPPFLAGS" |
| 401 | CPPFLAGS="$FREETYPEINCL $CPPFLAGS" |
| 402 | AC_CHECK_HEADERS(freetype/freetype.h \ |
| 403 | freetype/ftglyph.h \ |
| 404 | freetype/tttables.h \ |
| 405 | freetype/ftnames.h \ |
| 406 | freetype/ftsnames.h \ |
Huw D M Davies | 814654e | 2001-09-12 20:21:06 +0000 | [diff] [blame] | 407 | freetype/ttnameid.h \ |
Huw D M Davies | 4e2024e | 2001-10-23 20:06:32 +0000 | [diff] [blame] | 408 | freetype/ftoutln.h \ |
| 409 | freetype/internal/sfnt.h) |
Alexandre Julliard | 18d7573 | 2002-01-29 03:02:50 +0000 | [diff] [blame] | 410 | AC_TRY_CPP([#include <ft2build.h> |
| 411 | #include <freetype/fttrigon.h>], |
Huw D M Davies | c1d3813 | 2002-02-08 17:09:50 +0000 | [diff] [blame] | 412 | [AC_DEFINE(HAVE_FREETYPE_FTTRIGON_H, 1, |
| 413 | [Define if you have the <freetype/fttrigon.h> header file.]) |
| 414 | wine_cv_fttrigon=yes], |
| 415 | wine_cv_fttrigon=no) |
Ian Pilcher | 40432fe | 2001-06-06 21:05:23 +0000 | [diff] [blame] | 416 | CPPFLAGS="$ac_save_CPPFLAGS" |
Huw D M Davies | 9b1d372 | 2002-01-29 17:09:28 +0000 | [diff] [blame] | 417 | dnl Check that we have at least freetype/freetype.h |
Huw D M Davies | c1d3813 | 2002-02-08 17:09:50 +0000 | [diff] [blame] | 418 | 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] | 419 | then |
| 420 | AC_DEFINE(HAVE_FREETYPE, 1, [Define if FreeType 2 is installed]) |
| 421 | wine_cv_msg_freetype=no |
| 422 | else |
Huw D M Davies | 9b1d372 | 2002-01-29 17:09:28 +0000 | [diff] [blame] | 423 | FREETYPEINCL="" |
| 424 | wine_cv_msg_freetype=yes |
| 425 | fi |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 426 | fi |
| 427 | fi |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 428 | AC_SUBST(FREETYPEINCL) |
| 429 | |
Uwe Bonnes | 6509fa9 | 2001-06-26 21:06:07 +0000 | [diff] [blame] | 430 | dnl **** Check for parport (currently Linux only) **** |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 431 | AC_CACHE_CHECK([for parport header/ppdev.h], ac_cv_c_ppdev, |
Uwe Bonnes | 6509fa9 | 2001-06-26 21:06:07 +0000 | [diff] [blame] | 432 | AC_TRY_COMPILE( |
| 433 | [#include <linux/ppdev.h>], |
| 434 | [ioctl (1,PPCLAIM,0)], |
| 435 | [ac_cv_c_ppdev="yes"], |
| 436 | [ac_cv_c_ppdev="no"]) |
| 437 | ) |
| 438 | if test "$ac_cv_c_ppdev" = "yes" |
| 439 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 440 | 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] | 441 | fi |
| 442 | |
Pavel Roskin | 94d9964 | 1998-12-26 11:52:51 +0000 | [diff] [blame] | 443 | dnl **** Check for IPX (currently Linux only) **** |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 444 | AC_CACHE_CHECK([for GNU style IPX support], ac_cv_c_ipx_gnu, |
Pavel Roskin | 94d9964 | 1998-12-26 11:52:51 +0000 | [diff] [blame] | 445 | AC_TRY_COMPILE( |
| 446 | [#include <sys/socket.h> |
| 447 | #include <netipx/ipx.h>], |
| 448 | [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX], |
Aaron Hope | c23872d | 2000-01-15 23:43:21 +0000 | [diff] [blame] | 449 | [ac_cv_c_ipx_gnu="yes"], |
Pavel Roskin | 94d9964 | 1998-12-26 11:52:51 +0000 | [diff] [blame] | 450 | [ac_cv_c_ipx_gnu="no"]) |
| 451 | ) |
Aaron Hope | c23872d | 2000-01-15 23:43:21 +0000 | [diff] [blame] | 452 | if test "$ac_cv_c_ipx_gnu" = "yes" |
| 453 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 454 | AC_DEFINE(HAVE_IPX_GNU, 1, [Define if IPX should use netipx/ipx.h from libc]) |
Aaron Hope | c23872d | 2000-01-15 23:43:21 +0000 | [diff] [blame] | 455 | fi |
Pavel Roskin | 94d9964 | 1998-12-26 11:52:51 +0000 | [diff] [blame] | 456 | |
| 457 | if test "$ac_cv_c_ipx_gnu" = "no" |
| 458 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 459 | AC_CACHE_CHECK([for linux style IPX support], ac_cv_c_ipx_linux, |
Pavel Roskin | 94d9964 | 1998-12-26 11:52:51 +0000 | [diff] [blame] | 460 | AC_TRY_COMPILE( |
| 461 | [#include <sys/socket.h> |
| 462 | #include <asm/types.h> |
| 463 | #include <linux/ipx.h>], |
| 464 | [((struct sockaddr_ipx *)0)->sipx_family == AF_IPX], |
Aaron Hope | c23872d | 2000-01-15 23:43:21 +0000 | [diff] [blame] | 465 | [ac_cv_c_ipx_linux="yes"], |
Pavel Roskin | 94d9964 | 1998-12-26 11:52:51 +0000 | [diff] [blame] | 466 | [ac_cv_c_ipx_linux="no"]) |
| 467 | ) |
Aaron Hope | c23872d | 2000-01-15 23:43:21 +0000 | [diff] [blame] | 468 | if test "$ac_cv_c_ipx_linux" = "yes" |
| 469 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 470 | AC_DEFINE(HAVE_IPX_LINUX, 1, [Define if IPX includes are taken from Linux kernel]) |
Aaron Hope | c23872d | 2000-01-15 23:43:21 +0000 | [diff] [blame] | 471 | fi |
Pavel Roskin | 94d9964 | 1998-12-26 11:52:51 +0000 | [diff] [blame] | 472 | fi |
| 473 | |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 474 | dnl **** Check for Open Sound System **** |
Todd Vierling | ecc7669 | 1998-12-15 17:49:02 +0000 | [diff] [blame] | 475 | AC_CHECK_HEADERS(sys/soundcard.h machine/soundcard.h soundcard.h, break) |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 476 | |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 477 | AC_CACHE_CHECK([for Open Sound System], |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 478 | ac_cv_c_opensoundsystem, |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 479 | AC_TRY_COMPILE([ |
Todd Vierling | ecc7669 | 1998-12-15 17:49:02 +0000 | [diff] [blame] | 480 | #if defined(HAVE_SYS_SOUNDCARD_H) |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 481 | #include <sys/soundcard.h> |
Todd Vierling | ecc7669 | 1998-12-15 17:49:02 +0000 | [diff] [blame] | 482 | #elif defined(HAVE_MACHINE_SOUNDCARD_H) |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 483 | #include <machine/soundcard.h> |
Todd Vierling | ecc7669 | 1998-12-15 17:49:02 +0000 | [diff] [blame] | 484 | #elif defined(HAVE_SOUNDCARD_H) |
| 485 | #include <soundcard.h> |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 486 | #endif |
| 487 | ],[ |
| 488 | |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 489 | /* check for one of the Open Sound System specific SNDCTL_ defines */ |
| 490 | #if !defined(SNDCTL_DSP_STEREO) |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 491 | #error No open sound system |
| 492 | #endif |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 493 | ],ac_cv_c_opensoundsystem="yes",ac_cv_c_opensoundsystem="no")) |
| 494 | |
| 495 | if test "$ac_cv_c_opensoundsystem" = "yes" |
| 496 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 497 | AC_DEFINE(HAVE_OSS, 1, [Define if you have the Open Sound system]) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 498 | fi |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 499 | |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 500 | AC_CACHE_CHECK([for Open Sound System/MIDI interface], |
Eric Pouech | 338d3b2 | 1999-05-22 18:52:21 +0000 | [diff] [blame] | 501 | ac_cv_c_opensoundsystem_midi, |
| 502 | AC_TRY_COMPILE([ |
| 503 | #if defined(HAVE_SYS_SOUNDCARD_H) |
| 504 | #include <sys/soundcard.h> |
| 505 | #elif defined(HAVE_MACHINE_SOUNDCARD_H) |
| 506 | #include <machine/soundcard.h> |
| 507 | #elif defined(HAVE_SOUNDCARD_H) |
| 508 | #include <soundcard.h> |
| 509 | #endif |
| 510 | ],[ |
| 511 | |
| 512 | /* check for one of the Open Sound System specific SNDCTL_SEQ defines */ |
| 513 | #if !defined(SNDCTL_SEQ_SYNC) |
| 514 | #error No open sound system MIDI interface |
| 515 | #endif |
| 516 | ],ac_cv_c_opensoundsystem_midi="yes",ac_cv_c_opensoundsystem_midi="no")) |
| 517 | |
| 518 | if test "$ac_cv_c_opensoundsystem_midi" = "yes" |
| 519 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 520 | AC_DEFINE(HAVE_OSS_MIDI, 1, [Define if you have the Open Sound system (MIDI interface)]) |
Eric Pouech | 338d3b2 | 1999-05-22 18:52:21 +0000 | [diff] [blame] | 521 | fi |
| 522 | |
Chris Morgan | 9b0ba7c | 2002-03-21 01:38:19 +0000 | [diff] [blame] | 523 | dnl **** Check for aRts Sound Server **** |
| 524 | AC_PATH_PROG(ARTSCCONFIG, artsc-config) |
| 525 | AC_CACHE_CHECK([for aRts Sound server], |
| 526 | ac_cv_c_artsserver, |
| 527 | if test x$ARTSCCONFIG = x -o x$ARTSCCONFIG = x'"$ARTSCCONFIG"'; |
| 528 | then |
| 529 | ac_cv_c_artsserver=no |
| 530 | else |
| 531 | ARTSC_CFLAGS=`$ARTSCCONFIG --cflags` |
| 532 | ARTSC_LIBS=`$ARTSCCONFIG --libs` |
| 533 | ac_cv_c_artsserver=no |
| 534 | save_CFLAGS="$CFLAGS" |
| 535 | CFLAGS="$CFLAGS $ARTSC_CFLAGS" |
| 536 | AC_TRY_COMPILE([ |
| 537 | #include <artsc.h> |
| 538 | ],[ |
| 539 | arts_stream_t stream; |
| 540 | ],[ |
| 541 | ac_cv_c_artsserver=yes |
| 542 | ]) |
| 543 | CFLAGS="$save_CFLAGS" |
| 544 | fi) |
| 545 | |
| 546 | if test "$ac_cv_c_artsserver" = "yes" |
| 547 | then |
| 548 | AC_SUBST(ARTSLIBS, $ARTSC_LIBS) |
| 549 | AC_SUBST(ARTSINCL, $ARTSC_CFLAGS) |
| 550 | |
| 551 | AC_DEFINE(HAVE_ARTS, 1, [Define if you have ARTS sound server]) |
| 552 | fi |
| 553 | |
Marcus Meissner | 0f6cfbc | 2001-06-08 19:34:56 +0000 | [diff] [blame] | 554 | dnl **** Check for broken glibc mmap64 **** |
| 555 | |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 556 | AC_CACHE_CHECK( [whether mmap64 works defined as mmap], ac_cv_mmap64_works, |
Marcus Meissner | 0f6cfbc | 2001-06-08 19:34:56 +0000 | [diff] [blame] | 557 | AC_TRY_RUN([ |
| 558 | #define _FILE_OFFSET_BITS 64 |
| 559 | #include <stdio.h> |
| 560 | #include <unistd.h> |
| 561 | #include <fcntl.h> |
| 562 | #include <sys/mman.h> |
| 563 | #include <errno.h> |
| 564 | |
| 565 | int main(int argc,char **argv) { |
| 566 | int fd = open("conftest.map",O_CREAT|O_RDWR,0600); |
| 567 | if (fd == -1) exit(1); |
| 568 | |
| 569 | unlink("conftest.map"); |
| 570 | |
| 571 | write(fd,"test",4); |
| 572 | |
| 573 | if ((-1 == mmap(0,4,PROT_READ|PROT_WRITE,MAP_SHARED,fd,0)) && |
| 574 | (errno == EINVAL) |
| 575 | ) { |
| 576 | exit(1); |
| 577 | } |
| 578 | close(fd); |
| 579 | fprintf(stderr,"success!\n"); |
| 580 | exit(0); |
| 581 | } |
| 582 | |
| 583 | ], |
| 584 | ac_cv_mmap64_works="yes", |
| 585 | ac_cv_mmap64_works="no", |
| 586 | ac_cv_mmap64_works="no") ) |
| 587 | |
| 588 | if test "$ac_cv_mmap64_works" = "yes" |
| 589 | then |
| 590 | AC_DEFINE(_FILE_OFFSET_BITS, 64, [Set this to 64 to enable 64-bit file support on Linux]) |
| 591 | fi |
| 592 | |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 593 | dnl **** Check for gcc strength-reduce bug **** |
| 594 | |
| 595 | if test "x${GCC}" = "xyes" |
| 596 | then |
| 597 | CFLAGS="$CFLAGS -Wall" |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 598 | 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] | 599 | AC_TRY_RUN([ |
Eric Pouech | 5aee80f | 2000-11-11 00:31:39 +0000 | [diff] [blame] | 600 | int L[[4]] = {0,1,2,3}; |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 601 | int main(void) { |
Alexandre Julliard | d2e1c1a | 1996-03-09 16:12:43 +0000 | [diff] [blame] | 602 | static int Array[[3]]; |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 603 | unsigned int B = 3; |
| 604 | int i; |
Alexandre Julliard | d2e1c1a | 1996-03-09 16:12:43 +0000 | [diff] [blame] | 605 | for(i=0; i<B; i++) Array[[i]] = i - 3; |
Eric Pouech | 5aee80f | 2000-11-11 00:31:39 +0000 | [diff] [blame] | 606 | for(i=0; i<4 - 1; i++) L[[i]] = L[[i + 1]]; |
| 607 | L[[i]] = 4; |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame^] | 608 | |
Eric Pouech | 5aee80f | 2000-11-11 00:31:39 +0000 | [diff] [blame] | 609 | exit( Array[[1]] != -2 || L[[2]] != 3); |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 610 | }], |
| 611 | ac_cv_c_gcc_strength_bug="no", |
| 612 | ac_cv_c_gcc_strength_bug="yes", |
| 613 | ac_cv_c_gcc_strength_bug="yes") ) |
| 614 | if test "$ac_cv_c_gcc_strength_bug" = "yes" |
| 615 | then |
| 616 | CFLAGS="$CFLAGS -fno-strength-reduce" |
| 617 | fi |
Alexandre Julliard | f9b94cb | 2000-12-06 03:50:22 +0000 | [diff] [blame] | 618 | |
| 619 | dnl Check for -mpreferred-stack-boundary |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 620 | AC_CACHE_CHECK([for gcc -mpreferred-stack-boundary=2 support], ac_cv_c_gcc_stack_boundary, |
| 621 | [WINE_TRY_CFLAGS([-mpreferred-stack-boundary=2], |
| 622 | ac_cv_c_gcc_stack_boundary="yes",ac_cv_c_gcc_stack_boundary="no")]) |
Alexandre Julliard | f9b94cb | 2000-12-06 03:50:22 +0000 | [diff] [blame] | 623 | if test "$ac_cv_c_gcc_stack_boundary" = "yes" |
| 624 | then |
| 625 | CFLAGS="$CFLAGS -mpreferred-stack-boundary=2" |
| 626 | fi |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 627 | fi |
| 628 | |
Dimitrie O. Paun | c77cbbc | 2000-11-27 23:32:55 +0000 | [diff] [blame] | 629 | dnl **** Check if we need to place .type inside a .def directive **** |
| 630 | |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 631 | AC_CACHE_CHECK([whether .type must sit inside a .def directive], ac_cv_c_type_in_def, |
| 632 | WINE_TRY_ASM_LINK( |
| 633 | [ .globl _ac_test |
Dimitrie O. Paun | c77cbbc | 2000-11-27 23:32:55 +0000 | [diff] [blame] | 634 | .def _ac_test; .scl 2; .type 32; .endef |
| 635 | _ac_test: |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 636 | .long 0],,, |
| 637 | ac_cv_c_type_in_def="yes",ac_cv_c_type_in_def="no")) |
Dimitrie O. Paun | c77cbbc | 2000-11-27 23:32:55 +0000 | [diff] [blame] | 638 | if test "$ac_cv_c_type_in_def" = "yes" |
| 639 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 640 | AC_DEFINE(NEED_TYPE_IN_DEF, 1, [Define if .type asm directive must be inside a .def directive]) |
Dimitrie O. Paun | c77cbbc | 2000-11-27 23:32:55 +0000 | [diff] [blame] | 641 | fi |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame^] | 642 | |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 643 | dnl **** Check for underscore on external symbols **** |
| 644 | |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 645 | AC_CACHE_CHECK([whether external symbols need an underscore prefix], ac_cv_c_extern_prefix, |
| 646 | WINE_TRY_ASM_LINK( |
| 647 | [ .globl _ac_test |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 648 | _ac_test: |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 649 | .long 0], |
| 650 | [extern int ac_test;], |
| 651 | [if (ac_test) return 1], |
| 652 | ac_cv_c_extern_prefix="yes",ac_cv_c_extern_prefix="no")) |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 653 | if test "$ac_cv_c_extern_prefix" = "yes" |
| 654 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 655 | AC_DEFINE(NEED_UNDERSCORE_PREFIX, 1, |
| 656 | [Define if symbols declared in assembly code need an underscore prefix]) |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 657 | fi |
| 658 | |
Dmitry Timoshkov | 93a5b86 | 2002-02-04 18:48:18 +0000 | [diff] [blame] | 659 | dnl **** Check whether stdcall symbols need to be decorated **** |
| 660 | |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 661 | AC_CACHE_CHECK([whether stdcall symbols need to be decorated], ac_cv_c_stdcall_decoration, |
| 662 | WINE_TRY_ASM_LINK( |
| 663 | [ .globl _ac_test@0 |
Dmitry Timoshkov | 93a5b86 | 2002-02-04 18:48:18 +0000 | [diff] [blame] | 664 | _ac_test@0: |
Dmitry Timoshkov | 93a5b86 | 2002-02-04 18:48:18 +0000 | [diff] [blame] | 665 | .globl ac_test@0 |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 666 | ac_test@0:], |
| 667 | [extern void __attribute__((__stdcall__)) ac_test(void);], |
| 668 | [ac_test()], |
| 669 | ac_cv_c_stdcall_decoration="yes",ac_cv_c_stdcall_decoration="no")) |
Dmitry Timoshkov | 93a5b86 | 2002-02-04 18:48:18 +0000 | [diff] [blame] | 670 | if test "$ac_cv_c_stdcall_decoration" = "yes" |
| 671 | then |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 672 | AC_DEFINE(NEED_STDCALL_DECORATION, 1, [Define if stdcall symbols need to be decorated]) |
Dmitry Timoshkov | 93a5b86 | 2002-02-04 18:48:18 +0000 | [diff] [blame] | 673 | fi |
| 674 | |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 675 | dnl **** Check for .string in assembler **** |
| 676 | |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 677 | AC_CACHE_CHECK([whether assembler accepts .string], ac_cv_c_asm_string, |
| 678 | WINE_TRY_ASM_LINK( |
| 679 | [ .string "test"],,,ac_cv_c_asm_string="yes",ac_cv_c_asm_string="no")) |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 680 | if test "$ac_cv_c_asm_string" = "yes" |
| 681 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 682 | AC_DEFINE(HAVE_ASM_STRING, 1, [Define to use .string instead of .ascii]) |
Alexandre Julliard | 0623a6f | 1998-01-18 18:01:49 +0000 | [diff] [blame] | 683 | fi |
| 684 | |
Alexandre Julliard | 7e6ae4b | 1996-12-08 19:25:27 +0000 | [diff] [blame] | 685 | dnl **** Check for working dll **** |
| 686 | |
Todd Vierling | 4b992b0 | 1998-12-15 15:26:27 +0000 | [diff] [blame] | 687 | LDSHARED="" |
Alexandre Julliard | 4354cda | 2000-11-09 20:27:45 +0000 | [diff] [blame] | 688 | LDDLLFLAGS="" |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 689 | DLLIBS="" |
| 690 | |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 691 | case $host_os in |
| 692 | cygwin*|mingw32*) |
| 693 | AC_CHECK_TOOL(DLLWRAP,dllwrap,false) |
| 694 | if test "$DLLWRAP" = "false"; then |
| 695 | LIBEXT="a" |
| 696 | else |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 697 | dnl FIXME - check whether dllwrap works correctly... |
| 698 | LIBEXT="dll" |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 699 | fi |
| 700 | ;; |
| 701 | *) |
| 702 | AC_CHECK_HEADERS(dlfcn.h, |
| 703 | [AC_CHECK_FUNCS(dlopen,, |
| 704 | [AC_CHECK_LIB(dl,dlopen, |
| 705 | [AC_DEFINE(HAVE_DLOPEN,1,[Define if you have dlopen]) |
| 706 | DLLIBS="-ldl"], |
| 707 | [LIBEXT="a"])])], |
| 708 | [LIBEXT="a"]) |
| 709 | |
| 710 | if test "$LIBEXT" = "so" |
| 711 | then |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 712 | AC_CACHE_CHECK([whether we can build a GNU style ELF dll], ac_cv_c_dll_gnuelf, |
| 713 | [WINE_TRY_CFLAGS([-fPIC -shared -Wl,-soname,conftest.so.1.0,-Bsymbolic], |
| 714 | ac_cv_c_dll_gnuelf="yes",ac_cv_c_dll_gnuelf="no")]) |
Alexandre Julliard | 466ae14 | 2002-05-07 18:33:47 +0000 | [diff] [blame] | 715 | if test "$ac_cv_c_dll_gnuelf" = "yes" |
| 716 | then |
| 717 | LDSHARED="\$(CC) -shared \$(SONAME:%=-Wl,-soname,%)" |
| 718 | LDDLLFLAGS="-Wl,-Bsymbolic" |
| 719 | else |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 720 | AC_CACHE_CHECK(whether we can build a UnixWare (Solaris) dll, ac_cv_c_dll_unixware, |
| 721 | [WINE_TRY_CFLAGS([-fPIC -Wl,-G,-h,conftest.so.1.0,-B,symbolic], |
| 722 | ac_cv_c_dll_unixware="yes",ac_cv_c_dll_unixware="no")]) |
Alexandre Julliard | 466ae14 | 2002-05-07 18:33:47 +0000 | [diff] [blame] | 723 | if test "$ac_cv_c_dll_unixware" = "yes" |
| 724 | then |
| 725 | LDSHARED="\$(CC) -Wl,-G \$(SONAME:%=-Wl,-h,%)" |
| 726 | LDDLLFLAGS="-Wl,-B,symbolic" |
| 727 | fi |
| 728 | fi |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 729 | fi |
| 730 | ;; |
| 731 | esac |
Alexandre Julliard | 0adad95 | 2000-01-26 01:45:58 +0000 | [diff] [blame] | 732 | |
Hidenori Takeshima | d48ca94 | 2000-12-22 22:28:00 +0000 | [diff] [blame] | 733 | if test "$LIBEXT" = "a"; then |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 734 | AC_MSG_ERROR( |
| 735 | [could not find a way to build shared libraries. |
| 736 | It is currently not possible to build Wine without shared library |
| 737 | (.so) support to allow transparent switch between .so and .dll files. |
| 738 | If you are using Linux, you will need a newer binutils.] |
| 739 | ) |
Hidenori Takeshima | d48ca94 | 2000-12-22 22:28:00 +0000 | [diff] [blame] | 740 | fi |
| 741 | |
Alexandre Julliard | 0adad95 | 2000-01-26 01:45:58 +0000 | [diff] [blame] | 742 | DLLFLAGS="" |
Alexandre Julliard | 0adad95 | 2000-01-26 01:45:58 +0000 | [diff] [blame] | 743 | |
Alexandre Julliard | 318f4ce | 2000-01-31 05:02:49 +0000 | [diff] [blame] | 744 | if test "$LIBEXT" = "so"; then |
Alexandre Julliard | 318f4ce | 2000-01-31 05:02:49 +0000 | [diff] [blame] | 745 | DLLFLAGS="-fPIC" |
Alexandre Julliard | c1bfca0 | 2002-03-20 22:19:06 +0000 | [diff] [blame] | 746 | DLLEXT=".so" |
Hidenori Takeshima | d48ca94 | 2000-12-22 22:28:00 +0000 | [diff] [blame] | 747 | elif test "$LIBEXT" = "dll"; then |
| 748 | #DLLFLAGS="-fPIC" # -fPIC doesn't work(at least in cygwin-b20) - FIXME |
Alexandre Julliard | c1bfca0 | 2002-03-20 22:19:06 +0000 | [diff] [blame] | 749 | DLLEXT="" |
Alexandre Julliard | 0adad95 | 2000-01-26 01:45:58 +0000 | [diff] [blame] | 750 | fi |
| 751 | |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 752 | case $build_os in |
| 753 | cygwin*|mingw32*) |
| 754 | LDPATH="PATH=\"\$(TOOLSDIR)/library:\$(TOOLSDIR)/unicode:\$\$PATH\"" ;; |
| 755 | *) |
| 756 | LDPATH="LD_LIBRARY_PATH=\"\$(TOOLSDIR)/library:\$(TOOLSDIR)/unicode:\$\$LD_LIBRARY_PATH\"" ;; |
| 757 | esac |
| 758 | |
Alexandre Julliard | fa3a536 | 2002-05-09 01:49:54 +0000 | [diff] [blame] | 759 | AC_SUBST(DLLIBS) |
Alexandre Julliard | a0b2b1d | 1997-11-16 17:38:29 +0000 | [diff] [blame] | 760 | AC_SUBST(DLLFLAGS) |
Alexandre Julliard | c1bfca0 | 2002-03-20 22:19:06 +0000 | [diff] [blame] | 761 | AC_SUBST(DLLEXT) |
Todd Vierling | 4b992b0 | 1998-12-15 15:26:27 +0000 | [diff] [blame] | 762 | AC_SUBST(LDSHARED) |
Alexandre Julliard | 4354cda | 2000-11-09 20:27:45 +0000 | [diff] [blame] | 763 | AC_SUBST(LDDLLFLAGS) |
Alexandre Julliard | 0adad95 | 2000-01-26 01:45:58 +0000 | [diff] [blame] | 764 | AC_SUBST(LIBEXT) |
Hidenori Takeshima | d48ca94 | 2000-12-22 22:28:00 +0000 | [diff] [blame] | 765 | AC_SUBST(LDPATH) |
Alexandre Julliard | 7e6ae4b | 1996-12-08 19:25:27 +0000 | [diff] [blame] | 766 | |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 767 | dnl **** Get the soname for libraries that we load dynamically **** |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 768 | |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 769 | if test "$LIBEXT" = "so" |
Alexandre Julliard | 598412e | 2001-01-17 20:22:22 +0000 | [diff] [blame] | 770 | then |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 771 | WINE_GET_SONAME(X11,XCreateWindow,[$X_LIBS $X_EXTRA_LIBS]) |
| 772 | WINE_GET_SONAME(Xext,XextCreateExtension,[$X_LIBS -lX11 $X_EXTRA_LIBS]) |
| 773 | WINE_GET_SONAME(Xrender,XRenderQueryExtension,[$X_LIBS -lXext -lX11 $X_EXTRA_LIBS]) |
| 774 | WINE_GET_SONAME(freetype,FT_Init_FreeType,[$X_LIBS]) |
Alexandre Julliard | 598412e | 2001-01-17 20:22:22 +0000 | [diff] [blame] | 775 | fi |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 776 | |
| 777 | |
| 778 | dnl **** Check for reentrant libc **** |
Alexandre Julliard | 598412e | 2001-01-17 20:22:22 +0000 | [diff] [blame] | 779 | |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame^] | 780 | wine_cv_libc_reentrant=no |
Marcus Meissner | c260638 | 1999-04-11 15:20:29 +0000 | [diff] [blame] | 781 | dnl Linux style errno location |
Alexandre Julliard | 67e8dc6 | 2002-05-20 18:29:58 +0000 | [diff] [blame] | 782 | WINE_CHECK_ERRNO([__errno_location], [wine_cv_libc_reentrant=__errno_location], |
| 783 | dnl FreeBSD style errno location |
| 784 | WINE_CHECK_ERRNO([__error], [wine_cv_libc_reentrant=__error], |
| 785 | dnl Solaris style errno location |
| 786 | WINE_CHECK_ERRNO([___errno], [wine_cv_libc_reentrant=___errno], |
| 787 | dnl UnixWare style errno location |
| 788 | WINE_CHECK_ERRNO([__thr_errno], [wine_cv_libc_reentrant=__thr_errno], |
| 789 | dnl NetBSD style errno location |
| 790 | WINE_CHECK_ERRNO([__errno], [wine_cv_libc_reentrant=__errno]) |
| 791 | )))) |
Alexandre Julliard | 598412e | 2001-01-17 20:22:22 +0000 | [diff] [blame] | 792 | |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame^] | 793 | if test "$wine_cv_libc_reentrant" != "no" |
Ron Record | e977d6c | 1999-09-05 12:32:05 +0000 | [diff] [blame] | 794 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 795 | AC_DEFINE_UNQUOTED(ERRNO_LOCATION,$wine_cv_libc_reentrant, |
| 796 | [Define to the name of the function returning errno for reentrant libc]) |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 797 | fi |
| 798 | |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 799 | dnl **** Check for reentrant X libraries **** |
| 800 | dnl |
| 801 | dnl This may fail to determine whether X libraries are reentrant if |
Alexandre Julliard | 867fb9d | 2002-04-24 22:24:43 +0000 | [diff] [blame] | 802 | dnl AC_PATH_XTRA does not set x_libraries. |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 803 | |
Alexandre Julliard | 867fb9d | 2002-04-24 22:24:43 +0000 | [diff] [blame] | 804 | if test "$have_x" = "yes" |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 805 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 806 | AC_CACHE_CHECK( [for reentrant X libraries], wine_cv_x_reentrant, |
Alexandre Julliard | 867fb9d | 2002-04-24 22:24:43 +0000 | [diff] [blame] | 807 | [libX11_check=none |
| 808 | for dir in "$x_libraries" /usr/lib /usr/local/lib /lib; do |
| 809 | if test -r $dir/libX11.so; then |
| 810 | libX11_check="-D $dir/libX11.so" |
| 811 | break |
| 812 | fi |
| 813 | if test -r $dir/libX11.a; then |
| 814 | libX11_check="$dir/libX11.a" |
| 815 | break |
| 816 | fi |
| 817 | done |
| 818 | if test "$libX11_check" != "none"; then |
| 819 | if nm $libX11_check | grep $wine_cv_libc_reentrant >/dev/null 2>&1 |
| 820 | then |
| 821 | wine_cv_x_reentrant=yes |
| 822 | else |
| 823 | wine_cv_x_reentrant=no |
| 824 | fi |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 825 | else |
Alexandre Julliard | 867fb9d | 2002-04-24 22:24:43 +0000 | [diff] [blame] | 826 | wine_cv_x_reentrant=unknown |
| 827 | fi]) |
Patrik Stridvall | 2411028 | 1999-02-04 10:09:54 +0000 | [diff] [blame] | 828 | fi |
Ulrich Weigand | 9759140 | 2000-12-19 03:38:53 +0000 | [diff] [blame] | 829 | |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 830 | dnl **** Check for functions **** |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 831 | |
Patrik Stridvall | 1bb9403 | 1999-05-08 15:47:44 +0000 | [diff] [blame] | 832 | AC_FUNC_ALLOCA() |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 833 | AC_CHECK_FUNCS(\ |
Eric Pouech | f61d7e0 | 2000-04-29 16:44:19 +0000 | [diff] [blame] | 834 | __libc_fork \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 835 | _lwp_create \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 836 | _pclose \ |
| 837 | _popen \ |
Steven Edwards | 0a8e15a | 2002-05-10 01:33:40 +0000 | [diff] [blame] | 838 | _snprintf \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 839 | _stricmp \ |
| 840 | _strnicmp \ |
Steven Edwards | b9627c1 | 2002-05-05 21:03:44 +0000 | [diff] [blame] | 841 | chsize \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 842 | clone \ |
Andreas Mohr | a7ca2ba | 2001-01-12 23:07:11 +0000 | [diff] [blame] | 843 | ecvt \ |
Jon Griffiths | d6deb6d | 2000-11-27 01:37:28 +0000 | [diff] [blame] | 844 | finite \ |
| 845 | fpclass \ |
Steven Edwards | b9627c1 | 2002-05-05 21:03:44 +0000 | [diff] [blame] | 846 | ftruncate \ |
Marcus Meissner | 3f1ed52 | 2001-05-14 20:09:37 +0000 | [diff] [blame] | 847 | ftruncate64 \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 848 | getnetbyaddr \ |
| 849 | getnetbyname \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 850 | getpagesize \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 851 | getprotobyname \ |
| 852 | getprotobynumber \ |
| 853 | getservbyport \ |
| 854 | getsockopt \ |
| 855 | inet_network \ |
Marcus Meissner | 3f1ed52 | 2001-05-14 20:09:37 +0000 | [diff] [blame] | 856 | lseek64 \ |
Alexandre Julliard | 27bb311 | 2000-11-29 17:48:06 +0000 | [diff] [blame] | 857 | lstat \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 858 | memmove \ |
Hidenori Takeshima | a85b0a6 | 2000-11-25 23:54:12 +0000 | [diff] [blame] | 859 | mmap \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 860 | pclose \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 861 | popen \ |
Steven Edwards | b9627c1 | 2002-05-05 21:03:44 +0000 | [diff] [blame] | 862 | pread \ |
Alexandre Julliard | f1a0de9 | 2002-01-07 21:00:27 +0000 | [diff] [blame] | 863 | pwrite \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 864 | rfork \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 865 | select \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 866 | sendmsg \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 867 | settimeofday \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 868 | sigaltstack \ |
Steven Edwards | 0a8e15a | 2002-05-10 01:33:40 +0000 | [diff] [blame] | 869 | snprintf \ |
Patrik Stridvall | b901021 | 1999-11-13 22:23:35 +0000 | [diff] [blame] | 870 | statfs \ |
Alexandre Julliard | 3b96efc | 1999-09-04 14:36:02 +0000 | [diff] [blame] | 871 | strcasecmp \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 872 | strerror \ |
Alexandre Julliard | 3b96efc | 1999-09-04 14:36:02 +0000 | [diff] [blame] | 873 | strncasecmp \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 874 | tcgetattr \ |
| 875 | timegm \ |
| 876 | usleep \ |
| 877 | vfscanf \ |
| 878 | wait4 \ |
| 879 | waitpid \ |
| 880 | ) |
| 881 | |
| 882 | dnl **** Check for header files **** |
| 883 | |
| 884 | AC_CHECK_HEADERS(\ |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 885 | arpa/inet.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 886 | arpa/nameser.h \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 887 | direct.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 888 | elf.h \ |
| 889 | float.h \ |
Ulrich Weigand | 2e8e233 | 2000-12-27 18:49:08 +0000 | [diff] [blame] | 890 | ieeefp.h \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 891 | io.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 892 | libio.h \ |
Hidenori Takeshima | 01f78aa | 2000-07-09 12:19:09 +0000 | [diff] [blame] | 893 | libutil.h \ |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 894 | link.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 895 | linux/cdrom.h \ |
Rizsanyi Zsolt | e7c6d17 | 2002-05-01 22:25:41 +0000 | [diff] [blame] | 896 | linux/hdreg.h \ |
Marcus Meissner | c9b3b2e | 2000-12-12 00:38:58 +0000 | [diff] [blame] | 897 | linux/input.h \ |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 898 | linux/joystick.h \ |
Rizsanyi Zsolt | e7c6d17 | 2002-05-01 22:25:41 +0000 | [diff] [blame] | 899 | linux/major.h \ |
Laurent Pinchart | 0314a65 | 2002-05-01 22:01:30 +0000 | [diff] [blame] | 900 | linux/param.h \ |
Lawson Whitney | 533e7ee | 2002-02-19 18:41:56 +0000 | [diff] [blame] | 901 | linux/serial.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 902 | linux/ucdrom.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 903 | net/if.h \ |
Hidenori Takeshima | 5d1a638 | 2000-11-26 04:00:53 +0000 | [diff] [blame] | 904 | netdb.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 905 | netinet/in.h \ |
Patrik Stridvall | 7a4e599 | 2000-12-01 23:53:46 +0000 | [diff] [blame] | 906 | netinet/in_systm.h \ |
| 907 | netinet/ip.h \ |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 908 | netinet/tcp.h \ |
Marcus Meissner | 2d7be87 | 1999-12-05 23:06:40 +0000 | [diff] [blame] | 909 | pty.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 910 | resolv.h \ |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 911 | sched.h \ |
Rizsanyi Zsolt | e7c6d17 | 2002-05-01 22:25:41 +0000 | [diff] [blame] | 912 | scsi/sg.h \ |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 913 | socket.h \ |
Bang Jun-Young | eda758e | 2001-12-14 22:47:19 +0000 | [diff] [blame] | 914 | stdint.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 915 | strings.h \ |
| 916 | sys/cdio.h \ |
Howard Abrams | 1327748 | 1999-07-10 13:16:29 +0000 | [diff] [blame] | 917 | sys/errno.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 918 | sys/file.h \ |
| 919 | sys/filio.h \ |
Michal Pasternak | 6098399 | 2002-03-29 18:04:43 +0000 | [diff] [blame] | 920 | sys/inttypes.h \ |
Alexandre Julliard | c3e06df | 2002-05-14 23:18:23 +0000 | [diff] [blame] | 921 | sys/ioctl.h \ |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 922 | sys/ipc.h \ |
Eric Pouech | 624cbd7 | 2001-08-10 22:29:21 +0000 | [diff] [blame] | 923 | sys/link.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 924 | sys/lwp.h \ |
Howard Abrams | 1327748 | 1999-07-10 13:16:29 +0000 | [diff] [blame] | 925 | sys/mman.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 926 | sys/modem.h \ |
| 927 | sys/mount.h \ |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 928 | sys/msg.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 929 | sys/param.h \ |
Dimitrie O. Paun | 2af03e4 | 2000-11-29 20:04:09 +0000 | [diff] [blame] | 930 | sys/ptrace.h \ |
Ulrich Weigand | 8a1bdb3 | 2000-01-30 22:22:22 +0000 | [diff] [blame] | 931 | sys/reg.h \ |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 932 | sys/shm.h \ |
Rizsanyi Zsolt | e7c6d17 | 2002-05-01 22:25:41 +0000 | [diff] [blame] | 933 | sys/signal.h \ |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 934 | sys/socket.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 935 | sys/sockio.h \ |
| 936 | sys/statfs.h \ |
| 937 | sys/strtio.h \ |
| 938 | sys/syscall.h \ |
Alexandre Julliard | 127ec92 | 2002-05-07 01:51:30 +0000 | [diff] [blame] | 939 | sys/sysctl.h \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 940 | sys/time.h \ |
Dimitrie O. Paun | 2af03e4 | 2000-11-29 20:04:09 +0000 | [diff] [blame] | 941 | sys/user.h \ |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 942 | sys/v86.h \ |
| 943 | sys/v86intr.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 944 | sys/vfs.h \ |
Patrik Stridvall | 9633632 | 1999-10-24 22:13:47 +0000 | [diff] [blame] | 945 | sys/vm86.h \ |
Rizsanyi Zsolt | e7c6d17 | 2002-05-01 22:25:41 +0000 | [diff] [blame] | 946 | sys/wait.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 947 | syscall.h \ |
Alexandre Julliard | c3e06df | 2002-05-14 23:18:23 +0000 | [diff] [blame] | 948 | termios.h \ |
Patrik Stridvall | 7a4e599 | 2000-12-01 23:53:46 +0000 | [diff] [blame] | 949 | ucontext.h \ |
Patrik Stridvall | 81ecb52 | 2002-03-11 05:08:14 +0000 | [diff] [blame] | 950 | unistd.h \ |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 951 | ) |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 952 | AC_HEADER_STAT() |
Alexandre Julliard | 2487cce | 1999-04-18 14:43:16 +0000 | [diff] [blame] | 953 | |
| 954 | dnl **** Check for types **** |
| 955 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 956 | AC_C_CONST |
| 957 | AC_C_INLINE |
Alexandre Julliard | 5769d1d | 2002-04-26 19:05:15 +0000 | [diff] [blame] | 958 | AC_CHECK_TYPES([mode_t, off_t, pid_t, size_t, ssize_t]) |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 959 | AC_CHECK_SIZEOF(long long,0) |
| 960 | |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 961 | AC_CACHE_CHECK([whether linux/input.h is for real], |
Marcus Meissner | 74f2b4b | 2001-01-19 21:09:07 +0000 | [diff] [blame] | 962 | wine_cv_linux_input_h, |
| 963 | AC_TRY_COMPILE([ |
| 964 | #include <linux/input.h> |
| 965 | ] , [ |
| 966 | int foo = EVIOCGBIT(EV_ABS,42); |
| 967 | int bar = BTN_PINKIE; |
| 968 | int fortytwo = 42; |
| 969 | ], |
| 970 | wine_cv_linux_input_h=yes, |
| 971 | wine_cv_linux_input_h=no, |
| 972 | no |
| 973 | ) |
| 974 | ) |
| 975 | if test "$wine_cv_linux_input_h" = "yes" |
| 976 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 977 | AC_DEFINE(HAVE_CORRECT_LINUXINPUT_H, 1, |
| 978 | [Define if we have linux/input.h AND it contains the INPUT event API]) |
Marcus Meissner | 74f2b4b | 2001-01-19 21:09:07 +0000 | [diff] [blame] | 979 | fi |
| 980 | |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame^] | 981 | |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 982 | 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] | 983 | wine_cv_linux_gethostbyname_r_6, |
| 984 | AC_TRY_COMPILE([ |
| 985 | #include <netdb.h> |
| 986 | ], [ |
| 987 | char *name=NULL; |
| 988 | struct hostent he; |
| 989 | struct hostent *result; |
| 990 | char *buf=NULL; |
| 991 | int bufsize=0; |
| 992 | int res,errnr; |
| 993 | char *addr=NULL; |
| 994 | int addrlen=0; |
| 995 | int addrtype=0; |
| 996 | res=gethostbyname_r(name,&he,buf,bufsize,&result,&errnr); |
| 997 | res=gethostbyaddr_r(addr, addrlen, addrtype,&he,buf,bufsize,&result,&errnr); |
| 998 | ], |
| 999 | wine_cv_linux_gethostbyname_r_6=yes, |
| 1000 | wine_cv_linux_gethostbyname_r_6=no |
| 1001 | ) |
| 1002 | ) |
| 1003 | if test "$wine_cv_linux_gethostbyname_r_6" = "yes" |
| 1004 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1005 | AC_DEFINE(HAVE_LINUX_GETHOSTBYNAME_R_6, 1, |
| 1006 | [Define if Linux-style gethostbyname_r and gethostbyaddr_r are available]) |
Rein Klazes | ff7a61f | 2000-09-24 19:41:57 +0000 | [diff] [blame] | 1007 | fi |
| 1008 | |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1009 | if test "$ac_cv_header_linux_joystick_h" = "yes" |
| 1010 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1011 | 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] | 1012 | wine_cv_linux_joystick_22_api, |
| 1013 | AC_TRY_COMPILE([ |
| 1014 | #include <sys/ioctl.h> |
| 1015 | #include <linux/joystick.h> |
| 1016 | |
| 1017 | struct js_event blub; |
Marcus Meissner | 605a9c3 | 1999-11-04 02:04:01 +0000 | [diff] [blame] | 1018 | #if !defined(JS_EVENT_AXIS) || !defined(JS_EVENT_BUTTON) |
| 1019 | #error "no 2.2 header" |
| 1020 | #endif |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1021 | ],/*empty*/, |
| 1022 | wine_cv_linux_joystick_22_api=yes, |
| 1023 | wine_cv_linux_joystick_22_api=no, |
| 1024 | wine_cv_linux_joystick_22_api=no |
| 1025 | ) |
| 1026 | ) |
Rein Klazes | 87d224a | 2000-04-24 17:33:49 +0000 | [diff] [blame] | 1027 | if test "$wine_cv_linux_joystick_22_api" = "yes" |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1028 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1029 | AC_DEFINE(HAVE_LINUX_22_JOYSTICK_API, 1, |
| 1030 | [Define if <linux/joystick.h> defines the Linux 2.2 joystick API]) |
Marcus Meissner | 028e9a1 | 1999-08-04 15:07:56 +0000 | [diff] [blame] | 1031 | fi |
| 1032 | fi |
| 1033 | |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1034 | dnl **** statfs checks **** |
| 1035 | |
| 1036 | if test "$ac_cv_header_sys_vfs_h" = "yes" |
| 1037 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1038 | AC_CACHE_CHECK( [whether sys/vfs.h defines statfs], |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1039 | wine_cv_sys_vfs_has_statfs, |
| 1040 | AC_TRY_COMPILE([ |
| 1041 | #include <sys/types.h> |
| 1042 | #ifdef HAVE_SYS_PARAM_H |
| 1043 | # include <sys/param.h> |
| 1044 | #endif |
| 1045 | #include <sys/vfs.h> |
| 1046 | ],[ |
| 1047 | struct statfs stfs; |
| 1048 | |
| 1049 | memset(&stfs,0,sizeof(stfs)); |
| 1050 | ],wine_cv_sys_vfs_has_statfs=yes,wine_cv_sys_vfs_has_statfs=no |
| 1051 | ) |
| 1052 | ) |
| 1053 | if test "$wine_cv_sys_vfs_has_statfs" = "yes" |
| 1054 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1055 | AC_DEFINE(STATFS_DEFINED_BY_SYS_VFS, 1, |
| 1056 | [Define if the struct statfs is defined by <sys/vfs.h>]) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1057 | fi |
| 1058 | fi |
| 1059 | |
| 1060 | if test "$ac_cv_header_sys_statfs_h" = "yes" |
| 1061 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1062 | AC_CACHE_CHECK( [whether sys/statfs.h defines statfs], |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1063 | wine_cv_sys_statfs_has_statfs, |
| 1064 | AC_TRY_COMPILE([ |
| 1065 | #include <sys/types.h> |
| 1066 | #ifdef HAVE_SYS_PARAM_H |
| 1067 | # include <sys/param.h> |
| 1068 | #endif |
| 1069 | #include <sys/statfs.h> |
| 1070 | ],[ |
| 1071 | struct statfs stfs; |
| 1072 | ],wine_cv_sys_statfs_has_statfs=yes,wine_cv_sys_statfs_has_statfs=no |
| 1073 | ) |
| 1074 | ) |
| 1075 | if test "$wine_cv_sys_statfs_has_statfs" = "yes" |
| 1076 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1077 | AC_DEFINE(STATFS_DEFINED_BY_SYS_STATFS, 1, |
| 1078 | [Define if the struct statfs is defined by <sys/statfs.h>]) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1079 | fi |
| 1080 | fi |
| 1081 | |
| 1082 | if test "$ac_cv_header_sys_mount_h" = "yes" |
| 1083 | then |
Bernhard Rosenkraenzer | fea260a | 2001-09-19 20:30:28 +0000 | [diff] [blame] | 1084 | AC_CACHE_CHECK( [whether sys/mount.h defines statfs], |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1085 | wine_cv_sys_mount_has_statfs, |
| 1086 | AC_TRY_COMPILE([ |
| 1087 | #include <sys/types.h> |
| 1088 | #ifdef HAVE_SYS_PARAM_H |
| 1089 | # include <sys/param.h> |
| 1090 | #endif |
| 1091 | #include <sys/mount.h> |
| 1092 | ],[ |
| 1093 | struct statfs stfs; |
| 1094 | ],wine_cv_sys_mount_has_statfs=yes,wine_cv_sys_mount_has_statfs=no |
| 1095 | ) |
| 1096 | ) |
| 1097 | if test "$wine_cv_sys_mount_has_statfs" = "yes" |
| 1098 | then |
Alexandre Julliard | ed2f19a | 2001-06-27 21:42:00 +0000 | [diff] [blame] | 1099 | AC_DEFINE(STATFS_DEFINED_BY_SYS_MOUNT, 1, |
| 1100 | [Define if the struct statfs is defined by <sys/mount.h>]) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1101 | fi |
| 1102 | fi |
| 1103 | |
| 1104 | dnl **** FIXME: what about mixed cases, where we need two of them? *** |
| 1105 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1106 | WINE_CHECK_STRUCT_MEMBER(statfs,f_bfree, |
| 1107 | [#include <sys/types.h> |
| 1108 | #ifdef HAVE_SYS_PARAM_H |
| 1109 | # include <sys/param.h> |
| 1110 | #endif |
| 1111 | #ifdef STATFS_DEFINED_BY_SYS_MOUNT |
| 1112 | # include <sys/mount.h> |
| 1113 | #else |
| 1114 | # ifdef STATFS_DEFINED_BY_SYS_VFS |
| 1115 | # include <sys/vfs.h> |
| 1116 | # else |
| 1117 | # ifdef STATFS_DEFINED_BY_SYS_STATFS |
| 1118 | # include <sys/statfs.h> |
| 1119 | # endif |
| 1120 | # endif |
| 1121 | #endif], |
| 1122 | [AC_DEFINE(STATFS_HAS_BFREE, 1, [Define if the struct statfs has the member bfree])]) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1123 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1124 | WINE_CHECK_STRUCT_MEMBER(statfs,f_bavail, |
| 1125 | [#include <sys/types.h> |
| 1126 | #ifdef HAVE_SYS_PARAM_H |
| 1127 | # include <sys/param.h> |
| 1128 | #endif |
| 1129 | #ifdef STATFS_DEFINED_BY_SYS_MOUNT |
| 1130 | # include <sys/mount.h> |
| 1131 | #else |
| 1132 | # ifdef STATFS_DEFINED_BY_SYS_VFS |
| 1133 | # include <sys/vfs.h> |
| 1134 | # else |
| 1135 | # ifdef STATFS_DEFINED_BY_SYS_STATFS |
| 1136 | # include <sys/statfs.h> |
| 1137 | # endif |
| 1138 | # endif |
| 1139 | #endif], |
| 1140 | [AC_DEFINE(STATFS_HAS_BAVAIL, 1, [Define if the struct statfs has the member bavail])]) |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 1141 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1142 | dnl Check for file descriptor passing with msg_accrights |
| 1143 | WINE_CHECK_STRUCT_MEMBER(msghdr,msg_accrights, |
| 1144 | [#include <sys/types.h> |
| 1145 | #include <sys/socket.h>], |
| 1146 | [AC_DEFINE(HAVE_MSGHDR_ACCRIGHTS, 1, [Define if struct msghdr contains msg_accrights])]) |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 1147 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1148 | dnl Check for the sa_len member in struct sockaddr |
| 1149 | WINE_CHECK_STRUCT_MEMBER(sockaddr,sa_len, |
| 1150 | [#include <sys/types.h> |
| 1151 | #include <sys/socket.h>], |
| 1152 | [AC_DEFINE(HAVE_SOCKADDR_SA_LEN, 1, [Define if struct sockaddr contains sa_len])]) |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 1153 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1154 | dnl Check for the sun_len member in struct sockaddr_un |
| 1155 | WINE_CHECK_STRUCT_MEMBER(sockaddr_un,sun_len, |
| 1156 | [#include <sys/types.h> |
Patrik Stridvall | 09da966 | 2001-07-08 22:30:50 +0000 | [diff] [blame] | 1157 | #include <sys/socket.h> |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1158 | #include <sys/un.h>], |
| 1159 | [AC_DEFINE(HAVE_SOCKADDR_SUN_LEN, 1, [Define if struct sockaddr_un contains sun_len])]) |
Juergen Lock | 2d33ab9 | 2000-02-13 16:03:29 +0000 | [diff] [blame] | 1160 | |
Alexandre Julliard | 51d46ba | 1999-05-08 16:05:27 +0000 | [diff] [blame] | 1161 | dnl *** check for the need to define __i386__ |
| 1162 | |
Alexandre Julliard | fc01b72 | 2002-05-12 03:16:39 +0000 | [diff] [blame] | 1163 | case $host_cpu in |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1164 | *i[3456789]86* ) |
| 1165 | AC_CACHE_CHECK([whether we need to define __i386__],ac_cv_cpp_def_i386, |
| 1166 | AC_EGREP_CPP(yes,[#ifndef __i386__ |
Alexandre Julliard | 51d46ba | 1999-05-08 16:05:27 +0000 | [diff] [blame] | 1167 | yes |
| 1168 | #endif], |
| 1169 | ac_cv_cpp_def_i386="yes", ac_cv_cpp_def_i386="no")) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1170 | ;; |
| 1171 | esac |
Alexandre Julliard | 51d46ba | 1999-05-08 16:05:27 +0000 | [diff] [blame] | 1172 | if test "$ac_cv_cpp_def_i386" = "yes" |
| 1173 | then |
| 1174 | CFLAGS="$CFLAGS -D__i386__" |
Patrik Stridvall | a9be64e | 1999-07-31 17:39:44 +0000 | [diff] [blame] | 1175 | LINTFLAGS="$LINTFLAGS -D__i386__" |
Alexandre Julliard | 51d46ba | 1999-05-08 16:05:27 +0000 | [diff] [blame] | 1176 | fi |
| 1177 | |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1178 | dnl **** Generate output files **** |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1179 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1180 | AH_TOP([#define __WINE_CONFIG_H]) |
| 1181 | |
Alexandre Julliard | 9bb05fc | 2002-05-14 18:36:54 +0000 | [diff] [blame] | 1182 | WINE_CONFIG_EXTRA_DIR(controls) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1183 | WINE_CONFIG_EXTRA_DIR(dlls/ddraw/d3ddevice) |
| 1184 | WINE_CONFIG_EXTRA_DIR(dlls/ddraw/dclipper) |
| 1185 | WINE_CONFIG_EXTRA_DIR(dlls/ddraw/ddraw) |
| 1186 | WINE_CONFIG_EXTRA_DIR(dlls/ddraw/direct3d) |
| 1187 | WINE_CONFIG_EXTRA_DIR(dlls/ddraw/dpalette) |
| 1188 | WINE_CONFIG_EXTRA_DIR(dlls/ddraw/dsurface) |
| 1189 | WINE_CONFIG_EXTRA_DIR(dlls/dinput/joystick) |
| 1190 | WINE_CONFIG_EXTRA_DIR(dlls/dinput/keyboard) |
| 1191 | WINE_CONFIG_EXTRA_DIR(dlls/dinput/mouse) |
Alexandre Julliard | 8911856 | 2002-03-27 21:13:40 +0000 | [diff] [blame] | 1192 | WINE_CONFIG_EXTRA_DIR(dlls/gdi/enhmfdrv) |
| 1193 | WINE_CONFIG_EXTRA_DIR(dlls/gdi/mfdrv) |
| 1194 | WINE_CONFIG_EXTRA_DIR(dlls/gdi/win16drv) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1195 | WINE_CONFIG_EXTRA_DIR(dlls/kernel/messages) |
Alexandre Julliard | c72f0b2 | 2002-02-28 21:47:58 +0000 | [diff] [blame] | 1196 | WINE_CONFIG_EXTRA_DIR(dlls/kernel/tests) |
Marcus Meissner | e8d9770 | 2002-03-26 01:54:25 +0000 | [diff] [blame] | 1197 | WINE_CONFIG_EXTRA_DIR(dlls/oleaut32/tests) |
Juergen Schmied | c74a791 | 2002-05-09 19:48:07 +0000 | [diff] [blame] | 1198 | WINE_CONFIG_EXTRA_DIR(dlls/shlwapi/tests) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1199 | WINE_CONFIG_EXTRA_DIR(dlls/user/dde) |
| 1200 | WINE_CONFIG_EXTRA_DIR(dlls/user/resources) |
Alexandre Julliard | c72f0b2 | 2002-02-28 21:47:58 +0000 | [diff] [blame] | 1201 | WINE_CONFIG_EXTRA_DIR(dlls/user/tests) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1202 | WINE_CONFIG_EXTRA_DIR(dlls/wineps/data) |
Alexandre Julliard | 9a68b7b | 2002-04-27 21:19:22 +0000 | [diff] [blame] | 1203 | WINE_CONFIG_EXTRA_DIR(dlls/winsock/tests) |
Alexandre Julliard | 9bb05fc | 2002-05-14 18:36:54 +0000 | [diff] [blame] | 1204 | WINE_CONFIG_EXTRA_DIR(files) |
| 1205 | WINE_CONFIG_EXTRA_DIR(graphics) |
| 1206 | WINE_CONFIG_EXTRA_DIR(graphics/x11drv) |
| 1207 | WINE_CONFIG_EXTRA_DIR(if1632) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1208 | WINE_CONFIG_EXTRA_DIR(include/wine) |
Alexandre Julliard | 9bb05fc | 2002-05-14 18:36:54 +0000 | [diff] [blame] | 1209 | WINE_CONFIG_EXTRA_DIR(loader) |
| 1210 | WINE_CONFIG_EXTRA_DIR(loader/ne) |
| 1211 | WINE_CONFIG_EXTRA_DIR(memory) |
| 1212 | WINE_CONFIG_EXTRA_DIR(misc) |
| 1213 | WINE_CONFIG_EXTRA_DIR(msdos) |
| 1214 | WINE_CONFIG_EXTRA_DIR(objects) |
Alexandre Julliard | c72f0b2 | 2002-02-28 21:47:58 +0000 | [diff] [blame] | 1215 | WINE_CONFIG_EXTRA_DIR(programs/regapi/tests) |
| 1216 | WINE_CONFIG_EXTRA_DIR(programs/winetest/tests) |
Alexandre Julliard | 9bb05fc | 2002-05-14 18:36:54 +0000 | [diff] [blame] | 1217 | WINE_CONFIG_EXTRA_DIR(relay32) |
| 1218 | WINE_CONFIG_EXTRA_DIR(scheduler) |
| 1219 | WINE_CONFIG_EXTRA_DIR(win32) |
| 1220 | WINE_CONFIG_EXTRA_DIR(windows) |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1221 | |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1222 | MAKE_RULES=Make.rules |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 1223 | AC_SUBST_FILE(MAKE_RULES) |
| 1224 | |
Alexandre Julliard | d0edc5f | 2000-03-04 22:31:27 +0000 | [diff] [blame] | 1225 | MAKE_DLL_RULES=dlls/Makedll.rules |
| 1226 | AC_SUBST_FILE(MAKE_DLL_RULES) |
| 1227 | |
Alexandre Julliard | 626f425 | 2000-11-10 23:35:20 +0000 | [diff] [blame] | 1228 | MAKE_PROG_RULES=programs/Makeprog.rules |
| 1229 | AC_SUBST_FILE(MAKE_PROG_RULES) |
| 1230 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1231 | AC_CONFIG_FILES([ |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1232 | Make.rules |
Alexandre Julliard | 626f425 | 2000-11-10 23:35:20 +0000 | [diff] [blame] | 1233 | dlls/Makedll.rules |
| 1234 | programs/Makeprog.rules |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1235 | Makefile |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1236 | debugger/Makefile |
Alexandre Julliard | 85ed45e | 1998-08-22 19:03:56 +0000 | [diff] [blame] | 1237 | dlls/Makefile |
Juergen Schmied | f7b0de3 | 1999-01-03 12:48:29 +0000 | [diff] [blame] | 1238 | dlls/advapi32/Makefile |
Hidenori Takeshima | 1c53a7f | 2001-11-06 00:41:05 +0000 | [diff] [blame] | 1239 | dlls/avicap32/Makefile |
Marcus Meissner | b3d1a22 | 1999-03-13 18:07:44 +0000 | [diff] [blame] | 1240 | dlls/avifil32/Makefile |
John K. Hohm | 34909c2 | 2002-05-14 21:50:56 +0000 | [diff] [blame] | 1241 | dlls/comcat/Makefile |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1242 | dlls/comctl32/Makefile |
Klaas van Gend | c912749 | 1999-02-28 20:05:11 +0000 | [diff] [blame] | 1243 | dlls/commdlg/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1244 | dlls/crtdll/Makefile |
Travis Michielsen | 0f21ee8 | 2002-01-10 19:41:11 +0000 | [diff] [blame] | 1245 | dlls/crypt32/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1246 | dlls/dciman32/Makefile |
Alexandre Julliard | ddce652 | 2000-03-17 16:58:10 +0000 | [diff] [blame] | 1247 | dlls/ddraw/Makefile |
Hidenori Takeshima | b4be998 | 2001-10-23 20:35:23 +0000 | [diff] [blame] | 1248 | dlls/devenum/Makefile |
Alexandre Julliard | ddce652 | 2000-03-17 16:58:10 +0000 | [diff] [blame] | 1249 | dlls/dinput/Makefile |
Alexandre Julliard | c607532 | 2000-07-09 11:19:35 +0000 | [diff] [blame] | 1250 | dlls/dplay/Makefile |
Peter Hunnisett | 22b861c | 1999-09-28 16:35:32 +0000 | [diff] [blame] | 1251 | dlls/dplayx/Makefile |
Eric Pouech | 68944c2 | 1999-10-24 18:42:42 +0000 | [diff] [blame] | 1252 | dlls/dsound/Makefile |
Alexandre Julliard | 1dac57f | 2000-03-19 12:08:09 +0000 | [diff] [blame] | 1253 | dlls/gdi/Makefile |
Marcus Meissner | b63ab44 | 2001-06-08 19:02:57 +0000 | [diff] [blame] | 1254 | dlls/glu32/Makefile |
Francois Gouget | edf3e43 | 1999-11-07 21:22:17 +0000 | [diff] [blame] | 1255 | dlls/icmp/Makefile |
Patrik Stridvall | 8295c86 | 1998-10-11 17:09:05 +0000 | [diff] [blame] | 1256 | dlls/imagehlp/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1257 | dlls/imm32/Makefile |
Dimitrie O. Paun | 36b5b6b | 2000-06-03 00:07:44 +0000 | [diff] [blame] | 1258 | dlls/kernel/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1259 | dlls/lzexpand/Makefile |
Hidenori Takeshima | 1a8b339 | 2001-09-14 21:36:30 +0000 | [diff] [blame] | 1260 | dlls/mapi32/Makefile |
Ulrich Weigand | bb1984e | 1999-08-07 14:32:33 +0000 | [diff] [blame] | 1261 | dlls/mpr/Makefile |
Patrik Stridvall | 8295c86 | 1998-10-11 17:09:05 +0000 | [diff] [blame] | 1262 | dlls/msacm/Makefile |
Hidenori Takeshima | 0307f6d | 2002-03-23 20:18:11 +0000 | [diff] [blame] | 1263 | dlls/msacm/imaadp32/Makefile |
Eric Pouech | bed67fc | 2002-05-22 02:00:05 +0000 | [diff] [blame] | 1264 | dlls/msacm/msadp32/Makefile |
Hidenori Takeshima | bcb9c46 | 2002-03-22 19:16:10 +0000 | [diff] [blame] | 1265 | dlls/msacm/msg711/Makefile |
Hidenori Takeshima | b4be998 | 2001-10-23 20:35:23 +0000 | [diff] [blame] | 1266 | dlls/msdmo/Makefile |
Hidenori Takeshima | 1a8b339 | 2001-09-14 21:36:30 +0000 | [diff] [blame] | 1267 | dlls/msimg32/Makefile |
Mike McCormack | f6be044 | 2002-04-08 23:56:14 +0000 | [diff] [blame] | 1268 | dlls/msisys/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1269 | dlls/msnet32/Makefile |
Hidenori Takeshima | 1c53a7f | 2001-11-06 00:41:05 +0000 | [diff] [blame] | 1270 | dlls/msrle32/Makefile |
Jon Griffiths | 1db20bf | 2001-01-10 23:59:25 +0000 | [diff] [blame] | 1271 | dlls/msvcrt/Makefile |
Aric Stewart | c2a5ebc | 2002-01-29 18:09:46 +0000 | [diff] [blame] | 1272 | dlls/msvcrt20/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1273 | dlls/msvideo/Makefile |
Mike McCormack | 2e40b96 | 2001-11-06 17:52:36 +0000 | [diff] [blame] | 1274 | dlls/netapi32/Makefile |
Marcus Meissner | 51505b1 | 1998-11-01 14:00:21 +0000 | [diff] [blame] | 1275 | dlls/ntdll/Makefile |
Alexandre Julliard | 8551f8c | 1999-12-11 23:56:46 +0000 | [diff] [blame] | 1276 | dlls/odbc32/Makefile |
Ulrich Weigand | 2a722f4 | 1999-09-19 18:36:53 +0000 | [diff] [blame] | 1277 | dlls/ole32/Makefile |
| 1278 | dlls/oleaut32/Makefile |
| 1279 | dlls/olecli/Makefile |
| 1280 | dlls/oledlg/Makefile |
Sean Langley | 58c71d4 | 2000-02-07 16:26:56 +0000 | [diff] [blame] | 1281 | dlls/olepro32/Makefile |
Ulrich Weigand | 2a722f4 | 1999-09-19 18:36:53 +0000 | [diff] [blame] | 1282 | dlls/olesvr/Makefile |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 1283 | dlls/opengl32/Makefile |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1284 | dlls/psapi/Makefile |
Hidenori Takeshima | b4be998 | 2001-10-23 20:35:23 +0000 | [diff] [blame] | 1285 | dlls/qcap/Makefile |
Hidenori Takeshima | b7d4b4e | 2001-07-02 18:57:22 +0000 | [diff] [blame] | 1286 | dlls/quartz/Makefile |
Marcus Meissner | 30ef877 | 1998-12-11 13:26:26 +0000 | [diff] [blame] | 1287 | dlls/rasapi32/Makefile |
Hidenori Takeshima | e75f9fb | 2000-05-03 18:12:19 +0000 | [diff] [blame] | 1288 | dlls/richedit/Makefile |
Huw D M Davies | 10b1b23 | 2000-07-15 19:53:50 +0000 | [diff] [blame] | 1289 | dlls/rpcrt4/Makefile |
Mike McCormack | dc2461e | 2000-07-15 21:35:55 +0000 | [diff] [blame] | 1290 | dlls/serialui/Makefile |
Francois Jacques | df5e579 | 2000-07-08 18:27:03 +0000 | [diff] [blame] | 1291 | dlls/setupapi/Makefile |
John R. Sheets | bc80a3b | 2001-01-11 22:32:44 +0000 | [diff] [blame] | 1292 | dlls/shdocvw/Makefile |
Alexandre Julliard | 85ed45e | 1998-08-22 19:03:56 +0000 | [diff] [blame] | 1293 | dlls/shell32/Makefile |
Alexandre Julliard | c607532 | 2000-07-09 11:19:35 +0000 | [diff] [blame] | 1294 | dlls/shfolder/Makefile |
| 1295 | dlls/shlwapi/Makefile |
Patrik Stridvall | 4c692b9 | 2002-04-29 18:43:35 +0000 | [diff] [blame] | 1296 | dlls/snmpapi/Makefile |
Hidenori Takeshima | 1a8b339 | 2001-09-14 21:36:30 +0000 | [diff] [blame] | 1297 | dlls/sti/Makefile |
Andreas Mohr | 5aa96c1 | 1999-03-14 12:34:25 +0000 | [diff] [blame] | 1298 | dlls/tapi32/Makefile |
Alexandre Julliard | 1dac57f | 2000-03-19 12:08:09 +0000 | [diff] [blame] | 1299 | dlls/ttydrv/Makefile |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 1300 | dlls/twain/Makefile |
Hidenori Takeshima | 1a8b339 | 2001-09-14 21:36:30 +0000 | [diff] [blame] | 1301 | dlls/url/Makefile |
Alexandre Julliard | 819fa8c | 2000-04-11 20:07:00 +0000 | [diff] [blame] | 1302 | dlls/urlmon/Makefile |
Alexandre Julliard | 1dac57f | 2000-03-19 12:08:09 +0000 | [diff] [blame] | 1303 | dlls/user/Makefile |
Ulrich Weigand | d43a46a | 1999-01-31 10:11:04 +0000 | [diff] [blame] | 1304 | dlls/version/Makefile |
Ulrich Weigand | 6c6da67 | 1999-08-04 09:49:49 +0000 | [diff] [blame] | 1305 | dlls/win32s/Makefile |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1306 | dlls/winaspi/Makefile |
Ove Kaaven | e5557b3 | 2000-12-26 00:22:45 +0000 | [diff] [blame] | 1307 | dlls/winedos/Makefile |
Dimitrie O. Paun | 84bde6a | 2000-05-30 20:27:23 +0000 | [diff] [blame] | 1308 | dlls/wineps/Makefile |
Alexandre Julliard | 819fa8c | 2000-04-11 20:07:00 +0000 | [diff] [blame] | 1309 | dlls/wininet/Makefile |
Eric Pouech | 68944c2 | 1999-10-24 18:42:42 +0000 | [diff] [blame] | 1310 | dlls/winmm/Makefile |
Eric Pouech | 2a3b0a1 | 2000-02-26 13:14:04 +0000 | [diff] [blame] | 1311 | dlls/winmm/joystick/Makefile |
Eric Pouech | 68944c2 | 1999-10-24 18:42:42 +0000 | [diff] [blame] | 1312 | dlls/winmm/mcianim/Makefile |
| 1313 | dlls/winmm/mciavi/Makefile |
| 1314 | dlls/winmm/mcicda/Makefile |
| 1315 | dlls/winmm/mciseq/Makefile |
| 1316 | dlls/winmm/mciwave/Makefile |
Eric Pouech | abe7227 | 1999-10-31 02:23:49 +0000 | [diff] [blame] | 1317 | dlls/winmm/midimap/Makefile |
| 1318 | dlls/winmm/wavemap/Makefile |
Chris Morgan | 9b0ba7c | 2002-03-21 01:38:19 +0000 | [diff] [blame] | 1319 | dlls/winmm/winearts/Makefile |
Eric Pouech | 68944c2 | 1999-10-24 18:42:42 +0000 | [diff] [blame] | 1320 | dlls/winmm/wineoss/Makefile |
Hidenori Takeshima | 9c67213 | 2000-12-14 21:56:18 +0000 | [diff] [blame] | 1321 | dlls/winnls/Makefile |
Alexandre Julliard | de07869 | 2000-01-23 22:07:15 +0000 | [diff] [blame] | 1322 | dlls/winsock/Makefile |
Huw D M Davies | e39b676 | 1999-05-17 16:20:51 +0000 | [diff] [blame] | 1323 | dlls/winspool/Makefile |
Rein Klazes | 2a4c68b | 2001-04-16 19:36:12 +0000 | [diff] [blame] | 1324 | dlls/wintrust/Makefile |
Alexandre Julliard | c607532 | 2000-07-09 11:19:35 +0000 | [diff] [blame] | 1325 | dlls/wow32/Makefile |
| 1326 | dlls/wsock32/Makefile |
Alexandre Julliard | 1dac57f | 2000-03-19 12:08:09 +0000 | [diff] [blame] | 1327 | dlls/x11drv/Makefile |
Alexandre Julliard | d37eb36 | 1997-07-20 16:23:21 +0000 | [diff] [blame] | 1328 | documentation/Makefile |
James Juran | c70dc83 | 1999-02-13 12:18:33 +0000 | [diff] [blame] | 1329 | include/Makefile |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1330 | library/Makefile |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1331 | miscemu/Makefile |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 1332 | ole/Makefile |
Alexandre Julliard | 02ed4c2 | 1996-03-02 19:34:10 +0000 | [diff] [blame] | 1333 | programs/Makefile |
Andreas Mohr | 4eefb96 | 2000-08-01 00:27:35 +0000 | [diff] [blame] | 1334 | programs/avitools/Makefile |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 1335 | programs/clock/Makefile |
Eric Williams | 30008a0 | 1999-02-05 17:40:47 +0000 | [diff] [blame] | 1336 | programs/cmdlgtst/Makefile |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1337 | programs/control/Makefile |
Alexandre Julliard | acfda14 | 2002-05-20 19:18:16 +0000 | [diff] [blame] | 1338 | programs/expand/Makefile |
Alexandre Julliard | 44ed71f | 1997-12-21 19:17:50 +0000 | [diff] [blame] | 1339 | programs/notepad/Makefile |
Andreas Mohr | 4eefb96 | 2000-08-01 00:27:35 +0000 | [diff] [blame] | 1340 | programs/osversioncheck/Makefile |
Alexandre Julliard | 02ed4c2 | 1996-03-02 19:34:10 +0000 | [diff] [blame] | 1341 | programs/progman/Makefile |
Sylvain St.Germain | 1bb0e66 | 1999-03-14 14:00:22 +0000 | [diff] [blame] | 1342 | programs/regapi/Makefile |
Andriy Palamarchuk | 4e2e176 | 2002-04-11 23:58:40 +0000 | [diff] [blame] | 1343 | programs/regedit/Makefile |
Andriy Palamarchuk | 2f0d85c | 2002-04-29 23:47:39 +0000 | [diff] [blame] | 1344 | programs/regsvr32/Makefile |
Andreas Mohr | 4eefb96 | 2000-08-01 00:27:35 +0000 | [diff] [blame] | 1345 | programs/regtest/Makefile |
| 1346 | programs/uninstaller/Makefile |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 1347 | programs/view/Makefile |
Dave Pickles | 74f440e | 1999-06-06 15:24:04 +0000 | [diff] [blame] | 1348 | programs/wcmd/Makefile |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1349 | programs/wineconsole/Makefile |
Joshua Thielen | a3f2380 | 2000-03-15 19:06:39 +0000 | [diff] [blame] | 1350 | programs/winemine/Makefile |
Mike Wetherell | 0d8a9fa | 2002-05-05 20:31:54 +0000 | [diff] [blame] | 1351 | programs/winepath/Makefile |
Alexandre Julliard | fc68434 | 2001-03-21 21:41:27 +0000 | [diff] [blame] | 1352 | programs/winetest/Makefile |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 1353 | programs/winhelp/Makefile |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 1354 | programs/winver/Makefile |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 1355 | server/Makefile |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1356 | tools/Makefile |
Patrik Stridvall | 647ac51 | 2001-07-30 20:21:34 +0000 | [diff] [blame] | 1357 | tools/winapi/Makefile |
Alexandre Julliard | e482eeb | 2000-06-23 20:15:35 +0000 | [diff] [blame] | 1358 | tools/winebuild/Makefile |
Eric Pouech | d786a12 | 2001-09-07 16:04:38 +0000 | [diff] [blame] | 1359 | tools/winedump/Makefile |
Bertho Stultiens | 3085591 | 2000-06-13 04:34:41 +0000 | [diff] [blame] | 1360 | tools/wmc/Makefile |
Andreas Mohr | 4eefb96 | 2000-08-01 00:27:35 +0000 | [diff] [blame] | 1361 | tools/wrc/Makefile |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 1362 | tsx11/Makefile |
Alexandre Julliard | 9bb05fc | 2002-05-14 18:36:54 +0000 | [diff] [blame] | 1363 | unicode/Makefile]) |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1364 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1365 | AC_OUTPUT |
| 1366 | |
Ove Kaaven | 8b4431f | 1999-01-23 13:59:11 +0000 | [diff] [blame] | 1367 | if test "$have_x" = "no" |
| 1368 | then |
| 1369 | echo |
| 1370 | echo "*** Warning: X development files not found. Wine will be built without" |
| 1371 | echo "*** X support, which currently does not work, and would probably not be" |
| 1372 | 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] | 1373 | echo "*** Xlib/Xfree86 at the very least." |
Ove Kaaven | 8b4431f | 1999-01-23 13:59:11 +0000 | [diff] [blame] | 1374 | fi |
| 1375 | |
Alexandre Julliard | 638f169 | 1999-01-17 16:32:32 +0000 | [diff] [blame] | 1376 | if test "$ac_cv_lib_ncurses_resizeterm" = "no" -a "$ac_cv_lib_ncurses_waddch" = "yes" |
| 1377 | then |
| 1378 | echo |
| 1379 | echo "*** Warning: resizeterm not found in ncurses. Wine will be built without" |
| 1380 | echo "*** terminal resize support. Consider upgrading ncurses." |
Alexandre Julliard | 638f169 | 1999-01-17 16:32:32 +0000 | [diff] [blame] | 1381 | fi |
| 1382 | |
Alexandre Julliard | 7cae558 | 2002-06-01 02:55:48 +0000 | [diff] [blame^] | 1383 | if test "$wine_cv_libc_reentrant" = "no" |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1384 | then |
| 1385 | echo |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1386 | echo "*** Warning: non-reentrant libc detected. Wine will be built without" |
| 1387 | echo "*** threading support. Consider upgrading libc to a more recent" |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1388 | echo "*** reentrant version of libc." |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 1389 | fi |
| 1390 | |
Alexandre Julliard | 867fb9d | 2002-04-24 22:24:43 +0000 | [diff] [blame] | 1391 | if test "$have_x" = "yes" -a "$wine_cv_x_reentrant" != "yes" |
| 1392 | then |
| 1393 | echo |
| 1394 | echo "*** Warning: non-reentrant X11 library detected. Multi-threaded" |
| 1395 | echo "*** applications won't work properly. You should upgrade your X11 library." |
| 1396 | fi |
| 1397 | |
Lionel Ulmer | bedf40b | 2000-05-12 20:18:14 +0000 | [diff] [blame] | 1398 | if test "$wine_cv_opengl_version_OK" = "no" |
Lionel Ulmer | 5c08570 | 1999-02-28 19:48:53 +0000 | [diff] [blame] | 1399 | then |
| 1400 | echo |
| 1401 | echo "*** Warning: old Mesa headers detected. Wine will be built without Direct3D" |
Lionel Ulmer | 5eee0bf | 2000-03-24 21:20:33 +0000 | [diff] [blame] | 1402 | echo "*** support. Consider upgrading your Mesa libraries (http://www.mesa3d.org/)." |
| 1403 | fi |
| 1404 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1405 | if test "$wine_cv_opengl_version_threadsafe" = "yes" -a "x$enable_opengl" = "x" |
Lionel Ulmer | 5eee0bf | 2000-03-24 21:20:33 +0000 | [diff] [blame] | 1406 | then |
| 1407 | echo |
| 1408 | echo "*** Warning: the OpenGL version you have installed relies on libpthread for" |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 1409 | echo "*** thread-safety. To prevent crashes, OpenGL support has been removed." |
Andreas Mohr | 18a9d74 | 2001-01-17 21:52:42 +0000 | [diff] [blame] | 1410 | echo "*** A fix for glibc 2.1.3 that seems to work is included in this version of Wine," |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 1411 | echo "*** start configure with '--enable-opengl' to force OpenGL support." |
Lionel Ulmer | 5c08570 | 1999-02-28 19:48:53 +0000 | [diff] [blame] | 1412 | fi |
| 1413 | |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1414 | if test "$wine_cv_opengl_version_threadsafe" = "yes" -a "x$enable_opengl" = "xyes" |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 1415 | then |
| 1416 | echo |
Alexandre Julliard | d6c0f9f | 2001-01-04 22:44:55 +0000 | [diff] [blame] | 1417 | echo "*** Warning: you explicitly linked in a thread-safe OpenGL version. If you" |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 1418 | echo "*** experience unusual crashes on DirectDraw games, try first to disable OpenGL" |
| 1419 | echo "*** support before reporting bugs." |
| 1420 | fi |
| 1421 | |
Marcus Meissner | 3ee02ba | 2001-04-30 18:18:50 +0000 | [diff] [blame] | 1422 | if test "$wine_cv_warn_cups_h" = "yes" |
| 1423 | then |
| 1424 | echo |
| 1425 | echo "*** Note: You have cups runtime libraries, but no development" |
| 1426 | echo "*** libraries. Install the cups-devel package or whichever package" |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1427 | echo "*** contains cups.h to enable CUPS support in Wine." |
Marcus Meissner | 3ee02ba | 2001-04-30 18:18:50 +0000 | [diff] [blame] | 1428 | fi |
Lionel Ulmer | fbc15b1 | 2000-04-29 14:23:22 +0000 | [diff] [blame] | 1429 | |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 1430 | if test "$wine_cv_msg_freetype" = "yes" |
| 1431 | then |
| 1432 | echo |
| 1433 | echo "*** Note: Your system appears to have the FreeType 2 runtime libraries" |
Alexandre Julliard | f5818d2 | 2002-02-14 19:47:29 +0000 | [diff] [blame] | 1434 | echo "*** installed, but 'freetype-config' is not in your PATH. Install the" |
| 1435 | echo "*** freetype-devel package (or its equivalent on your distribution) to" |
| 1436 | echo "*** enable Wine to use TrueType fonts." |
Ian Pilcher | 563598d | 2001-05-16 20:56:05 +0000 | [diff] [blame] | 1437 | fi |
| 1438 | |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1439 | echo |
Steffen Moeller | 1511bae | 1999-02-17 15:27:03 +0000 | [diff] [blame] | 1440 | echo "Configure finished. Do 'make depend && make' to compile Wine." |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1441 | echo |
| 1442 | |
| 1443 | dnl Local Variables: |
| 1444 | dnl comment-start: "dnl " |
| 1445 | dnl comment-end: "" |
| 1446 | dnl comment-start-skip: "\\bdnl\\b\\s *" |
Alexandre Julliard | d7d4fdf | 1995-12-26 15:05:24 +0000 | [diff] [blame] | 1447 | dnl compile-command: "autoconf" |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 1448 | dnl End: |