As stated in various mail on the mailing list, the nitfdump utility should be build with
> cd frmts/nitf
> make nitfdump
However, this results in the error message:
/bin/sh /opt/Projects/vendor/gdal/gdal-1.5.1/libtool --mode=compile --tag=CXX g++ nitfdump.o nitffile.o nitfimage.o mgrs.o nitfaridpcm.o nitfbilevel.o rpftocfile.o /opt/Projects/vendor/gdal/gdal-1.5.1/libgdal.la -o nitfdump
libtool: compile: cannot determine name of library object from `nitfdump'
gmake: *** [nitfdump] Error 1
To fix this, modify frmts/nitf/GNUmakefile (27):
Change the
$(CXX)
to
$(LD)
Best regards