Update of /cvsroot/libufo/ufo-0.5
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22839
Modified Files:
INSTALL
Log Message:
Added some rough installation guidelines.
Index: INSTALL
===================================================================
RCS file: /cvsroot/libufo/ufo-0.5/INSTALL,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** INSTALL 23 Aug 2002 17:44:37 -0000 1.1.1.1
--- INSTALL 30 Sep 2005 14:01:51 -0000 1.2
***************
*** 1,2 ****
--- 1,70 ----
+ ==== LibUFO installation ====
+
+ Program requirements:
+ * OpenGL/Mesa3D libraries
+
+ Where to obtain the above:
+ * Mesa3D http://sourceforge.net/projects/mesa3d
+ (Most people have already a OpenGL installed)
+
+
+ Installation procedure (Unix)
+ =============================
+
+ 1. Run 'configure' with any desired options. (If you are unfamiliar with
+ Autoconf scripts, see the "Basic Installation" section below)
+
+ 2. Run 'make'.
+
+ 3. Run 'make install' to install the program.
+
+
+ Installation procedure (Win32)
+ =============================
+
+ a) Using MS VC++ 6
+ ------------------
+ Please look into the msvc subdirectory and read Readme-vc6.txt
+
+ b) Using free software (MinGW)
+ ------------------------------
+ 1. Download from the following site:
+ http://www.mingw.org/download.html
+
+ MinGW-4.1.0.exe (or newer)
+ MSYS-1.0.10.exe (or newer)
+ msysDTTK-1.0.1.exe (or newer)
+
+ and run them.
+
+ You should have now a working MinGW system.
+
+ 2. Open a MSys console (usually c:\msys\1.0\msys.bat).
+ Switch to the directory where your ufo tar.gz file is.
+ Decompress via
+ tar -xvzf ufo-version.tar.gz
+
+ change to the newly created directory.
+
+ 3. You can now procede with the common Unix way:
+ Run 'configure'
+ Run 'make'
+ Run 'make install'
+
+ (If configure fails with warnings that your compiler can't produce
+ correct binaries, you might have to adjust the path and add mingw, e.g. via
+ 'export PATH=/c/mingw/bin:$PATH')
+
+ 4. To compile the examples using the configure script, you will
+ need pkg-config.
+
+ Tor Lillqvist provides some binaries at
+ http://www.gimp.org/~tml/gimp/win32/downloads.html
+
+ You'll need "libiconv", "gettext-runtime", "glib" and "pkgconfig".
+
+
+
+
Basic Installation
==================
|