From xemacs-m  Thu Jan  2 21:55:30 1997
Received: from bayserve.net (bay1.bayserve.net [206.148.244.200])
          by xemacs.cs.uiuc.edu (8.8.4/8.8.4) with ESMTP
	  id VAA01128 for <xemacs-beta@xemacs.org>; Thu, 2 Jan 1997 21:55:29 -0600 (CST)
Received: from localhost (jmiller@localhost) by  bayserve.net (8.7.2/8.7.2) with SMTP id XAA00536 for <xemacs-beta@xemacs.org>; Thu, 2 Jan 1997 23:00:03 -0500 (EST)
Date: Thu, 2 Jan 1997 23:00:02 -0500 (EST)
From: Jeff Miller <jmiller@bay1.bayserve.net>
To: beta-list <xemacs-beta@xemacs.org>
Subject: Re: possible bug in config stuff
In-Reply-To: <199701020016.QAA23168@xemacs.eng.sun.com>
Message-ID: <Pine.SUN.3.95.970102225424.289A-100000@bay1.bayserve.net>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII


On Wed, 1 Jan 1997, Martin Buchholz wrote:

> >>>>> "Jeff" == Jeff Miller <jmiller@bay1.bayserve.net> writes:

> Jeff> real lisp would be around this?
> 
> (when (featurep 'scrollbar)
>   (set-glyph-image scrollbar-pointer-glyph
>     (or (x-get-resource "scrollbarPointer" "Cursor" 'string device)
>       "top_left_arrow")))

Thanks, this worked very well.

> It would be good if someone built regularly without the gui stuff to
> keep the rest of us honest.
> 

I can try, but I normally don't want to use it like this.  Most of the
XEmacs guts are way over my head, but I can at least do various compiles.
:-)


I also added this to my lwlib/Makefile.in.in, since lwlib seems to be
needed when X is used.


--- Makefile.in.in.orig Thu Jan  2 00:36:55 1997
+++ Makefile.in.in      Thu Jan  2 00:45:55 1997
@@ -195,6 +195,12 @@
 EZ_SUBDIR =
 #endif
 
+#if defined (HAVE_X_WINDOWS)
+# ifndef NEED_TOOLKIT
+#  define NEED_TOOLKIT
+# endif
+#endif
+
 SRCS = lwlib.c MOTIF_SRCS LUCID_SRCS ATHENA_SRCS lwlib-utils.c \
        lwlib-config.c
 OBJS = lwlib.o MOTIF_OBJS LUCID_OBJS ATHENA_OBJS lwlib-utils.o \



