summaryrefslogtreecommitdiffstats
path: root/secure/lib/libcrypto/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Ugg, wrong version.obrien2003-06-011-1/+1
| | | | CSTD=gnu89, c89 wont do.
* This isn't C99 clean.obrien2003-06-011-0/+2
|
* Silence `make -s' (echo -> ${ECHO}).bde2003-04-131-1/+1
|
* Back out rev 1.60, taking the pointy hat away from nectar as 'rm -f'obrien2003-03-111-2/+2
| | | | | doesn't need to be prefixed with '-'. Keep the pointy hat for myself for not reading the code closely.
* Don't error out the build if removing a "stale" symlink fails.obrien2003-03-101-2/+2
| | | | Pointy hat for breaking my installworld: nectar
* Handle includes the normal way.ru2003-02-271-2/+67
| | | | | Reviewed by: markm Approved by: nectar
* LIBDIR/INCLUDEDIR do not include DESTDIR.nectar2003-02-181-2/+2
| | | | Reported by: Andrzej Tobola <san@iem.pw.edu.pl>
* Follow-up to previous commit: we had a des.h symlink, too. Removenectar2003-02-181-0/+1
| | | | that.
* Previously, libcrypto contained symbols that were identical to EAYnectar2003-02-181-0/+7
| | | | | | | | | libdes, and functionally close enough so that we created symlinks (libdes -> libcrypto) to help older applications. With the import of OpenSSL 0.9.7, this is no longer true and we no longer install these symlinks. However, systems that are upgraded may have these symlinks, which could cause non-obvious breakage at build-time. Therefore, blow any old symlinks away in the `afterinstall' target.
* Install the OpenSSL man pages in /usr/share/openssl/mannectar2003-02-101-40/+7
| | | | and remove the WANT_OPENSSL_MANPAGES knob.
* Background:nectar2003-01-291-1/+1
| | | | | | | | | | | | | | | | | | | | | When libdes was replaced with OpenSSL's libcrypto, there were a few interfaces that the former implemented but the latter did not. Because some software in the base system still depended upon these interfaces, we simply included them in our libcrypto (rnd_keys.c). Now, finally get around to removing the dependencies on these interfaces. There were basically two cases: des_new_random_key -- This is just a wrapper for des_random_key, and these calls were replaced. des_init_random_number_generator et. al. -- A few functions were used by the application to seed libdes's PRNG. These are not necessary when using libcrypto, as OpenSSL internally seeds the PRNG from /dev/random. These calls were simply removed. Again, some of the Kerberos 4 files have been taken off the vendor branch. I do not expect there to be future imports of KTH Kerberos 4.
* Re-add WANT_OPENSSL_MANPAGES knob.nectar2003-01-291-0/+2
|
* Update for OpenSSL 0.9.7. No assembler code at the moment. Thismarkm2003-01-281-286/+193
| | | | will follow.
* Remove myself as maintainer of openssl; I no longer have enough time tokris2002-11-211-2/+0
| | | | devote to it.
* Style sync with rest of FreeBSD.obrien2002-11-061-16/+15
|
* Don't lint contrib'ed sources, even if the builder has asked for linting.markm2002-09-251-0/+2
| | | | Its Just Too Noisy.
* Update list of installed manual pages after regenerating them.nectar2002-07-301-2/+6
|
* s,/usr/include,${INCLUDEDIR},ru2002-07-221-1/+1
|
* Build using pregenerated manpages; don't use perl to translate .pod's.markm2002-05-141-4/+1
| | | | The translated .pod's have already been committed.
* Added new bsd.incs.mk which handles installing of header filesru2002-05-121-5/+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-37/+21
| | | | | | | | | | | 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-1/+1
| | | | | override the beforeinstall target at all, but this has proven difficult to achieve.
* Fixed some style bugs. Mainly, don't use ${.ALLSRC} in implicit rules.bde2002-03-171-3/+3
| | | | This change should have been in rev.1.37.
* Use NO_PERL as well as NOPERL. The latter is going to (eventually) go.markm2002-03-161-11/+11
|
* Update list of manpageskris2002-01-271-23/+30
|
* Update for OpenSSL 0.9.6akris2001-05-201-2/+5
| | | | MFC after: 2 weeks
* secure/ build fixes:ru2001-03-261-3/+2
| | | | | | | | | | | | | | | | | | | | - TELNETOBJDIR is gone. `buildworld' already installs libtelnet.a in ${WORLDTMP}/usr/lib, and we have LIBRARY_PATH pointing there. - SSHDIR (formerly SSHSRC) is now shared between all SSH modules. New LIBSSH is introduced for libssh.a (an internal static lib). Previously, build without prior `obj' was broken; SSH modules always looked for libssh.a in ${.OBJDIR}. Also, the dependancies on the libssh.a were missing. - libtelnet/ did not install the crypto version of telnet.h into /usr/include/arpa. - Removed BINOWN, BINMODE, BINDIR and SRCS with default values. Reviewed by: markm - MAN[1-9] -> MAN.
* Attempt to fix the problem with -j builds, and du-uglify the asm codekris2001-03-141-10/+6
| | | | | | generation and assembly targets. Help from: bde, obrien
* MFS: Belatedly bump SHLIB_MAJOR corresponding to OpenSSL 0.9.6kris2001-03-081-1/+1
|
* Install the des.h link under ${DESTDIR}. Fixes buildworld.kris2001-03-041-1/+1
| | | | Submitted by: Christian Weisgerber <naddy@mips.inka.de>
* Clean up the installation of the compatibility libdes header/librarykris2001-03-041-22/+11
| | | | | | symlinks Pointed out by: bde
* Don't override CPUTYPE (actually this predates the <bsd.cpu.mk> use ofkris2001-03-041-13/+3
| | | | | | CPUTYPE, and I forgot I used it here already) Pointed out by: bde
* Update the list of OpenSSL manpages (now contains many more describingkris2001-02-251-55/+108
| | | | | | | libssl, for example), and hide it behind a make.conf option, WANT_OPENSSL_MANPAGES, instead of having it commented out. We still can't install these by default because of clobbering of a number of system manpages with the same name, but they're there for people who want them.
* Add back a missing file from the no-asm casekris2001-02-201-1/+1
| | | | Submitted by: gallatin
* Remove a remnant of my attempt to get alpha asm code working. OpenSSLkris2001-02-191-2/+0
| | | | | | | | does include code for the alpha, but as far as I can tell, it is non-functional (e.g. it's not even compiled by the native openssl build on the alpha). Noticed by: gallatin
* Introduce support for using OpenSSL ASM optimizations. This is donekris2001-02-191-7/+85
| | | | | | | | | | | | | | | | | | | | | | | 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
* Fixed a typo from the last commit.ru2000-11-151-1/+1
| | | | Submitted by: Mike Heffner <mheffner@vt.edu>
* Correct some fallout from the semi-automated way I updated the makefile.kris2000-11-141-4/+4
| | | | Submitted by: roberto
* Update for OpenSSL 0.9.6kris2000-11-131-49/+56
|
* Overhaul of the build-time include file generation. Don't break in evp.hkris2000-09-171-28/+2
| | | | | if bootstrapping from a system on which the openssl headers are not already present.
* Nuke RSAREF support from orbit.kris2000-09-101-2/+2
| | | | It's the only way to be sure.
* Make the temporary file _evp.h instead of evp.h to not conflict withgreen2000-08-241-2/+2
| | | | | | the real evp.h. Reported by: markm
* Generate a new evp.h at build-time instead of install-time to properlygreen2000-08-231-4/+2
| | | | support NFS(ro) installworlds.
* Unbreak the OpenSSL headers for those of us who don't/can't use IDEA bygreen2000-08-041-1/+10
| | | | | getting rid of the check for NO_IDEA (in evp.h) completely if it's installed without MAKE_IDEA=YES.
* Be consistant about WITH_ vs MAKE_ flags. We have a precedent of usingpeter2000-07-141-3/+3
| | | | | | | 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-0/+14
| | | | | invoked will cause breakage. US Users - DO NOT try to turn on IDEA - the sources are not included.
* Update for OpenSSL 0.9.5a and clean up a bit.kris2000-04-131-76/+110
|
* * Fix dependancies so that ``make depend'' is not required.obrien2000-04-111-38/+39
| | | | | | * Some style fixes Approved by: kris
* Resurrect the old libdes manpages (after a repo copy) until we have betterkris2000-03-021-0/+14
| | | | ones.
* MFI: stupid typo of mine.markm2000-02-291-1/+1
|
OpenPOWER on IntegriCloud