varnish 4.0 编译问题

centos-6.5 x86环境

装varnish遇到几个错误
要先安装python-docutils
然后提示error1,于是安装:libedit-devel
然后提示error2,安装readline,readline-devel,readline-static
发现rl_callback_handler_remove还是undefined,直接重新make clean,configure一遍,然后再make的时候就正常通过了~~~

error1:libedit-dev 未安装

error2:

varnishadm-varnishadm.o: In function `cli_write':
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_callback_handler_remove'
varnishadm-varnishadm.o: In function `interactive':
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_already_prompted'
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_callback_handler_install'
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_attempted_completion_function'
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_callback_read_char'
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_forced_update_display'
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_callback_handler_remove'
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_callback_handler_remove'
varnishadm-varnishadm.o: In function `send_line':
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_callback_handler_remove'
varnishadm-varnishadm.o: In function `pass':
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_callback_handler_remove'
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_callback_handler_remove'
varnishadm-varnishadm.o: In function `varnishadm_completion':
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `rl_completion_matches'
varnishadm-varnishadm.o: In function `send_line':
/home/yantze/soft/varnish-4.0.-beta1/bin/varnishadm/varnishadm.c:: undefined reference to `add_history'
collect2: ld returned exit status
make[]: *** [varnishadm] Error
make[]: *** [all-recursive] Error
make[]: *** [all-recursive] Error
make: *** [all] Error

varnish 4.0编译安装小记的更多相关文章

  1. CentOS 7.0编译安装Nginx1.6.0+MySQL5.6.19+PHP5.5.14

    准备篇: CentOS 7.0系统安装配置图解教程 http://www.osyunwei.com/archives/7829.html 一.配置防火墙,开启80端口.3306端口 CentOS 7. ...

  2. centos 7.0 编译安装php 7.0.3

    php下载页面 http://cn2.php.net/downloads.php 7.0.3多地区下载页面 http://cn2.php.net/get/php-7.0.3.tar.gz/from/a ...

  3. Valgrind 3.11.0编译安装

    Valgrind 3.11.0编译安装 Valgrind是一款用于内存调试.内存泄漏检测以及性能分析的软件开发工具. Valgrind遵守GNU通用公共许可证条款,是一款自由软件. 到3.3.0版本为 ...

  4. CentOS 7.0编译安装Nginx1.6.0+MySQL5.6.19+PHP5.5.14方法分享

    一.配置防火墙,开启80端口.3306端口 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙. 1.关闭firewall: systemctl stop fi ...

  5. Redis 3.0 编译安装

    Redis 3.0 编译安装 http://www.xuchanggang.cn/archives/991.html

  6. centos 7.0 编译安装php 5.6.7

    编译安装php参考资料 MySQL PHP API http://dev.mysql.com/doc/apis-php/en/index.html nginx + php +mysql 最简单安装 官 ...

  7. centos 7.0 编译安装mysql 5.6.22 再次总结 成功编译安装~ 越来越熟练了~

    查找php.ini文件所在位置 [root@localhost /]# find -name php.ini ./usr/etc/php/etc/php.ini mysql官网的安装说明http:// ...

  8. hadoop2.1.0编译安装教程

    由于现在hadoop2.0还处于beta版本,在apache官方网站上发布的beta版本中只有编译好的32bit可用,如果你直接下载安装在64bit的linux系统的机器上,运行会报一个INFO ut ...

  9. hadoop2.1.0和hadoop2.2.0编译安装教程

    由于现在hadoop2.0还处于beta版本,在apache官方网站上发布的beta版本中只有编译好的32bit可用,如果你直接下载安装在64bit的linux系统的机器上,运行会报一个INFO ut ...

随机推荐

  1. mongodb集成spring

    1:首先需要下载mongodb的java驱动包 https://github.com/mongodb/mongo-java-driver/downloads 2:需要下载spring集成mongodb ...

  2. javascript的类和构造函数

    在javascript中,类的实现是基于其原型继承机制的.如果两个实例都从同一个原型对象上继承了属性,我们就说它们是同一个类的实例.那么,如果两个对象继承自同一个原型,那基本上可以认为它们是由同一个构 ...

  3. JavaScript常用正则表达式与应用(一)

    JavaScript的String类和RegExp对象类都定义了相关方法使用正则表达式进行模式匹配,本文将以连载方式介绍JavaScript常用正则表达式与相关应用,欢迎交流 本节是连载一,首先介绍J ...

  4. C# LINQ详解(一)

    原文标题:How does it work in C#?-Part 3 (C# LINQ in detail),作者:Mohammand A Rahman. 目录 LINQ 基础 扩展方法-幕后的工作 ...

  5. 【转】oracle创建表空间

    原文:http://www.cnblogs.com/netsql/articles/1745978.html 注意点: 1.如果在PL/SQL 等工具里打开的话,直接修改下面的代码中[斜体加粗部分]执 ...

  6. 使用phpize建立php扩展(Cannot find config.m4)(转)

    php源码:/root/soft/php-5.3.4php安装: /usr/local/php [root@ns root]# phpizeCannot find config.m4.Make sur ...

  7. 容器大小的改变以及容器操作可能使迭代器失效、vector对象的容量变化

    1 改变容器的大小 我们可以使用resize来增加或缩小容器,与往常一样,array不支持resize.如果当前大小大于所要求的大小,容器后面的元素会被删除:如果当前大小小于新大小,会将新元素添加到容 ...

  8. leecode 每日解题思路 64 Minimum Path Sum

    题目描述: 题目链接:64 Minimum Path Sum 问题是要求在一个全为正整数的 m X n 的矩阵中, 取一条从左上为起点, 走到右下为重点的路径, (前进方向只能向左或者向右),求一条所 ...

  9. MTU of IPV4 and IPV6

    通信术语 最大传输单元(Maximum Transmission Unit,MTU)是指一种通信协议的某一层上面所能通过的最大数据包大小(以字节为单位).最大传输单元这个参数通常与通信接口有关(网络接 ...

  10. mysql sqlmap 注入尝试

    假设注入点为 http://www.abc.com/news.php?id=12 //探测数据库信息 sqlmap -u http://www.abc.com/news.php?id=12 –dbs ...