File: BUILDING

package info (click to toggle)
python-scrypt 0.9.4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 832 kB
  • sloc: ansic: 6,290; python: 733; sh: 99; makefile: 5
file content (66 lines) | stat: -rw-r--r-- 2,187 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Installing
----------

We strongly recommend that people use the latest official release tarball on
https://www.tarsnap.com/scrypt.html, and build with:

    ./configure
    make
    make install

Official scrypt tarball releases should build and run on any IEEE Std 1003.1
(POSIX) compliant system which
  1. Includes the Software Development Utilities option,
  2. Has OpenSSL available via -lcrypto and #include <openssl/foo>, and
  3. Provides /dev/urandom.


libscrypt-kdf
-------------

To install the development library, run:

    ./configure --enable-libscrypt-kdf
    make install


Platform-specific notes
-----------------------

- when cross-compiling, runtime POSIX compatibility checks are disabled.
  For more information, see libcperciva/POSIX/README.

- On OS X, the version of OpenSSL included with the operating
  system is outdated (0.9.8) and deprecated, and it is recommended
  that scrypt be built with an updated version of OpenSSL.  On OS X
  10.11 "El Capitan" and higher, OpenSSL was removed entirely.  After
  installing a newer version of OpenSSL, use
      CPPFLAGS="-I /path/to/openssl/headers"
      LDFLAGS="-L /path/to/openssl/lib"
  to build scrypt.

  In particular, if you installed OpenSSL using homebrew, you may
  pass the relevant directories directly to ./configure:
      ./configure CPPFLAGS="-I/usr/local/opt/openssl/include" LDFLAGS="-L/usr/local/opt/openssl/lib"

  Alternatively, you may wish to add these lines to your $HOME/.profile file:
      export CPPFLAGS="-I/usr/local/opt/openssl/include $CPPFLAGS"
      export LDFLAGS="-L/usr/local/opt/openssl/lib $LDFLAGS"
  and then close & re-open your terminal window.


Building from git
-----------------

For experimental development from git, build with:

    autoreconf -i
    ./configure
    make

- You must have automake 1.11.2 or higher, and libtool.
- In order to support the `AX_CFLAGS_WARN_ALL` autoconf directive, you will
  need to install the autoconf archive.  On Debian systems, use the
  `autoconf-archive` package; on FreeBSD, use `devel/autoconf-archive`.
- Ignore this message if it appears:
  aclocal: warning: couldn't open directory 'm4': No such file or directory