History log of /src/lib/libc/stdio/fparseln.c |
Revision | | Date | Author | Comments |
1.10 |
| 21-Oct-2009 |
snj | Remove 3rd and 4th clauses in christos' license. OK christos.
|
1.9 |
| 11-Jan-2009 |
christos | merge christos-time_t
|
1.8 |
| 05-Jan-2009 |
tnozaki | 1. reworking PR lib/40317: libnbcompat already contains empty fparseln.lo so previous fix doesn't work correctly. i've just added broken fparseln check to configure script.
2. reworking cross build breakage under FreeBSD/MacOS X. FreeBSD/MacOS X still have public /usr/include/runetype.h derived from 4.4BSD-Lite. so i renamed out private header from src/lib/libc/locale/runetype.h to src/lib/libc/locale/runetype_local.h to solve this problems.
3. fix build breakage when CITRUS=no was set.
|
1.7 |
| 08-Mar-2007 |
drochner | branches: 1.7.18; 1.7.20; modify the previous fix so that no pointless realloc()s are done in the case of multiple empty continuation lines, and comment the code to make the logics obvious fix an unrelated comment
|
1.6 |
| 07-Mar-2007 |
drochner | -fix a condition so that fparseln() doesn't report spurious empty lines eg after 2 comment lines, or on EOF after a single comment line -no escape character means no escaped characters
|
1.5 |
| 20-Jun-2004 |
jmc | branches: 1.5.10; Completely rework how tools/compat is done. Purge all uses/references to _NETBSD_SOURCE as this makes cross building from older/newer versions of NetBSD harder, not easier (and also makes the resulting tools 'different')
Wrap all required code with the inclusion of nbtool_config.h, attempt to only use POSIX code in all places (or when reasonable test w. configure and provide definitions: ala u_int, etc).
Reviewed by lukem. Tested on FreeBSD 4.9, Redhat Linux ES3, NetBSD 1.6.2 x86 NetBSD current (x86 and amd64) and Solaris 9.
Fixes PR's: PR#17762 PR#25944
|
1.4 |
| 11-May-2004 |
drochner | make this build in the tools/compat reachover case if HAVE_FPARSELN is not present patch from Christian Limpach
|
1.3 |
| 10-May-2004 |
drochner | Add FLOCKFILE() locking - should be threadsafe now. (Didn't test the !HAVE_FPARSELN && !_REENTRANT case -- this might be hit in tools/compat on some host platforms.)
|
1.2 |
| 18-Jan-2003 |
thorpej | branches: 1.2.2; Merge the nathanw_sa branch.
|
1.1 |
| 30-Nov-2002 |
lukem | branches: 1.1.2; - Migrate fparseln(3) from libutil to libc, where it should have been in the first place... - Bump libutil major (to 7.0) and libc minor (to 12.91).
|
1.1.2.2 |
| 10-Dec-2002 |
thorpej | Sync with HEAD.
|
1.1.2.1 |
| 30-Nov-2002 |
thorpej | file fparseln.c was added on branch nathanw_sa on 2002-12-10 06:25:53 +0000
|
1.2.2.4 |
| 22-Jun-2004 |
tron | Apply patch (requested by jmc in ticket #538): Fix build problems caused by changes for ticket #527.
|
1.2.2.3 |
| 22-Jun-2004 |
tron | Pull up revision 1.5 (requested by jmc in ticket #527): Completely rework how tools/compat is done. Purge all uses/references to _NETBSD_SOURCE as this makes cross building from older/newer versions of NetBSD harder, not easier (and also makes the resulting tools 'different') Wrap all required code with the inclusion of nbtool_config.h, attempt to only use POSIX code in all places (or when reasonable test w. configure and provide definitions: ala u_int, etc). Reviewed by lukem. Tested on FreeBSD 4.9, Redhat Linux ES3, NetBSD 1.6.2 x86 NetBSD current (x86 and amd64) and Solaris 9. Fixes PR's: PR#17762 PR#25944
|
1.2.2.2 |
| 22-Jun-2004 |
tron | Pull up revision 1.4 (requested by jmc in ticket #527): make this build in the tools/compat reachover case if HAVE_FPARSELN is not present patch from Christian Limpach
|
1.2.2.1 |
| 22-Jun-2004 |
tron | Pull up revision 1.3 (requested by jmc in ticket #527): Add FLOCKFILE() locking - should be threadsafe now. (Didn't test the !HAVE_FPARSELN && !_REENTRANT case -- this might be hit in tools/compat on some host platforms.)
|
1.5.10.1 |
| 02-Jan-2009 |
jdc | Pull up revisions 1.6-1.7 (requested by martin in ticket #1254).
-fix a condition so that fparseln() doesn't report spurious empty lines eg after 2 comment lines, or on EOF after a single comment line -no escape character means no escaped characters
modify the previous fix so that no pointless realloc()s are done in the case of multiple empty continuation lines, and comment the code to make the logics obvious fix an unrelated comment
|
1.7.20.1 |
| 10-Jan-2009 |
christos | sync with head.
|
1.7.18.1 |
| 15-Jan-2009 |
snj | Pull up following revision(s) (requested by jmcneill in ticket #270): lib/libc/locale/fix_grouping.c: revision 1.3 lib/libc/locale/iswctype_sb.c: revision 1.7 lib/libc/locale/rune.h: revision 1.14 lib/libc/locale/runetype.h: file removal lib/libc/locale/runetype_local.h: revision 1.1 lib/libc/stdio/fparseln.c: revision 1.8 lib/libc/string/wcscmp.c: revision 1.7 lib/libc/string/wcsncmp.c: revision 1.7 lib/libc/string/wmemcmp.c: revision 1.5 tools/compat/configure: regen tools/compat/configure.ac: revision 1.68 tools/compat/nbtool_config.h.in: regen usr.bin/mklocale/Makefile: revision 1.15 usr.bin/mklocale/lex.l: revision 1.16 usr.bin/mklocale/yacc.y: revision 1.27 1. reworking PR lib/40317: libnbcompat already contains empty fparseln.lo so previous fix doesn't work correctly. i've just added broken fparseln check to configure script. 2. reworking cross build breakage under FreeBSD/MacOS X. FreeBSD/MacOS X still have public /usr/include/runetype.h derived from 4.4BSD-Lite. so i renamed out private header from src/lib/libc/locale/runetype.h to src/lib/libc/locale/runetype_local.h to solve this problems. 3. fix build breakage when CITRUS=no was set.
|