Software /
code /
prosody
Comparison
GNUmakefile @ 12354:3ce3633527af
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+.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 04 Mar 2022 15:03:02 +0000 |
parent | 12131:b4c0efff8dd3 |
child | 12362:0fd58f54d653 |
comparison
equal
deleted
inserted
replaced
12353:5ace23519e71 | 12354:3ce3633527af |
---|---|
29 $(MAKE) -C util-src install | 29 $(MAKE) -C util-src install |
30 ifeq ($(EXCERTS),yes) | 30 ifeq ($(EXCERTS),yes) |
31 -$(MAKE) -C certs localhost.crt example.com.crt | 31 -$(MAKE) -C certs localhost.crt example.com.crt |
32 endif | 32 endif |
33 | 33 |
34 install: prosody.install prosodyctl.install prosody.cfg.lua.install util/encodings.so util/encodings.so util/pposix.so util/signal.so | 34 CMODULES=util/encodings.so util/encodings.so util/pposix.so util/signal.so util/struct.so |
35 | |
36 install: prosody.install prosodyctl.install prosody.cfg.lua.install $(CMODULES) | |
35 $(MKDIR) $(BIN) $(CONFIG) $(MODULES) $(SOURCE) | 37 $(MKDIR) $(BIN) $(CONFIG) $(MODULES) $(SOURCE) |
36 $(MKDIR_PRIVATE) $(DATA) | 38 $(MKDIR_PRIVATE) $(DATA) |
37 $(MKDIR) $(MAN)/man1 | 39 $(MKDIR) $(MAN)/man1 |
38 $(MKDIR) $(CONFIG)/certs | 40 $(MKDIR) $(CONFIG)/certs |
39 $(MKDIR) $(SOURCE)/core $(SOURCE)/net $(SOURCE)/util | 41 $(MKDIR) $(SOURCE)/core $(SOURCE)/net $(SOURCE)/util |