scsh-users
[Top] [All Lists]

Gagging s48

To: scsh@martigny.ai.mit.edu
Subject: Gagging s48
From: Rolf-Thomas Happe <rthappe@mathematik.uni-freiburg.de>
Date: Mon, 29 Dec 1997 16:43:11 +0100 (MET)
Is there a way to prevent the Scheme system from printing messages 
on stdout (and thus mixing up the intended output e.g. of a filter
written in Scsh)?  That is, what can I do not to get this:

The program:
> cat filtest.scm
#! /usr/people/rthappe/bin/scsh  \
-o big-scheme -e main -s
!#

(define (main args)
  (format (current-output-port) "~a~%" args))

and its output:
> ./filtest.scm

Analyzing... 
Calls will be compiled in line: (queue-tail set-queue-tail! queue-head 
set-queue-head! queue-uid queue-empty? on-queue? queue-length)
(./filtest.scm)

rthappe
>From bdc@martigny.ai.mit.edu Fri Jan  2 20:50:15 1998
Received: from berne.ai.mit.edu by martigny.ai.mit.edu with SMTP
        (1.40.112.8/16.2) id AA245122215; Fri, 2 Jan 1998 20:50:15 -0500
Resent-Date: Fri, 2 Jan 1998 20:50:15 -0500
Resent-From: Brian D. Carlstrom <bdc@martigny.ai.mit.edu>
Resent-To: scsh-list@martigny.ai.mit.edu
Return-Path: <scsh-request@martigny.ai.mit.edu>
Message-Id: <3ioh1uy4fw.fsf@Rational.com>
Organization: Rational Software, Lexington, MA, USA
From: Kevin Esler <esler@Rational.com.nospam>
To: scsh-news@martigny.ai.mit.edu
Subject: I can't catch SIGALRM
Date: Fri, 2 Jan 1998 21:02:59 GMT



Any idea why I can catch SIGINT, but not SIGALRM, as
illustrated by the following Scsh-script:

>---------------------- bug.scsh -------------------------<
#! /usr/local/bin/scsh -s
!#

