Info on how to submit patches.
authorUlf Möller <ulf@openssl.org>
Thu, 6 May 1999 00:40:46 +0000 (00:40 +0000)
committerUlf Möller <ulf@openssl.org>
Thu, 6 May 1999 00:40:46 +0000 (00:40 +0000)
README

diff --git a/README b/README
index 03ab5f613d23a538006ee662c9dc7a30b6ce86bf..86bc982567c3777dd511214f2248e466198b3258 100644 (file)
--- a/README
+++ b/README
     - 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
 
  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