summaryrefslogtreecommitdiff
path: root/Mac/README
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2010-02-07 11:46:38 +0000
committerRonald Oussoren <ronaldoussoren@mac.com>2010-02-07 11:46:38 +0000
commitac5d9d61b00113cd132e5a3d32cd779449d5d27a (patch)
tree6f372c10af087acf6669e3250b37296d8b3f3ea3 /Mac/README
parent08930603c8da95f1a9448b1da8d06819a1a2c9ee (diff)
downloadcpython-ac5d9d61b00113cd132e5a3d32cd779449d5d27a.tar.gz
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.
Diffstat (limited to 'Mac/README')
-rw-r--r--Mac/README19
1 files changed, 19 insertions, 0 deletions
diff --git a/Mac/README b/Mac/README
index afd217315d..e4ff868237 100644
--- a/Mac/README
+++ b/Mac/README
@@ -217,6 +217,25 @@ Because of the way the script locates the files it needs you have to run it
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
=============