Jim Nusbaum - 2007-03-22

Logged In: YES
user_id=1750325
Originator: NO

Isn't this most easily done with the following change to setup_posix.py. You just need to add a value for the runtime_library_dirs attribute:

diff -c /usr/local/src/MySQL-python-1.2.2/setup_posix.py\~ /usr/local/src/MySQL-python-1.2.2/setup_posix.py
/usr/local/src/MySQL-python-1.2.2/setup_posix.py~ Sat Mar 3 19:52:26 2007
--- /usr/local/src/MySQL-python-1.2.2/setup_posix.py Thu Mar 22 09:10:11 2007
***
81,86 ****
--- 81,87 ----
ext_options = dict(
name = "_mysql",
library_dirs = library_dirs,
+ runtime_library_dirs = library_dirs,
libraries = libraries,
extra_compile_args = extra_compile_args,
include_dirs = include_dirs,

Diff finished at Thu Mar 22 09:51:51