mirror of git://anongit.mindrot.org/openssh.git
- (bal) Renamed sigaction.[ch] to sigact.[ch]. Causes problems with
some platforms.
This commit is contained in:
parent
65981156b8
commit
803f16cbe4
|
@ -1,6 +1,8 @@
|
|||
20010224
|
||||
- (bal) pam_stack fix to correctly detect between RH7 and older RHs.
|
||||
Patch by Pekka Savola <pekkas@netcore.fi>
|
||||
- (bal) Renamed sigaction.[ch] to sigact.[ch]. Causes problems with
|
||||
some platforms.
|
||||
|
||||
20010223
|
||||
- (bal) Fix --define rh7 in openssh.spec file. Patch by Steve Tell
|
||||
|
@ -4110,4 +4112,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.816 2001/02/24 00:05:29 mouring Exp $
|
||||
$Id: ChangeLog,v 1.817 2001/02/24 00:24:19 mouring Exp $
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile.in,v 1.5 2001/02/09 01:55:36 djm Exp $
|
||||
# $Id: Makefile.in,v 1.6 2001/02/24 00:24:20 mouring Exp $
|
||||
|
||||
sysconfdir=@sysconfdir@
|
||||
piddir=@piddir@
|
||||
|
@ -16,7 +16,7 @@ RANLIB=@RANLIB@
|
|||
INSTALL=@INSTALL@
|
||||
LDFLAGS=-L. @LDFLAGS@
|
||||
|
||||
OPENBSD=base64.o bindresvport.o daemon.o getcwd.o getgrouplist.o inet_aton.o inet_ntoa.o mktemp.o realpath.o rresvport.o setenv.o setproctitle.o sigaction.o strlcat.o strlcpy.o strmode.o strsep.o strtok.o vis.o
|
||||
OPENBSD=base64.o bindresvport.o daemon.o getcwd.o getgrouplist.o inet_aton.o inet_ntoa.o mktemp.o realpath.o rresvport.o setenv.o setproctitle.o sigact.o strlcat.o strlcpy.o strmode.o strsep.o strtok.o vis.o
|
||||
|
||||
COMPAT=bsd-arc4random.o bsd-cygwin_util.o bsd-misc.o bsd-nextstep.o bsd-snprintf.o bsd-waitpid.o fake-getaddrinfo.o fake-getnameinfo.o
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: openbsd-compat.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
|
||||
/* $Id: openbsd-compat.h,v 1.3 2001/02/24 00:24:20 mouring Exp $ */
|
||||
|
||||
#ifndef _OPENBSD_H
|
||||
#define _OPENBSD_H
|
||||
|
@ -16,7 +16,7 @@
|
|||
#include "mktemp.h"
|
||||
#include "daemon.h"
|
||||
#include "base64.h"
|
||||
#include "sigaction.h"
|
||||
#include "sigact.h"
|
||||
#include "inet_aton.h"
|
||||
#include "inet_ntoa.h"
|
||||
#include "strsep.h"
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
|
||||
#include <signal.h>
|
||||
#include "config.h"
|
||||
#include "sigaction.h"
|
||||
#include "sigact.h"
|
||||
|
||||
/* This file provides sigaction() emulation using sigvec() */
|
||||
/* Use only if this is non POSIX system */
|
Loading…
Reference in New Issue