warnings: fix compilation with old autoconf
[gnulib/ericb.git] / m4 / random_r.m4
blob8af48072997be9a969918496f8c7b4f03f4d3186
1 # serial 5
2 dnl Copyright (C) 2008-2017 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 AC_DEFUN([gl_FUNC_RANDOM_R],
9   AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
10   AC_REQUIRE([AC_CANONICAL_HOST])
12   AC_CHECK_HEADERS([random.h], [], [], [AC_INCLUDES_DEFAULT])
13   if test $ac_cv_header_random_h = no; then
14     HAVE_RANDOM_H=0
15   fi
17   AC_CHECK_TYPES([struct random_data],
18     [], [HAVE_STRUCT_RANDOM_DATA=0],
19     [[#include <stdlib.h>
20       #if HAVE_RANDOM_H
21       # include <random.h>
22       #endif
23     ]])
25   dnl On AIX and OSF/1, these functions exist, but with different declarations.
26   dnl Override them all.
27   case "$host_os" in
28     aix* | osf*)
29       REPLACE_RANDOM_R=1
30       ;;
31     *)
32       AC_CHECK_FUNCS([random_r])
33       if test $ac_cv_func_random_r = no; then
34         HAVE_RANDOM_R=0
35       fi
36       ;;
37   esac
40 # Prerequisites of lib/random_r.c.
41 AC_DEFUN([gl_PREREQ_RANDOM_R], [
42   :