QEMU 1.5.1 already has the pixman probe code
Change-Id: I5bf8de719d5f5ea4cb86e95a3c71bf32068ee8cd
Signed-off-by: Jinhyung Jo <jinhyung.jo@samsung.com>
pixman_libs="-L\$(BUILD_DIR)/pixman/pixman/.libs -lpixman-1"
fi
-##########################################
-# pixman support probe
-
-if test "$shm" = no; then
- if $pkg_config pixman-1 > /dev/null 2>&1; then
- pixman_cflags=`$pkg_config --cflags pixman-1 2>/dev/null`
- pixman_libs=`$pkg_config --libs pixman-1 2>/dev/null`
- QEMU_CFLAGS="$pixman_cflags $QEMU_CFLAGS"
- LIBS="$pixman_libs $LIBS"
- else
- echo "Error: pixman-1 check failed"
- echo "Make sure to have the pixman-1 libs and headers installed"
- exit 1
- fi
-fi
-
##########################################
# libcap probe