(define main
  (lambda ()
  
    ;; Set an alarm handler:
    ;;
    (set-interrupt-handler (signal->interrupt signal/alrm)
                           (lambda (num)
                             (format #t "alarm caught\n")
                             (exit 0)))

    ;; Set a keyboard interrupt hander:
    ;;
    (set-interrupt-handler interrupt/keyboard
                           (lambda (num)
                             (format #t "keyboard interrupt caught\n")
                             (exit 0)))

    ;; Schedule a SIGALRM 1-second hence:
    ;;
    (itimer 1)

    ;; Loop forever:
    ;;
    (let loop ()
      (begin
        (format #t "looping\n")
        (loop)))))

(main)
-- 
Kevin Esler                 Rational Software
                            20 Maguire Road
Tel: (617) 676-2626         Lexington, MA 02173-3104
Fax: (617) 676-2600
mailto:esler@Rational.com  WWW: http://www.Rational.com/
>From bdc@martigny.ai.mit.edu Fri Jan  2 20:50:06 1998
Received: from berne.ai.mit.edu by martigny.ai.mit.edu with SMTP
        (1.40.112.8/16.2) id AA245012205; Fri, 2 Jan 1998 20:50:05 -0500
Resent-Date: Fri, 2 Jan 1998 20:50:05 -0500
Resent-From: Brian D. Carlstrom <bdc@martigny.ai.mit.edu>
Resent-To: scsh-list@martigny.ai.mit.edu
Return-Path: <rthappe@bonnie.mathematik.uni-freiburg.de>
Message-Id: <199712291543.QAA02439@bonnie.mathematik.uni-freiburg.de>
From: Rolf-Thomas Happe <rthappe@mathematik.uni-freiburg.de>
To: scsh@martigny.ai.mit.edu
Subject: Gagging s48
Date: Mon, 29 Dec 1997 16:43:11 +0100 (MET)


Is there a way to prevent the Scheme system from printing messages 
on stdout (and thus mixing up the intended output e.g. of a filter
written in Scsh)?  That is, what can I do not to get this:

The program:
> cat filtest.scm
#! /usr/people/rthappe/bin/scsh  \
-o big-scheme -e main -s
!#

(define (main args)
  (format (current-output-port) "~a~%" args))

and its output:
> ./filtest.scm

Analyzing... 
Calls will be compiled in line: (queue-tail set-queue-tail! queue-head 
set-queue-head! queue-uid queue-empty? on-queue? queue-length)
(./filtest.scm)

rthappe
>From bdc@martigny.ai.mit.edu Mon Jan  5 16:10:20 1998
Received: from freeside.ai.mit.edu by martigny.ai.mit.edu with SMTP
        (1.40.112.8/16.2) id AA127794619; Mon, 5 Jan 1998 16:10:19 -0500
Resent-Date: Mon, 5 Jan 1998 16:10:19 -0500
Resent-From: Brian D. Carlstrom <bdc@martigny.ai.mit.edu>
Resent-To: scsh-list@martigny.ai.mit.edu
Return-Path: <scsh-request@martigny.ai.mit.edu>
Message-Id: <291zymadmp.fsf@honlab.nmfs.hawaii.edu>
Organization: University of Hawaii
References: <3ioh1uy4fw.fsf@Rational.com>
From: Joseph Allen Dane <jdane@hawaii.edu>
To: scsh-news@martigny.ai.mit.edu
Subject: Re: I can't catch SIGALRM
Date: 05 Jan 1998 10:07:26 -1000


Kevin Esler <esler@Rational.com.nospam> writes:

> Any idea why I can catch SIGINT, but not SIGALRM, as
> illustrated by the following Scsh-script:
> 

No idea, but I have been able to use

          (set-interrupt-handler interrupt/alrm
                                 (lambda (i)
                                   (foo whatever)))

-- 

jd
>From bdc@martigny.ai.mit.edu Fri Jan  2 20:50:15 1998
Received: from berne.ai.mit.edu by martigny.ai.mit.edu with SMTP
        (1.40.112.8/16.2) id AA245122215; Fri, 2 Jan 1998 20:50:15 -0500
Resent-Date: Fri, 2 Jan 1998 20:50:15 -0500
Resent-From: Brian D. Carlstrom <bdc@martigny.ai.mit.edu>
Resent-To: scsh-list@martigny.ai.mit.edu
Return-Path: <scsh-request@martigny.ai.mit.edu>
Message-Id: <3ioh1uy4fw.fsf@Rational.com>
Organization: Rational Software, Lexington, MA, USA
From: Kevin Esler <esler@Rational.com.nospam>
To: scsh-news@martigny.ai.mit.edu
Subject: I can't catch SIGALRM
Date: Fri, 2 Jan 1998 21:02:59 GMT



Any idea why I can catch SIGINT, but not SIGALRM, as
illustrated by the following Scsh-script:

>---------------------- bug.scsh -------------------------<
#! /usr/local/bin/scsh -s
!#

(define main
  (lambda ()
  
    ;; Set an alarm handler:
    ;;
    (set-interrupt-handler (signal->interrupt signal/alrm)
                           (lambda (num)
                             (format #t "alarm caught\n")
                             (exit 0)))

    ;; Set a keyboard interrupt hander:
    ;;
    (set-interrupt-handler interrupt/keyboard
                           (lambda (num)
                             (format #t "keyboard interrupt caught\n")
                             (exit 0)))

    ;; Schedule a SIGALRM 1-second hence:
    ;;
    (itimer 1)

    ;; Loop forever:
    ;;
    (let loop ()
      (begin
        (format #t "looping\n")
        (loop)))))

(main)
-- 
Kevin Esler                 Rational Software
                            20 Maguire Road
Tel: (617) 676-2626         Lexington, MA 02173-3104
Fax: (617) 676-2600
mailto:esler@Rational.com  WWW: http://www.Rational.com/
>From bdc@martigny.ai.mit.edu Fri Jan  2 20:50:06 1998
Received: from berne.ai.mit.edu by martigny.ai.mit.edu with SMTP
        (1.40.112.8/16.2) id AA245012205; Fri, 2 Jan 1998 20:50:05 -0500
Resent-Date: Fri, 2 Jan 1998 20:50:05 -0500
Resent-From: Brian D. Carlstrom <bdc@martigny.ai.mit.edu>
Resent-To: scsh-list@martigny.ai.mit.edu
Return-Path: <rthappe@bonnie.mathematik.uni-freiburg.de>
Message-Id: <199712291543.QAA02439@bonnie.mathematik.uni-freiburg.de>
From: Rolf-Thomas Happe <rthappe@mathematik.uni-freiburg.de>
To: scsh@martigny.ai.mit.edu
Subject: Gagging s48
Date: Mon, 29 Dec 1997 16:43:11 +0100 (MET)


Is there a way to prevent the Scheme system from printing messages 
on stdout (and thus mixing up the intended output e.g. of a filter
written in Scsh)?  That is, what can I do not to get this:

The program:
> cat filtest.scm
#! /usr/people/rthappe/bin/scsh  \
-o big-scheme -e main -s
!#

(define (main args)
  (format (current-output-port) "~a~%" args))

and its output:
> ./filtest.scm

Analyzing... 
Calls will be compiled in line: (queue-tail set-queue-tail! queue-head 
set-queue-head! queue-uid queue-empty? on-queue? queue-length)
(./filtest.scm)

rthappe
>From bdc@martigny.ai.mit.edu Mon Jan  5 16:10:20 1998
Received: from freeside.ai.mit.edu by martigny.ai.mit.edu with SMTP
        (1.40.112.8/16.2) id AA127794619; Mon, 5 Jan 1998 16:10:19 -0500
Resent-Date: Mon, 5 Jan 1998 16:10:19 -0500
Resent-From: Brian D. Carlstrom <bdc@martigny.ai.mit.edu>
Resent-To: scsh-list@martigny.ai.mit.edu
Return-Path: <scsh-request@martigny.ai.mit.edu>
Message-Id: <291zymadmp.fsf@honlab.nmfs.hawaii.edu>
Organization: University of Hawaii
References: <3ioh1uy4fw.fsf@Rational.com>
From: Joseph Allen Dane <jdane@hawaii.edu>
To: scsh-news@martigny.ai.mit.edu
Subject: Re: I can't catch SIGALRM
Date: 05 Jan 1998 10:07:26 -1000


Kevin Esler <esler@Rational.com.nospam> writes:

> Any idea why I can catch SIGINT, but not SIGALRM, as
> illustrated by the following Scsh-script:
> 

No idea, but I have been able to use

          (set-interrupt-handler interrupt/alrm
                                 (lambda (i)
                                   (foo whatever)))

-- 

jd
>From thrag@treepeople.dyn.ml.org Mon Jan 19 02:38:01 1998
Received: from mail.treepeople.dyn.ml.org (A3176.resnet.ucsb.edu) by 
martigny.ai.mit.edu with SMTP
        (1.40.112.8/16.2) id AA026545475; Mon, 19 Jan 1998 02:37:55 -0500
Return-Path: <thrag@treepeople.dyn.ml.org>
Received: (qmail 16771 invoked by uid 1000); 19 Jan 1998 07:37:53 -0000
Message-Id: <19980119073753.16770.qmail@mail.treepeople.dyn.ml.org>
From: Graham Hughes <thrag@treepeople.dyn.ml.org>
To: scsh-bugs@martigny.ai.mit.edu
Subject: SCSH 0.5.1 Linux glibc2 bug
Mime-Version: 1.0 (generated by tm-edit 7.106)
Content-Type: text/plain; charset=US-ASCII
Date: Sun, 18 Jan 1998 23:37:53 -0800
Sender: graham@treepeople.dyn.ml.org

-----BEGIN PGP SIGNED MESSAGE-----

While attempting to compiled 0.5.1, I discovered that the
scsh/linux/sigset.h was apparently designed very closely to libc5,
which has a slightly different sigset_t implementation.  glibc uses an
authentic struct to accomodate 1024 different signal bits; as a
result, the sigset.h macros die horribly.

IMHO, the best solution to this is to use the POSIX sigaddset
etc. functions; I refrained from doing so because I have no idea what
the two macros are supposed to do; split_sigset in particular is a
problem.  This may be irritatingly slow, but it *will* work.

OTOH, you could simply use the existing macros and try to warp them so
they will accomodate 1024 bits of data, instead of the original 32.
- -- 
Graham Hughes <thrag@treepeople.dyn.ml.org> 
http://treepeople.dyn.ml.org/thrag/
PGP Fingerprint: 36 15 AD 83 6D 2F D8 DE  EC 87 86 8A A2 79 E7 E6


-----BEGIN PGP SIGNATURE-----
Version: 2.6.3a
Charset: noconv
Comment: Processed by Mailcrypt 3.4, an Emacs/PGP interface

iQCVAwUBNMMCy1N2pHdjE11BAQHE1wQAsJcjUDixx/ITRYZ5FnUbJGiQDJQ5pYRv
AmD4EHTFHXnou8MLiF17UMMvEhOamqyVoN+AZ0UUAGRVgIvUyUN1E/v4oT5Xbvcq
cKDzGeANoUFZpBdoX55KB57pvdzyW+CsfxWmHYQ3hOwUlW8qPKDdfvQ1RIbnpdnk
YOHFy9SOncg=
=cKtG
-----END PGP SIGNATURE-----
>From healy@camden.nrl.navy.mil Wed Jan 28 10:57:38 1998
Received: from camden.nrl.navy.mil by martigny.ai.mit.edu with ESMTP
        (1.40.112.8/16.2) id AA251453058; Wed, 28 Jan 1998 10:57:38 -0500
Return-Path: <healy@camden.nrl.navy.mil>
Received: (from healy@localhost) by camden.nrl.navy.mil 
(950413.SGI.8.6.12/950213.SGI.AUTOCF) id KAA26513; Wed, 28 Jan 1998 10:57:37 
-0500
Date: Wed, 28 Jan 1998 10:57:37 -0500
Message-Id: <199801281557.KAA26513@camden.nrl.navy.mil>
From: Liam Healy <Liam.Healy@nrl.navy.mil>
To: scsh-bugs@martigny.ai.mit.edu
Subject: Can't configure scsh 0.5.1 on SGI Irix
Reply-To: Liam Healy <Liam.Healy@nrl.navy.mil>

On SGI Irix 6.3 (also tried on 6.2), I cannot configure scsh 0.5.1

healy@rex /scsh-0.5.1{47}(10:52am)% ./configure
loading cache ./config.cache
checking host system type... mips-sgi-irix6.3
checking for gcc... gcc
checking whether we are using GNU C... no
checking for POSIXized ISC... no
checking for a BSD compatible install... ./install-sh -c
checking for ranlib... :
checking for working const... no
checking whether cross-compiling... yes
checking whether byte ordering is bigendian... configure: error: can not run 
test program while cross compiling

I am not cross compiling!
(BTW I am able to compile and run it just fine on my Linux box at
home.) 
Any help would be appreciated.

-- 
Liam Healy
Liam.Healy@nrl.navy.mil
>From jimb@totoro.red-bean.com Wed Jan 28 14:49:01 1998
Received: from totoro.red-bean.com by martigny.ai.mit.edu with ESMTP
        (1.40.112.8/16.2) id AA006516937; Wed, 28 Jan 1998 14:48:57 -0500
Return-Path: <jimb@totoro.red-bean.com>
Received: (from jimb@localhost)
        by totoro.red-bean.com (8.8.8/8.8.8) id OAA03739;
        Wed, 28 Jan 1998 14:48:52 -0500
Date: Wed, 28 Jan 1998 14:48:52 -0500
Message-Id: <199801281948.OAA03739@totoro.red-bean.com>
From: Jim Blandy <jimb@red-bean.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: Liam Healy <Liam.Healy@nrl.navy.mil>
Cc: scsh-bugs@martigny.ai.mit.edu
Subject: Can't configure scsh 0.5.1 on SGI Irix
In-Reply-To: <199801281557.KAA26513@camden.nrl.navy.mil>
References: <199801281557.KAA26513@camden.nrl.navy.mil>
X-Mailer: VM 6.34 under Emacs 19.34.1


Could you post your config.log file?  Whenever it seems that the
configure script is getting something wrong, it is always helpful to
include the config.log file in your post.

There's some thing weird going on here.  It says you're running gcc,
and then decides that you're not using GNU C.  ???

>On SGI Irix 6.3 (also tried on 6.2), I cannot configure scsh 0.5.1
>
>healy@rex /scsh-0.5.1{47}(10:52am)% ./configure
>loading cache ./config.cache
>checking host system type... mips-sgi-irix6.3
>checking for gcc... gcc
>checking whether we are using GNU C... no
>checking for POSIXized ISC... no
>checking for a BSD compatible install... ./install-sh -c
>checking for ranlib... :
>checking for working const... no
>checking whether cross-compiling... yes
>checking whether byte ordering is bigendian... configure: error: can not run 
>test program while cross compiling
>
>I am not cross compiling!
>(BTW I am able to compile and run it just fine on my Linux box at
>home.) 
>Any help would be appreciated.
>
>-- 
>Liam Healy
>Liam.Healy@nrl.navy.mil
>From healy@camden.nrl.navy.mil Wed Jan 28 15:15:28 1998
Received: from camden.nrl.navy.mil by martigny.ai.mit.edu with ESMTP
        (1.40.112.8/16.2) id AA013058527; Wed, 28 Jan 1998 15:15:27 -0500
Return-Path: <healy@camden.nrl.navy.mil>
Received: (from healy@localhost) by camden.nrl.navy.mil 
(950413.SGI.8.6.12/950213.SGI.AUTOCF) id PAA10627; Wed, 28 Jan 1998 15:15:17 
-0500
Date: Wed, 28 Jan 1998 15:15:17 -0500
Message-Id: <199801282015.PAA10627@camden.nrl.navy.mil>
From: Liam Healy <Liam.Healy@nrl.navy.mil>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: Jim Blandy <jimb@red-bean.com>
Cc: Liam Healy <Liam.Healy@nrl.navy.mil>, scsh-bugs@martigny.ai.mit.edu
Subject: Can't configure scsh 0.5.1 on SGI Irix
In-Reply-To: <199801281948.OAA03739@totoro.red-bean.com>
References: <199801281557.KAA26513@camden.nrl.navy.mil>
        <199801281948.OAA03739@totoro.red-bean.com>
X-Mailer: VM 6.34 under 20.3 "Vatican City" XEmacs  Lucid
Reply-To: Liam Healy <Liam.Healy@nrl.navy.mil>

This is the config.log file:

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

configure:650: gcc -E conftest.c
gcc: installation problem, cannot exec `cpp': No such file or directory
configure:884: gcc -c -g  conftest.c 1>&5
gcc: installation problem, cannot exec `cpp': No such file or directory
configure:917: gcc -o conftest -g   conftest.c  1>&5
gcc: installation problem, cannot exec `cpp': No such file or directory
configure:949: gcc -c -g  conftest.c 1>&5
gcc: installation problem, cannot exec `cpp': No such file or directory


An co-worker who is no longer here installed the gcc compiler and
apparently something got messed up or it wasn't installed right
because it hasn't worked in a while.  Usually, I use the SGI C
compiler; I don't want it to use gcc unless it has to.  How do I tell
it this?

After I sent the first report, I read some scsh documentation that
implied that it wouldn't work on 64 bit systems.  I thought that might 
be my problem but I get the same error on our Irix 5.3 system (which
is 32 bit).


>>>>> "Jim" == Jim Blandy <jimb@red-bean.com> writes:

    Jim> Could you post your config.log file?  Whenever it seems that the
    Jim> configure script is getting something wrong, it is always helpful to
    Jim> include the config.log file in your post.

    Jim> There's some thing weird going on here.  It says you're running gcc,
    Jim> and then decides that you're not using GNU C.  ???

    >> On SGI Irix 6.3 (also tried on 6.2), I cannot configure scsh 0.5.1
    >> 
    >> healy@rex /scsh-0.5.1{47}(10:52am)% ./configure
    >> loading cache ./config.cache
    >> checking host system type... mips-sgi-irix6.3
    >> checking for gcc... gcc
    >> checking whether we are using GNU C... no
    >> checking for POSIXized ISC... no
    >> checking for a BSD compatible install... ./install-sh -c
    >> checking for ranlib... :
    >> checking for working const... no
    >> checking whether cross-compiling... yes
    >> checking whether byte ordering is bigendian... configure: error: can not 
run test program while cross compiling
    >> 
    >> I am not cross compiling!
    >> (BTW I am able to compile and run it just fine on my Linux box at
    >> home.) 
    >> Any help would be appreciated.
    >> 
>From jimb@totoro.red-bean.com Wed Jan 28 16:09:54 1998
Received: from totoro.red-bean.com by martigny.ai.mit.edu with ESMTP
        (1.40.112.8/16.2) id AA029541793; Wed, 28 Jan 1998 16:09:53 -0500
Return-Path: <jimb@totoro.red-bean.com>
Received: (from jimb@localhost)
        by totoro.red-bean.com (8.8.8/8.8.8) id QAA04052;
        Wed, 28 Jan 1998 16:09:50 -0500
Date: Wed, 28 Jan 1998 16:09:50 -0500
Message-Id: <199801282109.QAA04052@totoro.red-bean.com>
From: Jim Blandy <jimb@red-bean.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: Liam Healy <Liam.Healy@nrl.navy.mil>
Cc: Jim Blandy <jimb@red-bean.com>, scsh-bugs@martigny.ai.mit.edu
Subject: Can't configure scsh 0.5.1 on SGI Irix
In-Reply-To: <199801282015.PAA10627@camden.nrl.navy.mil>
References: <199801281557.KAA26513@camden.nrl.navy.mil>
        <199801281948.OAA03739@totoro.red-bean.com>
        <199801282015.PAA10627@camden.nrl.navy.mil>
X-Mailer: VM 6.34 under Emacs 19.34.1


Try typing "CC=cc ./configure".  I think that's how it's done.
>From healy@camden.nrl.navy.mil Wed Jan 28 16:55:34 1998
Received: from camden.nrl.navy.mil by martigny.ai.mit.edu with ESMTP
        (1.40.112.8/16.2) id AA041694532; Wed, 28 Jan 1998 16:55:32 -0500
Return-Path: <healy@camden.nrl.navy.mil>
Received: (from healy@localhost) by camden.nrl.navy.mil 
(950413.SGI.8.6.12/950213.SGI.AUTOCF) id QAA15681; Wed, 28 Jan 1998 16:55:27 
-0500
Date: Wed, 28 Jan 1998 16:55:27 -0500
Message-Id: <199801282155.QAA15681@camden.nrl.navy.mil>
From: Liam Healy <Liam.Healy@nrl.navy.mil>
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="t2ZN2WYqMn"
Content-Transfer-Encoding: 7bit
To: Jim Blandy <jimb@red-bean.com>
Cc: Liam Healy <Liam.Healy@nrl.navy.mil>, scsh-bugs@martigny.ai.mit.edu
Subject: Can't configure scsh 0.5.1 on SGI Irix
In-Reply-To: <199801282109.QAA04052@totoro.red-bean.com>
References: <199801281557.KAA26513@camden.nrl.navy.mil>
        <199801281948.OAA03739@totoro.red-bean.com>
        <199801282015.PAA10627@camden.nrl.navy.mil>
        <199801282109.QAA04052@totoro.red-bean.com>
X-Mailer: VM 6.34 under 20.3 "Vatican City" XEmacs  Lucid
Reply-To: Liam Healy <Liam.Healy@nrl.navy.mil>


--t2ZN2WYqMn
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

>>>>> "Jim" == Jim Blandy <jimb@red-bean.com> writes:

    Jim> Try typing "CC=cc ./configure".  I think that's how it's done.

No, it doesn't work.
However, I've solved the problem by having the system manager delete
the munged installation of gcc, then it just uses the SGI C compiler.


Now, I can configure and make (with warnings; see log file attached)
but I cannot run:

healy@rex /scsh-0.5.1{81}(4:43pm)% ./scshvm -o ./scshvm -i schsh/scsh.image
Can't open heap image file
image file schsh/scsh.image is unusable

Do I really need to have gcc?


--t2ZN2WYqMn
Content-Type: text/plain
Content-Description: The config.log file from trying to configure/compile scsh 
0.5.1
Content-Disposition: attachment;
        filename="config.log"
Content-Transfer-Encoding: 7bit

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

configure:650: cc -E conftest.c
configure:884: cc -c -g  conftest.c 1>&5
configure:917: cc -o conftest -g   conftest.c  1>&5
configure:949: cc -c -g  conftest.c 1>&5
cfe: Error: configure, line 944: Syntax Error
  bogus endian macros
 -------^
configure:995: cc -o conftest -g   conftest.c  1>&5
configure:1195: cc -o conftest -cckr -g   conftest.c -lm   1>&5
configure:1239: cc -o conftest -cckr -g   conftest.c -lgen  -lm  1>&5
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
configure:1283: cc -o conftest -cckr -g   conftest.c -lnsl  -lgen -lm  1>&5
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rejected_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_replymsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1327: cc -o conftest -cckr -g   conftest.c -lsocket  -lnsl -lgen -lm  
1>&5
ld: FATAL 9: I/O error (-lsocket): No such file or directory
configure:1371: cc -o conftest -cckr -g   conftest.c -lelf  -lnsl -lgen -lm  
1>&5
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rejected_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_replymsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1415: cc -o conftest -cckr -g   conftest.c -lld  -lelf -lnsl -lgen 
-lm  1>&5
ld: FATAL 9: I/O error (-lld): No such file or directory
configure:1459: cc -o conftest -cckr -g   conftest.c -ldl  -lelf -lnsl -lgen 
-lm  1>&5
ld: WARNING 84: /usr/lib/libdl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libelf.a is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1503: cc -o conftest -cckr -g   conftest.c -ldld  -ldl -lelf -lnsl 
-lgen -lm  1>&5
ld: FATAL 9: I/O error (-ldld): No such file or directory
configure:1551: cc -c -cckr -g  conftest.c 1>&5
configure:1589: cc -E  conftest.c >/dev/null 2>conftest.out
configure:1637: cc -E  conftest.c >/dev/null 2>conftest.out
configure:1637: cc -E  conftest.c >/dev/null 2>conftest.out
configure:1637: cc -E  conftest.c >/dev/null 2>conftest.out
cfe: Error: configure: 1633: Cannot open file posix/time.h for #include
configure:1637: cc -E  conftest.c >/dev/null 2>conftest.out
configure:1637: cc -E  conftest.c >/dev/null 2>conftest.out
configure:1692: cc -o conftest -cckr -g   conftest.c -ldl -lelf -lnsl -lgen -lm 
 1>&5
ld: WARNING 84: /usr/lib/libdl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libelf.a is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1745: cc -o conftest -cckr -g   conftest.c -ldl -lelf -lnsl -lgen -lm 
 1>&5
ld: WARNING 84: /usr/lib/libdl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libelf.a is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1745: cc -o conftest -cckr -g   conftest.c -ldl -lelf -lnsl -lgen -lm 
 1>&5
ld: WARNING 84: /usr/lib/libdl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libelf.a is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1745: cc -o conftest -cckr -g   conftest.c -ldl -lelf -lnsl -lgen -lm 
 1>&5
ld: WARNING 84: /usr/lib/libdl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libelf.a is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
ld: ERROR 33: Unresolved text symbol "ftime" -- 1st referenced by conftest.o.
ld: INFO 152: Output file removed because of error.
configure:1745: cc -o conftest -cckr -g   conftest.c -ldl -lelf -lnsl -lgen -lm 
 1>&5
ld: WARNING 84: /usr/lib/libdl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rejected_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1745: cc -o conftest -cckr -g   conftest.c -ldl -lelf -lnsl -lgen -lm 
 1>&5
ld: WARNING 84: /usr/lib/libdl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libelf.a is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1745: cc -o conftest -cckr -g   conftest.c -ldl -lelf -lnsl -lgen -lm 
 1>&5
ld: WARNING 84: /usr/lib/libdl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libelf.a is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1745: cc -o conftest -cckr -g   conftest.c -ldl -lelf -lnsl -lgen -lm 
 1>&5
ld: WARNING 84: /usr/lib/libdl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libelf.a is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1798: cc -o conftest -cckr -g   conftest.c -ldl -lelf -lnsl -lgen -lm 
 1>&5
ld: WARNING 84: /usr/lib/libdl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libelf.a is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1798: cc -o conftest -cckr -g   conftest.c -ldl -lelf -lnsl -lgen -lm 
 1>&5
ld: WARNING 84: /usr/lib/libdl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libelf.a is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libnsl.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libgen.so is not used for resolving any symbol.
ld: WARNING 84: /usr/lib/libm.so is not used for resolving any symbol.
ld: WARNING 134: weak definition of ffs in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _ffs in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_create_vers in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_create_vers in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perror in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_sperrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_perrno in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_perrno in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_spcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_pcreateerror in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntraw_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clntraw_create in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of callrpc in /usr/lib/libnsl.so preempts that 
weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _callrpc in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnttcp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_bufcreate in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clntudp_create in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2user in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2user in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _netname2host in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of netname2host in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of getnetname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _getnetname in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of user2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of host2netname in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_set in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_unset in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_getmaps in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getmaps in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_getport in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmap in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_pmaplist in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _pmap_rmtcall in /usr/lib/libnsl.so preempts that 
definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of pmap_rmtcall in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcall_args in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_rmtcallres in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of clnt_broadcast in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _clnt_broadcast in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_callmsg in /usr/lib/libnsl.so preempts 
that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_opaque_auth in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_des_block in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: WARNING 85: definition of _xdr_des_block in /usr/lib/libnsl.so preempts 
that definition in /usr/lib/libc.so.
ld: WARNING 134: weak definition of xdr_accepted_reply in /usr/lib/libnsl.so 
preempts that weak definition in /usr/lib/libc.so.
ld: Giving up after printing 50 warnings.  Use -wall to print all warnings.
configure:1946: cc -c -cckr -g  conftest.c 1>&5
configure:1980: cc -c -cckr -g  conftest.c 1>&5
configure:2015: cc -c -cckr -g  conftest.c 1>&5
configure:2050: cc -c -cckr -g  conftest.c 1>&5
cfe: Error: configure, line 2046: 'tm_gmtoff' undefined; reoccurrences will not 
be reported.
                    return time.tm_gmtoff;
                ---------------^
cfe: Error: configure, line 2046: member of structure or union required
                    return time.tm_gmtoff;
                ----------------^
configure:2085: cc -c -cckr -g  conftest.c 1>&5
cfe: Error: configure, line 2081: redeclaration of 'sys_errlist'; previous 
declaration at line 42 in file '/usr/include/errno.h'
 const extern char *sys_errlist[];
 -------------------^

--t2ZN2WYqMn--
>From kaplan@lombric.s-ip.eunet.fr Mon Feb  2 12:41:48 1998
Received: from lombric.s-ip.eunet.fr by martigny.ai.mit.edu with ESMTP
        (1.40.112.8/16.2) id AA213531292; Mon, 2 Feb 1998 12:41:32 -0500
Return-Path: <kaplan@lombric.s-ip.eunet.fr>
Received: (from kaplan@localhost)
        by lombric.s-ip.eunet.fr (8.8.5/8.8.5) id SAA18182;
        Mon, 2 Feb 1998 18:38:42 +0100
To: scsh@martigny.ai.mit.edu
Subject: subscribe scsh
X-Face: C!5Mk_!qB]35}VpD|H>GN/@fk%~7:*/x8&~\]|r|)/zV?rJ){uX4Nh`a$L/z__Kx4Gt!mDU
 3kZlj)F2]Ds$?l';SO9]v^|[i2nY`pZ+mu+HT%5ITkuP#e]@8F4@Hc.=]oN1+d\M@Rl>-$C?h$yntf
 -JVx)3L2}VzG.!bQEy]~I_3fup`HtZ^t/Iz.|Vh$~o`^g\
