diff options
| author | Jack Nagel | 2013-11-07 13:50:08 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-11-07 13:50:08 -0600 |
| commit | af59ffdf2772d21bc80c266a8f8e1d31fde9301d (patch) | |
| tree | 4dca6099030c8028c17d152074c42d50b03add35 /Library | |
| parent | 2cca586b158b0a127d90f2e36502d33c3088c3cd (diff) | |
| download | homebrew-af59ffdf2772d21bc80c266a8f8e1d31fde9301d.tar.bz2 | |
cyassl 2.8.3
- Remove fails_with :clang, the inline asm was fixed several versions ago
- Use autogen.sh rather than call autoreconf manually
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/cyassl.rb | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Library/Formula/cyassl.rb b/Library/Formula/cyassl.rb index 43404bedf..de836e0ce 100644 --- a/Library/Formula/cyassl.rb +++ b/Library/Formula/cyassl.rb @@ -2,8 +2,8 @@ require 'formula' class Cyassl < Formula homepage 'http://yassl.com/yaSSL/Products-cyassl.html' - url 'https://github.com/cyassl/cyassl/archive/v2.8.0.tar.gz' - sha256 '9d8a061e30f6fc6bcdeb0b19eb13dfc1ccf3959837a4a6de5fd982f7332799eb' + url 'https://github.com/cyassl/cyassl/archive/v2.8.3.tar.gz' + sha256 '4b61aa59fbd87cdee14b5d45e94efc0a431b802db12973e97f09a8921ac78963' head 'https://github.com/cyassl/cyassl.git' @@ -11,8 +11,6 @@ class Cyassl < Formula depends_on 'automake' => :build depends_on 'libtool' => :build - fails_with :clang - def install args = %W[--infodir=#{info} --mandir=#{man} @@ -56,10 +54,8 @@ class Cyassl < Formula # Also, only applies if fastmath is enabled. ENV.append_to_cflags '-mdynamic-no-pic' if MacOS.prefer_64_bit? - # No public release available, Git tag is therefore used. - system "autoreconf --verbose --install --force" + system "./autogen.sh" system "./configure", *args - system "make" system "make install" end |
