summaryrefslogtreecommitdiff
path: root/site.cfg.example
diff options
context:
space:
mode:
authorrgommers <ralf.gommers@googlemail.com>2011-03-02 18:25:30 +0800
committerrgommers <ralf.gommers@googlemail.com>2011-03-02 18:30:01 +0800
commit6439e35ecbdb66410fb1550cf917f5bddbbe1e8e (patch)
tree540032c22f437e6f7b52e29b241ca58aa1b58efe /site.cfg.example
parentb52fa654e1f0478fdf8f570797314835ade74765 (diff)
downloadnumpy-6439e35ecbdb66410fb1550cf917f5bddbbe1e8e.tar.gz
DOC: document inconsistent path separator in site.cfg path lists. Closes #934.
Diffstat (limited to 'site.cfg.example')
-rw-r--r--site.cfg.example8
1 files changed, 6 insertions, 2 deletions
diff --git a/site.cfg.example b/site.cfg.example
index 2381950ce..89d108739 100644
--- a/site.cfg.example
+++ b/site.cfg.example
@@ -24,11 +24,15 @@
# library_dirs
# List of directories to add to the library search path when compiling
# extensions with this dependency. Use the character given by os.pathsep
-# to separate the items in the list. On UN*X-type systems (Linux, FreeBSD,
-# OS X):
+# to separate the items in the list. Note that this character is known to
+# vary on some unix-like systems; if a colon does not work, try a comma.
+# This also applies to include_dirs and src_dirs (see below).
+# On UN*X-type systems (OS X, most BSD and Linux systems):
# library_dirs = /usr/lib:/usr/local/lib
# On Windows:
# library_dirs = c:\mingw\lib,c:\atlas\lib
+# On some BSD and Linux systems:
+# library_dirs = /usr/lib,/usr/local/lib
#
# include_dirs
# List of directories to add to the header file earch path.