1 wxWindows 2.3 for MGL installation
2 ------------------------------------
6 If you experience problems installing, please re-read these
7 instructions and other related files (todo.txt, bugs.txt and
8 osname.txt for your platform if it exists) carefully before
9 mailing wxwin-users or the author. Preferably, try to fix the
10 problem first and then send a patch to the author.
12 When sending bug reports tell us what version of wxWindows you are
13 using (including the beta) and what compiler on what system. One
14 example: wxMGL 2.3.3, gcc 2.95.3, Redhat 7.0
19 - Download SciTech MGL library (version 5.0) from http://www.scitechsoft.com.
20 (You needed a version newer than Beta 5! Preferably the one from SciTech
22 Install it according to provided instructions. In particular, make sure that
23 MGL_ROOT and NUCLEUS_PATH environment variables are set before attempting to
26 - Download wxMGL-x.y.z.tgz, where x.y.z is the version number.
27 Download documentation in a preferred format, such as
28 wxWindows-HTML.zip or wxWindows-PDF.zip.
30 - Make a directory such as ~/wx and unarchive the files into this
33 - It is recommended that you install bison and flex; using yacc
34 and lex may require tweaking of the makefiles.
36 - You can now use configure or makefiles to build wxWindows and the samples.
37 In case of problems, please use GNU make.
43 Following systems are supported by wxMGL so far:
45 - MS-DOS (DJGPP and Watcom compilers)
48 * Compiling using configure
49 ----------------------------
51 These instructions apply to installation on a Unix system (such as Linux). Please
52 see bellow for information on using configure on non-Unix platforms.
54 If you compile wxWindows on Linux for the first time and don't like to read
55 install instructions just do (in the base dir):
57 > ./configure --with-mgl
59 > su <type root password>
64 Afterwards you can continue with
67 > su <type root password>
72 If you want to remove wxWindows on Unix you can do this:
74 > su <type root password>
79 You can set many options to configure. Type
83 and you will get a list of supported options.
86 * Using wxMGL library built with configure
87 -------------------------------------------
89 'make install' will install wx-config script that can (and should) be used
90 to get compiler flags that are needed to build your program. wx-config --cxxflags
91 will output necessary C++ compiler flags and wx-config --libs will list all
92 needed libraries. See an example of wxWindows application makefile:
95 $(CC) -o minimal minimal.o `wx-config --libs`
97 minimal.o: minimal.cpp mondrian.xpm
98 $(CC) `wx-config --cxxflags` -c minimal.cpp -o minimal.o
101 * Using configure to build MS-DOS version
102 ------------------------------------------
104 Even though configure is a Unix script, you can use it to build MS-DOS version
105 of the wxMGL library. There are two possible ways to achieve this: you can
106 either cross-compile from Unix or compile natively. Either way you will needed
107 the DJGPP port of GCC compiler freely available from http://www.djgpp.org. You will
108 also need DJGPP version of SciTech MGL (this must be built using native tools).
110 Cross-compilation is very easy. It works like ordinary compilation with configure,
111 you only have to specify the target:
113 > ./configure --with-mgl --build=i586-linux --host=i586-pc-msdosdjgpp
116 If you want to build wxMGL natively using DJGPP compiler, you will have to install
117 a couple of Unix utilities. The easiest way to get them is to install the Cygwin
118 package (available from RedHat, see http://freshmeat.net/search/?q=cygwin for exact
119 URL). Cygwin contains win32 compiler, so make sure you did *not* install it! Once
120 you have Cygwin utilities and DJGPP compiler in your PATH, run bash.exe and type
122 > ./configure --with-mgl
125 in wxWindows top directory. You can build wxMGL in MS-DOS with configure, sorry.
128 * Building wxMGL for MS-DOS using Watcom C/C++
129 -----------------------------------------------
131 You will need Watcom C/C++ compiler version 11 or newer (Watcom is going to be
132 OpenSourced by SciTech, check out http://www.openwatcom.org).
134 1. Edit $(WXDIR)\include\wx\univ\setup.h to suit your needs (in same way as you
135 do when compiling wxMSW).
137 2. Go to $(WXDIR)\src\mgl and run
138 > wmake -f makefile.wat all
140 3. You can compile the samples by typing 'wmake -f makefile.mgl all' in sample
141 directory if this file is available. If it is not, copy makefile.wat to
142 makefile.mgl and replace the line that says
144 !include $(WXDIR)\src\makeprog.wat
148 !include $(WXDIR)\src\mgl\makeprog.wat
154 Please send bug reports with a description of your environment,
155 compiler and the error message(s) to the wxwin-developers mailing list at:
157 wx-dev@lists.wxwindows.org
159 Vaclav Slavik, Julian Smart, Robert Roebling and Vadim Zeitlin, February 2002.