--- rxvt-unicode/autoconf/configure.in 2004/04/05 15:54:23 1.26 +++ rxvt-unicode/autoconf/configure.in 2004/07/10 20:59:39 1.27 @@ -90,6 +90,7 @@ support_xft=no support_unicode3=no support_combining=no +support_8bitctrls=no codesets= dnl# -------------------------------------------------------------------------- @@ -132,6 +133,7 @@ support_xft=yes support_unicode3=yes support_combining=yes + #support_8bitctrls=yes codesets=all fi]) @@ -265,6 +267,12 @@ AC_DEFINE(USE_XGETDEFAULT, 1, Define if you want to use XGetDefault instead of our internal version) fi]) +AC_ARG_ENABLE(8bitctrls, + [ --enable-8bitctrls enable 8 bit control sequences (not recommended)], + [if test x$enableval = xyes -o x$enableval = xno; then + support_8bitctrls=yes + fi]) + RESFALLBACK=Rxvt AC_ARG_ENABLE(fallback, [ --enable-fallback(=CLASS) fall back on CLASS resources in addition to URxvt ones (default: Rxvt)], @@ -1164,6 +1172,9 @@ dnl# -------------------------------------------------------------------------- dnl# now add and remove other stuff dnl# -------------------------------------------------------------------------- +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_tinting = xyes; then AC_DEFINE(TINTING, 1, Define if you want your background to be tinted) fi