summaryrefslogtreecommitdiffstats
path: root/src/inkgc/gc-core.h
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2017-06-14 23:40:37 +0000
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2017-06-15 08:50:53 +0000
commitc6627256555b3356238e57ffd749c413d28e8a3c (patch)
treed17e74eae155ea535947d1cb1b06d446d0529d75 /src/inkgc/gc-core.h
parentRemove checks for unused functions. (diff)
downloadinkscape-c6627256555b3356238e57ffd749c413d28e8a3c.tar.gz
inkscape-c6627256555b3356238e57ffd749c413d28e8a3c.zip
Remove duplicated build checks.
Most of these #defines are not even checked anyway, though they could have the side-effect of failing configure before the build started. However, these checks are redundant due to other checks for the same thing: * concept_check.hpp was added to Boost in 1.19.0, released in 2000. I sincerely doubt anyone is using that version right now, but I added a minimum version to the find_package() call. In any case, no code actually checked the #define, so it wouldn't have built without it anyway. * FindBoehmGC puts gc.h on the compiler search path, so there's no need to try gc/gc.h also. * libintl.h is found by FindIntl. * unordered_set is part of the C++11 standard. * zlib.h is found by find_package(ZLIB).
Diffstat (limited to 'src/inkgc/gc-core.h')
-rw-r--r--src/inkgc/gc-core.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/inkgc/gc-core.h b/src/inkgc/gc-core.h
index a27510f50..407c857fb 100644
--- a/src/inkgc/gc-core.h
+++ b/src/inkgc/gc-core.h
@@ -19,11 +19,7 @@
#include <new>
#include <cstdlib>
-#ifdef HAVE_GC_GC_H
-# include <gc/gc.h>
-#else
# include <gc.h>
-#endif
namespace Inkscape {
namespace GC {