Opened 22 years ago
Last modified 22 years ago
#192 closed defect (fixed)
Compile errors on IRIX
Reported by: | Owned by: | warmerdam | |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | default | Version: | unspecified |
Severity: | normal | Keywords: | |
Cc: |
Description
I have compiled GDAL 1.1.7 on IRIX 6.2 and got a few errors that I was able to resolve as follows: 1) in file frmts/usgsdem/usgsdemdataset.cpp "usgsdemdataset.cpp", line 331: error(3114): identifier "boolean" is undefined boolean bNewFormat; Not too sure about this but was able to fix it by adding the following lines from frmts/jpeg/jmorecfg.h near the start of usgsdemdataset.cpp: /* * On a few systems, type boolean and/or its values FALSE, TRUE may appear * in standard header files. Or you may have conflicts with application- * specific header files that you want to include together with these files. * Defining HAVE_BOOLEAN before including jpeglib.h should make it work. */ #ifndef HAVE_BOOLEAN typedef int boolean; #endif #ifndef FALSE /* in case these macros already exist */ #define FALSE 0 /* values of boolean */ #endif #ifndef TRUE #define TRUE 1 #endif 2) in file ogr/ogrsf_frmts/shape/shpopen.c This is a C file but contained some C++ // comments on lines 1829, 1835, 1841 and 1850. Just had to change these to /* */ syntax 3) in file ogr/ogrsf_frmts/avc/avc_bin.c Another C file with a C++ style comment, this time on line 475. Changed this to /* */ syntax. Everything seems to have compiled OK after that.
Change History (2)
comment:2 by , 22 years ago
For the record, I have updated the master copy of the AVC library to remove the C++ style comment in avc_bin.c
Note:
See TracTickets
for help on using tickets.