From: Sage Weil Date: Wed, 4 Sep 2013 20:14:14 +0000 (-0700) Subject: common/crc32c_intel_fast: fix compile-time #ifdef X-Git-Tag: mark-v0.70-wip~20 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1d67aeba729013638ad1d853ab6f23f6e1f6bb26;p=ceph.git common/crc32c_intel_fast: fix compile-time #ifdef This wasn't getting built in! Signed-off-by: Sage Weil Reviewed-by: Dan Mick (cherry picked from commit 3233336cc3b6c2c1e89fe6c6d21d42e0f2cce142) --- diff --git a/src/common/crc32c_intel_fast.c b/src/common/crc32c_intel_fast.c index 10b3c1c5c273..b446fc1ecc5e 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) {