hue 编译错误 error: command 'gcc' failed with exit status 1

OpenSSL/crypto/crl.c:6:23: error: static declaration of ‘X509_REVOKED_dup’ follows non-static declaration
 static X509_REVOKED * X509_REVOKED_dup(X509_REVOKED *orig) {
                       ^
In file included from /usr/include/openssl/ssl.h:156:0,
                 from OpenSSL/crypto/x509.h:17,
                 from OpenSSL/crypto/crypto.h:30,
                 from OpenSSL/crypto/crl.c:3:
/usr/include/openssl/x509.h:751:15: note: previous declaration of ‘X509_REVOKED_dup’ was here
 X509_REVOKED *X509_REVOKED_dup(X509_REVOKED *rev);
               ^
error: command 'gcc' failed with exit status 1
make[2]: *** [/opt/modules/hue-3.7.0-cdh5.3.6/desktop/core/build/pyopenssl/egg.stamp] Error 1
make[2]: Leaving directory `/opt/modules/hue-3.7.0-cdh5.3.6/desktop/core'
make[1]: *** [.recursive-env-install/core] Error 2
make[1]: Leaving directory `/opt/modules/hue-3.7.0-cdh5.3.6/desktop'
make: *** [desktop] Error 2

解决办法

    在该文件中删除751、752  这两行 

 /usr/include/openssl/x509.h   


X509_REVOKED *X509_REVOKED_dup(X509_REVOKED *rev);
X509_REQ *X509_REQ_dup(X509_REQ *req);
##必须删掉,注释不行

参考原文:https://blog.csdn.net/a1031891160/article/details/81982407 

 

你可能感兴趣的:(Hue)