diff options
author | Matthew Wild <mwild1@gmail.com> | 2022-03-04 15:03:02 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2022-03-04 15:03:02 +0000 |
commit | fe56effa55147a7deb8ee754c092af899e662c73 (patch) | |
tree | ae7ef975d4779514edc6630b5def706ed2b057c4 /util-src/GNUmakefile | |
parent | 09bdd816594d43ef6b40a218f78cfee1a09891a3 (diff) | |
download | prosody-fe56effa55147a7deb8ee754c092af899e662c73.tar.gz prosody-fe56effa55147a7deb8ee754c092af899e662c73.zip |
util.struct: Import Roberto 'struct' library v0.3
Downloaded from http://www.inf.puc-rio.br/~roberto/struct/
This is for compatibility with Lua 5.2 (and 5.1). Eventually we can replace
this with string.pack/string.unpack which are available in 5.3+.
Diffstat (limited to 'util-src/GNUmakefile')
-rw-r--r-- | util-src/GNUmakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util-src/GNUmakefile b/util-src/GNUmakefile index 0b96bf41..810f39f7 100644 --- a/util-src/GNUmakefile +++ b/util-src/GNUmakefile @@ -7,7 +7,8 @@ INSTALL_DATA=install -m644 TARGET?=../util/ ALL=encodings.so hashes.so net.so pposix.so signal.so table.so \ - ringbuffer.so time.so poll.so compat.so strbitop.so + ringbuffer.so time.so poll.so compat.so strbitop.so \ + struct.so ifdef RANDOM ALL+=crand.so |