标签:linux
Once again, I run into trouble when upgrading my LinuxMint.case SEC_ERROR_UNTRUSTED_ISSUER:
So my work is quite easy: Add the unknown issuer processing with the same process with untrusted issuer.if (crt_dat->isRoot) { *flags |= PURPLE_CERTIFICATE_SELF_SIGNED; } else { *flags |= PURPLE_CERTIFICATE_CA_UNKNOWN; }
After review again the latest source code in pidgin ‘s SCM, I found that this change is already integrated in to latest source code 3 weeks ago. So it‘s hopeful that in next verison of pidgin, this problem is gone.case SEC_ERROR_UNKNOWN_ISSUER:
case SEC_ERROR_UNTRUSTED_ISSUER:
if (crt_dat->isRoot) {
...
Sipe plugin download
鉴于以上的问题,查看了一下12.04和14.04的pidgin的版本
12.04:Pidgin 2.10.3 (libpurple 2.10.3)
14.04: Pidgin 2.10.9 (libpurple 2.10.9)
果断上sourceforge上(http://sourceforge.net/projects/pidgin/files/Pidgin/2.10.3/pidgin-2.10.3.tar.gz/download?use_mirror=colocrossing&r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fpidgin%2Ffiles%2FPidgin%2F2.10.3%2F&use_mirror=tcpdiag)下载pidgin2.10.3版本的tar包,然后再编译,貌似在configure的时候依赖挺多,按照每次出错的提示,最后的configure命令如下:
./configure --disable-screensaver --disable-gtkspell --disable-gstreamer --disable-vv --disable-idn --disable-meanwhile --disable-avahi --disable-nm --disable-perl --disable-tcl; make; sudo make install
OK了。
Notice:
这个时候的pidgin都默认安装在/usr/loca/下,而不是在原先的/usr/下
Ubuntu 12.04 升级到14.04之后,pidgin-sipe 出现的问题: Trouble with the pidgin and self-signed SSL certificate
标签:linux
原文地址:http://blog.csdn.net/blackmanren/article/details/46377305