Nginx編譯時error: assignment makes pointer from integer without a cast處理
Nginx升級-從nginx-1.8.1到nginx-1.12.2
原來是原始碼編譯安裝的
升級過程中,make時報錯
……
c/http -I src/http/modules \
-o objs/src/http/modules/ngx_http_stub_status_module.o \
src/http/modules/ngx_http_stub_status_module.c
cc -c -pipe -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g -I src/core -I src/event -I src/event/modules -I src/os/unix -I /data/pcre-8.37 -I objs -I src/http -I src/http/modules \
-o objs/addon/nginx-sticky-module-1.25/ngx_http_sticky_module.o \
/data/nginx-sticky-module-1.25/ngx_http_sticky_module.c
cc1: warnings being treated as errors
/data/nginx-sticky-module-1.25/ngx_http_sticky_module.c: In function ‘ngx_http_get_sticky_peer’:
/data/nginx-sticky-module-1.25/ngx_http_sticky_module.c:340: error: assignment makes pointer from integer without a cast
make[1]: *** [objs/addon/nginx-sticky-module-1.25/ngx_http_sticky_module.o] Error 1
make[1]: Leaving directory `/data/nginx-1.12.2'
make: *** [build] Error 2
[root@test01 nginx-1.12.2]#
參考網上資料進行檔案修改後成功解決
第一次修改:
ngx_http_sticky_misc.c 的281行修改如下
原
digest->len = ngx_sock_ntop(in, digest->data, len, 1);
改後
digest->len = ngx_sock_ntop(in, sizeof(struct sockaddr_in), digest->data, len, 1);
ngx_http_sticky_module.c檔案也進行修改
第6行新增:
#include <nginx.h>
第340行左右修改(iphp->rrp.current = iphp->selected_peer;)為:
if (peer && selected_peer >= 0) {
ngx_log_debug(NGX_LOG_DEBUG_HTTP, pc->log, 0, "[sticky/get_sticky_peer] peer found at index %i", selected_peer);
#if defined(nginx_version) && nginx_version >= 1009000
iphp->rrp.current = peer;
#else
iphp->rrp.current = iphp->selected_peer;
#endif
但是再次編譯又有新的報錯:
rc/http -I src/http/modules \
-o objs/addon/nginx-sticky-module-1.25/ngx_http_sticky_misc.o \
/data/nginx-sticky-module-1.25/ngx_http_sticky_misc.c
/data/nginx-sticky-module-1.25/ngx_http_sticky_misc.c: In function ‘ngx_http_sticky_misc_md5’:
/data/nginx-sticky-module-1.25/ngx_http_sticky_misc.c:152: error: ‘MD5_DIGEST_LENGTH’ undeclared (first use in this function)
/data/nginx-sticky-module-1.25/ngx_http_sticky_misc.c:152: error: (Each undeclared identifier is reported only once
/data/nginx-sticky-module-1.25/ngx_http_sticky_misc.c:152: error: for each function it appears in.)
cc1: warnings being treated as errors
/data/nginx-sticky-module-1.25/ngx_http_sticky_misc.c:152: error: unused variable ‘hash’
/data/nginx-sticky-module-1.25/ngx_http_sticky_misc.c: In function ‘ngx_http_sticky_misc_hmac_md5’:
/data/nginx-sticky-module-1.25/ngx_http_sticky_misc.c:189: error: ‘MD5_DIGEST_LENGTH’ undeclared (first use in this function)
/data/nginx-sticky-module-1.25/ngx_http_sticky_misc.c:190: error: ‘MD5_CBLOCK’ undeclared (first use in this function)
/data/nginx-sticky-module-1.25/ngx_http_sticky_misc.c:190: error: unused variable ‘k’
/data/nginx-sticky-module-1.25/ngx_http_sticky_misc.c:189: error: unused variable ‘hash’
make[1]: *** [objs/addon/nginx-sticky-module-1.25/ngx_http_sticky_misc.o] Error 1
make[1]: Leaving directory `/data/nginx-1.12.2'
make: *** [build] Error 2
[root@test01 nginx-1.12.2]#
第二次修改:
ngx_http_sticky_misc.c中新增2個模組<openssl/sha.h> 和 <openssl/md5.h>
#include <nginx.h>
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
#include <ngx_md5.h>
#include <ngx_sha1.h>
#include <openssl/sha.h>
#include <openssl/md5.h>
#include "ngx_http_sticky_misc.h"
之後再重新編譯就不會出錯了。
參考:
1、
2、 https://blog.csdn.net/zbc496218/article/details/52515247
後續文章將主要在公眾號“技術進階與實戰”(WXID:HelloException)釋出,歡迎關注
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29734436/viewspace-2222363/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- logstash nginx error access 日誌處理NginxError
- [譯] Part 30: Golang 中的Error處理GolangError
- 編譯儲存過程時被卡死的處理方法編譯儲存過程
- GCC編譯過程(預處理->編譯->彙編->連結)GC編譯
- nginx之 nginx-1.9.7 編譯安裝、理論簡介Nginx編譯
- Nginx 超時事件的處理機制Nginx事件
- 檢視已經編譯過的NGINX當時的編譯引數編譯Nginx
- ISO C++ forbids comparison between pointer and integer [-fpermissive]C++ORB
- 編譯安裝nginx時配置開機自啟編譯Nginx
- 編譯安裝Nginx編譯Nginx
- nginx編譯安裝Nginx編譯
- gcc 從語言編譯全過程 預處理---->編譯---->彙編----->連結GC編譯
- error:dereferencing pointer to incomplete typeError
- error的處理方式Error
- An error from listenerError
- Shell編譯安裝nginx編譯Nginx
- nginx的編譯和配置Nginx編譯
- nginx日誌處理Nginx
- AndroidKiller反編譯失敗的處理方法Android編譯
- [C++]函式與編譯預處理(一)C++函式編譯
- [C++]函式與編譯預處理(二)C++函式編譯
- 處理一些編譯警告的簡單編譯
- doxygen 宏定義/宏編譯/條件編譯/預處理/預編譯 不處理、忽略條件、分析所有條件、滿足所有條件的方法編譯
- 理解 Nginx 在處理請求時的匹配規則Nginx
- 如何編譯執行HanLP自然語言處理包編譯HanLP自然語言處理
- en_concat函式編譯失敗處理函式編譯
- 用批處理檔案編譯並執行java編譯Java
- CentOS 下編譯安裝 NginxCentOS編譯Nginx
- Linux編譯安裝NginxLinux編譯Nginx
- 使用 Nginx 編譯 Sass 和 ScssNginx編譯CSS
- Nginx下編譯PHP+MysqlNginx編譯PHPMySql
- LNMP—Nginx的編譯安裝LNMPNginx編譯
- macOS nginx 編譯安裝教程MacNginx編譯
- 獲取安裝後Apache、MySQL、Nginx、PHP編譯時引數ApacheMySqlNginxPHP編譯
- c++進階(一)C語言條件編譯及編譯預處理階段C++C語言編譯
- lxml處理xml時的字元編碼問題XML字元
- 15-錯誤處理(Error)Error
- Rails全域性處理Error薦AIError