diff options
| author | deraadt <> | 2014-07-12 13:24:54 +0000 |
|---|---|---|
| committer | deraadt <> | 2014-07-12 13:24:54 +0000 |
| commit | a5e3bf00a80638911640376fb62c569cd5e84a23 (patch) | |
| tree | 87c53630638b48e9ce6aa888a3b3528c4cfb417b /src/lib/libc/crypt/Makefile.inc | |
| parent | 42ed07e53d68ad57fa68a5a1d29cff29cc58b55c (diff) | |
| download | openbsd-a5e3bf00a80638911640376fb62c569cd5e84a23.tar.gz openbsd-a5e3bf00a80638911640376fb62c569cd5e84a23.tar.bz2 openbsd-a5e3bf00a80638911640376fb62c569cd5e84a23.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 |
