source: trunk/doc/Readme.txt@ 5013

Last change on this file since 5013 was 5010, checked in by sandervl, 25 years ago

update

File size: 27.2 KB
Line 
1
2 O D I N Public Alpha 5 - 1999/11/16
3 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4
5WANTED: We are still looking for talented developers that want to
6 contribute! Please take a look at the last section!
7
8NOTE: LICENSE.TXT describes the Project Odin Software License.
9
10
11Project Odin Information
12========================
13
141.0 Introduction
15----------------
16
17This readme is intended for end users that have downloaded the
18latest public alpha release and want to give it a try. For more
19information, be sure to regularly check http://www.netlabs.org/odin.
20
211.1 Purpose
22-----------
23
24Odin is a free Open Source project with the goal to eventually
25provide a fully working Win32 (Win 95/98/NT/2000) runtime environment,
26making it possible to run your favorite Windows programs under OS/2,
27as if they were native OS/2 programs. The second goal of Odin is to
28provide the full Win32 application programming interface (API) so
29that it is possible to build OS/2 programs using Windows source
30code. This is also refered to as Odin32 whereas Odin is the name
31of the Win32 binary emulator.
32
331.2 Current Status
34------------------
35
36Odin is still in the early alpha state so that it is very far from
37being widely usable. Most programs will not work or show many
38problems. Even though it is not usable for most programs, we have
39decided to do a public release in order to show how much progress
40the project has been made. A second goal is to attract more developers
41in order to speedup development. Our job includes rewriting most
42parts of Windows 95/NT without having the original source code so
43the more developers we have the more progess will be seen. The
44last public release (Alpha 0.004) has been in 1997 and the project
45has changed much since then. Everything is free and Open Source now
46and the base architecture has been improved quite a lot. We are now
47in a position where we can expect the first bigger applications to
48run well and to make much more visible progress.
49
501.3 Changes and additions in alpha 5
51------------------------------------
52- Removed Open32 dependacy in User32 code: windows, dialogs, buttons and
53 other controls creation and manipulation is now implemented fully in Odin32.
54 Applications have Win32 look: Win32 specific controls are also supported
55 (Open32 is still a requirement as other Odin32 functions use it!)
56- New and improved PE2LX converter
57- New Portable Executable Loader (PE) that overcomes some differences
58 between OS/2 and Win32 memory models (this does not include 512MB
59 per-process memory limitation in OS/2, you still need the Aurora-level
60 kernel for that)
61- New WIN32K32k.SYS driver that automates loading of Win32 binaries (no
62 conversion or invocation through PE.EXE loader is needed), now
63 compatible with WSeB (Aurora) and no longer dependant of code under
64 GNU license
65- Wine ports of common controls (comctl32), shell extensions (shell32) and
66 OLE
67- Full implementation of memory mapped files
68- Joystick support (winmm)
69- Direct Input (DirectX keyboard & mouse) added (Wine Port)
70- Rewrite of DirectDraw. More complete implementation.
71- Couple of (not core Win32 API, but often used) new DLLs (winasp32, lz32,
72 avifil32...), so users don't have to have Windows license at all to run
73 Windows programs
74- Many new API functions implemented or ported from Wine, allows
75 developers to port Win32 apps directly to OS/2 with little to no rewriting
76- Many bugfixes and enhancements
77- Many new programs that load and/or work with Odin
78- Full source code available
79
80
81
822.0 Installing Odin (UPDATED)
83-----------------------------
84
85Daily builds of Odin are available at ftp://ftp.os2.org/odin/daily.
86For people that do not have a suitable development setup for ODIN,
87we provide the latest binary code that way.
88
89Odin daily builds are now also distributed as WarpIn archives.
90WarpIn is a generic OS/2 installation application that can be
91downloaded from warpin.netlabs.org.
92
93Manual installation without WarpIn is not recommended. If you don't use WarpIn,
94then you *must* execute odininst.exe in the Odin system32 directory. (the first
95time Odin is installed or when the ChangeLog mentions fixes/changes in the
96installer)
97
98To install Odin, run warpin.exe with the name of the daily build archive
99as parameter.
100Follow the instructions to complete the installation.
101The Odin installation consists of:
102 - creating an Odin directory and copying the included files to
103 x:\odin and x:\odin\system32
104 - creating empty directories in x:\odin (to create a similar directory
105 structure as found in Windows)
106 - creating a basic registry for executing win32 applications in OS/2
107 - adds x:\odin\system32 to the path and libpath settings in your config.sys
108
109NOTE: You MUST install Odin at least once using WarpIn (unless you know
110 what you're doing). Afterwards you can use the daily build zipfiles
111 to upgrade to a newer version.
112
113To run DirectDraw games or Quake 2 in Voodoo mode, you must install Holger
114Veit's XFree86/2 support driver (XF86SUP.SYS).
115Visit http://ais.gmd.de/~veit/os2/xf86sup.html to download it.
116
117NOTE: The Glide and 3Dfx Opengl dll are no longer part of the basic Odin
118 installation package. It's available as opengl3dfx.zip on ftp.os2.org.
119
120
1212.0.1 Log files
122---------------
123The alpha 5 binaries and daily build zipfiles can generate logfiles to show
124what a win32 application is doing. This can be very useful to determine
125why certain applications don't run correctly.
126
127The major disadvantage of loggging is the overhead. Therefor it has been
128disabled by default in the alpha 5 release and daily builds.
129To enable logging set the environment variable WIN32LOG_ENABLED:
130 SET WIN32LOG_ENABLED=1
131
132To disable logging again, you must clear this variable:
133 SET WIN32LOG_ENABLED=
134
1352.1 Using Odin to run your Windows applications
136-----------------------------------------------
137
138Odin still has several ways to execute Win32 programs.
139
140
1412.2 The Ring3 Win32 Loader (PE.EXE)
142----------------------------------
143
144This is the new and also recommended method for loading programs.
145Unlike with the previous alphas, it is not required to convert or
146anyhow change the original files. Installing a device driver is
147also not necessary. Be sure to put the Odin binary directory into
148both the PATH and LIBPATH (alternatively you can use a batch file
149with SET PATH=C:\Odin;%PATH% and SET BEGINLIBPATH=C:\Odin;)
150and then call pe.exe winprog.exe param1 param2 ... If you wanted
151to start the Windows calculator, you would type
152
153pe calc
154
155The PE (Portable Executable, the Win32 executable format) loader
156will now try to load the application into memory and execute it.
157This will either work or fail with a loader message. If you get
158such a loader message, it is very likely that a required DLL is
159missing. To correct that problem, take a look at pe_0.log (or
160pe_1.log for the second program running at this time and so on).
161At the bottom of the file you will see the DLLs and the functions
162that the loader imports. It will tell you if it couldn't find a
163DLL and you can correct the problem and try it again.
164
165
1662.2.1 PE loader issues
167----------------------
168
169As the PE loader will create the process and load the program,
170a process utility such as pstat will always show PE.EXE as the
171executable file.
172It is also possible that a certain Win32 application becomes
173a zombie (that is when it does certain things the OS/2 kernel
174cannot recover such as die when waiting on a semaphore). Then
175it will not be possible to kill the application - only a system
176restart will help.
177Certain programs do use fixed memory addresses where they need
178to be loaded (i.e. they won't use fixups). You can notice this
179at the top of the loader log file (pe_0.log). If the fixed address
180is above the 512MB barrier present in Warp 4 and Warp 3, the
181program can not be run under these system. On Aurora (Warp Server
182for e-business) this limitation has been removed. Programs known
183to fall under this category are Microsoft Office (also the
184Office viewers) and other mainly Microsoft programs.
185
186
1872.3 Win32k.sys - native OS/2 PE-loader
188--------------------------------------
189
190The win32k.sys driver makes PE (Win32) executables equal to native OS/2
191executables by implementing a Ring 0 on-the-fly loader / converter.
192
193You may wonder how you may run a Win32 program using a device driver. You
194don't have to worry about that, simply treat the Win32 program just as an
195another OS/2 program. OS/2 can't tell the difference!
196No conversion of dlls or running programs thru Pe.EXE.
197
198For example, if you fancy playing windows solitaire.
199 1) Make sure the necessary DLLs (MSVCRT.DLL and CARDS.DLL) are in you
200 PATH, current dir, SOL.EXE dir, Odin32 System32 dir, Odin32 System dir,
201 Odin32 dir, or LIBPATHs; and that you have SOL.EXE somewhere.
202
203 2) Then start SOL.EXE by simply typing SOL.EXE (with path if necessary).
204 It's also possible to start SOL.EXE from the desktop if you like.
205 Simply find the SOL.EXE icon (or create it) and double click on it!
206
207
2082.3.1 WARNING
209-------------
210
211The Win32k.sys is quite alpha software and any bugs which haven't been found
212yet may crash and/or corrupt you entire system! Make sure you have backed up
213important stuff first!
214
215We are not responsible for ANYTHING AT ALL! See Odin32 disclaimer...
216
217Before you install Win32k.sys make sure that you have a backdoor to your system
218which works. For example try to boot your system using the Alt+F1 during bootup
219and choose Commandline boot (F2). Make sure you have an textmode editor which
220works; for example TEDIT.EXE.
221
222
2232.3.2 Requirements
224------------------
225
226Win32k should at least work on OS/2 Warp 3 and above, but I don't get too
227surprised if it worked on 2.11 too. DBCS are not supported yet AFAIK.
228
229It no longer requires a kernel file for retail kernels (if you don't know what
230kernel you have, you have a retail kernel). Win32k does now contain a
231"database" for the most recent retail kernels. Currently this is:
232 Warp 4 fp#1 -> fp#14
233 Aurora GA, FP1, preFP2
234 Warp 3 fp#32-> fp#42
235
236If the running kernel is not found in the "database" or is a debug kernel
237wink32.sys will look for symbolfiles as it allways did.
238If you use the -s:<symfile> argument the given symbol file will be
239investigated before the database is searched.
240
241NOTE! It hasn't been fully verified that all the different national fixpaks
242have the same symbols as the us-english ones. Feedback on this issue is
243appreciated.
244
245NOTE! A piece of advice for those playing with debug-kernels: Make sure that
246c:\OS2KRNL.SYM is matching the running kernel.
247
2482.3.2.1 Warp 3
249--------------
250
251Win32k is not tested with Warp 3. It is _supposed_ to work with Warp 3
252provided you are running fixpack 32 or later.
253(Fixpack 32 + y2kclock.exe is required for Y2K readyness anyway so...)
254
255
2562.3.3 Installation
257------------------
258
259To use Win32k.sys you have to add the following line into your config.sys:
260 device=<d:\path\system32>win32k.sys
261
262Where <d:\path\system32> is the path to the win32k.sys, i.e. usually the odin32
263system32 directory.
264
265After doing this, you'll have to reboot your machine to load the driver. During
266the boot process you will on a successful installation see some lines of
267technical info and finally a line saying:
268Win32k - Odin32 support driver.
269 Build: 14046 - v20.45
270 Found symbolfile: Win32k Symbol Database
271Win32k.sys succesfully initiated!
272
273If you don't see the last line something is wrong, and some error info will be
274shown. In the case of error the 'rc=<value>' is important to remember.
275
276
2772.3.4 Win32k parameters
278-----------------------
279
280The Capitalized letters are the one which is tested for when identifying the
281argument.
282
283There are some useful parameters for Win32k:
284-Quited Quiet driver initiation.
285 Default: disabled (ie. -V)
286
287-Verbose Verbose driver initiation.
288 Default: enabled
289
290-S:<filename> Full path to the current OS/2 kernel symbol file.
291 When this is specified the given
292 Default: symbol "database" and default locations are searched.
293
294
295Loader parameters:
296-SCript:<Y|N> Enable / disable UNIX script support.
297 Default: Enabled.
298
299-REXX:<Y|N> Enable / disable pure REXX script support.
300 Default: Enabled.
301
302-Java:<Y|N> Enable / disable JAVA loading.
303
304-Pe:<MIXED|PE2LX|PE|NOT>
305 Enabled / disable and set mode of the PE loading.
306 MIXED: Mix of Pe2Lx and Pe.exe. It uses Pe2Lx when
307 possible and backs out to pe.exe if the executables
308 aren't supported by the converter.
309 PE2LX: Pe2Lx loader only.
310 PE: Pe.exe only. The program is started using Pe.exe,
311 and the process name will be pe.exe.
312 NOT: Disable PE loading.
313
314
315Logging parameters:
316-L<:E|:D> Enables/Disables logging.
317 Default: disabled.
318
319-Com:<1|2|3|4>
320or
321-C<1|2|3|4> Which com-port to log to.
322 Default: -C2
323
324-Warning:<1|2|3|4>
325or
326-W<1|2|3|4> Warning/info level for PE loader. (This is warnings and info
327 which is published thru the com-port as logging information.)
328 Default: -W0
329
330
331Heap parameters:
332-HEAPMax: Maximum swappable heap size in bytes.
333 Default: 512KB
334
335-Heapinit: Initial heapsize in bytes.
336 Default: 16MB
337
338-RESHEAPMax: Maximum resident heap size in bytes.
339 Default: 256KB
340
341-Resheapinit: Initial resident in bytes.
342 Default: 16MB
343
344
345OS/2 Loader parameter:
346-Dllfixes<:E|:D>
347 Enables or Disables the long DLL name and non .DLL
348 extention fixes. OS/2 DLLs have been limited to 8 chars
349 names since version 2.<something>. This is a very bad
350 limitation. Also OS/2 forces all DLL loaded to loadtime
351 to have the extention '.DLL'.
352 Both these retritions are removed if this option is
353 enabled.
354 For DLL with non .DLL extention the internal name must
355 have to the extention included. (If you the experiences
356 problems with IMPLIB.EXE, enclose the internal name
357 in double-quotes.)
358 You should not make a DLL with a name starting with
359 DOSCALLS, DOSCALLS1, IBMVGA32, IBMDEV32 or IBMXGA32.
360 Current state for this feature is EXPERIMENTAL.
361 Default: Enabled
362
363
364Obsolete:
365-K:<filename> Ignored. Win32k scans the kernel image in memory!
366
367
3682.3.5 PE Loading
369----------------
370
371Win32k.sys are able to do PE loading in two different ways.
372
3732.3.5.1 PE2LX
374-------------
375The first one is called PE2LX and hence uses the original Win32k.sys method
376which is similar to Pe2Lx. This only requires that KERNEL32.DLL (ie. Odin32
377System32 directory) is present somewhere in the PATH or LIBPATHs. The DLL
378search order of PE2LX is now conforming with the Win32 order:
379 1. The directory of the executable (.EXE).
380 2. The current directory.
381 3. The Odin32 System32 directory. (Kernel32.dll directory)
382 4. The Odin32 System directory. (sibling of system32)
383 5. The Odin32 directory. (parent of system32)
384 6. The PATH environment variable. (TODO: quotes are not currently supported)
385 7. The BEGINLIBPATH.
386 8. The LIBPATH.
387 9. The ENDLIBPATH.
388(Note that the OS/2 DLLs in the _Odin32_ process are also found using this
389search order. This shouldn't matter much as nearly all of the OS/2 DLL are
390allready loaded. But if this proves a problem it could be changed.)
391
3922.3.5.2 PE
393----------
394The second one is called PE and invokes the Pe.EXE to execute the PE (Win32)
395programs. This of course requies that PE.EXE is found in the PATH.
396
3972.3.5.3 Modes
398--------------
399Win32k.sys have three (or four) different ways of combining these two methods,
400called modes:
401 PE2LX only
402 PE only
403 PE2LX with fallback on PE.
404 (fourth: NOT load any PE executables at all)
405
406The last one is the default one and is probably the best one currently.
407
408
4092.3.6 UNIX Shell Script Loader
410------------------------------
411
412The UNIX Shell Script Loader makes OS/2 able to run UNIX shell scripts as
413native executables, just as UNIX does. A unix shell script is a text file
414which has a starting line which specifies the interpreter for the script.
415
416For example a perl script:
417#!/bin/perl5 -Sx
418
419Or the most common one:
420#! /bin/sh
421
422Since Most OS/2 systems don't have a /bin directory or a /usr/bin directory
423the executable specified are looked for in these ways:
424 1. The exact filename specified.
425 2. The filename specified with .EXE extention.
426 3. Search the PATH for the filename (with out path of course).
427 4. Search the PATH for the filename with .EXE extention (and with out path of course).
428
429So, you could now execute UNIX shell script in OS/2 without even modify the
430path of the interpreter!
431
432The UNIX Shell Script Loader is enabled by default.
433
434
4352.3.6 Pure REXX Loader
436----------------------
437
438The Pure REXX Loader is a win32k.sys feature which enables REXX script with
439the extentions .RX and .REX to run as native OS/2 executables. These REXX
440scripts are executed using kRX.EXE which is found in the Odin32 System32
441directory.
442
443When we say "Pure REXX" scripts, that means no use of command line should
444occure in the script.
445
446The Pure REXX Loader is enabled by default.
447
448
4492.3.7 Java Loader/Invoker
450-------------------------
451
452Just for fun, I've added some code which detects JAVA class binaries and
453executes the class using JAVA.EXE. I first thougth this should be easy, but
454it turned out to have several problems.
455So please note the following:
456 - The classname is case sensitive, you have to write the exact class
457 name (with .class extention or what ever extention the file have)
458 when trying to execute a class. This could cause some throuble making
459 WPS program objects for the classes....
460 - To support executing of .class-files which are not in the current
461 directory win32k.sys send the directory of the .class-file in to
462 java.exe as a '-classpath' option. This option I soon found out had the
463 sideeffect of making JAVA.exe ignore the other CLASSPATH and not use
464 it's default class path. So now the contents of the CLASSPATH env. var.
465 or a generated default classpath is also sent in with the '-classpath'
466 option.
467 - The CLASSPATH environment variable should not be longer than 639 chars.
468
469When you have successfully installed Win32k.sys try type this at the
470commandline:
471c:\java11\demo\hello\hello.class
472
473This is then printed at my screen:
474Hello, Warped world!
475
476The JAVA Loader/Invoker is enabled by default.
477
478
4792.3.8 Rings - Ring 0 / Ring 3
480-----------------------------
481
482FYI. Ring 0 is the most priveleged level of execution in OS/2. The OS/2 kernel
483and device drivers execute at this level, while user applications execute in
484Ring 3, the least priveleged executing level.
485
486
4872.3.9 Win32k Control Center
488---------------------------
489
490In your Odin32 System32 directory there is a program called Win32kCC.exe,
491this is the Win32k Control Center (Win32kCC). Win32kCC is as the name says
492a program controlling Win32k.sys.
493
494Win32kCC allows you to enable, disable and change behaviour of different
495parts in Win32k.sys.
496
497For example: You could disable PE loading, or change it from MIXED mode (see
4982.3.4, -PE) to PE2LX mode. Or change it from PE2LX mode to PE mode to see
499if PE.EXE does a better job loading an executable.
500
501Note that the changes would not effect allready loaded executables.
502
503
504Win32kCC also displays status info on the running Win32k.sys and OS/2 kernel:
505 -Win32k.sys version number
506 -Win32k build time/date
507 -Path of the symbol file which was used (or Win32k Symbol Database).
508 -OS/2 kernel build number fixpack (guess)
509 -OS/2 kernel type as win32k has detected it
510 -Number of Pe2Lx currently loaded modules
511 -Win32k resident and swappable heap stats.
512
513PS. Beside the "PE Loader" area there is an "Elf Loader" area this is for a
514future Elf2Lx loader.
515
516
517
5182.4 The Ring3 conversion utility (PE2LX.EXE)
519--------------------------------------------
520
521PE2LX.EXE was the first method of running Win32 programs under
522OS/2. It is still provided and also functional but it has been
523deprecated. Using it is only sensible for debugging certain
524problems as it requires all DLLs and EXEs to be converted into
525another file format thus changing the original Win32 files.
526(It's only future use will be to convert Win32 executable with
527debuginfo to LX with HLL (IPMD/ICSDEBUG) debuginfo for
528sourcelevel debugging of Win32 executables under Odin32. This
529is not yet implemented but is being worked on.)
530
531
532
5333.0 Applications known to be working
534------------------------------------
535
536- Windows 95/NT Help Viewer (winhlp32.exe)
537- Windows 95/NT Registry Editor
538- Windows NT Solitaire (not the one from Windows 95)
539- Windows NT Freecell (not the one from Windows 95)
540- Windows 95/NT Calculator
541- Windows NT Pinball
542- Windows NT Minesweeper
543- Quake II
544- Red Alert
545- Professional Minesweeper
546- Windiff (part of Win32 SDK)
547- RealPlayer 7/8
548- Lotus Notes 5.0 (partly anyway)
549- Acrobat Distiller 3.0
550
551Note that many other applications load and/or partly work.
552
553
5544.0 Reporting Problems and Successes
555------------------------------------
556
557Bug reports can be sent to the Odin users mailinglist (odinusers@egroups.com;
558visit www.egroups.com for information about joining).
559The file ReportingBugs.txt explains how to send in a proper bug report.
560
561An application compatibility database has been created at Netlabs
562where you can share your experiences with Odin.
563The application compatibility database can be found at
564
565http://www.netlabs.org/odin/appdatabase
566
567NOTE: The application database is not meant for bug reports.
568
569
5705.0 Project Odin Source Code Notes
571----------------------------------
572
5735.1.0 Introduction
574------------------
575
576This chapter is intended for people more familiar with ODIN. It describes
577the various aspects of the project such as accessing the latest sources via
578cvs, building the binaries, running win32 applications, how to identify and
579report problems and bugs, as well as how to participate in this very
580promising project.
581
582
5835.1.1 Prerequisites:
584--------------------
585
586Required compilers/tools:
587 - IBM VisualAge 3.0 (CTx8 fixpack applied)
588 (version 3.6 might also work; version 4 is not recommended)
589 - OS/2 Warp 4 Toolkit (project apparently doesn't compile with
590 VAC's OS/2 headers)
591 Might also work with EMX headers. (haven't tried this!)
592 - ALP 4.0 (IBM Assembly Language Processor)
593 Download the tools zipfile from http://service.boulder.ibm.com/ddk/
594 (you need to register, but it's free)
595 - Unix-like rm.exe (nmake clean)
596
597Changes from last source code release:
598 - Uses Wine headers and a stripped down version of os2win.h (Open32
599 header)
600 - All Open32 apis have the 'O32_' prefix.
601 - All Open32 declarations are appended with '_O32' (mostly due to
602 calling convention differences)
603 - nmake DEBUG=1 builds the debug version
604 nmake builds the release version
605 - Several dlls (i.e. USER32, KERNEL32, ADVAPI32) contain extra .def
606 files that are used to create libraries that contain the api names
607 as required by the linker when you use them. (_apiname@nrparameterbytes)
608
609Wine header notes:
610 - Several header files have been changed to make them usable for VAC
611 - Several header files contain bugfixes (mostly parameter type changes)
612 - Several header files include additional declarations
613 - At this time we don't intend to have our changes included in the
614 Wine codebase as header files are not likely to change often.
615
616Coding conventions:
617 - Do NOT directly call the Open32 apis unless you're writing
618 a wrapper for it.
619 - Do NOT include os2.h directly. Use os2wrap.h instead.
620 os2wrap.h contains all the OS/2 apis with a wrapper around it to save
621 and restore the selector in FS. (some OS/2 apis set it back to the
622 default value (150b))
623 - Use the correct Win32 api when there are two version (ascii & unicode)
624 Calling the standard one (SendMessage) causes a error during
625 compilation.
626 Use SendMessageA instead.
627 - Source code style will be decided on in the near future.
628
629
6305.2.0 Accessing ODIN source code via CVS
631----------------------------------------
632
633Please check out http://www.netlabs.org/ and http://www.netlabs.org/odin.
634
635
6365.3.0 Building the binaries
637---------------------------
638
639The first time you want to build Odin, you must first run configure.cmd.
640This REXX script creates the file makefile.inc, which contains the absolute
641paths of important build directories.
642
643If your system setup meets above stated requirements, everything you
644need to do next for a binary build is:
645
646 nmake DEBUG=1
647
648or alternatively
649
650 nmake release (not working right now!)
651
652As the current state of the project is still known to be alpha level, one should
653expect some functions not to work properly. Therefore, we recommend the use of
654the debug-version which creates long logfiles for problem determination purpose
655and to allow active debugging with debuggers such as IPMD, ICAT, KDB, etc.
656
657Please note if you do not want to suffer from the performance loss of writing
658logfiles, you can disable logging even with the debug binaries of ODIN by
659setting:
660
661 SET NOWIN32LOG=YES
662
663To enable logging again, clear this environment variable by typing:
664
665 SET NOWIN32LOG=
666
667Logging is enabled by default in the debug build, but disabled by default
668in the nodebuginfo build and not present in the release build.
669
6705.3.1 Build problems
671--------------------
672
673ODIN is moving at a fast pace. Sometimes side effects of source dependencies may
674require you to do a full rebuild of the binaries instead of an incremental build.
675
676However, rarely it also happens the sources contained in the CVS repository do
677not build completely due to erroneous source code. Usually, this is fixed within
678two days at maximum.
679In such event, one can normally stick with the previous version of the particular
680module to further test win32 applications on ODIN.
681
682Please report such build problems through the appropriate channel.
683
684
6855.3.2 Downloading daily built binaries
686--------------------------------------
687
688http://www.os2.org/ has setup an ftp server that hosts the automatically
689built binaries on daily basis. For people that do not have a suitable
690development setup for ODIN, we provide the latest binary code that way.
691
692
6935.4.0 Project participation
694---------------------------
695
696As ODIN became an open source project, everybody is kindly invited to
697contribute his/her share to the progress of the project. May it be
698active coding, fixing bugs or just providing detailed information about
699examined problems.
700
701We suggest you subscribe to win32os2-wai and the corresponding mailing lists
702on http://www.egroups.com.
703In case you are interested in participating, every member of the project will
704be happy to give you direction to the right places and to give a personal
705introduction to further development of the particular modules.
706
707
7086.0 Warranty
709------------
710
711EXCEPT AS OTHERWISE RESTRICTED BY LAW, THIS WORK IS PROVIDED
712WITHOUT ANY EXPRESSED OR IMPLIED WARRANTIES OF ANY KIND, INCLUDING
713BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF FITNESS FOR A
714PARTICULAR PURPOSE, MERCHANTABILITY OR TITLE. EXCEPT AS
715OTHERWISE PROVIDED BY LAW, NO AUTHOR, COPYRIGHT HOLDER OR
716LICENSOR SHALL BE LIABLE TO YOU FOR DAMAGES OF ANY KIND, EVEN IF
717THEY HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
Note: See TracBrowser for help on using the repository browser.