source: trunk/README.OS2@ 145

Last change on this file since 145 was 145, checked in by Dmitry A. Kuminov, 16 years ago

More limitations.

File size: 4.0 KB
Line 
1This is Beta 1 of Qt version 4.5.1 for OS/2 and eCS.
2
3This document contains a brief information on the OS/2
4version of the Qt library. Please visit the project page at
5
6 http://svn.netlabs.org/qt4/wiki
7
8to get more information and the latest news and to report bugs.
9
10
11REQUIREMENTS
12
13In order to compile the Qt library, you will need the following tools:
14
15 - One of the OS/2 Warp 4, OS/2 Warp 4.5 or eComStation operating systems.
16
17 - InnoTek GCC compiler version 3.3.5 CSD3 or above (not tested).
18 You can download a copy of the compiler using the following link:
19
20 ftp://ftp.netlabs.org/pub/gcc/GCC-3.3.5-csd3.zip
21
22 - Patched OpenWatcom linker which you can download from:
23
24 ftp://ftp.netlabs.org/pub/gcc/wl-hll-r1.zip
25
26 Note that if you use IBM ILINK (no matter what version), you will
27 not be able to compile the debug version of the library due to
28 bugs/limitations of ILINK.
29
30 - GNU Make 3.81beta1 or above (not tested) available at:
31
32 http://unix.os2site.com/pub/binary/make/make-3_81beta1-bin-static.zip
33
34After unpacking the GCC archive, you will have to set up the compiler
35environment by invoking gccenv.cmd from the bin subdirectory with the
36correct arguments (type gccenv.cmd -? for help). For the OpenWatcom
37linker, specify WLINK as the second argument. You will also need to perform
38the followingn steps:
39
40 - Make sure the selected linker and the make utility are in PATH.
41
42 - set LIBRARY_PATH=C:\OS2\DLL;C:\MPTN\DLL where C: is your boot drive.
43
44 - set QMAKESPEC=os2-g++
45
46 - set QTDIR=<path_to_Qt4_sources>
47
48When the environment is set up, go to the directory where you unpacked the
49Qt4 source tree and type:
50
51 configure.cmd
52
53This will set up the library (create necessary configuration and include files)
54and build the qmake utility.
55
56Then go to the src subdirectory and type:
57
58 qmake
59 make release
60
61This will compile and link the release version of the library (without debug
62information). If you also need the debug version you should additionally type:
63
64 make debug
65
66Onte the library is successfully built, you may try to compile the demos
67and examples by visiting the individual example's subdirectory in the source
68tree and typing 'qmake' and 'make release' or 'make debug' there.
69
70
71CURRENT LIMITATIONS
72
73 1. configure.cmd is not yet capable of generating the main Makefile and
74 individual Makefiles for modules and examples. This needs to be done by
75 hand (as described above).
76
77 2. Beta 1 can only use one font at the moment, C:\PSFONTS\HELV.PFB.
78 Make sure this file exists.
79
80 3. Make sure you have the LANG environment variable properly set.
81 The format is ll_CC[.codepage] where ll is the language code,
82 CC is the country code and codepage is the optional code page
83 to use. If LANG is missing or invalid, string conversion operations
84 may work incorrectly resulting in distorted text input or output.
85
86 4. Some functionality of the already available Qt classes may be limited or
87 unimplemented. If you find such a case and there is no ticket for it
88 in the bug tracker, feel free to add one.
89
90 5. There is no Network module yet, so networking applications will
91 not compile.
92
93 6. No native PM style.
94
95 7. No QDesigner, QLinguist and QAssistant.
96
97 8. No Drag&Drop, no printer support, no sound. See the project roadmap for
98 more information on the progress and current limitations:
99
100 http://svn.netlabs.org/qt4/roadmap
101
102
103CREDITS
104
105Dmitry A. Kuminov (development)
106Silvan Scherrer (management)
107
108netlabs.org (hosting & support)
109
110Nokia Corporation (original Qt library)
111
112We also want to THANK all individuals and organizations who made the donations
113to this project and helped to make it happen. Please visit
114
115 http://qt.netlabs.org/en/site/index.xml
116
117to get the full list of sponsors and to find information on how you can support
118the project.
119
120
121
122Qt is a trademark of Nokia Corporation and/or its subsidiary(-ies).
123OS/2 and OS/2 Warp are trademarks of the IBM Corporation and/or its subsidiary(-ies).
124eComStation is a trademark of Serenity Systems International and/or its subsidiary(-ies).
125Etc.
Note: See TracBrowser for help on using the repository browser.