zookeeper 1.2.12-java → 1.2.13-java
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +5 -0
- data/README.markdown +2 -0
- data/ext/extconf.rb +1 -1
- data/lib/zookeeper/version.rb +1 -1
- metadata +4 -4
data/CHANGELOG
CHANGED
data/README.markdown
CHANGED
@@ -30,6 +30,8 @@ sudo gem install zookeeper
|
|
30
30
|
|
31
31
|
### rbenv is awesome
|
32
32
|
|
33
|
+
UPDATE: this appears to have been fixed by @eric in [this patch](http://git.io/PEPgnA). If you use rbenv, please report any issues, but I believe it should work now.
|
34
|
+
|
33
35
|
Let me start out by saying I prefer rvm, and that I really don't know a whole lot about linking on OS X. Or Linux. Any suggestions or constructive insults would be greatly appreciated if you have insight into what i'm doing wrong here.
|
34
36
|
|
35
37
|
So, it seems that [ruby-build][] doesn't use `--enable-shared` by default. I'm told this is for speed.
|
data/ext/extconf.rb
CHANGED
@@ -18,7 +18,7 @@ end
|
|
18
18
|
$CFLAGS = "#{$CFLAGS}".gsub("$(cflags)", "").gsub("-arch ppc", "")
|
19
19
|
$LDFLAGS = "#{$LDFLAGS}".gsub("$(ldflags)", "").gsub("-arch ppc", "")
|
20
20
|
$CXXFLAGS = " -std=gnu++98 #{$CFLAGS}"
|
21
|
-
$CPPFLAGS = $ARCH_FLAG =
|
21
|
+
$CPPFLAGS = $ARCH_FLAG = ""
|
22
22
|
|
23
23
|
if RUBY_VERSION == '1.8.7'
|
24
24
|
$CFLAGS << ' -DZKRB_RUBY_187'
|
data/lib/zookeeper/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zookeeper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 5
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 1.2.
|
9
|
+
- 13
|
10
|
+
version: 1.2.13
|
11
11
|
platform: java
|
12
12
|
authors:
|
13
13
|
- Phillip Pearson
|
@@ -20,7 +20,7 @@ autorequire:
|
|
20
20
|
bindir: bin
|
21
21
|
cert_chain: []
|
22
22
|
|
23
|
-
date: 2012-
|
23
|
+
date: 2012-08-08 00:00:00 Z
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: logging
|