diff options
author | Ulf Möller <ulf@openssl.org> | 1999-05-06 02:40:46 +0200 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 1999-05-06 02:40:46 +0200 |
commit | b282fdae2561282ce8e6ad72aa88cbaabf5743ab (patch) | |
tree | b5cf8b8d189cca96e2f30a96950cfaabc0df7949 /README | |
parent | Remove unreachable return statements. (diff) | |
download | openssl-b282fdae2561282ce8e6ad72aa88cbaabf5743ab.tar.xz openssl-b282fdae2561282ce8e6ad72aa88cbaabf5743ab.zip |
Info on how to submit patches.
Diffstat (limited to 'README')
-rw-r--r-- | README | 23 |
1 files changed, 20 insertions, 3 deletions
@@ -168,8 +168,8 @@ - Version, most of these details can be got from the 'openssl version -a' command. Operating System Details - - OS Name - - OS Version + - Output of './config -t' + - OS Name, Version - Hardware platform Compiler Details - Name @@ -183,5 +183,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 |