blob: c815f9f2b384eb246c049aacd4088c24a5d7528f (
plain) (
blame)
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
|
*** src/main/fnmatch.h.orig Thu Oct 16 22:57:01 1997
--- src/main/fnmatch.h Wed Oct 22 22:44:12 1997
***************
*** 35,40 ****
--- 35,44 ----
/* This file has been modified by the Apache Group. */
+ #ifdef __FreeBSD__
+ #include "freebsd_fnmatch.h"
+ extern int is_fnmatch(const char *);
+ #else
#ifndef _FNMATCH_H_
#define _FNMATCH_H_
***************
*** 50,52 ****
--- 54,57 ----
extern int is_fnmatch(const char *);
#endif /* !_FNMATCH_H_ */
+ #endif /* !FreeBSD */
*** src/main/fnmatch.c.orig Thu Oct 16 22:57:01 1997
--- src/main/fnmatch.c Wed Oct 22 22:40:52 1997
***************
*** 34,39 ****
--- 34,40 ----
* SUCH DAMAGE.
*/
+ #ifndef __FreeBSD__
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94";
#endif /* LIBC_SCCS and not lint */
***************
*** 169,175 ****
}
return (ok == negate ? NULL : pattern);
}
!
/* This function is an Apache addition */
/* return non-zero if pattern has any glob chars in it */
--- 170,176 ----
}
return (ok == negate ? NULL : pattern);
}
! #endif /* !FreeBSD */
/* This function is an Apache addition */
/* return non-zero if pattern has any glob chars in it */
|