about summary refs log tree commit diff
path: root/src/libexpr/value.hh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-08-30T11·12+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-08-30T11·12+0200
commit92d917b71a4862356bbf2a0302308235016a8e50 (patch)
tree7a2c6be4e49b597881ffbdf950050e6330a5bb65 /src/libexpr/value.hh
parent86169d2114fdb8c551bdd5e653e464f4e400edf6 (diff)
Fix GC build
Diffstat (limited to 'src/libexpr/value.hh')
-rw-r--r--src/libexpr/value.hh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libexpr/value.hh b/src/libexpr/value.hh
index 048522016c..271e6a1b24 100644
--- a/src/libexpr/value.hh
+++ b/src/libexpr/value.hh
@@ -1,7 +1,12 @@
 #pragma once
 
+#include "config.h"
 #include "symbol-table.hh"
 
+#if HAVE_BOEHMGC
+#include <gc/gc_allocator.h>
+#endif
+
 namespace nix {