nginxをコンパイルすると毎回引っかかって、その都度調べるという効率の悪い状態だったからまとめました。
# wget http://nginx.org/download/nginx-1.3.11.tar.gz # tar zxvf nginx-1.3.11.tar.gz # cd nginx-1.3.11 # ./configure ~~ ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrite_module option, or install the PCRE library into the system, or build the PCRE library statically from the source with nginx by using --with-pcre=option.
必要なライブラリはまとめると下記でした。
# apt-get install libpcre3 libpcre3-dev libpcrecpp0 libssl-dev zlib1g-dev