forked from savonet/liquidsoap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.mli
80 lines (55 loc) · 1.89 KB
/
configure.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
(** Constants describing configuration options of liquidsoap. *)
(** String describing the version. *)
val version : string
(** Is this build a SVN snapshot ? *)
val scm_snapshot : bool
(** String describing the software. *)
val vendor : string
(** Substitution of configured variables *)
val var_script : string ref
val subst_vars : string -> string
(** Where to look for standard .liq scripts to include *)
val libs_dir : string
(** Directories where to search for libraries.. *)
val findlib_path : string list
(** Is dynlink available? *)
val dynlink : bool
(** Load plugins directory *)
val load_plugins_dir : string -> unit
(** Where to look for dynamically loadable modules (cmxs). *)
val plugins_dir : string
(** Where to look for private executables. *)
val bin_dir : string
(** Standard path. *)
val path : string list
(** Helper for all things that need to be
* executed before script parsing. *)
val at_init : (unit -> unit) -> unit
val run_init : unit -> unit
(** Executable extension. *)
val exe_ext : string
(** Default font file *)
val default_font : string
(** Function to reencode tags into utf8. *)
val recode_tag : ?in_enc:string -> ?out_enc:string -> string -> string
(** Maximal id for a request. *)
val requests_max_id : int
(** Magic mime detection *)
val file_mime : (string -> string) option
val data_mime : (?len:int -> string -> string) option
val requests_table_size : int
(** Configured directories. Typically /var/(run|log)/liquidsoap. *)
val rundir : string
val logdir : string
(** Display inferred types. *)
val display_types : bool ref
(** Liquidsoap configuration root *)
val conf : Dtools.Conf.ut
(** Is the architecture big endian? *)
val big_endian : bool
(** String containing versions of all enabled bindings. *)
val libs_versions : string
(** File watch utility. *)
val file_watcher : File_watcher.watch ref
(** JSON parser. *)
module JSON : (module type of JSON)