forked from xapi-project/xen-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ml
111 lines (104 loc) · 4.7 KB
/
configure.ml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
module C = Configurator.V1
let config = Hashtbl.create 20
(** [flag arg ~doc ~default] sets the default value of [arg] to [default].
Allow the user to override from the command-line with [--arg], and show
[doc] on [--help].
*)
let flag arg ~doc ~default =
let key = String.uppercase_ascii arg in
Hashtbl.replace config key default ;
("--" ^ arg, Arg.String (Hashtbl.replace config key), doc)
let libdir_default =
(* This is the same that [dune install] does by default when invoked without --prefix.
This ensures that files end up in the right place regardless of whether [opam] is used or not.
We unconditionally use `--prefix` on the command-line so we need to use this too.
*)
Findlib.default_location ()
let args =
[
flag "xapi_version" ~doc:"version embedded into binaries" ~default:""
; flag "prefix" ~doc:"DIR Final install destination" ~default:"/usr"
(* ensures bin and sbin end up in right places *)
; flag "libdir" ~doc:"DIR Directory where library files are copied"
~default:libdir_default
; flag "mandir" ~doc:"DIR Manpages" ~default:"/usr/share/man"
; flag "varpatchdir" ~doc:"DIR hotfixes" ~default:"/var/patch"
; flag "etcxendir" ~doc:"DIR configuration files" ~default:"/etc/xensource"
; flag "optdir" ~doc:"DIR system files" ~default:"/opt/xensource"
; flag "plugindir" ~doc:"DIR xapi plugins" ~default:"/etc/xapi.d/plugins"
; flag "extensiondir" ~doc:"DIR XenAPI extensions"
~default:"/etc/xapi.d/extensions"
; flag "hooksdir" ~doc:"DIR hook scripts" ~default:"/etc/xapi.d"
; flag "inventory" ~doc:"FILE the inventory file"
~default:"/etc/xensource-inventory"
; flag "xapiconf" ~doc:"DIR xapi master config file" ~default:"/etc/xapi.conf"
; flag "libexecdir" ~doc:"DIR utility binaries"
~default:"/opt/xensource/libexec"
; flag "scriptsdir" ~doc:"DIR utility scripts"
~default:"/etc/xensource/scripts"
; flag "sharedir" ~doc:"DIR shared binary files" ~default:"/opt/xensource"
; flag "webdir" ~doc:"DIR html files" ~default:"/opt/xensource/www"
; flag "cluster_stack_root" ~doc:"DIR cluster stacks"
~default:"/usr/libexec/xapi/cluster-stack"
; flag "udevdir" ~doc:"DIR udev scripts" ~default:"/etc/udev"
; flag "docdir" ~doc:"DIR XenAPI documentation" ~default:"/usr/share/xapi/doc"
; flag "sdkdir" ~doc:"DIR XenAPI SDK" ~default:"/usr/share/xapi/sdk"
; flag "bindir" ~doc:"DIR binaries" ~default:"/usr/bin"
; flag "sbindir" ~doc:"DIR superuser binaries" ~default:"/usr/sbin"
; flag "xenopsd_libexecdir" ~doc:"DIR xenopsd helper executables"
~default:"/usr/lib/xenopsd"
; flag "qemu_wrapper_dir" ~doc:"DIR xen helper executables"
~default:"/usr/lib/xenopsd"
; flag "etcdir" ~doc:"DIR configuration files" ~default:"/etc"
; flag "yumplugindir" ~doc:"DIR YUM plugins" ~default:"/usr/lib/yum-plugins"
; flag "yumpluginconfdir" ~doc:"DIR YUM plugins conf dir"
~default:"/etc/yum/pluginconf.d"
; flag "xapi_api_version_major" ~doc:"xapi api major version" ~default:"2"
; flag "xapi_api_version_minor" ~doc:"xapi api minor version" ~default:"21"
]
|> Arg.align
let expand start finish input output =
let command =
Printf.sprintf "cat %s | sed -r 's=%s=%s=g' > %s" input start finish output
in
if Sys.command command <> 0 then (
Printf.fprintf stderr "Failed to expand %s -> %s in %s producing %s\n" start
finish input output ;
Printf.fprintf stderr "Command-line was:\n%s\n%!" command ;
exit 1
)
let () =
C.main ~args ~name:"xapi" @@ fun _c ->
let lines =
"# Warning - this file is autogenerated by the configure script"
:: "# Do not edit"
:: (config
|> Hashtbl.to_seq
|> (Seq.map @@ fun (k, v) -> Printf.sprintf "export %s=%s" k v)
|> List.of_seq
)
in
List.iter print_endline lines ;
(* Expand @LIBEXEC@ in udev rules *)
( match Hashtbl.find_opt config "XENOPSD_LIBEXECDIR" with
| Some xenopsd_libexecdir ->
expand "@LIBEXEC@" xenopsd_libexecdir "ocaml/xenopsd/scripts/vif.in"
"ocaml/xenopsd/scripts/vif" ;
expand "@LIBEXEC@" xenopsd_libexecdir
"ocaml/xenopsd/scripts/xen-backend.rules.in"
"ocaml/xenopsd/scripts/xen-backend.rules"
| None ->
failwith "xenopsd_libexecdir not set"
) ;
match
( Hashtbl.find_opt config "XAPI_API_VERSION_MAJOR"
, Hashtbl.find_opt config "XAPI_API_VERSION_MINOR"
)
with
| Some xapi_api_version_major, Some xapi_api_version_minor ->
expand "@APIVERMAJ@" xapi_api_version_major "ocaml/idl/api_version.ml.in"
"ocaml/idl/api_version.ml.in2" ;
expand "@APIVERMIN@" xapi_api_version_minor "ocaml/idl/api_version.ml.in2"
"ocaml/idl/api_version.ml"
| _, _ ->
failwith "xapi_api_version_major or xapi_api_version_minor not set"