Mercurial > hg > octave-shane > gnulib-hg
annotate m4/unlinkdir.m4 @ 17480:f40b3156a43e
selinux-at: omit unnecessary include
* lib/selinux-at.c: Don't include dosname.h; not needed, since
this source file doesn't use its macros, and subsidiary files that
use the macros already include it.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Fri, 23 Aug 2013 13:53:46 -0700 |
parents | e542fd46ad6f |
children | 344018b6e5d7 |
rev | line source |
---|---|
15251
000ccc8b8dd1
unlinkdir: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
1 # serial 7 |
5852 | 2 |
17249
e542fd46ad6f
maint: update all copyright year number ranges
Eric Blake <eblake@redhat.com>
parents:
16201
diff
changeset
|
3 # Copyright (C) 2005-2007, 2009-2013 Free Software Foundation, Inc. |
5852 | 4 # |
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 # Written by Paul Eggert. | |
10 | |
11 AC_DEFUN([gl_UNLINKDIR], | |
12 [ | |
13 AC_REQUIRE([AC_CANONICAL_HOST]) | |
11007
f6cba5a556ce
many *.m4 files: improve m4 quoting
Jim Meyering <meyering@redhat.com>
parents:
8152
diff
changeset
|
14 AC_CHECK_HEADERS_ONCE([priv.h]) |
5852 | 15 |
16 # The Hurd, the Linux kernel, the FreeBSD kernel version 2.2 and later, | |
11998 | 17 # Cygwin, and mingw never let anyone (even root) unlink directories. |
5852 | 18 # If anyone knows of another system for which unlink can never |
19 # remove a directory, please report it to <bug-coreutils@gnu.org>. | |
20 # Unfortunately this is difficult to test for, since it requires root access | |
21 # and might create garbage in the file system, | |
22 # so the code below simply relies on the kernel name and version number. | |
11998 | 23 case $host_os in |
24 gnu[[0-9]]* | \ | |
25 linux-* | linux | \ | |
26 freebsd2.2* | freebsd[[3-9]]* | freebsd[[1-9]][[0-9]]* | \ | |
27 cygwin | \ | |
28 mingw*) | |
11007
f6cba5a556ce
many *.m4 files: improve m4 quoting
Jim Meyering <meyering@redhat.com>
parents:
8152
diff
changeset
|
29 AC_DEFINE([UNLINK_CANNOT_UNLINK_DIR], [1], |
5852 | 30 [Define to 1 if unlink (dir) cannot possibly succeed.]);; |
31 esac | |
32 ]) |