summaryrefslogtreecommitdiffstats
path: root/secure/lib/libcrypto/Makefile.inc
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Bandaid for a broken world. The real fix is somewhat moreru2002-09-201-3/+3
| | | | complicated and will be sent for a review.
* Added the missing dependencies for openssl/ headers.ru2002-09-191-5/+7
|
* Added new bsd.incs.mk which handles installing of header filesru2002-05-121-8/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | via INCS. Implemented INCSLINKS (equivalent to SYMLINKS) to handle symlinking include files. Allow for multiple groups of include files to be installed, with the powerful INCSGROUPS knob. Documentation to follow. Added standard `includes' and `incsinstall' targets, use them in Makefile.inc1. Headers from the following makefiles were not installed before (during `includes' in Makefile.inc1): kerberos5/lib/libtelnet/Makefile lib/libbz2/Makefile lib/libdevinfo/Makefile lib/libform/Makefile lib/libisc/Makefile lib/libmenu/Makefile lib/libmilter/Makefile lib/libpanel/Makefile Replaced all `beforeinstall' targets for installing includes with the INCS stuff. Renamed INCDIR to INCSDIR, for consistency with FILES and SCRIPTS, and for compatibility with NetBSD. Similarly for INCOWN, INCGRP, and INCMODE. Consistently use INCLUDEDIR instead of /usr/include. gnu/lib/libstdc++/Makefile and gnu/lib/libsupc++/Makefile changes were only lightly tested due to the missing contrib/libstdc++-v3. I fully tested the pre-WIP_GCC31 version of this patch with the contrib/libstdc++.295 stuff. These changes have been tested on i386 with the -DNO_WERROR "make world" and "make release".
* Pre-generate the optimized x86 crypto code and check it in rather thanpeter2002-05-031-4/+1
| | | | | | | | | | | depending on perl at build time. Makefile.asm is a helper for after the next import. With my cvs@ hat on, the relatively small repo cost of this is acceptable, especially given that we have other (much bigger) things like lib*.so.gz.uu checked in under src/lib/compat/*. Reviewed by: kris (maintainer)
* Install headers with -C. Ideally, these Makefiles should not need todes2002-03-231-2/+2
| | | | | override the beforeinstall target at all, but this has proven difficult to achieve.
* Use NO_PERL as well as NOPERL. The latter is going to (eventually) go.markm2002-03-161-1/+1
|
* setlocale(3) has been fixed to match POSIX standard:ru2001-03-021-1/+1
| | | | LC_ALL takes precedence over other LC_* envariables.
* Introduce support for using OpenSSL ASM optimizations. This is donekris2001-02-191-3/+6
| | | | | | | | | | | | | | | | | | | | | | | through the use of a new build directive, MACHINE_CPU, which contains a list of the CPU generations/features for which optimizations are desired. This feature will be extended to cover the ports tree in the future. Currently OpenSSL provides optimizations for i386, i586 and i686-class CPUs. Currently it has not been tested on an i386 or i486. Teach make(1) to provide sensible defaults for MACHINE_CPU if it is not defined (namely, the lowest common denominator CPU we support for each architecture). Currently this is i386 for the i386 architecture and ev4 for the alpha. sys.mk also sets the variable as a last resort for consistency with MACHINE_ARCH and bootstrapping from very old versions of make. Benchmarks show a significant speed increase even in the i386 case, with additional improvements for i586 and i686 systems. For maximum performance define MACHINE_CPU=i686 i586 i386 in /etc/make.conf. Based on a patch submitted by: Mike Silbersack <silby@silby.com> Reviewed by: current
* Update for OpenSSL 0.9.6kris2000-11-131-2/+2
|
* Overhaul of the build-time include file generation. Don't break in evp.hkris2000-09-171-4/+26
| | | | | if bootstrapping from a system on which the openssl headers are not already present.
* Make the temporary file _evp.h instead of evp.h to not conflict withgreen2000-08-241-3/+5
| | | | | | the real evp.h. Reported by: markm
* Generate a new evp.h at build-time instead of install-time to properlygreen2000-08-231-2/+5
| | | | support NFS(ro) installworlds.
* Be consistant about WITH_ vs MAKE_ flags. We have a precedent of usingpeter2000-07-141-1/+1
| | | | | | | MAKE_foo for things like MAKE_KERBEROS etc. Use that. I managed to confuse myself last time and made make.conf different to the code. ;-( Reported by: Jun Kuriyama <kuriyama@FreeBSD.org>
* MFI. This is a documentation-only, diffreducing patch, that ifmarkm2000-06-241-1/+4
| | | | | invoked will cause breakage. US Users - DO NOT try to turn on IDEA - the sources are not included.
* /dev/urandom is the default random device, so no use in stateing it here.obrien2000-05-151-4/+1
| | | | Also simplify the conditionals a little.
* This version is slightly better than rev 1.10. There are still missingobrien2000-05-151-10/+8
| | | | | dependencies for openssl/*.h. I cannot reproduce any critical race conditions with this revision.
* Use unadorned `mkdir -p', removing the "test ... ||".obrien2000-05-151-2/+2
| | | | | There are sometimes problems with "&&" and "||" in the `make -j' case, as it appears multiple processes may process parts of the execution line.
* Use the C locale for running date(1).kris2000-04-201-1/+1
| | | | Submitted by: ache
* Update for OpenSSL 0.9.5a and clean up a bit.kris2000-04-131-0/+23
|
* Merge from internat.freebsd.org repo, minus change to rsa_eay.c (missing)peter2000-02-261-5/+0
| | | | | | | 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.
* Merge from internat.freebsd.org; make RSAREF=YES work correctly, althoughpeter2000-02-251-1/+0
| | | | this is not very useful as the US repo is missing bits.
* Fold libRSAglue into libcrypto so we don't have to special-casepeter2000-02-251-7/+2
| | | | | all the builds. There is still no actual RSA implementation code in libcrypto or src/* on US code trees.
* Freefall/Internat diff reducer.markm2000-02-241-0/+2
|
* *** empty log message ***kris2000-01-161-1/+4
|
* Build infrastructure for OpenSSLkris2000-01-141-0/+22
OpenPOWER on IntegriCloud