aboutsummaryrefslogtreecommitdiffstats
path: root/m4/st_dm_mode.m4
diff options
context:
space:
mode:
authorPaul Eggert2025-12-09 12:55:17 -0800
committerPaul Eggert2025-12-09 13:27:27 -0800
commit88bf047d39838393cd16f231e721c8b548a50f42 (patch)
tree822067e5af0d720d549eb5e00babd142d7d347f6 /m4/st_dm_mode.m4
parentcc05493483a005074608f31a54e496599bd3b296 (diff)
downloademacs-88bf047d39838393cd16f231e721c8b548a50f42.tar.gz
emacs-88bf047d39838393cd16f231e721c8b548a50f42.zip
Garbage-collect Gnulib sources
Remove Gnulib sources no longer needed or used. admin/merge-gnulib is typically not smart enough to do that. * configure.ac: Do not call gl_EEMALLOC, as it is no longer supplied or needed. * lib/explicit_bzero.c, lib/malloc/scratch_buffer_dupfree.c: * lib/xalloc-oversized.h, m4/eealloc.m4, m4/explicit_bzero.m4: * m4/st_dm_mode.m4, m4/year2038.m4: Remove.
Diffstat (limited to 'm4/st_dm_mode.m4')
-rw-r--r--m4/st_dm_mode.m424
1 files changed, 0 insertions, 24 deletions
diff --git a/m4/st_dm_mode.m4 b/m4/st_dm_mode.m4
deleted file mode 100644
index 56748c385f0..00000000000
--- a/m4/st_dm_mode.m4
+++ /dev/null
@@ -1,24 +0,0 @@
1# serial 6
2
3# Copyright (C) 1998-1999, 2001, 2009-2025 Free Software Foundation,
4# Inc.
5# This file is free software; the Free Software Foundation
6# gives unlimited permission to copy and/or distribute it,
7# with or without modifications, as long as this notice is preserved.
8
9# Define HAVE_ST_DM_MODE if struct stat has an st_dm_mode member.
10
11AC_DEFUN([AC_STRUCT_ST_DM_MODE],
12 [AC_CACHE_CHECK([for st_dm_mode in struct stat], [ac_cv_struct_st_dm_mode],
13 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
14#include <sys/types.h>
15#include <sys/stat.h>]], [[struct stat s; s.st_dm_mode;]])],
16 [ac_cv_struct_st_dm_mode=yes],
17 [ac_cv_struct_st_dm_mode=no])])
18
19 if test $ac_cv_struct_st_dm_mode = yes; then
20 AC_DEFINE([HAVE_ST_DM_MODE], [1],
21 [Define if struct stat has an st_dm_mode member.])
22 fi
23 ]
24)