summaryrefslogtreecommitdiff
path: root/src/lib/libssl/crypto/arch (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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@