The origional gives on Solaris:
checking for runtime libraries flag... ./configure: dash_r: not found
NONE
checking for malloc_get_state... no
This fixes it
1998-07-28 Jan Vroonhof <vroonhof(a)math.ethz.ch>
* configure.in (CPP): Too many spaces im run-patch flag detection.
Index: configure.in
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs-20/configure.in,v
retrieving revision 1.112
diff -u -u -r1.112 configure.in
--- configure.in 1998/07/28 06:24:54 1.112
+++ configure.in 1998/07/28 22:39:40
@@ -1917,8 +1917,8 @@
dnl and whether it works (or at least does no harm)
AC_MSG_CHECKING("for runtime libraries flag")
case "$opsys" in
- sol2 ) dash_r = "-R" ;;
- decosf* | linux* ) dash_r = "-rpath" ;;
+ sol2 ) dash_r="-R" ;;
+ decosf* | linux* ) dash_r="-rpath" ;;
*)
dash_r=""
for try_dash_r in "-R" "-R " "-rpath "; do