lua-arc4random

Cryptographically secure PRNG for Lua
Log | Files | Refs

commit 6fba0b49de5ef95af7fb5da653e64936486f860c
parent 67ffe9646417e449801813a1823260e8ae7f1169
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sat, 15 Aug 2015 11:29:50 +0100

Use -lrt on Linux

Diffstat:
Makefile.mess | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/Makefile.mess b/Makefile.mess @@ -28,6 +28,7 @@ SRCS += compat/sha/sha512.c ifeq ($(uname),Linux) SRCS += compat/getentropy/getentropy_linux.c + LDFLAGS += -lrt endif ifeq ($(uname),Darwin)