[Gdal-dev] GDAL 1.3.2 Beta 2 Released

Dion Wooning dion at west.nl
Fri Apr 28 07:59:48 EDT 2006


Hello list,

Frank Warmerdam said:
> A few significant issues were encountered in the GDAL 1.3.2 beta1, so

> Hopefully this will help but I would appreciate wide operating system
> tests of it.

Build system: Redhat Enterprise Linux 3.0

I've encountered two slight problems, I'll describe them and give a
quick fix to at least get the build working:

1. building with MrSID ESDK V5: file lti_version.h is missing.
   quick fix: I've cooked up a lti_version.h file and put it in
   frmts/mrsid/ for example:

#ifndef LTI_VERSION_H
#define LTI_VERSION_H

#define LTI_SDK_VERSION 0x0506
#define LTI_SDK_MAJOR  5
#define LTI_SDK_MINOR  0
#define LTI_SDK_REV    6

#endif // LTI_VERSION_H

2. link problems with OpenDWG current or older: the linklibs don't get
   included properly into the list of libs. I think this is caused by
   a wrong order of definition in GDALmake.opt.in, as the following
   line:

   LIBS    =       @LIBS@ $(DWG_LIBS) $(SDE_LIB)

   is found above the section where DWG_LIBS is defined:

   # DWGdirect Library
   [...]
   DWG_LIBS = [...]

   quick fix: include the following line below the DWGdirect Library
   section:

LIBS += $(DWG_LIBS)

Yours,
Dion Wooning.





More information about the Gdal-dev mailing list