From 3233336cc3b6c2c1e89fe6c6d21d42e0f2cce142 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 4 Sep 2013 13:14:14 -0700 Subject: [PATCH] common/crc32c_intel_fast: fix compile-time #ifdef This wasn't getting built in! Signed-off-by: Sage Weil Reviewed-by: Dan Mick --- src/common/crc32c_intel_fast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/crc32c_intel_fast.c b/src/common/crc32c_intel_fast.c index 10b3c1c5c273e..b446fc1ecc5ed 100644 --- a/src/common/crc32c_intel_fast.c +++ b/src/common/crc32c_intel_fast.c @@ -3,7 +3,7 @@ extern unsigned int crc32_iscsi_00(unsigned char const *buffer, int len, unsigned int crc); -#ifdef WITH_GOOD_YASM_ELF64 +#ifdef HAVE_GOOD_YASM_ELF64 uint32_t ceph_crc32c_intel_fast(uint32_t crc, unsigned char const *buffer, unsigned len) { -- 2.39.5