--- rxvt-unicode/autoconf/configure.in 2004/01/16 18:49:33 1.5 +++ rxvt-unicode/autoconf/configure.in 2004/01/29 21:34:14 1.6 @@ -1,6 +1,6 @@ dnl# -*- sh -*- dnl# -dnl# $Id: configure.in,v 1.5 2004/01/16 18:49:33 pcg Exp $ +dnl# $Id: configure.in,v 1.6 2004/01/29 21:34:14 pcg Exp $ dnl# dnl# Process this file with autoconf to produce a configure script. dnl# @@ -44,7 +44,6 @@ support_addstrings=no support_frills=no support_linespace=no -support_graphics=no support_inheritpixmap=no support_keepscrolling=no support_selectionscrolling=no @@ -56,6 +55,7 @@ support_wtmp=no support_lastlog=no support_cursor_blink=no +support_text_blink=no support_pointer_blank=no support_scroll_rxvt=no support_scroll_next=no @@ -84,7 +84,6 @@ support_24bit=yes support_frills=yes support_linespace=yes - support_graphics=yes support_inheritpixmap=yes support_keepscrolling=yes support_selectionscrolling=yes @@ -94,6 +93,7 @@ support_mouseslipwheel=yes support_oldselection=yes support_cursor_blink=yes + support_text_blink=yes support_pointer_blank=yes support_scroll_rxvt=yes support_scroll_next=yes @@ -116,10 +116,6 @@ support_xpm=no echo "******* pixmap support disabled, does not work" fi -if test x$support_graphics = xyes; then - support_graphics=no - echo "******* graphics support disabled, does not work" -fi if test x$support_menubar = xyes; then support_menubar=no echo "******* menubar support disabled, does not work" @@ -188,12 +184,6 @@ support_menubar=$enableval fi]) -AC_ARG_ENABLE(graphics, - [ --enable-graphics enable rxvt own graphics mode (see src/graphics) *], - [if test x$enableval = xyes -o x$enableval = xno; then - support_graphics=$enableval - fi]) - AC_ARG_ENABLE(rxvt-scroll, [ --enable-rxvt-scroll enable rxvt style scrollbar *], [if test x$enableval = xyes -o x$enableval = xno; then @@ -358,13 +348,19 @@ fi]) AC_ARG_ENABLE(cursor-blink, - [ --enable-cursor-blink enable blinking cursor *], + [ --enable-cursor-blink enable blinking cursor], [if test x$enableval = xyes -o x$enableval = xno; then support_cursor_blink=$enableval fi]) +AC_ARG_ENABLE(text-blink, + [ --enable-text-blink enable blinking text], + [if test x$enableval = xyes -o x$enableval = xno; then + support_text_blink=$enableval + fi]) + AC_ARG_ENABLE(pointer-blank, - [ --enable-pointer-blank enable pointer blank when typing or inactive pointer*], + [ --enable-pointer-blank enable pointer blank when typing or inactive pointer], [if test x$enableval = xyes -o x$enableval = xno; then support_pointer_blank=$enableval fi]) @@ -1135,9 +1131,6 @@ dnl# -------------------------------------------------------------------------- dnl# now add and remove other stuff dnl# -------------------------------------------------------------------------- -if test x$support_graphics = xyes; then - AC_DEFINE(RXVT_GRAPHICS, 1, Define if you want Rob Nation's own graphic mode) -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 @@ -1203,6 +1196,9 @@ if test x$support_cursor_blink = xyes; then AC_DEFINE(CURSOR_BLINK, 1, Define if you want blinking cursor support) fi +if test x$support_test_blink = xyes; then + AC_DEFINE(TEXT_BLINK, 1, Define if you want blinking text support) +fi if test x$support_unicode3 = xyes; then AC_DEFINE(UNICODE_3, 1, Define if you want to represent unicode characters outside plane 0) fi @@ -1302,7 +1298,6 @@ Makefile \ doc/Makefile \ src/Makefile \ -src/graphics/Makefile \ src/test/Makefile \ src/rxvtlib.h \ W11/Makefile \