This is what I have in .bashrc to compile transmission (I use only custom built curl in /usr/local/lib):
export CFLAGS="-O2 -march=core2 -pipe -fstack-protector"
export CXXFLAGS=$CFLAGS
export PKG_CONFIG_PATH="/usr/lib/pkgconfig:/usr/local/lib/pkgconfig"
Also you will have to have newer intltool ...
Search found 5 matches
- Tue Nov 24, 2009 9:09 pm
- Forum: Support
- Topic: Installation on CentOS 5
- Replies: 9
- Views: 16578
- Mon Nov 23, 2009 10:28 pm
- Forum: Support
- Topic: Installation on CentOS 5
- Replies: 9
- Views: 16578
Re: Installation on CentOS 5
So you wish to keep the old one?
Then you have these options:
1. "Alternatively, you may set the environment variables LIBCURL_CFLAGS
and LIBCURL_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.", ie:
export LIBCURL_LIBS="-L/usr/local/lib/ -lcurl"
export ...
Then you have these options:
1. "Alternatively, you may set the environment variables LIBCURL_CFLAGS
and LIBCURL_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.", ie:
export LIBCURL_LIBS="-L/usr/local/lib/ -lcurl"
export ...
- Mon Nov 23, 2009 5:11 am
- Forum: Support
- Topic: Installation on CentOS 5
- Replies: 9
- Views: 16578
Re: Installation on CentOS 5
Looks like you have two verions of curl installed in /usr from yum and /usr/local from source/
You should not use in-system curl as it's simply too old, just uninstall it with "yum erase curl"
DL latest sources from upstream, make and install it. There are two ways to do it:
1) ./configure --prefix ...
You should not use in-system curl as it's simply too old, just uninstall it with "yum erase curl"
DL latest sources from upstream, make and install it. There are two ways to do it:
1) ./configure --prefix ...
- Mon Mar 23, 2009 2:52 pm
- Forum: Support
- Topic: No more Web-ui access with nightly builds 8074-75
- Replies: 14
- Views: 12239
Re: No more Web-ui access with nightly builds 8074-75
Mine transmission-remote works fine with clear-text password, ie "-n user:password"
- Mon Mar 23, 2009 10:58 am
- Forum: Support
- Topic: No more Web-ui access with nightly builds 8074-75
- Replies: 14
- Views: 12239
Re: No more Web-ui access with nightly builds 8074-75
For all of us not using GTK frontend.
Here is a small app derived from transmission src:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/bn.h>
#include <openssl/des.h>
#include <openssl/dh.h>
#include <openssl/rand.h>
#include <assert.h>
#include <inttypes.h>
int tr ...
Here is a small app derived from transmission src:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/bn.h>
#include <openssl/des.h>
#include <openssl/dh.h>
#include <openssl/rand.h>
#include <assert.h>
#include <inttypes.h>
int tr ...