diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-08 22:22:47 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-08-08 22:22:47 +0000 |
commit | 73742c2566e6f8d56b3b132026ad477b9924e774 (patch) | |
tree | 823ee8f3472c0901cdcc6d662a110efc4b7ea1ae /m4 | |
parent | f2f8ea1001b4e29bba94b47f72d21f758e596288 (diff) | |
download | coreutils-73742c2566e6f8d56b3b132026ad477b9924e774.tar.xz |
New file, introduced for shuf, sort -R, and/or shred.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/memxfrm.m4 | 15 | ||||
-rw-r--r-- | m4/randint.m4 | 12 | ||||
-rw-r--r-- | m4/randperm.m4 | 10 | ||||
-rw-r--r-- | m4/randread.m4 | 11 |
4 files changed, 48 insertions, 0 deletions
diff --git a/m4/memxfrm.m4 b/m4/memxfrm.m4 new file mode 100644 index 000000000..ca1c6a93e --- /dev/null +++ b/m4/memxfrm.m4 @@ -0,0 +1,15 @@ +dnl Copyright (C) 2006 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +AC_DEFUN([gl_MEMXFRM], +[ + AC_LIBSOURCES([memxfrm.c, memxfrm.h]) + AC_LIBOBJ([memxfrm]) + + AC_REQUIRE([AC_C_RESTRICT]) + + dnl Prerequisites of lib/memcoll.c. + AC_CHECK_FUNCS_ONCE([strxfrm]) +]) diff --git a/m4/randint.m4 b/m4/randint.m4 new file mode 100644 index 000000000..50209ed2a --- /dev/null +++ b/m4/randint.m4 @@ -0,0 +1,12 @@ +dnl Copyright (C) 2006 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +AC_DEFUN([gl_RANDINT], +[ + AC_LIBSOURCES([randint.c, randint.h]) + AC_LIBOBJ([randint]) + + AC_REQUIRE([AC_C_INLINE]) +]) diff --git a/m4/randperm.m4 b/m4/randperm.m4 new file mode 100644 index 000000000..de2d691db --- /dev/null +++ b/m4/randperm.m4 @@ -0,0 +1,10 @@ +dnl Copyright (C) 2006 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +AC_DEFUN([gl_RANDPERM], +[ + AC_LIBSOURCES([randperm.c, randperm.h]) + AC_LIBOBJ([randperm]) +]) diff --git a/m4/randread.m4 b/m4/randread.m4 new file mode 100644 index 000000000..c30ddd3f2 --- /dev/null +++ b/m4/randread.m4 @@ -0,0 +1,11 @@ +dnl Copyright (C) 2006 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +AC_DEFUN([gl_RANDREAD], +[ + AC_LIBSOURCES([randread.c, randread.h, rand-isaac.c, rand-isaac.h]) + AC_LIBOBJ([randread]) + AC_LIBOBJ([rand-isaac]) +]) |