add -fPIC option to the C compiler, required in f31
[vsys.git] / globals.ml
index feac055..ce12139 100644 (file)
@@ -1,7 +1,7 @@
 (** Some things that didn't fit in elsewhere *)
 let backend = ref ""
 let debug = ref true
-let vsys_version = "0.9"
+let vsys_version = "0.99"
 let nochroot = ref false
 let conffile = ref ""
 let pid_filepath = ref "/var/run/vsys.pid"
@@ -10,6 +10,7 @@ let failsafe = ref false
 
 let logfd = ref Pervasives.stdout
 let logprint fmt = Printf.fprintf !logfd (fmt ^^ "%!")
+
 let debprint fmt = if (!debug) then Printf.fprintf !logfd (fmt ^^ "%!")
 let print fmt = Printf.printf (fmt ^^ "%!")