[Numpy-svn] r5734 - cleaned_math_config/numpy/distutils/command

numpy-svn at scipy.org numpy-svn at scipy.org
Sun Aug 31 18:47:00 EDT 2008


Author: cdavid
Date: 2008-08-31 17:46:43 -0500 (Sun, 31 Aug 2008)
New Revision: 5734

Modified:
   cleaned_math_config/numpy/distutils/command/config.py
Log:
Add a configuration test like AC_CHECK_FUNCS_ONCE.

Modified: cleaned_math_config/numpy/distutils/command/config.py
===================================================================
--- cleaned_math_config/numpy/distutils/command/config.py	2008-08-31 12:47:17 UTC (rev 5733)
+++ cleaned_math_config/numpy/distutils/command/config.py	2008-08-31 22:46:43 UTC (rev 5734)
@@ -140,6 +140,36 @@
         return self.try_link(body, headers, include_dirs,
                              libraries, library_dirs)
 
+    def check_funcs_once(self, funcs,
+                   headers=None, include_dirs=None,
+                   libraries=None, library_dirs=None,
+                   decl=False, call=False, call_args=None):
+        """Like check_func, except that it is given a list of function in
+        funcs, and the test is done only once. Can be useful for faster
+        configure to test a serie of functions."""
+        # clean up distutils's config a bit: add void to main(), and
+        # return a value.
+        self._check_compiler()
+        body = []
+        if decl:
+            for func in funcs:
+                body.append("int %s ();" % func)
+        body.append("int main (void) {")
+        if call:
+            for func in funcs:
+                if not call_args.has_key(func):
+                    call_args = ''
+                body.append("  %s(%s);" % (func, call_args[func]))
+        else:
+            for func in funcs:
+                body.append("  %s;" % func)
+        body.append("  return 0;")
+        body.append("}")
+        body = '\n'.join(body) + "\n"
+
+        return self.try_link(body, headers, include_dirs,
+                             libraries, library_dirs)
+
     def get_output(self, body, headers=None, include_dirs=None,
                    libraries=None, library_dirs=None,
                    lang="c"):




More information about the Numpy-svn mailing list