summaryrefslogtreecommitdiff
path: root/src/settings.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings.sml')
-rw-r--r--src/settings.sml7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/settings.sml b/src/settings.sml
index 0fea73e8..abb26f72 100644
--- a/src/settings.sml
+++ b/src/settings.sml
@@ -704,6 +704,10 @@ val sql = ref (NONE : string option)
fun setSql so = sql := so
fun getSql () = !sql
+val endpoints = ref (NONE : string option)
+fun setEndpoints so = endpoints := so
+fun getEndpoints () = !endpoints
+
val coreInline = ref 5
fun setCoreInline n = coreInline := n
fun getCoreInline () = !coreInline
@@ -730,7 +734,7 @@ fun getSigFile () = !sigFile
val fileCache = ref (NONE : string option)
fun setFileCache v =
- (if Option.isSome v andalso (case #supportsSHA512 (currentDbms ()) of NONE => true
+ (if Option.isSome v andalso (case #supportsSHA512 (currentDbms ()) of NONE => true
| SOME _ => false) then
ErrorMsg.error "The selected database engine is incompatible with file caching."
else
@@ -1008,6 +1012,7 @@ fun reset () =
dbstring := NONE;
exe := NONE;
sql := NONE;
+ endpoints := NONE;
coreInline := 5;
monoInline := 5;
staticLinking := false;