Invert the sense of the composite configure flag to match reality.

This commit is contained in:
Adam Jackson 2005-08-07 20:42:50 +00:00
parent fcaa6f30c4
commit 7d2b08aa47
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-08-07 Adam Jackson <ajax@freedesktop.org>
* configure.ac:
Invert the sense of the composite configure flag to match reality.
2005-08-07 Adam Jackson <ajax@freedesktop.org>
* configure.ac:

View File

@ -171,7 +171,7 @@ AC_DEFINE(XORG_SERVER, 1, [Build X.Org X server])
m4_ifdef([AS_HELP_STRING], , [m4_define([AS_HELP_STRING], m4_defn([AC_HELP_STRING]))])
AC_ARG_ENABLE(werror, [ --enable-werror ],[WERROR=$enableval],[WERROR=no])
AC_ARG_ENABLE(composite, [ --enable-composite ],[COMPOSITE=$enableval],[COMPOSITE=yes])
AC_ARG_ENABLE(composite, [ --disable-composite ],[COMPOSITE=$enableval],[COMPOSITE=yes])
AC_ARG_ENABLE(mitshm, [ --disable-shm ],[MITSHM=$enableval],[MITSHM=yes])
AC_ARG_ENABLE(xres, [ --disable-xres ],[RES=$enableval],[RES=yes])
AC_ARG_ENABLE(xtrap, [ --enable-xtrap ],[XTRAP=$enableval],[XTRAP=no])