OS X doesn't actually need libm.
authorRobert Bradshaw <robertwb@math.washington.edu>
Fri, 21 Jan 2011 02:14:01 +0000 (18:14 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Fri, 21 Jan 2011 02:14:01 +0000 (18:14 -0800)
src/tutorial/external.rst

index ec0022c8f24ec730da527f31a23cab43cbd63ef7..35df8f4c5bca43f06784caff150152390fba5635 100644 (file)
@@ -38,8 +38,8 @@ Cython also provides declarations for the C math library::
   cdef double f(double x):
       return sin(x*x)
 
-However, this is a library that is not linked by default on Unix-like
-systems, such as Linux or MacOS-X. In addition to cimporting the
+However, this is a library that is not linked by default on some Unix-like
+systems, such as Linux. In addition to cimporting the
 declarations, you must configure your build system to link against the
 shared library ``m``.  For distutils, it is enough to add it to the
 ``libraries`` parameter of the ``Extension()`` setup::