- Issue #7658: Ensure that the new pythonw executable works on OSX 10.4

- Issue #7714: Use ``gcc -dumpversion`` to detect the version of GCC on
  MacOSX.

- Make configure look for util.h as well as libutil.h. The former
  is the header file that on OSX contains the defition of openpty.

  (Needed to compile for OSX 10.4 on OSX 10.6)

- Use the correct definition of CC to compile the pythonw executable
diff --git a/Misc/NEWS b/Misc/NEWS
index 7ff6420..9360f28 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,10 +66,14 @@
   Extension extra options may change the output without changing the .c
   file). Initial patch by Collin Winter.
 
-
 Build
 -----
 
+- Issue #7658: Ensure that the new pythonw executable works on OSX 10.4
+
+- Issue #7714: Use ``gcc -dumpversion`` to detect the version of GCC on
+  MacOSX.
+
 - Issue #7661: Allow ctypes to be built from a non-ASCII directory path.
   Patch by Florent Xicluna.