diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2020-02-22 21:17:30 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-02-24 18:33:21 +0100 |
commit | 94127599252d85e85571ecde740ea97e59e4bede (patch) | |
tree | 406c9dca8c4fa051dc31b43228c87bbf0a2e34dd /config.mak.dev | |
parent | hex: add functions to parse hex object IDs in any algorithm (diff) | |
download | git-94127599252d85e85571ecde740ea97e59e4bede.tar.xz git-94127599252d85e85571ecde740ea97e59e4bede.zip |
repository: require a build flag to use SHA-256
At this point, SHA-256 support is experimental and some behavior may
change. To avoid surprising unsuspecting users, require a build flag,
ENABLE_SHA256, to allow use of a non-SHA-1 algorithm. Enable this flag
by default when the DEVELOPER make flag is set so that contributors can
test this case adequately.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
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, 2 insertions, 0 deletions
diff --git a/config.mak.dev b/config.mak.dev index bf1f3fcdee..2e19435915 100644 --- a/config.mak.dev +++ b/config.mak.dev @@ -17,6 +17,8 @@ DEVELOPER_CFLAGS += -Wstrict-prototypes DEVELOPER_CFLAGS += -Wunused DEVELOPER_CFLAGS += -Wvla +DEVELOPER_CFLAGS += -DENABLE_SHA256 + ifndef COMPILER_FEATURES COMPILER_FEATURES := $(shell ./detect-compiler $(CC)) endif |