On Thu, Mar 28, 2002 at 03:00:03PM +0100, H.Merijn Brand wrote:
> On Thu 28 Mar 2002 13:23, Abigail <[EMAIL PROTECTED]> wrote:
> > Automated smoke report for patch 15544 on solaris - 2.8
> >           v1.12      using gcc version 2.95.2 19991024 (release)
> > O = OK
> > F = Failure(s), extended report at the bottom
> > ? = still running or test results not (yet) available
> > Build failures during:       - = unknown
> >     c = Configure, m = make, t = make test-prep
> > 
> >          Configuration
> > -------  --------------------------------------------------------------------
> > O O ? ? -Uuseperlio
> > O O ? ? -Duseperlio
> > O O ? ? -Duseperlio -Duse64bitint
> > O O ? ? -Duseperlio -Duselongdouble
> > c c ? ? -Duseperlio -Duse64bitall -Duselongdouble
> > m m ? ? -Dusethreads -Duseithreads -Uuseperlio
> > m m ? ? -Dusethreads -Duseithreads -Duseperlio
> > m m ? ? -Dusethreads -Duseithreads -Duseperlio -Duse64bitint
> > m m ? ? -Dusethreads -Duseithreads -Duseperlio -Duselongdouble
> 
> Because of 'as' you say? What does *your* crypt.h look like?

'as' was just a guess.

Here's what my crypt.h looks like (not that the 'make' gives any
error or warning refering to crypt.h):


/*      Copyright (c) 1988 AT&T */
/*        All Rights Reserved   */

/*      THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T     */
/*      The copyright notice above does not evidence any        */
/*      actual or intended publication of such source code.     */

#ifndef _CRYPT_H
#define _CRYPT_H

#pragma ident   "@(#)crypt.h    1.10    92/09/14 SMI"   /* SVr4.0 1.1   */

#ifdef  __cplusplus
extern "C" {
#endif

/* Password and file encryption functions */

#if defined(__STDC__)
extern char *crypt(const char *, const char *);
extern int crypt_close(int *);
extern char *des_crypt(const char *, const char *);
extern void des_encrypt(char *, int);
extern void des_setkey(const char *);
extern void encrypt(char *, int);
extern int run_crypt(long, char *, unsigned, int *);
extern int run_setkey(int *, const char *);
extern void setkey(const char *);
#else
extern char *crypt();
extern int crypt_close();
extern char *des_crypt();
extern void des_encrypt();
extern void des_setkey();
extern void encrypt();
extern int run_crypt();
extern int run_setkey();
extern void setkey();
#endif

#ifdef  __cplusplus
}
#endif

#endif  /* _CRYPT_H */

Reply via email to