Mercurial > hg > octave-kai > gnulib-hg
annotate modules/random_r @ 15070:221318b8a54e
random_r: Move AC_LIBOBJ invocations to module description.
* m4/random_r.m4 (gl_FUNC_RANDOM_R): Move AC_LIBOBJ and
gl_PREREQ_RANDOM_R invocations from here...
* modules/random_r (configure.ac): ... to here.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 21 May 2011 17:50:27 +0200 |
parents | 18ea6ab4e81d |
children | 58a55a7ffba8 |
rev | line source |
---|---|
10704 | 1 Description: |
2 reentrant random number generator | |
3 | |
4 Files: | |
5 lib/random_r.c | |
6 m4/random_r.m4 | |
7 | |
8 Depends-on: | |
9 stdlib | |
10711
e161b51e4184
Use stdint.h, for int32_t.
Simon Josefsson <simon@josefsson.org>
parents:
10704
diff
changeset
|
10 stdint |
10704 | 11 |
12 configure.ac: | |
13 gl_FUNC_RANDOM_R | |
15070
221318b8a54e
random_r: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
12008
diff
changeset
|
14 if test $HAVE_RANDOM_R = 0; then |
221318b8a54e
random_r: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
12008
diff
changeset
|
15 AC_LIBOBJ([random_r]) |
221318b8a54e
random_r: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
12008
diff
changeset
|
16 gl_PREREQ_RANDOM_R |
221318b8a54e
random_r: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
12008
diff
changeset
|
17 fi |
10704 | 18 gl_STDLIB_MODULE_INDICATOR([random_r]) |
19 | |
20 Makefile.am: | |
21 | |
22 Include: | |
12008
18ea6ab4e81d
maint: make Include sections of modules consistent
Eric Blake <ebb9@byu.net>
parents:
10765
diff
changeset
|
23 <stdlib.h> |
10704 | 24 |
25 License: | |
26 LGPLv2+ | |
27 | |
28 Maintainer: | |
10765
f952c1fd228c
Add reminder that random_r is maintained in glibc too.
Bruno Haible <bruno@clisp.org>
parents:
10711
diff
changeset
|
29 Jim Meyering, glibc |