[Python-checkins] r78064 - in python/branches/release31-maint: Mac/README

ronald.oussoren python-checkins at python.org
Sun Feb 7 12:47:11 CET 2010


Author: ronald.oussoren
Date: Sun Feb  7 12:47:11 2010
New Revision: 78064

Log:
Merged revisions 78063 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r78063 | ronald.oussoren | 2010-02-07 12:46:38 +0100 (Sun, 07 Feb 2010) | 4 lines
  
  Mention a configure warning that almost certainly indicates that 
  configure is picking up a library that doesn't contain all architectures
  required for a universal build on OSX.
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Mac/README

Modified: python/branches/release31-maint/Mac/README
==============================================================================
--- python/branches/release31-maint/Mac/README	(original)
+++ python/branches/release31-maint/Mac/README	Sun Feb  7 12:47:11 2010
@@ -145,6 +145,25 @@
 from within the BuildScript directory. The script accepts a number of 
 command-line arguments, run it with --help for more information.
 
+Configure warnings
+==================
+
+The configure script sometimes emits warnings like the one below::
+
+   configure: WARNING: libintl.h: present but cannot be compiled
+   configure: WARNING: libintl.h:     check for missing prerequisite headers?
+   configure: WARNING: libintl.h: see the Autoconf documentation
+   configure: WARNING: libintl.h:     section "Present But Cannot Be Compiled"
+   configure: WARNING: libintl.h: proceeding with the preprocessor's result   
+   configure: WARNING: libintl.h: in the future, the compiler will take precedence
+   configure: WARNING:     ## -------------------------------------- ##
+   configure: WARNING:     ## Report this to http://bugs.python.org/ ##
+   configure: WARNING:     ## -------------------------------------- ##
+
+This almost always means you are trying to build a universal binary for
+Python and have libaries in ``/usr/local`` that don't contain the required
+architectures. Temporarily move ``/usr/local`` aside to finish the build.
+
 Odds and ends
 =============
 


More information about the Python-checkins mailing list