[2978] in Release_Engineering
Re: libacl.c in the neos sources
daemon@ATHENA.MIT.EDU (brlewis@Athena.MIT.EDU)
Mon Feb 15 14:14:55 1993
From: brlewis@Athena.MIT.EDU
Date: Mon, 15 Feb 93 14:14:49 -0500
To: epeisach@Athena.MIT.EDU
Cc: rel-eng@Athena.MIT.EDU, bugs@Athena.MIT.EDU
In-Reply-To: epeisach@Athena.MIT.EDU's message of Mon, 15 Feb 93 14:05:48 -0500 <9302151905.AA27834@paris>
From: epeisach@Athena.MIT.EDU
Date: Mon, 15 Feb 93 14:05:48 -0500
You specified a change to an Imakefile to cause libacl.c to be compiled
in neos. libacl.c however, does not compile on the decstations (TRUE &
FALSE are undefined).
You should send in a fix.
Ezra
*** /source/athena/athena.lib/neos/lib/libacl.c Tue Feb 2 06:24:30 1993
--- libacl.c Mon Feb 15 14:11:44 1993
***************
*** 27,32 ****
--- 27,37 ----
#include <netdb.h>
#include "memory.h"
+ #ifndef TRUE
+ #define TRUE (1)
+ #define FALSE (0)
+ #endif
+
/* If ACL_ALREADY != 0, it is considered a failure to try to add
* a principal to an acl that already contains it or to delete a
* principal from an acl that doesn't contain it.