Drop all references to --disable-init-state

It's all dead code since 2014 (commit 0c6d62cf27).
This commit is contained in:
Tuomas Tynkkynen 2018-08-20 01:51:23 +03:00
parent cc7b4386b1
commit 458282be59
3 changed files with 1 additions and 11 deletions

View File

@ -229,12 +229,6 @@ if test "$gc" = yes; then
fi
AC_ARG_ENABLE(init-state, AC_HELP_STRING([--disable-init-state],
[do not initialise DB etc. in `make install']),
init_state=$enableval, init_state=yes)
#AM_CONDITIONAL(INIT_STATE, test "$init_state" = "yes")
# documentation generation switch
AC_ARG_ENABLE(doc-gen, AC_HELP_STRING([--disable-doc-gen],
[disable documentation generation]),

View File

@ -30,7 +30,7 @@ rec {
});
configureFlags =
[ "--disable-init-state"
[
"--enable-gc"
] ++ lib.optionals stdenv.isLinux [
"--with-sandbox-shell=${sh}/bin/busybox"

View File

@ -189,10 +189,6 @@ let
buildInputs = buildDeps;
configureFlags = ''
--disable-init-state
'';
dontInstall = false;
doInstallCheck = true;