diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-12 23:37:24 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-12 23:37:24 +0000 |
commit | 0609373f6e08cca01d6ce551fde06b1bbc38a954 (patch) | |
tree | f80853fed3a8e70f797f0bd787a2ec0846864fa3 /libstdc++/stl | |
parent | 7830c9561d69236b3bf7cad1fdeda97a52de6aef (diff) | |
download | gcc-0609373f6e08cca01d6ce551fde06b1bbc38a954.tar.gz |
* stl_config.h (__MINGW32__): Mingw32 RTL lacks drand48.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26388 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++/stl')
-rw-r--r-- | libstdc++/stl/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++/stl/stl_config.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/libstdc++/stl/ChangeLog b/libstdc++/stl/ChangeLog index 79dbea55a13..b02adc33134 100644 --- a/libstdc++/stl/ChangeLog +++ b/libstdc++/stl/ChangeLog @@ -1,3 +1,7 @@ +Tue Apr 13 00:32:57 1999 Mumit Khan <khan@xraylith.wisc.edu> + + * stl_config.h (__MINGW32__): Mingw32 RTL lacks drand48. + Sun Apr 11 23:48:30 1999 Jeffrey A Law (law@cygnus.com) * bitset: Re-install Alexandre's lost patch from 1998-11-27. diff --git a/libstdc++/stl/stl_config.h b/libstdc++/stl/stl_config.h index 1f84fbf6776..4c23e3e4167 100644 --- a/libstdc++/stl/stl_config.h +++ b/libstdc++/stl/stl_config.h @@ -197,6 +197,10 @@ # define __STL_HAS_NAMESPACES # endif +# if defined(__MINGW32__) +# define __STL_NO_DRAND48 +# endif + # if defined(_MSC_VER) # define __STL_NO_DRAND48 # define __STL_NEED_TYPENAME |