+c) Build instructions
+
+-> Assumming that you installed the wxWindows sources
+ into c:\wxWin
+-> Copy c:\wxWin\include\wx\msw\setup0.h
+ to c:\wxWin\include\wx\msw\setup.h
+-> Edit c:\wxWin\include\wx\msw\setup.h so that
+ most features are enabled (i.e. defined to 1) with
+ #define wxUSE_ODBC 0
+ #define wxUSE_SOCKETS 0
+ #define wxUSE_HTML 1
+ #define wxUSE_THREADS 1
+ #define wxUSE_FS_INET 0
+ #define wxUSE_FS_ZIP 1
+ #define wxUSE_BUSYINFO 1
+ #define wxUSE_DYNLIB_CLASS 1
+ #define wxUSE_ZIPSTREAM 1
+ #define wxUSE_LIBJPEG 1
+ #define wxUSE_LIBPNG 1
+
+ and iostreams ares disabled with
+ #define wxUSE_STD_IOSTREAM 0
+
+ note: ODBC and SOCKETS can be 1 for gcc-2.95
+
+-> type: cd c:\wxWin\src\msw
+-> type: make -f makefile.g95 (if using GNU tools)
+or type: make -f makefile.vc (if using MS VC++)
+
+
+II) Unix ports
+--------------
+
+Building wxGTK or wxMotif completely without configure
+won't ever work, but there is now a new makefile system
+that works without libtool and automake, using only
+configure to create what is needed.
+
+In order to create configure, you need to have the
+GNU autoconf package (version 2.13 or 2.14) installed
+on your system and type run "autoconf" in the base
+directory (or run the autogen.sh script in the same
+directory, which just calls autoconf).
+
+Set WXWIN environment variable to the base directory such
+as ~/wxWindows (this is actually not really needed).
+
+-> type: export WXWIN=~/wxWindows
+-> type: md mybuild