Mercurial > hg > octave-kai > gnulib-hg
annotate modules/backupfile @ 14387:44b19551f75d
backupfile: remove unnecessary use of m4/dos.m4
* m4/backupfile.m4 (gl_BACKUPFILE): Don't require gl_AC_DOS; none
of its symbols are used by the backupfile code. backupfile.c does
use a symbol HAVE_DOS_FILE_NAMES, but that symbol is meant only
for the rare case of programs that want all their backup file
names to live within 8+3 limits, and dos.m4 doesn't address that.
* modules/backupfile (Files): Remove m4/dos.m4.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Thu, 24 Feb 2011 07:58:24 -0800 |
parents | d642b5a319a9 |
children | 5f6af8ca83f6 |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 Determination of the filename of a backup file, according to user environment |
3 variables. | |
4110 | 4 |
5 Files: | |
6 lib/backupfile.h | |
7 lib/backupfile.c | |
8 m4/backupfile.m4 | |
9 | |
10 Depends-on: | |
11 argmatch | |
7162
19c2e5121b2f
Add and change modules to make it easier for coreutils to use
Paul Eggert <eggert@cs.ucla.edu>
parents:
5820
diff
changeset
|
12 d-ino |
11938
7cbcde229d97
backupfile, chdir-long, fts, savedir: make safer
Eric Blake <ebb9@byu.net>
parents:
10748
diff
changeset
|
13 dirent-safer |
12213
d642b5a319a9
dirname-lgpl: adjust clients that don't need full dirname
Eric Blake <ebb9@byu.net>
parents:
11938
diff
changeset
|
14 dirname-lgpl |
10748 | 15 memcmp |
5820
aec0a1f23054
(Depends-on): Add stdbool.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5722
diff
changeset
|
16 stdbool |
4110 | 17 |
18 configure.ac: | |
19 gl_BACKUPFILE | |
20 | |
21 Makefile.am: | |
22 | |
23 Include: | |
24 "backupfile.h" | |
25 | |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5155
diff
changeset
|
26 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5155
diff
changeset
|
27 GPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5155
diff
changeset
|
28 |
4197 | 29 Maintainer: |
30 Paul Eggert, Jim Meyering |