Fixed two more problems with wildcarding in simplematch()
[privoxy.git] / acconfig.h
index ad5c5ed..164c637 100644 (file)
@@ -37,6 +37,9 @@
  *
  * Revisions   :
  *    $Log: acconfig.h,v $
+ *    Revision 1.27.2.2  2003/03/21 14:39:12  oes
+ *    Presumably fixed Bug #707467 by defining unix ifdef __unix__
+ *
  *    Revision 1.27.2.1  2002/08/10 11:22:31  oes
  *    - Add two AC_DEFINEs that indicate if the pcre*.h headers
  *      are located in a pcre/ subdir to the include path.
 
 /*
  * On OpenBSD and maybe also FreeBSD, gcc doesn't define the cpp
- * symbol unix; it defines __unix__
+ * symbol unix; it defines __unix__ and sometimes not even that:
  */
-#if defined(__unix__) && !defined(unix)
+#if ( defined(__unix__) || defined(__NetBSD__) ) && !defined(unix)
 #define unix 1
 #endif