summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2000-09-11 23:50:07 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2000-09-11 23:50:07 +0000
commitc0ff35dd220ffa95234deaabf08b5e1e1c77b465 (patch)
tree731df84126f60bddbcfe4c7e103d5e9eed36445a /src
parent4f4f91f76ff33c65f2f0da2ce17bf8f52907dcf9 (diff)
downloadtinyproxy-c0ff35dd220ffa95234deaabf08b5e1e1c77b465.tar.gz
tinyproxy-c0ff35dd220ffa95234deaabf08b5e1e1c77b465.zip
Moved back to the <config.h> for autoconf defines.
Diffstat (limited to '')
-rw-r--r--src/regexp.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/regexp.h b/src/regexp.h
index 1c40332..fd119de 100644
--- a/src/regexp.h
+++ b/src/regexp.h
@@ -1,4 +1,4 @@
-/* $Id: regexp.h,v 1.1.1.1 2000-02-16 17:32:24 sdyoung Exp $
+/* $Id: regexp.h,v 1.2 2000-09-11 23:50:07 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
@@ -17,8 +17,17 @@
* General Public License for more details.
*/
+#ifndef _TINYPROXY_REGEXP_H_
+#define _TINYPROXY_REGEXP_H_
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
#ifdef USE_GNU_REGEX
# include "gnuregex.h"
#else
# include <regex.h>
#endif
+
+#endif