+2019-09-15 Bruno Haible <bruno@clisp.org>
+
+ intprops tests: Avoid build failure with HP-UX cc.
+ * tests/test-intprops.c: Disable a check that makes HP cc choke with
+ "error 4018: Macro param too large after substitution - use -H option.".
+
2019-09-14 Bruno Haible <bruno@clisp.org>
Make autoconf tests work with -Werror=implicit-function-declaration.
CHECK_PRODUCT (INT_MAX, UINT_MAX, unsigned int, true, INT_MAX * UINT_MAX);
CHECK_PRODUCT (INT_MAX, ULONG_MAX, unsigned long int, true,
INT_MAX * ULONG_MAX);
+#if !defined __HP_cc
CHECK_SPRODUCT (INT_MIN, LONG_MAX / INT_MIN - 1, long int, true, LONG_MIN);
+#endif
CHECK_SPRODUCT (INT_MIN, LONG_MAX / INT_MIN, long int, false, DONTCARE);
CHECK_PRODUCT (INT_MIN, UINT_MAX, unsigned int, true, INT_MIN * UINT_MAX);
CHECK_PRODUCT (INT_MIN, ULONG_MAX, unsigned long int, true,