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 /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 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index a86a0b7e..829a1c3e 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -31,7 +31,9 @@ ifeq ($(EXCERTS),yes) -$(MAKE) -C certs localhost.crt example.com.crt endif -install: prosody.install prosodyctl.install prosody.cfg.lua.install util/encodings.so util/encodings.so util/pposix.so util/signal.so +CMODULES=util/encodings.so util/encodings.so util/pposix.so util/signal.so util/struct.so + +install: prosody.install prosodyctl.install prosody.cfg.lua.install $(CMODULES) $(MKDIR) $(BIN) $(CONFIG) $(MODULES) $(SOURCE) $(MKDIR_PRIVATE) $(DATA) $(MKDIR) $(MAN)/man1 |