diff options
-rw-r--r-- | site.cfg.example | 8 |
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. |