aboutsummaryrefslogtreecommitdiff
path: root/lib/setup.h
diff options
context:
space:
mode:
authorGuenter Knauf <lists@gknw.net>2010-09-02 04:37:13 +0200
committerGuenter Knauf <lists@gknw.net>2010-09-02 04:37:13 +0200
commita00297158e881447deed870e4a8b9989893f15b2 (patch)
tree8b46bb264bcd0f82283e3288024aebfa79a2ff5f /lib/setup.h
parent413cbdce3c54be97a50e119154df99aa1e4e2810 (diff)
Moved S_ISREG define to setup as suggested by Dan.
Diffstat (limited to 'lib/setup.h')
-rw-r--r--lib/setup.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/setup.h b/lib/setup.h
index e7dcba1dc..cc016c9cd 100644
--- a/lib/setup.h
+++ b/lib/setup.h
@@ -552,6 +552,11 @@ int netware_init(void);
#define CURL_CA_BUNDLE getenv("CURL_CA_BUNDLE")
#endif
+/* Define S_ISREG if not defined by system headers, f.e. MSVC */
+#if !defined(S_ISREG) && defined(S_IFMT) && defined(S_IFREG)
+#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
+#endif
+
/*
* Include macros and defines that should only be processed once.
*/