Index: libcfa/src/concurrency/io/setup.cfa
===================================================================
--- libcfa/src/concurrency/io/setup.cfa	(revision 804c0ffe17f5af207b13b438b9c8bedaa3ab224a)
+++ libcfa/src/concurrency/io/setup.cfa	(revision 1dbc3e10aa95fe4eb7a64180a48e163eb89fd88b)
@@ -42,4 +42,7 @@
 	void ^?{}(io_context & this, bool cluster_context) {}
 
+	void register_fixed_files( io_context &, int *, unsigned ) {}
+	void register_fixed_files( cluster    &, int *, unsigned ) {}
+
 #else
 	#include <errno.h>
Index: libcfa/src/concurrency/stats.hfa
===================================================================
--- libcfa/src/concurrency/stats.hfa	(revision 804c0ffe17f5af207b13b438b9c8bedaa3ab224a)
+++ libcfa/src/concurrency/stats.hfa	(revision 1dbc3e10aa95fe4eb7a64180a48e163eb89fd88b)
@@ -2,4 +2,9 @@
 
 #include <stdint.h>
+
+enum {
+	CFA_STATS_READY_Q  = 0x01,
+	CFA_STATS_IO = 0x02,
+};
 
 #if defined(__CFA_NO_STATISTICS__)
@@ -9,10 +14,4 @@
 	static inline void __print_stats( struct __stats_t *, int, const char *, const char *, void * ) {}
 #else
-	enum {
-		CFA_STATS_READY_Q  = 0x01,
-		#if defined(CFA_HAVE_LINUX_IO_URING_H)
-			CFA_STATS_IO = 0x02,
-		#endif
-	};
 
 	struct __attribute__((aligned(64))) __stats_readQ_t {
