summaryrefslogtreecommitdiff
path: root/secure/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* [1/3] Initial infrastructure for SSL root bundle in baseKyle Evans2019-10-021-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | This setup will add the trusted certificates from the Mozilla NSS bundle to base. This commit includes: - CAROOT option to opt out of installation of certs - mtree amendments for final destinations - infrastructure to fetch/update certs, along with instructions A follow-up commit will add a certctl(8) utility to give the user control over trust specifics. Another follow-up commit will actually commit the initial result of updatecerts. This work was done primarily by allanjude@, with minor contributions by myself. No objection from: secteam Relnotes: yes Differential Revision: https://reviews.freebsd.org/D16856 Notes: svn path=/head/; revision=352948
* secure: chase removal of pkg_installEitan Adler2017-11-111-1/+1
| | | | Notes: svn path=/head/; revision=325705
* Convert traditional ${MK_TESTS} conditional idiom for including testEnji Cooper2017-08-021-4/+2
| | | | | | | | | | | | | | directories to SUBDIR.${MK_TESTS} idiom This is being done to pave the way for future work (and homogenity) in ^/projects/make-check-sandbox . No functional change intended. MFC after: 1 weeks Notes: svn path=/head/; revision=321912
* crypto: normalize paths using SRCTOP-relative paths or :H when possibleEnji Cooper2017-03-041-2/+2
| | | | | | | | | | This simplifies make logic/output MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314658
* Remove the old depend (mkdep) code and make FAST_DEPEND the one true way.Bryan Drewery2016-03-301-2/+0
| | | | | | | | | | Reviewed by: emaste, hselasky (partial), brooks (brief) Discussed on: arch@ Sponsored by: EMC / Isilon Storage Division Differential Revision: https://reviews.freebsd.org/D5742 Notes: svn path=/head/; revision=297434
* Add more SUBDIR_PARALLEL.Bryan Drewery2015-10-151-1/+3
| | | | | | | | MFC after: 3 weeks Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=289393
* Mark sub-make targets as .MAKE and .PHONY to handle -n and always-build ↵Bryan Drewery2015-10-151-2/+2
| | | | | | | | | | properly. MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=289378
* Use src.opts.mk in preference to bsd.own.mk except where we need stuffWarner Losh2014-05-061-1/+1
| | | | | | | from the latter. Notes: svn path=/head/; revision=265420
* Add placeholder Kyuafiles for various top-level hierarchies.Julio Merino2014-04-211-1/+5
| | | | | | | | | | | | | | | This change adds tests/ directories in the source tree to create various subdirectories in /usr/tests/ and to install placeholder Kyuafiles for them. the relevant hierarchies are: cddl, etc, games, gnu and secure. The reason for this is to simplify the addition of new test programs for utilities or libraries under any of these directories. Doing so on a case by case basis is unnecessary and is quite an obscure process. Notes: svn path=/head/; revision=264741
* Use MK_CRYPT=no in preference to WITHOUT_CRYPT here.Warner Losh2014-04-051-5/+5
| | | | Notes: svn path=/head/; revision=264157
* Remove pppd, it's gone.Edward Tomasz Napierala2009-12-291-2/+1
| | | | Notes: svn path=/head/; revision=201210
* Reimplementation of world/kernel build options. For details, see:Ruslan Ermilov2006-03-171-6/+8
| | | | | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine) Notes: svn path=/head/; revision=156813
* NOCRYPT -> NO_CRYPTRuslan Ermilov2004-12-211-5/+5
| | | | Notes: svn path=/head/; revision=139113
* Fix release builds (release.3 target). We also need to rebuild libradius,Marcel Moolenaar2004-05-021-4/+4
| | | | | | | | | | | | because otherwise it will remain having a dependency upon libssl. This breaks the non-crypto build that happens for release.3 While here, order the list of programs and libraries. Speculating review feedback from: ru Notes: svn path=/head/; revision=128833
* Added two utility targets "secure" and "insecure", analogous toRuslan Ermilov2004-01-181-1/+23
| | | | | | | | | | | "kerberize" and "dekerberize" in kerberos5/Makefile. These can be used to recompile bits with optional crypto support with and without crypto, respectively. Reviewed by: markm Notes: svn path=/head/; revision=124651
* Once upon a time we had both "crypto" and "krb5" distributions,Ruslan Ermilov2004-01-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | and rebuilt some bits with crypto but without Kerberos support (most notably SSH) during "make release", to put them into the "crypto" distribution. Now that we don't ship the separate "krb5" distribution anymore (it's now part of the "crypto" distribuion), don't waste time recompiling SSH bits without crypto and without Kerberos support in an attempt to put them in the "base" distribution -- it just doesn't work as SSH always uses crypto code. We avoid this by not rebuilding KPROGS from kerberos5/Makefile in release/Makefile and adding "libpam" to SPROGS in secure/Makefile to ensure it's still rebuilt without crypto support for the "base" distribution. (Disabling crypto (NOCRYPT) also disables building of Kerberos-related PAM modules, and it's OK to depend on this.) This should be a no-op change saving some "make release" time. Notes: svn path=/head/; revision=124638
* - Properly build both crypto and non-crypto versions of theRuslan Ermilov2004-01-171-1/+1
| | | | | | | | | | package management tools. - Drop redundant dependency of pkg_create(1) and pkg_delete(1) on crypto libraries now that they do not link with libfetch. Notes: svn path=/head/; revision=124633
* Removed well outdated comment.Ruslan Ermilov2004-01-171-4/+0
| | | | Notes: svn path=/head/; revision=124607
* Very big makeover in the way telnet, telnetd and libtelnet are built.Mark Murray2003-07-161-21/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | Previously, there were two copies of telnet; a non-crypto version that lived in the usual places, and a crypto version that lived in crypto/telnet/. The latter was built in a broken manner somewhat akin to other "contribified" sources. This meant that there were 4 telnets competing with each other at build time - KerberosIV, Kerberos5, plain-old-secure and base. KerberosIV is no longer in the running, but the other three took it in turns to jump all over each other during a "make buildworld". As the crypto issue has been clarified, and crypto _calls_ are not a problem, crypto/telnet has been repo-copied to contrib/telnet, and with this commit, all telnets are now "contribified". The contrib path was chosen to not destroy history in the repository, and differs from other contrib/ entries in that it may be worked on as "normal" BSD code. There is no dangerous crypto in these sources, only a very weak system less strong than enigma(1). Kerberos5 telnet and Secure telnet are now selected by using the usual macros in /etc/make.conf, and the build process is unsurprising and less treacherous. Notes: svn path=/head/; revision=117675
* Drop this MAINTAINER bit. I'll reclaim an "Advisory Maintainership"Mark Murray2003-06-041-2/+0
| | | | | | | for this area later. Notes: svn path=/head/; revision=115842
* Removed the (never used) help-distribute target from here.Ruslan Ermilov2002-07-111-4/+0
| | | | | | | | (Similar targets were once used during the release building process for kerberosIV and kerberos5.) Notes: svn path=/head/; revision=99770
* Build everything properly. This means:Mark Murray2000-02-241-1/+1
| | | | | | | | | | | | | | o Don't b uild libdes. o Crypto is now housed in libcrypto (with a compatability symlink to libdes) o RSA may depend on RSAREF at your locale. o OpenSSH is now a part of the base system. Notes: svn path=/head/; revision=57437
* Make telnet with SRA work.Mark Murray1999-10-071-1/+1
| | | | | | | Submitted by: Nick Sayer Notes: svn path=/head/; revision=51993
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50479
* Claim ownershipMark Murray1999-08-171-1/+3
| | | | Notes: svn path=/head/; revision=49971
* Changes to support full make parallelism (-j<n>) in the worldJordan K. Hubbard1997-10-051-4/+4
| | | | | | | | | target. Reviewed by: <many different folks> Submitted by: Nickolay N. Dudorov" <nnd@nnd.itfs.nsk.su> Notes: svn path=/head/; revision=30113
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22990
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Add extra targets a' la' eBones/Makefile for release/Makefile.Mark Murray1996-05-041-2/+27
| | | | | | | (bootstrap etc) Notes: svn path=/head/; revision=15615
* Remove duplicated targets which now build from main treeAndrey A. Chernov1995-09-291-2/+2
| | | | | | | if available and allowed Notes: svn path=/head/; revision=11074
* After pst and ache fixed secure telnet, it was still not in the mainMark Murray1995-07-291-2/+2
| | | | | | | | | | | | makefiles. This puts it in. PLEASE NOTE - YOU WILL NEED TO BUILD AND INSTALL THE libtelnet IN secure/ Reviewed by: Submitted by: Obtained from: Notes: svn path=/head/; revision=9760
* Make the "distribute" target build the "des" distribution. Make des'edPoul-Henning Kamp1994-11-141-3/+6
| | | | | | | init and ed, by pointing to real sources. Notes: svn path=/head/; revision=4485
* Back out static hacks & build of usr.bin until Geoff informs thePaul Traina1994-09-071-2/+3
| | | | | | | | | world of his master plan. Submitted by: pst Notes: svn path=/head/; revision=2539
* Remove static in front of declarations for des_setkey and des_cipherPaul Traina1994-09-071-2/+2
| | | | | | | | | | | | | | so that linking against -lcrypt (-ldescrypt) will give us the good versions instead of the stubs in libc. (These changes need to be made to the non-US version of libdescrypt too!) Allow building and support for bdes program. A bit more work still needs to be done on secure telnet. Submitted by: pst Notes: svn path=/head/; revision=2536
* 1) don't make bdes yetGeoff Rehmet1994-08-121-2/+2
| | | | | | | | | 2) fix .include in secure/lib/Makefile.inc 3) fix afterinstall rule in libcrypt/Makefile Submitted by: Geoff Rehmet Notes: svn path=/head/; revision=2044
* add lib subdirGeoff Rehmet1994-08-081-2/+2
| | | | Notes: svn path=/head/; revision=1962
* Allow the `bdes' program to compile.Garrett Wollman1994-08-071-0/+6
Notes: svn path=/head/; revision=1908