]> gitweb.factorcode.org Git - factor.git/commitdiff
webapps.mason: fix typo
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Fri, 25 Sep 2009 23:27:52 +0000 (18:27 -0500)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Fri, 25 Sep 2009 23:27:52 +0000 (18:27 -0500)
extra/webapps/mason/mason.factor

index 9867038ef15d8de02ce4833d952a73ca58765314..637ffa6dd81f700b664f1be56d608199393df214 100644 (file)
@@ -135,10 +135,10 @@ CONSTANT: cpus
 : requirements ( builder -- xml )
     [
         os>> {
-            { "winnt" "Windows XP (also tested on Vista)" }
+            { "winnt" "Windows XP, Windows Vista or Windows 7" }
             { "macosx" "Mac OS X 10.5 Leopard" }
             { "linux" "Ubuntu Linux 9.04 (other distributions may also work)" }
-            { "freebsd" "FreeBSD 7.0" }
+            { "freebsd" "FreeBSD 7.1" }
             { "netbsd" "NetBSD 5.0" }
             { "openbsd" "OpenBSD 4.4" }
         } at
@@ -146,7 +146,7 @@ CONSTANT: cpus
         dup cpu>> "x86.32" = [
             os>> {
                 { [ dup { "winnt" "linux" "freebsd"  "netbsd" } member? ] [ drop "Intel Pentium 4, Core Duo, or other x86 chip with SSE2 support. Note that 32-bit Athlon XP processors do not support SSE2." ] }
-                { [ dup {"openbsd" } member? ] [ drop "Intel Pentium Pro or better" ] }
+                { [ dup { "openbsd" } member? ] [ drop "Intel Pentium Pro or better" ] }
                 { [ t ] [ drop f ] }
             } cond
         ] [ drop f ] if