aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* 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-262-15/+9
| | | | | | | | | | | | | | | | | | | | | | | - 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
* Fix up the build for the STARTTLS version of sendmail (again). This methodGregory Neil Shapiro2000-10-242-78/+0
| | | | | | | | | | | | | mimics that of tcpdump in that for normal builds, sendmail will only be built once. For 'make release', it is built once for the bin dist and once for the crypto dist. This method also removes the need for two separate Makefiles (which could become out of sync). Suggested by: bde Assisted by: kris Notes: svn path=/head/; revision=67502
* Do not override BINDIR settings from subdirectory Makefiles.Gregory Neil Shapiro2000-10-131-1/+1
| | | | | | | Submitted by: bde Notes: svn path=/head/; revision=67085
* ../Makefile.inc was clobbering BINDIR so sendmail was being installed inGregory Neil Shapiro2000-10-131-1/+1
| | | | | | | | | /usr/sbin/ instead of /usr/libexec/sendmail/ Submitted by: bde Notes: svn path=/head/; revision=67083
* Activate the 'secure' (TLS) version of sendmail if !NO_SENDMAIL && !NO_OPENSSLGregory Neil Shapiro2000-10-131-0/+4
| | | | Notes: svn path=/head/; revision=67053
* Given that sendmail's STARTTLS support requires OpenSSL and the bootstrapGregory Neil Shapiro2000-10-131-4/+11
| | | | | | | | | | issues that brings, build the non-TLS version of sendmail in src/usr.sbin/sendmail and the TLS version in src/secure/usr.sbin/sendmail. This allows the TLS version to be part of the secure distribution when building a release. Notes: svn path=/head/; revision=67052
* Remove STARTTLS support as it breaks builds without crypto installed.Gregory Neil Shapiro2000-10-121-7/+0
| | | | | | | Waiting to hear back regarding the best way to do this. Notes: svn path=/head/; revision=67029
* With apoligies to Greg Shapiro, fix the world. The previous commitPeter Wemm2000-10-111-2/+2
| | | | | | | | lost -lutil and -lwrap by replacing $LDADD and $DPADD rather than appending to them with +=. Notes: svn path=/head/; revision=66977
* Style fixesGregory Neil Shapiro2000-10-111-4/+4
| | | | Notes: svn path=/head/; revision=66961
* NOCRYPT imples NO_OPENSSL.Gregory Neil Shapiro2000-10-111-1/+1
| | | | | | | | | Still need to solve the distribution problem. Submitted by: kris Notes: svn path=/head/; revision=66959
* Build sendmail with STARTTLS support unless NO_OPENSSL is set.Gregory Neil Shapiro2000-10-101-0/+7
| | | | Notes: svn path=/head/; revision=66944
* Give users a way to alter the sendmail (and related utilities) buildGregory Neil Shapiro2000-09-171-1/+7
| | | | | | | environment so they can enable functionality such as SASL, LDAP, Hesiod. Notes: svn path=/head/; revision=65970
* Allow users to add libraries for sendmail (e.g. Cyrus SASL)Gregory Neil Shapiro2000-09-131-1/+1
| | | | | | | Obtained from: Sergei Vyshenski <svysh@pn.sinp.msu.ru> Notes: svn path=/head/; revision=65797
* 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
* Turn on support for IPv6Gregory Neil Shapiro2000-08-141-1/+1
| | | | Notes: svn path=/head/; revision=64628
* Get rid of the /etc/aliases -> /etc/mail/aliases hack. /etc/mail/aliasesGregory Neil Shapiro2000-08-131-6/+0
| | | | | | | now exists in the distribution. Notes: svn path=/head/; revision=64597
* The rest of the changes needed to support the new version of sendmail (8.11.0).Gregory Neil Shapiro2000-08-121-11/+28
| | | | | | | | | Beyond changes to the build system, this includes fixing up the sample freebsd.mc configuration for changes in defaults and syntax, removing outdated documentation, and updating the release notes. Notes: svn path=/head/; revision=64567
* Don't build sshd if NO_OPENSSL defined.Kris Kennaway2000-07-301-1/+1
| | | | | | | Submitted by: stephen@math.missouri.edu Notes: svn path=/head/; revision=64034
* 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-243-0/+55
| | | | Notes: svn path=/head/; revision=57434
* Since /etc/sendmail.cf got moved to /etc/mail/sendmail.cf, a 'make world'Peter Wemm1999-12-291-0/+8
| | | | | | | | | would leave you with a broken sendmail and local mail loss. This evil hack moves sendmail.cf from the old location to the new one (if required) at install time. Notes: svn path=/head/; revision=55239
* Install sendmail in it's new location.Peter Wemm1999-12-291-4/+2
| | | | Notes: svn path=/head/; revision=55236
* RIP xntpd.Mark Murray1999-12-221-869/+0
| | | | Notes: svn path=/head/; revision=55010
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50479
* Enable tcp_wrapper support by default.Mark Murray1999-03-281-10/+4
| | | | Notes: svn path=/head/; revision=45090
* MaxHeaderLines is now MaxHeadersLength (in bytes)Peter Wemm1999-02-071-1/+1
| | | | Notes: svn path=/head/; revision=43735
* Support 'O MaxHeaderLines=' to override the default header count and linePeter Wemm1999-01-241-0/+1
| | | | | | | length limits. The configuration keyword is: confMAX_HEADER_LINES Notes: svn path=/head/; revision=43153
* Update for 8.9.2 (new file, control.c)Peter Wemm1999-01-121-3/+4
| | | | | | | Also, turn on support for the MaxMimeHeaderLength option in sendmail.cf. Notes: svn path=/head/; revision=42584
* Remove useless `BINOWN=root' now that it is the default.David E. O'Brien1998-09-191-1/+0
| | | | Notes: svn path=/head/; revision=39496
* Connect up sendmail-8.9.1Peter Wemm1998-08-041-55/+49
| | | | Notes: svn path=/head/; revision=38094
* Fold sendmail-8.8.2 changes into files that have been touched.Peter Wemm1996-10-241-2/+12
| | | | | | | (^!&@$#&^! delete !!@^@^ trailing !@^&#$!& whitespace!!!) Notes: svn path=/head/; revision=19149
* typo shmrsh -> smrshPaul Traina1996-04-221-1/+1
| | | | Notes: svn path=/head/; revision=15349