Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r920:da9a7cdcd04c
Date: 2012-09-07 22:02 +0200
http://bitbucket.org/cffi/cffi/changeset/da9a7cdcd04c/

Log:    Add three missing vars in this Extension(). They were only in
        setup_base.py.

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -99,7 +99,11 @@
                           include_dirs=include_dirs,
                           sources=sources,
                           libraries=libraries,
-                          define_macros=define_macros),
+                          define_macros=define_macros,
+                          library_dirs=library_dirs,
+                          extra_compile_args=extra_compile_args,
+                          extra_link_args=extra_link_args,
+                          ),
             ],
         ),
     },
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to