summaryrefslogtreecommitdiffstats
path: root/secure/lib/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Reimplementation of world/kernel build options. For details, see:ru2006-03-171-2/+4
| | | | | | | | 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)
* Very big makeover in the way telnet, telnetd and libtelnet are built.markm2003-07-161-3/+0
| | | | | | | | | | | | | | | | | | | | | | | 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.
* Disconnect libcipher from the build. It only does DES, and we alreadymarkm2003-06-021-1/+1
| | | | | have libcrypto to do that. Both consumers of this lib have been converted to use libcrypto. (bin/ed and secure/usr.bin/bdes).
* Turn MAKE_KERBEROS5 into NO_KERBEROS by negating the logic. Some extramarkm2003-05-051-1/+1
| | | | | cleanups were necessary in release/Makefile, and the tinderbox code was syntax checked, not run checked.
* Most things depend on !defined(NO_OPENSSL); make it look so.ru2003-04-301-3/+3
|
* NOSECURE is implied by NOCRYPT, meaning if the latter is definedru2003-04-301-1/+1
| | | | we won't be here.
* Remove Kerberos IV shims.des2003-04-231-1/+1
|
* libtelnet depends on OpenSSL.ru2003-04-011-1/+1
| | | | PR: 50507
* Make NO_OPENSSL actually imply NO_OPENSSH, as documented in make.conf(5).ru2002-06-211-1/+1
|
* Revamp and diff-reduce the various secure telnets. Make sure thatmarkm2001-08-031-1/+1
| | | | | Kerberos5 has _a_ telnet (which is not currently K5 enabled). Incorporate BDE's static linking fixes.
* Nuke RSAREF support from orbit.kris2000-09-101-8/+1
| | | | It's the only way to be sure.
* ``Anyone is now free to rub two primes together for their own gratification''kris2000-09-061-1/+1
| | | | | | | | | | -- Unknown Now that the RSA algorithm is released into the public domain, build librsaintl by default unless NO_RSAINTL is set in make.conf. The native OpenSSL implementation of RSA is much faster, doesn't have an artificial keysize limitation, has 30% fewer calories and tastes great!
* Argh. Cut/paste transcription error. Fix syntax of previous commit.peter2000-07-031-1/+1
|
* USA_RESIDENT is forced to YES or NO at the start of Makefile.inc1peter2000-07-031-1/+2
| | | | | | Use that to be the final arbiter of whether or not to build the librsaintl.so plugin for openssl/openssh. Add a magic WANT_RSAINTL flag to force building even if USA_RESIDENT=YES.
* Merge from internat.freebsd.org repo, minus change to rsa_eay.c (missing)peter2000-02-261-0/+6
| | | | | | | Reorganize and unify libcrypto's interface so that the RSA implementation is chosen at runtime via dlopen(). This is a checkpoint and may require more tweaks still.
* Create a stub libRSAglue for bsd.port.mk's sakepeter2000-02-251-1/+1
|
* Fold libRSAglue into libcrypto so we don't have to special-casepeter2000-02-251-3/+0
| | | | | all the builds. There is still no actual RSA implementation code in libcrypto or src/* on US code trees.
* Build everything properly. This means:markm2000-02-241-2/+8
| | | | | | | | | | | 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.
* Add NO_OPENSSL knob to turn off building of opensslkris2000-01-301-1/+4
| | | | Requested by: wollman
* Activate librsagluekris2000-01-201-1/+1
|
* Turn back on libcrypto and libssl building.kris2000-01-161-1/+1
|
* We cannot have libcrypto, and therefore OpenSSL at all, without RSA.green2000-01-151-1/+1
| | | | | If you need examples of breakage, I'm ready to provide more than a few.
* Connect OpenSSL to the build.kris2000-01-141-1/+1
|
* Dont build telenet if we are going for kerberised telnet; this justmarkm1999-10-121-2/+4
| | | | jumps all over kerberised telnet otherwise.
* Make telnet with SRA work.markm1999-10-071-1/+1
| | | | Submitted by: Nick Sayer
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Revert $FreeBSD$ to $Id$peter1997-02-221-1/+1
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-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.
* Add the new libdes to the buildmarkm1996-02-111-2/+2
|
* Remove duplicated targets which now build from main treeache1995-09-291-2/+2
| | | | if available and allowed
* After pst and ache fixed secure telnet, it was still not in the mainmarkm1995-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:
* add libcipher to Makefilecsgr1994-09-081-2/+2
| | | | Submitted by: Geoff.
* add Makefiles for secure/lib. Makefile.inc just includes src/lib/Makefile.inccsgr1994-08-081-0/+6
in order to get things like SHLIB_MAJOR etc.
OpenPOWER on IntegriCloud