re-introduced the XAUTH_VID compile option

This commit is contained in:
Andreas Steffen
2007-09-02 11:13:24 +00:00
parent 354242c55a
commit 0e3073608d
3 changed files with 41 additions and 9 deletions
+12
View File
@@ -233,6 +233,18 @@ AC_ARG_ENABLE(
)
AM_CONDITIONAL(USE_VENDORID, test x$vendor_id = xtrue)
AC_ARG_ENABLE(
[xauth-vid],
AS_HELP_STRING([--disable-xauth-vid],[disable the sending of the XAUTH vendor ID (default is NO).]),
[if test x$enableval = xyes; then
xauth_vid=true
else
xauth_vid=false
fi],
xauth_vid=true
)
AM_CONDITIONAL(USE_XAUTH_VID, test x$xauth_vid = xtrue)
AC_ARG_ENABLE(
[uml],
AS_HELP_STRING([--enable-uml],[build the UML test framework (default is NO).]),