Selon "Jay L." <[email protected]>: > Frank, > > Thanks for the heads up. I am using the --without-jasper flag as part of > the ./configure call. Here is the error that I am seeing - that led to me > to believe that the issue is jasper related: > > make[1]: Entering directory `/home/vagrant/gdal-1.10.1/apps' > g++ gdalinfo.o commonutils.o -L/home/vagrant/gdal-1.10.1 -lgdal > -lpthread -lm -lrt -ldl -o gdalinfo > /home/vagrant/gdal-1.10.1/libgdal.so: undefined reference to `dec_jpeg2000' > collect2: ld returned 1 exit status > make[1]: *** [gdalinfo] Error 1 > make[1]: Leaving directory `/home/vagrant/gdal-1.10.1/apps' > make: *** [apps-target] Error 2 > > I did install libjpeg-dev and libjasper-dev in hopes that this would > alleviate the issue. > > Perhaps I am pursuing the issue in the wrong direction?
When you run ./configure several times, make sure to run "make clean" between the attempts. I'm not clear why you've had this error with the "dec_jpeg2000" symbol that is defined and used in the GRIB driver (it has a definition even if you don't have Jasper). Anway the "make clean" will probably solve it. Generally, "./configure" without any particular argument should work on most platforms. > > Thanks, > Jay > > > On Thu, Jan 9, 2014 at 9:33 PM, Frank Warmerdam <[email protected]> wrote: > > > Jay, > > > > Are you needing Jasper? Normally a default build ("./configure") should > > work pretty well on a precise system. I'm guessing you have enabled jasper > > because it is key to what you want to do? If not --without-jasper should > > be straight forward. > > > > Best regards, > > Frank > > > > > > > > On Thu, Jan 9, 2014 at 8:00 PM, Jay L. <[email protected]> wrote: > > > >> List, > >> > >> I wonder if a standard dev. environment exists? I am working to extend a > >> driver and am having trouble getting an environment working that will > >> compile. Current setup is a VagrantVM, Ubuntu 12.04 32-bit with source > >> downloaded from SVN. Attempting to build with minimized > drivers<http://trac.osgeo.org/gdal/wiki/BuildingOnUnixWithMinimizedDrivers>as > per the build documentation and am having build errors due to > >> dec_jpeg2000 (jasper I believe). > >> > >> Q: Are devs using a standard environment (or a different flavor of *nix?)? > >> > >> > >> > >> > >> > >> _______________________________________________ > >> gdal-dev mailing list > >> [email protected] > >> http://lists.osgeo.org/mailman/listinfo/gdal-dev > >> > > > > > > > > -- > > > > > ---------------------------------------+-------------------------------------- > > I set the clouds in motion - turn up | Frank Warmerdam, > > [email protected] > > light and sound - activate the windows | http://pobox.com/~warmerdam > > and watch the world go round - Rush | Geospatial Software Developer > > > _______________________________________________ gdal-dev mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/gdal-dev
