summaryrefslogtreecommitdiffstats
path: root/compat.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-01-19 17:11:43 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-01-19 17:11:43 +0000
commit401d58f3612fa030f309d01df9815a2fc1d3c6de (patch)
treebcbf4006b26460979e37290756e4426535a0b6d9 /compat.c
parentcf0809d6444bcc0030c9cb82ebc592a261023fe4 (diff)
- (bal) Slight auth2-pam.c clean up.
- (bal) Includes a fake-regexp.h to be only used if regcomp() is found, but no 'regexp.h' found (SCO OpenServer 3 lacks the header).
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/compat.c b/compat.c
index 47af1a8e..6e0ed65a 100644
--- a/compat.c
+++ b/compat.c
@@ -32,7 +32,15 @@ RCSID("$OpenBSD: compat.c,v 1.33 2001/01/08 22:29:05 markus Exp $");
#ifdef HAVE_LIBPCRE
# include <pcreposix.h>
#else /* Use native regex libraries */
-# include <regex.h>
+# ifdef HAVE_REGEX_H
+# include <regex.h>
+# else
+# ifdef HAVE_REGCOMP
+# include "fake-regex.h"
+# else
+# error "No regular libraries detected. See INSTALL file."
+# endif
+# endif
#endif /* HAVE_LIBPCRE */
int compat13 = 0;