about summary refs log tree commit diff
path: root/src/libutil/types.hh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-09-11T18·45-0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-09-11T18·45-0400
commit295027f533bb5a754bfc62f934c88b43e9c100a6 (patch)
tree5d0702ab38c93bd44565d23e79234b2314d05efa /src/libutil/types.hh
parentd3004c78d9816431224f7ac0416c5bfea0cc22cd (diff)
Include config.h before any other header
"config.h" must be included first, because otherwise the compiler
might not see the right value of _FILE_OFFSET_BITS.  We've had this
before; see 705868a8a96a10f70e629433cfffc2d5cd2703eb.  In this case,
GCC would compute a different address for ‘settings.useSubstitutes’ in
misc.cc because of the off_t in ‘settings’.

Reverts 3854fc9b42d16b810f62b64194b699033b03aaf1.

http://hydra.nixos.org/build/3016700
Diffstat (limited to 'src/libutil/types.hh')
-rw-r--r--src/libutil/types.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libutil/types.hh b/src/libutil/types.hh
index 165a46fa28e9..a2ab1cc0ee83 100644
--- a/src/libutil/types.hh
+++ b/src/libutil/types.hh
@@ -1,5 +1,7 @@
 #pragma once
 
+#include "config.h"
+
 #include <string>
 #include <list>
 #include <set>