INSTALL 13 KB

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