*** empty log message ***
authorpcg <pcg>
Fri, 16 Jan 2004 18:49:33 +0000 (18:49 +0000)
committerpcg <pcg>
Fri, 16 Jan 2004 18:49:33 +0000 (18:49 +0000)
autoconf/configure.in

index ef604a88e8f91a81db41ade83df1d73eaf0e99e0..aaa71df53be59f57c715f8b3238b2ce62ec7979a 100644 (file)
@@ -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 \