This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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:45christian.heimessetrecipients: + christian.heimes, akitada
2008-11-20 17:33:45christian.heimessetmessageid: <1227202425.08.0.355044633492.issue4366@psf.upfronthosting.co.za>
2008-11-20 17:33:44christian.heimeslinkissue4366 messages
2008-11-20 17:33:43christian.heimescreate