>>>> "ajc" == Andrew J Cosgriff
<ajc(a)bing.wattle.id.au> writes:
ajc> 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
ajc> well, nearly.
ajc> OSF1 can't deal with -rpath/usr/local/lib - it needs a space in between.
ajc> Linux doesn't mind either way, it seems. Here's another fix :
No, it's probably also a bug on Linux - on that platform the code is
only run if the user requests it via --site-runtime-libraries or
LD_RUN_PATH, I think.
More curiously, this code was developed, by me, on alpha-dec-osf4.0,
and seemed to work fine.
Anyways, this patch is approved.
My apologies for all my shell bloopers. I DO know better. At
least I warned Steve.
Martin
ajc> 1998-08-04 Andrew J Cosgriff <ajc(a)bing.wattle.id.au>
ajc> * configure.in (CPP): OSF1 needs a space between -rpath and directory.
ajc> Index: configure.in
ajc> ===================================================================
ajc> RCS file: /usr/CVSroot/XEmacs/xemacs-20/configure.in,v
ajc> retrieving revision 1.113
ajc> diff -u -r1.113 configure.in
ajc> --- configure.in 1998/07/28 18:06:23 1.113
ajc> +++ configure.in 1998/08/04 05:24:17
ajc> @@ -1918,7 +1918,7 @@
ajc> AC_MSG_CHECKING("for runtime libraries flag")
ajc> case "$opsys" in
ajc> sol2 ) dash_r="-R" ;;
ajc> - decosf* | linux* ) dash_r="-rpath" ;;
ajc> + decosf* | linux* ) dash_r="-rpath " ;;
ajc> *)
ajc> dash_r=""
ajc> for try_dash_r in "-R" "-R " "-rpath "; do