|
|
/usr/local/include/jmorecfg.h:263:16: error: expected identifier before numeric constant
tif_jpeg.c: In function 'JPEGVSetField':
tif_jpeg.c:1578:8: warning: suggest braces around empty body in an 'if' statement [-Wempty-body]
make[2]: *** [tif_jpeg.lo] Error 1
make[2]: Leaving directory `/home/pranav/dependency/tiff-3.8.2/libtiff'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/pranav/dependency/tiff-3.8.2/libtiff'
make: *** [all-recursive] Error 1
================================
다음의 파일을 아래와 같이 편집하고 재 컴파일 하면 성공한다.
vi /usr/local/include/jmorecfg.h
modify (수정)
typedef enum { FALSE = 0 , TRUE = 1 } boolean;
to typedef enum { false= 0 , true= 1 } boolean;
make successful