mirror of
https://github.com/bstansell/conserver.git
synced 2025-03-12 07:24:01 +00:00
Merge branch 'release-v8.2.3'
This commit is contained in:
commit
d330a25f97
13
CHANGES
13
CHANGES
@ -1,6 +1,19 @@
|
|||||||
CHANGES
|
CHANGES
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
version 8.2.3 (March 17, 2019):
|
||||||
|
- Correct 'impi' typo (Ed Maste <emaste@freebsd.org>)
|
||||||
|
- Correct argument type passed to time() (Ed Maste <emaste@freebsd.org>)
|
||||||
|
- Fix compilation without deprecated OpenSSL APIs (Rosen Penev <rosenp@gmail.com>)
|
||||||
|
- Fix compilation without deprecated OpenSSL 1.1 APIs (Rosen Penev <rosenp@gmail.com>)
|
||||||
|
- Fix #6 - clang "-Wstring-plus-int" warning (Bryan Stansell <bryan@conserver.com>)
|
||||||
|
- configure.in: Add test for closefrom (Ed Maste <emaste@freebsd.org>)
|
||||||
|
- regenerate autoconf files (Ed Maste <emaste@freebsd.org>)
|
||||||
|
- Use closefrom if available (Ed Maste <emaste@freebsd.org>)
|
||||||
|
- Correct typo (Ed Maste <emaste@freebsd.org>)
|
||||||
|
- Add Cirrus-CI FreeBSD CI build config (Ed Maste <emaste@freebsd.org>)
|
||||||
|
- off by one found by Ed Maste (Bryan Stansell <bryan@conserver.com>)
|
||||||
|
|
||||||
version 8.2.2 (May 28, 2018):
|
version 8.2.2 (May 28, 2018):
|
||||||
- fixes for OpenSSL 1.1+ - patch by Eneas U de Queiroz
|
- fixes for OpenSSL 1.1+ - patch by Eneas U de Queiroz
|
||||||
<cote2004-github@yahoo.com>
|
<cote2004-github@yahoo.com>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.TH CONSERVER.CF 5 "2018/05/28" "conserver-8.2.2" "conserver"
|
.TH CONSERVER.CF 5 "2019/03/17" "conserver-8.2.3" "conserver"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
conserver.cf \- console configuration file for
|
conserver.cf \- console configuration file for
|
||||||
.BR conserver (8)
|
.BR conserver (8)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.TH CONSERVER.PASSWD 5 "2018/05/28" "conserver-8.2.2" "conserver"
|
.TH CONSERVER.PASSWD 5 "2019/03/17" "conserver-8.2.3" "conserver"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
conserver.passwd \- user access information for
|
conserver.passwd \- user access information for
|
||||||
.BR conserver (8)
|
.BR conserver (8)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.TH CONSERVER 8 "2018/05/28" "conserver-8.2.2" "conserver"
|
.TH CONSERVER 8 "2019/03/17" "conserver-8.2.3" "conserver"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
conserver \- console server daemon
|
conserver \- console server daemon
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -14,6 +14,6 @@ All rights reserved.\n"
|
|||||||
|
|
||||||
#define VERSION_MAJOR 8
|
#define VERSION_MAJOR 8
|
||||||
#define VERSION_MINOR 2
|
#define VERSION_MINOR 2
|
||||||
#define VERSION_REV 2
|
#define VERSION_REV 3
|
||||||
#define VERSION_TEXT "conserver.com version"
|
#define VERSION_TEXT "conserver.com version"
|
||||||
#define VERSION_UINT (VERSION_MAJOR * 1000000 + VERSION_MINOR * 1000 + VERSION_REV)
|
#define VERSION_UINT (VERSION_MAJOR * 1000000 + VERSION_MINOR * 1000 + VERSION_REV)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.TH CONSOLE 1 "2018/05/28" "conserver-8.2.2" "conserver"
|
.TH CONSOLE 1 "2019/03/17" "conserver-8.2.3" "conserver"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
console \- console server client program
|
console \- console server client program
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
%define pkg conserver
|
%define pkg conserver
|
||||||
%define ver 8.2.2
|
%define ver 8.2.3
|
||||||
|
|
||||||
# define the name of the machine on which the main conserver
|
# define the name of the machine on which the main conserver
|
||||||
# daemon will be running if you don't want to use the default
|
# daemon will be running if you don't want to use the default
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
PKG="conserver"
|
PKG="conserver"
|
||||||
NAME="Console server and client"
|
NAME="Console server and client"
|
||||||
CATEGORY="system"
|
CATEGORY="system"
|
||||||
VERSION="8.2.2"
|
VERSION="8.2.3"
|
||||||
DESC="Console server and client"
|
DESC="Console server and client"
|
||||||
CLASSES=none
|
CLASSES=none
|
||||||
ARCH=sparc
|
ARCH=sparc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user