diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-17 02:33:37 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-17 02:33:37 +0000 |
commit | 2f941528d56490260f2d8986e7b5b05a34084357 (patch) | |
tree | b77dfa3a3adc7e0d24bee9da427339acfe8c2507 /libstdc++ | |
parent | 9646eeba4cb885c609e65ecace822d58ea5dfe3d (diff) | |
download | gcc-2f941528d56490260f2d8986e7b5b05a34084357.tar.gz |
* stl_config.h (__CYGWIN__): Cygwin newlib RTL lacks drand48.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26966 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++')
-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 b23a9163c75..10669ea9b4c 100644 --- a/libstdc++/stl/ChangeLog +++ b/libstdc++/stl/ChangeLog @@ -1,3 +1,7 @@ +Mon May 17 03:33:47 1999 Mumit Khan <khan@xraylith.wisc.edu> + + * stl_config.h (__CYGWIN__): Cygwin newlib RTL lacks drand48. + 1999-05-07 Ulrich Drepper <drepper@cygnus.com> * stl_alloc.h: Make it possible to compile with __USE_MALLOC. diff --git a/libstdc++/stl/stl_config.h b/libstdc++/stl/stl_config.h index 4c23e3e4167..f9295f1f1dd 100644 --- a/libstdc++/stl/stl_config.h +++ b/libstdc++/stl/stl_config.h @@ -201,6 +201,10 @@ # define __STL_NO_DRAND48 # endif +# if defined(__CYGWIN__) +# define __STL_NO_DRAND48 +# endif + # if defined(_MSC_VER) # define __STL_NO_DRAND48 # define __STL_NEED_TYPENAME |