aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.sbin/sshd
Commit message (Collapse)AuthorAgeFilesLines
...
* Update for 3.6.1p1; also remove Kerberos IV shims.Dag-Erling Smørgrav2003-04-231-9/+2
| | | | Notes: svn path=/head/; revision=113915
* ia64 and sparc64 both have libc_r now.Dag-Erling Smørgrav2003-01-091-2/+1
| | | | Notes: svn path=/head/; revision=108993
* Don't build auth-pam.c and auth2-pam.c, auth2-pam-freebsd.c is all we need.Dag-Erling Smørgrav2002-12-141-1/+8
| | | | | | | | | | Use pthreads for PAM if the platform supports it and the user asked for it (by setting OPENSSH_USE_POSIX_THREADS) Sponsored by: DARPA, NAI Labs Notes: svn path=/head/; revision=107862
* No guts, no glory. Switch to OpenSSH-portable.Dag-Erling Smørgrav2002-06-251-5/+5
| | | | | | | Sponsored by: DARPA, NAI Labs Notes: svn path=/head/; revision=98820
* Install the new man pages.Dag-Erling Smørgrav2002-06-231-1/+1
| | | | Notes: svn path=/head/; revision=98707
* Update Makefiles for OpenSSH 3.3.Dag-Erling Smørgrav2002-06-231-3/+6
| | | | Notes: svn path=/head/; revision=98685
* Milestone #1 in cross-arch make releases.Ruslan Ermilov2002-04-261-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Do not install games and profiled libraries to the ${CHROOTDIR} with the initial installworld. Eliminate the need in the second installworld. For that, make sure _everything_ is built in the "world" environment, using the right tool chain. Added SUBDIR_OVERRIDE helper stuff to Makefile.inc1. Split the buildworld process into stages, and skip some stages when SUBDIR_OVERRIDE is set (used to build crypto, krb4, and krb5 dists). Added NO_MAKEDB_RUN knob to Makefile.inc1 to avoid running makewhatis(1) at the end of installworld (used when making crypto, krb4, and krb5 dists). In release/scripts/doFS.sh, ensure that the correct boot blocks are used. Moved the creation of the "crypto" dist from release.5 to release.2. In release.3 and doMFSKERN, build kernels in the "world" environment. KERNELS now means "additional" kernels, GENERIC is always built. Ensure we build crunched binaries in the "world" environment. Obfuscate release/Makefile some more (WMAKEENV) to achieve this. Inline createBOOTMFS target. Use already built GENERIC kernel modules to augment mfsfd's /stand/modules. GC doMODULES as such. Assorted fixes: Get rid of the "afterdistribute" target by moving the single use of it from sys/Makefile to etc/Makefile's "distribute". Makefile.inc1: apparently "etc" no longer needs to be last for "distribute" to succeed. gnu/usr.bin/perl/library/Makefile.inc: do not override the "install" and "distribute" targets, do it the "canonical" way. release/scripts/{man,cat}pages-make.sh: make sure Perl manpages and catpages appear in the right dists. Note that because Perl does not respect the MANBUILDCAT (and NOMAN), this results in a loss of /usr/share/perl/man/cat* empty directories. This will be fixed soon. Turn MAKE_KERBEROS4 into a plain boolean variable (if it is set it means "make KerberosIV"), as documented in the make.conf(5) manpage. Most of the userland makefiles did not test it for "YES" anyway. XXX Should specialized kerberized libpam versions be included into the krb4 and krb5 dists? (libpam.a would be incorrect anyway if both krb4 and krb5 dists were choosen.) Make sure "games" dist is made before "catpages", otherwise games catpages settle in the wrong dist. Fast build machine provided by: Igor Kucherenko <kivvy@sunbay.com> Notes: svn path=/head/; revision=95509
* Switch over to using pam_login_access(8) module in sshd(8).Ruslan Ermilov2002-03-261-5/+3
| | | | | | | | | (Fixes static compilation. Reduces diffs to OpenSSH.) Reviewed by: bde Notes: svn path=/head/; revision=93221
* Use PAM instead of S/Key (or OPIE) for SSH2.Dag-Erling Smørgrav2002-03-211-2/+2
| | | | | | | Sponsored by: DARPA, NAI Labs Notes: svn path=/head/; revision=92876
* Don't forget auth-skey.c.Dag-Erling Smørgrav2002-03-181-1/+2
| | | | Notes: svn path=/head/; revision=92595
* Add pam_ssh support to the static PAM library, libpam.a:Ruslan Ermilov2002-01-231-1/+1
| | | | | | | | | | | | | | - Spam /usr/lib some more by making libssh a standard library. - Tweak ${LIBPAM} and ${MINUSLPAM}. - Garbage collect unused libssh_pic.a. - Add fake -lz dependency to secure/ makefiles needed for dynamic linkage with -lssh. Reviewed by: des, markm Approved by: markm Notes: svn path=/head/; revision=89705
* Fixed world breakage in rev.1.13. -lpam must never be used directly sinceBruce Evans2001-08-291-1/+1
| | | | | | | it doesn't work for static linkage. Notes: svn path=/head/; revision=82484
* Enable Kerberos 5 support in sshd again.Brian Feldman2001-06-121-2/+0
| | | | Notes: svn path=/head/; revision=78129
* Update to OpenSSH 2.9. Somehow this missed getting committed yesterday.Brian Feldman2001-05-041-3/+3
| | | | Notes: svn path=/head/; revision=76284
* Don't build with Kerberos 5 support for now. I'll fix this soon,Brian Feldman2001-05-041-0/+2
| | | | | | | | but I don't want to break Kerberos 5 users' worlds too much in the meantime. Notes: svn path=/head/; revision=76266
* secure/ build fixes:Ruslan Ermilov2001-03-261-14/+7
| | | | | | | | | | | | | | | | | | | | | | | - TELNETOBJDIR is gone. `buildworld' already installs libtelnet.a in ${WORLDTMP}/usr/lib, and we have LIBRARY_PATH pointing there. - SSHDIR (formerly SSHSRC) is now shared between all SSH modules. New LIBSSH is introduced for libssh.a (an internal static lib). Previously, build without prior `obj' was broken; SSH modules always looked for libssh.a in ${.OBJDIR}. Also, the dependancies on the libssh.a were missing. - libtelnet/ did not install the crypto version of telnet.h into /usr/include/arpa. - Removed BINOWN, BINMODE, BINDIR and SRCS with default values. Reviewed by: markm - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74818
* Define HAVE_PAM_GETENVLIST for build. Now environmental variables setJacques Vidrine2001-02-081-1/+1
| | | | | | | by PAM modules will be exported (correctly). Notes: svn path=/head/; revision=72184
* Update for OpenSSH 2.3.0.Brian Feldman2000-12-051-4/+6
| | | | Notes: svn path=/head/; revision=69593
* Update for OpenSSH 2.2.0Kris Kennaway2000-09-101-2/+6
| | | | Notes: svn path=/head/; revision=65675
* Err, we weren't even compiling auth1.c with LOGIN_CAP at all. Guess nobodyKris Kennaway2000-09-021-1/+1
| | | | | | | was using this feature. Notes: svn path=/head/; revision=65361
* Link explicitly against -lmd. I'm not sure what was pulling this inKris Kennaway2000-06-111-2/+2
| | | | | | | on -current, but it doesnt do it on -stable. Notes: svn path=/head/; revision=61538
* Update for OpenSSH 2.1Kris Kennaway2000-05-151-3/+7
| | | | Notes: svn path=/head/; revision=60577
* Update for latest OpenSSHKris Kennaway2000-03-261-3/+3
| | | | Notes: svn path=/head/; revision=58586
* Make LOGIN_CAP work properly.Mark Murray2000-03-091-3/+5
| | | | | | | Submitted by: ache Notes: svn path=/head/; revision=57854
* MFI: Make ssh and sshd link in the krb5 part of make release.John Hay2000-03-031-2/+2
| | | | | | | Reviewed by: markm Notes: svn path=/head/; revision=57743
* New distribution names.Mark Murray2000-02-281-2/+4
| | | | Notes: svn path=/head/; revision=57569
* Don't pull in libRSAglue for the rsaref case. Since this is linkedPeter Wemm2000-02-251-4/+0
| | | | | | | | dynamically by default, we use the dlopen() calls to load librsaref.so on US code trees. Notes: svn path=/head/; revision=57475
* Add the OpenSSH userland-building Makefiles.Mark Murray2000-02-241-0/+43
Notes: svn path=/head/; revision=57434