# - STRERROR_R_CHAR_P if it returns char *
AC_FUNC_STRERROR_R
-# Check if "%m" is supported by printf and Co
-AC_MSG_CHECKING([%m format])
-AC_RUN_IFELSE([AC_LANG_SOURCE([[
-#include <stdio.h>
-int main(void)
-{
- char msg[256];
- int rc;
-
- rc = snprintf(msg, sizeof(msg), "%m\n");
- if ((rc > 1) && (msg[0] != '%'))
- {
- return 0;
- }
- else
- {
- return 1;
- }
-}]])],[fmt_m=yes],[fmt_m=no],[fmt_m=no])
-if test "x$fmt_m" = "xyes"; then
- AC_DEFINE([HAVE_M_FORMAT], 1, [Have %m format])
- AC_MSG_RESULT([yes])
-else
- AC_MSG_RESULT([no])
-fi
-
# Check for some functions
AC_CHECK_LIB(pthread, main)
AC_CHECK_LIB(util, openpty)
LXC_FATAL(&locinfo, format, ##__VA_ARGS__); \
} while (0)
-#if HAVE_M_FORMAT && !ENABLE_COVERITY_BUILD
+#if defined(__GNU_LIBRARY__) && !ENABLE_COVERITY_BUILD
#define SYSTRACE(format, ...) \
TRACE("%m - " format, ##__VA_ARGS__)
#else
} while (0)
#endif
-#if HAVE_M_FORMAT && !ENABLE_COVERITY_BUILD
+#if defined(__GNU_LIBRARY__) && !ENABLE_COVERITY_BUILD
#define SYSDEBUG(format, ...) \
DEBUG("%m - " format, ##__VA_ARGS__)
#else
#endif
-#if HAVE_M_FORMAT && !ENABLE_COVERITY_BUILD
+#if defined(__GNU_LIBRARY__) && !ENABLE_COVERITY_BUILD
#define SYSINFO(format, ...) \
INFO("%m - " format, ##__VA_ARGS__)
#else
} while (0)
#endif
-#if HAVE_M_FORMAT && !ENABLE_COVERITY_BUILD
+#if defined(__GNU_LIBRARY__) && !ENABLE_COVERITY_BUILD
#define SYSNOTICE(format, ...) \
NOTICE("%m - " format, ##__VA_ARGS__)
#else
} while (0)
#endif
-#if HAVE_M_FORMAT && !ENABLE_COVERITY_BUILD
+#if defined(__GNU_LIBRARY__) && !ENABLE_COVERITY_BUILD
#define SYSWARN(format, ...) \
WARN("%m - " format, ##__VA_ARGS__)
#else
} while (0)
#endif
-#if HAVE_M_FORMAT && !ENABLE_COVERITY_BUILD
+#if defined(__GNU_LIBRARY__) && !ENABLE_COVERITY_BUILD
#define SYSERROR(format, ...) \
ERROR("%m - " format, ##__VA_ARGS__)
#else
} while (0)
#endif
-#if HAVE_M_FORMAT && !ENABLE_COVERITY_BUILD
+#if defined(__GNU_LIBRARY__) && !ENABLE_COVERITY_BUILD
#define CMD_SYSERROR(format, ...) \
fprintf(stderr, "%s: %d: %s - %m - " format "\n", __FILE__, __LINE__, \
__func__, ##__VA_ARGS__);
} while (0)
#endif
-#if HAVE_M_FORMAT && !ENABLE_COVERITY_BUILD
+#if defined(__GNU_LIBRARY__) && !ENABLE_COVERITY_BUILD
#define CMD_SYSINFO(format, ...) \
printf("%s: %d: %s - %m - " format "\n", __FILE__, __LINE__, __func__, \
##__VA_ARGS__);