diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-12-14 21:51:58 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-12-14 21:52:34 +0100 |
commit | e2bcd41ce35b051f311e36dfd104d36ce1145f8b (patch) | |
tree | e7803b08d9754c5cc050dc8fd71656d44e42652f | |
parent | b5bb44b260bb5758cfb0c42552652627c1b08295 (diff) |
gnu: 389-ds-base: Enable one test.
* gnu/packages/openldap.scm (389-ds-base)[arguments]: Enable unit tests.
[native-inputs]: Add cmocka.
-rw-r--r-- | gnu/packages/openldap.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/openldap.scm b/gnu/packages/openldap.scm index 42808bbf79..73cb56c21b 100644 --- a/gnu/packages/openldap.scm +++ b/gnu/packages/openldap.scm @@ -269,7 +269,8 @@ servers from Python programs.") #:imported-modules `((guix build python-build-system) ,@%gnu-build-system-modules) #:configure-flags - #~(list (string-append "--with-db=" + #~(list "--enable-cmocka" + (string-append "--with-db=" #$(this-package-input "bdb")) (string-append "--with-netsnmp=" #$(this-package-input "net-snmp")) @@ -380,6 +381,7 @@ servers from Python programs.") (native-inputs (list autoconf automake + cmocka doxygen gettext-minimal libtool |