owner-htdig@sdsu.edu
Tue, 1 Dec 1998 08:35:04 -0800 (PST)
>From andrew@contigo.com Tue Dec 1 08:35:01 1998
Received: from mail.pittstate.edu (mail.pittstate.edu [198.182.243.14])
by sdsu.edu (8.8.7/8.8.7) with ESMTP id IAA18714
for <htdig@sdsu.edu>; Tue, 1 Dec 1998 08:34:48 -0800 (PST)
Received: from pittstate.edu (scottp-pc.pittstate.edu [198.248.209.177])
by mail.pittstate.edu (8.9.1a/8.9.1) with ESMTP id KAA40122
for <htdig@sdsu.edu>; Tue, 1 Dec 1998 10:34:30 -0600
Sender: ssparish@mail.pittstate.edu
Message-ID: <36641A9A.309A4D64@pittstate.edu>
Date: Tue, 01 Dec 1998 16:34:34 +0000
From: Scott Parish <ssparish@pittstate.edu>
Organization: Pittsburg State University
X-Mailer: Mozilla 4.5 [en] (X11; I; Linux 2.0.35 i586)
X-Accept-Language: en
MIME-Version: 1.0
To: htdig@sdsu.edu
Subject: Compiling Problem 3.1.0b2
under AIX 4.2
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Transfer-Encoding: 7bit
I've got a compilation problem that I hope someone can help with. I'm
attempting to compile 3.1.0b2 under AIX 4.2 using IBM's C/C++ compiler.
I have successfully compiled 3.0.8b2 using the same tools.
Anyway the compilation ends with the following:
"Connection.cc", line 406.11: 1540-013: (S) "bzero" is undefined.
The section of code in Connection.cc that is being complained about
follows:
int Connection::read_partial(char *buffer, int maxlength)
[...some code deleted...]
if (timeout_value > 0) {
fd_set fds;
--> FD_ZERO(&fds);
FD_SET(sock, &fds);
timeval tv;
tv.tv_sec = timeout_value;
tv.tv_usec = 0;
int selected = ::select(sock+1, &fds, 0, 0, &tv);
if (selected <= 0)
need_io_stop++;
}
FD_ZERO looks like a macro or a function of some sort to me, but I can
not find a reference to it anywhere, same with FD_SET. Can anyone point
me to where these are defined?
-- Scott Parish The Truth is out there. ssparish@pittstate.edu John 14:6
This archive was generated by hypermail 2.0b3 on Sat Jan 02 1999 - 16:29:44 PST