Mercurial > hg > octave-kai > gnulib-hg
annotate modules/rmdir @ 15053:d8eeaab555f5
mktime: Respect rules for use of AC_LIBOBJ.
* m4/mktime.m4 (AC_FUNC_MKTIME): Remove macro.
(gl_FUNC_MKTIME): Inline it here. Set gl_cv_func_working_mktime. Move
AC_LIBOBJ and gl_PREREQ_MKTIME invocations from here...
(gl_FUNC_MKTIME_INTERNAL): ... and here...
* modules/mktime (configure.ac): ... to here.
* modules/mktime-internal (configure.ac): ... and here.
* m4/timegm.m4 (gl_FUNC_TIMEGM): Update.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 21 May 2011 16:14:17 +0200 |
parents | efab6978105e |
children | 23a0cffe28de |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 rmdir() function: delete a directory. |
4110 | 3 |
4 Files: | |
5 lib/rmdir.c | |
6 m4/rmdir.m4 | |
7 | |
8 Depends-on: | |
11993
767d867147de
rmdir: work around cygwin 1.5.x and mingw bugs
Eric Blake <ebb9@byu.net>
parents:
10753
diff
changeset
|
9 unistd |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
14393
diff
changeset
|
10 dosname [test $REPLACE_RMDIR = 1] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
14393
diff
changeset
|
11 sys_stat [test $REPLACE_RMDIR = 1] |
4110 | 12 |
13 configure.ac: | |
14 gl_FUNC_RMDIR | |
11993
767d867147de
rmdir: work around cygwin 1.5.x and mingw bugs
Eric Blake <ebb9@byu.net>
parents:
10753
diff
changeset
|
15 gl_UNISTD_MODULE_INDICATOR([rmdir]) |
4110 | 16 |
17 Makefile.am: | |
18 | |
19 Include: | |
20 <unistd.h> | |
21 | |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5159
diff
changeset
|
22 License: |
11993
767d867147de
rmdir: work around cygwin 1.5.x and mingw bugs
Eric Blake <ebb9@byu.net>
parents:
10753
diff
changeset
|
23 LGPLv2+ |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5159
diff
changeset
|
24 |
4197 | 25 Maintainer: |
11993
767d867147de
rmdir: work around cygwin 1.5.x and mingw bugs
Eric Blake <ebb9@byu.net>
parents:
10753
diff
changeset
|
26 Jim Meyering, Eric Blake |