]> granicus.if.org Git - curl/commitdiff
Ricardo Cadime helped us work out another check for the ## preprocessor
authorDaniel Stenberg <daniel@haxx.se>
Mon, 9 Sep 2002 06:48:42 +0000 (06:48 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 9 Sep 2002 06:48:42 +0000 (06:48 +0000)
directive.

include/curl/curl.h

index 031155aa45ce3add9cdfb5983b6449eaf24f109f..ded488ead90040250dc0abda276db6e99b337a67 100644 (file)
@@ -233,7 +233,15 @@ typedef enum {
 #ifdef CINIT
 #undef CINIT
 #endif
-#if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus)
+/*
+ * Figure out if we can use the ## operator, which is supported by ISO/ANSI C
+ * and C++. Some compilers support it without setting __STDC__ or __cplusplus
+ * so we need to carefully check for them too. We don't use configure-checks
+ * for these since we want these headers to remain generic and working for all
+ * platforms.
+ */
+#if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) || \
+  defined(__HP_aCC)
 #define CINIT(name,type,number) CURLOPT_ ## name = CURLOPTTYPE_ ## type + number
 #else
 /* The macro "##" is ISO C, we assume pre-ISO C doesn't support it. */