Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 735146 | Differences between
and this patch

Collapse All | Expand All

(-)a/configure (-15 / +14 lines)
Lines 4062-4081 if test "$modules" = yes; then Link Here
4062
    fi
4062
    fi
4063
fi
4063
fi
4064
4064
4065
##########################################
4066
# pixman support probe
4067
4068
if test "$softmmu" = "no"; then
4069
  pixman_cflags=
4070
  pixman_libs=
4071
elif $pkg_config --atleast-version=0.21.8 pixman-1 > /dev/null 2>&1; then
4072
  pixman_cflags=$($pkg_config --cflags pixman-1)
4073
  pixman_libs=$($pkg_config --libs pixman-1)
4074
else
4075
  error_exit "pixman >= 0.21.8 not present." \
4076
      "Please install the pixman devel package."
4077
fi
4078
4079
##########################################
4065
##########################################
4080
# libmpathpersist probe
4066
# libmpathpersist probe
4081
4067
Lines 4491-4496 if test "$opengl" = "yes" && test "$have_x11" = "yes"; then Link Here
4491
  done
4477
  done
4492
fi
4478
fi
4493
4479
4480
##########################################
4481
# pixman support probe
4482
4483
if test "$softmmu" = "no" && ! test "${linux} ${virglrenderer} ${gbm} ${want_tools}" = "yes yes yes yes";  then
4484
  pixman_cflags=
4485
  pixman_libs=
4486
elif $pkg_config --atleast-version=0.21.8 pixman-1 > /dev/null 2>&1; then
4487
  pixman_cflags=$($pkg_config --cflags pixman-1)
4488
  pixman_libs=$($pkg_config --libs pixman-1)
4489
else
4490
  error_exit "pixman >= 0.21.8 not present." \
4491
      "Please install the pixman devel package."
4492
fi
4493
4494
##########################################
4494
##########################################
4495
# libxml2 probe
4495
# libxml2 probe
4496
if test "$libxml2" != "no" ; then
4496
if test "$libxml2" != "no" ; then
4497
- 

Return to bug 735146