的libjpeg:编译错误(libjpeg: compile error)

2019-09-17 16:05发布

我试图编译使用MinGW的-W64的libjpeg(版本8D)。 我启动建立它的命令是:

  • msys.bat
  • 。/配置
  • 使

在第三步中我得到这个错误:

$ make 
D:/Builder/bin/make  all-am
make[1]: Entering directory `d:/8d'
    CC    jaricom.lo
    CC    jcapimin.lo
jcapimin.c:127:1: error: conflicting types for 'jpeg_suppress_tables'
jcapimin.c:128:1: note: an argument type that has a default promotion can't match an empty parameter name list declaration
In file included from jcapimin.c:22:0:
jpeglib.h:982:14: note: previous declaration of 'jpeg_suppress_tables' was here
make[1]: *** [jcapimin.lo] Error 1
make[1]: Leaving directory `d:/8d'
make: *** [all] Error 2

是否有人知道如何解决它?

Answer 1:

$ autoheader
$ ./configure
$ make


Answer 2:

另一种解决方案是增加#define HAVE_PROTOTYPES 1至jconfig.h和运行make如下建议: 编译的libjpeg使用MinGW



文章来源: libjpeg: compile error
标签: c++ jpeg libjpeg