Re: rpath-ing openssl

2006-01-14 Thread Lee Thompson
How does this approach look? Should be more generic. --- Mike Frysinger [EMAIL PROTECTED] wrote: On Friday 13 January 2006 11:38, Lee Thompson wrote: The code certainly runs so is your issue a point of coding style? just because the path is correct on your machine has no relevance to

Re: rpath-ing openssl

2006-01-14 Thread Mike Frysinger
On Saturday 14 January 2006 12:02, Lee Thompson wrote: How does this approach look? Should be more generic. looks much more sane +# --with-rpath Use rpath linking, only makes sense with the use of shared. might want to say the shared libraries or the shared option +#

Re: rpath-ing openssl

2006-01-14 Thread Lee Thompson
This patch encorporates Mike's comments, plus I missed openssl.pc pkg-config file in previous posts. __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com diff -Nru openssl-0.9.8.orig/Configure

Re: rpath-ing openssl

2006-01-13 Thread Mike Frysinger
On Friday 13 January 2006 01:48, Lee Thompson wrote: I'd be interested in your thoughts on this approach. well your hardcoding of -Wl,-R/opt/assembly/lib in the linux-elf-rpath line certainly wont work ... -mike __ OpenSSL

Re: rpath-ing openssl

2006-01-13 Thread Richard Levitte
Mike Frysinger writes: On Friday 13 January 2006 01:48, Lee Thompson wrote: I'd be interested in your thoughts on this approach. well your hardcoding of -Wl,-R/opt/assembly/lib in the linux-elf-rpath line certainly wont work ... I entirely agree with that, and I'm also a bit dubious about

Re: rpath-ing openssl

2006-01-13 Thread Lee Thompson
The code certainly runs so is your issue a point of coding style? I figured the style was okay considering this comment in the INSTALL instructions. edit the Configure program and add the correct configuration for your system Works great on a gentoo box too btw. Could be useful for a

Re: rpath-ing openssl

2006-01-13 Thread Mike Frysinger
On Friday 13 January 2006 11:38, Lee Thompson wrote: The code certainly runs so is your issue a point of coding style? just because the path is correct on your machine has no relevance to anyone else, and forcing people to install into /opt/assembly/lib wont fly -mike

rpath-ing openssl

2006-01-12 Thread Lee Thompson
I use this patch to make an assembly of packages which use openssl without care for the version installed by the linux distro that I'm using. In this case, I'm installing openssl in /opt/assembly. After patching, I configure openssl as such ./Configure --prefix=/opt/assembly shared