Commit | Line | Data |
d0d1d9b9 |
1 | Change 171 on 2000-09-12 by <calle@lysator.liu.se> (Calle Dybedahl) |
2 | |
3 | - Fixed filename-extracting regexp to allow whitespace between |
4 | "#" and "line", which the cpp on Unicos 9 produces. |
5 | |
dcbf900d |
6 | Change 170 on 1998/07/05 by <gbarr@pobox.com> (Graham Barr) |
7 | |
8 | Fixed three problems reported by Hans Mulder for NeXT |
9 | |
10 | - Errno_pm.PL does not recognize #define lines because they have |
11 | whitespace before the '#'. ANSI does not allow that in portable |
12 | code; that didn't stop the author of NeXT's <errno.h>. |
13 | |
14 | - Cpp output lines look like this: #1 "errno.c" |
15 | Errno_pm.PL does not recognize that format; it wants whitespace |
16 | before the line number. |
17 | |
18 | - Cpp does a syntax check on files with names ending in ".c"; it |
19 | reports fatal errors on input lines like: "ENOSYS" [[ENOSYS]] |
20 | Workaround: use $Config{cppstdin}, like Errno 1.04 did. |
21 | |
eab60bb1 |
22 | Change 160 on 1998/06/27 by <gbarr@pobox.com> (Graham Barr) |
23 | |
24 | - Added patch from Sarathy to support Win32 |
25 | - Changed use of $Config{cpp} to $Config{cpprun} as suggested by |
26 | Tom Horsley |
27 | |
28 | Change 159 on 1998/06/27 by <gbarr@pobox.com> (Graham Barr) |
29 | |
30 | - Changed to use cpp to locate required files |
31 | - Moved dummy Errno.pm file into d/ |
32 | - Added support for VMS |
33 | |
34 | Change 158 on 1998/06/27 by <gbarr@pobox.com> (Graham Barr) |
35 | |
36 | Rename errno.pl to Errno_pm.PL |
37 | |
38 | Change 146 on 1998/05/31 by <gbarr@pobox.com> (Graham Barr) |
39 | |
40 | Added ChangeLog to MANIFEST |
41 | |
42 | Change 140 on 1998/05/23 by <gbarr@pobox.com> (Graham Barr) |
43 | |
44 | Fix type in errno.pl |
45 | |
46 | Change 139 on 1998/05/23 by <gbarr@pobox.com> (Graham Barr) |
47 | |
48 | Moved code to generate Errno.pm into errno.pl |
49 | |
50 | Change 136 on 1998/05/19 by <gbarr@pobox.com> (Graham Barr) |
51 | |
52 | Changed to use cpp to locate constants |
53 | |
54 | Added t/errno.t |
55 | |