Also fix the descriptions in pg_config.h.win32.
authorHeikki Linnakangas <[email protected]>
Wed, 4 Apr 2018 08:33:39 +0000 (11:33 +0300)
committerHeikki Linnakangas <[email protected]>
Wed, 4 Apr 2018 08:33:39 +0000 (11:33 +0300)
I missed pg_config.h.win32 in the previous commit that fixed these in
pg_config.h.in.

src/include/pg_config.h.win32

index b0477f02311508fa965526a357d97aa7e4ec02d5..bc437b08f0cc1c52ef08331527b720b3732a5f8f 100644 (file)
 /* Use replacement snprintf() functions. */
 #define USE_REPL_SNPRINTF 1
 
-/* Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check. */
+/* Define to 1 to use software CRC-32C implementation (slicing-by-8). */
 #if (_MSC_VER < 1500)
 #define USE_SLICING_BY_8_CRC32C 1
 #endif
 /* Define to 1 use Intel SSE 4.2 CRC instructions. */
 /* #undef USE_SSE42_CRC32C */
 
-/* Define to 1 to use Intel SSSE 4.2 CRC instructions with a runtime check. */
+/* Define to 1 to use Intel SSE 4.2 CRC instructions with a runtime check. */
 #if (_MSC_VER >= 1500)
 #define USE_SSE42_CRC32C_WITH_RUNTIME_CHECK
 #endif