forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
96 lines (62 loc) · 2.16 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
BUILDING, TESTING, INSTALLING
=============================
Unix
----
Using Autotools:
./autogen.sh # in ${srcdir}, if obtained from SVN
${srcdir}/configure # in build dir
Using CMake:
cmake ${srcdir} # in build dir
Now, all versions:
make
make check
make install # as root
ldconfig # as root
Win32
-----
If you use Microsoft Visual C++ (7.1 or later) compiler, you can build
GEOS using NMAKE program and provided makefile.vc files.
If you are building from SVN checkout, first run: autogen.bat
Then:
nmake /f makefile.vc MSVC_VER=1400
where 1400 is version number of Visual C++ compiler, here Visual C++ 8.0
from Visual Studio 2005 (supported versions are 1300, 1310, 1400 and 1500).
The bootstrap.bat step is required to generate a couple of header files.
In order to build debug configuration of GEOS, additional flag DEBUG=1
is required:
nmake /f makefile.vc MSVC_VER=1400 DEBUG=1
CLIENT APPLICATIONS
===================
Using the C interface (recommended)
-----------------------------------
To compile programs against the C lib (recommended):
CFLAGS += `geos-config --cflags`
LDFLAGS += `geos-config --ldflags` -lgeos_c
#include <geos_c.h>
Example usage:
capi/geostest.c contains basic usage examples.
Using the C++ interface (discouraged)
-------------------------------------
To compile programs against the C++ lib:
CFLAGS += `geos-config --cflags`
LDFLAGS += `geos-config --ldflags` -lgeos
#include <geos.h>
Example usage:
doc/example.cpp contains basic usage examples.
Scripting language bindings
---------------------------
Ruby bindings are fully supported. To build, use the --enable-ruby option
when configuring:
./configure ... --enable-ruby
PHP bindings are fully supported. To build, use the --enable-php option
when configuring:
./configure ... --enable-php
Since version 3.0, the Python bindings are unsupported. Recommended options:
1. Become or recruit a new maintainer.
2. Use Shapely (http://pypi.python.org/pypi/Shapely) with Python
versions 2.4 or greater.
3. Simply call functions from libgeos_c via Python ctypes.
DOCUMENTATION
=============
cd doc; make doxygen-html
http://trac.osgeo.org/geos