From xax500.bugs-errors@umich.edu Thu Jun  2 10:28:24 1994
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.2)
	with ESMTP id KAA11157; Thu, 2 Jun 1994 10:28:23 -0400
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA26430; Thu, 2 Jun 1994 10:28:23 -0400
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA26417; Thu, 2 Jun 1994 10:28:20 -0400
Received: from rip.hrb.com by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id KAA26399; Thu, 2 Jun 1994 10:28:15 -0400
Received: from icf3.hrb.com by RIP.HRB.COM (PMDF V4.3-6 #6604)
 id <01HD2ALWLOBK000FOG@RIP.HRB.COM>; Thu, 2 Jun 1994 10:27:36 EST
Received: from icf.hrb.com by icf.hrb.com (PMDF V4.3-7 #6604)
 id <01HD26NKOJ5C91VVRS@icf.hrb.com>; Thu, 2 Jun 1994 10:26:47 EDT
Date: Thu, 02 Jun 1994 10:15:19 -0400 (EDT)
From: "Craig R. Watkins" <CRW@icf.hrb.com>
Subject: Bad arguments to CreateActionArea
To: xax500.bugs@umich.edu
Cc: Tim Howes <tim@terminator.rs.itd.umich.edu>, jeff@innosoft.com,
        kvc@innosoft.com, crw@icf.hrb.com
Message-id: <01HD2AKWXRR291VVRS@icf.hrb.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=US-ASCII
Content-transfer-encoding: 7BIT

The action structures passed to CreateActionArea() should be passed explicitely
by reference since that is what the routine expects.

Specifically, calls in the following files to CreateActionArea() need to
be changed:

about.c
browse.c
display.c
find.c
help.c

As an example, in browse.c:

browseAction = CreateActionArea(browsePane, actions, XtNumber(actions));

	Should instead be:

browseAction = CreateActionArea(browsePane, &actions, XtNumber(actions));


Tim has informed me that the compilers that you use pass structures by 
reference.  Mine on VMS does not.

I might also suggest you use function prototypes in util.h to catch these
sort of problems.

I just grabbed xax500 from terminator.cc.umich.edu:/x500/xax500.  It was
dated April.  Is there a more recent version I should be using?  I'm still
getting some Xlib and Xt error that I need to look into.

I'm using Motif 1.1 and I think the only thing I had to do was (blindly)
change XmStringCreateLocalized to XmStringCreateSimple.

Craig

From xax500.bugs-errors@umich.edu Thu Jun  2 11:45:31 1994
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.2)
	with ESMTP id LAA13485; Thu, 2 Jun 1994 11:45:31 -0400
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id LAA04769; Thu, 2 Jun 1994 11:45:31 -0400
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id LAA04763; Thu, 2 Jun 1994 11:45:29 -0400
Received: from rodan.rs.itd.umich.edu by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id LAA04752; Thu, 2 Jun 1994 11:45:26 -0400
Received: from psycho.rs.itd.umich.edu by rodan.rs.itd.umich.edu (8.6.8.1/2.2)
	id LAA21703; Thu, 2 Jun 1994 11:43:20 -0400
Date: Thu, 2 Jun 1994 11:43:39 -0400 (EDT)
From: Gordon Good <ggood@umich.edu>
Sender: Gordon Good <ggood@umich.edu>
Reply-To: Gordon Good <ggood@umich.edu>
Subject: Re: Bad arguments to CreateActionArea
To: "Craig R. Watkins" <CRW@icf.hrb.com>
cc: xax500.bugs@umich.edu, Tim Howes <tim@terminator.rs.itd.umich.edu>,
        jeff@innosoft.com, kvc@innosoft.com, crw@icf.hrb.com
In-Reply-To: <01HD2AKWXRR291VVRS@icf.hrb.com>
Message-ID: <Pine.3.89.9406021050.A21084-0100000@psycho.rs.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; CHARSET=US-ASCII

On Thu, 2 Jun 1994, Craig R. Watkins wrote:

> The action structures passed to CreateActionArea() should be passed explicitely
> by reference since that is what the routine expects.
> 
> Specifically, calls in the following files to CreateActionArea() need to
> be changed:
> 
> about.c
> browse.c
> display.c
> find.c
> help.c
> 
> As an example, in browse.c:
> 
> browseAction = CreateActionArea(browsePane, actions, XtNumber(actions));
> 
> 	Should instead be:
> 
> browseAction = CreateActionArea(browsePane, &actions, XtNumber(actions));

You are correct for the files about.c and help.c.  I've fixed those.  
However, for the other files, the "items" argument is an array of 
ActionAreaItems structures, so a "&" isn't needed.

> I might also suggest you use function prototypes in util.h to catch these
> sort of problems.

That's on the list of things to do.

> I just grabbed xax500 from terminator.cc.umich.edu:/x500/xax500.  It was
> dated April.  Is there a more recent version I should be using?  I'm still
> getting some Xlib and Xt error that I need to look into.

I'll put version 0.54 up shortly.

> I'm using Motif 1.1 and I think the only thing I had to do was (blindly)
> change XmStringCreateLocalized to XmStringCreateSimple.

As far as I know, that's the only Motif 1.2-specific feature in use in 
the existing code.  However, in implementing modify capabilities, I 
plan to make extensive use of drag-and-drop, which is a 1.2-only 
feature.  Is Motif 1.2 available for VMS?

Thanks for the feedback!

-Gordon



From xax500.bugs-errors@umich.edu Thu Jun  2 13:28:40 1994
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.2)
	with ESMTP id NAA15214; Thu, 2 Jun 1994 13:28:40 -0400
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id NAA16994; Thu, 2 Jun 1994 13:28:40 -0400
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id NAA16975; Thu, 2 Jun 1994 13:28:35 -0400
Received: from rip.hrb.com by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id NAA16955; Thu, 2 Jun 1994 13:28:30 -0400
Received: from icf3.hrb.com by RIP.HRB.COM (PMDF V4.3-6 #6604)
 id <01HD2GW0T3SG000GAR@RIP.HRB.COM>; Thu, 2 Jun 1994 13:27:34 EST
Received: from icf.hrb.com by icf.hrb.com (PMDF V4.3-7 #6604)
 id <01HD2G8163NK91VV6X@icf.hrb.com>; Thu, 2 Jun 1994 13:26:54 EDT
Date: Thu, 02 Jun 1994 13:22:33 -0400 (EDT)
From: "Craig R. Watkins" <CRW@icf.hrb.com>
Subject: Re: Bad arguments to CreateActionArea
In-reply-to: Your message dated "Thu, 02 Jun 1994 11:43:39 -0400 (EDT)"
 <Pine.3.89.9406021050.A21084-0100000@psycho.rs.itd.umich.edu>
To: Gordon Good <ggood@umich.edu>
Cc: xax500.bugs@umich.edu, Tim Howes <tim@terminator.rs.itd.umich.edu>,
        jeff@innosoft.com, kvc@innosoft.com
Message-id: <01HD2GV7OQ6Y91VV6X@icf.hrb.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=US-ASCII
Content-transfer-encoding: 7BIT

> You are correct for the files about.c and help.c.  I've fixed those.
> However, for the other files, the "items" argument is an array of
> ActionAreaItems structures, so a "&" isn't needed.

You are, of course, correct.  I debugged the about box and the help first
and then just did a quick search.  

> I'll put version 0.54 up shortly.

Should I continue debugging for VMS or do you think I should wait for the
new version?  Are there portability fixes in the new version that I should
wait for?

> As far as I know, that's the only Motif 1.2-specific feature in use in
> the existing code.  However, in implementing modify capabilities, I
> plan to make extensive use of drag-and-drop, which is a 1.2-only
> feature.  Is Motif 1.2 available for VMS?

Yes.  I'm just being lazy.  I'll install it soon.

Thanks,
Craig

From xax500.bugs-errors@umich.edu Thu Jun  2 14:03:38 1994
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.2)
	with ESMTP id OAA16539; Thu, 2 Jun 1994 14:03:38 -0400
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id OAA21014; Thu, 2 Jun 1994 14:03:37 -0400
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id OAA21009; Thu, 2 Jun 1994 14:03:35 -0400
Received: from rodan.rs.itd.umich.edu by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id OAA21004; Thu, 2 Jun 1994 14:03:34 -0400
Received: from psycho.rs.itd.umich.edu by rodan.rs.itd.umich.edu (8.6.8.1/2.2)
	id OAA28092; Thu, 2 Jun 1994 14:03:07 -0400
Date: Thu, 2 Jun 1994 14:03:26 -0400 (EDT)
From: Gordon Good <ggood@umich.edu>
Subject: Re: Bad arguments to CreateActionArea
To: "Craig R. Watkins" <CRW@icf.hrb.com>
cc: xax500.bugs@umich.edu, Tim Howes <tim@terminator.rs.itd.umich.edu>,
        jeff@innosoft.com, kvc@innosoft.com
In-Reply-To: <01HD2GV7OQ6Y91VV6X@icf.hrb.com>
Message-ID: <Pine.3.89.9406021303.A21441-0100000@psycho.rs.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

On Thu, 2 Jun 1994, Craig R. Watkins wrote:

> Should I continue debugging for VMS or do you think I should wait for the
> new version?  Are there portability fixes in the new version that I should
> wait for?

0.54 had a couple of updates for Alpha (I think - they might have been in 
0.53).  Other than that, 0.54 changes were mostly related to support for 
a user-configurable search dialog.

So, I guess it doesn't really matter which version you work from, but if 
you start with 0.54, you'll also be debugging the searchprefs code, 
which would be a good thing.

-Gordon


From xax500.bugs-errors@umich.edu Sun Jun  5 15:09:09 1994
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id PAA09926; Sun, 5 Jun 1994 15:09:09 -0400
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id PAA12442; Sun, 5 Jun 1994 15:09:09 -0400
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id PAA12438; Sun, 5 Jun 1994 15:09:07 -0400
Received: from rip.hrb.com by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id PAA12427; Sun, 5 Jun 1994 15:09:04 -0400
Received: from icf3.hrb.com by RIP.HRB.COM (PMDF V4.3-6 #6604)
 id <01HD6RAFHM0W000K02@RIP.HRB.COM>; Sun, 5 Jun 1994 15:08:39 EST
Received: from icf.hrb.com by icf.hrb.com (PMDF V4.3-7 #6604)
 id <01HD6QMZ6E4091VYOS@icf.hrb.com>; Sun, 5 Jun 1994 15:08:06 EDT
Date: Sun, 05 Jun 1994 15:00:55 -0400 (EDT)
From: "Craig R. Watkins" <CRW@icf.hrb.com>
Subject: Window size problems
To: xax500.bugs@umich.edu
Cc: crw@icf.hrb.com
Message-id: <01HD6R9QUBZU91VYOS@icf.hrb.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=US-ASCII
Content-transfer-encoding: 7BIT

Recall that I'm trying to run xax500 on VMS with Motif 1.1.

I can bring up the query box and make a query.  When I get back a choice
of possible matches, the window is very small (say 30 x 40 or something
like that).  When I choose an entry to display, it can't display it and
returns the Xt error:

X Toolkit Error: Shell widget displayDlg has zero width and/or height

This comes right after the XtRealizeWidget call in create_display_frame().

I fixed that by adding

*displayDlg.width:                                      550
*displayDlg.height:                                     600

to my resource file.  However, the window never display any useful data,
it just seems to keep repainting.

I obviously have a lot more debugging to do, but I was wondering if any
of this sounded familiar; particularly why my window sizes were off (and
I suspect your's aren't).

I'm fluent in Xlib internals as I've ported Xlib, but I'm not nearly
as up on the toolkit and Motif.  Any hints are appreciated.

Craig

From xax500.bugs-errors@umich.edu Wed Jun  8 11:48:00 1994
Return-Path: <xax500.bugs-errors@umich.edu>
Received: by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id LAA27091; Wed, 8 Jun 1994 11:48:00 -0400
Received: by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id LAA27089; Wed, 8 Jun 1994 11:47:51 -0400
Received: from psycho.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with SMTP id LAA27054; Wed, 8 Jun 1994 11:45:51 -0400
Message-Id: <199406081545.LAA27054@terminator.rs.itd.umich.edu>
From: Gordon Good <ggood@umich.edu>
To: "Craig R. Watkins" <CRW@icf.hrb.com>
cc: xax500.bugs@umich.edu
Subject: Re: Window size problems 
In-reply-to: Your message of "Sun, 05 Jun 1994 15:00:55 EDT."
             <01HD6R9QUBZU91VYOS@icf.hrb.com> 
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Date: Wed, 08 Jun 1994 11:46:12 -0400
Sender: ggood@psycho.rs.itd.umich.edu

>I can bring up the query box and make a query.  When I get back a choice
>of possible matches, the window is very small (say 30 x 40 or something
>like that).  When I choose an entry to display, it can't display it and
>returns the Xt error:
>
>X Toolkit Error: Shell widget displayDlg has zero width and/or height
>
>This comes right after the XtRealizeWidget call in create_display_frame().
>
>I fixed that by adding
>
>*displayDlg.width:                                      550
>*displayDlg.height:                                     600
>
>to my resource file.  However, the window never display any useful data,
>it just seems to keep repainting.
>
>I obviously have a lot more debugging to do, but I was wondering if any
>of this sounded familiar; particularly why my window sizes were off (and
>I suspect your's aren't).

Both of these sound like they are problems related to geometry negotiation
between a scrolled list or scrolled window and its parent.  I'm pretty
certain there were bugs in earlier releases of Motif and/or Xt related to
this, although I can't seem to find specific mention of it right now.

Are you using X11R4 or X11R5?

FYI, the displayDlg has a PanedWindow as its child.  One of the panes
has a scrolledWindow widget as its child, that widget has a formWidget
as its child, and that's where all the labels and attributes are
placed.

One thing to try would be to find the call to XmCreateScrolledWindow()
in create_display_frame and add:

XtManageChild(displaySWin);

right afterwards, and also add 

XtManageChild(displayForm);

in display_entry() right after:

/* Create a Form Widget to hold the labels and values */
displayForm = XtVaCreateWidget("displayForm", xmFormWidgetClass
			       [etc, etc]
			       
I believe this will slow things down, since more geometry negotiation
will be going on.  As it stands now, we don't manage the scrolledWindow
and displayForm widgets until we've added all the children, on the
assumption that the geometry negotiation will only happen once if we
defer the calls to XtManageChild().  Perhaps there are bugs in the
older toolkits you're using which make this work incorrectly.

Let me know what you find.

-Gordon


From xax500.bugs-errors@umich.edu Tue Jul 12 14:10:43 1994
Return-Path: <xax500.bugs-errors@umich.edu>
Received: by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id OAA22067; Tue, 12 Jul 1994 14:10:43 -0400
Received: by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id OAA22064; Tue, 12 Jul 1994 14:10:40 -0400
Received: from terminator.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with SMTP id OAA22059; Tue, 12 Jul 1994 14:10:38 -0400
Message-Id: <199407121810.OAA22059@terminator.rs.itd.umich.edu>
From: Mark Smith <mcs@umich.edu>
To: xax500.bugs@umich.edu
Subject: LDAP server gone leads to xax500 exiting
Date: Tue, 12 Jul 1994 14:10:38 -0400
Sender: mcs@terminator.rs.itd.umich.edu

Using /usr/local/bin/xax500 on terminator:

    1. start xax500
    2. let it sit for a while (15mins?) until LDAP server has shut down
    3. try a search and get "Can't Contact LDAP Server" error alert
    4. try another search and xax500 exits

I just tried it again, this time manually killing off the ldapd it was
talking to, and step 4 yielded a bus error and core file.  The core is
in ~mcs/core.xax500 on terminator.

-Mark

From xax500.bugs-errors@umich.edu Wed Sep  7 08:07:53 1994
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from judgmentday.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id IAA26921; Wed, 7 Sep 1994 08:07:52 -0400
Received: by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id IAA15238; Wed, 7 Sep 1994 08:07:51 -0400
Received: by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id IAA15235; Wed, 7 Sep 1994 08:07:50 -0400
Received: from mbunix.mitre.org by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with ESMTP id IAA15228; Wed, 7 Sep 1994 08:07:44 -0400
Received: from manx.mitre.org by mbunix.mitre.org (8.6.4/4.7)
	id IAA15309; Wed, 7 Sep 1994 08:07:39 -0400
Posted-from: The MITRE Corporation, Bedford, MA
Received: by manx.mitre.org; (5.65/1.1.8.2/26May94-0318PM)
	id AA03162; Wed, 7 Sep 1994 08:01:22 -0400
Date: Wed, 7 Sep 1994 08:01:22 -0400
From: system PRIVILEGED account <root@manx.mitre.org>
Message-Id: <9409071201.AA03162@manx.mitre.org>
To: DTM@mitre.org, seeton@heckle.mitre.org, xax500.bugs@umich.edu
Subject: osf/axp port

Thought you might be interested in some OSF/Alpha porting notes for
xax500. Sure would like to see these updates rolled into the next
release of xax for OSF/AXP. Changes are straightforward and context
difs are appended to this mail.
Dave Miller (DTM@mitre.org) is the contact here.

Lee Seeton


9/6/94	Port to OSF Aplpha	[DEC OSF/1 V2.0 (Rev. 240)]

Notes on porting xax500 to OSF/Alpha platform.


1. Required changes to several files to change type "long" to 
   type "int" to 'port-a-lize' the code. Specific files:

	Makefile	disptmpl.h	srchpref.h

	disptmpl.c	dsparse.c	srchpref.c

	util.c

2. Fixed obvious code error in function create_find_button
   (util.c) that did not declare its argument "parent".
   Compilers default in these situations to type "int" for
   the argument. This produces some interesting behavior on
   64 bit machines. Explicit declaration of parent as Widget
   in this function fixed problem.

3. Changed a number of Makefile refs for include and link libs to match
   location on OSF/Alpha.

	Makefile.dif	disptmpl.h.dif	srchpref.h.dif

	disptmpl.c.dif	dsparse.c.dif	srchpref.c.dif

	util.c.dif

4. Remade 'Make depend'


=================context difs=====================


Makefile.dif
7c7
< DESTDIR=/usr/local/xax500
---
> DESTDIR=/usr/local
9c9
< MANDIR=${DESTDIR}/manl
---
> MANDIR=${DESTDIR}/man1
11c11,12
< ADDIR=/usr/local/X11/lib/X11/app-defaults
---
> ##ADDIR=/usr/local/X11/lib/X11/app-defaults
> ADDIR=/usr/local/lib/X11/app-defaults
22c23,24
< CC=gcc
---
> #CC=gcc
> CC= cc
31,34c33,37
< X11INCLUDES=-I/usr/local/X11/include
< LDAPINCLUDES=-I../ldap/h
< X11LIBS=-L/usr/local/X11/lib
< LDAPLIBS=-L../ldap/liblber -L../ldap/libldap
---
> X11INCLUDES=-I/usr/include/X11
> XMINCLUDES=-I/usr/include/Xm
> LDAPINCLUDES=-I/var/newldap/h
> X11LIBS=-L/usr/lib
> LDAPLIBS=-L/var/newldap/liblber -L/var/newldap/libldap
40c43
< CFLAGS=${DEFINES} ${X11INCLUDES} ${LDAPINCLUDES}
---
> CFLAGS=${DEFINES} ${X11INCLUDES} ${XMINCLUDES} ${LDAPINCLUDES}
44c47
< LIBS=	-lXm -lXt -lX11 -lldap -llber #-lkrb -ldes
---
> LIBS=	-lm -lMrm -lXm -lXt -lX11 -lldap -llber #-lkrb -ldes
114c117
< 		${INSTALL} -s -m 755 xax500 ${DESTDIR}/bin/xax500
---
> 		${INSTALL} -s -m 755 xax500 ${DESTDIR}/bin
168,293c171,250
< auth.o: /usr/local/X11/include/Xm/Xm.h /usr/local/X11/include/X11/Intrinsic.h
< auth.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< auth.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< auth.o: /usr/local/X11/include/X11/X.h
< auth.o: /usr/local/X11/include/X11/Xfuncproto.h
< auth.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< auth.o: /usr/local/X11/include/X11/Xutil.h
< auth.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< auth.o: /usr/local/X11/include/X11/Core.h
< auth.o: /usr/local/X11/include/X11/Composite.h
< auth.o: /usr/local/X11/include/X11/Constraint.h
< auth.o: /usr/local/X11/include/X11/Object.h
< auth.o: /usr/local/X11/include/X11/RectObj.h
< auth.o: /usr/local/X11/include/X11/Shell.h /usr/local/X11/include/X11/Xatom.h
< auth.o: /usr/local/X11/include/Xm/XmStrDefs.h
< auth.o: /usr/local/X11/include/X11/StringDefs.h
< auth.o: /usr/local/X11/include/Xm/VirtKeys.h
< auth.o: /usr/local/X11/include/Xm/VendorS.h /usr/include/stdio.h
< bitmaps.o: /usr/local/X11/include/Xm/Xm.h
< bitmaps.o: /usr/local/X11/include/X11/Intrinsic.h
< bitmaps.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< bitmaps.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< bitmaps.o: /usr/local/X11/include/X11/X.h
< bitmaps.o: /usr/local/X11/include/X11/Xfuncproto.h
< bitmaps.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< bitmaps.o: /usr/local/X11/include/X11/Xutil.h
< bitmaps.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< bitmaps.o: /usr/local/X11/include/X11/Core.h
< bitmaps.o: /usr/local/X11/include/X11/Composite.h
< bitmaps.o: /usr/local/X11/include/X11/Constraint.h
< bitmaps.o: /usr/local/X11/include/X11/Object.h
< bitmaps.o: /usr/local/X11/include/X11/RectObj.h
< bitmaps.o: /usr/local/X11/include/X11/Shell.h
< bitmaps.o: /usr/local/X11/include/X11/Xatom.h
< bitmaps.o: /usr/local/X11/include/Xm/XmStrDefs.h
< bitmaps.o: /usr/local/X11/include/X11/StringDefs.h
< bitmaps.o: /usr/local/X11/include/Xm/VirtKeys.h
< bitmaps.o: /usr/local/X11/include/Xm/VendorS.h find.xbm world.xbm auth.xbm
< bitmaps.o: prefs.xbm app.xbm xax500.xbm
< browse.o: /usr/local/X11/include/Xm/SelectioB.h
< browse.o: /usr/local/X11/include/Xm/Xm.h
< browse.o: /usr/local/X11/include/X11/Intrinsic.h
< browse.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< browse.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< browse.o: /usr/local/X11/include/X11/X.h
< browse.o: /usr/local/X11/include/X11/Xfuncproto.h
< browse.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< browse.o: /usr/local/X11/include/X11/Xutil.h
< browse.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< browse.o: /usr/local/X11/include/X11/Core.h
< browse.o: /usr/local/X11/include/X11/Composite.h
< browse.o: /usr/local/X11/include/X11/Constraint.h
< browse.o: /usr/local/X11/include/X11/Object.h
< browse.o: /usr/local/X11/include/X11/RectObj.h
< browse.o: /usr/local/X11/include/X11/Shell.h
< browse.o: /usr/local/X11/include/X11/Xatom.h
< browse.o: /usr/local/X11/include/Xm/XmStrDefs.h
< browse.o: /usr/local/X11/include/X11/StringDefs.h
< browse.o: /usr/local/X11/include/Xm/VirtKeys.h
< browse.o: /usr/local/X11/include/Xm/VendorS.h
< browse.o: /usr/local/X11/include/Xm/Label.h /usr/local/X11/include/Xm/PushB.h
< browse.o: /usr/local/X11/include/Xm/PushBG.h /usr/local/X11/include/Xm/Form.h
< browse.o: /usr/local/X11/include/Xm/BulletinB.h
< browse.o: /usr/local/X11/include/Xm/ScrolledW.h
< browse.o: /usr/local/X11/include/Xm/PanedW.h /usr/local/X11/include/Xm/List.h
< browse.o: /usr/local/X11/include/Xm/Protocols.h ../ldap/h/lber.h
< browse.o: ../ldap/h/ldap.h dtypes.h disptmpl.h globals.h util.h working.h
< browse.o: dialog.h menu.h
< dialog.o: /usr/local/X11/include/Xm/MessageB.h /usr/local/X11/include/Xm/Xm.h
< dialog.o: /usr/local/X11/include/X11/Intrinsic.h
< dialog.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< dialog.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< dialog.o: /usr/local/X11/include/X11/X.h
< dialog.o: /usr/local/X11/include/X11/Xfuncproto.h
< dialog.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< dialog.o: /usr/local/X11/include/X11/Xutil.h
< dialog.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< dialog.o: /usr/local/X11/include/X11/Core.h
< dialog.o: /usr/local/X11/include/X11/Composite.h
< dialog.o: /usr/local/X11/include/X11/Constraint.h
< dialog.o: /usr/local/X11/include/X11/Object.h
< dialog.o: /usr/local/X11/include/X11/RectObj.h
< dialog.o: /usr/local/X11/include/X11/Shell.h
< dialog.o: /usr/local/X11/include/X11/Xatom.h
< dialog.o: /usr/local/X11/include/Xm/XmStrDefs.h
< dialog.o: /usr/local/X11/include/X11/StringDefs.h
< dialog.o: /usr/local/X11/include/Xm/VirtKeys.h
< dialog.o: /usr/local/X11/include/Xm/VendorS.h
< display.o: /usr/local/X11/include/Xm/RowColumn.h
< display.o: /usr/local/X11/include/Xm/Xm.h
< display.o: /usr/local/X11/include/X11/Intrinsic.h
< display.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< display.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< display.o: /usr/local/X11/include/X11/X.h
< display.o: /usr/local/X11/include/X11/Xfuncproto.h
< display.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< display.o: /usr/local/X11/include/X11/Xutil.h
< display.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< display.o: /usr/local/X11/include/X11/Core.h
< display.o: /usr/local/X11/include/X11/Composite.h
< display.o: /usr/local/X11/include/X11/Constraint.h
< display.o: /usr/local/X11/include/X11/Object.h
< display.o: /usr/local/X11/include/X11/RectObj.h
< display.o: /usr/local/X11/include/X11/Shell.h
< display.o: /usr/local/X11/include/X11/Xatom.h
< display.o: /usr/local/X11/include/Xm/XmStrDefs.h
< display.o: /usr/local/X11/include/X11/StringDefs.h
< display.o: /usr/local/X11/include/Xm/VirtKeys.h
< display.o: /usr/local/X11/include/Xm/VendorS.h
< display.o: /usr/local/X11/include/Xm/PushB.h
< display.o: /usr/local/X11/include/Xm/PushBG.h
< display.o: /usr/local/X11/include/Xm/Text.h /usr/include/stdio.h
< display.o: /usr/local/X11/include/Xm/TextF.h
< display.o: /usr/local/X11/include/Xm/ToggleBG.h
< display.o: /usr/local/X11/include/Xm/Form.h
< display.o: /usr/local/X11/include/Xm/BulletinB.h
< display.o: /usr/local/X11/include/Xm/LabelG.h
< display.o: /usr/local/X11/include/Xm/Label.h /usr/local/X11/include/Xm/List.h
< display.o: /usr/local/X11/include/Xm/ScrolledW.h
< display.o: /usr/local/X11/include/Xm/PanedW.h
< display.o: /usr/local/X11/include/Xm/SeparatoG.h
< display.o: /usr/local/X11/include/Xm/ArrowB.h
< display.o: /usr/local/X11/include/Xm/Protocols.h ../ldap/h/lber.h
< display.o: ../ldap/h/ldap.h /usr/include/signal.h /usr/include/sys/signal.h
< display.o: /usr/include/vm/faultcode.h /usr/include/errno.h
< display.o: /usr/include/sys/errno.h /usr/include/sys/time.h
---
> auth.o: /usr/include/Xm/Xm.h /usr/include/X11/Intrinsic.h
> auth.o: /usr/include/X11/Xlib.h /usr/include/sys/types.h
> auth.o: /usr/include/standards.h /usr/include/X11/X.h
> auth.o: /usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h
> auth.o: /usr/include/stddef.h /usr/include/X11/Xutil.h
> auth.o: /usr/include/X11/Xresource.h /usr/include/string.h
> auth.o: /usr/include/X11/Core.h /usr/include/X11/Composite.h
> auth.o: /usr/include/X11/Constraint.h /usr/include/X11/Object.h
> auth.o: /usr/include/X11/RectObj.h /usr/include/X11/Shell.h
> auth.o: /usr/include/X11/Xatom.h /usr/include/Xm/XmStrDefs.h
> auth.o: /usr/include/X11/StringDefs.h /usr/include/Xm/VirtKeys.h
> auth.o: /usr/include/Xm/VendorS.h /usr/include/stdio.h
> bitmaps.o: /usr/include/Xm/Xm.h /usr/include/X11/Intrinsic.h
> bitmaps.o: /usr/include/X11/Xlib.h /usr/include/sys/types.h
> bitmaps.o: /usr/include/standards.h /usr/include/X11/X.h
> bitmaps.o: /usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h
> bitmaps.o: /usr/include/stddef.h /usr/include/X11/Xutil.h
> bitmaps.o: /usr/include/X11/Xresource.h /usr/include/string.h
> bitmaps.o: /usr/include/X11/Core.h /usr/include/X11/Composite.h
> bitmaps.o: /usr/include/X11/Constraint.h /usr/include/X11/Object.h
> bitmaps.o: /usr/include/X11/RectObj.h /usr/include/X11/Shell.h
> bitmaps.o: /usr/include/X11/Xatom.h /usr/include/Xm/XmStrDefs.h
> bitmaps.o: /usr/include/X11/StringDefs.h /usr/include/Xm/VirtKeys.h
> bitmaps.o: /usr/include/Xm/VendorS.h find.xbm world.xbm auth.xbm prefs.xbm
> bitmaps.o: app.xbm xax500.xbm camera.xbm speaker.xbm camera_inactive.xbm
> bitmaps.o: speaker_inactive.xbm
> browse.o: /usr/include/Xm/SelectioB.h /usr/include/Xm/Xm.h
> browse.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> browse.o: /usr/include/sys/types.h /usr/include/standards.h
> browse.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> browse.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> browse.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> browse.o: /usr/include/string.h /usr/include/X11/Core.h
> browse.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> browse.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> browse.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> browse.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> browse.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> browse.o: /usr/include/Xm/Label.h /usr/include/Xm/PushB.h
> browse.o: /usr/include/Xm/PushBG.h /usr/include/Xm/Form.h
> browse.o: /usr/include/Xm/BulletinB.h /usr/include/Xm/ScrolledW.h
> browse.o: /usr/include/Xm/PanedW.h /usr/include/Xm/List.h
> browse.o: /usr/include/Xm/Protocols.h /var/newldap/h/lber.h
> browse.o: /var/newldap/h/ldap.h dtypes.h disptmpl.h globals.h util.h
> browse.o: working.h dialog.h menu.h
> dialog.o: /usr/include/Xm/MessageB.h /usr/include/Xm/Xm.h
> dialog.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> dialog.o: /usr/include/sys/types.h /usr/include/standards.h
> dialog.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> dialog.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> dialog.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> dialog.o: /usr/include/string.h /usr/include/X11/Core.h
> dialog.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> dialog.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> dialog.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> dialog.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> dialog.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> display.o: /usr/include/Xm/RowColumn.h /usr/include/Xm/Xm.h
> display.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> display.o: /usr/include/sys/types.h /usr/include/standards.h
> display.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> display.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> display.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> display.o: /usr/include/string.h /usr/include/X11/Core.h
> display.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> display.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> display.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> display.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> display.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> display.o: /usr/include/Xm/PushB.h /usr/include/Xm/PushBG.h
> display.o: /usr/include/Xm/Text.h /usr/include/stdio.h
> display.o: /usr/include/Xm/TextF.h /usr/include/Xm/ToggleBG.h
> display.o: /usr/include/Xm/Form.h /usr/include/Xm/BulletinB.h
> display.o: /usr/include/Xm/LabelG.h /usr/include/Xm/Label.h
> display.o: /usr/include/Xm/List.h /usr/include/Xm/ScrolledW.h
> display.o: /usr/include/Xm/PanedW.h /usr/include/Xm/SeparatoG.h
> display.o: /usr/include/Xm/ArrowB.h /usr/include/Xm/Protocols.h
> display.o: /var/newldap/h/lber.h /var/newldap/h/ldap.h /usr/include/signal.h
> display.o: /usr/include/errno.h /usr/include/sys/time.h
> display.o: /usr/include/sys/limits.h /usr/include/sys/signal.h
295,628c252,504
< display.o: /usr/include/sys/fcntlcom.h /usr/include/sys/stat.h disptmpl.h
< display.o: dtypes.h util.h menu.h globals.h display.h bitmaps.h dialog.h
< display.o: working.h browse.h
< fallbacks.o: /usr/local/X11/include/X11/Intrinsic.h
< fallbacks.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< fallbacks.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< fallbacks.o: /usr/local/X11/include/X11/X.h
< fallbacks.o: /usr/local/X11/include/X11/Xfuncproto.h
< fallbacks.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< fallbacks.o: /usr/local/X11/include/X11/Xutil.h
< fallbacks.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< fallbacks.o: /usr/local/X11/include/X11/Core.h
< fallbacks.o: /usr/local/X11/include/X11/Composite.h
< fallbacks.o: /usr/local/X11/include/X11/Constraint.h
< fallbacks.o: /usr/local/X11/include/X11/Object.h
< fallbacks.o: /usr/local/X11/include/X11/RectObj.h /usr/include/stdio.h
< find.o: /usr/local/X11/include/Xm/PushB.h /usr/local/X11/include/Xm/Xm.h
< find.o: /usr/local/X11/include/X11/Intrinsic.h
< find.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< find.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< find.o: /usr/local/X11/include/X11/X.h
< find.o: /usr/local/X11/include/X11/Xfuncproto.h
< find.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< find.o: /usr/local/X11/include/X11/Xutil.h
< find.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< find.o: /usr/local/X11/include/X11/Core.h
< find.o: /usr/local/X11/include/X11/Composite.h
< find.o: /usr/local/X11/include/X11/Constraint.h
< find.o: /usr/local/X11/include/X11/Object.h
< find.o: /usr/local/X11/include/X11/RectObj.h
< find.o: /usr/local/X11/include/X11/Shell.h /usr/local/X11/include/X11/Xatom.h
< find.o: /usr/local/X11/include/Xm/XmStrDefs.h
< find.o: /usr/local/X11/include/X11/StringDefs.h
< find.o: /usr/local/X11/include/Xm/VirtKeys.h
< find.o: /usr/local/X11/include/Xm/VendorS.h
< find.o: /usr/local/X11/include/Xm/PushBG.h /usr/local/X11/include/Xm/Text.h
< find.o: /usr/include/stdio.h /usr/local/X11/include/Xm/TextF.h
< find.o: /usr/local/X11/include/Xm/Form.h
< find.o: /usr/local/X11/include/Xm/BulletinB.h
< find.o: /usr/local/X11/include/Xm/LabelG.h
< find.o: /usr/local/X11/include/Xm/SeparatoG.h
< find.o: /usr/local/X11/include/Xm/Label.h ../ldap/h/lber.h ../ldap/h/ldap.h
< find.o: /usr/include/sys/time.h /usr/include/sys/time.h dtypes.h util.h
< find.o: menu.h globals.h find.h browse.h bitmaps.h dialog.h working.h
< ldap.o: ../ldap/h/lber.h ../ldap/h/ldap.h /usr/include/stdio.h
< ldap.o: /usr/include/netdb.h /usr/local/X11/include/X11/Intrinsic.h
< ldap.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< ldap.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< ldap.o: /usr/local/X11/include/X11/X.h
< ldap.o: /usr/local/X11/include/X11/Xfuncproto.h
< ldap.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< ldap.o: /usr/local/X11/include/X11/Xutil.h
< ldap.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< ldap.o: /usr/local/X11/include/X11/Core.h
< ldap.o: /usr/local/X11/include/X11/Composite.h
< ldap.o: /usr/local/X11/include/X11/Constraint.h
< ldap.o: /usr/local/X11/include/X11/Object.h
< ldap.o: /usr/local/X11/include/X11/RectObj.h dtypes.h display.h globals.h
< main.o: /usr/local/X11/include/Xm/PushBG.h /usr/local/X11/include/Xm/Xm.h
< main.o: /usr/local/X11/include/X11/Intrinsic.h
< main.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< main.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< main.o: /usr/local/X11/include/X11/X.h
< main.o: /usr/local/X11/include/X11/Xfuncproto.h
< main.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< main.o: /usr/local/X11/include/X11/Xutil.h
< main.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< main.o: /usr/local/X11/include/X11/Core.h
< main.o: /usr/local/X11/include/X11/Composite.h
< main.o: /usr/local/X11/include/X11/Constraint.h
< main.o: /usr/local/X11/include/X11/Object.h
< main.o: /usr/local/X11/include/X11/RectObj.h
< main.o: /usr/local/X11/include/X11/Shell.h /usr/local/X11/include/X11/Xatom.h
< main.o: /usr/local/X11/include/Xm/XmStrDefs.h
< main.o: /usr/local/X11/include/X11/StringDefs.h
< main.o: /usr/local/X11/include/Xm/VirtKeys.h
< main.o: /usr/local/X11/include/Xm/VendorS.h
< main.o: /usr/local/X11/include/Xm/LabelG.h
< main.o: /usr/local/X11/include/Xm/SeparatoG.h
< main.o: /usr/local/X11/include/Xm/List.h /usr/local/X11/include/Xm/Text.h
< main.o: /usr/include/stdio.h /usr/local/X11/include/Xm/Label.h
< main.o: /usr/local/X11/include/Xm/DrawnB.h
< main.o: /usr/local/X11/include/Xm/MessageB.h
< main.o: /usr/local/X11/include/Xm/RowColumn.h
< main.o: /usr/local/X11/include/Xm/PanedW.h ../ldap/h/lber.h ../ldap/h/ldap.h
< main.o: /usr/include/sys/time.h /usr/include/sys/time.h /usr/include/signal.h
< main.o: /usr/include/sys/signal.h /usr/include/vm/faultcode.h
< main.o: /usr/include/fcntl.h /usr/include/sys/fcntlcom.h
< main.o: /usr/include/sys/stat.h disptmpl.h dtypes.h globals.h menu.h
< main.o: working.h bitmaps.h prefs.h find.h fallbacks.h auth.h util.h
< main.o: resources.h dialog.h
< menu.o: /usr/local/X11/include/Xm/RowColumn.h /usr/local/X11/include/Xm/Xm.h
< menu.o: /usr/local/X11/include/X11/Intrinsic.h
< menu.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< menu.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< menu.o: /usr/local/X11/include/X11/X.h
< menu.o: /usr/local/X11/include/X11/Xfuncproto.h
< menu.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< menu.o: /usr/local/X11/include/X11/Xutil.h
< menu.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< menu.o: /usr/local/X11/include/X11/Core.h
< menu.o: /usr/local/X11/include/X11/Composite.h
< menu.o: /usr/local/X11/include/X11/Constraint.h
< menu.o: /usr/local/X11/include/X11/Object.h
< menu.o: /usr/local/X11/include/X11/RectObj.h
< menu.o: /usr/local/X11/include/X11/Shell.h /usr/local/X11/include/X11/Xatom.h
< menu.o: /usr/local/X11/include/Xm/XmStrDefs.h
< menu.o: /usr/local/X11/include/X11/StringDefs.h
< menu.o: /usr/local/X11/include/Xm/VirtKeys.h
< menu.o: /usr/local/X11/include/Xm/VendorS.h
< menu.o: /usr/local/X11/include/Xm/CascadeBG.h
< menu.o: /usr/local/X11/include/Xm/PushB.h /usr/local/X11/include/Xm/PushBG.h
< menu.o: /usr/local/X11/include/Xm/LabelG.h
< menu.o: /usr/local/X11/include/Xm/SeparatoG.h
< menu.o: /usr/local/X11/include/Xm/ToggleB.h
< menu.o: /usr/local/X11/include/Xm/ToggleBG.h /usr/include/stdio.h
< menu.o: ../ldap/h/lber.h ../ldap/h/ldap.h dtypes.h globals.h menu.h about.h
< menu.o: find.h prefs.h util.h auth.h browse.h dialog.h help.h
< prefs.o: /usr/local/X11/include/Xm/Xm.h
< prefs.o: /usr/local/X11/include/X11/Intrinsic.h
< prefs.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< prefs.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< prefs.o: /usr/local/X11/include/X11/X.h
< prefs.o: /usr/local/X11/include/X11/Xfuncproto.h
< prefs.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< prefs.o: /usr/local/X11/include/X11/Xutil.h
< prefs.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< prefs.o: /usr/local/X11/include/X11/Core.h
< prefs.o: /usr/local/X11/include/X11/Composite.h
< prefs.o: /usr/local/X11/include/X11/Constraint.h
< prefs.o: /usr/local/X11/include/X11/Object.h
< prefs.o: /usr/local/X11/include/X11/RectObj.h
< prefs.o: /usr/local/X11/include/X11/Shell.h
< prefs.o: /usr/local/X11/include/X11/Xatom.h
< prefs.o: /usr/local/X11/include/Xm/XmStrDefs.h
< prefs.o: /usr/local/X11/include/X11/StringDefs.h
< prefs.o: /usr/local/X11/include/Xm/VirtKeys.h
< prefs.o: /usr/local/X11/include/Xm/VendorS.h /usr/include/stdio.h
< read.o: /usr/local/X11/include/Xm/SelectioB.h /usr/local/X11/include/Xm/Xm.h
< read.o: /usr/local/X11/include/X11/Intrinsic.h
< read.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< read.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< read.o: /usr/local/X11/include/X11/X.h
< read.o: /usr/local/X11/include/X11/Xfuncproto.h
< read.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< read.o: /usr/local/X11/include/X11/Xutil.h
< read.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< read.o: /usr/local/X11/include/X11/Core.h
< read.o: /usr/local/X11/include/X11/Composite.h
< read.o: /usr/local/X11/include/X11/Constraint.h
< read.o: /usr/local/X11/include/X11/Object.h
< read.o: /usr/local/X11/include/X11/RectObj.h
< read.o: /usr/local/X11/include/X11/Shell.h /usr/local/X11/include/X11/Xatom.h
< read.o: /usr/local/X11/include/Xm/XmStrDefs.h
< read.o: /usr/local/X11/include/X11/StringDefs.h
< read.o: /usr/local/X11/include/Xm/VirtKeys.h
< read.o: /usr/local/X11/include/Xm/VendorS.h
< read.o: /usr/local/X11/include/Xm/RowColumn.h
< read.o: /usr/local/X11/include/Xm/PushB.h /usr/local/X11/include/Xm/PushBG.h
< read.o: /usr/local/X11/include/Xm/Text.h /usr/include/stdio.h
< read.o: /usr/local/X11/include/Xm/TextF.h
< read.o: /usr/local/X11/include/Xm/MessageB.h /usr/local/X11/include/Xm/Form.h
< read.o: /usr/local/X11/include/Xm/BulletinB.h
< read.o: /usr/local/X11/include/Xm/LabelG.h /usr/local/X11/include/Xm/Label.h
< read.o: /usr/local/X11/include/Xm/List.h
< read.o: /usr/local/X11/include/Xm/ScrolledW.h ../ldap/h/lber.h
< read.o: ../ldap/h/ldap.h /usr/include/sys/time.h /usr/include/sys/time.h
< read.o: disptmpl.h dtypes.h util.h menu.h globals.h read.h display.h
< read.o: bitmaps.h dialog.h working.h
< search.o: /usr/local/X11/include/Xm/SelectioB.h
< search.o: /usr/local/X11/include/Xm/Xm.h
< search.o: /usr/local/X11/include/X11/Intrinsic.h
< search.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< search.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< search.o: /usr/local/X11/include/X11/X.h
< search.o: /usr/local/X11/include/X11/Xfuncproto.h
< search.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< search.o: /usr/local/X11/include/X11/Xutil.h
< search.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< search.o: /usr/local/X11/include/X11/Core.h
< search.o: /usr/local/X11/include/X11/Composite.h
< search.o: /usr/local/X11/include/X11/Constraint.h
< search.o: /usr/local/X11/include/X11/Object.h
< search.o: /usr/local/X11/include/X11/RectObj.h
< search.o: /usr/local/X11/include/X11/Shell.h
< search.o: /usr/local/X11/include/X11/Xatom.h
< search.o: /usr/local/X11/include/Xm/XmStrDefs.h
< search.o: /usr/local/X11/include/X11/StringDefs.h
< search.o: /usr/local/X11/include/Xm/VirtKeys.h
< search.o: /usr/local/X11/include/Xm/VendorS.h
< search.o: /usr/local/X11/include/Xm/RowColumn.h
< search.o: /usr/local/X11/include/Xm/PushB.h
< search.o: /usr/local/X11/include/Xm/PushBG.h /usr/local/X11/include/Xm/Text.h
< search.o: /usr/include/stdio.h /usr/local/X11/include/Xm/TextF.h
< search.o: /usr/local/X11/include/Xm/MessageB.h
< search.o: /usr/local/X11/include/Xm/Form.h
< search.o: /usr/local/X11/include/Xm/BulletinB.h
< search.o: /usr/local/X11/include/Xm/LabelG.h
< search.o: /usr/local/X11/include/Xm/Label.h /usr/local/X11/include/Xm/List.h
< search.o: /usr/local/X11/include/Xm/ScrolledW.h ../ldap/h/lber.h
< search.o: ../ldap/h/ldap.h /usr/include/sys/time.h /usr/include/sys/time.h
< search.o: dtypes.h util.h menu.h globals.h search.h read.h select.h bitmaps.h
< search.o: dialog.h working.h
< select.o: /usr/local/X11/include/Xm/SelectioB.h
< select.o: /usr/local/X11/include/Xm/Xm.h
< select.o: /usr/local/X11/include/X11/Intrinsic.h
< select.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< select.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< select.o: /usr/local/X11/include/X11/X.h
< select.o: /usr/local/X11/include/X11/Xfuncproto.h
< select.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< select.o: /usr/local/X11/include/X11/Xutil.h
< select.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< select.o: /usr/local/X11/include/X11/Core.h
< select.o: /usr/local/X11/include/X11/Composite.h
< select.o: /usr/local/X11/include/X11/Constraint.h
< select.o: /usr/local/X11/include/X11/Object.h
< select.o: /usr/local/X11/include/X11/RectObj.h
< select.o: /usr/local/X11/include/X11/Shell.h
< select.o: /usr/local/X11/include/X11/Xatom.h
< select.o: /usr/local/X11/include/Xm/XmStrDefs.h
< select.o: /usr/local/X11/include/X11/StringDefs.h
< select.o: /usr/local/X11/include/Xm/VirtKeys.h
< select.o: /usr/local/X11/include/Xm/VendorS.h
< select.o: /usr/local/X11/include/Xm/RowColumn.h
< select.o: /usr/local/X11/include/Xm/PushB.h
< select.o: /usr/local/X11/include/Xm/PushBG.h /usr/local/X11/include/Xm/Text.h
< select.o: /usr/include/stdio.h /usr/local/X11/include/Xm/TextF.h
< select.o: /usr/local/X11/include/Xm/MessageB.h
< select.o: /usr/local/X11/include/Xm/Form.h
< select.o: /usr/local/X11/include/Xm/BulletinB.h
< select.o: /usr/local/X11/include/Xm/LabelG.h
< select.o: /usr/local/X11/include/Xm/Label.h /usr/local/X11/include/Xm/List.h
< select.o: /usr/local/X11/include/Xm/ScrolledW.h ../ldap/h/lber.h
< select.o: ../ldap/h/ldap.h /usr/include/sys/time.h /usr/include/sys/time.h
< select.o: dtypes.h util.h menu.h globals.h select.h read.h bitmaps.h dialog.h
< select.o: working.h
< util.o: /usr/local/X11/include/Xm/DrawnB.h /usr/local/X11/include/Xm/Xm.h
< util.o: /usr/local/X11/include/X11/Intrinsic.h
< util.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< util.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< util.o: /usr/local/X11/include/X11/X.h
< util.o: /usr/local/X11/include/X11/Xfuncproto.h
< util.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< util.o: /usr/local/X11/include/X11/Xutil.h
< util.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< util.o: /usr/local/X11/include/X11/Core.h
< util.o: /usr/local/X11/include/X11/Composite.h
< util.o: /usr/local/X11/include/X11/Constraint.h
< util.o: /usr/local/X11/include/X11/Object.h
< util.o: /usr/local/X11/include/X11/RectObj.h
< util.o: /usr/local/X11/include/X11/Shell.h /usr/local/X11/include/X11/Xatom.h
< util.o: /usr/local/X11/include/Xm/XmStrDefs.h
< util.o: /usr/local/X11/include/X11/StringDefs.h
< util.o: /usr/local/X11/include/Xm/VirtKeys.h
< util.o: /usr/local/X11/include/Xm/VendorS.h /usr/local/X11/include/Xm/Form.h
< util.o: /usr/local/X11/include/Xm/BulletinB.h
< util.o: /usr/local/X11/include/Xm/PushB.h /usr/include/stdio.h
< util.o: /usr/include/sys/wait.h ../ldap/h/lber.h ../ldap/h/ldap.h
< util.o: /usr/include/errno.h /usr/include/sys/errno.h dtypes.h globals.h
< util.o: find.h prefs.h auth.h browse.h util.h
< working.o: /usr/local/X11/include/Xm/MessageB.h
< working.o: /usr/local/X11/include/Xm/Xm.h
< working.o: /usr/local/X11/include/X11/Intrinsic.h
< working.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< working.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< working.o: /usr/local/X11/include/X11/X.h
< working.o: /usr/local/X11/include/X11/Xfuncproto.h
< working.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< working.o: /usr/local/X11/include/X11/Xutil.h
< working.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< working.o: /usr/local/X11/include/X11/Core.h
< working.o: /usr/local/X11/include/X11/Composite.h
< working.o: /usr/local/X11/include/X11/Constraint.h
< working.o: /usr/local/X11/include/X11/Object.h
< working.o: /usr/local/X11/include/X11/RectObj.h
< working.o: /usr/local/X11/include/X11/Shell.h
< working.o: /usr/local/X11/include/X11/Xatom.h
< working.o: /usr/local/X11/include/Xm/XmStrDefs.h
< working.o: /usr/local/X11/include/X11/StringDefs.h
< working.o: /usr/local/X11/include/Xm/VirtKeys.h
< working.o: /usr/local/X11/include/Xm/VendorS.h
< disptmpl.o: /usr/include/stdio.h /usr/include/string.h
< disptmpl.o: /usr/include/sys/stdtypes.h disptmpl.h tmpltest.c
< help.o: /usr/include/stdio.h /usr/include/sys/types.h
< help.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< help.o: /usr/include/sys/stat.h /usr/include/fcntl.h
< help.o: /usr/include/sys/fcntlcom.h ../ldap/h/lber.h ../ldap/h/ldap.h
< help.o: /usr/local/X11/include/Xm/Form.h
< help.o: /usr/local/X11/include/Xm/BulletinB.h /usr/local/X11/include/Xm/Xm.h
< help.o: /usr/local/X11/include/X11/Intrinsic.h
< help.o: /usr/local/X11/include/X11/Xlib.h /usr/local/X11/include/X11/X.h
< help.o: /usr/local/X11/include/X11/Xfuncproto.h
< help.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< help.o: /usr/local/X11/include/X11/Xutil.h
< help.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< help.o: /usr/local/X11/include/X11/Core.h
< help.o: /usr/local/X11/include/X11/Composite.h
< help.o: /usr/local/X11/include/X11/Constraint.h
< help.o: /usr/local/X11/include/X11/Object.h
< help.o: /usr/local/X11/include/X11/RectObj.h
< help.o: /usr/local/X11/include/X11/Shell.h /usr/local/X11/include/X11/Xatom.h
< help.o: /usr/local/X11/include/Xm/XmStrDefs.h
< help.o: /usr/local/X11/include/X11/StringDefs.h
< help.o: /usr/local/X11/include/Xm/VirtKeys.h
< help.o: /usr/local/X11/include/Xm/VendorS.h
< help.o: /usr/local/X11/include/Xm/DialogS.h
< help.o: /usr/local/X11/include/Xm/PushBG.h /usr/local/X11/include/Xm/List.h
< help.o: /usr/local/X11/include/Xm/PanedW.h /usr/local/X11/include/Xm/Label.h
< help.o: /usr/local/X11/include/Xm/Protocols.h
< help.o: /usr/local/X11/include/Xm/Text.h dtypes.h globals.h util.h
< about.o: /usr/local/X11/include/Xm/PanedW.h /usr/local/X11/include/Xm/Xm.h
< about.o: /usr/local/X11/include/X11/Intrinsic.h
< about.o: /usr/local/X11/include/X11/Xlib.h /usr/include/sys/types.h
< about.o: /usr/include/sys/stdtypes.h /usr/include/sys/sysmacros.h
< about.o: /usr/local/X11/include/X11/X.h
< about.o: /usr/local/X11/include/X11/Xfuncproto.h
< about.o: /usr/local/X11/include/X11/Xosdefs.h /usr/include/stddef.h
< about.o: /usr/local/X11/include/X11/Xutil.h
< about.o: /usr/local/X11/include/X11/Xresource.h /usr/include/string.h
< about.o: /usr/local/X11/include/X11/Core.h
< about.o: /usr/local/X11/include/X11/Composite.h
< about.o: /usr/local/X11/include/X11/Constraint.h
< about.o: /usr/local/X11/include/X11/Object.h
< about.o: /usr/local/X11/include/X11/RectObj.h
< about.o: /usr/local/X11/include/X11/Shell.h
< about.o: /usr/local/X11/include/X11/Xatom.h
< about.o: /usr/local/X11/include/Xm/XmStrDefs.h
< about.o: /usr/local/X11/include/X11/StringDefs.h
< about.o: /usr/local/X11/include/Xm/VirtKeys.h
< about.o: /usr/local/X11/include/Xm/VendorS.h
< about.o: /usr/local/X11/include/Xm/Label.h
< about.o: /usr/local/X11/include/Xm/Protocols.h ../ldap/h/lber.h
< about.o: ../ldap/h/ldap.h dtypes.h globals.h util.h
---
> display.o: /usr/include/sys/fcntl.h disptmpl.h dtypes.h util.h menu.h
> display.o: globals.h display.h bitmaps.h dialog.h working.h browse.h
> fallbacks.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> fallbacks.o: /usr/include/sys/types.h /usr/include/standards.h
> fallbacks.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> fallbacks.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> fallbacks.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> fallbacks.o: /usr/include/string.h /usr/include/X11/Core.h
> fallbacks.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> fallbacks.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> fallbacks.o: /usr/include/stdio.h
> find.o: /usr/include/Xm/PushB.h /usr/include/Xm/Xm.h
> find.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> find.o: /usr/include/sys/types.h /usr/include/standards.h
> find.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> find.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> find.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> find.o: /usr/include/string.h /usr/include/X11/Core.h
> find.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> find.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> find.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> find.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> find.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> find.o: /usr/include/Xm/PushBG.h /usr/include/Xm/Text.h /usr/include/stdio.h
> find.o: /usr/include/Xm/TextF.h /usr/include/Xm/Form.h
> find.o: /usr/include/Xm/BulletinB.h /usr/include/Xm/LabelG.h
> find.o: /usr/include/Xm/SeparatoG.h /usr/include/Xm/Label.h
> find.o: /var/newldap/h/lber.h /var/newldap/h/ldap.h /usr/include/sys/time.h
> find.o: /usr/include/sys/limits.h /usr/include/sys/signal.h
> find.o: /usr/include/sys/time.h dtypes.h util.h srchpref.h menu.h globals.h
> find.o: find.h browse.h bitmaps.h dialog.h working.h
> ldap.o: /var/newldap/h/lber.h /var/newldap/h/ldap.h /usr/include/stdio.h
> ldap.o: /usr/include/standards.h /usr/include/netdb.h
> ldap.o: /usr/include/rpc/netdb.h /usr/include/X11/Intrinsic.h
> ldap.o: /usr/include/X11/Xlib.h /usr/include/sys/types.h /usr/include/X11/X.h
> ldap.o: /usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h
> ldap.o: /usr/include/stddef.h /usr/include/X11/Xutil.h
> ldap.o: /usr/include/X11/Xresource.h /usr/include/string.h
> ldap.o: /usr/include/X11/Core.h /usr/include/X11/Composite.h
> ldap.o: /usr/include/X11/Constraint.h /usr/include/X11/Object.h
> ldap.o: /usr/include/X11/RectObj.h dtypes.h display.h globals.h
> main.o: /usr/include/Xm/PushBG.h /usr/include/Xm/Xm.h
> main.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> main.o: /usr/include/sys/types.h /usr/include/standards.h
> main.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> main.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> main.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> main.o: /usr/include/string.h /usr/include/X11/Core.h
> main.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> main.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> main.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> main.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> main.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> main.o: /usr/include/Xm/LabelG.h /usr/include/Xm/SeparatoG.h
> main.o: /usr/include/Xm/List.h /usr/include/Xm/Text.h /usr/include/stdio.h
> main.o: /usr/include/Xm/Label.h /usr/include/Xm/DrawnB.h
> main.o: /usr/include/Xm/MessageB.h /usr/include/Xm/RowColumn.h
> main.o: /usr/include/Xm/PanedW.h /var/newldap/h/lber.h /var/newldap/h/ldap.h
> main.o: /usr/include/sys/time.h /usr/include/sys/limits.h
> main.o: /usr/include/sys/signal.h /usr/include/sys/time.h
> main.o: /usr/include/signal.h /usr/include/fcntl.h /usr/include/sys/fcntl.h
> main.o: disptmpl.h srchpref.h dtypes.h globals.h menu.h working.h bitmaps.h
> main.o: prefs.h find.h fallbacks.h auth.h util.h resources.h dialog.h
> menu.o: /usr/include/Xm/RowColumn.h /usr/include/Xm/Xm.h
> menu.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> menu.o: /usr/include/sys/types.h /usr/include/standards.h
> menu.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> menu.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> menu.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> menu.o: /usr/include/string.h /usr/include/X11/Core.h
> menu.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> menu.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> menu.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> menu.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> menu.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> menu.o: /usr/include/Xm/CascadeBG.h /usr/include/Xm/PushB.h
> menu.o: /usr/include/Xm/PushBG.h /usr/include/Xm/LabelG.h
> menu.o: /usr/include/Xm/SeparatoG.h /usr/include/Xm/ToggleB.h
> menu.o: /usr/include/Xm/ToggleBG.h /usr/include/stdio.h /var/newldap/h/lber.h
> menu.o: /var/newldap/h/ldap.h dtypes.h globals.h menu.h about.h find.h
> menu.o: prefs.h util.h auth.h browse.h dialog.h help.h
> prefs.o: /usr/include/Xm/Xm.h /usr/include/X11/Intrinsic.h
> prefs.o: /usr/include/X11/Xlib.h /usr/include/sys/types.h
> prefs.o: /usr/include/standards.h /usr/include/X11/X.h
> prefs.o: /usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h
> prefs.o: /usr/include/stddef.h /usr/include/X11/Xutil.h
> prefs.o: /usr/include/X11/Xresource.h /usr/include/string.h
> prefs.o: /usr/include/X11/Core.h /usr/include/X11/Composite.h
> prefs.o: /usr/include/X11/Constraint.h /usr/include/X11/Object.h
> prefs.o: /usr/include/X11/RectObj.h /usr/include/X11/Shell.h
> prefs.o: /usr/include/X11/Xatom.h /usr/include/Xm/XmStrDefs.h
> prefs.o: /usr/include/X11/StringDefs.h /usr/include/Xm/VirtKeys.h
> prefs.o: /usr/include/Xm/VendorS.h /usr/include/stdio.h
> read.o: /usr/include/Xm/SelectioB.h /usr/include/Xm/Xm.h
> read.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> read.o: /usr/include/sys/types.h /usr/include/standards.h
> read.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> read.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> read.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> read.o: /usr/include/string.h /usr/include/X11/Core.h
> read.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> read.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> read.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> read.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> read.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> read.o: /usr/include/Xm/RowColumn.h /usr/include/Xm/PushB.h
> read.o: /usr/include/Xm/PushBG.h /usr/include/Xm/Text.h /usr/include/stdio.h
> read.o: /usr/include/Xm/TextF.h /usr/include/Xm/MessageB.h
> read.o: /usr/include/Xm/Form.h /usr/include/Xm/BulletinB.h
> read.o: /usr/include/Xm/LabelG.h /usr/include/Xm/Label.h
> read.o: /usr/include/Xm/List.h /usr/include/Xm/ScrolledW.h
> read.o: /var/newldap/h/lber.h /var/newldap/h/ldap.h /usr/include/sys/time.h
> read.o: /usr/include/sys/limits.h /usr/include/sys/signal.h
> read.o: /usr/include/sys/time.h disptmpl.h dtypes.h util.h menu.h globals.h
> read.o: read.h display.h bitmaps.h dialog.h working.h
> search.o: /usr/include/Xm/SelectioB.h /usr/include/Xm/Xm.h
> search.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> search.o: /usr/include/sys/types.h /usr/include/standards.h
> search.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> search.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> search.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> search.o: /usr/include/string.h /usr/include/X11/Core.h
> search.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> search.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> search.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> search.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> search.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> search.o: /usr/include/Xm/RowColumn.h /usr/include/Xm/PushB.h
> search.o: /usr/include/Xm/PushBG.h /usr/include/Xm/Text.h
> search.o: /usr/include/stdio.h /usr/include/Xm/TextF.h
> search.o: /usr/include/Xm/MessageB.h /usr/include/Xm/Form.h
> search.o: /usr/include/Xm/BulletinB.h /usr/include/Xm/LabelG.h
> search.o: /usr/include/Xm/Label.h /usr/include/Xm/List.h
> search.o: /usr/include/Xm/ScrolledW.h /var/newldap/h/lber.h
> search.o: /var/newldap/h/ldap.h /usr/include/sys/time.h
> search.o: /usr/include/sys/limits.h /usr/include/sys/signal.h
> search.o: /usr/include/sys/time.h srchpref.h dtypes.h util.h menu.h globals.h
> search.o: search.h read.h select.h bitmaps.h dialog.h working.h
> select.o: /usr/include/Xm/SelectioB.h /usr/include/Xm/Xm.h
> select.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> select.o: /usr/include/sys/types.h /usr/include/standards.h
> select.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> select.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> select.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> select.o: /usr/include/string.h /usr/include/X11/Core.h
> select.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> select.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> select.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> select.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> select.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> select.o: /usr/include/Xm/RowColumn.h /usr/include/Xm/PushB.h
> select.o: /usr/include/Xm/PushBG.h /usr/include/Xm/Text.h
> select.o: /usr/include/stdio.h /usr/include/Xm/TextF.h
> select.o: /usr/include/Xm/MessageB.h /usr/include/Xm/Form.h
> select.o: /usr/include/Xm/BulletinB.h /usr/include/Xm/LabelG.h
> select.o: /usr/include/Xm/Label.h /usr/include/Xm/List.h
> select.o: /usr/include/Xm/ScrolledW.h /var/newldap/h/lber.h
> select.o: /var/newldap/h/ldap.h /usr/include/sys/time.h
> select.o: /usr/include/sys/limits.h /usr/include/sys/signal.h
> select.o: /usr/include/sys/time.h dtypes.h util.h menu.h globals.h select.h
> select.o: read.h bitmaps.h dialog.h working.h
> util.o: /usr/include/Xm/DrawnB.h /usr/include/Xm/Xm.h
> util.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> util.o: /usr/include/sys/types.h /usr/include/standards.h
> util.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> util.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> util.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> util.o: /usr/include/string.h /usr/include/X11/Core.h
> util.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> util.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> util.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> util.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> util.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> util.o: /usr/include/Xm/Form.h /usr/include/Xm/BulletinB.h
> util.o: /usr/include/Xm/PushB.h /usr/include/Xm/DragDrop.h
> util.o: /usr/include/Xm/DragC.h /usr/include/Xm/Display.h
> util.o: /usr/include/Xm/DropSMgr.h /usr/include/Xm/DragIcon.h
> util.o: /usr/include/Xm/DropTrans.h /usr/include/Xm/DragOverS.h
> util.o: /usr/include/stdio.h /usr/include/sys/wait.h /var/newldap/h/lber.h
> util.o: /var/newldap/h/ldap.h /usr/include/errno.h disptmpl.h dtypes.h
> util.o: globals.h find.h prefs.h auth.h browse.h util.h
> working.o: /usr/include/Xm/MessageB.h /usr/include/Xm/Xm.h
> working.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> working.o: /usr/include/sys/types.h /usr/include/standards.h
> working.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> working.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> working.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> working.o: /usr/include/string.h /usr/include/X11/Core.h
> working.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> working.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> working.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> working.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> working.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> disptmpl.o: /usr/include/stdio.h /usr/include/standards.h
> disptmpl.o: /usr/include/ctype.h /usr/include/string.h
> disptmpl.o: /usr/include/sys/types.h /usr/include/sys/file.h
> disptmpl.o: /usr/include/sys/param.h /usr/include/sys/limits.h
> disptmpl.o: /usr/include/sys/machine/machparam.h
> disptmpl.o: /usr/include/machine/endian.h /usr/include/machine/machlimits.h
> disptmpl.o: /usr/include/sys/access.h /usr/include/sys/fcntl.h
> disptmpl.o: /usr/include/stdlib.h /var/newldap/h/lber.h /var/newldap/h/ldap.h
> disptmpl.o: disptmpl.h
> help.o: /usr/include/stdio.h /usr/include/standards.h
> help.o: /usr/include/sys/types.h /usr/include/sys/stat.h
> help.o: /usr/include/sys/mode.h /usr/include/fcntl.h /usr/include/sys/fcntl.h
> help.o: /var/newldap/h/lber.h /var/newldap/h/ldap.h /usr/include/Xm/Form.h
> help.o: /usr/include/Xm/BulletinB.h /usr/include/Xm/Xm.h
> help.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> help.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> help.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> help.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> help.o: /usr/include/string.h /usr/include/X11/Core.h
> help.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> help.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> help.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> help.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> help.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> help.o: /usr/include/Xm/DialogS.h /usr/include/Xm/PushBG.h
> help.o: /usr/include/Xm/List.h /usr/include/Xm/PanedW.h
> help.o: /usr/include/Xm/Label.h /usr/include/Xm/Protocols.h
> help.o: /usr/include/Xm/Text.h dtypes.h globals.h util.h
> about.o: /usr/include/Xm/PanedW.h /usr/include/Xm/Xm.h
> about.o: /usr/include/X11/Intrinsic.h /usr/include/X11/Xlib.h
> about.o: /usr/include/sys/types.h /usr/include/standards.h
> about.o: /usr/include/X11/X.h /usr/include/X11/Xfuncproto.h
> about.o: /usr/include/X11/Xosdefs.h /usr/include/stddef.h
> about.o: /usr/include/X11/Xutil.h /usr/include/X11/Xresource.h
> about.o: /usr/include/string.h /usr/include/X11/Core.h
> about.o: /usr/include/X11/Composite.h /usr/include/X11/Constraint.h
> about.o: /usr/include/X11/Object.h /usr/include/X11/RectObj.h
> about.o: /usr/include/X11/Shell.h /usr/include/X11/Xatom.h
> about.o: /usr/include/Xm/XmStrDefs.h /usr/include/X11/StringDefs.h
> about.o: /usr/include/Xm/VirtKeys.h /usr/include/Xm/VendorS.h
> about.o: /usr/include/Xm/Label.h /usr/include/Xm/Protocols.h
> about.o: /var/newldap/h/lber.h /var/newldap/h/ldap.h dtypes.h globals.h
> about.o: util.h
> Version.o: /usr/include/stdio.h /usr/include/standards.h
> dsparse.o: /usr/include/stdio.h /usr/include/standards.h /usr/include/ctype.h
> dsparse.o: /usr/include/string.h /usr/include/sys/types.h
> dsparse.o: /usr/include/sys/file.h /usr/include/sys/param.h
> dsparse.o: /usr/include/sys/limits.h /usr/include/sys/machine/machparam.h
> dsparse.o: /usr/include/machine/endian.h /usr/include/machine/machlimits.h
> dsparse.o: /usr/include/sys/access.h /usr/include/sys/fcntl.h
> dsparse.o: /usr/include/stdlib.h
> srchpref.o: /usr/include/stdio.h /usr/include/standards.h
> srchpref.o: /usr/include/ctype.h /usr/include/string.h
> srchpref.o: /usr/include/sys/types.h /usr/include/sys/file.h
> srchpref.o: /usr/include/sys/param.h /usr/include/sys/limits.h
> srchpref.o: /usr/include/sys/machine/machparam.h
> srchpref.o: /usr/include/machine/endian.h /usr/include/machine/machlimits.h
> srchpref.o: /usr/include/sys/access.h /usr/include/sys/fcntl.h
> srchpref.o: /usr/include/stdlib.h /var/newldap/h/lber.h /var/newldap/h/ldap.h
> srchpref.o: srchpref.h

disptmpl.c.dif
46c46
< static int read_next_tmpl( char **bufp, long *blenp,
---
> static int read_next_tmpl( char **bufp, int *blenp,
48,49c48,49
< int next_line_tokens( char **bufp, long *blenp, char ***toksp );
< char *next_line( char **bufp, long *blenp );
---
> int next_line_tokens( char **bufp, int *blenp, char ***toksp );
> char *next_line( char **bufp, int *blenp );
69c69
< static unsigned long	itemsynids[] = {
---
> static unsigned int	itemsynids[] = {
84c84
<     long	rlen, len;
---
>     int	rlen, len;
126c126
<     unsigned long		buflen;
---
>     unsigned int		buflen;
319c319
<     unsigned long		syntaxmask;
---
>     unsigned int		syntaxmask;
393c393
<     long			*blenp;
---
>     int			*blenp;

disptmpl.h.dif
59c59
<     unsigned long		ti_syntaxid;
---
>     unsigned int		ti_syntaxid;
140c140
< ldap_init_templates( char *buf, unsigned long buflen,
---
> ldap_init_templates( char *buf, unsigned int buflen,
158c158
< 	 unsigned long syntaxmask );
---
> 	 unsigned int syntaxmask );
177c177
< 	int rdncount, long opts );
---
> 	int rdncount, int opts );

dsparse.c.dif
41,42c41,42
< int next_line_tokens( char **bufp, long *blenp, char ***toksp );
< char *next_line( char **bufp, long *blenp );
---
> int next_line_tokens( char **bufp, int *blenp, char ***toksp );
> char *next_line( char **bufp, int *blenp );
52c52
<     long	*blenp;
---
>     int	*blenp;
105c105
<     long	*blenp;
---
>     int	*blenp;
108c108
<     long	plen;
---
>     int	plen;

srchpref.c.dif
45,46c45,46
< int next_line_tokens( char **bufp, long *blenp, char ***toksp );
< char *next_line( char **bufp, long *blenp );
---
> int next_line_tokens( char **bufp, int *blenp, char ***toksp );
> char *next_line( char **bufp, int *blenp );
50c50
< static int read_next_searchobj( char **bufp, long *blenp,
---
> static int read_next_searchobj( char **bufp, int *blenp,
68c68
<     long	rlen, len;
---
>     int	rlen, len;
110c110
<     unsigned long		buflen;
---
>     unsigned int		buflen;
247c247
<     long			*blenp;
---
>     int			*blenp;

srchpref.h.dif
20c20
< 	u_long				sa_matchtypebitmap;
---
> 	unsigned int				sa_matchtypebitmap;
68c68
< ldap_init_searchprefs( char *buf, unsigned long buflen,
---
> ldap_init_searchprefs( char *buf, unsigned int buflen,

util.c.dif
108a109
> Widget parent;			/* Compilers make undeclared args into int(s) */

From xax500.bugs-errors@umich.edu Fri Oct 21 13:45:56 1994
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from judgmentday.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id NAA01505; Fri, 21 Oct 1994 13:45:56 -0400
Received: by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id NAA26997; Fri, 21 Oct 1994 13:45:55 -0400
Received: by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id NAA26981; Fri, 21 Oct 1994 13:45:51 -0400
Received: from crystal.physics.lsa.umich.edu by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with SMTP id NAA26964; Fri, 21 Oct 1994 13:45:49 -0400
Received: by crystal.physics.lsa.umich.edu (4.1/2.25)
	id AA01284; Fri, 21 Oct 94 13:46:02 EDT
Message-Id: <9410211746.AA01284@crystal.physics.lsa.umich.edu>
Date: Fri, 21 Oct 94 13:46:02 EDT
From: "Karen J. Coulter" <coulter@crystal.physics.lsa.umich.edu>
To: xax500.bugs@umich.edu

I just downloaded the binary tarfile for xax500 V054 for Suns.
The file ldapsearchprefs.conf is missing from the tar file,
so 'make instbin' fails.  I got the file from the source distribution,
but thought you'd want to add it to the binary distribution.

Karen Coulter
Physics

From xax500.bugs-errors@umich.edu Mon Dec  5 09:45:14 1994
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from truelies.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id JAA07071; Mon, 5 Dec 1994 09:45:14 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id JAA29005; Mon, 5 Dec 1994 09:45:13 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id JAA28977; Mon, 5 Dec 1994 09:45:08 -0500
Received: from inetgw.fsc.ibm.com by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with SMTP id JAA28970; Mon, 5 Dec 1994 09:45:04 -0500
Received: from mpv.endicott.ibm.com by inetgw.fsc.ibm.com (AIX 3.2/UCB 5.64/4.03)
          id AA30281; Mon, 5 Dec 1994 09:41:51 -0500
Received: by mpv.endicott.ibm.com (AIX 3.2/UCB 5.64/4.03)
          id AA17958; Mon, 5 Dec 1994 09:44:53 -0500
Subject: Question about xax500/Quipu
To: xax500.bugs@umich.edu
X-Mailer: Poste 2.0
From: molson@mpv.endicott.ibm.com
Sender: molson@lfs.loral.com
Date: Mon, 5 Dec 94 09:44:53 -0500
Message-Id: <941205094453.20734@mpv>
Encoding: 15 TEXT, 6 TEXT SIGNATURE

This is not a bug report, but a question...  I am trying to
images (JPEG Photos) displayed.  When I double-click on the
object that has an image, I get the message:

  "Overflow in ID in attribute file ...." and,
  "Error with file attribute ..."

on the system where Quipu is serving the data.  The images are in
JPEG format and they are being referenced by the jpegPhoto
attribute.  I appolgize if this is an elementary problem, but I
am not sure where I can find the answer.

Thanks...Mark

P.S.  When replying, use molson@lfs.loral.com as the address 

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Mark Olson
Loral Federal Systems Company, Owego NY 13827 
Internet: molson@lfs.loral.com 
Phone: (607) 751-5717      Fax:(607) 751-2597
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

From xax500.testers-errors@umich.edu Sat Jan 14 12:00:25 1995
Return-Path: <xax500.testers-errors@umich.edu>
Received: from truelies.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id MAA07302; Sat, 14 Jan 1995 12:00:24 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id MAA10679; Sat, 14 Jan 1995 12:00:24 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id MAA10676; Sat, 14 Jan 1995 12:00:21 -0500
Received: from calypso.sils.umich.edu by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with ESMTP id MAA10671; Sat, 14 Jan 1995 12:00:20 -0500
Received: by calypso.sils.umich.edu (8.6.8/2.0)
	id LAA02150; Sat, 14 Jan 1995 11:59:18 -0500
Date: Sat, 14 Jan 1995 11:59:17 -0500 (EST)
From: Lee Liming <amber@umich.edu>
X-Sender: amber@calypso.sils.umich.edu
To: mcs@umich.edu, ggood@umich.edu
cc: xax500-testers@umich.edu
Subject: xax500 testing
Message-ID: <Pine.SUN.3.91.950114114943.2140A-100000@calypso.sils.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

I just found the xax500 0.54 stuff, and have built and tested it some at
SILS.  I did find one problem with the build -- in display.c on line 1074,
there ought to be two parameters to ldap_explode_dn().  I added "0"  as
the second parameter (called "notypes" in the prototype), and it seems to
work.  But I'll bet that wasn't the right thing to do... ;-) I'm compiling
against the ldap-3.1 libraries under SunOS 4.1.3U1. 

-------------------------------------------------------------------------------
Lee Liming                        http://http2.sils.umich.edu/People/amber.html
School of Info & Lib Studies                                    +1 313 764-3599
University of Michigan

From xax500.testers-errors@umich.edu Sat Jan 14 20:52:57 1995
Return-Path: <xax500.testers-errors@umich.edu>
Received: by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id UAA15527; Sat, 14 Jan 1995 20:52:57 -0500
Received: by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id UAA15525; Sat, 14 Jan 1995 20:52:54 -0500
Received: by terminator.rs.itd.umich.edu (8.6.9/2.3)
	id UAA15519; Sat, 14 Jan 1995 20:52:51 -0500
Date: Sat, 14 Jan 1995 20:52:51 -0500 (EST)
From: Gordon Good <ggood@terminator.rs.itd.umich.edu>
To: Lee Liming <amber@umich.edu>
cc: mcs@umich.edu, xax500-testers@umich.edu
Subject: Re: xax500 testing
In-Reply-To: <Pine.SUN.3.91.950114114943.2140A-100000@calypso.sils.umich.edu>
Message-ID: <Pine.SUN.3.90a.950114205043.15484A@terminator.rs.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII



On Sat, 14 Jan 1995, Lee Liming wrote:

> I just found the xax500 0.54 stuff, and have built and tested it some at
> SILS.  I did find one problem with the build -- in display.c on line 1074,
> there ought to be two parameters to ldap_explode_dn().  I added "0"  as
> the second parameter (called "notypes" in the prototype), and it seems to
> work.  But I'll bet that wasn't the right thing to do... ;-) I'm compiling
> against the ldap-3.1 libraries under SunOS 4.1.3U1. 


Cool.  That was the right thing to do, but I should have 1.0b1 out on
Monday.  Much enhanced (can modify entries, does kerberos auth...).  I'll
try to remember to cc: you on the announcement, but if I forget, look
there, and at http://www.umich.edu/~rsug/x500/xax500/. 


From xax500.bugs-errors@umich.edu Tue Jan 17 11:31:19 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id LAA06191; Tue, 17 Jan 1995 11:31:19 -0500
Received: by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id LAA06187; Tue, 17 Jan 1995 11:31:17 -0500
Received: from terminator.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with SMTP id LAA06177; Tue, 17 Jan 1995 11:31:12 -0500
Message-Id: <199501171631.LAA06177@terminator.rs.itd.umich.edu>
From: tim@umich.edu
To: xax500-bugs@umich.edu
cc: Shanti Suresh <shanti@dove.ns.itd.umich.edu>
Subject: for you
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Date: Tue, 17 Jan 1995 11:31:12 -0500
Sender: tim@terminator.rs.itd.umich.edu

Shanti, I've forwarded your message to xax500-bugs@umich.edu.    -- Tim

------- Forwarded Message

Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id LAA05514; Tue, 17 Jan 1995 11:13:20 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id LAA07855; Tue, 17 Jan 1995 11:13:19 -0500
Received: from dove.ns.itd.umich.edu by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with SMTP id LAA07799; Tue, 17 Jan 1995 11:12:57 -0500
Received: by dove.ns.itd.umich.edu (5.65/1123-1.0(us))
	id AA00577; Tue, 17 Jan 95 11:10:56 -0500
Date: Tue, 17 Jan 95 11:10:56 -0500
From: Shanti Suresh <shanti@dove.ns.itd.umich.edu>
Message-Id: <9501171610.AA00577@dove.ns.itd.umich.edu>
To: tim@umich.edu
Subject: xax500 compilation errors


Hi Tim,

I am enclosing the error messages I received while trying to
make "xax500". I am running SunOS 4.1.3 on a SPARC-20 machine.
I hace X11R4 and motif-1.1.4. I modified the Makefile to change
the line "CC=gcc" to "CC=cc". 

- ---------Included error messages--------------------------
cc -g -D_NO_PROTO -DLDAP_GETFILTER_FREE_BROKEN -I/usr/include/X11 -I../ldap/h  -
target sun4 -c  auth.c
cc -g -D_NO_PROTO -DLDAP_GETFILTER_FREE_BROKEN -I/usr/include/X11 -I../ldap/h  -
target sun4 -c  bitmaps.c
cc -g -D_NO_PROTO -DLDAP_GETFILTER_FREE_BROKEN -I/usr/include/X11 -I../ldap/h  -
target sun4 -c  browse.c
"browse.c", line 88: warning: illegal combination of pointer and integer, op =
"browse.c", line 139: warning: illegal combination of pointer and integer, op =
"browse.c", line 185: warning: illegal combination of pointer and integer, op =
"browse.c", line 472: warning: illegal combination of pointer and integer, op =
"browse.c", line 571: warning: illegal combination of pointer and integer, op =
"browse.c", line 608: warning: illegal combination of pointer and integer, op =
cc -g -D_NO_PROTO -DLDAP_GETFILTER_FREE_BROKEN -I/usr/include/X11 -I../ldap/h  -
target sun4 -c  dialog.c
"dialog.c", line 132: warning: illegal combination of pointer and integer, op =
cc -g -D_NO_PROTO -DLDAP_GETFILTER_FREE_BROKEN -I/usr/include/X11 -I../ldap/h  -
target sun4 -c  display.c
"display.c", line 127: warning: illegal combination of pointer and integer, op =
"display.c", line 187: warning: illegal combination of pointer and integer, op =
"display.c", line 254: warning: illegal combination of pointer and integer, op =
"display.c", line 380: warning: illegal combination of pointer and integer, op =
"display.c", line 519: warning: illegal combination of pointer and integer, op =
"display.c", line 549: warning: illegal combination of pointer and integer, op ="display.c", line 590: warning: illegal combination of pointer and integer, op =
"display.c", line 602: warning: illegal combination of pointer and integer, op =
"display.c", line 631: warning: illegal combination of pointer and integer, op =
cc -g -D_NO_PROTO -DLDAP_GETFILTER_FREE_BROKEN -I/usr/include/X11 -I../ldap/h  -
target sun4 -c  fallbacks.c
cc -g -D_NO_PROTO -DLDAP_GETFILTER_FREE_BROKEN -I/usr/include/X11 -I../ldap/h  -
target sun4 -c  find.c
"find.c", line 89: warning: illegal combination of pointer and integer, op =
"find.c", line 262: XmNinitialFocus undefined
"find.c", line 745: warning: illegal combination of pointer and integer, op =
*** Error code 1
make: Fatal error: Command failed for target `find.o'
- --------------End Included Error Messages------------------------------

I am not able to find the symbol "XmNinitialFocus" in libXm.a. In fact,
I wasn't able to find it in any of the X libraries. I wonder why
strdup gives problems in browse.c, display.c etc. but works okay
in main.c

Thanx.

							-Shanti

------- End of Forwarded Message


From xax500.bugs-errors@umich.edu Wed Feb 22 10:07:13 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id KAA04109; Wed, 22 Feb 1995 10:07:13 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA21863; Wed, 22 Feb 1995 10:07:12 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA21855; Wed, 22 Feb 1995 10:07:10 -0500
Received: from rip.hrb.com by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id KAA21850; Wed, 22 Feb 1995 10:07:07 -0500
Received: from icf4.hrb.com by RIP.HRB.COM (PMDF V4.3-6 #6604)
 id <01HNCGVHDFB4003A76@RIP.HRB.COM>; Wed, 22 Feb 1995 10:00:17 EST
Received: from icf.hrb.com by icf.hrb.com (PMDF V4.3-10 #6604)
 id <01HNBQNY15JKI8RBCH@icf.hrb.com>; Wed, 22 Feb 1995 09:58:58 -0500 (EST)
Date: Wed, 22 Feb 1995 09:58:35 -0500 (EST)
From: "Craig R. Watkins" <CRW@icf.hrb.com>
Subject: HyperSetTags definition conflict
To: xax500.bugs@umich.edu
Cc: crw@icf.hrb.com
Message-id: <01HNCGTYJ842I8RBCH@icf.hrb.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=US-ASCII
Content-transfer-encoding: 7BIT

HyperSetTags conflicts in hyper.c and hyper.h.

Craig

From xax500.bugs-errors@umich.edu Wed Feb 22 10:08:25 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id KAA04129; Wed, 22 Feb 1995 10:08:25 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA22007; Wed, 22 Feb 1995 10:08:25 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA21999; Wed, 22 Feb 1995 10:08:23 -0500
Received: from rip.hrb.com by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id KAA21994; Wed, 22 Feb 1995 10:08:20 -0500
Received: from icf4.hrb.com by RIP.HRB.COM (PMDF V4.3-6 #6604)
 id <01HNCH3V1ON40038NB@RIP.HRB.COM>; Wed, 22 Feb 1995 10:06:58 EST
Received: from icf.hrb.com by icf.hrb.com (PMDF V4.3-10 #6604)
 id <01HNBQNY15JKI8RBCH@icf.hrb.com>; Wed, 22 Feb 1995 10:06:11 -0500 (EST)
Date: Wed, 22 Feb 1995 10:04:37 -0500 (EST)
From: "Craig R. Watkins" <CRW@icf.hrb.com>
Subject: Extraneous stuff after #endif's
To: xax500.bugs@umich.edu
Cc: crw@icf.hrb.com
Message-id: <01HNCH2X7UJUI8RBCH@icf.hrb.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=US-ASCII
Content-transfer-encoding: 7BIT

In util.c:

#endif ultrix
#endif LDAP_GETFILTER_FREE_BROKEN
#endif defined( ultrix )

In find.c:

#endif notdef

In hyper.h
#endif HYPER_H

In hyper.h:
#endif HYPERP_H

From xax500.bugs-errors@umich.edu Wed Feb 22 10:13:07 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id KAA04206; Wed, 22 Feb 1995 10:13:06 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA22576; Wed, 22 Feb 1995 10:12:56 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA22573; Wed, 22 Feb 1995 10:12:54 -0500
Received: from rip.hrb.com by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id KAA22559; Wed, 22 Feb 1995 10:12:52 -0500
Received: from icf4.hrb.com by RIP.HRB.COM (PMDF V4.3-6 #6604)
 id <01HNCHAFQ4R4003AJC@RIP.HRB.COM>; Wed, 22 Feb 1995 10:12:17 EST
Received: from icf.hrb.com by icf.hrb.com (PMDF V4.3-10 #6604)
 id <01HNBQNY15JKI8RBCH@icf.hrb.com>; Wed, 22 Feb 1995 10:11:32 -0500 (EST)
Date: Wed, 22 Feb 1995 10:11:19 -0500 (EST)
From: "Craig R. Watkins" <CRW@icf.hrb.com>
Subject: auth.c auth_hint not defined
To: xax500.bugs@umich.edu
Cc: crw@icf.hrb.com
Message-id: <01HNCH9JZ5Q6I8RBCH@icf.hrb.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=US-ASCII
Content-transfer-encoding: 7BIT

auth_hint is not defined if you aren't using KERBEROS

Craig

From xax500.bugs-errors@umich.edu Wed Feb 22 10:22:38 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id KAA04289; Wed, 22 Feb 1995 10:22:38 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA23740; Wed, 22 Feb 1995 10:22:37 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA23732; Wed, 22 Feb 1995 10:22:34 -0500
Received: from rip.hrb.com by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id KAA23722; Wed, 22 Feb 1995 10:22:31 -0500
Received: from icf4.hrb.com by RIP.HRB.COM (PMDF V4.3-6 #6604)
 id <01HNCHL12M9C0038UB@RIP.HRB.COM>; Wed, 22 Feb 1995 10:20:50 EST
Received: from icf.hrb.com by icf.hrb.com (PMDF V4.3-10 #6604)
 id <01HNBQNY15JKI8RBCH@icf.hrb.com>; Wed, 22 Feb 1995 10:20:01 -0500 (EST)
Date: Wed, 22 Feb 1995 10:18:49 -0500 (EST)
From: "Craig R. Watkins" <CRW@icf.hrb.com>
Subject: syn.c: declaration of gtime()
To: xax500.bugs@umich.edu
Cc: crw@icf.hrb.com
Message-id: <01HNCHK2XVO6I8RBCH@icf.hrb.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=US-ASCII
Content-transfer-encoding: 7BIT

In syn.c, gtime() is declared

	static long	gtime();

inside of the function time2text().

It does not make sense to declare a static function INSIDE the defintion
of another function.  That definition should be moved outside
of the function block.

Craig

From xax500.bugs-errors@umich.edu Wed Feb 22 10:36:50 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id KAA04531; Wed, 22 Feb 1995 10:36:49 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA25526; Wed, 22 Feb 1995 10:36:49 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id KAA25522; Wed, 22 Feb 1995 10:36:47 -0500
Received: from rip.hrb.com by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id KAA25517; Wed, 22 Feb 1995 10:36:44 -0500
Received: from icf4.hrb.com by RIP.HRB.COM (PMDF V4.3-6 #6604)
 id <01HNCI4I910G00371I@RIP.HRB.COM>; Wed, 22 Feb 1995 10:35:43 EST
Received: from icf.hrb.com by icf.hrb.com (PMDF V4.3-10 #6604)
 id <01HNBQNY15JKI8RBCH@icf.hrb.com>; Wed, 22 Feb 1995 10:35:06 -0500 (EST)
Date: Wed, 22 Feb 1995 10:34:50 -0500 (EST)
From: "Craig R. Watkins" <CRW@icf.hrb.com>
Subject: dialog.c: XmStringCreateLtoR() takes two args
To: xax500.bugs@umich.edu
Cc: crw@icf.hrb.com
Message-id: <01HNCI3R06N4I8RBCH@icf.hrb.com>
MIME-version: 1.0
Content-type: TEXT/PLAIN; CHARSET=US-ASCII
Content-transfer-encoding: 7BIT

   text = XmStringCreateLtoR(str);

You need a character set argument there.

Craig

From xax500.bugs-errors@umich.edu Thu Feb 23 12:00:54 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.10/2.3)
	with ESMTP id MAA04692; Thu, 23 Feb 1995 12:00:53 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id MAA03671; Thu, 23 Feb 1995 12:00:53 -0500
Received: by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with X.500 id MAA03624; Thu, 23 Feb 1995 12:00:30 -0500
Received: from joust.rs.itd.umich.edu by totalrecall.rs.itd.umich.edu (8.6.9/2.3)
	with ESMTP id MAA03619; Thu, 23 Feb 1995 12:00:29 -0500
Received: by joust.rs.itd.umich.edu (8.6.9/2.2)
	id LAA08707; Thu, 23 Feb 1995 11:55:42 -0500
Date: Thu, 23 Feb 1995 11:55:42 -0500 (EST)
From: Gordon Good <ggood@umich.edu>
X-Sender: ggood@joust.rs.itd.umich.edu
To: "Craig R. Watkins" <CRW@icf.hrb.com>
cc: xax500.bugs@umich.edu
Subject: Bug Reports
In-Reply-To: <01HNCI3R06N4I8RBCH@icf.hrb.com>
Message-ID: <Pine.SOL.3.91.950223115403.8633A-100000@joust.rs.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII


Craig - thanks for the xax500 feedback.  I've fixed all the problems you 
described in your messages:

Subject: HyperSetTags definition conflict
Subject: Extraneous stuff after #endif's
Subject: auth.c auth_hint not defined
Subject: syn.c: declaration of gtime()
Subject: dialog.c: XmStringCreateLtoR() takes two args

Those fixes will show up in the next release (not exactly sure when 
that'll be, though).

  -Gordon



From xax500.bugs-errors@umich.edu Mon Mar  6 13:09:39 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from truelies.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.10/2.3)
	with ESMTP id NAA13444; Mon, 6 Mar 1995 13:09:38 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id NAA27474; Mon, 6 Mar 1995 13:09:37 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id NAA27465; Mon, 6 Mar 1995 13:09:35 -0500
Received: from us.itd.umich.edu by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with ESMTP id NAA27443; Mon, 6 Mar 1995 13:09:31 -0500
Received: by us.itd.umich.edu (8.6.10/2.2)
	id NAA15262; Mon, 6 Mar 1995 13:09:31 -0500
Date: Mon, 6 Mar 1995 13:09:31 -0500 (EST)
From: "Brian W. Spolarich" <briansp@umich.edu>
X-Sender: briansp@stimpy.us.itd.umich.edu
To: xax500-bugs@umich.edu
Subject: request
Message-ID: <Pine.SUN.3.91.950306130752.15213A-100000@stimpy.us.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII


  Its kind of annoying that when you search for something, and select an 
entry from the search result listing, that the search result then goes 
away, necessitating another search.

  Kind of bad from a server-load point of view as well.

  Any chance of keeping this window around?

  -brian

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Brian W. Spolarich				          briansp@umich.edu
UM ITD User Services					     (313) 747-3499
World-Wide Web Services Coordinator		http://www.us.itd.umich.edu
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-


From xax500.bugs-errors@umich.edu Mon Mar  6 14:32:04 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from truelies.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.10/2.3)
	with ESMTP id OAA15509; Mon, 6 Mar 1995 14:32:03 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id OAA14105; Mon, 6 Mar 1995 14:32:03 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id OAA14101; Mon, 6 Mar 1995 14:32:01 -0500
Received: from dagora.rs.itd.umich.edu by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with ESMTP id OAA14092; Mon, 6 Mar 1995 14:31:59 -0500
Received: from psycho.rs.itd.umich.edu by dagora.rs.itd.umich.edu (8.6.10/2.2)
	id OAA21871; Mon, 6 Mar 1995 14:31:59 -0500
Date: Mon, 6 Mar 1995 14:32:05 -0500 (EST)
From: Gordon Good <ggood@umich.edu>
X-Sender: ggood@psycho.rs.itd.umich.edu
To: "Brian W. Spolarich" <briansp@umich.edu>
cc: xax500-bugs@umich.edu
Subject: Re: request
In-Reply-To: <Pine.SUN.3.91.950306130752.15213A-100000@stimpy.us.itd.umich.edu>
Message-ID: <Pine.SUN.3.91.950306142911.3957E-100000@psycho.rs.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII



On Mon, 6 Mar 1995, Brian W. Spolarich wrote:

> 
>   Its kind of annoying that when you search for something, and select an 
> entry from the search result listing, that the search result then goes 
> away, necessitating another search.
> 
>   Kind of bad from a server-load point of view as well.

Not really, due to the caching.

>   Any chance of keeping this window around?

All the hooks are in to support an X resource which controls this 
behavior (on/off) - just haven't implemented it.  Look for it in next rev.

From xax500.bugs-errors@umich.edu Mon Mar  6 22:55:46 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from judgmentday.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.10/2.3)
	with ESMTP id WAA26814; Mon, 6 Mar 1995 22:55:45 -0500
Received: by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id WAA04039; Mon, 6 Mar 1995 22:55:27 -0500
Received: by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id WAA04027; Mon, 6 Mar 1995 22:55:24 -0500
Received: from abac.au.ac.th by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with SMTP id WAA03988; Mon, 6 Mar 1995 22:55:12 -0500
Received: from au2.au.ac.th by abac.au.ac.th (5.x/SMI-SVR4)
	id AA17026; Tue, 7 Mar 1995 10:55:29 +0700
Received: by au2.au.ac.th (5.x/SMI-SVR4)
	id AA01766; Tue, 7 Mar 1995 10:55:25 +0700
Date: Tue, 7 Mar 1995 10:55:25 +0700 (GMT)
From: Somkiat Korsakulthum <u3620843@au.ac.th>
To: xax500.bugs@umich.edu
Subject: hello
Message-Id: <Pine.SOL.3.91.950307105219.1540A-100000@au2.au.ac.th>
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

hello
I come from THAILAND ,My name is somkiat.I want to get help from you,
my problem is that I have file which specific by  .tar but I don't know 
how to use it or it is used for what , I hope you can help me actually
bye  thank you

From xax500.bugs-errors@umich.edu Mon Mar 13 01:58:49 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from runningman.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.10/2.3)
	with ESMTP id BAA00736; Mon, 13 Mar 1995 01:58:48 -0500
Received: from judgmentday.rs.itd.umich.edu by runningman.rs.itd.umich.edu (8.6.9/2.25)
	with ESMTP id AAA17980; Mon, 13 Mar 1995 00:22:51 -0500
Received: by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id AAA05987; Mon, 13 Mar 1995 00:21:08 -0500
Received: by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id AAA05985; Mon, 13 Mar 1995 00:21:06 -0500
Received: from cs.hmc.edu by judgmentday.rs.itd.umich.edu (8.6.9/2.2)
	with SMTP id AAA05971; Mon, 13 Mar 1995 00:21:03 -0500
Received: by cs.hmc.edu (5.0/SMI-SVR4)
	id AA29235; Sun, 12 Mar 1995 21:21:08 -0800
Date: Sun, 12 Mar 1995 21:21:08 -0800
From: jallen@cs.hmc.edu (Jeff R. Allen)
Message-Id: <9503130521.AA29235@cs.hmc.edu>
To: xax500.bugs@umich.edu
Subject: Solaris port
Reply-To: Jeff Allen <jeff@hmc.edu>
content-length: 2350

I just compiled xax on a Solaris 5.3 machine. The stuff I had to
mess with is shown below, for your amusement:

1. I compiled without Kerberos. In line 62 of auth.c, the declaration
   of auth_hint gets #ifdef'd out, but it is needed later on, even
   without Kerberos support. I moved the decl for auth_hint outside of
   the #ifdef.

2. Solaris requires the -lnsl and -lsocket libraries to be linked
   in. It would be nice to have a more structured way to add these
   extra libraries to the makefile. I used the variable "EXTRALIBS"
   and tacked a reference to it onto the end of the final link line.

3. Solaris (like most true SysV OS's) doesn't have bcopy, wait3, or
   index. There is a Soalris porting FAQ that explains how to work
   around these. For bcopy, it is a simple #define that replaces them
   with memcopy(). For wait3, there is another incantation. The
   alternative to all of this is to use the UCB compatibility
   library. But in general the _right_ way to do things is to fix the
   code itself. Since I was in a hurry I linked with -lucb instead of
   doing the port, but it wouldn't be hard. A copy of the Solaris
   Porting FAQ is included below.

xax500 seems to work nicely. I don't quite understand the whole ldap
thing, though... by monitoring the network connections I was making,
it seems as though all communication takes place through the initial
ldap "server" (I used the default one at umich.edu). To me this sounds
more like a gateway... and that the gateway at umich.edu is
translating my requests into DAP and spewing those out to the real
DSA's all around the world that I connected to. Is this right?

My biggest problem is that I really have no use for xax500... :( There
is so little useful X.500 data out there, and searching the X.500 DIT
is so painfully slow, that anything I do is really just "playing".
Anyway, what are your thoughts on Whois++? That's the system that I am
currently working on, by making a Client Library for a school research
project. 

-- 
Jeff R. Allen  |     Senior CS major    |    Support your local
(fnord)        |    South 351d, x4940   |        unicyclist!


-------------------------  begin porting-faq   -------------------------

Actually, I couldn't find a good text version, so look at section 6 of
this WWW page:

	ftp://ftp.fwi.uva.nl/pub/solaris/solaris2.html


From xax500.bugs-errors@umich.edu Wed Mar 15 11:14:01 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from truelies.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.10/2.3)
	with ESMTP id LAA11321; Wed, 15 Mar 1995 11:14:01 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id LAA11170; Wed, 15 Mar 1995 11:14:00 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id LAA11160; Wed, 15 Mar 1995 11:13:58 -0500
Received: from lucano.uco.es by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with SMTP id LAA11128; Wed, 15 Mar 1995 11:13:45 -0500
Received: by lucano.uco.es (4.1/SMI-4.1)
	id AA27346; Tue, 14 Mar 95 20:41:46 +0100
From: cc0luism@lucano.uco.es (Luis Melendez Aganzo)
Message-Id: <9503141941.AA27346@lucano.uco.es>
Subject: XAX500 bug
To: xax500.bugs@umich.edu
Date: Tue, 14 Mar 1995 20:41:45 +0100 (MET)
X-Mailer: ELM [version 2.4 PL23]
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Length: 739       

Helo, I have just compiled xax500-V1.0b1 in SOlaris 2.4 and, when I execute
it and after the initial window with the message "Initializing" it goes
down and I get the following error:

Error: XtCreatePopupShell requires non-NULL parent

Am I doing anything wrong ?

-- 
+-----------------------------------^---------------------------------------+
| Luis Melendez                     ^  email: cc0luism@lucano.uco.es        |
| Centro de Calculo Cientifico      ^  Tlf: 957-218119                      |
| Universidad de Cordoba (SPAIN)    ^  MIME Spoken Here                     |
| gopher://gopher.uco.es            ^  http://www.uco.es                    |
+-----------------------------------^---------------------------------------+


From xax500.bugs-errors@umich.edu Wed Mar 15 11:57:14 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from truelies.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.10/2.3)
	with ESMTP id LAA12133; Wed, 15 Mar 1995 11:57:14 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id LAA21570; Wed, 15 Mar 1995 11:57:13 -0500
Received: by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with X.500 id LAA21551; Wed, 15 Mar 1995 11:57:08 -0500
Received: from dagora.rs.itd.umich.edu by truelies.rs.itd.umich.edu (8.6.9/2.2)
	with ESMTP id LAA21539; Wed, 15 Mar 1995 11:57:04 -0500
Received: from psycho.rs.itd.umich.edu by dagora.rs.itd.umich.edu (8.6.10/2.2)
	id LAA28845; Wed, 15 Mar 1995 11:53:01 -0500
Date: Wed, 15 Mar 1995 11:53:12 -0500 (EST)
From: Gordon Good <ggood@umich.edu>
X-Sender: ggood@psycho.rs.itd.umich.edu
To: Luis Melendez Aganzo <cc0luism@lucano.uco.es>
cc: xax500.bugs@umich.edu
Subject: Re: XAX500 bug
In-Reply-To: <9503141941.AA27346@lucano.uco.es>
Message-ID: <Pine.SUN.3.91.950315114527.26139G-100000@psycho.rs.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII



On Tue, 14 Mar 1995, Luis Melendez Aganzo wrote:

> Helo, I have just compiled xax500-V1.0b1 in SOlaris 2.4 and, when I execute
> it and after the initial window with the message "Initializing" it goes
> down and I get the following error:
> 
> Error: XtCreatePopupShell requires non-NULL parent
> 
> Am I doing anything wrong ?

I doubt it, Luis.  It's probably a bug in my code.

One of two things is happening:

1) There are configuration errors and this "XtCreatePopupShell requires 
non-NULL parent" error message is occuring when xax500 tries to pop up an 
error dialog.

2) Something is going wrong with the main window display.

Since (1) is much less-tested, I suspect it more strongly.  Can you 
recompile with debugging (-g) and set a breakpoint in main.c where the 
following code is called:

        eDlg = createDlg(toplevel, XmDIALOG_ERROR, "errorDlg",
                "",
                is_fatal ? NULL : "Continue", NULL,
                "Quit", quit_application,
                NULL, NULL,
                XmDIALOG_FULL_APPLICATION_MODAL);

That's line 260 in my source file, but yours might be different.  If 
xax500 hits that breakpoint, then there are some configuration errors.  
Step through with the debugger and make sure that the variable eDlg is 
non-NULL, and that XtParent(eDlg) is non-NULL.

If you don't understand how to do all this, tell me which versions of X 
and Motif you have, and I'll try to look at it.  For some reason, we 
didn't pay our Maintenance bill with Sun, so they never shipped us 
Solaris 2.4, so I don't have it to play with.

Thanks for the feedback!

  -Gordon

From xax500.bugs-errors@umich.edu Fri Apr 14 11:37:05 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from judgmentday.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.12/2.3)
	with ESMTP id LAA05282; Fri, 14 Apr 1995 11:37:04 -0400
Received: by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id LAA28254; Fri, 14 Apr 1995 11:37:04 -0400
Received: by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id LAA28250; Fri, 14 Apr 1995 11:37:02 -0400
Received: from citi.umich.edu by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with SMTP id LAA28240; Fri, 14 Apr 1995 11:37:00 -0400
Message-Id: <199504141537.LAA28240@judgmentday.rs.itd.umich.edu>
Received: from citi.umich.edu by citi.umich.edu for xax500.bugs@umich.edu with SMTP; Fri, 14 Apr 95 11:36:45 -0400
From: "charles j. antonelli" <cja@umich.edu>
To: xax500.bugs@umich.edu
Date: Fri, 14 Apr 1995 11:36:44 -0400
Subject: can't join a joinable group
Sender: cja@citi.umich.edu

i've tried using xax500 to add myself to the "the week ahead" group.  this
is a joinable group.  however, when i try to add myself as either an x.500
member or an email member, xax500 demands the group owner's credentials.
the group is moderated by the owner; is that the problem?

charles

From xax500.bugs-errors@umich.edu Fri Apr 14 13:19:09 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from judgmentday.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.12/2.3)
	with ESMTP id NAA07652; Fri, 14 Apr 1995 13:19:09 -0400
Received: by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id NAA18299; Fri, 14 Apr 1995 13:19:08 -0400
Received: by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id NAA18289; Fri, 14 Apr 1995 13:19:06 -0400
Received: from psycho.rs.itd.umich.edu by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with ESMTP id NAA18276; Fri, 14 Apr 1995 13:19:04 -0400
Received: by psycho.rs.itd.umich.edu (8.6.9/1123-1.0(us))
	id NAA10534; Fri, 14 Apr 1995 13:19:32 -0400
Date: Fri, 14 Apr 1995 13:19:29 -0400 (EDT)
From: Gordon Good <ggood@umich.edu>
X-Sender: ggood@psycho.rs.itd.umich.edu
To: "charles j. antonelli" <cja@umich.edu>
cc: xax500.bugs@umich.edu
Subject: Re: can't join a joinable group
In-Reply-To: <199504141537.LAA28240@judgmentday.rs.itd.umich.edu>
Message-ID: <Pine.SUN.3.91.950414131347.10530A-100000@psycho.rs.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII


Charles, there are two ways you can be a member of a group.  xax500 only 
supports one method (#1, below) at this time:

1) You can be in either the "X.500 Members" attribute or the "E-Mail 
Members" attribute in the group entry, or

2) You can add the group's DN to the "memberOfGroup" attribute in your 
own entry.

In order to do #1, you need to be an owner of the group, (which you aren't)
which is why this is failing.  I will implement #2 in the next version of
xax500, by placing a "Join..." button on the group's entry window. Until I
get that work done, you'll need to use ud or maX.500 to subscribe to
groups which you don't own.

Thanks for the feedback.

 -Gordon


On Fri, 14 Apr 1995, charles j. antonelli wrote:

> i've tried using xax500 to add myself to the "the week ahead" group.  this
> is a joinable group.  however, when i try to add myself as either an x.500
> member or an email member, xax500 demands the group owner's credentials.
> the group is moderated by the owner; is that the problem?
> 
> charles
> 

From xax500.bugs-errors@umich.edu Wed May 31 13:25:07 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from truelies.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.6.12/2.3)
	with ESMTP id NAA11528; Wed, 31 May 1995 13:25:07 -0400
Received: by truelies.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id NAA27180; Wed, 31 May 1995 13:25:06 -0400
Received: by truelies.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id NAA27165; Wed, 31 May 1995 13:25:03 -0400
Received: from citi.umich.edu by truelies.rs.itd.umich.edu (8.6.12/2.2)
	with SMTP id NAA27149; Wed, 31 May 1995 13:25:01 -0400
Message-Id: <199505311725.NAA27149@truelies.rs.itd.umich.edu>
Received: from citi.umich.edu by citi.umich.edu for lee@citi.umich.edu dhd@citi.umich.edu xax500.bugs@umich.edu dhd@umich.edu with SMTP; Wed, 31 May 95 13:24:01 -0400
From: Dave Detlefs <dhd@citi.umich.edu>
To: xax500.bugs@umich.edu
Cc: Lee Pearson <lee@citi.umich.edu>, dhd@citi.umich.edu, dhd@umich.edu
Date: Wed, 31 May 1995 13:23:18 -0400
Subject: "On Vacation" attribute
X-Mailer: exmh version 1.5.3 12/28/94
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"

I've discovered that I'm unable to change the "On Vacation" attribute from 
"on" to "off".  I had experimented with it a while back, not realizing the 
implications of setting this attribute.  About a month ago, I set it to "off", 
but did not bother to check the results.  More recently I've been informed 
that persons trying to send mail to dhd@umich.edu are recieving notification 
that I'm on vacation, which is definitely not the case.  The client I'm using 
is:

 xax500 V1.0b1 on AIX 3.2.5

Please set my "On Vacation" attribute to "off", or fix the client so that I 
may do it myself.

Thanks,


Dave Detlefs
Center for Information Technology Integration
University of Michigan                         Internet: dhd@umich.edu
519 West William                               Voice:    +1 313 747-4710
Ann Arbor, MI 48103-4943                       Fax:      +1 313 763-4434


From xax500.bugs-errors@umich.edu Thu Jul 27 04:55:53 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from judgmentday.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.Beta.10/2.3)
	with SMTP id EAA24739; Thu, 27 Jul 1995 04:55:53 -0400 (EDT)
Received: by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id EAA29734; Thu, 27 Jul 1995 04:55:52 -0400
Received: by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id EAA29729; Thu, 27 Jul 1995 04:55:51 -0400
Received: from khephren.bull.fr by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with SMTP id EAA29708; Thu, 27 Jul 1995 04:55:36 -0400
From: D.Monges@frec.bull.fr
Received: from ecbull.frec.bull.fr by khephren.bull.fr; Thu, 27 Jul 1995 10:26:27 +0200 (MET)
Received: from dalton.frec.bull.fr by ecbull.frec.bull.fr; Thu, 27 Jul 1995 10:03:03 +0200 (MET)
Received: by dalton.frec.bull.fr; Thu, 27 Jul 95 08:00:19 GMT (MET)
Message-Id: <9507270800.AA01922@dalton.frec.bull.fr>
Subject: Pn in getting xax500 sources
To: xax500.bugs@umich.edu
Date: Thu, 27 Jul 95 10:00:16 EET
Cc: monges@frec.bull.fr ()
X-Mailer: ELM [version 2.3 PL8]



I am interested in getting xax500 sources.

I have tried ftp to get xax500-V1.0b1-source.tar.Z.
But the server does not respond. Is there some right on the file, or
any other problem?.

Thanks for helping me.

Best Regards.

Daniel Monges
-- 
================================================================================
Daniel MONGES             Address : BULL SA
OSS/OSB/XCOM/A&S                    1 Rue de provence
                                    38130 ECHIROLLES
                                    FRANCE

phone : (33)76297983
ICN   : 2297983
FAX   : (33)76297770     2297770
email : D.Monges@frec.bull.fr
================================================================================

From xax500.bugs-errors@umich.edu Thu Jul 27 04:58:21 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from judgmentday.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.Beta.10/2.3)
	with SMTP id EAA24752; Thu, 27 Jul 1995 04:58:21 -0400 (EDT)
Received: by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id EAA29790; Thu, 27 Jul 1995 04:58:20 -0400
Received: by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id EAA29787; Thu, 27 Jul 1995 04:58:19 -0400
Received: from khephren.bull.fr by judgmentday.rs.itd.umich.edu (8.6.12/2.2)
	with SMTP id EAA29782; Thu, 27 Jul 1995 04:58:13 -0400
From: D.Monges@frec.bull.fr
Received: from ecbull.frec.bull.fr by khephren.bull.fr; Thu, 27 Jul 1995 10:07:45 +0200 (MET)
Received: from dalton.frec.bull.fr by ecbull.frec.bull.fr; Thu, 27 Jul 1995 10:03:03 +0200 (MET)
Received: by dalton.frec.bull.fr; Thu, 27 Jul 95 08:00:19 GMT (MET)
Message-Id: <9507270800.AA01922@dalton.frec.bull.fr>
Subject: Pn in getting xax500 sources
To: xax500.bugs@umich.edu
Date: Thu, 27 Jul 95 10:00:16 EET
Cc: monges@frec.bull.fr ()
X-Mailer: ELM [version 2.3 PL8]



I am interested in getting xax500 sources.

I have tried ftp to get xax500-V1.0b1-source.tar.Z.
But the server does not respond. Is there some right on the file, or
any other problem?.

Thanks for helping me.

Best Regards.

Daniel Monges
-- 
================================================================================
Daniel MONGES             Address : BULL SA
OSS/OSB/XCOM/A&S                    1 Rue de provence
                                    38130 ECHIROLLES
                                    FRANCE

phone : (33)76297983
ICN   : 2297983
FAX   : (33)76297770     2297770
email : D.Monges@frec.bull.fr
================================================================================

From xax500.bugs-errors@umich.edu Sat Nov 11 17:49:05 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from judgmentday.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.1/2.3)
	with ESMTP id RAA22223; Sat, 11 Nov 1995 17:49:05 -0500 (EST)
Received: by judgmentday.rs.itd.umich.edu (8.7.1/2.2)
	with X.500 id RAA03291; Sat, 11 Nov 1995 17:49:04 -0500 (EST)
Received: by judgmentday.rs.itd.umich.edu (8.7.1/2.2)
	with X.500 id RAA03287; Sat, 11 Nov 1995 17:49:03 -0500 (EST)
Received: from emout04.mail.aol.com by judgmentday.rs.itd.umich.edu (8.7.1/2.2)
	with SMTP id RAA03282; Sat, 11 Nov 1995 17:49:01 -0500 (EST)
From: DavFerg@aol.com
Received: by emout04.mail.aol.com (8.6.12/8.6.12) id RAA11720 for xax500.bugs@umich.edu; Sat, 11 Nov 1995 17:48:56 -0500
Date: Sat, 11 Nov 1995 17:48:56 -0500
Message-ID: <951111174855_19616648@emout04.mail.aol.com>
To: xax500.bugs@umich.edu
Subject: Solaris 2.4

Hi,

  I am trying to port xax500 to Solaris 2.4 and having all kinds of problems.
 I was wondering if anyone else has done this and if you had any insight that
may help me.  Any help would be greatly appreciated.

One problem is that I seem to be missing some of the .h files.  Another
problem is that the ones I have are in various paths that don't correspond to
the make files.   Even if you don't have an answer please reply anyhow. Thank
you very much.

David A. Ferguson
System Engineer
Lockheed Martin, M&DS
Reston, VA

From xax500.bugs-errors@umich.edu Mon Nov 13 08:51:47 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from psycho.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.1/2.3)
	with ESMTP id IAA02202; Mon, 13 Nov 1995 08:51:46 -0500 (EST)
Received: by psycho.rs.itd.umich.edu (8.7.Beta.10/2.3)
	with X.500 id IAA06523; Mon, 13 Nov 1995 08:51:46 -0500 (EST)
Received: by psycho.rs.itd.umich.edu (8.7.Beta.10/2.3)
	with X.500 id IAA06521; Mon, 13 Nov 1995 08:51:43 -0500 (EST)
Received: by psycho.rs.itd.umich.edu (8.7.Beta.10/2.3)
	id IAA06517; Mon, 13 Nov 1995 08:51:40 -0500 (EST)
Date: Mon, 13 Nov 1995 08:51:39 -0500 (EST)
From: Gordon Good <ggood@umich.edu>
X-Sender: ggood@psycho.rs.itd.umich.edu
To: DavFerg@aol.com
cc: xax500.bugs@umich.edu
Subject: Re: Solaris 2.4
In-Reply-To: <951111174855_19616648@emout04.mail.aol.com>
Message-ID: <Pine.SUN.3.91.951113084932.6501B-100000@psycho.rs.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

On Sat, 11 Nov 1995 DavFerg@aol.com wrote:

>   I am trying to port xax500 to Solaris 2.4 and having all kinds of problems.
>  I was wondering if anyone else has done this and if you had any insight that
> may help me.  Any help would be greatly appreciated.
> 
> One problem is that I seem to be missing some of the .h files.  Another
> problem is that the ones I have are in various paths that don't correspond to
> the make files.   Even if you don't have an answer please reply anyhow. Thank
> you very much.

David, up until recently, I didn't have access to a machine running 
Solaris which also had the Motif libraries installed, so the code's never 
been ported to Solaris.  I'll make it a priority to do this sometime this 
week, and will let you know when it's available.  If you've got any diffs 
to send me, that would be good.

 -Gordon

From xax500.bugs-errors@umich.edu Fri Nov 17 09:21:42 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: by terminator.rs.itd.umich.edu (8.7.1/2.3)
	with X.500 id JAA15819; Fri, 17 Nov 1995 09:21:42 -0500 (EST)
Received: by terminator.rs.itd.umich.edu (8.7.1/2.3)
	with X.500 id JAA15817; Fri, 17 Nov 1995 09:21:40 -0500 (EST)
Received: from terminator.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.1/2.3)
	with SMTP id JAA15812; Fri, 17 Nov 1995 09:21:39 -0500 (EST)
Message-Id: <199511171421.JAA15812@terminator.rs.itd.umich.edu>
From: Mark Smith <mcs@umich.edu>
To: xax500.bugs@umich.edu
Subject: xax500 on terminator
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Date: Fri, 17 Nov 1995 09:21:37 -0500
Sender: mcs@terminator.rs.itd.umich.edu

xax500 seems to be dumping core (xax500- refused to run because it
can't read the templates file).  Here's how to produce a core file:


    1. start xax500
    2. select "Find Groups" and search for "fom"
    3. result is:  Segmentation fault   xax500 (core dumped)

Here's the traceback dbx gives me:

w3cmp() at 0xef654000
getAttrDataByName(ad = 0x1a1eb8, attr = 0x6e747269 ""), line 1738 in "util.c"
display_entry(en = 0x1a1850, dt = 0x18eba0), line 1780 in "display.c"
check_read(f = 0x1a49b8), line 254 in "read.c"
DoOtherSources() at 0xef772f70
XtAppNextEvent() at 0xef77319c
XtAppMainLoop() at 0xef76a98c
main(argc = 1, argv = 0xeffff9dc), line 115 in "main.c"

-Mark

From xax500.bugs-errors@umich.edu Mon Nov 27 11:44:55 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from totalrecall.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.1/2.3)
	with ESMTP id LAA21069; Mon, 27 Nov 1995 11:44:54 -0500 (EST)
Received: by totalrecall.rs.itd.umich.edu (8.7.1/2.3)
	with X.500 id LAA09924; Mon, 27 Nov 1995 11:44:54 -0500 (EST)
Received: by totalrecall.rs.itd.umich.edu (8.7.1/2.3)
	with X.500 id LAA09872; Mon, 27 Nov 1995 11:44:35 -0500 (EST)
Received: from pablo.physics.lsa.umich.edu by totalrecall.rs.itd.umich.edu (8.7.1/2.3)
	with ESMTP id LAA09856; Mon, 27 Nov 1995 11:44:31 -0500 (EST)
Received: from wolfi.physics.lsa.umich.edu (wolfi.physics.lsa.umich.edu [141.211.96.58]) by pablo.physics.lsa.umich.edu (8.7.1/9511101952) with SMTP id LAA01000 for <xax500.bugs@umich.edu> at Mon, 27 Nov 1995 11:44:30 -0500 (EST)
Date: Mon, 27 Nov 1995 11:44:30 -0500 (EST)
From: Raul Cuza <rcuza@umich.edu>
X-Sender: rcuza@wolfi.physics.lsa.umich.edu
To: xax500.bugs@umich.edu
Subject: trouble running xax500
Message-ID: <Pine.SUN.3.91.951127114046.15159B-100000@wolfi.physics.lsa.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

I'm having trouble running xax500 on my Sparc ELC (SunOS 4.1.2).  I've 
installed the ldap 3.1 libraries following the instructions.  When I try 
to run the xax500 I get the following errors.
----- output from trying to run xax500 --------
wolfi> xax500
ld.so: warning: /usr/lib/libXt.so.4.0 has older revision than expected 10
ld.so: warning: /usr/lib/libX11.so.4.2 has older revision than expected 10
ld.so: warning: /usr/lib/libc.so.1.7.1 has older revision than expected 9
Warning: Widget class VendorShell version mismatch:
  widget 11005 vs. intrinsics 11003.
Warning: Widget class XmDisplay version mismatch:
  widget 11005 vs. intrinsics 11003.
Warning: Widget class XmDropSiteManager version mismatch:
  widget 11005 vs. intrinsics 11003.
Warning: Widget class XmScreen version mismatch:
  widget 11005 vs. intrinsics 11003.
ld.so: call to undefined procedure _XtCvtStringToFontStruct from 0x134e50
--------- end of output ----------

Can you offer any advice other than upgrading the OS (the owner of the 
machine hates upgrading the OS).  Thanks.

_________________________________________RAUL CUZA_____
rcuza@umich.edu                             _ -_- __o
Randall Labs 1063                          -_ - _^> \;
wk: (313) 763-4646                        -_ -_(*)@(*)
referenced URLs:

From xax500.bugs-errors@umich.edu Mon Nov 27 13:08:53 1995
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from twins.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.1/2.3)
	with SMTP id NAA25507; Mon, 27 Nov 1995 13:08:52 -0500 (EST)
Received: by twins.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id NAA06532; Mon, 27 Nov 1995 13:08:51 -0500
Received: by twins.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id NAA06522; Mon, 27 Nov 1995 13:08:49 -0500
Received: from psycho.rs.itd.umich.edu by twins.rs.itd.umich.edu (8.6.12/2.2)
	with ESMTP id NAA06515; Mon, 27 Nov 1995 13:08:48 -0500
Received: by psycho.rs.itd.umich.edu (8.7.Beta.10/2.3)
	id NAA11208; Mon, 27 Nov 1995 13:08:47 -0500 (EST)
Date: Mon, 27 Nov 1995 13:08:47 -0500 (EST)
From: Gordon Good <ggood@umich.edu>
X-Sender: ggood@psycho.rs.itd.umich.edu
To: Raul Cuza <rcuza@umich.edu>
cc: xax500.bugs@umich.edu
Subject: Re: trouble running xax500
In-Reply-To: <Pine.SUN.3.91.951127114046.15159B-100000@wolfi.physics.lsa.umich.edu>
Message-ID: <Pine.SUN.3.91.951127130654.11002T-100000@psycho.rs.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

On Mon, 27 Nov 1995, Raul Cuza wrote:

> I'm having trouble running xax500 on my Sparc ELC (SunOS 4.1.2).  I've 
> installed the ldap 3.1 libraries following the instructions.  When I try 
> to run the xax500 I get the following errors.
> ----- output from trying to run xax500 --------
> wolfi> xax500
> ld.so: warning: /usr/lib/libXt.so.4.0 has older revision than expected 10
> ld.so: warning: /usr/lib/libX11.so.4.2 has older revision than expected 10
> ld.so: warning: /usr/lib/libc.so.1.7.1 has older revision than expected 9
> Warning: Widget class VendorShell version mismatch:
>   widget 11005 vs. intrinsics 11003.
> Warning: Widget class XmDisplay version mismatch:
>   widget 11005 vs. intrinsics 11003.
> Warning: Widget class XmDropSiteManager version mismatch:
>   widget 11005 vs. intrinsics 11003.
> Warning: Widget class XmScreen version mismatch:
>   widget 11005 vs. intrinsics 11003.
> ld.so: call to undefined procedure _XtCvtStringToFontStruct from 0x134e50
> --------- end of output ----------
> 
> Can you offer any advice other than upgrading the OS (the owner of the 
> machine hates upgrading the OS).  Thanks.

You might try installing X11R5 or X11R6.  It looks like the real 
show-stopper is that your dynamic X libraries are so old.  The 
XtCvtStringToFontStruct() is just plain missing.

Or, you could compile xax500 from source, but you'll need the Motif 
libraries and include files for that.

 -Gordon

From xax500.bugs-errors@umich.edu Fri Feb 16 17:49:26 1996
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from redheat.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.3/2.3)
	with SMTP id RAA05855; Fri, 16 Feb 1996 17:49:26 -0500 (EST)
Received: by redheat.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id RAA09015; Fri, 16 Feb 1996 17:49:25 -0500
Received: by redheat.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id RAA09010; Fri, 16 Feb 1996 17:49:24 -0500
Received: from exinis1-1.morgan.com by redheat.rs.itd.umich.edu (8.6.12/2.2)
	with ESMTP id RAA08991; Fri, 16 Feb 1996 17:49:21 -0500
Received: (from mail@localhost) by exinis1-1.morgan.com (8.6.12/sendmail.cf.firewall v1.01) id RAA24345 for <xax500.bugs@umich.edu>; Fri, 16 Feb 1996 17:49:20 -0500
Received: from samail1.morgan.com(144.14.9.149) by exinis1-1.morgan.com via smap (V1.3)
	id sma024342; Fri Feb 16 17:49:03 1996
Received: from sait116.morgan.com (sait116.morgan.com [144.14.230.72]) by samail1.morgan.com (8.6.12/sendmail.cf.hub v1.01) with ESMTP id RAA23002 for <xax500.bugs@umich.edu>; Fri, 16 Feb 1996 17:49:02 -0500
From: foad@morgan.com (Nick Foad)
Received: (foad@localhost) by sait116.morgan.com (8.6.12/sendmail.cf.client v1.02) id RAA17547 for xax500.bugs@umich.edu; Fri, 16 Feb 1996 17:49:02 -0500
Date: Fri, 16 Feb 1996 17:49:02 -0500
Message-Id: <199602162249.RAA17547@sait116.morgan.com>
To: xax500.bugs@umich.edu
Subject: display.c compilation problems

Hi

i grabed the xax500 distribution today, and am having the following
compilation problems :

display.c & .h are dated Nov 16 17:4x in the copy i have ....

what am i doing wrong ?


cc -I../../include  -I/ms/dist/std/PROJ/X11R5/incr/common/include -Dsunos4 -DLDAP_DEBUG          -DLDAP_REFERRALS       -DLDAP_LDBM -DLDAP_SHELL -DLDAP_PASSWD -DLDBM_USE_NDBM   -Qpath ../../build/unproto  -target sun4 -c  display.c
"./display.h", line 105: syntax error at or near symbol }
"./display.h", line 105: zero sized structure
"display.c", line 579: syntax error at or near symbol }
"display.c", line 600: dad undefined
"display.c", line 607: parent undefined
"display.c", line 612: lurl undefined
"display.c", line 667: void function checkAddDN cannot return value
"display.c", line 677: syntax error at or near type word "Widget"
"display.c", line 687: dad undefined
"display.c", line 687: warning: statement not reached
"display.c", line 693: parent undefined
"display.c", line 698: dn undefined
"display.c", line 752: void function checkAddDN cannot return value
"display.c", line 774: syntax error at or near type word "void"
"display.c", line 784: w undefined
"display.c", line 784: warning: statement not reached
"display.c", line 791: val undefined
"display.c", line 828: syntax error at or near type word "void"
"display.c", line 840: w undefined
"display.c", line 842: cbs undefined
"display.c", line 844: dad undefined
"display.c", line 861: dad undefined
"display.c", line 888: dad undefined
"display.c", line 899: syntax error at or near type word "void"
"display.c", line 906: dad undefined
"display.c", line 908: cbs undefined
"display.c", line 915: w undefined
"display.c", line 921: syntax error at or near type word "void"
"display.c", line 934: cbs undefined
"display.c", line 940: w undefined
"display.c", line 947: client_data undefined
"display.c", line 947: doDropSiteHighlight undefined
"display.c", line 954: syntax error at or near word "static"
"display.c", line 954: fatal error: too many errors
*** Error code 1
make: Fatal error: Command failed for target `display.o'
Current working directory /tmp_amd/sait1/export/home4/foad/src/umich/ldap-3.2/clients/xax500


----- End Included Message -----


From xax500.bugs-errors@umich.edu Mon Feb 19 09:12:19 1996
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from redheat.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.3/2.3)
	with SMTP id JAA14894; Mon, 19 Feb 1996 09:12:19 -0500 (EST)
Received: by redheat.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id JAA26519; Mon, 19 Feb 1996 09:12:18 -0500
Received: by redheat.rs.itd.umich.edu (8.6.12/2.2)
	with X.500 id JAA26504; Mon, 19 Feb 1996 09:12:16 -0500
Received: from psycho.rs.itd.umich.edu by redheat.rs.itd.umich.edu (8.6.12/2.2)
	with ESMTP id JAA26484; Mon, 19 Feb 1996 09:12:14 -0500
Received: by psycho.rs.itd.umich.edu (8.7.3/2.3)
	id JAA22598; Mon, 19 Feb 1996 09:11:06 -0500 (EST)
Date: Mon, 19 Feb 1996 09:11:06 -0500 (EST)
From: Gordon Good <ggood@umich.edu>
X-Sender: ggood@psycho.rs.itd.umich.edu
To: Nick Foad <foad@morgan.com>
cc: xax500.bugs@umich.edu
Subject: Re: display.c compilation problems
In-Reply-To: <199602162249.RAA17547@sait116.morgan.com>
Message-ID: <Pine.SOL.3.91.960219085244.22499K-100000@psycho.rs.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII


Nick, what type of system and what compiler are you using?  It looks like 
your compiler gets upset about empty structure definitions.  The 
"linkactData" is just a placeholder for now, since I'm not finished 
adding support for "Link Actions" yet.

I suppose it's an error to have a zero-member struct, so here are a 
couple of context diffs to just remove that offending definition.
Thanks for reporting this!

 -Gordon

(diff for util.c)

*** 1.8	1995/12/19 19:22:21
--- 1.10	1996/02/19 14:10:23
***************
*** 564,572 ****
  	}
      case ACTION_TYPE_LINKACT:
  	{
- 	    linkactData *args;
- 	    args = actd->ac_args;
- 	    fprintf(stderr, "XXX - must free linkact args!!!\n");
  	    break;
  	}
      }
--- 564,569 ----


(diff fir display.h)

*** 1.7	1995/11/16 22:15:40
--- 1.8	1996/02/19 14:02:03
***************
*** 11,16 ****
--- 11,20 ----
   */
  /*
   $Log: display.h,v $
+  * Revision 1.8  1996/02/19  14:02:03  ggood
+  * Removed def for linkactData until I get around to really supporting it.
+  * Some compilers disallow zero-sized structs.
+  *
   * Revision 1.7  1995/11/16  22:15:40  ggood
   * added prototypes, moved definition of actionData from display.h to
   * dtypes.h
***************
*** 100,108 ****
      char		*verify_attr;
      char		**verify_options;
  } verifyactData;
- 
- typedef struct linkactData {
- } linkactData;
  
  #define AP_AVAL		0
  #define AP_ADDN		1
--- 104,109 ----


On Fri, 16 Feb 1996, Nick Foad wrote:

> i grabed the xax500 distribution today, and am having the following
> compilation problems :
> 
> display.c & .h are dated Nov 16 17:4x in the copy i have ....
> 
> what am i doing wrong ?
> 
> 
> cc -I../../include  -I/ms/dist/std/PROJ/X11R5/incr/common/include -Dsunos4 -DLDAP_DEBUG          -DLDAP_REFERRALS       -DLDAP_LDBM -DLDAP_SHELL -DLDAP_PASSWD -DLDBM_USE_NDBM   -Qpath ../../build/unproto  -target sun4 -c  display.c
> "./display.h", line 105: syntax error at or near symbol }
> "./display.h", line 105: zero sized structure

From xax500.bugs-errors@umich.edu Fri Mar  8 06:54:32 1996
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from twins.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.4/2.3)
	with ESMTP id GAA28421; Fri, 8 Mar 1996 06:54:32 -0500 (EST)
Received: by twins.rs.itd.umich.edu (8.7.4/2.2)
	with X.500 id GAA08461; Fri, 8 Mar 1996 06:54:31 -0500 (EST)
Received: by twins.rs.itd.umich.edu (8.7.4/2.2)
	with X.500 id GAA08458; Fri, 8 Mar 1996 06:54:30 -0500 (EST)
Received: from spanner.eng.cam.ac.uk by twins.rs.itd.umich.edu (8.7.4/2.2)
	with SMTP id GAA08453; Fri, 8 Mar 1996 06:54:28 -0500 (EST)
Received: from anvil.eng.cam.ac.uk
          (via jmrm@anvil.eng.cam.ac.uk [129.169.8.36])
          by spanner.eng.cam.ac.uk with ESMTP id LAA28640
          for <xax500.bugs@umich.edu>; Fri, 8 Mar 1996 11:53:52 GMT
From: James Matheson <jmrm@eng.cam.ac.uk>
Message-Id: <199603081153.363@anvil.eng.cam.ac.uk>
Received: (via jmrm@localhost)
          by anvil.eng.cam.ac.uk id LAA00363
          for xax500.bugs@umich.edu; Fri, 8 Mar 1996 11:53:50 GMT
Subject: problems with xax500 on HP-UX
To: xax500.bugs@umich.edu
Date: Fri, 08 Mar 1996 11:53:50 GMT
Organization: University Engineering Department, Cambridge, England
Phone: +44 223 332756
X-Mailer: Elm [revision: 109.14]

I've been trying to get xax500 version 1.0b2 running under HP-UX 10 with
Motif 1.2.4 and ldap 3.2. I've had partial success after making some minor
mods to keep the HP compiler happy (see below) however it is only partial
success. I can get the initial windows and search for someone, the entry
gets displayed but some of the attribute values appear as trash (perhaps
random values being dereferenced as character pointers?). If I then try to
click on the arrow button for "Last modified by" it core dumps, the last
called routine being strcmp(). This further leads me to suspect that there
are uninitialised character pointers around.

It may be that part of the cause of the problem is that I've been none too
careful to check that all the attribute names used in ldaptemplates.conf
are actually defined on our quipu X.500 server. Some of those with duff
values certainly are defined names but may not have any value. Is it
possible that there are problems in this area?

I'm also not entirely sure whether the problem is entirely with xax500 or
whether there might be problems with our ldapd. It seems to OK - it's used
quite heavily by a web500gw and finger but these will only access defined
attributes. Would it be possible for you to point a working xax500 at our
ldap server and see if you get sensible results? Relevant server info:
  host name: spanner.eng.cam.ac.uk
  port: default ldap
  Base DN: ou=Engineering Department, o=Cambridge University, c=GB
  search name: matheson

--

For info, HP compiler problems:

1) it doesn't like empty structures (eg linkactData in display.h) - I've
   added
     #ifdef __hpux
        char  dummy_item;
     #endif
   to it.

2) it doesn't like
     switch (...) {
        ...
        default:
     }
   which appears in a few places, requiring
     switch (...) {
        ...
        default: ;
     }

3) I can't use PROTOTYPES because these are only used in the header
   declarations and not in the function definitions. The HP compiler
   requires the same sysntax in both contexts.

--
James M.R.Matheson

Head of Computer Systems Group,                 E-mail: jmrm@eng.cam.ac.uk
University Engineering Dept,                    Phone: +44-1223-332756
Trumpington Street,                             Fax: +44-1223-332662
Cambridge  CB2 1PZ,
England.




 From xax500.bugs-errors@umich.edu Fri Mar 22 04:56:48 1996
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from judgmentday.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.5/2.3)
	with ESMTP id EAA15535; Fri, 22 Mar 1996 04:56:48 -0500 (EST)
Received: by judgmentday.rs.itd.umich.edu (8.7.4/2.2)
	with X.500 id EAA10522; Fri, 22 Mar 1996 04:56:47 -0500 (EST)
Received: by judgmentday.rs.itd.umich.edu (8.7.4/2.2)
	with X.500 id EAA10519; Fri, 22 Mar 1996 04:56:46 -0500 (EST)
Received: from seneca.uco.es by judgmentday.rs.itd.umich.edu (8.7.4/2.2)
	with SMTP id EAA10471; Fri, 22 Mar 1996 04:55:00 -0500 (EST)
X-quien: localhost [127.0.0.1]
Received: from seneca (localhost [127.0.0.1]) by seneca.uco.es (8.6.12/8.6.12) with ESMTP id KAA17151 for <xax500.bugs@umich.edu>; Fri, 22 Mar 1996 10:54:44 +0100
Message-Id: <199603220954.KAA17151@seneca.uco.es>
X-Mailer: exmh version 1.6.2 7/18/95
To: xax500.bugs@umich.edu
Subject: XtCreatePopupShell error
X-Uri: http://www.uco.es
X-Face: :eJAsnW*?ym##RD{:q2O>D6E<,-SucR7vV-Vk$86Zp=(
 ',!JQLMjJnCIl<WI$L<16d_ud"9o<YTqm!`KWBGw<1PO)y,oan3
 N,|R9RI|?!=<>~X=^@s3x&X_}'\L1H,;Q"[9LQe2r+"B~pxXYrf
 ^UQnTdGaxXJ<?Lg!9L.!zS0fE6?lXBP5z<K?fLH%Mh\Md-T\b%)
 iB]hf21o#AI%%`0PU
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Date: Fri, 22 Mar 1996 10:54:43 +0100
From: Luis Melendez Aganzo <cc0luism@uco.es>

Hello, I have a problem with xax500. I have compiled it in Solaris 2.5
with gcc 2.7.2, X11R6 and the Motif libraries supplied by Sun.
When I execute it, after the windows "Initializing...", it terminates
with the following error:

   Error: XtCreatePopupShell requires non-NULL parent

I hace tried compiling it with different values for LD_LIBRRAY_PATH
and LD_RUN_PATH, running it from several window managers (fvwm, olwm),
but I always get the same error. 
Has this error been reported before ?
Thanks in advance.

--
+-----------------------------------^---------------------------------------+
| Luis Melendez                     ^  email: cc0luism@uco.es               |
| Centro de Calculo Cientifico      ^  Tlf: 34-(9)57-218119                 |
| Universidad de Cordoba (SPAIN)    ^  Fax: 34-(9)57-218116                 |
| gopher://gopher.uco.es            ^  http://www.uco.es                    |
+-----------------------------------^---------------------------------------+




From xax500.bugs-errors@umich.edu Tue Apr 30 18:00:21 1996
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from judgmentday.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.5/2.3)
	with ESMTP id SAA04256; Tue, 30 Apr 1996 18:00:21 -0400 (EDT)
Received: by judgmentday.rs.itd.umich.edu (8.7.5/2.2)
	with X.500 id SAA21577; Tue, 30 Apr 1996 18:00:19 -0400 (EDT)
Received: by judgmentday.rs.itd.umich.edu (8.7.5/2.2)
	with X.500 id SAA21574; Tue, 30 Apr 1996 18:00:18 -0400 (EDT)
Received: from dutton2.it.siu.edu by judgmentday.rs.itd.umich.edu (8.7.5/2.2)
	with SMTP id SAA21564; Tue, 30 Apr 1996 18:00:17 -0400 (EDT)
Received: by dutton2.it.siu.edu (5.x/SMI-SVR4)
	id AA17804; Tue, 30 Apr 1996 17:06:43 -0500
Date: Tue, 30 Apr 1996 17:06:43 -0500
From: jimd@dutton2.it.siu.edu (Jim Dutton)
Message-Id: <9604302206.AA17804@dutton2.it.siu.edu>
To: xax500.bugs@umich.edu
Subject: xax500 compile: `strcasecmp` & 'SIGALRM'
X-Sun-Charset: US-ASCII

I am trying to build the xax500 client for ldap-3.2 on a Sun with Solaris v2.4. I am not sure, righ offhand, what the version is of Motif that is installed.

This is what I get for the xax500 make (tail end, anyhow):

gcc -I../../include  -I/usr/openwin/share/include -I/usr/dt/include -Dsunos5 -D_REENTRANT -DLDAP_DEBUG        -DLDAP_REFERRALS     -DLDAP_LDBM -DLDAP_SHELL -DLDAP_PASSWD -DLDBM_USE_NDBM      -c browse.c -o browse.o
browse.c:86: conflicting types for `strcasecmp'
/opt/gnu/lib/gcc-lib/sparc-sun-solaris2.4/2.6.0/include/string.h:75: previous declaration of `strcasecmp'
make[1]: *** [browse.o] Error 1
make[1]: Leaving directory `/home/jimd/incoming/ldap-3.2/clients/xax500'
make: *** [all] Error 2


The GCC that I am using is v2.6.0, and its string.h has a
'strcasecmp' declaration of:

	extern int strcasecmp(const char *, const char *);

while ldap3-2's browse.c uses:

	extern int strcasecmp(char *, char *);

When I change browse.c to match string.h, the problem goes away, so this problem is
"fixed".



Later, I encounter another error:

gcc -I../../include  -I/usr/openwin/share/include -I/usr/dt/include -Dsunos5 -D_REENTRANT -DLDAP_DEBUG        -DLDAP_REFERRALS     -DLDAP_LDBM -DLDAP_SHELL -DLDAP_PASSWD -DLDBM_USE_NDBM      -c select.c -o select.o
gcc -I../../include  -I/usr/openwin/share/include -I/usr/dt/include -Dsunos5 -D_REENTRANT -DLDAP_DEBUG        -DLDAP_REFERRALS     -DLDAP_LDBM -DLDAP_SHELL -DLDAP_PASSWD -DLDBM_USE_NDBM      -c util.c -o util.o
util.c: In function `init_ldap':
util.c:1566: `SIGALRM' undeclared (first use this function)
util.c:1566: (Each undeclared identifier is reported only once
util.c:1566: for each function it appears in.)
make[1]: *** [util.o] Error 1
make[1]: Leaving directory `/home/jimd/incoming/ldap-3.2/clients/xax500'
make: *** [all] Error 2


Any suggestions about `SIGALRM` ?

From xax500.bugs-errors@umich.edu Thu May  2 12:10:35 1996
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from truelies.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.5/2.3)
	with ESMTP id MAA17349; Thu, 2 May 1996 12:10:34 -0400 (EDT)
Received: by truelies.rs.itd.umich.edu (8.7.5/2.2)
	with X.500 id MAA06142; Thu, 2 May 1996 12:10:34 -0400 (EDT)
Received: by truelies.rs.itd.umich.edu (8.7.5/2.2)
	with X.500 id MAA06139; Thu, 2 May 1996 12:10:32 -0400 (EDT)
Received: from psycho.rs.itd.umich.edu by truelies.rs.itd.umich.edu (8.7.5/2.2)
	with ESMTP id MAA06134; Thu, 2 May 1996 12:10:32 -0400 (EDT)
Received: by psycho.rs.itd.umich.edu (8.7.5/2.3)
	id MAA10383; Thu, 2 May 1996 12:10:08 -0400 (EDT)
Date: Thu, 2 May 1996 12:10:08 -0400 (EDT)
From: Gordon Good <ggood@umich.edu>
X-Sender: ggood@psycho.rs.itd.umich.edu
To: Jim Dutton <jimd@dutton2.it.siu.edu>
cc: xax500.bugs@umich.edu
Subject: Re: xax500 compile: `strcasecmp` & 'SIGALRM'
In-Reply-To: <9604302206.AA17804@dutton2.it.siu.edu>
Message-ID: <Pine.SOL.3.91.960502120927.8539V-100000@psycho.rs.itd.umich.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII



On Tue, 30 Apr 1996, Jim Dutton wrote:

> I am trying to build the xax500 client for ldap-3.2 on a Sun with Solaris v2.4. I am not sure, righ offhand, what the version is of Motif that is installed.
> 
> This is what I get for the xax500 make (tail end, anyhow):
> 
> gcc -I../../include  -I/usr/openwin/share/include -I/usr/dt/include -Dsunos5 -D_REENTRANT -DLDAP_DEBUG        -DLDAP_REFERRALS     -DLDAP_LDBM -DLDAP_SHELL -DLDAP_PASSWD -DLDBM_USE_NDBM      -c browse.c -o browse.o
> browse.c:86: conflicting types for `strcasecmp'
> /opt/gnu/lib/gcc-lib/sparc-sun-solaris2.4/2.6.0/include/string.h:75: previous declaration of `strcasecmp'
> make[1]: *** [browse.o] Error 1
> make[1]: Leaving directory `/home/jimd/incoming/ldap-3.2/clients/xax500'
> make: *** [all] Error 2
> 
> 
> The GCC that I am using is v2.6.0, and its string.h has a
> 'strcasecmp' declaration of:
> 
> 	extern int strcasecmp(const char *, const char *);
> 
> while ldap3-2's browse.c uses:
> 
> 	extern int strcasecmp(char *, char *);
> 
> When I change browse.c to match string.h, the problem goes away, so this problem is
> "fixed".

Or just remove the extern decl for strcasecmp().  I'm not quite sure why 
that's in there.

> Later, I encounter another error:
> 
> gcc -I../../include  -I/usr/openwin/share/include -I/usr/dt/include -Dsunos5 -D_REENTRANT -DLDAP_DEBUG        -DLDAP_REFERRALS     -DLDAP_LDBM -DLDAP_SHELL -DLDAP_PASSWD -DLDBM_USE_NDBM      -c select.c -o select.o
> gcc -I../../include  -I/usr/openwin/share/include -I/usr/dt/include -Dsunos5 -D_REENTRANT -DLDAP_DEBUG        -DLDAP_REFERRALS     -DLDAP_LDBM -DLDAP_SHELL -DLDAP_PASSWD -DLDBM_USE_NDBM      -c util.c -o util.o
> util.c: In function `init_ldap':
> util.c:1566: `SIGALRM' undeclared (first use this function)
> util.c:1566: (Each undeclared identifier is reported only once
> util.c:1566: for each function it appears in.)
> make[1]: *** [util.o] Error 1
> make[1]: Leaving directory `/home/jimd/incoming/ldap-3.2/clients/xax500'
> make: *** [all] Error 2
> 
> 
> Any suggestions about `SIGALRM` ?

Here's a patch.  Just a missing #include:

diff -c -r1.12 util.c
*** 1.12        1996/03/09 00:47:28
--- util.c      1996/05/02 15:09:48
***************
*** 19,24 ****
--- 19,25 ----
  #include <Xm/LabelG.h>
  
  #include <stdio.h>
+ #include <signal.h>
  #include <sys/wait.h>
  #include <netdb.h>
  #include <setjmp.h>


From xax500.bugs-errors@umich.edu Fri Aug 16 14:08:34 1996
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from runningman.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.7.5/2.3)
	with ESMTP id OAA06077; Fri, 16 Aug 1996 14:08:33 -0400 (EDT)
Received: from totalrecall.rs.itd.umich.edu by runningman.rs.itd.umich.edu (8.7.5/2.3)
	with ESMTP id MAA06416; Fri, 16 Aug 1996 12:49:06 -0400 (EDT)
Received: by totalrecall.rs.itd.umich.edu (8.7.5/2.3)
	with X.500 id MAA20778; Fri, 16 Aug 1996 12:49:05 -0400 (EDT)
Received: by totalrecall.rs.itd.umich.edu (8.7.5/2.3)
	with X.500 id MAA20769; Fri, 16 Aug 1996 12:49:02 -0400 (EDT)
Received: from nascar.cert.org by totalrecall.rs.itd.umich.edu (8.7.5/2.3)
	with ESMTP id MAA20764; Fri, 16 Aug 1996 12:49:00 -0400 (EDT)
Received: from nascar.cert.org by nascar.cert.org with ESMTP id <68134-199>; Fri, 16 Aug 1996 12:48:54 -0400
X-Mailer: exmh version 1.6.7 5/3/96
To: xax500.bugs@umich.edu
Subject: Bug?
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Date: 	Fri, 16 Aug 1996 12:48:51 -0400
Sender: Lawrence Rogers <lrr@cert.org>
From: "Lawrence R. Rogers" <lrr@cert.org>
Message-Id: <96Aug16.124854-0400edt.68134-199+89@nascar.cert.org>

Solaris 2.4 on SPARC (SS5)
gcc-2.7.2
cde-1.0.2
X11R5, patch level 26

I do not get the face with a question mark near the top as the Browsing the 
X.500 Directory help screen says that I should.  I cannot seen within the 
confines of the GUI move updares unless I start at the top with:

	xax500 -sb ''

Have I done something wrong?  Thanks!
-- 

					Larry Rogers
					Member, Technical Staff
					Survivable Systems
					Software Engineering Institute
					Carnegie-Mellon University
					Pittsburgh, PA 15213
					lrr@cert.org
					lrr@sei.cmu.edu
					Phone: 412-268-8907 (Direct)
					       412-268-7700 (SEI)
					FAX:   412-268-5758



From xax500.bugs-errors@umich.edu Thu Mar  6 02:45:56 1997
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from redheat.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.8.5/2.3)
	with ESMTP id CAA04642; Thu, 6 Mar 1997 02:45:55 -0500 (EST)
Received: by redheat.rs.itd.umich.edu (8.7.5/2.2)
	with X.500 id CAA13028; Thu, 6 Mar 1997 02:45:54 -0500 (EST)
Received: by redheat.rs.itd.umich.edu (8.7.5/2.2)
	with X.500 id CAA13022; Thu, 6 Mar 1997 02:45:53 -0500 (EST)
Received: from seeker.ar.com. by redheat.rs.itd.umich.edu (8.7.5/2.2)
	with ESMTP id CAA13013; Thu, 6 Mar 1997 02:45:51 -0500 (EST)
Received: (from wessorh@localhost) by seeker.ar.com. (8.8.2/8.8.2) id XAA12325 for xax500.bugs@umich.edu; Wed, 5 Mar 1997 23:45:22 -0800 (PST)
From: "Rick H. Wesson" <wessorh@ar.com>
Message-Id: <9703052345.ZM12323@seeker.ar.com.>
Date: Wed, 5 Mar 1997 23:45:21 -0800
X-Mailer: Z-Mail (3.2.1 10oct95)
To: xax500.bugs@umich.edu
Subject: Create new entery bug.
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii


I'm running Solaris 2.5, I compiled xax500 and can't seem to get
the correct window for adding new entries. A window apears
that only has a line, and 2 buttons highlighted, chooseLocation anc cancel.

I chacked that xax500 was accually finding the templates and that
they were adable, alas I can't make it display them in hte window.

Suggestions anyone. Has this feature ever worked?

This is being compiled on a sockx solaris 2.5 and 2.5.1

Thanks,

-Rick

-- 
Rick H. Wesson

From xax500.bugs-errors@umich.edu Thu Mar 13 22:44:15 1997
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from judgmentday.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.8.5/2.3)
	with ESMTP id WAA20962; Thu, 13 Mar 1997 22:44:15 -0500 (EST)
Received: by judgmentday.rs.itd.umich.edu (8.7.5/2.2)
	with X.500 id WAA25591; Thu, 13 Mar 1997 22:44:14 -0500 (EST)
Received: by judgmentday.rs.itd.umich.edu (8.7.5/2.2)
	with X.500 id WAA25572; Thu, 13 Mar 1997 22:44:12 -0500 (EST)
Received: from mail1.i1.net by judgmentday.rs.itd.umich.edu (8.7.5/2.2)
	with ESMTP id WAA25427; Thu, 13 Mar 1997 22:43:43 -0500 (EST)
Received: from uniblab (timster@pm8-40.i1.net [207.230.58.40]) by mail1.i1.net (8.8.5/8.8.5) with SMTP id VAA21256 for <xax500.bugs@umich.edu>; Thu, 13 Mar 1997 21:43:15 -0600 (CST)
Sender: timster@mail1.i1.net
Message-ID: <3328C92A.1BC0211@i1.net>
Date: Thu, 13 Mar 1997 21:42:35 -0600
From: Tim Wynn <timster@i1.net>
Organization: The Law Offices of Dewey, Cheatem, & Howe
X-Mailer: Mozilla 3.01 (X11; I; Linux 2.0.27 i486)
MIME-Version: 1.0
To: xax500.bugs@umich.edu
Subject: xax500 dumps core when I press "Dismiss"
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Hi,

I'm running the xax500 client to the Slapd 3.3 server on a Linux system
running Redhat Linux 4.01 with a 2.0.27 kernel.  I'm using gdbm as a
backend, and am running Redhat Motif.

The xax500 client starts up fine, and does lookups fine either remotely
to my local ldap database.  However, after finding someone, and hitting
the Dismiss button, xax500 displays a segmentation fault error and dumps
core.  Even doing a quit of the window using Mwm frame buttons causes a
core dump.

Is there something I did wrong in my configuration?  Is this a
commonly-reported problem?

I don't want to clog up the mail system (the core is over 1 Mb
uncompressed), so let me know if you're interested in seeing it, and
I'll gzip and mail it to you.
-- 
Tim Wynn (timster@i1.net)  St. Louis

"Striving to better,
oft we mar what's well."  Shakespeare, "King Lear", I.iv

From xax500.bugs-errors@umich.edu Sun Apr 27 02:17:43 1997
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from redheat.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.8.5/2.3)
	with ESMTP id CAA27292; Sun, 27 Apr 1997 02:17:43 -0400 (EDT)
Received: by redheat.rs.itd.umich.edu (8.8.5/2.2)
	with X.500 id CAA28187; Sun, 27 Apr 1997 02:17:42 -0400 (EDT)
Received: by redheat.rs.itd.umich.edu (8.8.5/2.2)
	with X.500 id CAA28185; Sun, 27 Apr 1997 02:17:41 -0400 (EDT)
Received: from po9.andrew.cmu.edu by redheat.rs.itd.umich.edu (8.8.5/2.2)
	with ESMTP id CAA28181; Sun, 27 Apr 1997 02:17:40 -0400 (EDT)
Received: (from postman@localhost) by po9.andrew.cmu.edu (8.8.2/8.8.2) id CAA25241 for xax500.bugs@umich.edu; Sun, 27 Apr 1997 02:17:34 -0400
Received: via switchmail; Sun, 27 Apr 1997 02:17:33 -0400 (EDT)
Message-ID: <Added.MnMixxi00UdhBWa05H@andrew.cmu.edu>
Received: from beandip.res.cmu.edu via qmail
          ID </afs/andrew.cmu.edu/service/mailqs/q003/QF.onMiwnu00ZjX00wn40>;
          Sun, 27 Apr 1997 02:16:20 -0400 (EDT)
Received: from beandip.res.cmu.edu via qmail
          ID </afs/andrew.cmu.edu/usr21/fubini/.Outgoing/QF.UnMiwk600ZjX0gS040>;
          Sun, 27 Apr 1997 02:16:16 -0400 (EDT)
Date: Sun, 27 Apr 1997 02:16:14 -0400 (EDT)
From: Ross B Fubini <fubini+@andrew.cmu.edu>
To: xax500.bugs@umich.edu
Subject: bugs bugs bugs

Folks,

In xax500 version 1.0b3.  In the file browse.c, you are
externing the function strcasecmp(char *, char *) on line
86.  You are also including strings.h so you throw and error
because the compiler (gcc) thanks you are redefining strcascmp.

If you comment out l86 it compiles fine and dandy.

much luck and I hope this is valuable,

ross

From xax500.bugs-errors@umich.edu Wed May 21 21:49:09 1997
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from redheat.rs.itd.umich.edu by terminator.rs.itd.umich.edu (8.8.5/2.3)
	with ESMTP id VAA29469; Wed, 21 May 1997 21:49:09 -0400 (EDT)
Received: by redheat.rs.itd.umich.edu (8.8.5/2.2)
	with X.500 id VAA25714; Wed, 21 May 1997 21:49:08 -0400 (EDT)
Received: by redheat.rs.itd.umich.edu (8.8.5/2.2)
	with X.500 id VAA25702; Wed, 21 May 1997 21:49:07 -0400 (EDT)
Received: from synet.edu.cn by redheat.rs.itd.umich.edu (8.8.5/2.2)
	with SMTP id VAA25572; Wed, 21 May 1997 21:48:23 -0400 (EDT)
Received: from Taurus.synet.edu.cn by synet.edu.cn (5.x/SMI-SVR4)
	id AA01130; Thu, 22 May 1997 09:49:05 +0900
Received: by Taurus.synet.edu.cn (5.x/SMI-SVR4)
	id AA04712; Thu, 22 May 1997 09:46:17 +0900
Date: Thu, 22 May 1997 09:46:16 +0900 (CDT)
From: Zhao Ming <zhaom@Taurus.synet.edu.cn>
Subject: not same as special when running browser and Entry Window.
To: xax500.bugs@umich.edu
Message-Id: <Pine.3.89.9705220920.A4574-0100000@taurus>
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

Hi,

    I am running xax500 client to the ldapd-3.3 on slolaris2.4, but seems 
my X11 is V5.
    When I compiled it shows:I havn't -lSM -lICE -lXpm
  but when i removed them from Makefile.compile successful.

  But when I running browser , it hasn't US bitmap (should CN), and ? 
bitmap on window ,they have on your example.
  when I run display entry window, It also hasn't name and three bitmaps 
on window, In addition it hasn't More Info (URL) etc information.

   Why?Is there something I did wrong in my configuration?

Regards,

       *----------------------------------------------------------*
       *   Zhao Ming <zhaom@taurus.synet.edu.cn>                  *
       *             <zhaom@neu.edu.cn>                           *
       *   Tel: 86-24-3909024 Fax: 86-24-3890817                  *
       *                                                          *
       *   Northeastern University Software Center                *
       *   CERNET Northeast Region  Network Center                *
       *                                                          *
       *   Post Address: Northeastern University 308 #,Shenyang,  *
       *                 P.R.China                                *
       *   Zip Code: 110006                                       *
       *----------------------------------------------------------*     


From xax500.bugs-errors@umich.edu Thu Jun  5 16:18:06 1997
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from schroder.engin.umich.edu by terminator.rs.itd.umich.edu (8.8.5/2.3)
	with ESMTP id QAA13495; Thu, 5 Jun 1997 16:18:06 -0400 (EDT)
Received: (from root@localhost)
	by schroder.engin.umich.edu (8.8.5/8.8.5) with X.500 id QAA17082;
	Thu, 5 Jun 1997 16:18:04 -0400 (EDT)
Received: (from root@localhost)
	by schroder.engin.umich.edu (8.8.5/8.8.5) with X.500 id QAA17075
	for xax500.bugs-members@umich.edu; Thu, 5 Jun 1997 16:17:57 -0400 (EDT)
Received: from localhost (localhost [127.0.0.1])
	by schroder.engin.umich.edu (8.8.5/8.8.5) with ESMTP id QAA17058;
	Thu, 5 Jun 1997 16:17:46 -0400 (EDT)
Message-Id: <199706052017.QAA17058@schroder.engin.umich.edu>
To: xax500.bugs@umich.edu
cc: cjl@engin.umich.edu
Subject: segmentation fault in xax500 1.0b3 on Solaris 2.5.1
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Date: Thu, 05 Jun 1997 16:17:40 -0400
From: Chad Lent <cjl@engin.umich.edu>

xax500 segfaults after clicking on 'List Owned Groups'
of a person's 'Entry' if that person does not own any groups.



Chad
_____________________
CAEN 
Unix Software Support




From xax500.bugs-errors@umich.edu Tue Oct 21 20:43:27 1997
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from redheat.rs.itd.umich.edu (redheat.rs.itd.umich.edu [141.211.83.36])
	by terminator.rs.itd.umich.edu (8.8.6/2.3) with ESMTP
	id UAA17839; Tue, 21 Oct 1997 20:43:27 -0400 (EDT)
Received: (from root@localhost)
        by redheat.rs.itd.umich.edu (8.8.5/2.2) with X.500 id UAA12747; Tue, 21 Oct 1997 20:43:25 -0400 (EDT)
Received: (from root@localhost)
        by redheat.rs.itd.umich.edu (8.8.5/2.2) with X.500 id UAA12741
        for xax500.bugs-members@umich.edu; Tue, 21 Oct 1997 20:43:24 -0400 (EDT)
Received: from mercury.Sun.COM (mercury.Sun.COM [192.9.25.1])
        by redheat.rs.itd.umich.edu (8.8.5/2.2) with SMTP id UAA12726
        for <xax500.bugs@umich.edu>; Tue, 21 Oct 1997 20:43:23 -0400 (EDT)
Received: from Eng.Sun.COM ([129.146.1.25]) by mercury.Sun.COM (SMI-8.6/mail.byaddr) with SMTP id RAA23208 for <xax500.bugs@umich.edu>; Tue, 21 Oct 1997 17:48:30 -0700
Received: from loa.eng.sun.com (loa.Eng.Sun.COM [129.146.111.224])
	by Eng.Sun.COM (SMI-8.6/SMI-5.3) with SMTP id RAA14397
	for <xax500.bugs@umich.edu>; Tue, 21 Oct 1997 17:43:09 -0700
Received: from loa by loa.eng.sun.com (SMI-8.6/SMI-SVR4)
	id RAA15348; Tue, 21 Oct 1997 17:41:06 -0700
Message-Id: <199710220041.RAA15348@loa.eng.sun.com>
To: xax500.bugs@umich.edu
Reply-To: Seth.Hettich@Eng.Sun.COM
Subject: possible bug
Date: Tue, 21 Oct 1997 17:41:06 -0700
From: Seth Hettich <Seth.Hettich@Eng.Sun.COM>

Hello,

I have been playing arround with xax500, trying to connect
to Suns' LDAP server.  It dies whenever I do a search, here
is what dbc gives me:
  984               free(dad->dad_osval);
(dbx) where                                                                  
  [1] _free_unlocked(0xbe559, 0x1, 0xef32227c, 0x3ea80, 0xef32227c, 0xef2c6798), at 0xef2c67f0
  [2] free(0xbe559, 0xef682874, 0x134988, 0x0, 0x1, 0xbe36a), at 0xef2c67a0
=>[3] syn_DisplayText(parent = 0x134988, dad = 0x1354d0), line 984 in "syn.c"
  [4] display_entry(en = 0x12ed38, dt = 0xfcc28), line 1890 in "display.c"
  [5] check_read(f = 0x12f338), line 258 in "read.c"
  [6] DoOtherSources(0xc71c8, 0xef4f0cf4, 0x1, 0x0, 0x0, 0x1), at 0xef4bba20
  [7] XtAppNextEvent(0xc71c8, 0xeffff388, 0x1, 0x0, 0x0, 0x1), at 0xef4bbd74
  [8] XtAppMainLoop(0xc71c8, 0x3c1f0, 0xf11e8, 0xc71c8, 0xef4f0cf4, 0x3192c), at 0xef4af1dc
  [9] main(argc = 1, argv = 0xeffff52c), line 119 in "main.c"


Details:
Solaris 2.6, X11-6.3, SunPro C compiler, ldap-3.3, xax500-V1.0b3

I am also going to talk to the Sun LDAP people, but this looked like
a problem with xax500, since ldapsearch seems to work fine.

-Seth

From xax500.bugs-errors@umich.edu Wed Nov 12 10:41:38 1997
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from twins.rs.itd.umich.edu (twins.rs.itd.umich.edu [141.211.83.39]) by terminator.rs.itd.umich.edu (8.8.6/2.3) with ESMTP id KAA19490; Wed, 12 Nov 1997 10:41:37 -0500 (EST)
Received: (from root@localhost)
        by twins.rs.itd.umich.edu (8.8.6/2.2) with X.500 id KAA13616; Wed, 12 Nov 1997 10:42:12 -0500 (EST)
Received: (from root@localhost)
        by twins.rs.itd.umich.edu (8.8.6/2.2) with X.500 id KAA13550
        for xax500.bugs-members@umich.edu; Wed, 12 Nov 1997 10:42:03 -0500 (EST)
Received: from ns1.eds.com (ns1.eds.com [192.85.154.78])
        by twins.rs.itd.umich.edu (8.8.6/2.2) with ESMTP id KAA13500
        for <xax500.bugs@umich.edu>; Wed, 12 Nov 1997 10:41:53 -0500 (EST)
Received: from nnsa.eds.com (nnsa.eds.com [130.174.31.78])
	by ns1.eds.com (8.8.6/8.8.5) with ESMTP id KAA27281
	for <xax500.bugs@umich.edu>; Wed, 12 Nov 1997 10:41:17 -0500 (EST)
Received: from earth.troy.eng.eds.com (earth.troy.eng.eds.com [192.57.10.100])
	by nnsa.eds.com (8.8.5/8.8.5) with SMTP id KAA25045
	for <xax500.bugs@umich.edu>; Wed, 12 Nov 1997 10:40:46 -0500 (EST)
Received: from arron (arron.troy.eng.eds.com) by earth.troy.eng.eds.com (4.1/AE-1.0)
	id AA05456; Wed, 12 Nov 97 10:40:33 EST
Sender: rborow01@eng.eds.com
Message-Id: <3469CDD2.15FB@eng.eds.com>
Date: Wed, 12 Nov 1997 10:40:02 -0500
From: Rich Borowicz <rborow01@eng.eds.com>
Organization: EDS - Client/Server Infrastructure Development
X-Mailer: Mozilla 3.0 (X11; I; AIX 1)
Mime-Version: 1.0
To: xax500.bugs@umich.edu
Subject: [Fwd: LDAP Web Page Pointers]
Content-Type: multipart/mixed; boundary="------------59E21CFB3F54"

This is a multi-part message in MIME format.

--------------59E21CFB3F54
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

-- 
######################################################################

From: Richard Borowicz, EDS - Client/Server Infrastructure Development
Internet: rborow01@eng.eds.com

--------------59E21CFB3F54
Content-Type: message/rfc822
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Message-ID: <3469CB09.794B@eng.eds.com>
Date: Wed, 12 Nov 1997 10:28:27 -0500
From: Rich Borowicz <rborow01@eng.eds.com>
Organization: EDS - Client/Server Infrastructure Development
X-Mailer: Mozilla 3.0 (X11; I; AIX 1)
MIME-Version: 1.0
To: xax500bugs@umich.edu
CC: wbryan01
Subject: LDAP Web Page Pointers
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Your web page http://www.umich.edu/~dirsvcs/x500/xax500/xax500.html
points at /x500/ldap on terminator.rs.itd.umich.edu for the xax500
libraries.  However, while on your serevr I could not find xax500
libraries there.  I did find xax500-V1.0b3-source.tar.Z (in several
directories) and I downloaded it.  Hopefully it contains any needed
libraries.

Rich Borowicz
######################################################################

From: Richard Borowicz, EDS - Client/Server Infrastructure Development
Internet: rborow01@eng.eds.com

--------------59E21CFB3F54--


From xax500.bugs-errors@umich.edu Wed Nov 12 11:25:24 1997
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from twins.rs.itd.umich.edu (twins.rs.itd.umich.edu [141.211.83.39]) by terminator.rs.itd.umich.edu (8.8.6/2.3) with ESMTP id LAA20746; Wed, 12 Nov 1997 11:25:24 -0500 (EST)
Received: (from root@localhost)
        by twins.rs.itd.umich.edu (8.8.6/2.2) with X.500 id LAA01805; Wed, 12 Nov 1997 11:25:58 -0500 (EST)
Received: (from root@localhost)
        by twins.rs.itd.umich.edu (8.8.6/2.2) with X.500 id LAA01745
        for xax500.bugs-members@umich.edu; Wed, 12 Nov 1997 11:25:53 -0500 (EST)
Received: from netscape.com (h-205-217-237-46.netscape.com [205.217.237.46])
        by twins.rs.itd.umich.edu (8.8.6/2.2) with ESMTP id LAA01044
        for <xax500.bugs@umich.edu>; Wed, 12 Nov 1997 11:24:37 -0500 (EST)
Received: from dredd.mcom.com (dredd.mcom.com [205.217.237.54])
	by netscape.com (8.8.5/8.8.5) with ESMTP id IAA20570
	for <xax500.bugs@umich.edu>; Wed, 12 Nov 1997 08:23:57 -0800 (PST)
Received: from [205.217.240.168] by dredd.mcom.com
          (Netscape Messaging Server 3.0)  with SMTP id AAA3038;
          Wed, 12 Nov 1997 08:23:55 -0800
Message-ID: <3469CAF0.E2DB5C40@netscape.com>
Date: Wed, 12 Nov 1997 08:27:48 -0700
From: ggood@netscape.com (Gordon Good)
Organization: Netscape Communications Corp.
X-Mailer: Mozilla 4.01 (Macintosh; I; PPC)
MIME-Version: 1.0
To: Rich Borowicz <rborow01@eng.eds.com>
CC: xax500.bugs@umich.edu
Subject: Re: [Fwd: LDAP Web Page Pointers]
X-Priority: 3 (Normal)
References: <3469CDD2.15FB@eng.eds.com>
Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854"; x-mac-creator="4D4F5353"
Content-Transfer-Encoding: 7bit

Rich, the libraries you need, which are built from the ldap source
distribution, are available at
ftp://terminator.rs.itd.umich.edu/x500/ldap/ldap-3.3.tar.Z.

 -Gordon

Rich Borowicz wrote:

> --
> ######################################################################
>
> From: Richard Borowicz, EDS - Client/Server Infrastructure Development
>
> Internet: rborow01@eng.eds.com
>
>                                                  
> -------------------------------------------------------------------------------------------------------------
>
> Subject: LDAP Web Page Pointers
> Date: Wed, 12 Nov 1997 10:28:27 -0500
> From: Rich Borowicz <rborow01@eng.eds.com>
> Organization: EDS - Client/Server Infrastructure Development
> To: xax500bugs@umich.edu
> CC: wbryan01
>
> Your web page http://www.umich.edu/~dirsvcs/x500/xax500/xax500.html
> points at /x500/ldap on terminator.rs.itd.umich.edu for the xax500
> libraries.  However, while on your serevr I could not find xax500
> libraries there.  I did find xax500-V1.0b3-source.tar.Z (in several
> directories) and I downloaded it.  Hopefully it contains any needed
> libraries.
>
> Rich Borowicz
> ######################################################################
>
> From: Richard Borowicz, EDS - Client/Server Infrastructure Development
>
> Internet: rborow01@eng.eds.com

  


From xax500.bugs-errors@umich.edu Sat Nov 22 21:01:39 1997
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from redheat.rs.itd.umich.edu (redheat.rs.itd.umich.edu [141.211.83.36]) by terminator.rs.itd.umich.edu (8.8.6/2.3) with ESMTP id VAA16833; Sat, 22 Nov 1997 21:01:39 -0500 (EST)
Received: (from root@localhost)
        by redheat.rs.itd.umich.edu (8.8.5/2.2) with X.500 id VAA24971; Sat, 22 Nov 1997 21:01:37 -0500 (EST)
Received: (from root@localhost)
        by redheat.rs.itd.umich.edu (8.8.5/2.2) with X.500 id VAA24969
        for xax500.bugs-members@umich.edu; Sat, 22 Nov 1997 21:01:36 -0500 (EST)
Received: from mole (mole.slip.net [207.171.193.16])
        by redheat.rs.itd.umich.edu (8.8.5/2.2) with SMTP id UAA24313; Sat, 22 Nov 1997 20:56:42 -0500 (EST)
From: campuscom@mailexcite.com
Received: from stk-usr1-60-124.dialup.slip.net [207.171.230.124] 
	by mole with smtp (Exim 1.73 #2)
	id 0xZRHn-00031S-00; Sat, 22 Nov 1997 17:56:35 -0800
Received: from mail.ihsjm.net (host.hdbix.net [165.874.194.259]) by 
          pcok.msark_er.net (8.7.3/6.7.3) with SMTP id CFF89341 
          for <rodney@jdhshw.hello.com>; Fri, 21 Nov 1997 11:49:35 AM - 6000 (EST)
Received: (from kspeter@host.milnmn.com) by host.hdbix.net (8.6.9/8.6.9) 
          id AKK56394 for <ronkk@bob.citymny.com>; SMTP id MDD81541 
          for <kspeter@host.milnmn.com>; Thu, 20 Nov 1997 11:49:35 AM - 6000 (EST)
Received: from host.jdksolsls.com (money.jdhswin.com [230.356.57.69]) by 
       $4me.&you.com (8.6.12/8.6.12)  with ESMTP id WHH36432 for ; 
          root@robot.bizs.ensht.net; Wed, 19 Nov 1997 11:49:35 AM - 6000 (EST)
Received: from myserver.onmeym.net.com (root@robot.bizs.ensht.net [284.36.221.286]) 
       by mail.ksnshd.com (8.6.12/8.6.12) with ESMTP id PCC38491 for 
          <root@robot.bizs.ensht.net>; Tue, 18 Nov 1997 11:49:35 AM - 6000 (EST)
Message-Id: 199711221149.WTW5351@communication.com
Date: Sat, 22 Nov 97 11:49:35 AM
Subject: Univ of Michigan - Free Long Distance Phone Call and Discount Calling Card
X-UIDL: 870483884.576


This offer is to all students, faculty, staff and alumni.
Please Delete if you have no interest.


           Get a FREE Long Distance Phone Call.

      *** Additional calls at 18.9 cents/minute ***

         (No connection fees or hidden charges)                  

                      NO CATCH               

                  BRAND NEW ! ! !      

USA ONLY --- Calling Card Can Be Used To Call Anywhere In The Country


To Receive calling card please send a #10 Long Self Addressed 
Stamped Envelope to:  

        FORTE CAMPUS COMMUNICATIONS
        65 Washington Street, Suite 296
        Santa Clara, CA 95050


(Company owned by Class of '85 Alumni)

Limit 1 per household.  Tell your friends though ! !



From xax500.bugs-errors@umich.edu Fri Mar 27 16:14:15 1998
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from redheat.rs.itd.umich.edu (redheat.rs.itd.umich.edu [141.211.83.36])
	by terminator.rs.itd.umich.edu (8.8.6/2.5) with ESMTP id QAA27256; Fri, 27 Mar 1998 16:14:14 -0500 (EST)
Received: (from root@localhost)
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with X.500 id QAA07274; Fri, 27 Mar 1998 16:14:14 -0500 (EST)
Received: (from root@localhost)
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with X.500 id QAA07269
	for xax500.bugs-members@umich.edu; Fri, 27 Mar 1998 16:14:12 -0500 (EST)
Received: from marconi (marconi.openroute.com [128.185.123.116])
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with SMTP id QAA07256
	for <xax500.bugs@umich.edu>; Fri, 27 Mar 1998 16:14:11 -0500 (EST)
Received: from lucy.openroute.com by marconi (SMI-8.6/SMI-SVR4)
	id QAA01602; Fri, 27 Mar 1998 16:14:09 -0500
Received: by lucy.openroute.com (SMI-8.6/SMI-SVR4)
	id QAA07941; Fri, 27 Mar 1998 16:13:57 -0500
From: rll@openroute.com (Bob Lamothe)
Message-Id: <199803272113.QAA07941@lucy.openroute.com>
Subject: xax500 on Linux
To: xax500.bugs@umich.edu
Date: Fri, 27 Mar 1998 16:13:55 -0500 (EST)
X-Mailer: ELM [version 2.4 PL25]
Content-Type: text

Hello,

	I've downloaded xax500 and built it on two platforms, Solaris 2.5.1 and
RedHat Linux 4.2.  The Linux build was easy to perform and only required a few
minor changes to get it to build.  However both platforms have stability
problems.  The problems seem to be in the form that comes up with information
after a search is performed.

	With Solaris the program dumps core with a seg fault when you hit
one of the buttons labeled "Find Groups Added To" or the "List Owned Groups"
otherwise it seems OK.

	With Linux the form dumps core with a seg fault when any button on the
display form is pressed.  

	Unfortunately I don't think I'll be very instrumental in helping you
track down the problem as I've never learned how to program in X or Motif
and don't know where to begin to look for the problem.

						-Bob
-- 
* Robert L. Lamothe	     | TCP/IP Network Engineer and Unix Consultant     *
* (508)898-2800   	     |                                                 *
* rll@lamothe.net	     | Microsoft World 1.0:"You're not smart enough to *
* http://www.lamothe.net     | understand what we do, so just do what we say"  *

From xax500.bugs-errors@umich.edu Mon Apr 20 17:14:57 1998
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from stayhungry.rs.itd.umich.edu (stayhungry.rs.itd.umich.edu [141.211.83.42])
	by terminator.rs.itd.umich.edu (8.8.6/2.5) with ESMTP id RAA23102; Mon, 20 Apr 1998 17:14:57 -0400 (EDT)
Received: (from root@localhost)
	by stayhungry.rs.itd.umich.edu (8.8.5/2.5) with X.500 id RAA06810; Mon, 20 Apr 1998 17:14:56 -0400 (EDT)
Received: (from root@localhost)
	by stayhungry.rs.itd.umich.edu (8.8.5/2.5) with X.500 id RAA06808
	for xax500.bugs-members@umich.edu; Mon, 20 Apr 1998 17:14:55 -0400 (EDT)
Received: from firewall.persistence.com (firewall.persistence.com [207.214.70.250])
	by stayhungry.rs.itd.umich.edu (8.8.5/2.5) with ESMTP id RAA06801
	for <xax500.bugs@umich.edu>; Mon, 20 Apr 1998 17:14:54 -0400 (EDT)
Received: from persistence.com (omega.persistence.com [207.214.70.44])
	by firewall.persistence.com (8.8.8/8.8.8) with SMTP id OAA13810
	for <xax500.bugs@umich.edu>; Mon, 20 Apr 1998 14:14:50 -0700 (PDT)
Received: from degobah by persistence.com (SMI-8.6/SMI-SVR4)
	id OAA27567; Mon, 20 Apr 1998 14:15:22 -0700
From: bbice@persistence.com (Brent Bice)
Received: by degobah (SMI-8.6) id OAA16667; Mon, 20 Apr 1998 14:14:49 -0700
Date: Mon, 20 Apr 1998 14:14:49 -0700
Message-Id: <199804202114.OAA16667@degobah>
To: xax500.bugs@umich.edu
Subject: xax500 on Solaris 2.5.1 / OpenWindows

   I managed to get xax500 to compile on a Solaris 2.5.1 machine using 
the OpenWindows and DT libs (/usr/openwin/lib and /usr/dt/lib), by also
including <sys/signal.h> in util.c so SIGALRM would be defined.  But, when
I try to create a new entry, and I authenticate myself, a "New Entry"
Dialog pops up with nothing but the three buttons in it -- nothing to
choose.

   I threw in a few printf's in the loop that checks to see which, if any,
of the templates are addable, and Person (among a few others) is addable.
I can edit entries ok.  I just don't seem to be able to choose what type
of entry I want to make a new instance of...  Oh yeah, and when I click on
the Choose Location button in the Dialog, the XTERM where I ran xax500 
prints out "doSelectLocation" -- if this helps identify which bit of
newentry.c I'm usin'...

   Any ideas?  Anyone built it using the OpenWindows and/or DT Motif
libraries on a Solaris box?

Brent Bice
Sysem/Network Admin and LDAP newbie
bbice@persistence.com


From xax500.bugs-errors@umich.edu Mon May 11 13:43:40 1998
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from redheat.rs.itd.umich.edu (redheat.rs.itd.umich.edu [141.211.83.36])
	by terminator.rs.itd.umich.edu (8.8.6/2.5) with ESMTP id NAA01531; Mon, 11 May 1998 13:43:39 -0400 (EDT)
Received: (from root@localhost)
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with X.500 id NAA01501; Mon, 11 May 1998 13:43:39 -0400 (EDT)
Received: (from root@localhost)
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with X.500 id NAA01491
	for xax500.bugs-members@umich.edu; Mon, 11 May 1998 13:43:38 -0400 (EDT)
Received: from orion.ac.hmc.edu (Orion.AC.HMC.Edu [134.173.32.20])
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with ESMTP id NAA01469; Mon, 11 May 1998 13:43:34 -0400 (EDT)
Received: from localhost (mcope@localhost)
	by orion.ac.hmc.edu (8.8.8/8.8.8) with SMTP id KAA18765;
	Mon, 11 May 1998 10:43:21 -0700 (PDT)
Date: Mon, 11 May 1998 10:43:21 -0700 (PDT)
From: "Michael T. Cope" <mcope@orion.ac.hmc.edu>
Reply-To: mcope@hmc.edu
To: Alan Baker <Alan.Baker@cambridge.simoco.com>
cc: ldap@umich.edu, xax500.bugs@umich.edu
Subject: Re: Compiling under Solaris 2.5.1
In-Reply-To: <199805111100.MAA16576@cambridge.simoco.com>
Message-ID: <Pine.GSO.3.96.980511103211.17443A-100000@orion.ac.hmc.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII


On Mon, 11 May 1998, Alan Baker wrote:

> 
> 
> Hi
> 
> I'm really interested in xax500, of which there doesn't seem much interest out 
> there.  i want to use it to for simple look ups off a Microsoft Exchange beast.
> 
> However, I am having problems compiling it.
> 
> I am using gcc version 2.7.2, on a sparc solaris 2.5.1.
> 
> The error I am stuck at is:
> 
>   cd xax500; make  all
> gcc -I../../include  -I/usr/X11/include -I/usr/openwin/include -I/usr/dt/include 
> -Dsunos5 -D_REENTRANT -DLDAP_DEBUG          -DLDAP_REFERRALS        
> -DLDBM_USE_NDBM      -c  browse.c
> browse.c:86: conflicting types for `strcasecmp'
> /tools/pub/lib/gcc-lib/sparc-sun-solaris2.4/2.7.2/include/string.h:75: previous 
> declaration of `strcasecmp'
> *** Error code 1
> make: Fatal error: Command failed for target `browse.o'
> Current working directory /home/pmrsupport/ukcbaas/ldap-3.3/clients/xax500
> *** Error code 1
> make: Fatal error: Command failed for target `all'
> Current working directory /home/pmrsupport/ukcbaas/ldap-3.3/clients/xax500
> *** Error code 1
> make: Fatal error: Command failed for target `all'
> Current working directory /home/pmrsupport/ukcbaas/ldap-3.3/clients
> *** Error code 1
> make: Fatal error: Command failed for target `all'
> 
> 
> Note that everything else prior to this compiles ok.  But I am not a 'C' expert.
> 
> Any help would be appreciated
> 
>         Regards,
>                 Alan
>                 
> Simoco Europe Limited
> Tel:    (Int +44) (0)1223 877068
> Pager:  0941 100200, ppn 172616
> Email:  mailto:Alan.Baker@cambridge.simoco.com
> 
This occurs for gcc-2.7.3 and solaris 2.5.1 as well

The fix for this bug is to comment out the 
extern int strcasecmp(char *, char *); 
line in browse.c 

I also found that <signal.h> needs to be included in util.c so that
SIGALRM is defined.

A patch for these bugs follows.  To use the patches define HAS_STRCASECMP
and NEED_SIGALRM in .make-platform.  With these patches applied, xax500 at
least compiles and runs. 

*** browse.c.orig	Mon May 11 10:36:28 1998
--- browse.c	Mon May 11 10:20:04 1998
***************
*** 83,90 ****
  
  static char *empty_val[] = { "", NULL }; 
  
  extern int strcasecmp(char *, char *);
! 
  /*
   * Starting at the current searchbase, initiate an asynchronous LDAP search,
   * returning all entries at the current level.  An XtTimeout will check
--- 83,91 ----
  
  static char *empty_val[] = { "", NULL }; 
  
+ #ifndef HAS_STRCASECMP
  extern int strcasecmp(char *, char *);
! #endif
  /*
   * Starting at the current searchbase, initiate an asynchronous LDAP search,
   * returning all entries at the current level.  An XtTimeout will check
*** util.c.orig	Mon May 11 10:36:37 1998
--- util.c	Mon May 11 10:20:04 1998
***************
*** 28,33 ****
--- 28,37 ----
  #include <ldap.h>
  #include <disptmpl.h>
  
+ #ifdef NEED_SIGALRM
+ #include <signal.h>
+ #endif 
+ 
  #include <errno.h>
  #ifdef ultrix
  #include <sys/types.h>



-------------------------------------------------------------------------------
Michael Cope: Harvey Mudd College '00; Armand Hammer UWC '96
E-mail: Michael_Cope@hmc.edu
S-mail: 1012 W 7th St. #72, Upland CA 91786
(909)982-9662
WWW: HTTP://www3.hmc.edu/~mcope/
  "[It's] time for the human race to enter the solar system."
      -- Vice President Dan Quayle





From xax500.bugs-errors@umich.edu Tue Jul  7 22:34:51 1998
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from redheat.rs.itd.umich.edu (redheat.rs.itd.umich.edu [141.211.83.36])
	by terminator.rs.itd.umich.edu (8.8.8/2.5) with ESMTP id WAA09748; Tue, 7 Jul 1998 22:34:51 -0400 (EDT)
Received: (from root@localhost)
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with X.500 id WAA03772; Tue, 7 Jul 1998 22:34:50 -0400 (EDT)
Received: (from root@localhost)
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with X.500 id WAA03770
	for xax500.bugs-members@umich.edu; Tue, 7 Jul 1998 22:34:49 -0400 (EDT)
Received: from nymphe.m.ISAR.de (nymphe.m.ISAR.de [193.141.69.3])
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with ESMTP id WAA03766
	for <xax500.bugs@umich.edu>; Tue, 7 Jul 1998 22:34:47 -0400 (EDT)
Received: from rumba.UUCP (Urumba@localhost)
	by nymphe.m.ISAR.de (8.8.7/8.8.7/nymphe-2.1) with UUCP id EAA00700
	for umich.edu!xax500.bugs; Wed, 8 Jul 1998 04:34:46 +0200 (CEST)
X-Authentication-Warning: nymphe.m.ISAR.de: Urumba set sender to rumba!elwood using -f
Received: by rumba.m.isar.de (Smail3.1.28.1 #5)
	id m0yte2U-000JCCC; Tue, 7 Jul 98 22:08 MET DST
Message-Id: <m0yte2U-000JCCC@rumba.m.isar.de>
From: elwood@rumba.m.isar.de (Konstantinos Agouros)
Subject: xax500 Motif 2.0 and Linux
To: xax500.bugs@umich.edu
Date: Tue, 7 Jul 1998 22:08:33 +0200 (MET DST)
X-Mailer: ELM [version 2.4ME+ PL2 (25)]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

Hello,

I just got it more or less running under Linux with motif 2.0.
It sometimes crashes when the dismiss-button is used but it is working more or
less.

Thought I let you know,

Konstantin
-- 
Dipl-Inf. Konstantin Agouros aka Elwood Blues. Internet: elwood@rumba.m.isar.de
Otkerstr. 28, 81547 Muenchen, Germany. Tel +49 89 69370185
----------------------------------------------------------------------------
"Captain, this ship will not sustain the forming of the cosmos." B'Elana Torres

From xax500.bugs-errors@umich.edu Wed Oct 14 18:55:11 1998
Return-Path: <xax500.bugs-errors@umich.edu>
Received: from redheat.rs.itd.umich.edu (redheat.rs.itd.umich.edu [141.211.83.36])
	by terminator.rs.itd.umich.edu (8.8.8/2.5) with ESMTP id SAA06285; Wed, 14 Oct 1998 18:55:11 -0400 (EDT)
Received: (from root@localhost)
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with X.500 id SAA24585; Wed, 14 Oct 1998 18:55:10 -0400 (EDT)
Received: (from root@localhost)
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with X.500 id SAA24581
	for xax500.bugs-members@umich.edu; Wed, 14 Oct 1998 18:55:09 -0400 (EDT)
Received: from mail.candseek.com (mail.candseek.com [209.146.77.10])
	by redheat.rs.itd.umich.edu (8.8.5/2.5) with ESMTP id SAA24564
	for <xax500.bugs@umich.edu>; Wed, 14 Oct 1998 18:55:06 -0400 (EDT)
Message-Id: <199810142255.SAA24564@redheat.rs.itd.umich.edu>
Date: Wed, 14 Oct 1998 18:55:06 -0400 (EDT)
From: dje@candseek.com
Received: from candseek.com ([209.146.77.254]) by mail.candseek.com
          (Post.Office MTA v3.5.1 release 219 ID# 0-55033U100L2S100V35)
          with SMTP id com for <xax500.bugs@umich.edu>;
          Wed, 14 Oct 1998 11:45:12 -0400
To: xax500.bugs@umich.edu
Subject: JOBOP Software Development Consultant


Since you listed your address on a RDBMS web site, I thought 
you might be willing to help.

I represent a leading edge technology firm an seek  people 
To join the professional services division.  The most immediate 
need is for qualified people in the Atlanta, GA area, although we 
need people along the entire East Coast.

The following is the job description:

Senior/Principle Consultant

Due to tremendous growth in our Sales and Professional Services 
Businesses, we have the need to add a key technical resource to our 
Professional Services business unit. This individual is the "go to" technical 
person for the Professional Services team. We need experience 
developing with C++ in both UNIX and NT environments, experience 
in design and in all phases of the software development cycle, 
RDBMS experience with Oracle, Sybase and NT SQL Server and the 
ability to provide both pre and post sales support as needed. 

The position includes:  Very competitive compensation package (up to 
low six figures plus bonus)  Excellent benefits  A chance to join a very 
profitable, leading edge, fast growing organization.

If you know anyone who might be interested please forward this to them 
or contact me today.

Dave Eide
Quest_IT a division of Diedre Moire Corporation
510 Horizon Center
Robbbinsville, NJ 08691
Phone: 609-584-9000 ext 273
Fax: 609-584-9575
Email: dje@candseek.com




