forked from synesissoftware/UNIXem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
528 lines (357 loc) · 10.1 KB
/
CHANGES.txt
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
UNIXem - Changes
================
Updated: 13th August 2010
************************************
* Change key: *
* *
* ~ means something has changed *
* + means a new addition *
* - means removal of something *
* * means a general bullet-point *
* *
************************************
12th August 2010 - 1.9.1
========================
Summary:
--------
* reworked the API such that all functions are prefixed with unixem_(), and defined to the UNIX functions via macros
* 64-bit compatibility fixes
Details:
--------
General:
~ include/asm/atomic.h:
~ include/dirent.h:
~ include/dlfcn.h:
~ include/glob.h:
~ include/sys/mman.h:
~ include/sys/resource.h:
~ include/sys/uio.h:
~ include/unistd.h:
~ include/unixem/internal/util.h:
~ include/sys/time.h:
~ reworked the API such that all functions are prefixed with unixem_(), and defined to the UNIX functions via macros
+ include/unixem/asm/atomic.h:
+ include/unixem/dirent.h:
+ include/unixem/dlfcn.h:
+ include/unixem/glob.h:
+ include/unixem/setenv.h:
+ include/unixem/sys/mman.h:
+ include/unixem/sys/resource.h:
+ include/unixem/sys/uio.h:
+ include/unixem/unistd.h:
+ include/unixem/sys/time.h:
~ reworked the API such that all functions are prefixed with unixem_(), and defined to the UNIX functions via macros
~ src/atomic.c:
~ src/dirent.c:
~ src/dlfcn.c:
~ src/glob.c:
~ src/hostname.c:
~ src/internal/util.c:
~ src/mmap.c:
~ src/resource.c:
~ src/setenv.c:
~ src/time.c:
~ src/uio.c:
~ reworked the API such that all functions are prefixed with unixem_(), and defined to the UNIX functions via macros
~ src/unistd.c:
~ Win64-compatibility
~ GCC compatibility
~ reworked the API such that all functions are prefixed with unixem_(), and defined to the UNIX functions via macros
Distribution:
Makefiles / Project-files:
~ build/ar/makefile:
~ build/bc55/makefile:
~ build/bc551/makefile:
~ build/bc56/makefile:
~ build/bc564/makefile:
~ build/bc582/makefile:
~ build/bc59x/makefile:
~ build/bc61x/makefile:
~ build/como433/makefile:
~ build/cw7/makefile:
~ build/cw8/makefile:
~ build/dm/makefile:
~ build/gcc295/makefile:
~ build/gcc32/makefile:
~ build/gcc33/makefile:
~ build/icl10/makefile:
~ build/icl11/makefile:
~ build/icl6/makefile:
~ build/icl7/makefile:
~ build/icl8/makefile:
~ build/icl9/makefile:
~ build/makefile.tools.xml:
~ build/ow12/makefile:
~ build/ow13/makefile:
~ build/ow14/makefile:
~ build/ow15/makefile:
~ build/ow16/makefile:
~ build/ow17/makefile:
~ build/vc10.x64/makefile:
~ build/vc10/makefile:
~ build/vc42/makefile:
~ build/vc5/makefile:
~ build/vc6/makefile:
~ build/vc7/makefile:
~ build/vc71/makefile:
~ build/vc8.x64/makefile:
~ build/vc8/makefile:
~ build/vc9.x64/makefile:
~ build/vc9/makefile:
~ reworked the API such that all functions are prefixed with unixem_(), and defined to the UNIX functions via macros
Examples:
Test:
Test.Unit:
Test.Component:
Test.Scratch:
Depends on:
13th August 2010 - 1.8.5
========================
Summary:
--------
* gettimeofday() now returns int (instead of void)
* added VC++ 10 implicit-link support
Details:
--------
General:
~ include/sys/time.h:
~ src/time.c:
~ gettimeofday() now returns int (instead of void)
~ include/unixem/implicit_link.h:
+ now supports VC++ 10
Distribution:
Makefiles / Project-files:
Examples:
Test:
Test.Unit:
Test.Component:
Test.Scratch:
Depends on:
4th April 2010 - 1.8.4
======================
Summary:
--------
* fixed erroneous library name in implicit link file
* added VC++ 10 support
Details:
--------
General:
~ include/unixem/implicit_link.h:
~ fixed erroneous library name in implicit link file
Distribution:
Makefiles / Project-files:
+ build/vc10.x64/makefile:
+ build/vc10/makefile:
+ added VC++ 10 support
Examples:
Test:
Test.Unit:
Test.Component:
Test.Scratch:
Depends on:
6th February 2010 - 1.8.3
=========================
Summary:
--------
* refactored headers to resolve conflict(s) between unistd.h and winsock(2).h withouth using #define to prevent subsequent inclusion of winsock(2).h
* added empty (placeholder) files: arpa/inet.h, netinet/in.h, sys/socket.h
* fixed _M_X86 implicit link defect
* added implicit link support for Borland 5.9+, 6.1+ and Intel C/C++ 9, 10, 11
* changed library name/implicit link directives for VC++ x64/IA64 targets
* added Synesis-standard make targets: compile.libs.core, compile.libs, compile, build.libs.core, build.libs, build
* various other minor changes
Details:
--------
General:
~ include/arpa/inet.h:
~ include/netinet/in.h:
~ include/sys/socket.h:
+ added empty (placeholder) files
~ include/sys/time.h:
~ now implemented in terms of unixem/internal/winsock.h
~ include/unistd.h:
~ updated version
~ now controls conflict between unistd.h and winsock(2).h without using #define to prevent subsequent inclusion of winsock(2).h
~ include/unixem/implicit_link.h:
+ implicit link support for Borland 5.9+ and 6.1+
+ implicit link support for Intel C/C++ 9, 10, 11
~ implicit link to new name for VC++ x64/IA64 targets
~ fixed _M_X86 blooper
~ include/unixem/internal/winsock.h:
+ unixem/internal/winsock.h
~ src/hostname.c:
~ changed calling convention of unixem_gethostname()
Distribution:
Makefiles / Project-files:
~ build/bc55/makefile:
~ build/bc551/makefile:
~ build/bc56/makefile:
~ build/bc564/makefile:
~ build/bc582/makefile:
~ build/ow12/makefile:
~ build/ow13/makefile:
~ build/ow14/makefile:
~ build/ow15/makefile:
~ build/ow16/makefile:
~ build/ow17/makefile:
+ added Synesis-standard make targets: compile.libs.core, compile.libs, compile, build.libs.core, build.libs, build
~ -+ librarian to +
~ build/bc59x/makefile:
~ build/bc61x/makefile:
+ added Synesis-standard make targets: compile.libs.core, compile.libs, compile, build.libs.core, build.libs, build
+ added support for Borland 5.9 and 6.1
~ build/icl10/makefile:
~ build/icl11/makefile:
~ build/icl9/makefile:
+ added Synesis-standard make targets: compile.libs.core, compile.libs, compile, build.libs.core, build.libs, build
+ added support for Intel 9, 10, 11
~ build/ar/makefile:
~ build/como433/makefile:
~ build/cw7/makefile:
~ build/cw8/makefile:
~ build/dm/makefile:
~ build/gcc295/makefile:
~ build/gcc32/makefile:
~ build/gcc33/makefile:
~ build/gcc34/makefile:
~ build/icl10/makefile:
~ build/icl11/makefile:
~ build/icl6/makefile:
~ build/icl7/makefile:
~ build/icl8/makefile:
~ build/icl9/makefile:
~ build/vc42/makefile:
~ build/vc5/makefile:
~ build/vc6/makefile:
~ build/vc7/makefile:
~ build/vc71/makefile:
~ build/vc8/makefile:
~ build/vc9/makefile:
+ added Synesis-standard make targets: compile.libs.core, compile.libs, compile, build.libs.core, build.libs, build
~ build/vc8.x64/makefile:
~ build/vc9.x64/makefile:
+ added Synesis-standard make targets: compile.libs.core, compile.libs, compile, build.libs.core, build.libs, build
~ new names for VC++ x64/IA64 targets
Examples:
Test:
Test.Unit:
Test.Component:
Test.Scratch:
Depends on:
13th May 2008 - 1.8.2
=====================
Summary:
--------
* Win64 compatibility
Details:
--------
General:
- unlink is now left to the version provided with the VC++ RTL
~ mman.h now 64-bit compatible
+ implicit link compatibility with vc8 and vc9
Distribution:
Makefiles / Project-files:
Examples:
Test:
Test.Unit:
Test.Component:
Test.Scratch:
Depends on:
22nd April 2008 - 1.8.1
=======================
Summary:
--------
* added gethostname()
* added getpid()
* changed 2nd param of gettimeofday() to void*
* improved semantics for glob() when a pattern search in an
existing directory matches no entries
Details:
--------
General:
+ gethostname() (in unistd.h and src/hostname.c)
+ added getpid() (in unistd.h and src/unistd.c)
~ changed 2nd param of gettimeofday() to void*
~ improved semantics for glob() when a pattern search in an
existing directory matches no entries
Distribution:
Makefiles / Project-files:
+ hostname.c
Examples:
Test:
Test.Unit:
Test.Component:
Test.Scratch:
Depends on:
20th April 2008 - 1.7.5
=======================
Summary:
--------
* the distribution is now rooted at unixem-1.7.5/
* makefiles for VC++ 8 & 9
* implicit linking for Borland C/C++ 5.82
* implicit linking for VC++ 9
* bundles shwild 0.9.13
* bundles xTests 0.6.1
Details:
--------
General:
+ implicit linking for Borland C/C++ 5.82
+ implicit linking for VC++ 9
Distribution:
~ the distribution is now rooted at unixem-1.7.5/
Makefiles / Project-files:
+ makefiles for VC++ 8 & 9
Examples:
Test:
Test.Unit:
Test.Component:
Test.Scratch:
Depends on:
24th February 2008 - 1.7.4
==========================
Summary:
--------
* include/unixem/internal/safestr.h
* safe string library for src/glob.c
* improved handling of offsets and errors in src/mmap.c
* safe string library for src/setenv.c
* fixed bug in gettimeofday(), which was showing local time, rather
than the required system time
Details:
--------
General:
+ include/unixem/internal/safestr.h
~ safe string library for src/glob.c
~ improved handling of offsets and errors in src/mmap.c
~ safe string library for src/setenv.c
~ fixed bug in gettimeofday(), which was showing local time, rather
than the required system time
Distribution:
Makefiles / Project-files:
Examples:
Test:
Test.Unit:
Test.Component:
Test.Scratch:
Depends on:
12th March 2007 - 1.7.3
=======================
Summary:
--------
* fixed gettimeofday() - was returning local and not system time
* library now compatible with Secure Library string functions
Details:
--------
General:
~ fixed gettimeofday() - was returning local and not system time
~ library now compatible with Secure Library string functions
Distribution:
Makefiles / Project-files:
Examples:
Test:
Test.Unit:
Test.Component:
Test.Scratch:
Depends on:
=============================== End of file ================================