Changes between Version 11 and Version 12 of Ubuntu-8.10Build


Ignore:
Timestamp:
Jan 1, 2009, 7:50:22 AM (15 years ago)
Author:
epifanio
Comment:

added notes to compile against more recent version of libtiff-libgeotiff

Legend:

Unmodified
Added
Removed
Modified
  • Ubuntu-8.10Build

    v11 v12  
    4545}}}
    4646
     47To enable big-tiff support a recent version of libtiff and libgeotiff is needed.
     48so download and compile it :
     49
     50{{{
     51wget http://download.osgeo.org/libtiff/tiff-4.0.0beta2.tar.gz
     52tar xvfz tiff-4.0.0beta2.tar.gz
     53cd tiff-4.0.0beta2
     54./configure
     55make
     56sudo make install
     57
     58wget http://download.osgeo.org/geotiff/libgeotiff/libgeotiff-1.2.5.tar.gz
     59tar xvfz libgeotiff-1.2.5.tar.gz
     60cd libgeotiff-1.2.5
     61./configure
     62make
     63sudo make install
     64}}}
    4765
    4866Download ossim from svn:
     
    86104{{{
    87105cd $OSSIM_DEV_HOME/ossim
    88  ./configure --with-geotiff=/usr/include/geotiff --with-jpeg=/usr --with-libtif
     106 ./configure --with-geotiff=/usr/local/ --with-jpeg=/usr --with-libtif=/usr/local/ --prefix=/usr/local/ossim
     107
    89108make
    90109sudo make install