diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2020-07-29 23:14:22 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-07-30 09:16:49 -0700 |
commit | eff45daab8a5414f38bda6d83c6669f1bf95e570 (patch) | |
tree | d91dc420511ac75439c555562faadd46d2e53d5f /config.mak.dev | |
parent | b5b46d7973763cffde59425d53286faab4e4e712 (diff) | |
download | git-eff45daab8a5414f38bda6d83c6669f1bf95e570.tar.gz |
repository: enable SHA-256 support by default
Now that we have a complete SHA-256 implementation in Git, let's enable
it so people can use it. Remove the ENABLE_SHA256 define constant
everywhere it's used. Add tests for initializing a repository with
SHA-256.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.dev')
-rw-r--r-- | config.mak.dev | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/config.mak.dev b/config.mak.dev index cd4a82a9eb..89b218d11a 100644 --- a/config.mak.dev +++ b/config.mak.dev @@ -16,8 +16,6 @@ DEVELOPER_CFLAGS += -Wstrict-prototypes DEVELOPER_CFLAGS += -Wunused DEVELOPER_CFLAGS += -Wvla -DEVELOPER_CFLAGS += -DENABLE_SHA256 - ifndef COMPILER_FEATURES COMPILER_FEATURES := $(shell ./detect-compiler $(CC)) endif |