summaryrefslogtreecommitdiff
path: root/pkg/openbsd/gen.lua
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-04-15 22:14:46 -0700
committerMichael Forney <mforney@mforney.org>2020-04-15 22:17:35 -0700
commit6d060d5cc1729e5d415c55cf3e0eab8af73d12cd (patch)
tree335609760c52bc8e551e9a92a7514595c6497ec2 /pkg/openbsd/gen.lua
parentc6f3270587d3e0c4c4897e8b1d9ef8729802cdeb (diff)
rsync: Add implementation of MD4 to drop libressl dependency
Diffstat (limited to 'pkg/openbsd/gen.lua')
-rw-r--r--pkg/openbsd/gen.lua6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkg/openbsd/gen.lua b/pkg/openbsd/gen.lua
index 48e88aee..b29779c0 100644
--- a/pkg/openbsd/gen.lua
+++ b/pkg/openbsd/gen.lua
@@ -86,16 +86,14 @@ man{'bin/pax/pax.1', 'bin/pax/tar.1', 'bin/pax/cpio.1'}
-- rsync
sub('rsync.ninja', function()
- cflags{'-I $builddir/pkg/libressl/include'}
exe('rsync', [[
usr.bin/rsync/(
blocks.c client.c downloader.c fargs.c flist.c hash.c ids.c
io.c log.c mkpath.c mktemp.c receiver.c sender.c server.c session.c
- socket.c symlinks.c uploader.c main.c misc.c
+ socket.c symlinks.c uploader.c main.c misc.c md4.c
)
libbsd.a
- $builddir/pkg/libressl/libcrypto.a.d
- ]], {'pkg/libressl/headers'})
+ ]])
file('bin/rsync', '755', '$outdir/rsync')
man{'usr.bin/rsync/rsync.1', 'usr.bin/rsync/rsync.5', 'usr.bin/rsync/rsyncd.5'}
end)