diff options
Diffstat (limited to 'contrib/cvs/lib')
-rw-r--r-- | contrib/cvs/lib/ChangeLog | 8 | ||||
-rw-r--r-- | contrib/cvs/lib/system.h | 9 |
2 files changed, 13 insertions, 4 deletions
diff --git a/contrib/cvs/lib/ChangeLog b/contrib/cvs/lib/ChangeLog index 02750d3..02a0e1f 100644 --- a/contrib/cvs/lib/ChangeLog +++ b/contrib/cvs/lib/ChangeLog @@ -1,3 +1,11 @@ +Mon Jun 16 18:59:50 1997 Jim Kingdon <kingdon@harvey.cyclic.com> + + * system.h: Add CVS_FNMATCH. + +Sun Jun 8 23:41:11 1997 Jim Kingdon <kingdon@harvey.cyclic.com> + + * system.h (mkfifo): Remove; not used anywhere. + Thu Mar 6 17:14:49 1997 Jim Kingdon <kingdon@harvey.cyclic.com> * regex.c: Partial merge with version from emacs 19.34. I brought diff --git a/contrib/cvs/lib/system.h b/contrib/cvs/lib/system.h index 05025fe..1a692ff 100644 --- a/contrib/cvs/lib/system.h +++ b/contrib/cvs/lib/system.h @@ -104,10 +104,6 @@ # endif #endif -#if !defined(HAVE_MKFIFO) -#define mkfifo(path, mode) (mknod ((path), (mode) | S_IFIFO, 0)) -#endif - #ifdef NEED_DECOY_PERMISSIONS /* OS/2, really */ #define S_IRUSR S_IREAD @@ -469,6 +465,11 @@ char *getwd (); #define CVS_UNLINK unlink #endif +/* Wildcard matcher. Should be case-insensitive if the system is. */ +#ifndef CVS_FNMATCH +#define CVS_FNMATCH fnmatch +#endif + /* Some file systems are case-insensitive. If FOLD_FN_CHAR is #defined, it maps the character C onto its "canonical" form. In a case-insensitive system, it would map all alphanumeric characters |