diff options
author | Yang Tse <yangsita@gmail.com> | 2006-07-28 14:19:02 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-07-28 14:19:02 +0000 |
commit | 77b3bc239daf75d9fb7702ee34c8e5871c47d387 (patch) | |
tree | dd95de134f25ea8196884c454d1f13dbabfc6863 /ares/setup.h | |
parent | c10d15aa0fe332f98fb4eac34328034a0de03095 (diff) | |
download | curl-77b3bc239daf75d9fb7702ee34c8e5871c47d387.tar.gz |
First step trying to avoid the multiple header inclusion and recursion nightmare.
Reintroduce checking for HAVE_MSG_NOSIGNAL in configure script, so that we don't depend on header inclusion order for a valid check.
Diffstat (limited to 'ares/setup.h')
-rw-r--r-- | ares/setup.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ares/setup.h b/ares/setup.h index 731e66f07..f3ced3ed8 100644 --- a/ares/setup.h +++ b/ares/setup.h @@ -149,4 +149,12 @@ int ares_strcasecmp(const char *s1, const char *s2); #endif #endif +/* + * Include macros and defines that should only be processed once. + */ + +#ifndef __SETUP_ONCE_H +#include "setup_once.h" +#endif + #endif /* __ARES_SETUP_H */ |