diff options
author | Paolo Carlini <pcarlini@suse.de> | 2006-06-09 23:37:28 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2006-06-09 23:37:28 +0000 |
commit | d8bc9819d9ca357fe35784180985c43643b9f7eb (patch) | |
tree | b0b35b54857630cba67404df1c6d5bb2c1d445fe /libstdc++-v3/config.h.in | |
parent | 1a492601a1e4a1e5e16a2de9c10065ce062394e4 (diff) | |
download | gcc-d8bc9819d9ca357fe35784180985c43643b9f7eb.tar.gz |
acinclude.m4 ([GLIBCXX_CHECK_RANDOM_TR1]): New, check for the availability of "/dev/random" and "/dev/urandom".
2006-06-09 Paolo Carlini <pcarlini@suse.de>
* acinclude.m4 ([GLIBCXX_CHECK_RANDOM_TR1]): New, check for
the availability of "/dev/random" and "/dev/urandom".
* configure.ac: Use it.
* include/tr1/random (random_device): Implement, a fall-back for
systems not providing "/dev/random" and "/dev/urandom" included.
* testsuite/tr1/5_numerical_facilities/random/random_device/
cons/default.cc: New.
* testsuite/tr1/5_numerical_facilities/random/random_device/
cons/token.cc: Likewise.
* testsuite/tr1/5_numerical_facilities/random/random_device/
requirements/typedefs.cc: Likewise.
* config.h.in: Regenerate.
* configure: Likewise.
* testsuite/tr1/5_numerical_facilities/random/mersenne_twister/
cons/gen1.cc: Minor tweak, add bool test.
From-SVN: r114529
Diffstat (limited to 'libstdc++-v3/config.h.in')
-rw-r--r-- | libstdc++-v3/config.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libstdc++-v3/config.h.in b/libstdc++-v3/config.h.in index a75af3835d0..ba53014434d 100644 --- a/libstdc++-v3/config.h.in +++ b/libstdc++-v3/config.h.in @@ -744,6 +744,10 @@ /* Define if NLS translations are to be used. */ #undef _GLIBCXX_USE_NLS +/* Define if dev/random and dev/urandom are available for the random_device of + TR1 (Chapter 5.1). */ +#undef _GLIBCXX_USE_RANDOM_TR1 + /* Define if code specialized for wchar_t should be used. */ #undef _GLIBCXX_USE_WCHAR_T |