The cvs tree (as of now) has syntax errors in configure.
Patch follows:
(undefined) 167$ cvs diff configure configure.in
Index: configure
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/configure,v
retrieving revision 1.110.2.42
diff -c -r1.110.2.42 configure
*** configure 1999/10/21 14:00:28 1.110.2.42
--- configure 1999/10/22 00:28:58
***************
*** 7714,7720 ****
if test "$have_xaw3d"; then
libs_x="-lXaw3d $libs_x" && if test "$extra_verbose" = "yes"; then echo " Prepending \"-lXaw3d\" to \$libs_x"; fi
else
! libs_x="-lXaw $libs_x" && if test "$extra_verbose" = "yes"; then echo " Prepending \"-lXaw\" to \$libs_x"; fi ;;
*athena* )
{ test "$extra_verbose" = "yes" && cat << \EOF
Defining LWLIB_USES_ATHENA
--- 7714,7720 ----
if test "$have_xaw3d"; then
libs_x="-lXaw3d $libs_x" && if test "$extra_verbose" = "yes"; then echo " Prepending \"-lXaw3d\" to \$libs_x"; fi
else
! libs_x="-lXaw $libs_x" && if test "$extra_verbose" = "yes"; then echo " Prepending \"-lXaw\" to \$libs_x"; fi ; fi ;;
*athena* )
{ test "$extra_verbose" = "yes" && cat << \EOF
Defining LWLIB_USES_ATHENA
Index: configure.in
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/configure.in,v
retrieving revision 1.111.2.46
diff -c -r1.111.2.46 configure.in
*** configure.in 1999/10/21 14:00:27 1.111.2.46
--- configure.in 1999/10/22 00:29:01
***************
*** 2922,2928 ****
if test "$have_xaw3d"; then
XE_PREPEND(-lXaw3d, libs_x)
else
! XE_PREPEND(-lXaw, libs_x) ;;
*athena* )
AC_DEFINE(LWLIB_USES_ATHENA)
AC_DEFINE(NEED_ATHENA)
--- 2922,2928 ----
if test "$have_xaw3d"; then
XE_PREPEND(-lXaw3d, libs_x)
else
! XE_PREPEND(-lXaw, libs_x) ; fi ;;
*athena* )
AC_DEFINE(LWLIB_USES_ATHENA)
AC_DEFINE(NEED_ATHENA)