diff options
| author | Adam Vandenberg | 2014-02-24 23:07:13 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2014-02-25 06:18:17 -0800 |
| commit | 4ee5cb872360dd9f8d45c1f5593086a21e8b4883 (patch) | |
| tree | 8e990175f74e7bb3727bacb4dc7d32f65dbffba3 /Library | |
| parent | 4e21ef1db2983a063c5faebba0b2dddb42219295 (diff) | |
| download | homebrew-4ee5cb872360dd9f8d45c1f5593086a21e8b4883.tar.bz2 | |
inspircd: normalize module conditionals
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/inspircd.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/inspircd.rb b/Library/Formula/inspircd.rb index 691bbbfe6..1ce7b0df4 100644 --- a/Library/Formula/inspircd.rb +++ b/Library/Formula/inspircd.rb @@ -28,9 +28,9 @@ class Inspircd < Formula modules << 'm_geoip.cpp' if build.with? 'geoip' modules << 'm_ssl_gnutls.cpp' if build.with? 'gnutls' modules << 'm_mysql.cpp' if build.with? 'mysql' - modules << 'm_ssl_openssl.cpp' unless build.without? 'openssl' - modules << 'm_ldapauth.cpp' unless build.without? 'ldap' - modules << 'm_ldapoper.cpp' unless build.without? 'ldap' + modules << 'm_ssl_openssl.cpp' if build.with? 'openssl' + modules << 'm_ldapauth.cpp' if build.with? 'ldap' + modules << 'm_ldapoper.cpp' if build.with? 'ldap' modules << 'm_regex_pcre.cpp' if build.with? 'pcre' modules << 'm_pgsql.cpp' if build.with? 'postgresql' modules << 'm_sqlite3.cpp' if build.with? 'sqlite' |
