memcached 1.3.4 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data.tar.gz.sig +0 -0
- data/CHANGELOG +2 -0
- data/Rakefile +1 -1
- data/ext/extconf.rb +1 -1
- data/ext/libmemcached-0.32/Makefile.in +3 -1
- data/ext/libmemcached-0.32/aclocal.m4 +0 -99
- data/ext/libmemcached-0.32/clients/Makefile.in +3 -1
- data/ext/libmemcached-0.32/config/ltmain.sh +2603 -1373
- data/ext/libmemcached-0.32/configure +2311 -1669
- data/ext/libmemcached-0.32/docs/Makefile.in +3 -1
- data/ext/libmemcached-0.32/libmemcached/Makefile.am +1 -0
- data/ext/libmemcached-0.32/libmemcached/Makefile.in +13 -12
- data/ext/libmemcached-0.32/libmemcachedutil/Makefile.in +3 -1
- data/ext/libmemcached-0.32/m4/libtool.m4 +1239 -768
- data/ext/libmemcached-0.32/m4/ltoptions.m4 +7 -6
- data/ext/libmemcached-0.32/m4/ltversion.m4 +6 -6
- data/ext/libmemcached-0.32/m4/lt~obsolete.m4 +9 -3
- data/ext/libmemcached-0.32/support/Makefile.in +3 -1
- data/ext/libmemcached-0.32/tests/Makefile.in +3 -1
- data/memcached.gemspec +2 -2
- metadata +2 -2
- metadata.gz.sig +0 -0
@@ -1,13 +1,14 @@
|
|
1
1
|
# Helper functions for option handling. -*- Autoconf -*-
|
2
2
|
#
|
3
|
-
# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation,
|
3
|
+
# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation,
|
4
|
+
# Inc.
|
4
5
|
# Written by Gary V. Vaughan, 2004
|
5
6
|
#
|
6
7
|
# This file is free software; the Free Software Foundation gives
|
7
8
|
# unlimited permission to copy and/or distribute it, with or without
|
8
9
|
# modifications, as long as this notice is preserved.
|
9
10
|
|
10
|
-
# serial
|
11
|
+
# serial 7 ltoptions.m4
|
11
12
|
|
12
13
|
# This is to help aclocal find these macros, as it can't see m4_define.
|
13
14
|
AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
|
@@ -125,7 +126,7 @@ LT_OPTION_DEFINE([LT_INIT], [win32-dll],
|
|
125
126
|
[enable_win32_dll=yes
|
126
127
|
|
127
128
|
case $host in
|
128
|
-
*-*-cygwin* | *-*-mingw* | *-*-pw32* |
|
129
|
+
*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
|
129
130
|
AC_CHECK_TOOL(AS, as, false)
|
130
131
|
AC_CHECK_TOOL(DLLTOOL, dlltool, false)
|
131
132
|
AC_CHECK_TOOL(OBJDUMP, objdump, false)
|
@@ -133,13 +134,13 @@ case $host in
|
|
133
134
|
esac
|
134
135
|
|
135
136
|
test -z "$AS" && AS=as
|
136
|
-
_LT_DECL([], [AS], [
|
137
|
+
_LT_DECL([], [AS], [1], [Assembler program])dnl
|
137
138
|
|
138
139
|
test -z "$DLLTOOL" && DLLTOOL=dlltool
|
139
|
-
_LT_DECL([], [DLLTOOL], [
|
140
|
+
_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl
|
140
141
|
|
141
142
|
test -z "$OBJDUMP" && OBJDUMP=objdump
|
142
|
-
_LT_DECL([], [OBJDUMP], [
|
143
|
+
_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl
|
143
144
|
])# win32-dll
|
144
145
|
|
145
146
|
AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
|
@@ -7,17 +7,17 @@
|
|
7
7
|
# unlimited permission to copy and/or distribute it, with or without
|
8
8
|
# modifications, as long as this notice is preserved.
|
9
9
|
|
10
|
-
#
|
10
|
+
# @configure_input@
|
11
11
|
|
12
|
-
# serial
|
12
|
+
# serial 3293 ltversion.m4
|
13
13
|
# This file is part of GNU Libtool
|
14
14
|
|
15
|
-
m4_define([LT_PACKAGE_VERSION], [2.
|
16
|
-
m4_define([LT_PACKAGE_REVISION], [1.
|
15
|
+
m4_define([LT_PACKAGE_VERSION], [2.4])
|
16
|
+
m4_define([LT_PACKAGE_REVISION], [1.3293])
|
17
17
|
|
18
18
|
AC_DEFUN([LTVERSION_VERSION],
|
19
|
-
[macro_version='2.
|
20
|
-
macro_revision='1.
|
19
|
+
[macro_version='2.4'
|
20
|
+
macro_revision='1.3293'
|
21
21
|
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
|
22
22
|
_LT_DECL(, macro_revision, 0)
|
23
23
|
])
|
@@ -1,13 +1,13 @@
|
|
1
1
|
# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
|
2
2
|
#
|
3
|
-
# Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc.
|
3
|
+
# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
|
4
4
|
# Written by Scott James Remnant, 2004.
|
5
5
|
#
|
6
6
|
# This file is free software; the Free Software Foundation gives
|
7
7
|
# unlimited permission to copy and/or distribute it, with or without
|
8
8
|
# modifications, as long as this notice is preserved.
|
9
9
|
|
10
|
-
# serial
|
10
|
+
# serial 5 lt~obsolete.m4
|
11
11
|
|
12
12
|
# These exist entirely to fool aclocal when bootstrapping libtool.
|
13
13
|
#
|
@@ -77,7 +77,6 @@ m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
|
|
77
77
|
m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])])
|
78
78
|
m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])])
|
79
79
|
m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])])
|
80
|
-
m4_ifndef([AC_LIBTOOL_RC], [AC_DEFUN([AC_LIBTOOL_RC])])
|
81
80
|
m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
|
82
81
|
m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
|
83
82
|
m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
|
@@ -90,3 +89,10 @@ m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
|
|
90
89
|
m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
|
91
90
|
m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])])
|
92
91
|
m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
|
92
|
+
m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])
|
93
|
+
m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])])
|
94
|
+
m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])
|
95
|
+
m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])
|
96
|
+
m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])])
|
97
|
+
m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])])
|
98
|
+
m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])
|
@@ -128,6 +128,7 @@ CYGPATH_W = @CYGPATH_W@
|
|
128
128
|
DEFS = @DEFS@
|
129
129
|
DEPDIR = @DEPDIR@
|
130
130
|
DEPRECATED = @DEPRECATED@
|
131
|
+
DLLTOOL = @DLLTOOL@
|
131
132
|
DOXYGEN = @DOXYGEN@
|
132
133
|
DSYMUTIL = @DSYMUTIL@
|
133
134
|
DTRACE = @DTRACE@
|
@@ -169,6 +170,7 @@ LTLIBOBJS = @LTLIBOBJS@
|
|
169
170
|
LTLIBSASL = @LTLIBSASL@
|
170
171
|
LTLIBSASL2 = @LTLIBSASL2@
|
171
172
|
MAKEINFO = @MAKEINFO@
|
173
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
172
174
|
MEMCACHEDUTIL_LIBRARY_VERSION = @MEMCACHEDUTIL_LIBRARY_VERSION@
|
173
175
|
MEMCACHED_LIBRARY_VERSION = @MEMCACHED_LIBRARY_VERSION@
|
174
176
|
MEMC_BINARY = @MEMC_BINARY@
|
@@ -208,6 +210,7 @@ abs_builddir = @abs_builddir@
|
|
208
210
|
abs_srcdir = @abs_srcdir@
|
209
211
|
abs_top_builddir = @abs_top_builddir@
|
210
212
|
abs_top_srcdir = @abs_top_srcdir@
|
213
|
+
ac_ct_AR = @ac_ct_AR@
|
211
214
|
ac_ct_CC = @ac_ct_CC@
|
212
215
|
ac_ct_CXX = @ac_ct_CXX@
|
213
216
|
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
@@ -242,7 +245,6 @@ libdir = @libdir@
|
|
242
245
|
libexecdir = @libexecdir@
|
243
246
|
localedir = @localedir@
|
244
247
|
localstatedir = @localstatedir@
|
245
|
-
lt_ECHO = @lt_ECHO@
|
246
248
|
mandir = @mandir@
|
247
249
|
mkdir_p = @mkdir_p@
|
248
250
|
oldincludedir = @oldincludedir@
|
@@ -175,6 +175,7 @@ CYGPATH_W = @CYGPATH_W@
|
|
175
175
|
DEFS = @DEFS@
|
176
176
|
DEPDIR = @DEPDIR@
|
177
177
|
DEPRECATED = @DEPRECATED@
|
178
|
+
DLLTOOL = @DLLTOOL@
|
178
179
|
DOXYGEN = @DOXYGEN@
|
179
180
|
DSYMUTIL = @DSYMUTIL@
|
180
181
|
DTRACE = @DTRACE@
|
@@ -216,6 +217,7 @@ LTLIBOBJS = @LTLIBOBJS@
|
|
216
217
|
LTLIBSASL = @LTLIBSASL@
|
217
218
|
LTLIBSASL2 = @LTLIBSASL2@
|
218
219
|
MAKEINFO = @MAKEINFO@
|
220
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
219
221
|
MEMCACHEDUTIL_LIBRARY_VERSION = @MEMCACHEDUTIL_LIBRARY_VERSION@
|
220
222
|
MEMCACHED_LIBRARY_VERSION = @MEMCACHED_LIBRARY_VERSION@
|
221
223
|
MEMC_BINARY = @MEMC_BINARY@
|
@@ -255,6 +257,7 @@ abs_builddir = @abs_builddir@
|
|
255
257
|
abs_srcdir = @abs_srcdir@
|
256
258
|
abs_top_builddir = @abs_top_builddir@
|
257
259
|
abs_top_srcdir = @abs_top_srcdir@
|
260
|
+
ac_ct_AR = @ac_ct_AR@
|
258
261
|
ac_ct_CC = @ac_ct_CC@
|
259
262
|
ac_ct_CXX = @ac_ct_CXX@
|
260
263
|
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
@@ -289,7 +292,6 @@ libdir = @libdir@
|
|
289
292
|
libexecdir = @libexecdir@
|
290
293
|
localedir = @localedir@
|
291
294
|
localstatedir = @localstatedir@
|
292
|
-
lt_ECHO = @lt_ECHO@
|
293
295
|
mandir = @mandir@
|
294
296
|
mkdir_p = @mkdir_p@
|
295
297
|
oldincludedir = @oldincludedir@
|
data/memcached.gemspec
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{memcached}
|
5
|
-
s.version = "1.3.
|
5
|
+
s.version = "1.3.5"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = [%q{Evan Weaver}]
|
9
9
|
s.cert_chain = [%q{/Users/eweaver/p/configuration/gem_certificates/evan_weaver-original-public_cert.pem}]
|
10
|
-
s.date = %q{2011-10-
|
10
|
+
s.date = %q{2011-10-10}
|
11
11
|
s.description = %q{An interface to the libmemcached C client.}
|
12
12
|
s.email = %q{}
|
13
13
|
s.extensions = [%q{ext/extconf.rb}]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: memcached
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -50,7 +50,7 @@ cert_chain:
|
|
50
50
|
-----END CERTIFICATE-----
|
51
51
|
|
52
52
|
'
|
53
|
-
date: 2011-10-
|
53
|
+
date: 2011-10-10 00:00:00.000000000Z
|
54
54
|
dependencies: []
|
55
55
|
description: An interface to the libmemcached C client.
|
56
56
|
email: ''
|
metadata.gz.sig
CHANGED
Binary file
|