diff options
author | Ryan Hill <rhill@gentoo.org> | 2009-03-26 05:21:41 +0000 |
---|---|---|
committer | Ryan Hill <rhill@gentoo.org> | 2009-03-26 05:21:41 +0000 |
commit | 16b324d7b58315528f2066f5a17860a1f10f4121 (patch) | |
tree | 81001a0c71d375e0124260695e316104931f5e98 /dev-cpp/clucene/files | |
parent | In src_test, redirect stdin from /dev/tty as a workaround for bug #248081. (diff) | |
download | historical-16b324d7b58315528f2066f5a17860a1f10f4121.tar.gz historical-16b324d7b58315528f2066f5a17860a1f10f4121.tar.bz2 historical-16b324d7b58315528f2066f5a17860a1f10f4121.zip |
Fix missing include in headers for GCC 4.4 (bug #254254).
Package-Manager: portage-2.2_rc27/cvs/Linux x86_64
Diffstat (limited to 'dev-cpp/clucene/files')
-rw-r--r-- | dev-cpp/clucene/files/clucene-0.9.21b-gcc44.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dev-cpp/clucene/files/clucene-0.9.21b-gcc44.patch b/dev-cpp/clucene/files/clucene-0.9.21b-gcc44.patch new file mode 100644 index 000000000000..8c7fe44d0562 --- /dev/null +++ b/dev-cpp/clucene/files/clucene-0.9.21b-gcc44.patch @@ -0,0 +1,10 @@ +--- src/CLucene/util/bufferedstream.h~ ++++ src/CLucene/util/bufferedstream.h +@@ -29,6 +29,7 @@ + #include "streambase.h" + #include "inputstreambuffer.h" + #include <cassert> ++#include <stdio.h> + + namespace jstreams { + |