mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-01 20:00:15 +01:00
Put glitz in the experimental section.
Give glitz the experimental treatment, (disable it by default.
This commit is contained in:
parent
19c25d63c2
commit
9fde3cc0e3
3 changed files with 14 additions and 3 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2005-08-24 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* INSTALL: Put glitz in the experimental section.
|
||||
|
||||
* configure.in: Give glitz the experimental treatment, (disable it
|
||||
by default.
|
||||
|
||||
2005-08-24 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* INSTALL: Add some more detailed build instructions.
|
||||
|
|
|
|||
2
INSTALL
2
INSTALL
|
|
@ -61,6 +61,7 @@ More detailed build instructions
|
|||
--enable-quartz
|
||||
--enable-atsui
|
||||
--enable-xcb
|
||||
--enable-glitz
|
||||
|
||||
Some of cairo's backends are marked as experimental and will
|
||||
not be built by default. If you would like to build and
|
||||
|
|
@ -72,7 +73,6 @@ More detailed build instructions
|
|||
--disable-xlib
|
||||
--disable-win32
|
||||
--disable-png
|
||||
--disable-glitz
|
||||
--disable-freetype
|
||||
|
||||
Cairo's configure script detects the libraries needed to build
|
||||
|
|
|
|||
|
|
@ -229,8 +229,8 @@ AC_SUBST(PNG_REQUIRES)
|
|||
dnl ===========================================================================
|
||||
|
||||
AC_ARG_ENABLE(glitz,
|
||||
[ --disable-glitz Disable cairo's glitz backend],
|
||||
[use_glitz=$enableval], [use_glitz=yes])
|
||||
[ --enable-glitz Enable cairo's glitz backend],
|
||||
[use_glitz=$enableval], [use_glitz=no])
|
||||
|
||||
if test "x$use_glitz" = "xyes"; then
|
||||
PKG_CHECK_MODULES(GLITZ, glitz >= 0.4.4, [
|
||||
|
|
@ -557,6 +557,10 @@ WARNING_MESSAGE='
|
|||
*** to @BACKEND@-backend specific API.
|
||||
'
|
||||
|
||||
if test x"$use_glitz" == "xyes" ; then
|
||||
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/Glitz/'
|
||||
fi
|
||||
|
||||
if test x"$use_xcb" == "xyes" ; then
|
||||
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/XCB/'
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue