diff options
| author | nibbles 2bits | 2012-08-11 12:18:47 -0700 |
|---|---|---|
| committer | Jack Nagel | 2012-08-13 17:27:36 -0500 |
| commit | 7dd2e5f4319a1a3e6e3d7cafa8cd714502231440 (patch) | |
| tree | 47f0af6f8e467e24b8133d74cd985e35ce21a8de /Library/Formula | |
| parent | 7f92149f2beb51ba99323e3daf896f34a20faa17 (diff) | |
| download | homebrew-7dd2e5f4319a1a3e6e3d7cafa8cd714502231440.tar.bz2 | |
libxmlsec1: fix configure error on ML
libxmlsec1 already has an option thrown on the command line to
`disable-apps-crypte-dl` which stops the build from looking for
`libltdl`. But that option only applies to the command line app
and another option needs to be thrown otherwise configure will
error on ML when it can't find `libltdl`.
Add a configure flag to `--disable-crypto-dl`
Fixes #13845
Closes #14129.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libxmlsec1.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Formula/libxmlsec1.rb b/Library/Formula/libxmlsec1.rb index 89ddf1300..99f183a54 100644 --- a/Library/Formula/libxmlsec1.rb +++ b/Library/Formula/libxmlsec1.rb @@ -18,6 +18,7 @@ class Libxmlsec1 < Formula system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-libxml=#{libxml2.prefix}", + "--disable-crypto-dl", "--disable-apps-crypto-dl" system "make install" end |
