blob: 515a402e52459a3c4927adbb9185b6ff817bdb1e [file] [log] [blame]
Alexandre Julliard3a5816f1994-12-27 14:11:53 +000011. INTRODUCTION
Alexandre Julliard2c25c3e1993-06-29 16:33:12 +00002
Douglas Ridgway692389d1998-11-22 16:56:44 +00003Wine is a program which allows running Microsoft Windows programs
4(including DOS, Windows 3.x and Win32 executables) on Unix. It
James Juran0ff60a01999-04-26 14:57:06 +00005consists of a program loader which loads and executes a Microsoft
Douglas Ridgway692389d1998-11-22 16:56:44 +00006Windows binary, and a library that implements Windows API calls using
7their Unix or X11 equivalents. The library may also be used for
8porting Win32 code into native Unix executables.
Alexandre Julliard8d24ae61994-04-05 21:42:43 +00009
Douglas Ridgway692389d1998-11-22 16:56:44 +000010Wine is free software, and its license (contained in the file LICENSE)
11is BSD style. Basically, you can do anything with it except claim
12that you wrote it.
Alexandre Julliard1f579291994-05-25 16:25:21 +000013
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +0000142. QUICK START
Alexandre Julliard3a5816f1994-12-27 14:11:53 +000015
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +000016For the impatient, use the Wine Installer to build and install wine.
17From the top-level Wine directory (which contains this file), run:
18
19./tools/wineinstall
20
21Run programs as "wine [options] program". For more information and
22problem resolution, read the rest of this file, the Wine manpage,
23and the files in the documentation directory in the Wine source.
24
253. REQUIREMENTS
Alexandre Julliard401710d1993-09-04 10:09:32 +000026
James Juran0ff60a01999-04-26 14:57:06 +000027To compile and run Wine, you must have one of the following:
Alexandre Julliardf41aeca1993-09-14 16:47:10 +000028
Marcus Meissner9e153181999-04-19 16:19:25 +000029 Linux version 2.0.36 or above
30 FreeBSD-current or FreeBSD 3.0 or later
Alexandre Julliarda69b88b1998-03-15 20:29:56 +000031 Solaris x86 2.5 or later
Alexandre Julliardf41aeca1993-09-14 16:47:10 +000032
James Juran0ff60a01999-04-26 14:57:06 +000033Although Linux version 2.0.x will mostly work, certain features
34(specifically LDT sharing) required for properly supporting Win32
35threads were not implemented until kernel version 2.2. If you get
36consistent thread-related crashes, you may want to upgrade to 2.2.
Alexandre Julliard6abb89c1995-03-02 17:33:47 +000037
Juergen Lockca851391999-11-28 19:48:24 +000038Similarly if you are on FreeBSD you may want to apply an LDT sharing
Juergen Lock51721ff1999-12-20 03:54:43 +000039patch too (unless you are tracking -current where it finally has
40been committed just recently), and there also is a small sigtrap
41fix thats needed for wine's debugger. (Actually now that its using
42ptrace() by default it may no longer make a difference but it still
43doesn't hurt...) And if you're running a system from the -stable
44branch older than Nov 15 1999, like a 3.3-RELEASE, then you also
45need to apply a signal handling change that was MFC'd at that date.
46More information including patches for the -stable branch is in
47the ports tree:
Juergen Lockca851391999-11-28 19:48:24 +000048ftp://ftp.freebsd.org/pub/FreeBSD/FreeBSD-current/ports/emulators/wine/files/
Juergen Lockca851391999-11-28 19:48:24 +000049
James Juran0ff60a01999-04-26 14:57:06 +000050You also need to have libXpm installed on your system. The sources for
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +000051it are available at ftp.x.org and all its mirror sites in the directory
52/contrib/libraries. If you are using RedHat, libXpm is distributed as the
53xpm and xpm-devel packages. Debian distributes libXpm as xpm4.7, xpm4g,
54and xpm4g-dev 3.4j. SuSE calls these packages xpm and xpm-devel.
James Juran0ff60a01999-04-26 14:57:06 +000055
56On x86 Systems gcc >= 2.7.2 is required. You also need flex version 2.5
57or later and yacc. Bison will work as a replacement for yacc. If you are
58using RedHat, install the flex and bison packages.
59
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +0000604. COMPILATION
Alexandre Julliarda69b88b1998-03-15 20:29:56 +000061
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +000062To build Wine, run the following commands:
Alexandre Julliard401710d1993-09-04 10:09:32 +000063
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +000064./configure
65make depend
66make
67
68This will build the library "libwine.a" and the program "wine".
Alexandre Julliarda0b2b1d1997-11-16 17:38:29 +000069The program "wine" will load and run Windows executables.
70The library "libwine.a" can be used to compile and link Windows source
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +000071code under Unix.
72
73If you do not intend to compile Windows source code, use
74"./configure --disable-lib" to skip building the library and reduce disk
75space requirements. If you have an ELF compiler (which you probably do),
76you can use "./configure --enable-dll" to build a shared library instead.
77To see other configuration options, do ./configure --help.
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +000078
Alexandre Julliard3a5816f1994-12-27 14:11:53 +000079To upgrade to a new release by using a patch file, first cd to the
80top-level directory of the release (the one containing this README
81file). Then do a "make clean", and patch the release with:
82
83 gunzip -c patch-file | patch -p1
84
85where "patch-file" is the name of the patch file (something like
Alexandre Julliardff8331e1995-09-18 11:19:54 +000086Wine-yymmdd.diff.gz). You can then re-run "./configure", and then
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +000087run "make depend && make".
Alexandre Julliard8d24ae61994-04-05 21:42:43 +000088
89
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +0000905. SETUP
Alexandre Julliard8d24ae61994-04-05 21:42:43 +000091
Alexandre Julliard7e56f681996-01-31 19:02:28 +000092Once Wine has been built correctly, you can do "make install"; this
James Juran38a3d261999-01-01 18:45:52 +000093will install the wine executable, the Wine man page, and a few other
94needed files.
Alexandre Julliard7e56f681996-01-31 19:02:28 +000095
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +000096Wine requires a configuration file named wine.conf. Its default location is
97/usr/local/etc, but you can supply a different name when configuring wine by
98using the --prefix or --sysconfdir options to ./configure. You can also override
99the global configuration file with a .winerc file in your home directory.
Alexandre Julliard8d24ae61994-04-05 21:42:43 +0000100
Alexandre Julliard7e56f681996-01-31 19:02:28 +0000101The format of this file is explained in the man page. The file
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +0000102wine.ini contains an example configuration file which has to be adapted
Andreas Mohr8a829911999-01-30 13:40:05 +0000103and copied to one of the two locations mentioned above.
104
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +0000105See http://www.winehq.com/config.html for further configuration hints.
Alexandre Julliard8d24ae61994-04-05 21:42:43 +0000106
107
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +00001086. RUNNING PROGRAMS
Alexandre Julliard8d24ae61994-04-05 21:42:43 +0000109
James Juran38a3d261999-01-01 18:45:52 +0000110When invoking Wine, you may specify the entire path to the executable,
Alexandre Julliard8d24ae61994-04-05 21:42:43 +0000111or a filename only.
Alexandre Julliardf41aeca1993-09-14 16:47:10 +0000112
Douglas Ridgway692389d1998-11-22 16:56:44 +0000113For example: to run Solitaire:
Alexandre Julliard5f721f81994-01-04 20:14:34 +0000114
Alexandre Julliard8d24ae61994-04-05 21:42:43 +0000115 wine sol (using the searchpath to locate the file)
116 wine sol.exe
Alexandre Julliard5f721f81994-01-04 20:14:34 +0000117
Douglas Ridgway692389d1998-11-22 16:56:44 +0000118 wine c:\\windows\\sol.exe (using a DOS filename)
Alexandre Julliard5f721f81994-01-04 20:14:34 +0000119
Douglas Ridgway692389d1998-11-22 16:56:44 +0000120 wine /usr/windows/sol.exe (using a Unix filename)
Alexandre Julliardf41aeca1993-09-14 16:47:10 +0000121
Alexandre Julliard3a5816f1994-12-27 14:11:53 +0000122Note: the path of the file will also be added to the path when
Alexandre Julliard58199531994-04-21 01:20:00 +0000123 a full name is supplied on the commandline.
124
Douglas Ridgway692389d1998-11-22 16:56:44 +0000125Wine is not yet complete, so some programs may crash. You will be dropped
James Juran38a3d261999-01-01 18:45:52 +0000126into a debugger so that you can investigate and fix the problem. For more
127information on how to do this, please read the file documentation/debugging.
128If you post a bug report, please read the file documentation/bugreports to
129see what information is required.
130
Alexandre Julliard8d24ae61994-04-05 21:42:43 +0000131
Alexandre Julliardd6baf1b1999-07-18 15:47:22 +00001327. GETTING MORE INFORMATION
Alexandre Julliard8d24ae61994-04-05 21:42:43 +0000133
Andreas Mohr8cd93512000-01-29 21:12:58 +0000134DOCU: grep -i "SearchString" `find documentation/`|more
135
Ove Kaaven587729f1999-03-14 12:14:19 +0000136FAQ: The Wine FAQ is located at http://www.winehq.com/faq.html.
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000137
James Juran38a3d261999-01-01 18:45:52 +0000138WWW: A great deal of information about Wine is available from WineHQ at
Douglas Ridgway692389d1998-11-22 16:56:44 +0000139 http://www.winehq.com/. Untested patches against the current release
140 are available on the wine-patches mailing list; see
141 http://www.winehq.com/dev.html#ml for more information.
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000142
Andreas Mohr8cd93512000-01-29 21:12:58 +0000143HOWTO: The Wine HOWTO is available at
James Juran0ff60a01999-04-26 14:57:06 +0000144 http://www.westfalen.de/witch/wine-HOWTO.txt .
145
James Juran38a3d261999-01-01 18:45:52 +0000146Usenet: Please browse old messages on http://www.dejanews.com/ to check whether
147 your problem is already fixed before posting a bug report to the
148 newsgroup.
149
150 The best place to get help or to report bugs is the Usenet newsgroup
151 comp.emulators.ms-windows.wine. Please read the file
152 documentation/bugreports to see what information should be included
153 in a bug report.
154
Andreas Mohr8cd93512000-01-29 21:12:58 +0000155IRC: Online help is available at channel #WineHQ on IRCnet.
156
Alexandre Julliard9d7fbc41998-10-18 16:32:47 +0000157CVS: The current Wine development tree is available through CVS.
Douglas Ridgway692389d1998-11-22 16:56:44 +0000158 Go to http://www.winehq.com/dev.html for more information.
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000159
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000160If you add something, or fix a bug, please send a patch ('diff -u'
Alexandre Julliard0c126c71996-02-18 18:44:41 +0000161format preferred) to julliard@lrc.epfl.ch for inclusion in the next
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000162release.
Alexandre Julliard8d24ae61994-04-05 21:42:43 +0000163
Alexandre Julliard3a5816f1994-12-27 14:11:53 +0000164--
165Alexandre Julliard
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000166julliard@lrc.epfl.ch