diff options
| author | Chris Mayo <aklhfex@gmail.com> | 2019-03-21 20:04:48 +0000 |
|---|---|---|
| committer | Chris Mayo <aklhfex@gmail.com> | 2019-03-21 20:04:48 +0000 |
| commit | eb80638397ccd80b2b2ef8db5fcd8f2823bbec07 (patch) | |
| tree | be3f6b9d7f36eb73c8add6a4082464f7e6b351e1 | |
| parent | bf14355080cf7d8cf7e4b3342263ae7f22660e58 (diff) | |
| download | PROJ-eb80638397ccd80b2b2ef8db5fcd8f2823bbec07.tar.gz PROJ-eb80638397ccd80b2b2ef8db5fcd8f2823bbec07.zip | |
strtod.cpp: remove support for no proj_config.h
The nmake build system has been dropped in favour of CMake which is used
to create proj_config.h.
| -rw-r--r-- | src/strtod.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/strtod.cpp b/src/strtod.cpp index 7ab271c5..d45e62db 100644 --- a/src/strtod.cpp +++ b/src/strtod.cpp @@ -33,13 +33,8 @@ #include <string.h> #include "proj.h" -#include "proj_internal.h" - -/* Windows nmake build doesn't have a proj_config.h, but HAVE_LOCALECONV */ -/* is defined in the compilation line */ -#ifndef HAVE_LOCALECONV #include "proj_config.h" -#endif +#include "proj_internal.h" #define PJ_STRTOD_WORK_BUFFER_SIZE 64 |
