From: root Date: Tue, 11 Jan 2005 00:54:57 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?p=dana%2Furxvt.git;a=commitdiff_plain;h=4436a236db06bdbeea06a970f2d7cc2d84d4706e *** empty log message *** --- diff --git a/autoconf/config.h.in b/autoconf/config.h.in index 3932c77..d65a24b 100644 --- a/autoconf/config.h.in +++ b/autoconf/config.h.in @@ -373,9 +373,6 @@ /* Define if you want handling for rarely used but handy features */ #undef ENABLE_FRILLS -/* Define if you don't want support linespace */ -#undef NO_LINESPACE - /* Define to use a 24 bit visual if the screen has 24 bit mode */ #undef PREFER_24BIT diff --git a/autoconf/configure.in b/autoconf/configure.in index 587ca3a..0153921 100644 --- a/autoconf/configure.in +++ b/autoconf/configure.in @@ -78,7 +78,6 @@ AC_PROG_LIBTOOL()dnl# libtool MALLOC_TYPE=S support_addstrings=no support_frills=no -support_linespace=no support_inheritpixmap=no support_tinting=no support_fading=no @@ -124,7 +123,6 @@ AC_ARG_ENABLE(everything, [if test x$enableval = xyes; then support_24bit=yes support_frills=yes - support_linespace=yes support_inheritpixmap=yes support_tinting=yes support_fading=yes @@ -360,12 +358,6 @@ AC_ARG_ENABLE(frills, support_frills=$enableval fi]) -AC_ARG_ENABLE(linespace, - [ --enable-linespace enable support for linespace], - [if test x$enableval = xyes -o x$enableval = xno; then - support_linespace=$enableval - fi]) - AC_ARG_ENABLE(24bit, [ --enable-24bit enable support for using 24bit visuals if available], [if test x$enableval = xyes -o x$enableval = xno; then @@ -1235,9 +1227,6 @@ fi 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) -fi if test x$support_24bit = xyes; then AC_DEFINE(PREFER_24BIT, 1, Define to use a 24 bit visual if the screen has 24 bit mode, even if the default is 8 bit) fi