This commit merges the BUILD_TWEAKS branch onto the trunk.  It has the
following improvements:

- Arch/OS/platform-specific files are now included/excluded via the
  preprocessor, rather than via the build system.  This is more consistent
  (we use the pre-processor for small arch/OS/platform-specific chunks
  within files) and makes the build system much simpler, as the sources for
  all programs are the same on all platforms.

- Vast amounts of cut+paste Makefile.am code has been factored out.  If a
  new platform is implemented, you need to add 11 extra Makefile.am lines.
  Previously it was over 100 lines.

- Vex has been autotoolised.  Dependency checking now works in Vex (no more
  incomplete builds).  Parallel builds now also work.  --with-vex no longer
  works;  it's little use and a pain to support.  VEX/Makefile is still in
  the Vex repository and gets overwritten at configure-time;  it should
  probably be renamed Makefile-gcc to avoid possible problems, such as
  accidentally committing a generated Makefile.  There's a bunch of hacky
  copying to deal with the fact that autotools don't handle same-named files
  in different directories.  Julian plans to rename the files to avoid this
  problem.

- Various small Makefile.am things have been made more standard automake
  style, eg. the use of pkginclude/pkglib prefixes instead of rolling our
  own.

- The existing five top-level Makefile.am include files have been
  consolidated into three.

- Most Makefile.am files now are structured more clearly, with comment
  headers separating sections, declarations relating to the same things next
  to each other, better spacing and layout, etc.

- Removed the unused exp-ptrcheck/tests/x86 directory.

- Renamed some XML files.

- Factored out some duplicated dSYM handling code.

- Split auxprogs/ into auxprogs/ and mpi/, which allowed the resulting
  Makefile.am files to be much more standard.

- Cleaned up m_coredump by merging a bunch of files that had been
  overzealously separated.

The net result is 630 fewer lines of Makefile.am code, or 897 if you exclude
the added Makefile.vex.am, or 997 once the hacky file copying for Vex is
removed.  And the build system is much simpler.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10364 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/NEWS b/NEWS
index 3784a53..00a5d5c 100644
--- a/NEWS
+++ b/NEWS
@@ -81,20 +81,34 @@
   from the distribution.  For anyone interested, the removal occurred in SVN
   revision r10247.
 
-* The location of some install files has changed.  This should not affect
-  most users.  Those who might be affected:
-  - For people who use Valgrind with MPI programs, the installed
-    libmpiwrap.so library has moved from $(INSTALL)/<platform>/libmpiwrap.so
-    to $(INSTALL)/libmpiwrap-<platform>.so.
-  - For people who distribute standalone Valgrind tools, the installed
-    libraries such as $(INSTALL)/<platform>/libcoregrind.a have moved to
-    $(INSTALL)/libcoregrind-<platform>.a.
+* Some changes have been made to the build system.
 
-  These changes were made to simplify the build system.
+  - VEX/ is now integrated properly into the build system.  This means that
+    dependency tracking within VEX/ now works properly, "make install" will
+    work without requiring "make" before it, and parallel builds
+    (ie. 'make -j') now work (previously a .NOTPARALLEL directive was used
+    to serialize builds, ie. 'make -j' was effectively ignored).
 
-* Previously, all the distributed suppression (*.supp) files were installed.
-  Now, only default.supp is installed.  This should not affect users as the
-  other installed suppression files were not read.
+  - The --with-vex configure option has been removed.  It was of little use
+    and removing it simplified the build system.
+
+  - The location of some install files has changed.  This should not affect
+    most users.  Those who might be affected:
+
+    * For people who use Valgrind with MPI programs, the installed
+      libmpiwrap.so library has moved from $(INSTALL)/<platform>/libmpiwrap.so
+      to $(INSTALL)/libmpiwrap-<platform>.so.
+
+    * For people who distribute standalone Valgrind tools, the installed
+      libraries such as $(INSTALL)/<platform>/libcoregrind.a have moved to
+      $(INSTALL)/libcoregrind-<platform>.a.
+
+    These changes simplified the build system.
+
+  - Previously, all the distributed suppression (*.supp) files were installed.
+    Now, only default.supp is installed.  This should not affect users as the
+    other installed suppression files were not read;  the fact that they
+    were installed was a mistake.
 
 n-i-bz DRD - race conditions between pthread_barrier_wait() and
        pthread_barrier_destroy() calls are now reported.