I need to install the pcre-devel package to compile lighttpd on Ubuntu:
configure: error: pcre-config not found, install the pcre-devel package or build with –without-pcre
Can you please tell me how to do that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try using
apt-cache search, e.g.,For me this turns up a lot so I grep for the keyword
dev.This turns up
libpcre3-devandlibpcre++-dev.lighttpdwill use one of those no doubt.So if your search shows
libpcre3-dev, you can install using:sudo apt install libpcre3-devHowever, is there any reason you’re compiling lighttpd yourself?
Why not install using
apt?Including
lighttpd-dev,lighttpd-docand some related modules.