mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
- (dtucker) [openbsd-compat/port-aix.h] Use the HAVE_DECL_* definitions as
per the autoconf man page. Configure should always define them but it doesn't hurt to check.
This commit is contained in:
parent
fd33328a25
commit
5d72a40d67
@ -7,6 +7,9 @@
|
|||||||
its presence before doing AC_FUNC_GETPGRP.
|
its presence before doing AC_FUNC_GETPGRP.
|
||||||
- (dtucker) [configure.ac] Merge HP-UX blocks into a common block with minor
|
- (dtucker) [configure.ac] Merge HP-UX blocks into a common block with minor
|
||||||
version-specific variations as required.
|
version-specific variations as required.
|
||||||
|
- (dtucker) [openbsd-compat/port-aix.h] Use the HAVE_DECL_* definitions as
|
||||||
|
per the autoconf man page. Configure should always define them but it
|
||||||
|
doesn't hurt to check.
|
||||||
|
|
||||||
20050527
|
20050527
|
||||||
- (djm) [defines.h] Use our realpath if we have to define PATH_MAX, spotted by
|
- (djm) [defines.h] Use our realpath if we have to define PATH_MAX, spotted by
|
||||||
@ -2625,4 +2628,4 @@
|
|||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3796 2005/05/28 08:31:42 dtucker Exp $
|
$Id: ChangeLog,v 1.3797 2005/05/28 10:28:39 dtucker Exp $
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
/* $Id: port-aix.h,v 1.25 2005/03/21 11:46:34 dtucker Exp $ */
|
/* $Id: port-aix.h,v 1.26 2005/05/28 10:28:40 dtucker Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
* Copyright (c) 2001 Gert Doering. All rights reserved.
|
* Copyright (c) 2001 Gert Doering. All rights reserved.
|
||||||
|
* Copyright (c) 2004, 2005 Darren Tucker. All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
@ -47,23 +48,23 @@
|
|||||||
|
|
||||||
/* These should be in the system headers but are not. */
|
/* These should be in the system headers but are not. */
|
||||||
int usrinfo(int, char *, int);
|
int usrinfo(int, char *, int);
|
||||||
#if (HAVE_DECL_SETAUTHDB == 0)
|
#if defined(HAVE_DECL_SETAUTHDB) && (HAVE_DECL_SETAUTHDB == 0)
|
||||||
int setauthdb(const char *, char *);
|
int setauthdb(const char *, char *);
|
||||||
#endif
|
#endif
|
||||||
/* these may or may not be in the headers depending on the version */
|
/* these may or may not be in the headers depending on the version */
|
||||||
#if (HAVE_DECL_AUTHENTICATE == 0)
|
#if defined(HAVE_DECL_AUTHENTICATE) && (HAVE_DECL_AUTHENTICATE == 0)
|
||||||
int authenticate(char *, char *, int *, char **);
|
int authenticate(char *, char *, int *, char **);
|
||||||
#endif
|
#endif
|
||||||
#if (HAVE_DECL_LOGINFAILED == 0)
|
#if defined(HAVE_DECL_LOGINFAILED) && (HAVE_DECL_LOGINFAILED == 0)
|
||||||
int loginfailed(char *, char *, char *);
|
int loginfailed(char *, char *, char *);
|
||||||
#endif
|
#endif
|
||||||
#if (HAVE_DECL_LOGINRESTRICTIONS == 0)
|
#if defined(HAVE_DECL_LOGINRESTRICTIONS) && (HAVE_DECL_LOGINRESTRICTIONS == 0)
|
||||||
int loginrestrictions(char *, int, char *, char **);
|
int loginrestrictions(char *, int, char *, char **);
|
||||||
#endif
|
#endif
|
||||||
#if (HAVE_DECL_LOGINSUCCESS == 0)
|
#if defined(HAVE_DECL_LOGINSUCCESS) && (HAVE_DECL_LOGINSUCCESS == 0)
|
||||||
int loginsuccess(char *, char *, char *, char **);
|
int loginsuccess(char *, char *, char *, char **);
|
||||||
#endif
|
#endif
|
||||||
#if (HAVE_DECL_PASSWDEXPIRED == 0)
|
#if defined(HAVE_DECL_PASSWDEXPIRED) && (HAVE_DECL_PASSWDEXPIRED == 0)
|
||||||
int passwdexpired(char *, char **);
|
int passwdexpired(char *, char **);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user