天天看點

Mac上編譯安裝nginx報錯

剛剛進的一台macbook 手動搭開發環境 首先是nginx 但是make的時候會提示下面類似的資訊

-o objs/src/core/ngx_crypt.o \
		src/core/ngx_crypt.c
src/core/ngx_crypt.c:82:5: error: 'MD5_Init' is deprecated: first deprecated in
      OS X 10.7 [-Werror,-Wdeprecated-declarations]
    ngx_md5_init(&md5);
    ^
src/core/ngx_md5.h:30:25: note: expanded from macro 'ngx_md5_init'
#define ngx_md5_init    MD5_Init
                        ^
/usr/include/openssl/md5.h:113:5: note: 'MD5_Init' has been explicitly marked
      deprecated here
int MD5_Init(MD5_CTX *c) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
src/core/ngx_crypt.c:83:5: error: 'MD5_Update' is deprecated: first deprecated
      in OS X 10.7 [-Werror,-Wdeprecated-declarations]
           

後來網上找到的解決辦法是./configure的時候加上參數

./configure --with-cc-opt="-Wno-deprecated-declarations"
           

這樣就能繼續make install了~

繼續閱讀