diff options
author | Kim Alvefur <zash@zash.se> | 2022-03-04 17:46:33 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-03-04 17:46:33 +0100 |
commit | ffb37f3ef39c41e3512b98a5cf169e40f07bd5a5 (patch) | |
tree | ee66e3cf8c9ae11eae017ef363335895c3a727cb /util-src/makefile | |
parent | 8eadf174b4d0d68d30d1789737f9eee04205183d (diff) | |
download | prosody-ffb37f3ef39c41e3512b98a5cf169e40f07bd5a5.tar.gz prosody-ffb37f3ef39c41e3512b98a5cf169e40f07bd5a5.zip |
make: Fix build of util.struct on *BSD
Diffstat (limited to 'util-src/makefile')
-rw-r--r-- | util-src/makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util-src/makefile b/util-src/makefile index 1560fca4..2df837c7 100644 --- a/util-src/makefile +++ b/util-src/makefile @@ -6,7 +6,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 |