summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArkadiusz Miƛkiewicz2009-07-05 17:16:09 (GMT)
committercvs2git2012-06-24 12:13:13 (GMT)
commit51aa8c310ad675cfdc692d9620c22d6b2a67cc45 (patch)
tree0952898e46b93b0d7e994540a3324fbeab36f061
parent1e002d43d9dcd6420233b431994c4be067d30881 (diff)
downloadcrossmingw32ce-gcc-51aa8c310ad675cfdc692d9620c22d6b2a67cc45.zip
crossmingw32ce-gcc-51aa8c310ad675cfdc692d9620c22d6b2a67cc45.tar.gz
- drop obsolete filesHEADmaster
Changed files: crossmingw32-gcc-noioctl.patch -> 1.2
-rw-r--r--crossmingw32-gcc-noioctl.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/crossmingw32-gcc-noioctl.patch b/crossmingw32-gcc-noioctl.patch
deleted file mode 100644
index d69badb..0000000
--- a/crossmingw32-gcc-noioctl.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- gcc-3.3/libstdc++-v3/config/io/basic_file_stdio.cc.orig 2003-05-01 20:30:25.000000000 +0200
-+++ gcc-3.3/libstdc++-v3/config/io/basic_file_stdio.cc 2003-05-17 09:37:01.000000000 +0200
-@@ -239,7 +239,7 @@
- streamsize
- __basic_file<char>::showmanyc_helper()
- {
--#ifdef FIONREAD
-+#if defined(FIONREAD) && (defined(_GLIBCPP_HAVE_SYS_IOCTL_H) || defined(_GLIBCPP_HAVE_SYS_FILIO_H))
- // Pipes and sockets.
- int __num = 0;
- int __r = ioctl(this->fd(), FIONREAD, &__num);