Changeset 2476
- Timestamp:
- 09/15/01 17:50:31 (7 years ago)
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/configure.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r2460 r2476 1 2001-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 10 2001-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 1 22 2001-09-06 Frank Warmerdam <warmerdam@pobox.com> 2 23 trunk/configure.in
r2471 r2476 39 39 dnl --------------------------------------------------------------------------- 40 40 41 AC_ARG_WITH(libz,[ --with-libz[=ARG] Include libz support (ARG=internal or li nk argument)],,)41 AC_ARG_WITH(libz,[ --with-libz[=ARG] Include libz support (ARG=internal or libz directory)],,) 42 42 43 43 if test "$with_libz" = "external" -o "$with_libz" = "" ; then … … 58 58 59 59 LIBZ_SETTING=external 60 LIBS=" $with_libz $LIBS"60 LIBS="-L$with_libz -L$with_libz -lz $LIBS" 61 61 62 62 echo "using $with_libz for libz."
