--- rxvt-unicode/autoconf/configure.in 2004/08/13 03:36:56 1.32 +++ rxvt-unicode/autoconf/configure.in 2004/08/15 04:42:46 1.33 @@ -93,6 +93,7 @@ support_unicode3=no support_combining=no support_8bitctrls=no +support_iso14755=no codesets= dnl# -------------------------------------------------------------------------- @@ -137,6 +138,7 @@ support_unicode3=yes support_combining=yes #support_8bitctrls=yes + support_iso14755=yes codesets=all fi]) @@ -327,6 +329,12 @@ AC_DEFINE(NO_SECONDARY_SCREEN, 1, Disable the secondary screen. Many programs use the secondary screen as their workplace) fi]) +AC_ARG_ENABLE(iso14755, + [ --enable-iso14755 enable support for extended ISO 14755 modes], + [if test x$enableval = xyes -o x$enableval = xno; then + support_iso14755=$enableval + fi]) + AC_ARG_ENABLE(frills, [ --enable-frills enable support for rarely used features], [if test x$enableval = xyes -o x$enableval = xno; then @@ -585,7 +593,6 @@ AC_TYPE_PID_T AC_TYPE_UID_T - AC_CHECK_SIZEOF(char, 1) AC_CHECK_SIZEOF(short, 2) AC_CHECK_SIZEOF(int, 4) @@ -1173,6 +1180,9 @@ dnl# -------------------------------------------------------------------------- dnl# now add and remove other stuff dnl# -------------------------------------------------------------------------- +if test x$support_iso14755 = xyes; then + AC_DEFINE(ISO_14755, 1, Define if you want ISO 14755 extended support) +fi if test x$support_8bitctrls = xyes; then AC_DEFINE(EIGHT_BIT_CONTROLS, 1, Define if you want 8 bit control sequences) fi @@ -1194,8 +1204,8 @@ if test x$support_menubar = xyes; then AC_DEFINE(MENUBAR, 1, Define if you want Menubar support) fi -if test x$support_frills = xno; then - AC_DEFINE(NO_FRILLS, 1, Define if you don't want handling for rarely used features) +if test x$support_frills = xyes; then + AC_DEFINE(ENABLE_FRILLS, 1, Define if you want handling for rarely used but handy features) fi if test x$support_linespace = xno; then AC_DEFINE(NO_LINESPACE, 1, Define if you don't want support linespace)