diff options
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]) +]) |