summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorHeikki Linnakangas2018-04-04 08:20:53 +0000
committerHeikki Linnakangas2018-04-04 08:25:26 +0000
commit7be511a767cf41f808ee77911bec0f341d04c5fc (patch)
treee8dfea4858197444c44a5b611ff581b4bf09b3b6 /configure.in
parent77b9c507d4cf94580ff1b58379a5769f11df08eb (diff)
Fix incorrect description of USE_SLICING_BY_8_CRC32C.
And a typo in the description of USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, spotted by Daniel Gustafsson.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index ee04a7ee519..ae1302329a2 100644
--- a/configure.in
+++ b/configure.in
@@ -1957,11 +1957,11 @@ if test x"$USE_SSE42_CRC32C" = x"1"; then
AC_MSG_RESULT(SSE 4.2)
else
if test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then
- AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSSE 4.2 CRC instructions with a runtime check.])
+ AC_DEFINE(USE_SSE42_CRC32C_WITH_RUNTIME_CHECK, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check.])
PG_CRC32C_OBJS="pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_choose.o"
AC_MSG_RESULT(SSE 4.2 with runtime check)
else
- AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check.])
+ AC_DEFINE(USE_SLICING_BY_8_CRC32C, 1, [Define to 1 to use software CRC-32C implementation (slicing-by-8).])
PG_CRC32C_OBJS="pg_crc32c_sb8.o"
AC_MSG_RESULT(slicing-by-8)
fi