|
|
@@ -678,32 +678,6 @@ IF(ENABLE_ACL)
|
|
|
CHECK_SYMBOL_EXISTS(ACL_USER "${INCLUDES}" HAVE_ACL_USER)
|
|
|
ENDIF(ENABLE_ACL)
|
|
|
|
|
|
-# Check whether printf() supports "%jd"
|
|
|
-CHECK_C_SOURCE_RUNS("
|
|
|
- #include <stdint.h>
|
|
|
- #include <stdio.h>
|
|
|
- #include <string.h>
|
|
|
- static char buf[100];
|
|
|
- int main() {
|
|
|
- sprintf(buf, \"%jd\", (intmax_t)7);
|
|
|
- if (strcmp(buf, \"7\")) return 1;
|
|
|
- sprintf(buf, \"%ju\", (uintmax_t)7);
|
|
|
- return (strcmp(buf, \"7\"));
|
|
|
- }" HAVE_PRINTF_JD)
|
|
|
-
|
|
|
-# Check whether printf() supports "%lld"
|
|
|
-CHECK_C_SOURCE_RUNS("
|
|
|
- #include <stdint.h>
|
|
|
- #include <stdio.h>
|
|
|
- #include <string.h>
|
|
|
- static char buf[100];
|
|
|
- int main() {
|
|
|
- sprintf(buf, \"%lld\", (long long)7);
|
|
|
- if (strcmp(buf, \"7\")) return 1;
|
|
|
- sprintf(buf, \"%llu\", (long long)7);
|
|
|
- return (strcmp(buf, \"7\"));
|
|
|
- }" HAVE_PRINTF_LLD)
|
|
|
-
|
|
|
# Generate "config.h" from "build/cmake/config.h.in"
|
|
|
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/build/cmake/config.h.in
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/config.h)
|