summaryrefslogtreecommitdiffstats
path: root/secure/lib/libcrypto/Makefile.inc
Commit message (Collapse)AuthorAgeFilesLines
* Merge OpenSSL 1.0.2h.jkim2016-05-031-2/+2
| | | | Relnotes: yes
* Merge OpenSSL 1.0.2g.jkim2016-03-011-2/+2
| | | | Relnotes: yes
* Merge OpenSSL 1.0.2f.jkim2016-01-281-2/+2
| | | | Relnotes: yes
* Merge OpenSSL 1.0.2e.jkim2015-12-031-2/+2
|
* Simplify man-makefile-update target.jkim2015-11-171-2/+2
|
* Remove duplicate manual pages.jkim2015-11-161-3/+3
| | | | Reported by: brd
* Clean up OpenSSL makefiles.jkim2015-11-061-2/+2
|
* Merge OpenSSL 1.0.2d.jkim2015-10-301-1/+2
|
* Define endianness for non-x86 platforms.jkim2015-10-281-2/+10
| | | | MFC after: 3 days
* Merge OpenSSL 1.0.1p.jkim2015-07-091-2/+2
|
* Merge OpenSSL 1.0.1o.jkim2015-06-121-2/+2
|
* Merge OpenSSL 1.0.1n.jkim2015-06-111-2/+2
|
* Merge OpenSSL 1.0.1m.jkim2015-03-201-2/+2
|
* Merge OpenSSL 1.0.1l.jkim2015-01-161-2/+2
| | | | | MFC after: 1 week Relnotes: yes
* Merge OpenSSL 1.0.1k.jkim2015-01-081-2/+2
|
* Merge OpenSSL 1.0.1j.jkim2014-10-151-2/+2
|
* Merge OpenSSL 1.0.1i.jkim2014-08-071-2/+2
|
* Merge OpenSSL 1.0.1h.jkim2014-06-091-2/+2
| | | | Approved by: so (delphij)
* Merge OpenSSL 1.0.1g.jkim2014-04-081-2/+2
| | | | Approved by: benl (maintainer)
* Merge OpenSSL 1.0.1f.jkim2014-01-221-2/+2
| | | | Approved by: so (delphij), benl (silence)
* Remove references to MK_IDEA.ed2013-04-271-4/+0
| | | | | | As of r249959, we want to build with IDEA support enabled unconditionally. As this change removed the MK_IDEA flag, update these Makefiles accordingly.
* Merge OpenSSL 1.0.1e.jkim2013-02-131-2/+2
| | | | Approved by: secteam (simon), benl (silence)
* Sort ASM definitions by crypto module for slightly easier maintenance.jkim2012-07-121-2/+4
| | | | Specifically, GHASH_ASM belongs to crypto/modes.
* Merge OpenSSL 1.0.1c.jkim2012-07-121-3/+16
| | | | Approved by: benl (maintainer)
* Merge OpenSSL 0.9.8x.jkim2012-06-271-2/+2
| | | | | | Reviewed by: stas Approved by: benl (maintainer) MFC after: 3 days
* Regenerate manual pages for OpenSSL 0.9.8q.simon2010-12-031-2/+2
|
* Regenerate manual pages for OpenSSL 0.9.8p.simon2010-11-221-2/+2
|
* - Make it slightly simpler to update OpenSSL version informationsimon2010-04-011-1/+6
| | | | | | | | for regenerating OpenSSL manual pages. - Explicitly set the OpenSSL release date so manual pages contain the date OpenSSL was released and not just the date OpenSSL was imported into the FreeBSD base system. - Update for Makefile for OpenSSL 0.9.8n.
* Regenerate manual pages for OpenSSL 0.9.8m.simon2010-03-131-1/+1
| | | | MFC after: 3 weeks
* Update build infrastructure for OpenSSL 0.9.8k.simon2009-06-141-1/+1
|
* Integrate the Camellia Block Cipher. For more information see RFC 4132gnn2007-05-091-1/+1
| | | | | | | and its bibliography. Submitted by: Tomoyuki Okazaki <okazaki at kick dot gr dot jp> MFC after: 1 month
* Upgrade to OpenSSL 0.9.8e.simon2007-03-151-1/+1
|
* Upgrade to OpenSSL 0.9.8d.simon2006-10-011-1/+1
|
* Remove alpha left-overs.ru2006-08-221-2/+0
|
* Upgrade to OpenSSL 0.9.8b.simon2006-07-291-2/+2
|
* Enable DSO (Dynamic Shared Object) support. This makes it possiblesimon2006-07-171-1/+1
| | | | | | | | | | | | | | | | for OpenSSL to load engines run-time, e.g. for using the opensc engine port. The OpenSSL Configure script enables DSO support on FreeBSD by default, we just don't use the Configure script during OpenSSL builds in the base system. This is committed to -CURRENT now (before OpenSSL 0.9.8b import), so it can be tested at bit in -CURRENT before being MFC'ed to 6-STABLE. Prodded by: ale PR: bin/79570 MFC after: 1 week
* Reimplementation of world/kernel build options. For details, see:ru2006-03-171-1/+3
| | | | | | | | 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)
* Update OpenSSL 0.9.7d -> 0.9.7e.nectar2005-02-251-1/+1
|
* Turn MAKE_IDEA into a true "bool" type variable, as documented inru2004-04-191-1/+1
| | | | | | | the make.conf(5) manpage. PR: conf/65738 OK'ed by: markm
* Remove the -pthread from the last commit, as OpenSSL doesn't actuallydwmalone2004-03-301-1/+1
| | | | | | | call any pthread functions as we use compile it. We keep the -DOPENSSL_THREADS, which stops OpenSSL doing thread-unsafe stuff. Requested by: ru
* Build OpenSSL so that it extects that is may be used in a threadeddwmalone2004-03-301-0/+1
| | | | | | | | | | environment. This stops some ports keeling over on an OpenSSL assert. (The patch is not exactly the one from the PR, but has been refined based on advice from freebsd-threads.) PR: 51205 Submitted by: Jim Westfall <jwestfall@surrealistic.net> MFC after: 1 month
* Update manual pages for OpenSSL 0.9.7d.nectar2004-03-171-1/+1
|
* Handle includes the normal way.ru2003-02-271-82/+0
| | | | | Reviewed by: markm Approved by: nectar
* Regenerate man pages after import of OpenSSL 0.9.7a.nectar2003-02-191-1/+1
|
* Install the OpenSSL man pages in /usr/share/openssl/mannectar2003-02-101-6/+41
| | | | and remove the WANT_OPENSSL_MANPAGES knob.
* Do not define OPENSSL_NO_KRB5 here in CFLAGS. It is handled innectar2003-02-091-1/+1
| | | | | | opensslconf.h. Reminded by: reports from des, obrien
* Hopefully fix world for folks not compiling IDEA (the default).peter2003-01-291-2/+2
| | | | | NO_IDEA is now spelled OPENSSL_NO_IDEA. Update the bmake glue accordingly or the IDEA references are not stripped from <openssl/evp.h>
* Update for OpenSSL 0.9.7. No assembler code at the moment. Thismarkm2003-01-281-23/+70
| | | | will follow.
* DON'T EVER PUT THIS BACK!ru2002-11-081-1/+1
| | | | Pointy hat to: obrien
* Style sync with rest of FreeBSD.obrien2002-11-061-1/+1
|
OpenPOWER on IntegriCloud