When installing QEMU with source code in ubuntu14.04, perform the/configure step prompt error:
./configure
ERROR: pixman >= 0.21.8 not present. Your options:
(1) Preferred: Install the pixman devel package (any recent
distro should have packages as Xorg needs pixman too).
(2) Fetch the pixman submodule, using:
git submodule update --init pixman
So, with Apt-cache, we looked for a dependency package on Pixman.
apt-cache search pixman
libpixman-1-0 - pixel-manipulation library for X and cairo
libpixman-1-0-dbg - pixel-manipulation library for X and cairo (debugging symbols)
libpixman-1-dev - pixel-manipulation library for X and cairo (development files)
Select the package that installs the Libpixman-1-dev
apt-get install libpixman-1-dev
…………
(Reading database ... 4754 files and directories currently installed.)
Preparing to unpack .../libpixman-1-dev_0.30.2-2ubuntu1.1_amd64.deb ...
Unpacking libpixman-1-dev (0.30.2-2ubuntu1.1) ...
Setting up libpixman-1-dev (0.30.2-2ubuntu1.1) ...
This article is from the "Youth Memory" blog, please be sure to keep this source http://mltyrone.blog.51cto.com/6204409/1833903
Ubuntu compiled QEMU error: ' Error:pixman >= 0.21.8 not present. '