--- rxvt-unicode/autoconf/configure.in 2003/12/17 23:21:56 1.3 +++ 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.3 2003/12/17 23:21:56 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 @@ -107,6 +107,21 @@ codesets=all fi]) +echo +if test x$support_inheritpixmap = xyes; then + support_inheritpixmap=no + echo "******* transparency support disabled, does not work" +fi +if test x$support_xpm = xyes; then + support_xpm=no + echo "******* pixmap support disabled, does not work" +fi +if test x$support_menubar = xyes; then + support_menubar=no + echo "******* menubar support disabled, does not work" +fi +echo + AC_ARG_ENABLE(unicode3, [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters], [if test x$enableval = xyes; then @@ -169,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 @@ -339,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]) @@ -1116,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 @@ -1184,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 @@ -1273,14 +1288,16 @@ AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no]) AC_CHECK_LIB(Xft,XftDrawString32,,[support_xft=no]) - AC_DEFINE(XFT, 1, Define to enable xft support) + + if test x$support_xft = xyes; then + AC_DEFINE(XFT, 1, Define to enable xft support) + fi fi AC_OUTPUT(autoconf/Make.common \ Makefile \ doc/Makefile \ src/Makefile \ -src/graphics/Makefile \ src/test/Makefile \ src/rxvtlib.h \ W11/Makefile \