* Darwin compatibility fix, and modernise the ancient builder.

svn path=/nixpkgs/trunk/; revision=3332
This commit is contained in:
Eelco Dolstra
2005-07-13 11:22:38 +00:00
parent 6f8e9bc2f6
commit 89686a2252
3 changed files with 44 additions and 12 deletions
@@ -5,5 +5,9 @@
url = http://www.openssl.org/source/openssl-0.9.8.tar.gz;
md5 = "9da21071596a124acde6080552deac16";
};
inherit perl;
buildInputs = [perl];
# Quick fix for a Makefile bug in openssl-0.9.8 (`make install'
# tries to copy .so files, instead of .dylib files).
patches = if stdenv.system == "powerpc-darwin" then [./dylib.patch] else [];
}