gnu: r-annotationhub: Update to 2.12.0.
[jackhill/guix/guix.git] / Makefile.am
index 2110371..474575c 100644 (file)
@@ -257,6 +257,17 @@ MODULES +=                                 \
 
 endif BUILD_DAEMON_OFFLOAD
 
+# Scheme implementation of the build daemon and related functionality.
+STORE_MODULES =                                        \
+  guix/store/database.scm                      \
+  guix/store/deduplication.scm
+
+if HAVE_GUILE_SQLITE3
+MODULES += $(STORE_MODULES)
+else
+MODULES_NOT_COMPILED += $(STORE_MODULES)
+endif !HAVE_GUILE_SQLITE3
+
 # Internal modules with test suite support.
 dist_noinst_DATA = guix/tests.scm guix/tests/http.scm
 
@@ -264,6 +275,7 @@ dist_noinst_DATA = guix/tests.scm guix/tests/http.scm
 AUX_FILES =                                            \
   gnu/packages/aux-files/emacs/guix-emacs.el           \
   gnu/packages/aux-files/linux-libre/4.16-arm.conf     \
+  gnu/packages/aux-files/linux-libre/4.16-arm64.conf   \
   gnu/packages/aux-files/linux-libre/4.16-i686.conf    \
   gnu/packages/aux-files/linux-libre/4.16-x86_64.conf  \
   gnu/packages/aux-files/linux-libre/4.14-arm.conf     \
@@ -274,7 +286,8 @@ AUX_FILES =                                         \
   gnu/packages/aux-files/linux-libre/4.4-i686.conf     \
   gnu/packages/aux-files/linux-libre/4.4-x86_64.conf   \
   gnu/packages/aux-files/linux-libre/4.1-i686.conf     \
-  gnu/packages/aux-files/linux-libre/4.1-x86_64.conf
+  gnu/packages/aux-files/linux-libre/4.1-x86_64.conf   \
+  gnu/packages/aux-files/run-in-namespace.c
 
 # Templates, examples.
 EXAMPLES =                                     \
@@ -377,6 +390,14 @@ SCM_TESTS +=                                       \
 
 endif
 
+if HAVE_GUILE_SQLITE3
+
+SCM_TESTS +=                                   \
+  tests/store-database.scm                     \
+  tests/store-deduplication.scm
+
+endif
+
 SH_TESTS =                                     \
   tests/guix-build.sh                          \
   tests/guix-download.sh                       \