diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-01 20:45:59 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-01 20:45:59 +0000 |
commit | 18e06a7a1eda0b192df9a3dc94418f349141a130 (patch) | |
tree | 87d652c1311b337bc04b5fca130c7262b1a2cf59 /libstdc++-v3/config.h.in | |
parent | aad79c4971644b4f14419b8385503edec903c32e (diff) | |
download | gcc-18e06a7a1eda0b192df9a3dc94418f349141a130.tar.gz |
* linkage.m4 (GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_0): Define.
(GLIBCXX_CHECK_STDLIB_SUPPORT): Use it to test for lrand48
instead of drand48.
* acconfig.h (HAVE_DRAND48): Renamed to HAVE_LRAND48.
* crossconfig.m4 (*-freebsd*): Define HAVE_LRAND48 instead of
HAVE_DRAND48.
* config.h.in, configure: Regenerate.
* include/bits/stl_algo.h: Use _GLIBCXX_HAVE_LRAND48 to guard
lrand48 use.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71990 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/config.h.in')
-rw-r--r-- | libstdc++-v3/config.h.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libstdc++-v3/config.h.in b/libstdc++-v3/config.h.in index 2233e82a8a6..b9a9d146354 100644 --- a/libstdc++-v3/config.h.in +++ b/libstdc++-v3/config.h.in @@ -64,8 +64,8 @@ // Define if gthr-default.h exists (meaning that threading support is enabled). #undef HAVE_GTHR_DEFAULT -// Define if drand48 exists. -#undef HAVE_DRAND48 +// Define if lrand48 exists. +#undef HAVE_LRAND48 // Define if getpagesize exists. #undef HAVE_GETPAGESIZE @@ -221,8 +221,8 @@ /* Define to 1 if you have the `cosl' function. */ #undef HAVE_COSL -/* Define to 1 if you have the `drand48' function. */ -#undef HAVE_DRAND48 +/* Define to 1 if you have the `lrand48' function. */ +#undef HAVE_LRAND48 /* Define to 1 if you have the <endian.h> header file. */ #undef HAVE_ENDIAN_H |