Changeset 61

Show
Ignore:
Timestamp:
01/19/08 11:36:26
Author:
hobu
Message:

update to ReST

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spatialindex/trunk/INSTALL

    • Property svn:mime-type set to text/x-rst
    • Property svn:keywords set to Id Rev Author Date
    r36 r61  
    1 INSTALLING 
     1***************************************************************************** 
     2 SpatialIndex Installation  
     3***************************************************************************** 
    24 
    3 To install the library you need to do the 
    4 following: 
     5:Author: Marios Hadjieleftheriou 
     6:Contact: marioh@research.att.com 
     7:Revision: $Revision$ 
     8:Date: $Date$ 
    59 
    6   1. Set the CXXFLAGS environment variable to 
    7   your preferred settings, for example: 
     10..  The next heading encountered becomes our H2 
     11.. 
     12 
     13.. sectnum:: 
     14 
     15.. contents:: 
     16    :depth: 2 
     17    :backlinks: top 
     18     
     19To install the library you need to do the following: 
     20 
     211. Set the CXXFLAGS environment variable to your preferred settings, for example: 
     22 
     23:: 
     24 
    825    export CXXFLAGS="-O2" 
    926    export CXXFLAGS="-Wall -g" 
    10   The default flags are "-O2 -DNDEBUG".  
    1127 
    12   2. Run: 
     28The default flags are "-O2 -DNDEBUG".  
     29 
     302. Run: 
     31 
     32:: 
     33 
    1334    ./configure 
    1435 
    15   You can use --enable-debug to compile a debug library. 
     36You can use --enable-debug to compile a debug library. 
    1637 
    17   By default include files and library files 
    18   will be installed in /usr/local. If you would 
    19   like to use a different installation directory 
    20   (e.g., in case that you do not have root access) 
    21   run the configure script with the --prefix option: 
     38By default include files and library files will be installed in /usr/local.  
     39If you would like to use a different installation directory (e.g., in case  
     40that you do not have root access) run the configure script with the --prefix option: 
     41 
     42:: 
     43 
    2244    ./configure --prefix=/home/marioh/usr 
    2345 
    24   5. Make the library: 
     465. Make the library: 
     47 
     48:: 
     49   
    2550    make 
    2651 
    27   6. Install the library: 
     526. Install the library: 
     53 
     54:: 
     55 
    2856    make install 
    2957