]> git.sur5r.net Git - openldap/blob - include/ac/regex.h
SLDAP compiles, needs LDBM work to link
[openldap] / include / ac / regex.h
1 /*
2  * Generic Regex
3  */
4 #ifndef _AC_REGEX_H_
5 #define _AC_REGEX_H_
6
7 #ifdef HAVE_SYS_TYPES_H
8 #include <sys/types.h>
9 #endif
10
11 #ifndef HAVE_REGEX_H
12 /*      NO POSIX REGEX!!
13         you'll need to install a POSIX compatible REGEX library.
14         Either Henry Spencer's or GNU regex will do.
15
16         For NT: http://people.delphi.com/gjc/hs_regex.html
17 */
18 #else
19         /* have regex.h, assume it's POSIX compliant */
20 #       include <regex.h>
21 #endif /* regex.h */
22
23 #endif /* _AC_REGEX_H_ */