Recent changes to configure.ac left a stray period behind, breaking builds
of 21.5.b20 which used --with-athena=3d.
The ChangeLog reads:
2005-03-15 Jerry James <james(a)xemacs.org>
* configure.ac: Include <X11/Intrinsic.h> when checking for
<Xaw/XawInit.h> usability.
I suspect this is the change, but the date seens incorrect (perhaps
2003-03-25) because configure from 2005-03-23 does not fail to create an
Xaw3d version.
Here is a simple patch for the configure.ac file:
% cvs diff -D 2005-03-27 -U 0 configure.ac
Index: configure.ac
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/configure.ac,v
retrieving revision 1.7
diff -U0 -r1.7 configure.ac
--- configure.ac 2005/03/27 04:21:08 1.7
+++ configure.ac 2005/03/30 11:08:14
@@ -3945 +3945 @@
-#include <X11/Intrinsic.h.>
+#include <X11/Intrinsic.h>
--
rdr