aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJohn Safranek2013-04-30 20:58:28 -0700
committerJack Nagel2013-05-04 00:36:03 -0500
commit7be8b458f96da9d37d009c1a96888419f646c7cf (patch)
tree7b66c2c218bfb0e6aa6bd34e79608cf0221894f4 /Library
parent8211571d6b5af4fa282087b1bcca4f18ef745ec0 (diff)
downloadhomebrew-7be8b458f96da9d37d009c1a96888419f646c7cf.tar.bz2
cyassl 2.6.0
Adjust configure arguments. The bump and fortress options are application specific, and libz isn't standard DEFLATE behavior. Also note that several of the enable options have changed case from the earlier release of the library. This wasn't causing any problems due to the bump and fortress options, but they are incorrect and needed updating. Closes #19553. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/cyassl.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/Library/Formula/cyassl.rb b/Library/Formula/cyassl.rb
index 7df11e8c7..6f4ade8a4 100644
--- a/Library/Formula/cyassl.rb
+++ b/Library/Formula/cyassl.rb
@@ -24,28 +24,28 @@ class Cyassl < Formula
--enable-crl
--enable-crl-monitor
--enable-dtls
- --enable-fortress
+ --disable-fortress
--enable-hc128
--enable-keygen
--enable-ocsp
- --enable-opensslExtra
+ --enable-opensslextra
--enable-psk
--enable-rabbit
--enable-ripemd
--enable-sha512
- --enable-sniffer
- --disable-ecc
- --disable-noFilesystem
- --disable-noInline
+ --disable-sniffer
+ --enable-ecc
+ --enable-filesystem
+ --enable-inline
--disable-ntru
- --disable-webServer
- --with-libz
+ --disable-webserver
+ --disable-bump
]
if MacOS.prefer_64_bit?
- args << '--enable-fastmath' << '--enable-fasthugemath' << '--enable-bump'
+ args << '--enable-fastmath' << '--enable-fasthugemath'
else
- args << '--disable-fastmath' << '--disable-fasthugemath' << '--disable-bump'
+ args << '--disable-fastmath' << '--disable-fasthugemath'
end
# Extra flag is stated as a needed for the Mac platform.