Message76118
| Author |
christian.heimes |
| Recipients |
akitada, christian.heimes |
| Date |
2008年11月20日.17:33:43 |
| SpamBayes Score |
3.092114e-05 |
| Marked as misclassified |
No |
| Message-id |
<1227202425.08.0.355044633492.issue4366@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Please try this patch with a clean source tree. It adds the current
directory to the library search path.
Index: setup.py
===================================================================
--- setup.py (revision 67295)
+++ setup.py (working copy)
@@ -245,6 +245,7 @@
def detect_modules(self):
# Ensure that /usr/local is always used
add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
+ add_dir_to_list(self.compiler.library_dirs, '.')
add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
# Add paths specified in the environment variables LDFLAGS and |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2008年11月20日 17:33:45 | christian.heimes | set | recipients:
+ christian.heimes, akitada |
| 2008年11月20日 17:33:45 | christian.heimes | set | messageid: <1227202425.08.0.355044633492.issue4366@psf.upfronthosting.co.za> |
| 2008年11月20日 17:33:44 | christian.heimes | link | issue4366 messages |
| 2008年11月20日 17:33:43 | christian.heimes | create |
|