diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-17 15:44:26 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-17 15:44:26 (GMT) |
commit | 1094200ea060dad38eaffd6e06cb5852d556a559 (patch) | |
tree | e71322bfb8381d3b5217347b8e2a9130400a1eb8 /Source/cmStandardIncludes.h | |
parent | 4d86b681de366ab168823e113506428fa72b13d7 (diff) | |
download | CMake-1094200ea060dad38eaffd6e06cb5852d556a559.zip CMake-1094200ea060dad38eaffd6e06cb5852d556a559.tar.gz CMake-1094200ea060dad38eaffd6e06cb5852d556a559.tar.bz2 |
BUG: fix to compile on hp with aCC
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r-- | Source/cmStandardIncludes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index fa2afd2..9c84215 100644 --- a/Source/cmStandardIncludes.h +++ b/Source/cmStandardIncludes.h @@ -64,9 +64,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #ifndef CMAKE_NO_ANSI_STREAM_HEADERS #include <fstream> #include <iostream> +#include <strstream> #else #include <fstream.h> #include <iostream.h> +#include <strstream.h> #endif #include <vector> |