-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.toml
More file actions
103 lines (86 loc) · 1.95 KB
/
project.toml
File metadata and controls
103 lines (86 loc) · 1.95 KB
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
[project]
name = "httpd"
version = "4.0.0-dev"
type = "application"
[build]
cflags = [
"-O1",
"-I./include",
"-I./credentials/include",
]
[build.sources]
c_dirs = ["src/", "credentials/src/"]
[mvs.build.datasets.source]
suffix = "SOURCE"
dsorg = "PO"
recfm = "FB"
lrecl = 80
blksize = 19040
space = ["TRK", 600, 100, 200]
[mvs.build.datasets.punch]
suffix = "OBJECT"
dsorg = "PO"
recfm = "FB"
lrecl = 80
blksize = 19040
space = ["TRK", 100, 50, 200]
[mvs.build.datasets.ncalib]
suffix = "NCALIB"
dsorg = "PO"
recfm = "U"
lrecl = 0
blksize = 19069
space = ["TRK", 100, 50, 200]
[mvs.build.datasets.syslmod]
suffix = "LOAD"
dsorg = "PO"
recfm = "U"
lrecl = 0
blksize = 15040
space = ["TRK", 150, 50, 30]
[dependencies]
"mvslovers/crent370" = ">=1.0.9"
"mvslovers/ufsd" = "=1.0.0-dev"
# --- Load Modules ------------------------------------------------
# Main HTTPD server
[[link.module]]
name = "HTTPD"
entry = "@@CRT0"
options = ["SIZE=(4000K,40K)", "LIST", "MAP", "XREF", "RENT"]
include = ["@@CRT1", "HTTPSTRT", "HTTPD", "HTTPPRM"]
setcode = "AC(1)"
[link.module.dep_includes]
"mvslovers/ufsd" = "*"
# JES2 CGI handler
[[link.module]]
name = "HTTPJES2"
entry = "@@CRT0"
options = ["LIST", "MAP", "XREF", "RENT"]
include = ["@@CRT1", "CGISTART", "HTTPJES2"]
# SSI handler modules
[[link.module]]
name = "HTTPDM"
entry = "@@CRT0"
options = ["LIST", "MAP", "XREF", "RENT"]
include = ["@@CRT1", "CGISTART", "HTTPDM"]
[[link.module]]
name = "HTTPDMTT"
entry = "@@CRT0"
options = ["LIST", "MAP", "XREF", "RENT"]
include = ["@@CRT1", "CGISTART", "HTTPDMTT"]
[[link.module]]
name = "HTTPDSL"
entry = "@@CRT0"
options = ["LIST", "MAP", "XREF", "RENT"]
include = ["@@CRT1", "CGISTART", "HTTPDSL"]
[[link.module]]
name = "HTTPDSRV"
entry = "@@CRT0"
options = ["LIST", "MAP", "XREF", "RENT"]
include = ["@@CRT1", "CGISTART", "HTTPDSRV"]
[release]
version_files = ["VERSION"]
[artifacts]
headers = true
header_files = ["httpcgi.h", "httpxlat.h", "dbg.h", "errors.h", "types.h"]
loads = true