VirtualBox

source: kBuild/vendor/gnumake/2005-05-16/glob/ChangeLog

Last change on this file was 280, checked in by bird, 20 years ago

Current make snaphot, 2005-05-16.

  • Property svn:eol-style set to native
File size: 5.1 KB
Line 
12005-03-11 Paul D. Smith <psmith@gnu.org>
2
3 * glob.c (glob_in_dir): Change FNM_CASEFOLD to be enabled if
4 HAVE_CASE_INSENSITIVE_FS is defined.
5
62003-01-30 Paul D. Smith <psmith@gnu.org>
7
8 * glob.h: Patch for FreeBSD by Mike Barcroft <mike@freebsd.org>
9 Reported by Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>. On
10 FreeBSD, declare __size_t to simply size_t.
11
122002-04-22 Paul D. Smith <psmith@gnu.org>
13
14 * Makefile.am: Use automake 1.6.
15 Use new automake condition USE_LOCAL_GLOB to decide whether or not
16 to build the local GNU glob library or use the system one.
17
181999-09-12 Paul D. Smith <psmith@gnu.org>
19
20 * fnmatch.c: Last GLIBC version wouldn't compile outside of GLIBC
21 (undefined reference to internal_function). Update to the latest
22 version
23
241999-09-11 Paul Eggert <eggert@twinsun.com>
25
26 * glob.h (glob): If #defining to glob64, do this before
27 declaring it, so that all declarations and uses match, and
28 do not declare glob64, to avoid a declaration clash.
29 (globfree): Likewise with globfree64.
30
311999-09-08 Eli Zaretskii <eliz@is.elta.co.il>
32
33 * glob.c (prefix_array) [__MSDOS__,WINDOWS32]: Keep the trailing
34 slash unless DIRNAME is just "x:/".
35
361999-09-06 Paul D. Smith <psmith@gnu.org>
37
38 * fnmatch.c: Update to latest version from GLIBC.
39
401999-07-21 Paul D. Smith <psmith@gnu.org>
41
42 * glob.c, glob.h, fnmatch.c, fnmatch.h: Update to latest version
43 from GLIBC.
44
45 * fnmatch.c (internal_fnmatch): Use K&R definition syntax, not ANSI.
46 (__strchrnul): This won't exist outside GLIBC, so create one.
47
48 * glob.c: Move getlogin{,_r} prototypes below glob.h to get __P()
49 macro.
50
511998-08-05 Paul D. Smith <psmith@gnu.org>
52
53 * configure.in: Remove; configuration for glob is handled by the
54 make configure.in.
55
561998-07-29 Paul D. Smith <psmith@gnu.org>
57
58 * glob.c, fnmatch.c: New versions from the GLIBC folks (Ulrich
59 Drepper). Fixes a bug reported by Eli Zaretski. Integrates
60 DOS/Windows32 support.
61
621998-07-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
63
64 * glob.c (glob): Cast away const on assignment of pattern to dirname.
65 Cast the return type of __alloca() for traditional C compilers.
66
671998-07-23 Paul D. Smith <psmith@gnu.org>
68
69 * glob.c, fnmatch.c: New versions of these files from the GLIBC
70 folks (Ulrich Drepper). Had to re-integrate some DOS/Windows
71 code.
72
731998-07-10 Paul D. Smith <psmith@gnu.org>
74
75 * glob.c (glob_in_dir): If no meta chars exist in PATTERN and
76 GLOB_NOCHECK is present, don't look for the file--whether it's
77 found or not, we'll always return it, so why bother searching?
78
79 Also, if we are searching and there are no meta chars, don't
80 bother trying fnmatch() if the strcmp() fails.
81
821998-05-30 Eli Zaretskii <eliz@is.elta.co.il>
83
84 * glob.c (glob) [__MSDOS__, WINDOWS32]: Compute the directory and
85 filename parts of the pattern correctly when it includes a drive
86 spec. Disallow wildcards in the drive spec. Prevent recursion
87 when dirname is of the form "d:/" or "d:".
88 (prefix_array) [__MSDOS__, WINDOWS32]: Don't append a slash to
89 "d:/" and "d:".
90
911998-05-13 Paul D. Smith <psmith@gnu.org>
92
93 * SMakefile, Makefile.ami, glob.c, glob.h, fnmatch.c: Updated from
94 the latest glibc version.
95
961998-04-17 Paul D. Smith <psmith@gnu.org>
97
98 * configure.in: Create a config.h file instead of setting things
99 on the compile line. This is because when build.sh runs it merely
100 passes -DHAVE_CONFIG_H to the glob files, just as it does to the
101 make files.
102 * config.h.in: Created by autoheader.
103
104Tue Aug 12 10:52:34 1997 Paul D. Smith <psmith@baynetworks.com>
105
106 * configure.in: Require autoconf 2.12.
107
108 * glob: Updates from latest GNU libc glob code.
109
110 * glob.c,glob.h,fnmatch.h: Change all WIN32 references to WINDOWS32.
111
112 * glob.h: OSF4 defines macros in such a way that GLOB_ALTDIRFUNC
113 is not defined. Added a test to the #if which defines it if
114 _GNU_SOURCE is defined; that's set by both glob.c and GNU make.
115
116 * glob.c: SunOS4 w/ cc needs #include <stdio.h>, since assert.h
117 requires stderr but doesn't include stdio.h :-/.
118 (next_brace_sub): De-protoize function definition.
119 (glob): Cast __alloca(); on SunOS4 it uses the default return type
120 of int.
121 (glob): Irix defines getlogin_r() to return a char*; move the
122 extern for that into the _LIBC area since it isn't used except in
123 LIBC anyway. Likewise, move extern getlogin() into the "else".
124
125Sat Jul 20 21:55:31 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
126
127 Win32 hacks from <Rob_Tulloh@tivoli.com>.
128 * posix/glob.c [WIN32]: Don't include <pwd.h>; don't use d_ino;
129 use void * for my_realloc; include <malloc.h> for alloca.
130 (glob) [WIN32]: Use "c:/users/default" for ~ if no HOME variable.
131 * posix/fnmatch.h [WIN32]: Use prototypes even if [!__STDC__].
132 * posix/glob.h: Likewise.
133
134Fri Jul 19 16:56:41 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
135
136 * posix/glob.h [!_AMIGA && !VMS]: Check this instead of just [!_AMIGA]
137 for `struct stat;' forward decl.
138
139Sat Jun 22 10:44:09 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
140
141 * posix/glob.c: Include <alloca.h> only [HAVE_ALLOCA_H], not [sparc].
142
143Fri Jun 21 00:27:51 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
144
145 * posix/fnmatch.c (fnmatch): Fix \*[*?]+ case to increment name ptr
146 only for ?s, not for *s. Fix from Chet Ramey.
147
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette