Thanks for the help, everyone. The last build error I was getting
was that mmap was failing (out of memory during linking). I moved to
a machine with more memory and that solved that. I think the real
problem was that I am linking a static Mesa instead of dynamic, which
I may try differently. However, it has built now successfully.
To recap what I had to do:
1) ./configure froze on "checking for vfork..." so I modified
configure to fail during that check instead of freezing.
That is, in the section of code beginning:
cat > conftest.$ac_ext <<EOF
#line 8724 "configure"
#include "confdefs.h"
/* Thanks to Paul Eggert for this test. */
I put the following statement in main():
main() {
return 1; #this is line 8776
so it just fails, because a freeze is a failure in my book.
2) Had to add a definition to Application.C:
int yylineno;
3) Whenever I got error:
ColorMapEditor.c: In function `SetValues':
ColorMapEditor.c:889: `dx_l' undeclared (first use in this function)
Solution is to add the line
XtArgVal dx_l;
to the beginning of the affected function. True also for
FrameControl.c, and ControlPoint.c and uipp/dxui/DialInteractor.C,
maybe others.
But now I have a problem with the dxsamples, which I'll submit in a
separate email.
--
Richard Cook
Lawrence Livermore National Laboratory
Bldg-451 Rm-2043, Mail Stop L-561
7000 East Avenue, Livermore, CA, 94550, USA
phone (925) 423-9605 (work) fax (925) 423-8704
---
Information Management & Graphics Grp., Services & Development Div.,
Integrated Computing & Communications Dept.
(opinions expressed herein are mine and not those of LLNL)