Ubuntu 10.04编译安装Pidgin-2.7.3整个过程


Ubuntu 10.04下编译安装pidgin-2.7.3整个出错过程以及解决方案,点这里下载Pidgin-2.7.3,先解包,可以用右键解压,然后开始配置,我把目录放在了usr/lib里,整个过程不断出错。
./configure -prefix=/usr/lib/pidgin-2.7.3
从这里出错开始
configure: error:
The intltool scripts were not found. Please install intltool.

解决
sudo apt-get install intltool

configure: error:
You must have the GLib 2.0 development headers installed to build.

If you have these installed already you may need to install pkg-config so
I can find them.

解决
sudo apt-get install libglib2.0-dev pkg-config


configure: error:
You must have the GTK 2.0 development headers installed to compile Pidgin.
If you want to build only Finch then specify –disable-gtkui when running configure.

解决
sudo apt-get install libgtk2.0-dev


configure: error:
XScreenSaver extension development headers not found.
Use –disable-screensaver if you do not need XScreenSaver extension support,
this is required for detecting idle time by mouse and keyboard usage.

解决
sudo apt-get install libxss-dev


configure: error:
Startup notification development headers not found.
Use –disable-startup-notification if you do not need it.

解决
sudo apt-get install libstartup-notification0-dev

configure: error:
GtkSpell development headers not found.
Use –disable-gtkspell if you do not need it.

解决
sudo apt-get install libgtkspell-dev


configure: error:
You must have libxml2 >= 2.6.0 development headers installed to build.

解决
sudo apt-get install libxml2-dev

configure: error:
GStreamer development headers not found.
Use –disable-gstreamer if you do not need GStreamer (sound) support.

解决
sudo apt-get install libgstreamer0.10-dev

configure: error:
Dependencies for voice/video were not met.
Install the necessary gstreamer and farsight packages first.
Or use --disable-vv if you do not need voice/video support.

解决
sudo apt-get install libfarsight0.1-dev
sudo apt-get install libgstfarsight0.10-dev
sudo apt-get install libgstreamer-plugins-base0.10-dev

  • 1
  • 2
  • 下一页

相关内容