[Pcre-svn] [641] code/trunk: Add minix to list of OS not sup…

トップ ページ
このメッセージを削除
著者: Subversion repository
日付:  
To: pcre-svn
題目: [Pcre-svn] [641] code/trunk: Add minix to list of OS not supporting -S in pcretest.
Revision: 641
          http://vcs.pcre.org/viewvc?view=rev&revision=641
Author:   ph10
Date:     2011-07-25 17:56:54 +0100 (Mon, 25 Jul 2011)


Log Message:
-----------
Add minix to list of OS not supporting -S in pcretest.

Modified Paths:
--------------
    code/trunk/ChangeLog
    code/trunk/pcretest.c


Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog    2011-07-25 10:50:28 UTC (rev 640)
+++ code/trunk/ChangeLog    2011-07-25 16:56:54 UTC (rev 641)
@@ -192,6 +192,8 @@


 37. PCRE was giving an error for \N with a braced quantifier such as {1,} (this 
     was because it thought it was \N{name}, which is not supported).
+    
+38. Add minix to OS list not supporting the -S option in pcretest. 



Version 8.12 15-Jan-2011

Modified: code/trunk/pcretest.c
===================================================================
--- code/trunk/pcretest.c    2011-07-25 10:50:28 UTC (rev 640)
+++ code/trunk/pcretest.c    2011-07-25 16:56:54 UTC (rev 641)
@@ -1298,7 +1298,7 @@
       ((stack_size = get_value((unsigned char *)argv[op+1], &endptr)),
         *endptr == 0))
     {
-#if defined(_WIN32) || defined(WIN32)
+#if defined(_WIN32) || defined(WIN32) || defined(__minix)
     printf("PCRE: -S not supported on this OS\n");
     exit(1);
 #else