blob: 34fcc86d72bc21bf9ec6539dd5f5fbe02fe0eb3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
require "formula"
class Libxmlsec1 < Formula
homepage "https://www.aleksey.com/xmlsec/"
url "https://www.aleksey.com/xmlsec/download/xmlsec1-1.2.20.tar.gz"
sha1 "40117ab0f788e43deef6eaf028c88f6abc3a30d0"
bottle do
sha1 "7cfecf66f3608695321bc195b35957f2dddeb354" => :yosemite
sha1 "ff35feb04a9f18af8cf96aacc340e25e60adb542" => :mavericks
sha1 "9b4df5db57f11d86d63fc7dcaa51939d9b874c23" => :mountain_lion
end
depends_on "pkg-config" => :build
depends_on "libxml2" if MacOS.version <= :lion
# Yes, it wants both ssl/tls variations.
depends_on "openssl" => :recommended
depends_on "gnutls" => :recommended
depends_on "libgcrypt" if build.with? "gnutls"
# Add HOMEBREW_PREFIX/lib to dl load path
patch :DATA
def install
args = ["--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-crypto-dl",
"--disable-apps-crypto-dl"
]
args << "--with-openssl=#{Formula["openssl"].opt_prefix}" if build.with? "openssl"
args << "--with-libxml=#{Formula["libxml2"].opt_prefix}" if build.with? "libxml2"
system "./configure", *args
system "make", "install"
end
end
__END__
diff --git a/src/dl.c b/src/dl.c
index 6e8a56a..0e7f06b 100644
--- a/src/dl.c
+++ b/src/dl.c
@@ -141,6 +141,7 @@ xmlSecCryptoDLLibraryCreate(const xmlChar* name) {
}
#ifdef XMLSEC_DL_LIBLTDL
+ lt_dlsetsearchpath("HOMEBREW_PREFIX/lib");
lib->handle = lt_dlopenext((char*)lib->filename);
if(lib->handle == NULL) {
xmlSecError(XMLSEC_ERRORS_HERE,
|