`
angellin0
  • 浏览: 114142 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

Varnish安装No package 'libpcre' found

 
阅读更多
安装varnish,当configure时报错:
configure: WARNING: xsltproc not found ?not building documentation
checking for rst2man... no
checking for rst2man.py... no
configure: WARNING: rst2man not found ?not building man pages
checking for clock_gettime in -lrt... yes
checking for dlopen in -ldl... yes
checking for library containing initscr... no
configure: WARNING: curses not found; some tools will not be built
checking for library containing pthread_create... -lpthread
checking for socket in -lsocket... no
checking for getaddrinfo in -lnsl... yes
checking for cos in -lm... yes
checking for pkg-config... no
checking for PCRE... no
configure: error: in `/root/varnish-2.1.5':
configure: error: The pkg-config script could not be found or is too old.  Make sure it
is in your PATH or set the PKG_CONFIG environment variable to the full
path to pkg-config.

Alternatively, you may set the environment variables PCRE_CFLAGS
and PCRE_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

解决方法:
sudo apt-get install xsltproc  rst2man libncurses5-dev


checking for library containing pthread_create... -lpthread 
checking for socket in -lsocket... no 
checking for getaddrinfo in -lnsl... yes 
checking for cos in -lm... yes 
checking for pkg-config... /usr/bin/pkg-config 
checking pkg-config is at least version 0.9.0... yes 
checking for PCRE... no 
configure: error: Package requirements (libpcre) were not met: 

No package 'libpcre' found 

Consider adjusting the PKG_CONFIG_PATH environment variable if you 
installed software in a non-standard prefix. 

Alternatively, you may set the environment variables PCRE_CFLAGS 
and PCRE_LIBS to avoid the need to call pkg-config. 
See the pkg-config man page for more details. 


解决方法:
sudo apt-get install libpcre3-dev

export PKG_CONFIG_PATH=/usr/local/lib

再重新编译即可。
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics