diff options
author | deraadt <> | 2014-07-12 13:24:54 +0000 |
---|---|---|
committer | deraadt <> | 2014-07-12 13:24:54 +0000 |
commit | 0b572b36cd1a45a713c9eef52318dcae68872a88 (patch) | |
tree | 87c53630638b48e9ce6aa888a3b3528c4cfb417b /src/lib/libc/crypt/Makefile.inc | |
parent | 63ded69bef1d48c9f7c0876d19c00d670afa65ae (diff) | |
download | openbsd-0b572b36cd1a45a713c9eef52318dcae68872a88.tar.gz openbsd-0b572b36cd1a45a713c9eef52318dcae68872a88.tar.bz2 openbsd-0b572b36cd1a45a713c9eef52318dcae68872a88.zip |
Split arc4random_uniform into it's own file, to assist other projects
now using this as upstream code. The particular problem is systems
that contain older arc4random derivations lacking arc4random_uniform().
ok tedu miod
Diffstat (limited to 'src/lib/libc/crypt/Makefile.inc')
-rw-r--r-- | src/lib/libc/crypt/Makefile.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/Makefile.inc b/src/lib/libc/crypt/Makefile.inc index 2ade095162..b4f25648e3 100644 --- a/src/lib/libc/crypt/Makefile.inc +++ b/src/lib/libc/crypt/Makefile.inc | |||
@@ -1,8 +1,9 @@ | |||
1 | # $OpenBSD: Makefile.inc,v 1.21 2014/05/16 22:11:00 jmc Exp $ | 1 | # $OpenBSD: Makefile.inc,v 1.22 2014/07/12 13:24:54 deraadt Exp $ |
2 | 2 | ||
3 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/crypt ${LIBCSRCDIR}/crypt | 3 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/crypt ${LIBCSRCDIR}/crypt |
4 | 4 | ||
5 | SRCS+= crypt.c crypt2.c cryptutil.c arc4random.c blowfish.c bcrypt.c | 5 | SRCS+= crypt.c crypt2.c cryptutil.c arc4random.c arc4random_uniform.c \ |
6 | blowfish.c bcrypt.c | ||
6 | 7 | ||
7 | MAN+= crypt.3 blowfish.3 arc4random.3 | 8 | MAN+= crypt.3 blowfish.3 arc4random.3 |
8 | MLINKS+=crypt.3 setkey.3 crypt.3 crypt_checkpass.3 crypt.3 encrypt.3 | 9 | MLINKS+=crypt.3 setkey.3 crypt.3 crypt_checkpass.3 crypt.3 encrypt.3 |