Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 1 | .\" -*- nroff -*- |
Alexandre Julliard | 12a7499 | 2005-10-06 16:10:01 +0000 | [diff] [blame] | 2 | .TH WINE 1 "October 2005" "@PACKAGE_STRING@" "Windows On Unix" |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 3 | .SH NAME |
Douglas Ridgway | 692389d | 1998-11-22 16:56:44 +0000 | [diff] [blame] | 4 | wine \- run Windows programs on Unix |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 5 | .SH SYNOPSIS |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 6 | .BI "wine " program |
| 7 | [arguments ... ] |
Dimitrie O. Paun | f950d97 | 2004-05-06 23:51:43 +0000 | [diff] [blame] | 8 | .br |
| 9 | .B wine --help |
| 10 | .br |
| 11 | .B wine --version |
James Juran | 38a3d26 | 1999-01-01 18:45:52 +0000 | [diff] [blame] | 12 | .PP |
Andreas Mohr | 70c82e8 | 2002-10-29 23:13:01 +0000 | [diff] [blame] | 13 | For instructions on passing arguments to Windows programs, please see the |
James Juran | 38a3d26 | 1999-01-01 18:45:52 +0000 | [diff] [blame] | 14 | .B |
| 15 | PROGRAM/ARGUMENTS |
| 16 | section of the man page. |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 17 | .SH DESCRIPTION |
| 18 | .B wine |
Alexandre Julliard | bb4ddfe | 2003-12-05 00:17:41 +0000 | [diff] [blame] | 19 | loads and runs the given program, where the program is a DOS, Windows |
| 20 | 3.x, or Win32 executable (x86 binaries only). |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 21 | .PP |
Andreas Mohr | 6f83a5e | 2000-07-16 15:43:07 +0000 | [diff] [blame] | 22 | For debugging wine, use |
| 23 | .B winedbg |
Andreas Mohr | 6f83a5e | 2000-07-16 15:43:07 +0000 | [diff] [blame] | 24 | instead. |
| 25 | .PP |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 26 | For running CUI executables (Windows console programs), use |
| 27 | .B wineconsole |
| 28 | instead of |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 29 | .BR wine . |
Alexandre Julliard | bb4ddfe | 2003-12-05 00:17:41 +0000 | [diff] [blame] | 30 | This will display all the output in a separate windows (this requires X11 to |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 31 | run). Not using |
| 32 | .B wineconsole |
| 33 | for CUI programs will only provide very limited console support, and your |
| 34 | program might not function properly. |
| 35 | .PP |
Dimitrie O. Paun | f950d97 | 2004-05-06 23:51:43 +0000 | [diff] [blame] | 36 | When invoked with |
| 37 | .B --help |
| 38 | or |
| 39 | .B --version |
| 40 | as the only argument, |
| 41 | .B wine |
| 42 | will simply print a small help message or its version respectively and exit. |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 43 | .SH PROGRAM/ARGUMENTS |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 44 | The program name may be specified in DOS format |
| 45 | .RI ( C:\(rs\(rsWINDOWS\(rs\(rsSOL.EXE ) |
| 46 | or in Unix format |
| 47 | .RI ( /msdos/windows/sol.exe ). |
| 48 | You may pass arguments to the program being executed by adding them to the |
| 49 | end of the command line invoking |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 50 | .B wine |
Andreas Mohr | da920ee | 2001-08-09 21:16:55 +0000 | [diff] [blame] | 51 | (such as: wine notepad C:\(rs\(rsTEMP\(rs\(rsREADME.TXT). |
| 52 | Note that you need to '\(rs' escape special characters (and spaces) when invoking Wine via |
| 53 | a shell, e.g. |
| 54 | .PP |
| 55 | wine C:\(rs\(rsProgram\(rs Files\(rs\(rsMyPrg\(rs\(rstest.exe |
| 56 | .PP |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 57 | .SH ENVIRONMENT VARIABLES |
| 58 | .B wine |
| 59 | makes the environment variables of the shell from which |
| 60 | .B wine |
| 61 | is started accessible to the windows/dos processes started. So use the |
| 62 | appropriate syntax for your shell to enter environment variables you need. |
Peter Ganten | 48320f7 | 2000-06-03 20:43:41 +0000 | [diff] [blame] | 63 | .TP |
| 64 | .I WINEPREFIX |
Andreas Mohr | ff96f91 | 2000-11-28 22:35:20 +0000 | [diff] [blame] | 65 | If set, the content of this variable is taken as the name of the directory where |
Peter Ganten | 48320f7 | 2000-06-03 20:43:41 +0000 | [diff] [blame] | 66 | .B wine |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 67 | stores its data (the default is |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 68 | .IR $HOME/.wine ). |
| 69 | This directory is also used to identify the socket which is used to |
Alexandre Julliard | 553a75e | 2004-04-29 00:27:57 +0000 | [diff] [blame] | 70 | communicate with the |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 71 | .IR wineserver . |
Peter Ganten | 48320f7 | 2000-06-03 20:43:41 +0000 | [diff] [blame] | 72 | All |
| 73 | .B wine |
Andreas Mohr | ff96f91 | 2000-11-28 22:35:20 +0000 | [diff] [blame] | 74 | processes using the same |
Peter Ganten | 48320f7 | 2000-06-03 20:43:41 +0000 | [diff] [blame] | 75 | .B wineserver |
Lawson Whitney | b37b863 | 2001-08-06 17:49:11 +0000 | [diff] [blame] | 76 | (i.e.: same user) share certain things like registry, shared memory, |
| 77 | and config file. |
Andreas Mohr | ff96f91 | 2000-11-28 22:35:20 +0000 | [diff] [blame] | 78 | By setting |
Peter Ganten | 48320f7 | 2000-06-03 20:43:41 +0000 | [diff] [blame] | 79 | .I WINEPREFIX |
| 80 | to different values for different |
| 81 | .B wine |
| 82 | processes, it is possible to run a number of truly independent |
| 83 | .B wine |
| 84 | processes. |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 85 | .TP |
| 86 | .I WINESERVER |
| 87 | Specifies the path and name of the |
| 88 | .B wineserver |
Alexandre Julliard | 3536316 | 2002-05-22 21:32:49 +0000 | [diff] [blame] | 89 | binary. If not set, Wine will try to load |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 90 | .BR @bindir@/wineserver , |
Alexandre Julliard | 8c08ceb | 2002-05-23 19:35:18 +0000 | [diff] [blame] | 91 | and if this doesn't exist it will then look for a file named |
| 92 | "wineserver" in the path and in a few other likely locations. |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 93 | .TP |
| 94 | .I WINELOADER |
| 95 | Specifies the path and name of the |
| 96 | .B wine |
Alexandre Julliard | 3536316 | 2002-05-22 21:32:49 +0000 | [diff] [blame] | 97 | binary to use to launch new Windows processes. If not set, Wine will |
| 98 | try to load |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 99 | .BR @bindir@/wine , |
Alexandre Julliard | 8c08ceb | 2002-05-23 19:35:18 +0000 | [diff] [blame] | 100 | and if this doesn't exist it will then look for a file named "wine" in |
Alexandre Julliard | 3536316 | 2002-05-22 21:32:49 +0000 | [diff] [blame] | 101 | the path and in a few other likely locations. |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 102 | .TP |
Alexandre Julliard | bb4ddfe | 2003-12-05 00:17:41 +0000 | [diff] [blame] | 103 | .I WINEDEBUG |
| 104 | Turns debugging messages on or off. The syntax of the variable is |
Alexandre Julliard | 8a37297 | 2004-03-11 23:22:29 +0000 | [diff] [blame] | 105 | of the form |
| 106 | .RI [ class ][+/-] channel [,[ class2 ][+/-] channel2 ]. |
| 107 | .RS +7 |
| 108 | .PP |
| 109 | .I class |
| 110 | is optional and can be one of the following: |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 111 | .BR err , |
| 112 | .BR warn , |
| 113 | .BR fixme , |
Alexandre Julliard | 8a37297 | 2004-03-11 23:22:29 +0000 | [diff] [blame] | 114 | or |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 115 | .BR trace . |
Alexandre Julliard | 8a37297 | 2004-03-11 23:22:29 +0000 | [diff] [blame] | 116 | If |
| 117 | .I class |
| 118 | is not specified, all debugging messages for the specified |
| 119 | channel are turned on. Each channel will print messages about a particular |
| 120 | component of |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 121 | .BR wine . |
Alexandre Julliard | 8a37297 | 2004-03-11 23:22:29 +0000 | [diff] [blame] | 122 | The following character can be either + or - to switch the specified |
| 123 | channel on or off respectively. If there is no |
| 124 | .I class |
| 125 | part before it, a leading + can be omitted. Note that spaces are not |
| 126 | allowed anywhere in the string. |
| 127 | .PP |
| 128 | Examples: |
| 129 | .TP |
| 130 | WINEDEBUG=warn+all |
| 131 | will turn on all warning messages (recommended for debugging). |
| 132 | .br |
| 133 | .TP |
| 134 | WINEDEBUG=warn+dll,+heap |
| 135 | will turn on DLL warning messages and all heap messages. |
| 136 | .br |
| 137 | .TP |
| 138 | WINEDEBUG=fixme-all,warn+cursor,+relay |
| 139 | will turn off all FIXME messages, turn on cursor warning messages, and turn |
| 140 | on all relay messages (API calls). |
| 141 | .br |
| 142 | .TP |
| 143 | WINEDEBUG=relay |
| 144 | will turn on all relay messages. For more control on including or excluding |
| 145 | functions and dlls from the relay trace look into the [Debug] section |
| 146 | of the wine configuration file. |
| 147 | .PP |
| 148 | For more information on debugging messages, see the |
| 149 | .I Running Wine |
| 150 | chapter of the Wine User Guide. |
| 151 | .RE |
Alexandre Julliard | bb4ddfe | 2003-12-05 00:17:41 +0000 | [diff] [blame] | 152 | .TP |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 153 | .I WINEDLLPATH |
Alexandre Julliard | 3536316 | 2002-05-22 21:32:49 +0000 | [diff] [blame] | 154 | Specifies the path(s) in which to search for builtin dlls and Winelib |
| 155 | applications. This is a list of directories separated by ":". In |
| 156 | addition to any directory specified in |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 157 | .IR WINEDLLPATH , |
Alexandre Julliard | 3536316 | 2002-05-22 21:32:49 +0000 | [diff] [blame] | 158 | Wine will also look in |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 159 | .BR @dlldir@ . |
Alexandre Julliard | 26320d1 | 2001-03-23 23:45:45 +0000 | [diff] [blame] | 160 | .TP |
Alexandre Julliard | 2052538 | 2003-09-25 20:33:41 +0000 | [diff] [blame] | 161 | .I WINEDLLOVERRIDES |
| 162 | Defines the override type and load order of dlls used in the loading |
| 163 | process for any dll. The default is set in the configuration |
| 164 | file. There are currently two types of libraries that can be loaded |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 165 | into a process' address space: native windows dlls |
| 166 | .RI ( native ), |
Alexandre Julliard | 2052538 | 2003-09-25 20:33:41 +0000 | [diff] [blame] | 167 | .B wine |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 168 | internal dlls |
| 169 | .RI ( builtin ). |
| 170 | The type may be abbreviated with the first letter of the type |
| 171 | .RI ( n ", " b ). |
| 172 | The library may also be disabled (''). Each sequence of orders must be separated by commas. |
Alexandre Julliard | 8a37297 | 2004-03-11 23:22:29 +0000 | [diff] [blame] | 173 | .RS |
| 174 | .PP |
Alexandre Julliard | 2052538 | 2003-09-25 20:33:41 +0000 | [diff] [blame] | 175 | Each dll may have its own specific load order. The load order |
| 176 | determines which version of the dll is attempted to be loaded into the |
| 177 | address space. If the first fails, then the next is tried and so |
| 178 | on. Multiple libraries with the same load order can be separated with |
| 179 | commas. It is also possible to use specify different loadorders for |
| 180 | different libraries by separating the entries by ";". |
Alexandre Julliard | 8a37297 | 2004-03-11 23:22:29 +0000 | [diff] [blame] | 181 | .PP |
Alexandre Julliard | 7412125 | 2004-01-05 21:19:22 +0000 | [diff] [blame] | 182 | The load order for a 16-bit dll is always defined by the load order of |
| 183 | the 32-bit dll that contains it (which can be identified by looking at |
| 184 | the symbolic link of the 16-bit .dll.so file). For instance if |
| 185 | ole32.dll is configured as builtin, storage.dll will be loaded as |
| 186 | builtin too, since the 32-bit ole32.dll contains the 16-bit |
| 187 | storage.dll. |
Alexandre Julliard | 8a37297 | 2004-03-11 23:22:29 +0000 | [diff] [blame] | 188 | .PP |
Alexandre Julliard | 2052538 | 2003-09-25 20:33:41 +0000 | [diff] [blame] | 189 | Examples: |
Alexandre Julliard | 2052538 | 2003-09-25 20:33:41 +0000 | [diff] [blame] | 190 | .TP |
Alexandre Julliard | 7412125 | 2004-01-05 21:19:22 +0000 | [diff] [blame] | 191 | WINEDLLOVERRIDES="comdlg32,shell32=n,b" |
Alexandre Julliard | 2052538 | 2003-09-25 20:33:41 +0000 | [diff] [blame] | 192 | .br |
Alexandre Julliard | 7412125 | 2004-01-05 21:19:22 +0000 | [diff] [blame] | 193 | Try to load comdlg32 and shell32 as native windows dll first and try |
Alexandre Julliard | 2052538 | 2003-09-25 20:33:41 +0000 | [diff] [blame] | 194 | the builtin version if the native load fails. |
| 195 | .TP |
Alexandre Julliard | 7412125 | 2004-01-05 21:19:22 +0000 | [diff] [blame] | 196 | WINEDLLOVERRIDES="comdlg32,shell32=n;c:\(rs\(rsfoo\(rs\(rsbar\(rs\(rsbaz=b" |
Alexandre Julliard | 2052538 | 2003-09-25 20:33:41 +0000 | [diff] [blame] | 197 | .br |
Alexandre Julliard | 7412125 | 2004-01-05 21:19:22 +0000 | [diff] [blame] | 198 | Try to load the libraries comdlg32 and shell32 as native windows dlls. Furthermore, if |
Alexandre Julliard | 2052538 | 2003-09-25 20:33:41 +0000 | [diff] [blame] | 199 | an application request to load c:\(rsfoo\(rsbar\(rsbaz.dll load the builtin library baz. |
| 200 | .TP |
Austin English | 5e10ef0 | 2008-01-10 16:11:11 -0600 | [diff] [blame] | 201 | WINEDLLOVERRIDES="comdlg32=b,n;shell32=b;comctl32=n;oleaut32=" |
Alexandre Julliard | 2052538 | 2003-09-25 20:33:41 +0000 | [diff] [blame] | 202 | .br |
Alexandre Julliard | 7412125 | 2004-01-05 21:19:22 +0000 | [diff] [blame] | 203 | Try to load comdlg32 as builtin first and try the native version if |
| 204 | the builtin load fails; load shell32 always as builtin and comctl32 |
Austin English | 5e10ef0 | 2008-01-10 16:11:11 -0600 | [diff] [blame] | 205 | always as native. Oleaut32 will be disabled. |
Alexandre Julliard | 2052538 | 2003-09-25 20:33:41 +0000 | [diff] [blame] | 206 | .RE |
| 207 | .TP |
Alexandre Julliard | 26320d1 | 2001-03-23 23:45:45 +0000 | [diff] [blame] | 208 | .I DISPLAY |
| 209 | Specifies the X11 display to use. |
Vitaliy Margolen | b7addaa | 2007-10-20 11:49:02 -0600 | [diff] [blame] | 210 | .TP |
| 211 | OSS sound driver configuration variables |
| 212 | .TP |
| 213 | .I AUDIODEV |
| 214 | Set the device for audio input / output. Default |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 215 | .BR /dev/dsp . |
Vitaliy Margolen | b7addaa | 2007-10-20 11:49:02 -0600 | [diff] [blame] | 216 | .TP |
| 217 | .I MIXERDEV |
| 218 | Set the device for mixer controls. Default |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 219 | .BR /dev/mixer . |
Vitaliy Margolen | b7addaa | 2007-10-20 11:49:02 -0600 | [diff] [blame] | 220 | .TP |
| 221 | .I MIDIDEV |
| 222 | Set the MIDI (sequencer) device. Default |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 223 | .BR /dev/sequencer . |
Alexandre Julliard | 553a75e | 2004-04-29 00:27:57 +0000 | [diff] [blame] | 224 | .SH FILES |
| 225 | .TP |
| 226 | .I @bindir@/wine |
| 227 | The |
| 228 | .B wine |
| 229 | program loader. |
| 230 | .TP |
| 231 | .I @bindir@/wineconsole |
| 232 | The |
| 233 | .B wine |
| 234 | program loader for CUI (console) applications. |
| 235 | .TP |
| 236 | .I @bindir@/wineserver |
| 237 | The |
| 238 | .B wine |
| 239 | server |
| 240 | .TP |
| 241 | .I @bindir@/winedbg |
| 242 | The |
| 243 | .B wine |
| 244 | debugger |
| 245 | .TP |
Alexandre Julliard | 553a75e | 2004-04-29 00:27:57 +0000 | [diff] [blame] | 246 | .I @dlldir@ |
| 247 | Directory containing |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 248 | .BR wine 's |
Alexandre Julliard | 553a75e | 2004-04-29 00:27:57 +0000 | [diff] [blame] | 249 | shared libraries |
| 250 | .TP |
Alexandre Julliard | 553a75e | 2004-04-29 00:27:57 +0000 | [diff] [blame] | 251 | .I $WINEPREFIX/dosdevices |
| 252 | Directory containing the DOS device mappings. Each file in that |
| 253 | directory is a symlink to the Unix device file implementing a given |
| 254 | device. For instance, if COM1 is mapped to /dev/ttyS0 you'd have a |
| 255 | symlink of the form $WINEPREFIX/dosdevices/com1 -> /dev/ttyS0. |
| 256 | .br |
| 257 | DOS drives are also specified with symlinks; for instance if drive D: |
| 258 | corresponds to the CDROM mounted at /mnt/cdrom, you'd have a symlink |
| 259 | $WINEPREFIX/dosdevices/d: -> /mnt/cdrom. The Unix device corresponding |
| 260 | to a DOS drive can be specified the same way, except with '::' instead |
| 261 | of ':'. So for the previous example, if the CDROM device is mounted |
| 262 | from /dev/hdc, the corresponding symlink would be |
| 263 | $WINEPREFIX/dosdevices/d:: -> /dev/hdc. |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 264 | .SH AUTHORS |
Peter Ganten | f35cdc8 | 2000-04-04 18:57:19 +0000 | [diff] [blame] | 265 | .B wine |
Alexandre Julliard | 642d313 | 1998-07-12 19:29:36 +0000 | [diff] [blame] | 266 | is available thanks to the work of many developers. For a listing |
| 267 | of the authors, please see the file |
| 268 | .B AUTHORS |
| 269 | in the top-level directory of the source distribution. |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 270 | .SH COPYRIGHT |
| 271 | .B wine |
Andriy Palamarchuk | 1827e7d1 | 2002-05-08 23:14:19 +0000 | [diff] [blame] | 272 | can be distributed under the terms of the LGPL license. A copy of the |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 273 | license is in the file |
Alexandre Julliard | 553a75e | 2004-04-29 00:27:57 +0000 | [diff] [blame] | 274 | .B COPYING.LIB |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 275 | in the top-level directory of the source distribution. |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 276 | .SH BUGS |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 277 | .PP |
Andreas Mohr | ff96f91 | 2000-11-28 22:35:20 +0000 | [diff] [blame] | 278 | A status report on many applications is available from |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 279 | .IR http://appdb.winehq.org . |
Marco Schuster | 0bd72d0 | 2007-12-11 17:17:45 +0100 | [diff] [blame] | 280 | Please add entries to this list for applications you currently run, if |
| 281 | there is no entry for this application. |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 282 | .PP |
Andriy Palamarchuk | 1827e7d1 | 2002-05-08 23:14:19 +0000 | [diff] [blame] | 283 | Bug reports may be posted to Wine Bugzilla |
Dimitrie O. Paun | c023254 | 2003-11-26 03:55:01 +0000 | [diff] [blame] | 284 | .I http://bugs.winehq.org |
André Hentschel | 6863290 | 2010-03-31 16:08:03 +0200 | [diff] [blame] | 285 | If you want to post a bug report, please see |
| 286 | .I http://wiki.winehq.org/Bugs |
Peter Ganten | f35cdc8 | 2000-04-04 18:57:19 +0000 | [diff] [blame] | 287 | in the |
| 288 | .B wine |
Andriy Palamarchuk | 1827e7d1 | 2002-05-08 23:14:19 +0000 | [diff] [blame] | 289 | source to see what information is necessary |
James Juran | 8d01e08 | 1998-11-27 16:06:08 +0000 | [diff] [blame] | 290 | .PP |
Andriy Palamarchuk | 1827e7d1 | 2002-05-08 23:14:19 +0000 | [diff] [blame] | 291 | Problems and suggestions with this manpage please also report to |
Dimitrie O. Paun | c023254 | 2003-11-26 03:55:01 +0000 | [diff] [blame] | 292 | .I http://bugs.winehq.org |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 293 | .SH AVAILABILITY |
| 294 | The most recent public version of |
| 295 | .B wine |
Alexandre Julliard | 8a37297 | 2004-03-11 23:22:29 +0000 | [diff] [blame] | 296 | can be downloaded from |
| 297 | .I http://www.winehq.org/download |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 298 | .PP |
Alexandre Julliard | 4e47403 | 2006-08-23 15:59:14 +0200 | [diff] [blame] | 299 | The latest snapshot of the code may be obtained via GIT. For information |
James Juran | 47142a4 | 1998-10-21 15:18:52 +0000 | [diff] [blame] | 300 | on how to do this, please see |
| 301 | .I |
Alexandre Julliard | 4e47403 | 2006-08-23 15:59:14 +0200 | [diff] [blame] | 302 | http://www.winehq.org/site/git |
James Juran | 47142a4 | 1998-10-21 15:18:52 +0000 | [diff] [blame] | 303 | .PP |
Douglas Ridgway | 692389d | 1998-11-22 16:56:44 +0000 | [diff] [blame] | 304 | WineHQ, the |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 305 | .B wine |
Douglas Ridgway | 692389d | 1998-11-22 16:56:44 +0000 | [diff] [blame] | 306 | development headquarters, is at |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 307 | .IR http://www.winehq.org . |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 308 | This website contains a great deal of information about |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 309 | .BR wine . |
Alexandre Julliard | ebfc0fe | 1998-06-28 18:40:26 +0000 | [diff] [blame] | 310 | .PP |
Peter Ganten | f35cdc8 | 2000-04-04 18:57:19 +0000 | [diff] [blame] | 311 | For further information about |
Andreas Mohr | ff96f91 | 2000-11-28 22:35:20 +0000 | [diff] [blame] | 312 | .B wine |
| 313 | development, you might want to subscribe to the |
Peter Ganten | f35cdc8 | 2000-04-04 18:57:19 +0000 | [diff] [blame] | 314 | .B wine |
Andriy Palamarchuk | 1827e7d1 | 2002-05-08 23:14:19 +0000 | [diff] [blame] | 315 | mailing lists at |
Alexandre Julliard | bb4ddfe | 2003-12-05 00:17:41 +0000 | [diff] [blame] | 316 | .I http://www.winehq.org/forums |
Peter Ganten | f35cdc8 | 2000-04-04 18:57:19 +0000 | [diff] [blame] | 317 | |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 318 | .SH "SEE ALSO" |
Frédéric Delanoy | db7928c | 2010-04-09 01:29:57 +0200 | [diff] [blame] | 319 | .BR wineserver (1), |
| 320 | .BR winedbg (1) |