summaryrefslogtreecommitdiff
path: root/src/lib/libssl/crypto/arch (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move build machinery for libcrypto from libssl/crypto to libcrypto, as wellmiod2014-04-1114-3978/+0
| | | | | | | | | as configuration files; split manpages and .pc files between libcrypto and libssl. No functional change, only there to make engineering easier, and libcrypto sources are still found in libssl/src/crypto at the moment. ok reyk@, also discussed with deraadt@ beck@ and the usual crypto suspects.
* Retire hp300, mvme68k and mvme88k ports. These ports have no users, keepingmiod2014-03-181-273/+0
| | | | | | | this hardware alive is becoming increasingly difficult, and I should heed the message sent by the three disks which have died on me over the last few days. Noone sane will mourn these ports anyway. So long, and thanks for the fish.
* VAX ELF userland bits. Consists mostly of register prefix additions.miod2013-07-051-151/+151
|
* Makefile and header changes for OpenSSL-1.0.1cdjm2012-10-1315-89/+282
| | | | major cranks
* Disable SSLv2 in OpenSSL. No objections from djm.sthen2012-07-1114-0/+84
| | | | Brad, jasper and naddy helped with test builds, fixing ports, etc.
* Add support for hppa64 based on the defaults for 64-bit HP-UX as found in thekettenis2011-08-031-0/+253
| | | | | | Configure script. ok deraadt@
* DES_LONG should be u_int on all platforms, it was spuriouslydjm2010-10-031-1/+1
| | | | u_long on i386. suggested by deraadt@ and kettenis@
* update supporting files, crank library majorsdjm2010-10-0113-69/+260
|
* openssl-0.9.8j enables RFC3546 TLS extensions by default (e.g. the verydjm2009-01-0913-39/+0
| | | | | useful "server name indication" that allows multihomed TLS server), so remove the #define to disable it here
* adjust Makefile and crank major for openssl-0.9.8jdjm2009-01-0913-0/+39
|
* update to openssl-0.9.8i; tested by several, especially krw@djm2009-01-0513-0/+39
|
* remerge local tweaks, update per-arch configuration headers, updatedjm2008-09-0613-23/+738
| | | | Makefiles, crank shlib_version
* Initial config for sh, copied from arm.jsg2006-10-111-0/+180
| | | | ok miod@ drahn@
* mips is now 64 bits so use a 64 bit configpefo2004-09-071-6/+6
|
* mips->mips64pefo2004-08-111-0/+0
|
* change amd64's MACHINE_ARCH from x86_64 to amd64. There are many manyderaadt2004-02-271-180/+0
| | | | | | reasons for this, quite a few of them technical, and not all of them in response to Intel's broken ia32e crud. The gcc toolchain stays at x86_64 for now.
* config for arm, copied from powerpc/sparc ok markus@drahn2004-02-031-0/+180
|
* the rest of the libs stuff; from art@ againmickey2004-01-282-0/+360
|
* use bn_asm_vax.S (from netbsd); test + ok by miodmarkus2003-11-181-0/+436
| | | | | | | | use asm code for i386, except for the CBC code, because it is not clean PIC code. add <machime/asm.h> support to x86unix.pl tested by: nick (on 30386), henning, djm, tedu, jmc and more; no shlib minor crank necessary, only internal symbols changed.
* build OpenSSL without symlink trees:markus2002-09-0310-0/+1800
* manpage related things moved to src/libssl/man/Makefile * there are now 3 obj directories src/libssl/{crypto,ssl,man}/ instead of one single src/libssl/obj * instead of running Configure (with generates lots of symlinks, and opensslconf.h) this patch stores pre-computed opensslconf.h files in src/libssl/crypto/arch * requires a make includes before the library can be built * libssl and libcrypto can be build separately (e.g. cd src/libssl/ssl && make obj && make) * make depend is now supported * no more symlink trees tested by miod@ and fries@