From herrera@canaima.ME.Berkeley.EDU Sat Oct 19 06:21:36 1996
Received: from MIT.EDU (SOUTH-STATION-ANNEX.MIT.EDU [18.72.1.2]) by rt-11.MIT.EDU (8.7.5/8.7.3) with SMTP id GAA23002 for <bugs@RT-11.MIT.EDU>; Sat, 19 Oct 1996 06:21:35 -0400
Received: from canaima.ME.Berkeley.EDU by MIT.EDU with SMTP
id AA24672; Sat, 19 Oct 96 06:21:34 EDT
Received: by canaima.ME.Berkeley.EDU (AIX 4.1/UCB 5.64/4.03)
id AA34932; Sat, 19 Oct 1996 03:21:38 -0700
Message-Id: <9610191021.AA34932@canaima.ME.Berkeley.EDU>
Date: Sat, 19 Oct 1996 03:21:38 -0700
From: herrera@canaima.ME.Berkeley.EDU (Ramon F Herrera)
To: krb5-bugs@MIT.EDU
Subject: A small problem found during the make
OS: AIX 4.1.4.0
vendor-provided make
gcc version 2.7.2
Kerberos version: krb5-beta7
When I executed the 'make' I got the following error message:
-------------------------------------------------------------
In file included from gssapiP_generic.h:38,
from ./disp_com_err_status.c:27:
gssapi_generic.h:33: gssapi/gssapi.h: No such file or directory
-------------------------------------------------------------
Which was caused by the following instructions in the file
lib/gssapi/generic/gssapi_generic.h
#if defined(__MWERKS__) || defined(applec) || defined(THINK_C)
#include <gssapi.h>
#else
#include <gssapi/gssapi.h> <== This line was being executed
#endif
-------------------------------------------------------------
I fixed the problem by doing this:
% cd lib/gssapi/generic
% mkdir gssapi
% ln gssapi.h generic/
-------------------------------------------------------------
I got other messages in stderr but they were just warnings
and the 'make check' finished Ok.
I also got a bunch of errors like the one included below.
I am not sure if it is a real problem.
If you want me to run some test, please let me know.
Regards,
-Ramon F. Herrera
-------------------------------------------------------------
In file included from pty-int.h:55,
from ./cleanup.c:22:
/usr/include/sys/stream.h:404: warning: `struct uio' declared inside parameter list
/usr/include/sys/stream.h:404: warning: its scope is only this definition or declaration,
/usr/include/sys/stream.h:404: warning: which is probably not what you want.
/usr/include/sys/stream.h:405: warning: `struct uio' declared inside parameter list
State-Changed-From-To: open-feedback
State-Changed-By: tlyu
State-Changed-When: Thu Nov 7 11:23:20 1996
State-Changed-Why:
Part of this is a known bug (l-r dependency ordering). The rest of it
may well be an AIX bug. Need more input from the user.
Responsible-Changed-From-To: gnats-admin->tlyu
Responsible-Changed-By: tlyu
Responsible-Changed-When: Thu Nov 7 11:28:35 1996
Responsible-Changed-Why:
I'm investigating; maybe someone who knows AIX better should deal,
though.
From: Tom Yu <tlyu@MIT.EDU>
To: herrera@canaima.ME.Berkeley.EDU
Cc: krb5-bugs@MIT.EDU
Subject: Re: krb5-misc/121: A small problem found during the make
Date: Thu, 7 Nov 1996 11:28:14 -0500
Hi... can you send us the offending lines of your sys/stream.h, and a
few lines around it? I suspect you may be running into gcc flaming
abou the system includes, and nothing much more.
As for the gssapi/generic/gssapi.h problem, it has already been
addressed in our sources. The Makefiles were relying on left-to-right
ordering of dependencies, thus causing some lossage such as you are
describing.
---Tom
State-Changed-From-To: feedback-closed
State-Changed-By: hartmans
State-Changed-When: Wed Apr 10 15:54:50 2002
State-Changed-Why:
User has not responded in several years.
Received: from MIT.EDU (SOUTH-STATION-ANNEX.MIT.EDU [18.72.1.2]) by rt-11.MIT.EDU (8.7.5/8.7.3) with SMTP id GAA23002 for <bugs@RT-11.MIT.EDU>; Sat, 19 Oct 1996 06:21:35 -0400
Received: from canaima.ME.Berkeley.EDU by MIT.EDU with SMTP
id AA24672; Sat, 19 Oct 96 06:21:34 EDT
Received: by canaima.ME.Berkeley.EDU (AIX 4.1/UCB 5.64/4.03)
id AA34932; Sat, 19 Oct 1996 03:21:38 -0700
Message-Id: <9610191021.AA34932@canaima.ME.Berkeley.EDU>
Date: Sat, 19 Oct 1996 03:21:38 -0700
From: herrera@canaima.ME.Berkeley.EDU (Ramon F Herrera)
To: krb5-bugs@MIT.EDU
Subject: A small problem found during the make
Show quoted text
>Number: 121
>Category: krb5-build
>Synopsis: A small problem found during the make
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: tlyu
>State: closed
>Class: sw-bug
>Submitter-Id: unknown
>Arrival-Date: Sat Oct e 06:22:01 EDT 1996
>Last-Modified: Wed Apr 10 15:55:02 EDT 2002
>Originator: herrera@canaima.ME.Berkeley.EDU (Ramon F Herrera)
>Organization:
>Release:
>Environment:
>Description:
Hardware: IBM RS/6000>Category: krb5-build
>Synopsis: A small problem found during the make
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: tlyu
>State: closed
>Class: sw-bug
>Submitter-Id: unknown
>Arrival-Date: Sat Oct e 06:22:01 EDT 1996
>Last-Modified: Wed Apr 10 15:55:02 EDT 2002
>Originator: herrera@canaima.ME.Berkeley.EDU (Ramon F Herrera)
>Organization:
>Release:
>Environment:
>Description:
OS: AIX 4.1.4.0
vendor-provided make
gcc version 2.7.2
Kerberos version: krb5-beta7
When I executed the 'make' I got the following error message:
-------------------------------------------------------------
In file included from gssapiP_generic.h:38,
from ./disp_com_err_status.c:27:
gssapi_generic.h:33: gssapi/gssapi.h: No such file or directory
-------------------------------------------------------------
Which was caused by the following instructions in the file
lib/gssapi/generic/gssapi_generic.h
#if defined(__MWERKS__) || defined(applec) || defined(THINK_C)
#include <gssapi.h>
#else
#include <gssapi/gssapi.h> <== This line was being executed
#endif
-------------------------------------------------------------
I fixed the problem by doing this:
% cd lib/gssapi/generic
% mkdir gssapi
% ln gssapi.h generic/
-------------------------------------------------------------
I got other messages in stderr but they were just warnings
and the 'make check' finished Ok.
I also got a bunch of errors like the one included below.
I am not sure if it is a real problem.
If you want me to run some test, please let me know.
Regards,
-Ramon F. Herrera
-------------------------------------------------------------
In file included from pty-int.h:55,
from ./cleanup.c:22:
/usr/include/sys/stream.h:404: warning: `struct uio' declared inside parameter list
/usr/include/sys/stream.h:404: warning: its scope is only this definition or declaration,
/usr/include/sys/stream.h:404: warning: which is probably not what you want.
/usr/include/sys/stream.h:405: warning: `struct uio' declared inside parameter list
Show quoted text
>How-To-Repeat:
>Fix:
>Audit-Trail:
>Fix:
>Audit-Trail:
State-Changed-From-To: open-feedback
State-Changed-By: tlyu
State-Changed-When: Thu Nov 7 11:23:20 1996
State-Changed-Why:
Part of this is a known bug (l-r dependency ordering). The rest of it
may well be an AIX bug. Need more input from the user.
Responsible-Changed-From-To: gnats-admin->tlyu
Responsible-Changed-By: tlyu
Responsible-Changed-When: Thu Nov 7 11:28:35 1996
Responsible-Changed-Why:
I'm investigating; maybe someone who knows AIX better should deal,
though.
From: Tom Yu <tlyu@MIT.EDU>
To: herrera@canaima.ME.Berkeley.EDU
Cc: krb5-bugs@MIT.EDU
Subject: Re: krb5-misc/121: A small problem found during the make
Date: Thu, 7 Nov 1996 11:28:14 -0500
Hi... can you send us the offending lines of your sys/stream.h, and a
few lines around it? I suspect you may be running into gcc flaming
abou the system includes, and nothing much more.
As for the gssapi/generic/gssapi.h problem, it has already been
addressed in our sources. The Makefiles were relying on left-to-right
ordering of dependencies, thus causing some lossage such as you are
describing.
---Tom
State-Changed-From-To: feedback-closed
State-Changed-By: hartmans
State-Changed-When: Wed Apr 10 15:54:50 2002
State-Changed-Why:
User has not responded in several years.
Show quoted text
>Unformatted: