Changes between Version 3 and Version 4 of BuildingOnUnixWithAutotools


Ignore:
Timestamp:
Jan 27, 2010, 3:31:07 PM (14 years ago)
Author:
mloskot
Comment:

Restructured autotools instructions

Legend:

Unmodified
Added
Removed
Modified
  • BuildingOnUnixWithAutotools

    v3 v4  
    99
    1010
     11== Configure ==
     12
     13Note, if you are building GEOS downloaded from SVN, you need to have [http://en.wikipedia.org/wiki/GNU_build_system Autotools] available in your system, so you can first generate ''./configure'' script using the following command:
     14
    1115{{{
    12 ./configure
    13 make
    14 make install
     16$ ./autogen.sh
    1517}}}
    1618
    17 Note, if you are building GEOS downloaded from SVN, you need to have [http://en.wikipedia.org/wiki/GNU_build_system Autotools] available in your system, so you can first generate ''./configure'' script using the following command:
     19Now, run configuration script:
     20
    1821{{{
    19 ./autogen.sh
     22$ ./configure
    2023}}}
    21 
    22 Then, you will be able to execute ''./configure'' and next the three commands listed above: ''make'' and ''make install''.
    2324
    2425For more details about configuration options run:
     
    2627./configure --help
    2728}}}
     29
     30== Build ==
     31
     32{{{
     33$ make
     34}}}
     35
     36== Test ==
     37
     38{{{
     39$ make check
     40}}}
     41
     42== Install ==
     43
     44{{{
     45$ make install
     46}}}