about summary refs log tree commit diff stats
path: root/src/luasec
Commit message (Collapse)AuthorAgeFilesLines
* now building on OpenBSDKartik K. Agaram2021-11-271-3/+3
| | | | Still emitting a bunch of warnings on OpenBSD, though.
* select C99 in luasecKartik K. Agaram2021-11-271-2/+2
| | | | | | I can't select C99 in luasocket, because I don't know how to include the definition of struct timespec. All this fucking complexity. But hopefully things will build on OpenBSD now.
* fix build on MacKartik K. Agaram2021-11-271-2/+2
|
* .Kartik K. Agaram2021-11-251-1/+1
|
* more Makefile streamliningKartik K. Agaram2021-11-241-10/+12
| | | | | | | | | | Since everything is in my control there's no need to parameterize include paths. It's a struggle to get make to run when it should. Lying that something is phony stops working when it's a dependency. Commands get unnecessarily run. Just fucking run recursive makes directly in the target that depends on them.
* clean up a warning and a bit of duplicationKartik K. Agaram2021-11-223-31/+2
| | | | | Now we have 2 probably-valid warnings caused by my edits, and 1 false-positive.
* standardize warning flags everywhereKartik K. Agaram2021-11-222-9/+9
| | | | | | | | | | I'd like to enable -Wextra as well, but that creates some false positives. I've at least made my changes clean w.r.t. -Wextra. Now we have 4 remaining warnings with gcc 9.3 that seem genuine. Need to fix those.
* standardize CFLAGS in luasecKartik K. Agaram2021-11-221-6/+6
| | | | | | What in the world is up with the $MYCFLAGS convention in these Lua makefiles? I don't know, but I'm going to leave it undisturbed as far as possible.
* standardize on gccKartik K. Agaram2021-11-221-1/+1
| | | | cc and gcc are identical on my system. But why rely on that.
* delete final vestiges of embedded luasocketKartik K. Agaram2021-11-226-243/+2
|
* delete most of the embedded luasocket in luasecKartik K. Agaram2021-11-2212-1545/+8
| | | | Hilariously, I wasn't linking against it in the first place.
* luasec: fix 'make clean'Kartik K. Agaram2021-11-221-3/+3
|
* https now working!Kartik K. Agaram2021-11-2129-0/+5611
Still extremely ugly: - I've inlined all the namespaces under ssl, so you need to know that context and config are related to ssl. - luasec comes with its own copy of luasocket. I haven't deduped that yet.
<vc@akkartik.com> 2017-04-04 19:37:42 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2017-04-04 19:37:55 -0700 3812' href='/akkartik/mu/commit/021check_instruction.cc?h=hlt&id=3c31b721c2bd5793430e4b2eba148d5ac46fabea'>3c31b721 ^
bb7142db ^
e0659ab3 ^
a0fc38c9 ^




e236973b ^
a0fc38c9 ^
e236973b ^

a0fc38c9 ^






5f98a10c ^
1ead3562 ^
3c31b721 ^
a0fc38c9 ^
3c31b721 ^
a0fc38c9 ^

5f98a10c ^
1ead3562 ^
192d59d3 ^
a0fc38c9 ^
192d59d3 ^
a0fc38c9 ^

5f98a10c ^
1ead3562 ^
192d59d3 ^
a0fc38c9 ^
192d59d3 ^
a0fc38c9 ^

5f98a10c ^
1ead3562 ^
377b00b0 ^
a0fc38c9 ^
377b00b0 ^
a0fc38c9 ^
9e32e473 ^


377b00b0 ^

9e32e473 ^
377b00b0 ^
9e32e473 ^
1193171f ^






a0fc38c9 ^
691b529e ^
23d3a022 ^


1193171f ^
93d4cc93 ^
016599f1 ^


23d3a022 ^
dfdbcbab ^

4d238fd7 ^



4d238fd7 ^
23d3a022 ^
92a3d082 ^
4d238fd7 ^
016599f1 ^
23d3a022 ^





7f193a0e ^

49620728 ^
23d3a022 ^
b5f2a629 ^
1fb0cf9e ^
7136ddd5 ^

4d238fd7 ^
dfdbcbab ^
4d238fd7 ^


c6034af3 ^
23d3a022 ^




c6034af3 ^
3473c63a ^
af023b32 ^
93d4cc93 ^
af023b32 ^
93d4cc93 ^
af023b32 ^
af023b32 ^


f8b0b04d ^





a0fc38c9 ^

d785efe5 ^











f8b0b04d ^







86c715d7 ^

f8b0b04d ^

58a9f7c3 ^

7136ddd5 ^



3473c63a ^

af023b32 ^

af023b32 ^



4ecab182 ^



1fb0cf9e ^
a0fc38c9 ^

3473c63a ^

3bfd75fc ^

af023b32 ^
1fb0cf9e ^
3bfd75fc ^

3473c63a ^
9e32e473 ^




3473c63a ^
c6034af3 ^
af023b32 ^
67f969b9 ^
c4e143d6 ^
65c905fe ^
67f969b9 ^
1fb0cf9e ^
4e49b29e ^

db69ad7a ^

af023b32 ^





1fb0cf9e ^
db69ad7a ^
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232