diff options
Diffstat (limited to 'gl/m4/off64_t.m4')
| -rw-r--r-- | gl/m4/off64_t.m4 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gl/m4/off64_t.m4 b/gl/m4/off64_t.m4 new file mode 100644 index 00000000..963d53e9 --- /dev/null +++ b/gl/m4/off64_t.m4 | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | # off64_t.m4 | ||
| 2 | # serial 1 | ||
| 3 | dnl Copyright (C) 2024-2025 Free Software Foundation, Inc. | ||
| 4 | dnl This file is free software; the Free Software Foundation | ||
| 5 | dnl gives unlimited permission to copy and/or distribute it, | ||
| 6 | dnl with or without modifications, as long as this notice is preserved. | ||
| 7 | dnl This file is offered as-is, without any warranty. | ||
| 8 | |||
| 9 | dnl Check whether <sys/types.h> defines the 'off64_t' type. | ||
| 10 | dnl Set HAVE_OFF64_T. | ||
| 11 | |||
| 12 | AC_DEFUN([gl_TYPE_OFF64_T], | ||
| 13 | [ | ||
| 14 | dnl Persuade glibc <sys/types.h>, <stdio.h>, <fcntl.h>, <unistd.h>, <aio.h> | ||
| 15 | dnl to define off64_t. | ||
| 16 | AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) | ||
| 17 | |||
| 18 | AC_CACHE_CHECK([for off64_t], [gl_cv_off64_t], | ||
| 19 | [AC_COMPILE_IFELSE( | ||
| 20 | [AC_LANG_PROGRAM( | ||
| 21 | [[#include <sys/types.h>]], | ||
| 22 | [[int x = sizeof (off64_t *) + sizeof (off64_t); | ||
| 23 | return !x;]])], | ||
| 24 | [gl_cv_off64_t=yes], [gl_cv_off64_t=no])]) | ||
| 25 | |||
| 26 | if test $gl_cv_off64_t != no; then | ||
| 27 | HAVE_OFF64_T=1 | ||
| 28 | else | ||
| 29 | HAVE_OFF64_T=0 | ||
| 30 | fi | ||
| 31 | AC_SUBST([HAVE_OFF64_T]) | ||
| 32 | ]) | ||
