--- rxvt-unicode/autoconf/configure.in 2004/07/10 20:59:39 1.27 +++ rxvt-unicode/autoconf/configure.in 2004/07/30 14:59:12 1.28 @@ -70,6 +70,7 @@ support_linespace=no support_inheritpixmap=no support_tinting=no +support_fading=no support_keepscrolling=no support_selectionscrolling=no support_menubar=no @@ -113,6 +114,7 @@ support_linespace=yes support_inheritpixmap=yes support_tinting=yes + support_fading=yes support_keepscrolling=yes support_selectionscrolling=yes support_lastlog=yes @@ -191,6 +193,12 @@ support_tinting=$enableval fi]) +AC_ARG_ENABLE(fading, + [ --enable-tinting enable colors fading when off focus], + [if test x$enableval = xyes -o x$enableval = xno; then + support_fading=$enableval + fi]) + AC_ARG_ENABLE(menubar, [ --enable-menubar enable menubar], [if test x$enableval = xyes -o x$enableval = xno; then @@ -1175,6 +1183,9 @@ if test x$support_8bitctrls = xyes; then AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences) fi +if test x$support_fading = xyes; then + AC_DEFINE(OFF_FOCUS_FADING, 1, Define if you want faded colors when focus is lost) +fi if test x$support_tinting = xyes; then AC_DEFINE(TINTING, 1, Define if you want your background to be tinted) fi