mirror of git://anongit.mindrot.org/openssh.git
[configure.ac] SCO3 needs -lcrypt_i for -lprot
This commit is contained in:
parent
149543e56d
commit
e8c898a54f
|
@ -24,6 +24,7 @@
|
||||||
- (djm) Crank RPM spec versions
|
- (djm) Crank RPM spec versions
|
||||||
- (dtucker) [README] Add pointer to release notes. ok djm@
|
- (dtucker) [README] Add pointer to release notes. ok djm@
|
||||||
- (dtucker) {README.platform] Add platform-specific notes.
|
- (dtucker) {README.platform] Add platform-specific notes.
|
||||||
|
- (tim) [configure.ac] SCO3 needs -lcrypt_i for -lprot
|
||||||
|
|
||||||
20040223
|
20040223
|
||||||
- (dtucker) [session.c] Bug #789: Only make setcred call for !privsep in the
|
- (dtucker) [session.c] Bug #789: Only make setcred call for !privsep in the
|
||||||
|
@ -1927,4 +1928,4 @@
|
||||||
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
||||||
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3255 2004/02/24 05:14:41 dtucker Exp $
|
$Id: ChangeLog,v 1.3256 2004/02/24 05:47:04 tim Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.ac,v 1.201 2004/02/23 23:37:33 dtucker Exp $
|
# $Id: configure.ac,v 1.202 2004/02/24 05:47:04 tim Exp $
|
||||||
|
|
||||||
AC_INIT
|
AC_INIT
|
||||||
AC_CONFIG_SRCDIR([ssh.c])
|
AC_CONFIG_SRCDIR([ssh.c])
|
||||||
|
@ -336,7 +336,7 @@ mips-sony-bsd|mips-sony-newsos4)
|
||||||
;;
|
;;
|
||||||
*-*-sco3.2v4*)
|
*-*-sco3.2v4*)
|
||||||
CPPFLAGS="$CPPFLAGS -Dftruncate=chsize"
|
CPPFLAGS="$CPPFLAGS -Dftruncate=chsize"
|
||||||
LIBS="$LIBS -los -lprot -lx -ltinfo -lm"
|
LIBS="$LIBS -los -lprot -lcrypt_i -lx -ltinfo -lm"
|
||||||
RANLIB=true
|
RANLIB=true
|
||||||
no_dev_ptmx=1
|
no_dev_ptmx=1
|
||||||
AC_DEFINE(BROKEN_SYS_TERMIO_H)
|
AC_DEFINE(BROKEN_SYS_TERMIO_H)
|
||||||
|
|
Loading…
Reference in New Issue