From: Kim-Minh Kaplan <KimMinh.Kaplan@utopia.eunet.fr>
Date: 02 Feb 1998 18:38:41 +0100
Message-Id: <yg44t2hykim.fsf@lombric.s-ip.eunet.fr>
Lines: 1
X-Mailer: Quassia Gnus v0.22/XEmacs 20.3 - "Vatican City"
X-Emacs: 20.3 "Vatican City" XEmacs  Lucid without mule
Mime-Version: 1.0 (generated by SEMI MIME-Edit 0.91 - "Hinomiko")
Content-Type: text/plain; charset=US-ASCII

subscribe scsh
>From ram@concentra.com Mon Feb  2 13:48:35 1998
Received: from concentra.com (ctramailhost.concentra.com) by 
martigny.ai.mit.edu with ESMTP
        (1.40.112.8/16.2) id AA228815314; Mon, 2 Feb 1998 13:48:34 -0500
Return-Path: <ram@concentra.com>
Received: from bombay.icad by concentra.com (8.8.7/SMI-SVR4)
        id NAA06197; Mon, 2 Feb 1998 13:48:27 -0500 (EST)
Received: by bombay.icad (SMI-8.6/SMI-SVR4)
        id NAA00577; Mon, 2 Feb 1998 13:41:25 -0500
