Changeset 2476

Show
Ignore:
Timestamp:
09/15/01 17:50:31 (7 years ago)
Author:
warmerda
Message:

fixed bug 75 on --with-libz handling

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r2460 r2476  
     12001-09-15  Frank Warmerdam  <warmerdam@pobox.com> 
     2 
     3        * configure.in: modified --with-libz handling as per bug 75, to be 
     4        more standard. 
     5 
     6        http://bugzilla.remotesensing.org/show_bug.cgi?id=76 
     7 
     8=============================================================================== 
     9         
     102001-09-15  Frank Warmerdam  <warmerdam@pobox.com> 
     11 
     12        * Release GDAL 1.1.5. 
     13 
     14        * Modify include order in most GNUmakefiles to ensure that  
     15        include paths for system stuff (like /usr/local/include) don't take 
     16        priority over application include files in GDAL tree.  Especially 
     17        important when there is an old GDAL already installed. 
     18 
     19        * ogr/ogrsf_frmts/mitab: Upgraded to include fast spatial query  
     20        support, and attribute query support. 
     21 
    1222001-09-06  Frank Warmerdam  <warmerdam@pobox.com> 
    223 
  • trunk/configure.in

    r2471 r2476  
    3939dnl --------------------------------------------------------------------------- 
    4040 
    41 AC_ARG_WITH(libz,[  --with-libz[=ARG]       Include libz support (ARG=internal or link argument)],,) 
     41AC_ARG_WITH(libz,[  --with-libz[=ARG]       Include libz support (ARG=internal or libz directory)],,) 
    4242 
    4343if test "$with_libz" = "external" -o "$with_libz" = "" ; then 
     
    5858 
    5959  LIBZ_SETTING=external 
    60   LIBS="$with_libz $LIBS" 
     60  LIBS="-L$with_libz -L$with_libz -lz $LIBS" 
    6161 
    6262  echo "using $with_libz for libz."