Advertisement
Guest User

Untitled

a guest
Mar 8th, 2014
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. i'm on ubuntu 12.04 and am using rtorrent 0.8.9 with libtorrent 0.12.9. I want to keep that in place but try rtorrent 0.9.2 with libtorrent 0.13.2.
  2. I have downloaded the source packages for rtorrent 0.9.2 and libtorrent 0.13.2. First I compiled libtorrent making use of a custom folder, so with './configure --prefix=/home/user/libtorrent'. then make and make install without any errors so i have now the 'lib' and 'include' folder in '/home/user/libtorrent'
  3. Now I want to compile rtorrent 0.9.2, just './configure' gives me an error complaining that libtorrent is missing (or right version: configure: error: Package requirements (libtorrent >= 0.13.2) were not met).
  4. that is because pkg_build looks on the system for libtorrent and finds the 'default/system' version of libtorrent 0.12.9 and complains. So I need to specifiy in the './configure' to make use of my custom path for libtorrent 0.13.2 from above. But how to properly do that?
  5. i tried using 'libtorrent_CFLAGS=/home/user/libtorrent/include/ libtorrent_LIBS=/home/user/libtorrent/lib ./configure --prefix=/home/user/'
  6. but does not work, how to pass that properly to configure?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement