Trying to fix qt's openssl. The change I had done for qt-4.5 was not in qt-4.6.

I just copied that to qt-4.6, expecting it to work.

svn path=/nixpkgs/trunk/; revision=20806
This commit is contained in:
Lluís Batlle i Rossell 2010-03-24 12:04:27 +00:00
parent 7a57a42ee6
commit 08af6b60c0

@ -47,6 +47,11 @@ stdenv.mkDerivation {
glib
libtiff
];
# libQtNetwork will call libQtCore for it to dlopen openssl.
NIX_LDFLAGS = "-rpath ${openssl}/lib";
# Don't shrink the rpath, to keep ${openssl} in it.
dontPatchELF = 1;
prefixKey = "-prefix ";