--- rxvt-unicode/autoconf/configure.in 2004/03/17 03:07:36 1.24 +++ rxvt-unicode/autoconf/configure.in 2004/03/29 21:02:11 1.25 @@ -62,6 +62,7 @@ support_frills=no support_linespace=no support_inheritpixmap=no +support_tinting=no support_keepscrolling=no support_selectionscrolling=no support_menubar=no @@ -103,6 +104,7 @@ support_frills=yes support_linespace=yes support_inheritpixmap=yes + support_tinting=yes support_keepscrolling=yes support_selectionscrolling=yes support_lastlog=yes @@ -174,6 +176,12 @@ support_inheritpixmap=$enableval fi]) +AC_ARG_ENABLE(tinting, + [ --enable-tinting enable tinting of transparent bg], + [if test x$enableval = xyes -o x$enableval = xno; then + support_tinting=$enableval + fi]) + AC_ARG_ENABLE(menubar, [ --enable-menubar enable menubar], [if test x$enableval = xyes -o x$enableval = xno; then @@ -1152,6 +1160,9 @@ dnl# -------------------------------------------------------------------------- dnl# now add and remove other stuff dnl# -------------------------------------------------------------------------- +if test x$support_tinting = xyes; then + AC_DEFINE(TINTING, 1, Define if you want your background to be tinted) +fi if test x$support_inheritpixmap = xyes; then AC_DEFINE(TRANSPARENT, 1, Define if you want your background to use the parent window background) fi