setupapi: Add case sensitivity string table tests.
[wine/testsucceed.git] / documentation / PACKAGING
blob0a10dbf50176f15c630c0225539f13ff8d6ef4bf
1 INTRODUCTION
2 ~~~~~~~~~~~~
4 This document attempts to establish guidelines for people making binary
5 packages of Wine.
7 It expresses the basic principles that the Wine developers have agreed
8 should be used when building Wine. It also attempts to highlight the areas
9 where there are different approaches to packaging Wine, so that the packager
10 can understand the different alternatives that have been considered and their
11 rationales.
13 TERMS
14 ~~~~~
16 There are several terms and paths used in this document as place holders
17 for configurable values. Those terms are described here.
18     * WINEPREFIX: is the user's Wine configuration directory.
19         This is almost always ~/.wine, but can be overridden by
20         the user by setting the WINEPREFIX environment variable.
22     * PREFIX: is the prefix used when selecting an installation target.
23         The current default is /usr/local. This results in binary
24         installation into /usr/local/bin,  library installation into
25         /usr/local/wine/lib, and so forth.
26         This value can be overridden by the packager. In fact, FHS 2.2
27         (http://www.pathname.com/fhs/) specifications suggest that a better
28         prefix is /opt/wine.  Ideally, a packager would also allow the
29         installer to override this value.
31     * WINDOWSDIR: is an important concept to Wine.  This directory specifies
32         what directory corresponds to the root Windows directory
33         (e.g. C:\WINDOWS). This directory is specified by the user, in
34         their registry settings.  Generally speaking, this directory
35         is either set to point at an empty directory, or it is set to point
36         at a Windows partition that has been mounted through the vfat driver.
37         NOTE:   It is extremely important that the packager understand the
38                 importance of WINDOWSDIR and convey this information and
39                 choice to the end user.
41 DEPENDENCIES
42 ~~~~~~~~~~~~
44 There are two types of dependencies: hard and soft dependencies.
46 A hard dependency must be available at runtime for Wine to function,
47 if  compiled into the code. Soft dependencies on the other hand
48 will degrade gracefully at runtime if unavailable on the runtime system.
49 Ideally, we should eliminate all hard dependencies in favor of
50 soft dependencies.
52 To enable a soft dependency, it must be available at compile time.
53 As a packager, please do your best to make sure that as many soft
54 dependencies  are available during compilation. Failing to have a
55 soft dependency available means that users cannot benefit
56 from a Wine capability.
58 Here is a list of the soft dependencies. We suggest packagers
59 install each and every last of those before building the package.
60 These libraries are not dependencies in the RPM sense. In DEB packages,
61 they should appear as "Suggests" or "Recommends", as the case may be.
63     * libresolv
64       This is the standard Unix domain name resolver library that is
65       used to implement DNS support found in dnsapi.dll. resolv.h as
66       well as libresolv.so should be present at build time.
68     * FreeType: http://www.freetype.org
69       This library is used for direct rendering of fonts. It provides
70       better support of fonts than using the X11 fonts engine. It is
71       only needed for the X11 back end engine. Used from GDI.
73     * fontforge: http://sourceforge.net/projects/fontforge/
74       Used by WINE to create our own set of TrueType fonts during build.
76     * fontconfig
77       Used to find TrueType fonts for rendering with freetype. Used by
78       GDI.
80     * Alsa: http://sourceforge.net/projects/alsa (Linux only)
81       This library gives sound support to the Windows environment.
83     * JACK: http://jackit.sourceforge.net
84       Similar to Alsa, it allow Wine to use the JACK audio server.
86     * CUPS: http://www.cups.org
87       This library allows Windows to see CUPS defined printers. Used
88       by WINEPS and WINSPOOL.
90     * OpenGL
91       This is used for both OpenGL and Direct3D (and some other
92       DirectX functions as well) support in Wine. There are many many
93       libraries for providing this functionality. It is enough for one
94       of them to be available when compiling Wine. Wine can work with
95       any other library during runtime.
96       If no library is available, packagers are encouraged to compile
97       Wine with Mesa3D (http://www.mesa3d.org), which requires no
98       hardware support to install.
100     * OpenLDAP: http://www.openldap.org
101       Used by WLDAP32 to implement LDAP support.
103     * LittleCMS: http://www.littlecms.com
104       This library is used to implement MSCMS (Color Management System)
105       which is needed by an increasing number of graphics applications.
107     * libjpeg
108       This library is used to load JPEG files within OLE automation.
110     * libungif or gif_lib
111       One of these two libraries is used to load GIF files within OLE
112       automation.
114     * ICU
115       Used for bidirectional character output. Linked statically, used
116       by GDI.
118     * sane
119       Used for basic scanner support in our TWAIN32 library.
121     * openssl
122       Used for some cryptographic support in ADVAPI32.
124     * Xrandr, Xrender, Xi, Xext
125       X11 extension libraries used by the x11drv.
126       Xrandr - resolution switching
127       Xrender - client side font rendering
128       Xi - X Input handling (for asian input methods mostly)
129       Xext - X extensions
131     * libxml2, libxslt
132       These two libraries are used for our msxml3.dll implementation.
134     * prelink
135       Used during build to locate WINE at a specific virtual address.
137     * capi4linux
138       Used to implement our capi2032.dll.
140 GOALS
141 ~~~~~
143 An installation from a Wine package should:
144     * Install quickly and simply:
145         The initial installation should require no user input.  An
146                 'rpm -i wine.rpm' or 'apt-get install wine'
147         should suffice for initial installation.
149     * Work quickly and simply:
150         The user should be able to launch Solitaire within seconds
151         of downloading the Wine package.
153     * Comply with File system Hierarchy Standard
154         A Wine installation should, as much as possible, comply
155         with the FHS standard (http://www.pathname.com/fhs/).
157     * Preserve flexibility
158         None of the flexibility built into Wine should
159         be hidden from the end user.
161     * Easy configuration
162         Come as preconfigured as possible, so the user does
163         not need to change any configuration files.
165     * Small footprint
166         Use only as much disk space as needed per user.
168     * Reduce support requirements.
169         A packaged version of Wine should be sufficiently easy to use and
170         have quick and easy access to FAQs and documentation such that
171         requests to the newsgroup and development group go down.
172         Further, it should be easy for users to capture good bug reports.
174 REQUIREMENTS
175 ~~~~~~~~~~~~
177 Successfully installing Wine requires:
179     * Install of the .rpm or .deb package.
181     * No longer: Preparing a fake windows setup.
183         If WINEPREFIX is not present, wine will generate a setup
184         by itself by calling wineprefixcreate.
186         This will load all default registry entries, and register dlls
187         where necessary. A special "wine.inf" file is provided with
188         the WINE sources and installed to /usr/share/wine/.
190 WINE COMPONENTS
191 ~~~~~~~~~~~~~~~
193    * Executable Files
194         - notepad : The windows Notepad replacement.
195         - progman : A Program Manager replacement.
196         - regedit : A graphical tool to edit your registry or for
197                 importing a windows registry to Wine.
198         - regsvr32 : A program to register/unregister .DLL and .OCX files.
199                 Only works on those dlls that can self-register.
200         - taskmgr : A clone of the windows taskmgr, used for debugging and
201                 managing running Windows and Winlib processes.
202         - uninstaller: A program to uninstall installed Windows programs.
203                 Like the Add/Remove Program in the windows control panel.
204         - wcmd :  Wine's command line interpreter, a cmd.exe replacement.
205         - widl : Wine IDL compiler compiles (MS-RPC and DCOM) Interface
206                 Definition Language files.
207         - wine :  The main Wine executable. This program will load a Windows
208                 binary and run it, relying upon the Wine shared object libraries.
209         - wineboot : This program is executed on startup of the first wine
210                 process of a particular user.wineboot won't automatically run
211                 when needed.  Currently you have to manually run it after you
212                 install something.
213         - winebuild : Winebuild is a tool used for building Winelib applications
214                 (and by Wine itself) to allow a developer to compile a .spec file
215                 into a .spec.c file.
216         - wineconsole : Render the output of CUI programs.
217         - winedbg : A application making use of the debugging API to allow
218                 debugging of Wine or Winelib applications as well as Wine itself
219                 (kernel and all DLLs).
220         - winedump : Dumps the imports and exports of NE and PE files.
221         - winefile : A clone of the win3x file manager.
222         - winegcc/wineg++: Wrappers for gcc/g++ respectively, to make them behave
223                 as MinGW's gcc. Used for porting apps over to Winelib.
224         - winemaker : Winemaker is a perl script which is designed to help you
225                 bootstrap the conversion of your Windows projects to Winelib.
226         - winemine :  A clone of "Windows Minesweeper" a demo WineLib app.
227         - winepath :  A tool for converting between Windows paths and Unix paths
228         - wineserver : The Wine server is the process that manages resources,
229                 coordinates threads, and provides synchronization and interprocess
230                 communication primitives to Wine processes.
231         - wineshelllink : This shell script can be called by Wine in order to
232                 propagate Desktop icon and menu creation requests out to a
233                 GNOME or KDE (or other Window Managers).
234         - winewrap : Takes care of linking winelib applications. Linking with
235                 Winelib is a complex process, winewrap makes it simple.
236         - winhelp : A Windows Help replacement.
237         - wmc : Wine Message Compiler it allows Windows message files to be
238                 compiled into a format usable by Wine.
239         - wrc : the Wine Resource Compiler. A clone of Microsoft's rc.
241     * Shared Object Library Files
242         To obtain a current list of DLLs, run:
243                 ls dlls/*.so
244         it the root of the Wine _build_ tree, after a successful build.
246     * Man Pages
247         To obtain a current list of man files that need to be installed, run:
248                 find . -name "*.man"
249         it the root of the Wine _build_ tree, after you have run ./configure.
251     * Include Files
252         An up to date list of includes can be found in the include/Makefile.in
253         file.
255     * Documentation files
256         After building the documentation with:
257                 cd documentation; make html
258         install all the files from: wine-user/, wine-devel/ and winelib-user/.
260      * Dynamic Wine Files
261         Wine also generates and depends on a number of dynamic
262         files, including user configuration files and registry files.
264         At the time of this writing, there was not a clear
265         consensus of where these files should be located, and how
266         they should be handled.  This section attempts
267         to explain the alternatives clearly.
270         - PREFIX/share/wine.inf
271         
272             This is the global Wine setup information file
273             in the format of a MS Installer .INF file.
275     * Registry Files
276             In order to replicate the Windows registry system,
277             Wine stores registry entries in a series of files.
279             For an excellent overview of this issue, read this
280             http://www.winehq.org/News/2000-25.html#FTR
281             Wine Weekly News feature.
283             The bottom line is that, at Wine server startup,
284             Wine loads all registry entries into memory
285             to create an in memory image of the registry.
286             The order of files which Wine uses to load
287             registry entries is extremely important,
288             as it affects what registry entries are
289             actually present.  The order is roughly that
290             .dat files from a Windows partition are loaded,
291             and then finally local registry settings are
292             loaded from WINEPREFIX.  As each set are loaded,
293             they can override the prior entries.  Thus,
294             the local registry files take precedence.
296             Then, at exit (or at periodic intervals),
297             Wine will write either all registry entries
298             (or, with the default setting) changed
299             registry entries to files in the WINEPREFIX.
301             - WINEPREFIX/system.reg
302                 This file contains the user's local copy of the
303                 HKEY_LOCAL_MACHINE registry hive.  In general use, it will
304                 contain only changes made to the default registry values.
306             - WINEPREFIX/user.reg
307                 This file contains the user's local copy of the
308                 HKEY_CURRENT_MACHINE registry hive.  In general use, it will
309                 contain only changes made to the default registry values.
311             - WINEPREFIX/userdef.reg
312                 This file contains the user's local copy of the
313                 HKEY_USERS\.Default registry hive.  In general use, it will
314                 contain only changes made to the default registry values.
316             - WINEPREFIX/cachedmetrics.[display]
317                 This file contains font metrics for the given X display.
318                 Generally, this cache is generated once at Wine start time.
319                 cachedmetrics can be generated if absent.
320                 You should note this can take a long time.
322     * Important Files from a Windows Partition
323         Wine has the ability to use files from an installation of the
324         actual Microsoft Windows operating system.  Generally these
325         files are loaded on a VFAT partition that is mounted under Linux.
327         This is probably the most important configuration detail.
328         The use of Windows registry and DLL files dramatically alters the
329         behavior of Wine. If nothing else, packagers have to make this
330         distinction clear to the end user, so that they can intelligently
331         choose their configuration.
333         - WINDOWSDIR/system32/system.dat
334         - WINDOWSDIR/system32/user.dat
335         - WINDOWSDIR/win.ini
337     * Windows Dynamic Link Libraries (WINDOWSDIR/system32/*.dll)
338         Wine has the ability to use the actual Windows DLL files
339         when running an application.  An end user can configure
340         Wine so that Wine uses some or all of these DLL files
341         when running a given application.
343 PACKAGING STRATEGIES
344 ~~~~~~~~~~~~~~~~~~~~
346 There has recently been a lot of discussion on the Wine development
347 mailing list about the best way to build Wine packages.
349 There was a lot of discussion, and several diverging points of view.
350 This section of the document attempts to present the areas of common
351 agreement, and also to present the different approaches advocated on
352 the mailing list.
354     * Distribution of Wine into packages
355         The most basic question to ask is given the Wine CVS tree,
356         what physical files are you, the packager, going to produce?
357         Are you going to produce only a wine.rpm, or are you going to
358         produce 6 Debian files (libwine, libwine-dev, wine, wine-doc,
359         wine-utils and winesetuptk) as Ove has done?
360         At this point, common practice is to adopt to the conventions
361         of the targeted distribution.
363         Also, experience shows that you should not create a huge set
364         of packages, since later upgrades and obsoleting will be
365         painful.
367     * Where to install files
368         This question is not really contested.  It will vary
369         by distribution, and is really up to the packager.
370         As a guideline, the current 'make install' process
371         seems to behave such that if we pick a single PREFIX then:
372             - binary files go into PREFIX/bin
373             - library files go into PREFIX/lib/wine
374             - include files go into PREFIX/include/wine
375             - man pages go into PREFIX/share/man
376             - documentation files go into PREFIX/share/doc/wine-VERSION
378         You might also want to use the wine wrapper script winelauncher
379         that can be found in tools/ directory, as it has several important
380         advantages over directly invoking the wine binary.
381         See the Executable Files section for details.
383     * The question of /opt/wine
384         The FHS 2.2 specification suggests that Wine as a package
385         should be installed to /opt/wine.  None of the existing packages
386         follow this guideline (today; check again tomorrow).
388         (Since most are upgrades of the distro packages, this is still
389          on the safe side I think - Marcus Meissner)
391     * What files to create
392         After installing the static and shareable files, the next
393         question the packager needs to ask is how much dynamic
394         configuration will be done, and what configuration
395         files should be created.
397         The best current approach to this is:
398         - Leave it alone and make a "wineprefixcreate" call available
399           to the user via a menu item or similar.
401         - Setup a fake windows setup automatically.
402                 
403                 This is done by simply calling wineprefixcreate,
404                 which will setup a fake windows root for the user.
406                 If no arguments are passed, defaults will be
407                 assumed for WINEPREFIX (~/.wine) and similar
408                 variables.
410                 After this, WINE is immediately usable by the
411                 end user.
413         - Others might be possible.
415 IMPLEMENTATION
416 ~~~~~~~~~~~~~~
418 This section discusses the implementation of a Red Hat 8.0 .spec file.
419 For a current .spec file, please refer to any one of the existing SRPMs.
421 1. Building the package
423 Wine is configured the usual way (depending on your build environment).
424 The PREFIX is chosen using your application placement policy
425 (/usr/, /usr/X11R6/, /opt/wine/, or similar).  The configuration files
426 (wine.userreg, wine.systemreg) are targeted for /etc/wine/
427 (rationale: FHS 2.2, multiple read only configuration files of a package).
429 Example (split this into %build and %install section for rpm:
432         CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr/X11R6 --sysconfdir=/etc/wine/ --enable-dll
433         make
434         BR=$RPM_BUILD_ROOT
435         make install prefix=$BR/usr/X11R6/ sysconfdir=$BR/etc/wine/
437 You will need to package the files:
439         $prefix/bin/wine*
440         $prefix/lib/libwine*
441         $prefix/lib/wine/*,
442         $prefix/share/wine/wine.inf
444         $prefix/man/man1/wine.1
445         $prefix/include/wine/*
446         $prefix/bin/notepad
447         $prefix/bin/progman
448         $prefix/bin/regedit
449         $prefix/bin/rundll32
450         $prefix/bin/regsvr32
451         $prefix/bin/wcmd
452         $prefix/bin/widl
453         $prefix/bin/winhelp
455         %config /etc/wine/*
456         %doc ... choose from the top level directory and documentation/
459 2. Installing Wine for the system administrator
461 Install the package using the usual packager 'rpm -i wine.rpm'.
463 Adapting the $prefix/share/wine/wine.inf file used by wineprefixcreate is not
464 necessary.
466 Note that on Linux you should somehow try to add the unhide mount option
467 (see 'man mount') to the CD-ROM entry in /etc/fstab during package install,
468 as several stupid Windows programs mark some setup (!) files as hidden
469 (ISO9660) on CD-ROMs, which will greatly confuse users as they won't find
470 their setup files on the CD-ROMs as they were used on Windows systems when
471 unhide is not set ;-\ And of course the setup program will complain
472 that setup.ins or some other mess is missing... If you choose to do so,
473 then please make this change verbose to the admin.
475 Also make sure that the kernel you use includes the Joliet CD-ROM support,
476 for the very same reasons as given above (no long filenames due to missing
477 Joliet, files not found).
479 3. Installing Wine for the user
481 If no standard wine prefix was setup, the first call to wine will
482 create one for the user.
484 So the user can just click on any setup.exe file and it will work
485 out of the box.
487 AUTHORS
488 ~~~~~~~
490 Written in 1999 by Marcus Meissner <marcus@jet.franken.de>
491 Updated in 2000 by Jeremy White <jwhite@codeweavers.com>
492 Updated in 2002 by Andreas Mohr <andi@rhlx01.fht-esslingen.de>
493 Updated in 2003 by Tom Wickline <twickline2@triad.rr.com>
494 Updated in 2003 by Dimitrie O. Paun <dpaun@rogers.com>
495 Updated in 2004,2005 by Marcus Meissner <marcus@jet.franken.de>