diff options
| author | Eric DeLabar | 2011-12-16 15:04:05 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-01-30 18:44:54 -0600 |
| commit | 8374c9076ccf4406a4dff4b10f1f48a925c1d80e (patch) | |
| tree | c64654962180ca7629fbf9c4003dc32fd084f108 /Library/Formula/memcached.rb | |
| parent | 20f649e3db6e8e44b5014b7abf8d5f1a42d5f8fb (diff) | |
| download | homebrew-8374c9076ccf4406a4dff4b10f1f48a925c1d80e.tar.bz2 | |
memcached: add --enable-sasl-pwdb option
Added --enable-sasl-pwdb configure parameter to enable SASL2
authentication on an OSX Lion (10.7) machine. Details:
http://code.google.com/p/memcached/wiki/ReleaseNotes145
Closes #9143.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/memcached.rb')
| -rw-r--r-- | Library/Formula/memcached.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/memcached.rb b/Library/Formula/memcached.rb index aa8e85010..a78f3bfaf 100644 --- a/Library/Formula/memcached.rb +++ b/Library/Formula/memcached.rb @@ -10,12 +10,14 @@ class Memcached < Formula def options [ ["--enable-sasl", "Enable SASL support -- disables ASCII protocol!"], + ["--enable-sasl-pwdb", "Enable SASL with memcached's own plain text password db support -- disables ASCII protocol!"], ] end def install args = ["--prefix=#{prefix}"] args << "--enable-sasl" if ARGV.include? "--enable-sasl" + args << "--enable-sasl-pwdb" if ARGV.include? "--enable-sasl-pwdb" system "./configure", *args system "make install" |
