diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/main.cc | 6 |
2 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.0.1: | 2 | Changes for 1.0.1: |
3 | *07/12/14: | ||
4 | * Fix compiling with gcc 4.3 (thanks Dmitry E. Oboukhov) | ||
5 | main.cc | ||
3 | *07/12/13: | 6 | *07/12/13: |
4 | * Fix configure option --with-style (thanks Slava Semushin) | 7 | * Fix configure option --with-style (thanks Slava Semushin) |
5 | configure.in Makefile.am | 8 | configure.in Makefile.am |
diff --git a/src/main.cc b/src/main.cc index e4e16ac..ab18f6c 100644 --- a/src/main.cc +++ b/src/main.cc | |||
@@ -45,6 +45,12 @@ | |||
45 | #include <stdlib.h> | 45 | #include <stdlib.h> |
46 | #endif | 46 | #endif |
47 | 47 | ||
48 | #ifdef HAVE_CSTRING | ||
49 | #include <cstring> | ||
50 | #else | ||
51 | #include <string.h> | ||
52 | #endif | ||
53 | |||
48 | #include <iostream> | 54 | #include <iostream> |
49 | #include <fstream> | 55 | #include <fstream> |
50 | #include <stdexcept> | 56 | #include <stdexcept> |