diff options
| author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-06-14 23:54:38 +0000 |
|---|---|---|
| committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2017-06-15 08:50:53 +0000 |
| commit | a3393654f6ec49e012f9c79e7350a087340c4468 (patch) | |
| tree | c85226ee8e16fa56949d6962dfa78c9144e48e78 /src/xml | |
| parent | Remove duplicated build checks. (diff) | |
| download | inkscape-a3393654f6ec49e012f9c79e7350a087340c4468.tar.gz inkscape-a3393654f6ec49e012f9c79e7350a087340c4468.zip | |
Remove cmake checks for C89 headers.
These are roughly equivalent to autoconf's AC_HEADER_STDC and even they
say that macro is obsolescent.
strings.h is not really a C89 header, but it defined some things that
are no longer needed [1]. And no file actually #includes it.
[1] https://stackoverflow.com/a/4291328
Diffstat (limited to 'src/xml')
| -rw-r--r-- | src/xml/repr-util.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/xml/repr-util.cpp b/src/xml/repr-util.cpp index 4d093a4ea..6da1233db 100644 --- a/src/xml/repr-util.cpp +++ b/src/xml/repr-util.cpp @@ -17,13 +17,9 @@ #include "config.h" -#if HAVE_STRING_H # include <cstring> -#endif -#if HAVE_STDLIB_H # include <cstdlib> -#endif #include <glib.h> |
