X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=README;h=f95c925e127a0492331cd6a1b4fac5349c74ee09;hp=5063764406a6bcc9acf3e36193b3a57690ccdc9d;hb=f43c814917fea994234376b7c7538ad26b9c46bf;hpb=eee591a466bbb0b941f5a04024914bdd529812c3 diff --git a/README b/README index 5063764406..f95c925e12 100644 --- a/README +++ b/README @@ -141,11 +141,11 @@ ------------ To install this package under a Unix derivative, read the INSTALL file. For - a Win32 platform, read the INSTALL.W32 file. + a Win32 platform, read the INSTALL.W32 file. For OpenVMS systems, read + INSTALL.VMS. For people in the USA, it is possible to compile OpenSSL to use RSA Inc.'s - public key library, RSAref. Read doc/ssleay.txt under 'rsaref.doc' on how to - build with RSAref. + public key library, RSAREF, by configuring OpenSSL with the option "rsaref". Read the documentation in the doc/ directory. It is quite rough, but it lists the functions, you will probably have to look at the code to work out @@ -169,8 +169,8 @@ - Version, most of these details can be got from the 'openssl version -a' command. Operating System Details - - OS Name - - OS Version + - On Unix systems: Output of './config -t' + - OS Name, Version - Hardware platform Compiler Details - Name @@ -184,5 +184,22 @@ Report the bug to the OpenSSL project at: - openssl-users@openssl.org + openssl-bugs@openssl.org + HOW TO CONTRIBUTE TO OpenSSL + ---------------------------- + + Development is coordinated on the openssl-dev mailing list (see + http://www.openssl.org for information on subscribing). If you + would like to submit a patch, send it to openssl-dev@openssl.org. + Please be sure to include a textual explanation of what your patch + does. + + The preferred format for changes is "diff -u" output. You might + generate it like this: + + # cd openssl-work + # [your changes] + # ./Configure dist; make clean + # cd .. + # diff -urN openssl-orig openssl-work > mydiffs.patch