version.pod 820 B

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