[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] Honor cyrus-sasl default installation location

From: Jens Peters <jpeters7677_at_gmx.de>
Date: Sun, 08 Jun 2008 14:16:31 +0200

Hello there,

When you build cyrus sasl on windows and finally run make install then
the libsasl.dll is located at the bin directory. I think win-test.py
should honor that. The attached patch fixes that.

Regards,
Jens

[[[
* win-tests.py
   Assume that libsasl.dll is found in 'bin' instead of 'lib' folder as
this is the default installation location.

Patch by: jpeters7677_at_gmx.de
]]]

Index: win-tests.py
===================================================================
--- win-tests.py (revision 31618)
+++ win-tests.py (working copy)
@@ -248,7 +248,7 @@
       dlls.append(partial_path + '.dll')
 
   if gen_obj.sasl_path is not None:
- dlls.append(os.path.join(gen_obj.sasl_path, 'lib', 'libsasl.dll'))
+ dlls.append(os.path.join(gen_obj.sasl_path, 'bin', 'libsasl.dll'))
 
   for dll in dlls:
     copy_changed_file(dll, abs_objdir)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-06-08 14:16:57 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.