Changed message at the top of files, and the startup message, and the
string in valgrind.pc.in, so that they describe Valgrind as a "dynamic
binary instrumentation framework", and don't mention platforms at all.  

I had to tweak the regtest filters a bit for this.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3178 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_main.c b/coregrind/vg_main.c
index 82856d2..808e77c 100644
--- a/coregrind/vg_main.c
+++ b/coregrind/vg_main.c
@@ -4,8 +4,8 @@
 /*--------------------------------------------------------------------*/
 
 /*
-   This file is part of Valgrind, an extensible x86 protected-mode
-   emulator for monitoring program execution on x86-Unixes.
+   This file is part of Valgrind, a dynamic binary instrumentation
+   framework.
 
    Copyright (C) 2000-2004 Julian Seward 
       jseward@acm.org
@@ -1975,18 +1975,17 @@
 
    if (VG_(clo_verbosity > 0)) {
       /* Tool details */
-      VG_(message)(Vg_UserMsg, "%s%s%s, %s for %s.",
+      VG_(message)(Vg_UserMsg, "%s%s%s, %s.",
                    VG_(details).name, 
-                   NULL == VG_(details).version ?        "" : "-",
+                   NULL == VG_(details).version ? "" : "-",
                    NULL == VG_(details).version 
                       ? (Char*)"" : VG_(details).version,
-                   VG_(details).description,
-                   VG_PLATFORM);
+                   VG_(details).description);
       VG_(message)(Vg_UserMsg, "%s", VG_(details).copyright_author);
 
       /* Core details */
       VG_(message)(Vg_UserMsg,
-         "Using valgrind-%s, a program supervision framework for %s.",
+         "Using valgrind-%s, a dynamic binary instrumentation framework.",
          VERSION, VG_PLATFORM);
       VG_(message)(Vg_UserMsg, 
          "Copyright (C) 2000-2004, and GNU GPL'd, by Julian Seward et al.");