Bitzi works best with
Bitzi-Powered Applications.
|
Bitzi Developer Discussion: patch to libbitcollider to get around problem with python-bitzi
Main Site : bboard : Bitzi Developer Discussion : One Message
Message:
|
patch to libbitcollider to get around problem with python-bitzi
|
[forward as email]
|
| libbitcollider has a ref to lt_dlerror, which is
not in the libs it's linked to by default. I had
to add the following patch so that I could use
python's ctypes module to dynamicly load
libbitcollider and use it.
I'm guessing this isn't needed by the other apps
because they've already loaded libdl.so?
Index: lib/Makefile.am
===================================================================
RCS file: /cvsroot/bitcollider/bitcollider/lib/Makefile.am,v
retrieving revision 1.18
diff -u -u -r1.18 Makefile.am
--- lib/Makefile.am 3 Feb 2004 01:41:08 -0000 1.18
+++ lib/Makefile.am 5 Jul 2005 15:24:21 -0000
@@ -10,6 +10,6 @@
lib_LTLIBRARIES = libbitcollider.la
libbitcollider_la_SOURCES = main.c sha1.c tiger.c tigertree.c sboxes.c browser.c mp3.c id3.c plugin_man.c plugin_man.h dirsearch.c bitprint.c md5.c md5.h cache.c ed2k_md4.c ftuuhash.c kztree.c
libbitcollider_la_LDFLAGS = -version-info 1:0:0
-libbitcollider_la_LIBADD = $(BDB_LIBS)
+libbitcollider_la_LIBADD = $(LIBLTDL) $(BDB_LIBS)
noinst_HEADERS = browser.h mp3.h id3.h
| |
|
-- icepick, July 05, 2005 08:41 am
|
[
Post a reply
]
|