From 7c22a57274b67a7505749aeed62670adc2451521 Mon Sep 17 00:00:00 2001 From: pcg Date: Fri, 16 Jan 2004 18:49:33 +0000 Subject: [PATCH] *** empty log message *** --- autoconf/configure.in | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/autoconf/configure.in b/autoconf/configure.in index ef604a88..aaa71df5 100644 --- a/autoconf/configure.in +++ b/autoconf/configure.in @@ -1,6 +1,6 @@ dnl# -*- sh -*- dnl# -dnl# $Id: configure.in,v 1.4 2003-12-18 00:38:07 pcg Exp $ +dnl# $Id: configure.in,v 1.5 2004-01-16 18:49:33 pcg Exp $ dnl# dnl# Process this file with autoconf to produce a configure script. dnl# @@ -107,6 +107,25 @@ AC_ARG_ENABLE(everything, 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_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" +fi +echo + AC_ARG_ENABLE(unicode3, [ --enable-unicode3 use 21 instead of 16 bits to represent unicode characters], [if test x$enableval = xyes; then @@ -332,7 +351,11 @@ AC_ARG_ENABLE(smart-resize, AC_DEFINE(SMART_RESIZE, 1, Define to use "smart" resize behavior) fi]) -AC_DEFINE(TTY_256COLOR, 1, Define if you want 256 colour support) +AC_ARG_ENABLE(256-color, + [ --enable-256-color enable 256-color support], + [if test x$enableval = xyes; then + AC_DEFINE(TTY_256COLOR, 1, Define if you want 256 colour support) + fi]) AC_ARG_ENABLE(cursor-blink, [ --enable-cursor-blink enable blinking cursor *], @@ -1269,7 +1292,10 @@ if test x$support_xft = xyes; then 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 \ -- 2.34.1