]> git.notmuchmail.org Git - notmuch/blob - test/test-lib-FREEBSD.sh
test/protected-headers: Add tests for S/MIME protected headers
[notmuch] / test / test-lib-FREEBSD.sh
1 # If present, use GNU Coreutils instead of a native BSD utils
2 if command -v gdate >/dev/null
3    then
4        date () { gdate "$@"; }
5        base64 () { gbase64 "$@"; }
6        wc () { gwc "$@"; }
7        sed () { gsed "$@"; }
8        sha256sum () { gsha256sum "$@"; }
9    fi