Added an additional test to make sure the <regex.h> header is actually

present on the system.
This commit is contained in:
Robert James Kaes 2001-11-25 22:06:54 +00:00
parent 5e17d0736e
commit 2f4ccc04ae

View File

@ -1,4 +1,4 @@
/* $Id: regexp.h,v 1.2 2000-09-11 23:50:07 rjkaes Exp $
/* $Id: regexp.h,v 1.3 2001-11-25 22:06:54 rjkaes Exp $
*
* We need this little header to help distinguish whether to use the REGEX
* library installed in the system, or to include our own version (the GNU
@ -27,7 +27,9 @@
#ifdef USE_GNU_REGEX
# include "gnuregex.h"
#else
# include <regex.h>
# ifdef HAVE_REGEX_H
# include <regex.h>
# endif
#endif
#endif