Mercurial > hg > octave-kai > gnulib-hg
annotate modules/alphasort @ 17431:744044c581c4
getcwd-lgpl: port to Tru64
* lib/getcwd-lgpl.c: Include <stdlib.h>, for malloc etc.
Problem reported by Steven M. Schweda in
<http://lists.gnu.org/archive/html/bug-gzip/2013-06/msg00010.html>.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Tue, 11 Jun 2013 19:52:46 -0700 |
parents | f60861ec8f13 |
children |
rev | line source |
---|---|
11039 | 1 Description: |
2 alphasort() function: compare entries of a directory alphabetically | |
3 | |
4 Files: | |
5 lib/alphasort.c | |
6 m4/alphasort.m4 | |
7 | |
8 Depends-on: | |
9 dirent | |
10 extensions | |
11 | |
12 configure.ac: | |
13 gl_FUNC_ALPHASORT | |
14923
f60861ec8f13
alphasort: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
11039
diff
changeset
|
14 if test $HAVE_ALPHASORT = 0; then |
f60861ec8f13
alphasort: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
11039
diff
changeset
|
15 AC_LIBOBJ([alphasort]) |
f60861ec8f13
alphasort: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
11039
diff
changeset
|
16 gl_PREREQ_ALPHASORT |
f60861ec8f13
alphasort: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
11039
diff
changeset
|
17 fi |
11039 | 18 gl_DIRENT_MODULE_INDICATOR([alphasort]) |
19 | |
20 Makefile.am: | |
21 | |
22 Include: | |
23 <dirent.h> | |
24 | |
25 License: | |
26 LGPL | |
27 | |
28 Maintainer: | |
29 all, glibc | |
30 |