INSTALL 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. INSTALLATION ON THE UNIX PLATFORM
  2. ---------------------------------
  3. [Installation on Windows, OpenVMS and MacOS (before MacOS X) is described
  4. in INSTALL.W32, INSTALL.VMS and INSTALL.MacOS.]
  5. To install OpenSSL, you will need:
  6. * make
  7. * Perl 5
  8. * an ANSI C compiler
  9. * a development environment in form of development libraries and C
  10. header files
  11. * a supported Unix operating system
  12. Quick Start
  13. -----------
  14. If you want to just get on with it, do:
  15. $ ./config
  16. $ make
  17. $ make test
  18. $ make install
  19. [If any of these steps fails, see section Installation in Detail below.]
  20. This will build and install OpenSSL in the default location, which is (for
  21. historical reasons) /usr/local/ssl. If you want to install it anywhere else,
  22. run config like this:
  23. $ ./config --prefix=/usr/local --openssldir=/usr/local/openssl
  24. Configuration Options
  25. ---------------------
  26. There are several options to ./config (or ./Configure) to customize
  27. the build:
  28. --prefix=DIR Install in DIR/bin, DIR/lib, DIR/include/openssl.
  29. Configuration files used by OpenSSL will be in DIR/ssl
  30. or the directory specified by --openssldir.
  31. --openssldir=DIR Directory for OpenSSL files. If no prefix is specified,
  32. the library files and binaries are also installed there.
  33. no-threads Don't try to build with support for multi-threaded
  34. applications.
  35. threads Build with support for multi-threaded applications.
  36. This will usually require additional system-dependent options!
  37. See "Note on multi-threading" below.
  38. no-shared Don't try to create shared libraries.
  39. shared In addition to the usual static libraries, create shared
  40. libraries on platforms where it's supported. See "Note on
  41. shared libraries" below. THIS IS NOT RECOMMENDED! Since
  42. this is a development branch, the positions of the ENGINE
  43. symbols in the transfer vector are constantly moving, so
  44. binary backward compatibility can't be guaranteed in any way.
  45. no-asm Do not use assembler code.
  46. 386 Use the 80386 instruction set only (the default x86 code is
  47. more efficient, but requires at least a 486).
  48. no-<cipher> Build without the specified cipher (bf, cast, des, dh, dsa,
  49. hmac, md2, md5, mdc2, rc2, rc4, rc5, rsa, sha).
  50. The crypto/<cipher> directory can be removed after running
  51. "make depend".
  52. -Dxxx, -lxxx, -Lxxx, -fxxx, -Kxxx These system specific options will
  53. be passed through to the compiler to allow you to
  54. define preprocessor symbols, specify additional libraries,
  55. library directories or other compiler options.
  56. Installation in Detail
  57. ----------------------
  58. 1a. Configure OpenSSL for your operation system automatically:
  59. $ ./config [options]
  60. This guesses at your operating system (and compiler, if necessary) and
  61. configures OpenSSL based on this guess. Run ./config -t to see
  62. if it guessed correctly. If you want to use a different compiler, you
  63. are cross-compiling for another platform, or the ./config guess was
  64. wrong for other reasons, go to step 1b. Otherwise go to step 2.
  65. On some systems, you can include debugging information as follows:
  66. $ ./config -d [options]
  67. 1b. Configure OpenSSL for your operating system manually
  68. OpenSSL knows about a range of different operating system, hardware and
  69. compiler combinations. To see the ones it knows about, run
  70. $ ./Configure
  71. Pick a suitable name from the list that matches your system. For most
  72. operating systems there is a choice between using "cc" or "gcc". When
  73. you have identified your system (and if necessary compiler) use this name
  74. as the argument to ./Configure. For example, a "linux-elf" user would
  75. run:
  76. $ ./Configure linux-elf [options]
  77. If your system is not available, you will have to edit the Configure
  78. program and add the correct configuration for your system. The
  79. generic configurations "cc" or "gcc" should usually work on 32 bit
  80. systems.
  81. Configure creates the file Makefile.ssl from Makefile.org and
  82. defines various macros in crypto/opensslconf.h (generated from
  83. crypto/opensslconf.h.in).
  84. 2. Build OpenSSL by running:
  85. $ make
  86. This will build the OpenSSL libraries (libcrypto.a and libssl.a) and the
  87. OpenSSL binary ("openssl"). The libraries will be built in the top-level
  88. directory, and the binary will be in the "apps" directory.
  89. If "make" fails, look at the output. There may be reasons for
  90. the failure that aren't problems in OpenSSL itself (like missing
  91. standard headers). If it is a problem with OpenSSL itself, please
  92. report the problem to <openssl-bugs@openssl.org> (note that your
  93. message will be recorded in the request tracker publicly readable
  94. via http://www.openssl.org/support/rt2.html and will be forwarded to a
  95. public mailing list). Include the output of "make report" in your message.
  96. Please check out the request tracker. Maybe the bug was already
  97. reported or has already been fixed.
  98. [If you encounter assembler error messages, try the "no-asm"
  99. configuration option as an immediate fix.]
  100. Compiling parts of OpenSSL with gcc and others with the system
  101. compiler will result in unresolved symbols on some systems.
  102. 3. After a successful build, the libraries should be tested. Run:
  103. $ make test
  104. If a test fails, look at the output. There may be reasons for
  105. the failure that isn't a problem in OpenSSL itself (like a missing
  106. or malfunctioning bc). If it is a problem with OpenSSL itself,
  107. try removing any compiler optimization flags from the CFLAGS line
  108. in Makefile.ssl and run "make clean; make". Please send a bug
  109. report to <openssl-bugs@openssl.org>, including the output of
  110. "make report" in order to be added to the request tracker at
  111. http://www.openssl.org/support/rt2.html.
  112. 4. If everything tests ok, install OpenSSL with
  113. $ make install
  114. This will create the installation directory (if it does not exist) and
  115. then the following subdirectories:
  116. certs Initially empty, this is the default location
  117. for certificate files.
  118. man/man1 Manual pages for the 'openssl' command line tool
  119. man/man3 Manual pages for the libraries (very incomplete)
  120. misc Various scripts.
  121. private Initially empty, this is the default location
  122. for private key files.
  123. If you didn't choose a different installation prefix, the
  124. following additional subdirectories will be created:
  125. bin Contains the openssl binary and a few other
  126. utility programs.
  127. include/openssl Contains the header files needed if you want to
  128. compile programs with libcrypto or libssl.
  129. lib Contains the OpenSSL library files themselves.
  130. Package builders who want to configure the library for standard
  131. locations, but have the package installed somewhere else so that
  132. it can easily be packaged, can use
  133. $ make INSTALL_PREFIX=/tmp/package-root install
  134. (or specify "--install_prefix=/tmp/package-root" as a configure
  135. option). The specified prefix will be prepended to all
  136. installation target filenames.
  137. NOTE: The header files used to reside directly in the include
  138. directory, but have now been moved to include/openssl so that
  139. OpenSSL can co-exist with other libraries which use some of the
  140. same filenames. This means that applications that use OpenSSL
  141. should now use C preprocessor directives of the form
  142. #include <openssl/ssl.h>
  143. instead of "#include <ssl.h>", which was used with library versions
  144. up to OpenSSL 0.9.2b.
  145. If you install a new version of OpenSSL over an old library version,
  146. you should delete the old header files in the include directory.
  147. Compatibility issues:
  148. * COMPILING existing applications
  149. To compile an application that uses old filenames -- e.g.
  150. "#include <ssl.h>" --, it will usually be enough to find
  151. the CFLAGS definition in the application's Makefile and
  152. add a C option such as
  153. -I/usr/local/ssl/include/openssl
  154. to it.
  155. But don't delete the existing -I option that points to
  156. the ..../include directory! Otherwise, OpenSSL header files
  157. could not #include each other.
  158. * WRITING applications
  159. To write an application that is able to handle both the new
  160. and the old directory layout, so that it can still be compiled
  161. with library versions up to OpenSSL 0.9.2b without bothering
  162. the user, you can proceed as follows:
  163. - Always use the new filename of OpenSSL header files,
  164. e.g. #include <openssl/ssl.h>.
  165. - Create a directory "incl" that contains only a symbolic
  166. link named "openssl", which points to the "include" directory
  167. of OpenSSL.
  168. For example, your application's Makefile might contain the
  169. following rule, if OPENSSLDIR is a pathname (absolute or
  170. relative) of the directory where OpenSSL resides:
  171. incl/openssl:
  172. -mkdir incl
  173. cd $(OPENSSLDIR) # Check whether the directory really exists
  174. -ln -s `cd $(OPENSSLDIR); pwd`/include incl/openssl
  175. You will have to add "incl/openssl" to the dependencies
  176. of those C files that include some OpenSSL header file.
  177. - Add "-Iincl" to your CFLAGS.
  178. With these additions, the OpenSSL header files will be available
  179. under both name variants if an old library version is used:
  180. Your application can reach them under names like <openssl/foo.h>,
  181. while the header files still are able to #include each other
  182. with names of the form <foo.h>.
  183. Note on multi-threading
  184. -----------------------
  185. For some systems, the OpenSSL Configure script knows what compiler options
  186. are needed to generate a library that is suitable for multi-threaded
  187. applications. On these systems, support for multi-threading is enabled
  188. by default; use the "no-threads" option to disable (this should never be
  189. necessary).
  190. On other systems, to enable support for multi-threading, you will have
  191. to specify at least two options: "threads", and a system-dependent option.
  192. (The latter is "-D_REENTRANT" on various systems.) The default in this
  193. case, obviously, is not to include support for multi-threading (but
  194. you can still use "no-threads" to suppress an annoying warning message
  195. from the Configure script.)
  196. Note on shared libraries
  197. ------------------------
  198. Shared library is currently an experimental feature. The only reason to
  199. have them would be to conserve memory on systems where several program
  200. are using OpenSSL. Binary backward compatibility can't be guaranteed
  201. before OpenSSL version 1.0.
  202. For some systems, the OpenSSL Configure script knows what is needed to
  203. build shared libraries for libcrypto and libssl. On these systems,
  204. the shared libraries are currently not created by default, but giving
  205. the option "shared" will get them created. This method supports Makefile
  206. targets for shared library creation, like linux-shared. Those targets
  207. can currently be used on their own just as well, but this is expected
  208. to change in future versions of OpenSSL.
  209. Note on random number generation
  210. --------------------------------
  211. Availability of cryptographically secure random numbers is required for
  212. secret key generation. OpenSSL provides several options to seed the
  213. internal PRNG. If not properly seeded, the internal PRNG will refuse
  214. to deliver random bytes and a "PRNG not seeded error" will occur.
  215. On systems without /dev/urandom (or similar) device, it may be necessary
  216. to install additional support software to obtain random seed.
  217. Please check out the manual pages for RAND_add(), RAND_bytes(), RAND_egd(),
  218. and the FAQ for more information.