Alexandre Julliard | 3a5816f | 1994-12-27 14:11:53 +0000 | [diff] [blame] | 1 | 1. INTRODUCTION |
Alexandre Julliard | 2c25c3e | 1993-06-29 16:33:12 +0000 | [diff] [blame] | 2 | |
Douglas Ridgway | 692389d | 1998-11-22 16:56:44 +0000 | [diff] [blame] | 3 | Wine is a program which allows running Microsoft Windows programs |
| 4 | (including DOS, Windows 3.x and Win32 executables) on Unix. It |
James Juran | 0ff60a0 | 1999-04-26 14:57:06 +0000 | [diff] [blame] | 5 | consists of a program loader which loads and executes a Microsoft |
Andreas Mohr | 3d2a38c | 2001-06-29 01:41:03 +0000 | [diff] [blame] | 6 | Windows binary, and a library (called Winelib) that implements Windows |
| 7 | API calls using their Unix or X11 equivalents. The library may also |
| 8 | be used for porting Win32 code into native Unix executables. |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 9 | |
Martin Garton | 89894ff | 2002-03-20 00:59:27 +0000 | [diff] [blame] | 10 | Wine is free software, released under the GNU LGPL; see the file |
| 11 | LICENSE for the details. |
Alexandre Julliard | 1f57929 | 1994-05-25 16:25:21 +0000 | [diff] [blame] | 12 | |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 13 | 2. QUICK START |
Alexandre Julliard | 3a5816f | 1994-12-27 14:11:53 +0000 | [diff] [blame] | 14 | |
Andreas Mohr | 581fc92 | 2000-09-18 01:40:32 +0000 | [diff] [blame] | 15 | Whenever you compile from source, it is recommended to use the Wine |
Andreas Mohr | a0ff2b4 | 2002-02-27 01:30:32 +0000 | [diff] [blame] | 16 | Installer to build and install Wine. From the top-level directory |
| 17 | of the Wine source (which contains this file), run: |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 18 | |
| 19 | ./tools/wineinstall |
| 20 | |
| 21 | Run programs as "wine [options] program". For more information and |
Andreas Mohr | 3d2a38c | 2001-06-29 01:41:03 +0000 | [diff] [blame] | 22 | problem resolution, read the rest of this file, the Wine man page, |
Andreas Mohr | a0ff2b4 | 2002-02-27 01:30:32 +0000 | [diff] [blame] | 23 | the files in the documentation directory of the Wine source |
Andreas Mohr | b6e8418 | 2002-02-02 18:03:55 +0000 | [diff] [blame] | 24 | (see "DOCUMENTATION"), and especially the wealth of information |
Dimitrie O. Paun | c023254 | 2003-11-26 03:55:01 +0000 | [diff] [blame] | 25 | found at http://www.winehq.org. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 26 | |
| 27 | 3. REQUIREMENTS |
Alexandre Julliard | 401710d | 1993-09-04 10:09:32 +0000 | [diff] [blame] | 28 | |
James Juran | 0ff60a0 | 1999-04-26 14:57:06 +0000 | [diff] [blame] | 29 | To compile and run Wine, you must have one of the following: |
Alexandre Julliard | f41aeca | 1993-09-14 16:47:10 +0000 | [diff] [blame] | 30 | |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 31 | Linux version 2.0.36 or above |
| 32 | FreeBSD 4.x or FreeBSD 5-CURRENT or later |
| 33 | Solaris x86 2.5 or later |
| 34 | NetBSD-current |
| 35 | |
| 36 | As Wine requires kernel-level thread support to run, only the operating |
| 37 | systems mentioned above are supported. |
| 38 | Other operating systems which support kernel threads may be supported |
| 39 | in the future. |
Alexandre Julliard | f41aeca | 1993-09-14 16:47:10 +0000 | [diff] [blame] | 40 | |
Andreas Mohr | c9ec884 | 2001-01-24 19:37:13 +0000 | [diff] [blame] | 41 | Linux info: |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 42 | While Linux 2.2.x should still work and Linux 2.0.x may still work |
| 43 | (older 2.0.x versions had thread-related crashes), |
| 44 | it's best to have a current kernel such as 2.4.x. |
Alexandre Julliard | 6abb89c | 1995-03-02 17:33:47 +0000 | [diff] [blame] | 45 | |
Andreas Mohr | c9ec884 | 2001-01-24 19:37:13 +0000 | [diff] [blame] | 46 | FreeBSD info: |
Gerald Pfeifer | 25a3879 | 2002-06-05 17:26:57 +0000 | [diff] [blame] | 47 | Make sure you have the USER_LDT, SYSVSHM, SYSVSEM, and SYSVMSG |
| 48 | options turned on in your kernel. More information is in the ports |
| 49 | tree: ftp://ftp.freebsd.org/pub/FreeBSD/ports/ports/emulators/wine/ |
Andreas Mohr | c9ec884 | 2001-01-24 19:37:13 +0000 | [diff] [blame] | 50 | |
| 51 | Solaris info: |
Gerald Pfeifer | d2b2289 | 2001-07-20 17:56:59 +0000 | [diff] [blame] | 52 | You will most likely need to build Wine with the GNU toolchain |
Gerard Patel | 2895e7f | 2001-10-16 21:47:51 +0000 | [diff] [blame] | 53 | (gcc, gas, etc.). Warning : installing gas does *not* ensure that it |
Andreas Mohr | a5589d5 | 2002-06-04 23:09:34 +0000 | [diff] [blame] | 54 | will be used by gcc. Recompiling gcc after installing gas or |
Gerard Patel | 2895e7f | 2001-10-16 21:47:51 +0000 | [diff] [blame] | 55 | symlinking cc, as and ld to the gnu tools is said to be necessary. |
| 56 | |
Bang Jun-Young | 9048c49 | 2001-12-19 18:48:45 +0000 | [diff] [blame] | 57 | NetBSD info: |
| 58 | Make sure you have the USER_LDT, SYSVSHM, SYSVSEM, and SYSVMSG options |
| 59 | turned on in your kernel. |
| 60 | |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 61 | |
| 62 | |
| 63 | Supported file systems: |
Gerard Patel | 2895e7f | 2001-10-16 21:47:51 +0000 | [diff] [blame] | 64 | Wine should run on most file systems. However, Wine will fail to start |
| 65 | if umsdos is used for the /tmp directory. A few compatibility problems have |
Andreas Mohr | a0ff2b4 | 2002-02-27 01:30:32 +0000 | [diff] [blame] | 66 | also been reported using files accessed through Samba. Also, as NTFS |
| 67 | can only be used safely with readonly access for now, we recommend against |
| 68 | using NTFS, as Windows programs need write access almost everywhere. |
| 69 | In case of NTFS files, copy over to a writable location. |
Andreas Mohr | c9ec884 | 2001-01-24 19:37:13 +0000 | [diff] [blame] | 70 | |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 71 | Basic requirements: |
| 72 | You need to have the X11 development include files installed |
| 73 | (called xlib6g-dev in Debian and XFree86-devel in RedHat). |
Juergen Lock | ca85139 | 1999-11-28 19:48:24 +0000 | [diff] [blame] | 74 | |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 75 | Build tool requirements: |
| 76 | On x86 Systems gcc >= 2.7.2 is required. |
| 77 | Versions earlier than 2.7.2.3 may have problems when certain files |
| 78 | are compiled with optimization, often due to problems with header file |
| 79 | management. pgcc currently doesn't work with Wine. The cause of this problem |
| 80 | is unknown. |
Andreas Mohr | c165bca | 2000-10-22 23:47:27 +0000 | [diff] [blame] | 81 | |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 82 | Of course you also need "make" (most likely GNU make). |
Andreas Mohr | c9ec884 | 2001-01-24 19:37:13 +0000 | [diff] [blame] | 83 | |
Mike McCormack | c068f67 | 2004-03-16 03:11:39 +0000 | [diff] [blame] | 84 | You also need flex version 2.5 or later and bison. If you are |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 85 | using RedHat or Debian, install the flex and bison packages. |
Andreas Mohr | a5589d5 | 2002-06-04 23:09:34 +0000 | [diff] [blame] | 86 | |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 87 | Optional support libraries: |
| 88 | If you want CUPS printing support, please install both cups and cups-devel |
| 89 | packages. |
James Juran | 0ff60a0 | 1999-04-26 14:57:06 +0000 | [diff] [blame] | 90 | |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 91 | For the automatic processing of the test suite scripts, you also need |
| 92 | libperl development header support (libperl-dev package on Debian). |
Andreas Mohr | a5589d5 | 2002-06-04 23:09:34 +0000 | [diff] [blame] | 93 | |
Andreas Mohr | b6e8418 | 2002-02-02 18:03:55 +0000 | [diff] [blame] | 94 | For requirements in case you intend to build the documentation yourself, |
| 95 | see "DOCUMENTATION" section. |
Joerg Mayer | 0ee5f8c | 2001-02-20 01:54:50 +0000 | [diff] [blame] | 96 | |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 97 | 4. COMPILATION |
Alexandre Julliard | a69b88b | 1998-03-15 20:29:56 +0000 | [diff] [blame] | 98 | |
Andreas Mohr | c9ec884 | 2001-01-24 19:37:13 +0000 | [diff] [blame] | 99 | In case you chose to not use wineinstall, run the following commands |
| 100 | to build Wine: |
Alexandre Julliard | 401710d | 1993-09-04 10:09:32 +0000 | [diff] [blame] | 101 | |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 102 | ./configure |
| 103 | make depend |
| 104 | make |
| 105 | |
Andreas Mohr | a5589d5 | 2002-06-04 23:09:34 +0000 | [diff] [blame] | 106 | This will build the program "wine" and numerous support libraries/binaries. |
Alexandre Julliard | a0b2b1d | 1997-11-16 17:38:29 +0000 | [diff] [blame] | 107 | The program "wine" will load and run Windows executables. |
Andreas Mohr | 1af53cb | 2000-12-09 03:15:32 +0000 | [diff] [blame] | 108 | The library "libwine" ("Winelib") can be used to compile and link |
| 109 | Windows source code under Unix. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 110 | |
Andreas Mohr | 1af53cb | 2000-12-09 03:15:32 +0000 | [diff] [blame] | 111 | To see compile configuration options, do ./configure --help. |
Alexandre Julliard | e2bfa4c | 1996-05-16 18:21:06 +0000 | [diff] [blame] | 112 | |
Alexandre Julliard | 3a5816f | 1994-12-27 14:11:53 +0000 | [diff] [blame] | 113 | To upgrade to a new release by using a patch file, first cd to the |
| 114 | top-level directory of the release (the one containing this README |
| 115 | file). Then do a "make clean", and patch the release with: |
| 116 | |
| 117 | gunzip -c patch-file | patch -p1 |
| 118 | |
| 119 | where "patch-file" is the name of the patch file (something like |
Alexandre Julliard | ff8331e | 1995-09-18 11:19:54 +0000 | [diff] [blame] | 120 | Wine-yymmdd.diff.gz). You can then re-run "./configure", and then |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 121 | run "make depend && make". |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 122 | |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 123 | 5. SETUP |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 124 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 125 | Once Wine has been built correctly, you can do "make install"; this |
James Juran | 38a3d26 | 1999-01-01 18:45:52 +0000 | [diff] [blame] | 126 | will install the wine executable, the Wine man page, and a few other |
| 127 | needed files. |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 128 | |
Andreas Mohr | de53c48 | 2001-04-09 18:32:16 +0000 | [diff] [blame] | 129 | Don't forget to uninstall any conflicting previous Wine installation |
| 130 | first. Try either "dpkg -r wine" or "rpm -e wine" or "make uninstall" |
| 131 | before installing. |
| 132 | |
Andreas Mohr | b6e8418 | 2002-02-02 18:03:55 +0000 | [diff] [blame] | 133 | If you want to read the documentation supplied with the Wine source, |
Andreas Mohr | a0ff2b4 | 2002-02-27 01:30:32 +0000 | [diff] [blame] | 134 | see the "DOCUMENTATION" section. |
Joerg Mayer | 0ee5f8c | 2001-02-20 01:54:50 +0000 | [diff] [blame] | 135 | |
Andreas Mohr | 3d2a38c | 2001-06-29 01:41:03 +0000 | [diff] [blame] | 136 | Wine requires a configuration file named named "config" in your |
Andreas Mohr | 7bed696 | 2001-09-19 22:34:38 +0000 | [diff] [blame] | 137 | ~/.wine directory. The format of this file is explained in the config file |
| 138 | man page (documentation/wine.conf.man). |
| 139 | The file documentation/samples/config contains an example configuration file |
| 140 | which has to be adapted and copied to the location mentioned above. |
Andreas Mohr | 8a82991 | 1999-01-30 13:40:05 +0000 | [diff] [blame] | 141 | |
Dimitrie O. Paun | c023254 | 2003-11-26 03:55:01 +0000 | [diff] [blame] | 142 | See the Support area at http://www.winehq.org/ for further |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 143 | configuration hints. |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 144 | |
Andreas Mohr | a0ff2b4 | 2002-02-27 01:30:32 +0000 | [diff] [blame] | 145 | In case of library loading errors |
| 146 | (e.g. "Error while loading shared libraries: libntdll.so"), make sure |
| 147 | to add the library path to /etc/ld.so.conf and run ldconfig as root. |
| 148 | |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 149 | 6. RUNNING PROGRAMS |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 150 | |
James Juran | 38a3d26 | 1999-01-01 18:45:52 +0000 | [diff] [blame] | 151 | When invoking Wine, you may specify the entire path to the executable, |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 152 | or a filename only. |
Alexandre Julliard | f41aeca | 1993-09-14 16:47:10 +0000 | [diff] [blame] | 153 | |
Douglas Ridgway | 692389d | 1998-11-22 16:56:44 +0000 | [diff] [blame] | 154 | For example: to run Solitaire: |
Alexandre Julliard | 5f721f8 | 1994-01-04 20:14:34 +0000 | [diff] [blame] | 155 | |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 156 | wine sol (using the search Path as specified in |
| 157 | wine sol.exe the config file to locate the file) |
Alexandre Julliard | 5f721f8 | 1994-01-04 20:14:34 +0000 | [diff] [blame] | 158 | |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 159 | wine c:\\windows\\sol.exe (using DOS filename syntax) |
Alexandre Julliard | 5f721f8 | 1994-01-04 20:14:34 +0000 | [diff] [blame] | 160 | |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 161 | wine /usr/windows/sol.exe (using Unix filename syntax) |
| 162 | |
Dimitrie O. Paun | f950d97 | 2004-05-06 23:51:43 +0000 | [diff] [blame] | 163 | wine sol.exe /parameter1 -parameter2 parameter3 |
Andreas Mohr | c08b948 | 2003-04-04 22:12:21 +0000 | [diff] [blame] | 164 | (calling program with parameters) |
Alexandre Julliard | f41aeca | 1993-09-14 16:47:10 +0000 | [diff] [blame] | 165 | |
Alexandre Julliard | 3a5816f | 1994-12-27 14:11:53 +0000 | [diff] [blame] | 166 | Note: the path of the file will also be added to the path when |
Alexandre Julliard | 5819953 | 1994-04-21 01:20:00 +0000 | [diff] [blame] | 167 | a full name is supplied on the commandline. |
| 168 | |
Andreas Mohr | b6e8418 | 2002-02-02 18:03:55 +0000 | [diff] [blame] | 169 | Wine is not yet complete, so several programs may crash. Provided you set up |
Andreas Mohr | 581fc92 | 2000-09-18 01:40:32 +0000 | [diff] [blame] | 170 | winedbg correctly according to documentation/debugger.sgml, you will be dropped |
Andreas Mohr | a0ff2b4 | 2002-02-27 01:30:32 +0000 | [diff] [blame] | 171 | into a debugger so that you can investigate and fix the problem. |
| 172 | For more information on how to do this, please read the file |
| 173 | documentation/debugging.sgml. |
James Juran | 38a3d26 | 1999-01-01 18:45:52 +0000 | [diff] [blame] | 174 | |
Andreas Mohr | a6d83eb | 2000-12-27 04:02:46 +0000 | [diff] [blame] | 175 | You should backup all your important files that you give Wine access |
| 176 | to, or use a special Wine copy of them, as there have been some cases |
| 177 | of users reporting file corruption. Do NOT run Explorer, for instance, |
| 178 | if you don't have a proper backup, as it renames/cripples several |
Andreas Mohr | 7bed696 | 2001-09-19 22:34:38 +0000 | [diff] [blame] | 179 | directories sometimes. Not even other MS apps such as e.g. Messenger are safe, |
| 180 | as they launch Explorer somehow. This particular corruption (!$!$!$!$.pfr) |
Andreas Mohr | a69c039 | 2001-12-26 20:40:47 +0000 | [diff] [blame] | 181 | can at least partially be fixed by using |
| 182 | http://home.nexgo.de/andi.mohr/download/decorrupt_explorer |
Andreas Mohr | a6d83eb | 2000-12-27 04:02:46 +0000 | [diff] [blame] | 183 | |
Andreas Mohr | b6e8418 | 2002-02-02 18:03:55 +0000 | [diff] [blame] | 184 | 7. DOCUMENTATION |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 185 | |
Andreas Mohr | b6e8418 | 2002-02-02 18:03:55 +0000 | [diff] [blame] | 186 | Some documentation (various Wine Guides etc.) can be found in the |
| 187 | documentation/ directory (apart from also being available on WineHQ). |
| 188 | |
Alexandre Julliard | 5b80ce3 | 2002-07-01 18:23:38 +0000 | [diff] [blame] | 189 | If you want to process the SGML files in there, then you can run "make doc" |
Andreas Mohr | b6e8418 | 2002-02-02 18:03:55 +0000 | [diff] [blame] | 190 | in the documentation/ directory. |
| 191 | Doing so requires the sgml tools package (for db2html, db2ps, db2pdf) named: |
| 192 | Debian: docbook-utils |
| 193 | Mandrake: sgml-tools-A.B.C-DDmdk |
| 194 | SuSE: docbktls-A.BB.C-DD |
| 195 | |
| 196 | 8. GETTING MORE INFORMATION |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 197 | |
Andreas Mohr | 3d2a38c | 2001-06-29 01:41:03 +0000 | [diff] [blame] | 198 | WWW: A great deal of information about Wine is available from WineHQ at |
Dimitrie O. Paun | c023254 | 2003-11-26 03:55:01 +0000 | [diff] [blame] | 199 | http://www.winehq.org/ : various Wine Guides, application database, |
Andreas Mohr | 3d2a38c | 2001-06-29 01:41:03 +0000 | [diff] [blame] | 200 | bug tracking. This is probably the best starting point. |
Andreas Mohr | 8cd9351 | 2000-01-29 21:12:58 +0000 | [diff] [blame] | 201 | |
Dimitrie O. Paun | c023254 | 2003-11-26 03:55:01 +0000 | [diff] [blame] | 202 | FAQ: The Wine FAQ is located at http://www.winehq.org/FAQ |
Alexandre Julliard | 46ea8b3 | 1998-05-03 19:01:20 +0000 | [diff] [blame] | 203 | |
Andriy Palamarchuk | ac3a9a3 | 2002-05-04 18:41:27 +0000 | [diff] [blame] | 204 | Usenet: You can discuss Wine-related issues and get help |
| 205 | on comp.emulators.ms-windows.wine. |
| 206 | |
Dimitrie O. Paun | c023254 | 2003-11-26 03:55:01 +0000 | [diff] [blame] | 207 | Bugs: Report bugs to Wine Bugzilla at http://bugs.winehq.org |
Andriy Palamarchuk | ac3a9a3 | 2002-05-04 18:41:27 +0000 | [diff] [blame] | 208 | Please search the bugzilla database to check whether your |
| 209 | problem is already found before posting a bug report. You can |
| 210 | also post bug reports to comp.emulators.ms-windows.wine. |
| 211 | Please read the file documentation/bugs.sgml to see what |
| 212 | information is required. |
| 213 | |
Jeff Smith | 344ed41 | 2002-12-24 00:56:33 +0000 | [diff] [blame] | 214 | IRC: Online help is available at channel #WineHQ on irc.freenode.net. |
Andreas Mohr | 8cd9351 | 2000-01-29 21:12:58 +0000 | [diff] [blame] | 215 | |
Alexandre Julliard | 9d7fbc4 | 1998-10-18 16:32:47 +0000 | [diff] [blame] | 216 | CVS: The current Wine development tree is available through CVS. |
Dimitrie O. Paun | c023254 | 2003-11-26 03:55:01 +0000 | [diff] [blame] | 217 | Go to http://www.winehq.org/cvs for more information. |
Alexandre Julliard | 46ea8b3 | 1998-05-03 19:01:20 +0000 | [diff] [blame] | 218 | |
Andreas Mohr | 3d2a38c | 2001-06-29 01:41:03 +0000 | [diff] [blame] | 219 | Mailing lists: |
Andreas Mohr | a5589d5 | 2002-06-04 23:09:34 +0000 | [diff] [blame] | 220 | There are several mailing lists for Wine developers; see |
Dimitrie O. Paun | c023254 | 2003-11-26 03:55:01 +0000 | [diff] [blame] | 221 | http://www.winehq.org/forums for more information. |
Andreas Mohr | 3d2a38c | 2001-06-29 01:41:03 +0000 | [diff] [blame] | 222 | |
Andreas Mohr | b6e8418 | 2002-02-02 18:03:55 +0000 | [diff] [blame] | 223 | If you add something, or fix a bug, please send a patch (in 'diff -u' |
Dimitrie O. Paun | c023254 | 2003-11-26 03:55:01 +0000 | [diff] [blame] | 224 | format) to wine-patches@winehq.org list for inclusion in the next |
Andriy Palamarchuk | ac3a9a3 | 2002-05-04 18:41:27 +0000 | [diff] [blame] | 225 | release. |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 226 | |
Alexandre Julliard | 3a5816f | 1994-12-27 14:11:53 +0000 | [diff] [blame] | 227 | -- |
| 228 | Alexandre Julliard |
Dimitrie O. Paun | c023254 | 2003-11-26 03:55:01 +0000 | [diff] [blame] | 229 | julliard@winehq.org |