Jan Vroonhof <vroonhof(a)math.ethz.ch> wrote:
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
well, nearly.
OSF1 can't deal with -rpath/usr/local/lib - it needs a space in between.
Linux doesn't mind either way, it seems. Here's another fix :
1998-08-04 Andrew J Cosgriff <ajc(a)bing.wattle.id.au>
* configure.in (CPP): OSF1 needs a space between -rpath and directory.
Index: configure.in
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs-20/configure.in,v
retrieving revision 1.113
diff -u -r1.113 configure.in
--- configure.in 1998/07/28 18:06:23 1.113
+++ configure.in 1998/08/04 05:24:17
@@ -1918,7 +1918,7 @@
AC_MSG_CHECKING("for runtime libraries flag")
case "$opsys" in
sol2 ) dash_r="-R" ;;
- decosf* | linux* ) dash_r="-rpath" ;;
+ decosf* | linux* ) dash_r="-rpath " ;;
*)
dash_r=""
for try_dash_r in "-R" "-R " "-rpath "; do