Date: Mon, 2 Feb 1998 13:41:25 -0500
From: "G.L. Ramamohan" <ram@concentra.com>
Message-Id: <199802021841.NAA00577@bombay.icad>
To: scsh@martigny.ai.mit.edu
Subject: unsubscibe scsh
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Md5: s9oisRW524Lt1qv0u3hEcg==

unsubscribe scsh
>From gohjinsi@iscs.nus.edu.sg Tue Feb  3 23:03:47 1998
Received: from netman.iscs.nus.sg by martigny.ai.mit.edu with ESMTP
        (1.40.112.8/16.2) id AA003845025; Tue, 3 Feb 1998 23:03:45 -0500
Return-Path: <gohjinsi@iscs.nus.edu.sg>
Received: from decunx.iscs.nus.sg (gohjinsi@decunx.iscs.nus.sg [137.132.90.9])
        by netman.iscs.nus.sg (8.8.5/8.8.5) with ESMTP id MAA01168;
        Wed, 4 Feb 1998 12:03:38 +0800 (GMT+0800)
Received: from localhost (gohjinsi@localhost)
        by decunx.iscs.nus.sg (8.8.5/8.8.5) with SMTP id MAA23894;
        Wed, 4 Feb 1998 12:03:35 +0800 (SST)
Date: Wed, 4 Feb 1998 12:03:35 +0800 (SST)
From: GJS <gohjinsi@iscs.nus.edu.sg>
X-Sender: gohjinsi@decunx.iscs.nus.sg
To: "G.L. Ramamohan" <ram@concentra.com>
Cc: scsh@martigny.ai.mit.edu
Subject:  unsubscibe scsh
In-Reply-To: <199802021841.NAA00577@bombay.icad>
Message-Id: <Pine.OSF.3.96.980204120310.14403B-100000@decunx.iscs.nus.sg>
Mime-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII


Please unsubscribe me from the list too!

<Prev in Thread] Current Thread [Next in Thread>
  • Gagging s48, Rolf-Thomas Happe <=