From: jongfoster <jongfoster@users.sourceforge.net>
Date: Wed, 25 Jul 2001 22:55:10 +0000 (+0000)
Subject: Will #error if pthreads is enabled under BeOs
X-Git-Tag: v_2_9_9~207
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/@default-cgi@/faq/static/coding.html?a=commitdiff_plain;h=322bee5237b07364f400a3ba417102fa3bc6abab;p=privoxy.git

Will #error if pthreads is enabled under BeOs
---

diff --git a/acconfig.h b/acconfig.h
index a61d3f62..18224616 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -37,6 +37,11 @@
  *
  * Revisions   :
  *    $Log: acconfig.h,v $
+ *    Revision 1.6  2001/07/15 17:54:29  jongfoster
+ *    Renaming #define STATIC to STATIC_PCRE
+ *    Adding new #define FEATURE_PTHREAD that will be used to enable
+ *    POSIX threads support.
+ *
  *    Revision 1.5  2001/07/13 13:48:37  oes
  *     - (Fix:) Copied CODE_STATUS #define from config.h.in
  *     - split REGEX #define into REGEX_GNU and REGEX_PCRE
@@ -299,4 +304,14 @@
 #define __CLEANUP_C
 #endif /* defined(FEATURE_PTHREAD) && defined(_WIN32) */
 
+/*
+ * BEOS does not currently support POSIX threads.
+ * This *should* be detected by ./configure, but let's be sure.
+ */
+#if defined(FEATURE_PTHREAD) && defined(__BEOS__)
+#error BEOS does not support pthread - please run ./configure again with "--disable-pthread"
+
+#endif /* defined(FEATURE_PTHREAD) && defined(__BEOS__) */
+
+
 #endif /* _CONFIG_H */
diff --git a/config.h.in b/config.h.in
index ff772308..a66962be 100644
--- a/config.h.in
+++ b/config.h.in
@@ -38,6 +38,14 @@
  *
  * Revisions   :
  *    $Log: acconfig.h,v $
+ *    Revision 1.7  2001/07/25 22:53:59  jongfoster
+ *    Will #error if pthreads is enabled under BeOs
+ *
+ *    Revision 1.6  2001/07/15 17:54:29  jongfoster
+ *    Renaming #define STATIC to STATIC_PCRE
+ *    Adding new #define FEATURE_PTHREAD that will be used to enable
+ *    POSIX threads support.
+ *
  *    Revision 1.5  2001/07/13 13:48:37  oes
  *     - (Fix:) Copied CODE_STATUS #define from config.h.in
  *     - split REGEX #define into REGEX_GNU and REGEX_PCRE
@@ -308,4 +316,14 @@
 #define __CLEANUP_C
 #endif /* defined(FEATURE_PTHREAD) && defined(_WIN32) */
 
+/*
+ * BEOS does not currently support POSIX threads.
+ * This *should* be detected by ./configure, but let's be sure.
+ */
+#if defined(FEATURE_PTHREAD) && defined(__BEOS__)
+#error BEOS does not support pthread - please run ./configure again with "--disable-pthread"
+
+#endif /* defined(FEATURE_PTHREAD) && defined(__BEOS__) */
+
+
 #endif /* _CONFIG_H */