kornelski / dssim

Image similarity comparison simulating human perception (multiscale SSIM in Rust)
https://kornel.ski/dssim
GNU Affero General Public License v3.0
1.09k stars 70 forks source link

[1.x branch] Unbreak JPEG build on FreeBSD #81

Closed jbeich closed 4 years ago

jbeich commented 4 years ago

Minor convenience for targets not supported by Rust compiler (e.g., FreeBSD 32bit mips, sparc64, riscv64) or relying on C API (cargo-c creates dssim.h/libdssim.so but there're no bindings).

$ gmake USE_LIBJPEG=1
cc -Wall -I. -DNDEBUG -O3 -fstrict-aliasing -ffast-math -funroll-loops -fomit-frame-pointer -ffinite-math-only -std=c99 `pkg-config libpng --cflags || pkg-config libpng16 --cflags`  -DUSE_LIBJPEG -c -o src/dssim.o src/dssim.c
cc -Wall -I. -DNDEBUG -O3 -fstrict-aliasing -ffast-math -funroll-loops -fomit-frame-pointer -ffinite-math-only -std=c99 `pkg-config libpng --cflags || pkg-config libpng16 --cflags`  -DUSE_LIBJPEG -c -o src/rwpng.o src/rwpng.c
cc -Wall -I. -DNDEBUG -O3 -fstrict-aliasing -ffast-math -funroll-loops -fomit-frame-pointer -ffinite-math-only -std=c99 `pkg-config libpng --cflags || pkg-config libpng16 --cflags`  -DUSE_LIBJPEG   -c -o src/main.o src/main.c
src/main.c:35:21: error: jpeglib.h: No such file or directory
src/main.c: In function 'read_image_jpeg':
src/main.c:42: error: storage size of 'cinfo' isn't known
src/main.c:43: error: storage size of 'jerr' isn't known
src/main.c:44: warning: implicit declaration of function 'jpeg_std_error'
src/main.c:45: warning: implicit declaration of function 'jpeg_create_decompress'
src/main.c:48: warning: implicit declaration of function 'jpeg_stdio_src'
src/main.c:49: warning: implicit declaration of function 'jpeg_read_header'
src/main.c:49: error: 'TRUE' undeclared (first use in this function)
src/main.c:49: error: (Each undeclared identifier is reported only once
src/main.c:49: error: for each function it appears in.)
src/main.c:53: error: 'JCS_RGB' undeclared (first use in this function)
src/main.c:54: warning: implicit declaration of function 'jpeg_start_decompress'
src/main.c:78: warning: implicit declaration of function 'jpeg_read_scanlines'
src/main.c:100: warning: implicit declaration of function 'jpeg_destroy_decompress'
src/main.c:43: warning: unused variable 'jerr'
src/main.c:42: warning: unused variable 'cinfo'
gmake: *** [<builtin>: src/main.o] Error 1