> * APACHE2
> * APACHE2-MOD-PHP5
> * PHP5
> * PHP5-CLI
> * PHP5-SQLITE
> * PROJ 4.9.2
> * GEOS 3.5.0
> * FREEXL 1.0.2
Ciao Cesare,
on Linux platforms any library is usually distributed as two
(or even more) different packages:
1. runtime: the shared library (.so)
2. development: the header files
3. other: e.g. debug, static library (.a) etc
you've just installed several runtime packages, but accordingly
to your report you've missed to install their companion "-dev"
packages, so the header files are still missing.
now you simply have to install:
- sqlite3-dev
- libproj-dev
- libgeos-dev
- libfreexl-dev
bye Sandro