2
0

version.pod 812 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. =pod
  2. =head1 NAME
  3. version - print OpenSSL version information
  4. =head1 SYNOPSIS
  5. B<openssl version>
  6. [B<-a>]
  7. [B<-v>]
  8. [B<-b>]
  9. [B<-o>]
  10. [B<-f>]
  11. [B<-p>]
  12. =head1 DESCRIPTION
  13. This command is used to print out version information about OpenSSL.
  14. =head1 OPTIONS
  15. =over 4
  16. =item B<-a>
  17. all information, this is the same as setting all the other flags.
  18. =item B<-v>
  19. the current OpenSSL version.
  20. =item B<-b>
  21. the date the current version of OpenSSL was built.
  22. =item B<-o>
  23. option information: various options set when the library was built.
  24. =item B<-c>
  25. compilation flags.
  26. =item B<-p>
  27. platform setting.
  28. =item B<-d>
  29. OPENSSLDIR setting.
  30. =back
  31. =head1 NOTES
  32. The output of B<openssl version -a> would typically be used when sending
  33. in a bug report.
  34. =head1 HISTORY
  35. The B<-d> option was added in OpenSSL 0.9.7.
  36. =cut