diff options
author | Stef Walter <stef@thewalter.net> | 2025-01-29 06:06:53 +0100 |
---|---|---|
committer | Stef Walter <stef@thewalter.net> | 2025-01-29 06:27:38 +0100 |
commit | 9c21d3312ff12f6d3f56424875ddf13b0c165952 (patch) | |
tree | 42ed381d1c2a86a79fab61f2c8f00d8fb3fdf1a9 /autogen.sh | |
parent | 65d3956a9befdca748cbbd2993bf0707af021886 (diff) |
Fix up the build
This copies the last version of the 1.10 clamsmtp common/
files into this project. They used to be shared with the proxsmtp
project but that project has since diverged.
Diffstat (limited to 'autogen.sh')
-rw-r--r-- | autogen.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100644 index 0000000..1d2c8d9 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +set -e + +# Some boiler plate to get git setup as expected +if test -d .git; then + if test -f .git/hooks/pre-commit.sample && \ + test ! -f .git/hooks/pre-commit; then + cp -pv .git/hooks/pre-commit.sample .git/hooks/pre-commit + fi +fi + +set -x + +aclocal +autoheader +automake -a +autoconf +./configure "$@" |