diff --git a/src/libstore/platform/freebsd.cc b/src/libstore/platform/freebsd.cc index bdba1abf5..f625dd540 100644 --- a/src/libstore/platform/freebsd.cc +++ b/src/libstore/platform/freebsd.cc @@ -1,5 +1,6 @@ #include "platform/freebsd.hh" #include "regex.hh" +#include "strings.hh" #include #include #include @@ -139,4 +140,10 @@ void FreeBSDLocalStore::findPlatformRoots(UncheckedRoots & unchecked) } } } + +void registerLocalStore() +{ + StoreImplementations::add(); +} + }