dalli_memcached 1.8.0

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.
Files changed (209) hide show
  1. data/BENCHMARKS +142 -0
  2. data/CHANGELOG +176 -0
  3. data/Gemfile +11 -0
  4. data/Gemfile.lock +45 -0
  5. data/LICENSE +184 -0
  6. data/Manifest +209 -0
  7. data/README.rdoc +124 -0
  8. data/Rakefile +134 -0
  9. data/TODO +1 -0
  10. data/dalli_memcached.gemspec +0 -0
  11. data/ext/extconf-make.rb +25 -0
  12. data/ext/extconf.rb +78 -0
  13. data/ext/libmemcached-0.32/AUTHORS +7 -0
  14. data/ext/libmemcached-0.32/COPYING +32 -0
  15. data/ext/libmemcached-0.32/ChangeLog +303 -0
  16. data/ext/libmemcached-0.32/INSTALL +302 -0
  17. data/ext/libmemcached-0.32/Makefile.am +36 -0
  18. data/ext/libmemcached-0.32/Makefile.in +911 -0
  19. data/ext/libmemcached-0.32/NEWS +1 -0
  20. data/ext/libmemcached-0.32/README +33 -0
  21. data/ext/libmemcached-0.32/THANKS +14 -0
  22. data/ext/libmemcached-0.32/TODO +11 -0
  23. data/ext/libmemcached-0.32/aclocal.m4 +2108 -0
  24. data/ext/libmemcached-0.32/clients/Makefile.am +80 -0
  25. data/ext/libmemcached-0.32/clients/Makefile.in +773 -0
  26. data/ext/libmemcached-0.32/clients/client_options.h +32 -0
  27. data/ext/libmemcached-0.32/clients/execute.c +64 -0
  28. data/ext/libmemcached-0.32/clients/execute.h +5 -0
  29. data/ext/libmemcached-0.32/clients/generator.c +74 -0
  30. data/ext/libmemcached-0.32/clients/generator.h +20 -0
  31. data/ext/libmemcached-0.32/clients/memcat.c +178 -0
  32. data/ext/libmemcached-0.32/clients/memcp.c +251 -0
  33. data/ext/libmemcached-0.32/clients/memdump.c +170 -0
  34. data/ext/libmemcached-0.32/clients/memerror.c +80 -0
  35. data/ext/libmemcached-0.32/clients/memflush.c +143 -0
  36. data/ext/libmemcached-0.32/clients/memrm.c +160 -0
  37. data/ext/libmemcached-0.32/clients/memslap.c +441 -0
  38. data/ext/libmemcached-0.32/clients/memstat.c +326 -0
  39. data/ext/libmemcached-0.32/clients/utilities.c +207 -0
  40. data/ext/libmemcached-0.32/clients/utilities.h +41 -0
  41. data/ext/libmemcached-0.32/config.h.in +254 -0
  42. data/ext/libmemcached-0.32/config/compile +143 -0
  43. data/ext/libmemcached-0.32/config/config.guess +1561 -0
  44. data/ext/libmemcached-0.32/config/config.rpath +666 -0
  45. data/ext/libmemcached-0.32/config/config.sub +1686 -0
  46. data/ext/libmemcached-0.32/config/depcomp +630 -0
  47. data/ext/libmemcached-0.32/config/install-sh +520 -0
  48. data/ext/libmemcached-0.32/config/ltmain.sh +9636 -0
  49. data/ext/libmemcached-0.32/config/missing +376 -0
  50. data/ext/libmemcached-0.32/configure +23843 -0
  51. data/ext/libmemcached-0.32/configure.ac +120 -0
  52. data/ext/libmemcached-0.32/libmemcached/Makefile.am +111 -0
  53. data/ext/libmemcached-0.32/libmemcached/Makefile.in +1069 -0
  54. data/ext/libmemcached-0.32/libmemcached/byteorder.c +31 -0
  55. data/ext/libmemcached-0.32/libmemcached/common.h +189 -0
  56. data/ext/libmemcached-0.32/libmemcached/crc.c +86 -0
  57. data/ext/libmemcached-0.32/libmemcached/hsieh_hash.c +68 -0
  58. data/ext/libmemcached-0.32/libmemcached/jenkins_hash.c +213 -0
  59. data/ext/libmemcached-0.32/libmemcached/libmemcached.ver +1 -0
  60. data/ext/libmemcached-0.32/libmemcached/libmemcached_probes.d +30 -0
  61. data/ext/libmemcached-0.32/libmemcached/libmemcached_probes.h +82 -0
  62. data/ext/libmemcached-0.32/libmemcached/md5.c +354 -0
  63. data/ext/libmemcached-0.32/libmemcached/memcached.c +153 -0
  64. data/ext/libmemcached-0.32/libmemcached/memcached.h +305 -0
  65. data/ext/libmemcached-0.32/libmemcached/memcached.hpp +799 -0
  66. data/ext/libmemcached-0.32/libmemcached/memcached/README.txt +7 -0
  67. data/ext/libmemcached-0.32/libmemcached/memcached/protocol_binary.h +385 -0
  68. data/ext/libmemcached-0.32/libmemcached/memcached_allocators.c +72 -0
  69. data/ext/libmemcached-0.32/libmemcached/memcached_analyze.c +100 -0
  70. data/ext/libmemcached-0.32/libmemcached/memcached_auto.c +207 -0
  71. data/ext/libmemcached-0.32/libmemcached/memcached_behavior.c +290 -0
  72. data/ext/libmemcached-0.32/libmemcached/memcached_callback.c +175 -0
  73. data/ext/libmemcached-0.32/libmemcached/memcached_configure.h.in +23 -0
  74. data/ext/libmemcached-0.32/libmemcached/memcached_connect.c +371 -0
  75. data/ext/libmemcached-0.32/libmemcached/memcached_constants.h +146 -0
  76. data/ext/libmemcached-0.32/libmemcached/memcached_delete.c +0 -0
  77. data/ext/libmemcached-0.32/libmemcached/memcached_do.c +72 -0
  78. data/ext/libmemcached-0.32/libmemcached/memcached_dump.c +79 -0
  79. data/ext/libmemcached-0.32/libmemcached/memcached_exist.c +114 -0
  80. data/ext/libmemcached-0.32/libmemcached/memcached_exist.h +20 -0
  81. data/ext/libmemcached-0.32/libmemcached/memcached_fetch.c +102 -0
  82. data/ext/libmemcached-0.32/libmemcached/memcached_flush.c +89 -0
  83. data/ext/libmemcached-0.32/libmemcached/memcached_flush_buffers.c +23 -0
  84. data/ext/libmemcached-0.32/libmemcached/memcached_get.c +494 -0
  85. data/ext/libmemcached-0.32/libmemcached/memcached_get.h +87 -0
  86. data/ext/libmemcached-0.32/libmemcached/memcached_hash.c +252 -0
  87. data/ext/libmemcached-0.32/libmemcached/memcached_hosts.c +510 -0
  88. data/ext/libmemcached-0.32/libmemcached/memcached_internal.h +31 -0
  89. data/ext/libmemcached-0.32/libmemcached/memcached_io.c +594 -0
  90. data/ext/libmemcached-0.32/libmemcached/memcached_io.h +72 -0
  91. data/ext/libmemcached-0.32/libmemcached/memcached_key.c +28 -0
  92. data/ext/libmemcached-0.32/libmemcached/memcached_parse.c +74 -0
  93. data/ext/libmemcached-0.32/libmemcached/memcached_pool.h +38 -0
  94. data/ext/libmemcached-0.32/libmemcached/memcached_purge.c +76 -0
  95. data/ext/libmemcached-0.32/libmemcached/memcached_quit.c +75 -0
  96. data/ext/libmemcached-0.32/libmemcached/memcached_response.c +529 -0
  97. data/ext/libmemcached-0.32/libmemcached/memcached_result.c +57 -0
  98. data/ext/libmemcached-0.32/libmemcached/memcached_result.h +59 -0
  99. data/ext/libmemcached-0.32/libmemcached/memcached_sasl.c +225 -0
  100. data/ext/libmemcached-0.32/libmemcached/memcached_sasl.h +44 -0
  101. data/ext/libmemcached-0.32/libmemcached/memcached_server.c +159 -0
  102. data/ext/libmemcached-0.32/libmemcached/memcached_server.h +93 -0
  103. data/ext/libmemcached-0.32/libmemcached/memcached_stats.c +437 -0
  104. data/ext/libmemcached-0.32/libmemcached/memcached_storage.c +514 -0
  105. data/ext/libmemcached-0.32/libmemcached/memcached_storage.h +107 -0
  106. data/ext/libmemcached-0.32/libmemcached/memcached_strerror.c +92 -0
  107. data/ext/libmemcached-0.32/libmemcached/memcached_string.c +138 -0
  108. data/ext/libmemcached-0.32/libmemcached/memcached_string.h +53 -0
  109. data/ext/libmemcached-0.32/libmemcached/memcached_touch.c +60 -0
  110. data/ext/libmemcached-0.32/libmemcached/memcached_touch.h +31 -0
  111. data/ext/libmemcached-0.32/libmemcached/memcached_types.h +44 -0
  112. data/ext/libmemcached-0.32/libmemcached/memcached_util.h +15 -0
  113. data/ext/libmemcached-0.32/libmemcached/memcached_verbosity.c +36 -0
  114. data/ext/libmemcached-0.32/libmemcached/memcached_version.c +112 -0
  115. data/ext/libmemcached-0.32/libmemcached/memcached_watchpoint.h +38 -0
  116. data/ext/libmemcached-0.32/libmemcached/murmur_hash.c +76 -0
  117. data/ext/libmemcached-0.32/libmemcached/visibility.h +51 -0
  118. data/ext/libmemcached-0.32/libmemcachedutil/Makefile.am +11 -0
  119. data/ext/libmemcached-0.32/libmemcachedutil/Makefile.in +604 -0
  120. data/ext/libmemcached-0.32/libmemcachedutil/libmemcachedutil.ver +1 -0
  121. data/ext/libmemcached-0.32/libmemcachedutil/memcached_pool.c +170 -0
  122. data/ext/libmemcached-0.32/m4/ac_cxx_compile_stdcxx_0x.m4 +103 -0
  123. data/ext/libmemcached-0.32/m4/ac_cxx_header_stdcxx_98.m4 +67 -0
  124. data/ext/libmemcached-0.32/m4/acx_pthread.m4 +276 -0
  125. data/ext/libmemcached-0.32/m4/byteorder.m4 +40 -0
  126. data/ext/libmemcached-0.32/m4/deprecated.m4 +17 -0
  127. data/ext/libmemcached-0.32/m4/enable_utillib.m4 +16 -0
  128. data/ext/libmemcached-0.32/m4/extensions.m4 +94 -0
  129. data/ext/libmemcached-0.32/m4/hsieh.m4 +18 -0
  130. data/ext/libmemcached-0.32/m4/lib-prefix.m4 +221 -0
  131. data/ext/libmemcached-0.32/m4/libtool.m4 +7831 -0
  132. data/ext/libmemcached-0.32/m4/ltoptions.m4 +369 -0
  133. data/ext/libmemcached-0.32/m4/ltsugar.m4 +123 -0
  134. data/ext/libmemcached-0.32/m4/ltversion.m4 +23 -0
  135. data/ext/libmemcached-0.32/m4/lt~obsolete.m4 +98 -0
  136. data/ext/libmemcached-0.32/m4/memcached.m4 +30 -0
  137. data/ext/libmemcached-0.32/m4/pandora_64bit.m4 +55 -0
  138. data/ext/libmemcached-0.32/m4/pandora_canonical.m4 +151 -0
  139. data/ext/libmemcached-0.32/m4/pandora_check_compiler_version.m4 +37 -0
  140. data/ext/libmemcached-0.32/m4/pandora_check_cxx_standard.m4 +16 -0
  141. data/ext/libmemcached-0.32/m4/pandora_enable_dtrace.m4 +41 -0
  142. data/ext/libmemcached-0.32/m4/pandora_ensure_gcc_version.m4 +36 -0
  143. data/ext/libmemcached-0.32/m4/pandora_have_better_malloc.m4 +54 -0
  144. data/ext/libmemcached-0.32/m4/pandora_have_sasl.m4 +133 -0
  145. data/ext/libmemcached-0.32/m4/pandora_header_assert.m4 +23 -0
  146. data/ext/libmemcached-0.32/m4/pandora_libtool.m4 +15 -0
  147. data/ext/libmemcached-0.32/m4/pandora_optimize.m4 +79 -0
  148. data/ext/libmemcached-0.32/m4/pandora_shared_ptr.m4 +56 -0
  149. data/ext/libmemcached-0.32/m4/pandora_vc_build.m4 +32 -0
  150. data/ext/libmemcached-0.32/m4/pandora_warnings.m4 +262 -0
  151. data/ext/libmemcached-0.32/m4/pod2man.m4 +7 -0
  152. data/ext/libmemcached-0.32/m4/protocol_binary.m4 +23 -0
  153. data/ext/libmemcached-0.32/m4/setsockopt.m4 +57 -0
  154. data/ext/libmemcached-0.32/m4/visibility.m4 +52 -0
  155. data/ext/libmemcached-0.32/support/Makefile.am +4 -0
  156. data/ext/libmemcached-0.32/support/Makefile.in +487 -0
  157. data/ext/libmemcached-0.32/support/libmemcached-fc.spec.in +105 -0
  158. data/ext/libmemcached-0.32/support/libmemcached.pc.in +10 -0
  159. data/ext/libmemcached-0.32/support/libmemcached.spec +105 -0
  160. data/ext/libmemcached-0.32/support/libmemcached.spec.in +105 -0
  161. data/ext/libmemcached-0.32/support/set_benchmark.sh +5 -0
  162. data/ext/libmemcached-0.32/tests/Makefile.am +113 -0
  163. data/ext/libmemcached-0.32/tests/Makefile.in +762 -0
  164. data/ext/libmemcached-0.32/tests/atomsmasher.c +245 -0
  165. data/ext/libmemcached-0.32/tests/function.c +4904 -0
  166. data/ext/libmemcached-0.32/tests/ketama_test_cases.h +108 -0
  167. data/ext/libmemcached-0.32/tests/output.cmp +7 -0
  168. data/ext/libmemcached-0.32/tests/output.res +7 -0
  169. data/ext/libmemcached-0.32/tests/output2.res +46 -0
  170. data/ext/libmemcached-0.32/tests/plus.cpp +293 -0
  171. data/ext/libmemcached-0.32/tests/r/memcat.res +19 -0
  172. data/ext/libmemcached-0.32/tests/r/memcp.res +27 -0
  173. data/ext/libmemcached-0.32/tests/r/memrm.res +19 -0
  174. data/ext/libmemcached-0.32/tests/r/memslap.res +33 -0
  175. data/ext/libmemcached-0.32/tests/r/memstat.res +33 -0
  176. data/ext/libmemcached-0.32/tests/server.c +118 -0
  177. data/ext/libmemcached-0.32/tests/server.h +25 -0
  178. data/ext/libmemcached-0.32/tests/start.c +16 -0
  179. data/ext/libmemcached-0.32/tests/t/memcat.test +4 -0
  180. data/ext/libmemcached-0.32/tests/t/memcp.test +3 -0
  181. data/ext/libmemcached-0.32/tests/t/memrm.test +3 -0
  182. data/ext/libmemcached-0.32/tests/t/memslap.test +5 -0
  183. data/ext/libmemcached-0.32/tests/t/memstat.test +3 -0
  184. data/ext/libmemcached-0.32/tests/test.c +137 -0
  185. data/ext/libmemcached-0.32/tests/test.h +46 -0
  186. data/ext/libmemcached-0.32/tests/udp.c +76 -0
  187. data/ext/rlibmemcached.i +258 -0
  188. data/ext/rlibmemcached_wrap.c +13917 -0
  189. data/lib/memcached.rb +33 -0
  190. data/lib/memcached/auth.rb +16 -0
  191. data/lib/memcached/behaviors.rb +78 -0
  192. data/lib/memcached/exceptions.rb +84 -0
  193. data/lib/memcached/experimental.rb +48 -0
  194. data/lib/memcached/marshal_codec.rb +10 -0
  195. data/lib/memcached/memcached.rb +732 -0
  196. data/lib/memcached/rails.rb +250 -0
  197. data/test/profile/benchmark.rb +280 -0
  198. data/test/profile/c_profiler.rb +14 -0
  199. data/test/profile/exercise.rb +185 -0
  200. data/test/profile/rb_profiler.rb +21 -0
  201. data/test/profile/valgrind.rb +10 -0
  202. data/test/setup.rb +30 -0
  203. data/test/teardown.rb +0 -0
  204. data/test/test_helper.rb +18 -0
  205. data/test/unit/binding_test.rb +8 -0
  206. data/test/unit/memcached_experimental_test.rb +272 -0
  207. data/test/unit/memcached_test.rb +1487 -0
  208. data/test/unit/rails_test.rb +330 -0
  209. metadata +347 -0
@@ -0,0 +1,302 @@
1
+ Installation Instructions
2
+ *************************
3
+
4
+ Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
5
+ 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6
+
7
+ This file is free documentation; the Free Software Foundation gives
8
+ unlimited permission to copy, distribute and modify it.
9
+
10
+ Basic Installation
11
+ ==================
12
+
13
+ Briefly, the shell commands `./configure; make; make install' should
14
+ configure, build, and install this package. The following
15
+ more-detailed instructions are generic; see the `README' file for
16
+ instructions specific to this package.
17
+
18
+ The `configure' shell script attempts to guess correct values for
19
+ various system-dependent variables used during compilation. It uses
20
+ those values to create a `Makefile' in each directory of the package.
21
+ It may also create one or more `.h' files containing system-dependent
22
+ definitions. Finally, it creates a shell script `config.status' that
23
+ you can run in the future to recreate the current configuration, and a
24
+ file `config.log' containing compiler output (useful mainly for
25
+ debugging `configure').
26
+
27
+ It can also use an optional file (typically called `config.cache'
28
+ and enabled with `--cache-file=config.cache' or simply `-C') that saves
29
+ the results of its tests to speed up reconfiguring. Caching is
30
+ disabled by default to prevent problems with accidental use of stale
31
+ cache files.
32
+
33
+ If you need to do unusual things to compile the package, please try
34
+ to figure out how `configure' could check whether to do them, and mail
35
+ diffs or instructions to the address given in the `README' so they can
36
+ be considered for the next release. If you are using the cache, and at
37
+ some point `config.cache' contains results you don't want to keep, you
38
+ may remove or edit it.
39
+
40
+ The file `configure.ac' (or `configure.in') is used to create
41
+ `configure' by a program called `autoconf'. You need `configure.ac' if
42
+ you want to change it or regenerate `configure' using a newer version
43
+ of `autoconf'.
44
+
45
+ The simplest way to compile this package is:
46
+
47
+ 1. `cd' to the directory containing the package's source code and type
48
+ `./configure' to configure the package for your system.
49
+
50
+ Running `configure' might take a while. While running, it prints
51
+ some messages telling which features it is checking for.
52
+
53
+ 2. Type `make' to compile the package.
54
+
55
+ 3. Optionally, type `make check' to run any self-tests that come with
56
+ the package.
57
+
58
+ 4. Type `make install' to install the programs and any data files and
59
+ documentation.
60
+
61
+ 5. You can remove the program binaries and object files from the
62
+ source code directory by typing `make clean'. To also remove the
63
+ files that `configure' created (so you can compile the package for
64
+ a different kind of computer), type `make distclean'. There is
65
+ also a `make maintainer-clean' target, but that is intended mainly
66
+ for the package's developers. If you use it, you may have to get
67
+ all sorts of other programs in order to regenerate files that came
68
+ with the distribution.
69
+
70
+ 6. Often, you can also type `make uninstall' to remove the installed
71
+ files again.
72
+
73
+ Compilers and Options
74
+ =====================
75
+
76
+ Some systems require unusual options for compilation or linking that
77
+ the `configure' script does not know about. Run `./configure --help'
78
+ for details on some of the pertinent environment variables.
79
+
80
+ You can give `configure' initial values for configuration parameters
81
+ by setting variables in the command line or in the environment. Here
82
+ is an example:
83
+
84
+ ./configure CC=c99 CFLAGS=-g LIBS=-lposix
85
+
86
+ *Note Defining Variables::, for more details.
87
+
88
+ Compiling For Multiple Architectures
89
+ ====================================
90
+
91
+ You can compile the package for more than one kind of computer at the
92
+ same time, by placing the object files for each architecture in their
93
+ own directory. To do this, you can use GNU `make'. `cd' to the
94
+ directory where you want the object files and executables to go and run
95
+ the `configure' script. `configure' automatically checks for the
96
+ source code in the directory that `configure' is in and in `..'.
97
+
98
+ With a non-GNU `make', it is safer to compile the package for one
99
+ architecture at a time in the source code directory. After you have
100
+ installed the package for one architecture, use `make distclean' before
101
+ reconfiguring for another architecture.
102
+
103
+ On MacOS X 10.5 and later systems, you can create libraries and
104
+ executables that work on multiple system types--known as "fat" or
105
+ "universal" binaries--by specifying multiple `-arch' options to the
106
+ compiler but only a single `-arch' option to the preprocessor. Like
107
+ this:
108
+
109
+ ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
110
+ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
111
+ CPP="gcc -E" CXXCPP="g++ -E"
112
+
113
+ This is not guaranteed to produce working output in all cases, you
114
+ may have to build one architecture at a time and combine the results
115
+ using the `lipo' tool if you have problems.
116
+
117
+ Installation Names
118
+ ==================
119
+
120
+ By default, `make install' installs the package's commands under
121
+ `/usr/local/bin', include files under `/usr/local/include', etc. You
122
+ can specify an installation prefix other than `/usr/local' by giving
123
+ `configure' the option `--prefix=PREFIX'.
124
+
125
+ You can specify separate installation prefixes for
126
+ architecture-specific files and architecture-independent files. If you
127
+ pass the option `--exec-prefix=PREFIX' to `configure', the package uses
128
+ PREFIX as the prefix for installing programs and libraries.
129
+ Documentation and other data files still use the regular prefix.
130
+
131
+ In addition, if you use an unusual directory layout you can give
132
+ options like `--bindir=DIR' to specify different values for particular
133
+ kinds of files. Run `configure --help' for a list of the directories
134
+ you can set and what kinds of files go in them.
135
+
136
+ If the package supports it, you can cause programs to be installed
137
+ with an extra prefix or suffix on their names by giving `configure' the
138
+ option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
139
+
140
+ Optional Features
141
+ =================
142
+
143
+ Some packages pay attention to `--enable-FEATURE' options to
144
+ `configure', where FEATURE indicates an optional part of the package.
145
+ They may also pay attention to `--with-PACKAGE' options, where PACKAGE
146
+ is something like `gnu-as' or `x' (for the X Window System). The
147
+ `README' should mention any `--enable-' and `--with-' options that the
148
+ package recognizes.
149
+
150
+ For packages that use the X Window System, `configure' can usually
151
+ find the X include and library files automatically, but if it doesn't,
152
+ you can use the `configure' options `--x-includes=DIR' and
153
+ `--x-libraries=DIR' to specify their locations.
154
+
155
+ Particular systems
156
+ ==================
157
+
158
+ On HP-UX, the default C compiler is not ANSI C compatible. If GNU
159
+ CC is not installed, it is recommended to use the following options in
160
+ order to use an ANSI C compiler:
161
+
162
+ ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
163
+
164
+ and if that doesn't work, install pre-built binaries of GCC for HP-UX.
165
+
166
+ On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
167
+ parse its `<wchar.h>' header file. The option `-nodtk' can be used as
168
+ a workaround. If GNU CC is not installed, it is therefore recommended
169
+ to try
170
+
171
+ ./configure CC="cc"
172
+
173
+ and if that doesn't work, try
174
+
175
+ ./configure CC="cc -nodtk"
176
+
177
+ On Solaris, don't put `/usr/ucb' early in your `PATH'. This
178
+ directory contains several dysfunctional programs; working variants of
179
+ these programs are available in `/usr/bin'. So, if you need `/usr/ucb'
180
+ in your `PATH', put it _after_ `/usr/bin'.
181
+
182
+ On Haiku, software installed for all users goes in `/boot/common',
183
+ not `/usr/local'. It is recommended to use the following options:
184
+
185
+ ./configure --prefix=/boot/common
186
+
187
+ Specifying the System Type
188
+ ==========================
189
+
190
+ There may be some features `configure' cannot figure out
191
+ automatically, but needs to determine by the type of machine the package
192
+ will run on. Usually, assuming the package is built to be run on the
193
+ _same_ architectures, `configure' can figure that out, but if it prints
194
+ a message saying it cannot guess the machine type, give it the
195
+ `--build=TYPE' option. TYPE can either be a short name for the system
196
+ type, such as `sun4', or a canonical name which has the form:
197
+
198
+ CPU-COMPANY-SYSTEM
199
+
200
+ where SYSTEM can have one of these forms:
201
+
202
+ OS
203
+ KERNEL-OS
204
+
205
+ See the file `config.sub' for the possible values of each field. If
206
+ `config.sub' isn't included in this package, then this package doesn't
207
+ need to know the machine type.
208
+
209
+ If you are _building_ compiler tools for cross-compiling, you should
210
+ use the option `--target=TYPE' to select the type of system they will
211
+ produce code for.
212
+
213
+ If you want to _use_ a cross compiler, that generates code for a
214
+ platform different from the build platform, you should specify the
215
+ "host" platform (i.e., that on which the generated programs will
216
+ eventually be run) with `--host=TYPE'.
217
+
218
+ Sharing Defaults
219
+ ================
220
+
221
+ If you want to set default values for `configure' scripts to share,
222
+ you can create a site shell script called `config.site' that gives
223
+ default values for variables like `CC', `cache_file', and `prefix'.
224
+ `configure' looks for `PREFIX/share/config.site' if it exists, then
225
+ `PREFIX/etc/config.site' if it exists. Or, you can set the
226
+ `CONFIG_SITE' environment variable to the location of the site script.
227
+ A warning: not all `configure' scripts look for a site script.
228
+
229
+ Defining Variables
230
+ ==================
231
+
232
+ Variables not defined in a site shell script can be set in the
233
+ environment passed to `configure'. However, some packages may run
234
+ configure again during the build, and the customized values of these
235
+ variables may be lost. In order to avoid this problem, you should set
236
+ them in the `configure' command line, using `VAR=value'. For example:
237
+
238
+ ./configure CC=/usr/local2/bin/gcc
239
+
240
+ causes the specified `gcc' to be used as the C compiler (unless it is
241
+ overridden in the site shell script).
242
+
243
+ Unfortunately, this technique does not work for `CONFIG_SHELL' due to
244
+ an Autoconf bug. Until the bug is fixed you can use this workaround:
245
+
246
+ CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
247
+
248
+ `configure' Invocation
249
+ ======================
250
+
251
+ `configure' recognizes the following options to control how it
252
+ operates.
253
+
254
+ `--help'
255
+ `-h'
256
+ Print a summary of all of the options to `configure', and exit.
257
+
258
+ `--help=short'
259
+ `--help=recursive'
260
+ Print a summary of the options unique to this package's
261
+ `configure', and exit. The `short' variant lists options used
262
+ only in the top level, while the `recursive' variant lists options
263
+ also present in any nested packages.
264
+
265
+ `--version'
266
+ `-V'
267
+ Print the version of Autoconf used to generate the `configure'
268
+ script, and exit.
269
+
270
+ `--cache-file=FILE'
271
+ Enable the cache: use and save the results of the tests in FILE,
272
+ traditionally `config.cache'. FILE defaults to `/dev/null' to
273
+ disable caching.
274
+
275
+ `--config-cache'
276
+ `-C'
277
+ Alias for `--cache-file=config.cache'.
278
+
279
+ `--quiet'
280
+ `--silent'
281
+ `-q'
282
+ Do not print messages saying which checks are being made. To
283
+ suppress all normal output, redirect it to `/dev/null' (any error
284
+ messages will still be shown).
285
+
286
+ `--srcdir=DIR'
287
+ Look for the package's source code in directory DIR. Usually
288
+ `configure' can determine that directory automatically.
289
+
290
+ `--prefix=DIR'
291
+ Use DIR as the installation prefix. *Note Installation Names::
292
+ for more details, including other options available for fine-tuning
293
+ the installation locations.
294
+
295
+ `--no-create'
296
+ `-n'
297
+ Run the configure checks, but stop before creating any output
298
+ files.
299
+
300
+ `configure' also accepts some other, not widely useful, options. Run
301
+ `configure --help' for more details.
302
+
@@ -0,0 +1,36 @@
1
+ ACLOCAL_AMFLAGS = -I m4
2
+
3
+ SUBDIRS = libmemcached libmemcachedutil support clients tests
4
+ EXTRA_dist = README.FIRST
5
+
6
+ check-local: test-no-outputdiff
7
+
8
+ test: all
9
+ @(cd tests; ${MAKE} test)
10
+
11
+ test-extended: all
12
+ @(cd tests; ${MAKE} test-extended)
13
+
14
+ valgrind:
15
+ @(cd tests; ${MAKE} valgrind)
16
+
17
+ test-no-outputdiff:
18
+ @(cd tests; ${MAKE} test-no-outputdiff)
19
+
20
+ fedora:
21
+ rm -f ~/rpmbuild/RPMS/x86_64/libmemcached-$(VERSION)*.rpm
22
+ rm -f ~/rpmbuild/SRPMS/libmemcached-$(VERSION)*.rpm
23
+ cp libmemcached-$(VERSION).tar.gz /home/brian/rpmbuild/SOURCES/
24
+ rpmbuild -ba support/libmemcached.spec
25
+ cp ~/rpmbuild/RPMS/x86_64/libmemcached-$(VERSION)*.rpm .
26
+ cp ~/rpmbuild/SRPMS/libmemcached-$(VERSION)*.rpm .
27
+
28
+ generic:
29
+ rm -f ~/rpmbuild/RPMS/x86_64/libmemcached-$(VERSION)*.rpm
30
+ rm -f ~/rpmbuild/SRPMS/libmemcached-$(VERSION)*.rpm
31
+ cp libmemcached-$(VERSION).tar.gz /home/brian/rpmbuild/SOURCES/
32
+ rpmbuild -ba support/libmemcached.spec
33
+ cp ~/rpmbuild/RPMS/x86_64/libmemcached-$(VERSION)*.rpm .
34
+ cp ~/rpmbuild/SRPMS/libmemcached-$(VERSION)*.rpm .
35
+
36
+ rpm: all dist generic fedora
@@ -0,0 +1,911 @@
1
+ # Makefile.in generated by automake 1.14 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994-2013 Free Software Foundation, Inc.
5
+
6
+ # This Makefile.in is free software; the Free Software Foundation
7
+ # gives unlimited permission to copy and/or distribute it,
8
+ # with or without modifications, as long as this notice is preserved.
9
+
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
+ # PARTICULAR PURPOSE.
14
+
15
+ @SET_MAKE@
16
+ VPATH = @srcdir@
17
+ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
18
+ am__make_running_with_option = \
19
+ case $${target_option-} in \
20
+ ?) ;; \
21
+ *) echo "am__make_running_with_option: internal error: invalid" \
22
+ "target option '$${target_option-}' specified" >&2; \
23
+ exit 1;; \
24
+ esac; \
25
+ has_opt=no; \
26
+ sane_makeflags=$$MAKEFLAGS; \
27
+ if $(am__is_gnu_make); then \
28
+ sane_makeflags=$$MFLAGS; \
29
+ else \
30
+ case $$MAKEFLAGS in \
31
+ *\\[\ \ ]*) \
32
+ bs=\\; \
33
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
34
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
35
+ esac; \
36
+ fi; \
37
+ skip_next=no; \
38
+ strip_trailopt () \
39
+ { \
40
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
41
+ }; \
42
+ for flg in $$sane_makeflags; do \
43
+ test $$skip_next = yes && { skip_next=no; continue; }; \
44
+ case $$flg in \
45
+ *=*|--*) continue;; \
46
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
47
+ -*I?*) strip_trailopt 'I';; \
48
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
49
+ -*O?*) strip_trailopt 'O';; \
50
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
51
+ -*l?*) strip_trailopt 'l';; \
52
+ -[dEDm]) skip_next=yes;; \
53
+ -[JT]) skip_next=yes;; \
54
+ esac; \
55
+ case $$flg in \
56
+ *$$target_option*) has_opt=yes; break;; \
57
+ esac; \
58
+ done; \
59
+ test $$has_opt = yes
60
+ am__make_dryrun = (target_option=n; $(am__make_running_with_option))
61
+ am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
62
+ pkgdatadir = $(datadir)/@PACKAGE@
63
+ pkgincludedir = $(includedir)/@PACKAGE@
64
+ pkglibdir = $(libdir)/@PACKAGE@
65
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
66
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
67
+ install_sh_DATA = $(install_sh) -c -m 644
68
+ install_sh_PROGRAM = $(install_sh) -c
69
+ install_sh_SCRIPT = $(install_sh) -c
70
+ INSTALL_HEADER = $(INSTALL_DATA)
71
+ transform = $(program_transform_name)
72
+ NORMAL_INSTALL = :
73
+ PRE_INSTALL = :
74
+ POST_INSTALL = :
75
+ NORMAL_UNINSTALL = :
76
+ PRE_UNINSTALL = :
77
+ POST_UNINSTALL = :
78
+ build_triplet = @build@
79
+ host_triplet = @host@
80
+ target_triplet = @target@
81
+ subdir = .
82
+ DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
83
+ $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
84
+ $(top_srcdir)/configure $(am__configure_deps) \
85
+ $(srcdir)/config.h.in COPYING THANKS TODO config/compile \
86
+ config/config.guess config/config.rpath config/config.sub \
87
+ config/depcomp config/install-sh config/missing \
88
+ config/ltmain.sh $(top_srcdir)/config/compile \
89
+ $(top_srcdir)/config/config.guess \
90
+ $(top_srcdir)/config/config.rpath \
91
+ $(top_srcdir)/config/config.sub \
92
+ $(top_srcdir)/config/install-sh $(top_srcdir)/config/ltmain.sh \
93
+ $(top_srcdir)/config/missing
94
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
95
+ am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_compile_stdcxx_0x.m4 \
96
+ $(top_srcdir)/m4/ac_cxx_header_stdcxx_98.m4 \
97
+ $(top_srcdir)/m4/acx_pthread.m4 $(top_srcdir)/m4/byteorder.m4 \
98
+ $(top_srcdir)/m4/deprecated.m4 \
99
+ $(top_srcdir)/m4/enable_utillib.m4 \
100
+ $(top_srcdir)/m4/extensions.m4 $(top_srcdir)/m4/hsieh.m4 \
101
+ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \
102
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
103
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
104
+ $(top_srcdir)/m4/memcached.m4 \
105
+ $(top_srcdir)/m4/pandora_64bit.m4 \
106
+ $(top_srcdir)/m4/pandora_canonical.m4 \
107
+ $(top_srcdir)/m4/pandora_check_compiler_version.m4 \
108
+ $(top_srcdir)/m4/pandora_check_cxx_standard.m4 \
109
+ $(top_srcdir)/m4/pandora_enable_dtrace.m4 \
110
+ $(top_srcdir)/m4/pandora_ensure_gcc_version.m4 \
111
+ $(top_srcdir)/m4/pandora_have_better_malloc.m4 \
112
+ $(top_srcdir)/m4/pandora_have_sasl.m4 \
113
+ $(top_srcdir)/m4/pandora_header_assert.m4 \
114
+ $(top_srcdir)/m4/pandora_libtool.m4 \
115
+ $(top_srcdir)/m4/pandora_optimize.m4 \
116
+ $(top_srcdir)/m4/pandora_shared_ptr.m4 \
117
+ $(top_srcdir)/m4/pandora_vc_build.m4 \
118
+ $(top_srcdir)/m4/pandora_warnings.m4 \
119
+ $(top_srcdir)/m4/protocol_binary.m4 \
120
+ $(top_srcdir)/m4/setsockopt.m4 $(top_srcdir)/m4/visibility.m4 \
121
+ $(top_srcdir)/configure.ac
122
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
123
+ $(ACLOCAL_M4)
124
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
125
+ configure.lineno config.status.lineno
126
+ mkinstalldirs = $(install_sh) -d
127
+ CONFIG_HEADER = config.h
128
+ CONFIG_CLEAN_FILES =
129
+ CONFIG_CLEAN_VPATH_FILES =
130
+ AM_V_P = $(am__v_P_@AM_V@)
131
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
132
+ am__v_P_0 = false
133
+ am__v_P_1 = :
134
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
135
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
136
+ am__v_GEN_0 = @echo " GEN " $@;
137
+ am__v_GEN_1 =
138
+ AM_V_at = $(am__v_at_@AM_V@)
139
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
140
+ am__v_at_0 = @
141
+ am__v_at_1 =
142
+ SOURCES =
143
+ DIST_SOURCES =
144
+ RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
145
+ ctags-recursive dvi-recursive html-recursive info-recursive \
146
+ install-data-recursive install-dvi-recursive \
147
+ install-exec-recursive install-html-recursive \
148
+ install-info-recursive install-pdf-recursive \
149
+ install-ps-recursive install-recursive installcheck-recursive \
150
+ installdirs-recursive pdf-recursive ps-recursive \
151
+ tags-recursive uninstall-recursive
152
+ am__can_run_installinfo = \
153
+ case $$AM_UPDATE_INFO_DIR in \
154
+ n|no|NO) false;; \
155
+ *) (install-info --version) >/dev/null 2>&1;; \
156
+ esac
157
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
158
+ distclean-recursive maintainer-clean-recursive
159
+ am__recursive_targets = \
160
+ $(RECURSIVE_TARGETS) \
161
+ $(RECURSIVE_CLEAN_TARGETS) \
162
+ $(am__extra_recursive_targets)
163
+ AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
164
+ cscope distdir dist dist-all distcheck
165
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
166
+ $(LISP)config.h.in
167
+ # Read a list of newline-separated strings from the standard input,
168
+ # and print each of them once, without duplicates. Input order is
169
+ # *not* preserved.
170
+ am__uniquify_input = $(AWK) '\
171
+ BEGIN { nonempty = 0; } \
172
+ { items[$$0] = 1; nonempty = 1; } \
173
+ END { if (nonempty) { for (i in items) print i; }; } \
174
+ '
175
+ # Make sure the list of sources is unique. This is necessary because,
176
+ # e.g., the same source file might be shared among _SOURCES variables
177
+ # for different programs/libraries.
178
+ am__define_uniq_tagged_files = \
179
+ list='$(am__tagged_files)'; \
180
+ unique=`for i in $$list; do \
181
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
182
+ done | $(am__uniquify_input)`
183
+ ETAGS = etags
184
+ CTAGS = ctags
185
+ CSCOPE = cscope
186
+ DIST_SUBDIRS = $(SUBDIRS)
187
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
188
+ distdir = $(PACKAGE)-$(VERSION)
189
+ top_distdir = $(distdir)
190
+ am__remove_distdir = \
191
+ if test -d "$(distdir)"; then \
192
+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
193
+ && rm -rf "$(distdir)" \
194
+ || { sleep 5 && rm -rf "$(distdir)"; }; \
195
+ else :; fi
196
+ am__post_remove_distdir = $(am__remove_distdir)
197
+ am__relativize = \
198
+ dir0=`pwd`; \
199
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
200
+ sed_rest='s,^[^/]*/*,,'; \
201
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
202
+ sed_butlast='s,/*[^/]*$$,,'; \
203
+ while test -n "$$dir1"; do \
204
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
205
+ if test "$$first" != "."; then \
206
+ if test "$$first" = ".."; then \
207
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
208
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
209
+ else \
210
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
211
+ if test "$$first2" = "$$first"; then \
212
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
213
+ else \
214
+ dir2="../$$dir2"; \
215
+ fi; \
216
+ dir0="$$dir0"/"$$first"; \
217
+ fi; \
218
+ fi; \
219
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
220
+ done; \
221
+ reldir="$$dir2"
222
+ DIST_ARCHIVES = $(distdir).tar.gz
223
+ GZIP_ENV = --best
224
+ DIST_TARGETS = dist-gzip
225
+ distuninstallcheck_listfiles = find . -type f -print
226
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
227
+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
228
+ distcleancheck_listfiles = find . -type f -print
229
+ ACLOCAL = @ACLOCAL@
230
+ AMTAR = @AMTAR@
231
+ AM_CFLAGS = @AM_CFLAGS@
232
+ AM_CPPFLAGS = @AM_CPPFLAGS@
233
+ AM_CXXFLAGS = @AM_CXXFLAGS@
234
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
235
+ AR = @AR@
236
+ AUTOCONF = @AUTOCONF@
237
+ AUTOHEADER = @AUTOHEADER@
238
+ AUTOMAKE = @AUTOMAKE@
239
+ AWK = @AWK@
240
+ BETTER_MALLOC_LIBS = @BETTER_MALLOC_LIBS@
241
+ CC = @CC@
242
+ CCDEPMODE = @CCDEPMODE@
243
+ CC_VERSION = @CC_VERSION@
244
+ CFLAGS = @CFLAGS@
245
+ CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
246
+ CPP = @CPP@
247
+ CPPFLAGS = @CPPFLAGS@
248
+ CXX = @CXX@
249
+ CXXCPP = @CXXCPP@
250
+ CXXDEPMODE = @CXXDEPMODE@
251
+ CXXFLAGS = @CXXFLAGS@
252
+ CXX_VERSION = @CXX_VERSION@
253
+ CYGPATH_W = @CYGPATH_W@
254
+ DEFS = @DEFS@
255
+ DEPDIR = @DEPDIR@
256
+ DEPRECATED = @DEPRECATED@
257
+ DLLTOOL = @DLLTOOL@
258
+ DOXYGEN = @DOXYGEN@
259
+ DSYMUTIL = @DSYMUTIL@
260
+ DTRACE = @DTRACE@
261
+ DTRACEFLAGS = @DTRACEFLAGS@
262
+ DUMPBIN = @DUMPBIN@
263
+ ECHO_C = @ECHO_C@
264
+ ECHO_N = @ECHO_N@
265
+ ECHO_T = @ECHO_T@
266
+ EGREP = @EGREP@
267
+ EXEEXT = @EXEEXT@
268
+ FGREP = @FGREP@
269
+ GREP = @GREP@
270
+ HAVE_LIBSASL = @HAVE_LIBSASL@
271
+ HAVE_LIBSASL2 = @HAVE_LIBSASL2@
272
+ HAVE_VISIBILITY = @HAVE_VISIBILITY@
273
+ INSTALL = @INSTALL@
274
+ INSTALL_DATA = @INSTALL_DATA@
275
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
276
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
277
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
278
+ ISAINFO = @ISAINFO@
279
+ LD = @LD@
280
+ LDFLAGS = @LDFLAGS@
281
+ LD_UTIL_VERSION_SCRIPT = @LD_UTIL_VERSION_SCRIPT@
282
+ LD_VERSION_SCRIPT = @LD_VERSION_SCRIPT@
283
+ LIBC_P = @LIBC_P@
284
+ LIBM = @LIBM@
285
+ LIBMEMCACHED_WITH_SASL_SUPPORT = @LIBMEMCACHED_WITH_SASL_SUPPORT@
286
+ LIBOBJS = @LIBOBJS@
287
+ LIBS = @LIBS@
288
+ LIBSASL = @LIBSASL@
289
+ LIBSASL2 = @LIBSASL2@
290
+ LIBSASL2_PREFIX = @LIBSASL2_PREFIX@
291
+ LIBSASL_PREFIX = @LIBSASL_PREFIX@
292
+ LIBTOOL = @LIBTOOL@
293
+ LIPO = @LIPO@
294
+ LN_S = @LN_S@
295
+ LTLIBOBJS = @LTLIBOBJS@
296
+ LTLIBSASL = @LTLIBSASL@
297
+ LTLIBSASL2 = @LTLIBSASL2@
298
+ MAKEINFO = @MAKEINFO@
299
+ MANIFEST_TOOL = @MANIFEST_TOOL@
300
+ MEMCACHEDUTIL_LIBRARY_VERSION = @MEMCACHEDUTIL_LIBRARY_VERSION@
301
+ MEMCACHED_LIBRARY_VERSION = @MEMCACHED_LIBRARY_VERSION@
302
+ MEMC_BINARY = @MEMC_BINARY@
303
+ MKDIR_P = @MKDIR_P@
304
+ NM = @NM@
305
+ NMEDIT = @NMEDIT@
306
+ NO_CONVERSION = @NO_CONVERSION@
307
+ NO_REDUNDANT_DECLS = @NO_REDUNDANT_DECLS@
308
+ NO_SHADOW = @NO_SHADOW@
309
+ NO_STRICT_ALIASING = @NO_STRICT_ALIASING@
310
+ NO_UNREACHED = @NO_UNREACHED@
311
+ OBJDUMP = @OBJDUMP@
312
+ OBJEXT = @OBJEXT@
313
+ OTOOL = @OTOOL@
314
+ OTOOL64 = @OTOOL64@
315
+ PACKAGE = @PACKAGE@
316
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
317
+ PACKAGE_NAME = @PACKAGE_NAME@
318
+ PACKAGE_STRING = @PACKAGE_STRING@
319
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
320
+ PACKAGE_URL = @PACKAGE_URL@
321
+ PACKAGE_VERSION = @PACKAGE_VERSION@
322
+ PATH_SEPARATOR = @PATH_SEPARATOR@
323
+ PERL = @PERL@
324
+ PROTOSKIP_WARNINGS = @PROTOSKIP_WARNINGS@
325
+ PTHREAD_CC = @PTHREAD_CC@
326
+ PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
327
+ PTHREAD_LIBS = @PTHREAD_LIBS@
328
+ RANLIB = @RANLIB@
329
+ SED = @SED@
330
+ SET_MAKE = @SET_MAKE@
331
+ SHELL = @SHELL@
332
+ STRIP = @STRIP@
333
+ VERSION = @VERSION@
334
+ abs_builddir = @abs_builddir@
335
+ abs_srcdir = @abs_srcdir@
336
+ abs_top_builddir = @abs_top_builddir@
337
+ abs_top_srcdir = @abs_top_srcdir@
338
+ ac_ct_AR = @ac_ct_AR@
339
+ ac_ct_CC = @ac_ct_CC@
340
+ ac_ct_CXX = @ac_ct_CXX@
341
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
342
+ acx_pthread_config = @acx_pthread_config@
343
+ am__include = @am__include@
344
+ am__leading_dot = @am__leading_dot@
345
+ am__quote = @am__quote@
346
+ am__tar = @am__tar@
347
+ am__untar = @am__untar@
348
+ bindir = @bindir@
349
+ build = @build@
350
+ build_alias = @build_alias@
351
+ build_cpu = @build_cpu@
352
+ build_os = @build_os@
353
+ build_vendor = @build_vendor@
354
+ builddir = @builddir@
355
+ datadir = @datadir@
356
+ datarootdir = @datarootdir@
357
+ docdir = @docdir@
358
+ dvidir = @dvidir@
359
+ exec_prefix = @exec_prefix@
360
+ host = @host@
361
+ host_alias = @host_alias@
362
+ host_cpu = @host_cpu@
363
+ host_os = @host_os@
364
+ host_vendor = @host_vendor@
365
+ htmldir = @htmldir@
366
+ includedir = @includedir@
367
+ infodir = @infodir@
368
+ install_sh = @install_sh@
369
+ libdir = @libdir@
370
+ libexecdir = @libexecdir@
371
+ localedir = @localedir@
372
+ localstatedir = @localstatedir@
373
+ mandir = @mandir@
374
+ mkdir_p = @mkdir_p@
375
+ oldincludedir = @oldincludedir@
376
+ pdfdir = @pdfdir@
377
+ prefix = @prefix@
378
+ program_transform_name = @program_transform_name@
379
+ psdir = @psdir@
380
+ sbindir = @sbindir@
381
+ sharedstatedir = @sharedstatedir@
382
+ srcdir = @srcdir@
383
+ sysconfdir = @sysconfdir@
384
+ target = @target@
385
+ target_alias = @target_alias@
386
+ target_cpu = @target_cpu@
387
+ target_os = @target_os@
388
+ target_vendor = @target_vendor@
389
+ top_build_prefix = @top_build_prefix@
390
+ top_builddir = @top_builddir@
391
+ top_srcdir = @top_srcdir@
392
+ ACLOCAL_AMFLAGS = -I m4
393
+ SUBDIRS = libmemcached libmemcachedutil support clients tests
394
+ EXTRA_dist = README.FIRST
395
+ all: config.h
396
+ $(MAKE) $(AM_MAKEFLAGS) all-recursive
397
+
398
+ .SUFFIXES:
399
+ am--refresh: Makefile
400
+ @:
401
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
402
+ @for dep in $?; do \
403
+ case '$(am__configure_deps)' in \
404
+ *$$dep*) \
405
+ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
406
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
407
+ && exit 0; \
408
+ exit 1;; \
409
+ esac; \
410
+ done; \
411
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
412
+ $(am__cd) $(top_srcdir) && \
413
+ $(AUTOMAKE) --gnu Makefile
414
+ .PRECIOUS: Makefile
415
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
416
+ @case '$?' in \
417
+ *config.status*) \
418
+ echo ' $(SHELL) ./config.status'; \
419
+ $(SHELL) ./config.status;; \
420
+ *) \
421
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
422
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
423
+ esac;
424
+
425
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
426
+ $(SHELL) ./config.status --recheck
427
+
428
+ $(top_srcdir)/configure: $(am__configure_deps)
429
+ $(am__cd) $(srcdir) && $(AUTOCONF)
430
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
431
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
432
+ $(am__aclocal_m4_deps):
433
+
434
+ config.h: stamp-h1
435
+ @test -f $@ || rm -f stamp-h1
436
+ @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
437
+
438
+ stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
439
+ @rm -f stamp-h1
440
+ cd $(top_builddir) && $(SHELL) ./config.status config.h
441
+ $(srcdir)/config.h.in: $(am__configure_deps)
442
+ ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
443
+ rm -f stamp-h1
444
+ touch $@
445
+
446
+ distclean-hdr:
447
+ -rm -f config.h stamp-h1
448
+
449
+ mostlyclean-libtool:
450
+ -rm -f *.lo
451
+
452
+ clean-libtool:
453
+ -rm -rf .libs _libs
454
+
455
+ distclean-libtool:
456
+ -rm -f libtool config.lt
457
+
458
+ # This directory's subdirectories are mostly independent; you can cd
459
+ # into them and run 'make' without going through this Makefile.
460
+ # To change the values of 'make' variables: instead of editing Makefiles,
461
+ # (1) if the variable is set in 'config.status', edit 'config.status'
462
+ # (which will cause the Makefiles to be regenerated when you run 'make');
463
+ # (2) otherwise, pass the desired values on the 'make' command line.
464
+ $(am__recursive_targets):
465
+ @fail=; \
466
+ if $(am__make_keepgoing); then \
467
+ failcom='fail=yes'; \
468
+ else \
469
+ failcom='exit 1'; \
470
+ fi; \
471
+ dot_seen=no; \
472
+ target=`echo $@ | sed s/-recursive//`; \
473
+ case "$@" in \
474
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
475
+ *) list='$(SUBDIRS)' ;; \
476
+ esac; \
477
+ for subdir in $$list; do \
478
+ echo "Making $$target in $$subdir"; \
479
+ if test "$$subdir" = "."; then \
480
+ dot_seen=yes; \
481
+ local_target="$$target-am"; \
482
+ else \
483
+ local_target="$$target"; \
484
+ fi; \
485
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
486
+ || eval $$failcom; \
487
+ done; \
488
+ if test "$$dot_seen" = "no"; then \
489
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
490
+ fi; test -z "$$fail"
491
+
492
+ ID: $(am__tagged_files)
493
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
494
+ tags: tags-recursive
495
+ TAGS: tags
496
+
497
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
498
+ set x; \
499
+ here=`pwd`; \
500
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
501
+ include_option=--etags-include; \
502
+ empty_fix=.; \
503
+ else \
504
+ include_option=--include; \
505
+ empty_fix=; \
506
+ fi; \
507
+ list='$(SUBDIRS)'; for subdir in $$list; do \
508
+ if test "$$subdir" = .; then :; else \
509
+ test ! -f $$subdir/TAGS || \
510
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
511
+ fi; \
512
+ done; \
513
+ $(am__define_uniq_tagged_files); \
514
+ shift; \
515
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
516
+ test -n "$$unique" || unique=$$empty_fix; \
517
+ if test $$# -gt 0; then \
518
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
519
+ "$$@" $$unique; \
520
+ else \
521
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
522
+ $$unique; \
523
+ fi; \
524
+ fi
525
+ ctags: ctags-recursive
526
+
527
+ CTAGS: ctags
528
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
529
+ $(am__define_uniq_tagged_files); \
530
+ test -z "$(CTAGS_ARGS)$$unique" \
531
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
532
+ $$unique
533
+
534
+ GTAGS:
535
+ here=`$(am__cd) $(top_builddir) && pwd` \
536
+ && $(am__cd) $(top_srcdir) \
537
+ && gtags -i $(GTAGS_ARGS) "$$here"
538
+ cscope: cscope.files
539
+ test ! -s cscope.files \
540
+ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
541
+ clean-cscope:
542
+ -rm -f cscope.files
543
+ cscope.files: clean-cscope cscopelist
544
+ cscopelist: cscopelist-recursive
545
+
546
+ cscopelist-am: $(am__tagged_files)
547
+ list='$(am__tagged_files)'; \
548
+ case "$(srcdir)" in \
549
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
550
+ *) sdir=$(subdir)/$(srcdir) ;; \
551
+ esac; \
552
+ for i in $$list; do \
553
+ if test -f "$$i"; then \
554
+ echo "$(subdir)/$$i"; \
555
+ else \
556
+ echo "$$sdir/$$i"; \
557
+ fi; \
558
+ done >> $(top_builddir)/cscope.files
559
+
560
+ distclean-tags:
561
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
562
+ -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
563
+
564
+ distdir: $(DISTFILES)
565
+ $(am__remove_distdir)
566
+ test -d "$(distdir)" || mkdir "$(distdir)"
567
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
568
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
569
+ list='$(DISTFILES)'; \
570
+ dist_files=`for file in $$list; do echo $$file; done | \
571
+ sed -e "s|^$$srcdirstrip/||;t" \
572
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
573
+ case $$dist_files in \
574
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
575
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
576
+ sort -u` ;; \
577
+ esac; \
578
+ for file in $$dist_files; do \
579
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
580
+ if test -d $$d/$$file; then \
581
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
582
+ if test -d "$(distdir)/$$file"; then \
583
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
584
+ fi; \
585
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
586
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
587
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
588
+ fi; \
589
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
590
+ else \
591
+ test -f "$(distdir)/$$file" \
592
+ || cp -p $$d/$$file "$(distdir)/$$file" \
593
+ || exit 1; \
594
+ fi; \
595
+ done
596
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
597
+ if test "$$subdir" = .; then :; else \
598
+ $(am__make_dryrun) \
599
+ || test -d "$(distdir)/$$subdir" \
600
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
601
+ || exit 1; \
602
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
603
+ $(am__relativize); \
604
+ new_distdir=$$reldir; \
605
+ dir1=$$subdir; dir2="$(top_distdir)"; \
606
+ $(am__relativize); \
607
+ new_top_distdir=$$reldir; \
608
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
609
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
610
+ ($(am__cd) $$subdir && \
611
+ $(MAKE) $(AM_MAKEFLAGS) \
612
+ top_distdir="$$new_top_distdir" \
613
+ distdir="$$new_distdir" \
614
+ am__remove_distdir=: \
615
+ am__skip_length_check=: \
616
+ am__skip_mode_fix=: \
617
+ distdir) \
618
+ || exit 1; \
619
+ fi; \
620
+ done
621
+ -test -n "$(am__skip_mode_fix)" \
622
+ || find "$(distdir)" -type d ! -perm -755 \
623
+ -exec chmod u+rwx,go+rx {} \; -o \
624
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
625
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
626
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
627
+ || chmod -R a+r "$(distdir)"
628
+ dist-gzip: distdir
629
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
630
+ $(am__post_remove_distdir)
631
+
632
+ dist-bzip2: distdir
633
+ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
634
+ $(am__post_remove_distdir)
635
+
636
+ dist-lzip: distdir
637
+ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
638
+ $(am__post_remove_distdir)
639
+
640
+ dist-xz: distdir
641
+ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
642
+ $(am__post_remove_distdir)
643
+
644
+ dist-tarZ: distdir
645
+ @echo WARNING: "Support for shar distribution archives is" \
646
+ "deprecated." >&2
647
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
648
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
649
+ $(am__post_remove_distdir)
650
+
651
+ dist-shar: distdir
652
+ @echo WARNING: "Support for distribution archives compressed with" \
653
+ "legacy program 'compress' is deprecated." >&2
654
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
655
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
656
+ $(am__post_remove_distdir)
657
+
658
+ dist-zip: distdir
659
+ -rm -f $(distdir).zip
660
+ zip -rq $(distdir).zip $(distdir)
661
+ $(am__post_remove_distdir)
662
+
663
+ dist dist-all:
664
+ $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
665
+ $(am__post_remove_distdir)
666
+
667
+ # This target untars the dist file and tries a VPATH configuration. Then
668
+ # it guarantees that the distribution is self-contained by making another
669
+ # tarfile.
670
+ distcheck: dist
671
+ case '$(DIST_ARCHIVES)' in \
672
+ *.tar.gz*) \
673
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
674
+ *.tar.bz2*) \
675
+ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
676
+ *.tar.lz*) \
677
+ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
678
+ *.tar.xz*) \
679
+ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
680
+ *.tar.Z*) \
681
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
682
+ *.shar.gz*) \
683
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
684
+ *.zip*) \
685
+ unzip $(distdir).zip ;;\
686
+ esac
687
+ chmod -R a-w $(distdir)
688
+ chmod u+w $(distdir)
689
+ mkdir $(distdir)/_build $(distdir)/_inst
690
+ chmod a-w $(distdir)
691
+ test -d $(distdir)/_build || exit 0; \
692
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
693
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
694
+ && am__cwd=`pwd` \
695
+ && $(am__cd) $(distdir)/_build \
696
+ && ../configure --srcdir=.. --prefix="$$dc_install_base" \
697
+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
698
+ $(DISTCHECK_CONFIGURE_FLAGS) \
699
+ && $(MAKE) $(AM_MAKEFLAGS) \
700
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
701
+ && $(MAKE) $(AM_MAKEFLAGS) check \
702
+ && $(MAKE) $(AM_MAKEFLAGS) install \
703
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
704
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
705
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
706
+ distuninstallcheck \
707
+ && chmod -R a-w "$$dc_install_base" \
708
+ && ({ \
709
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
710
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
711
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
712
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
713
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
714
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
715
+ && rm -rf "$$dc_destdir" \
716
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
717
+ && rm -rf $(DIST_ARCHIVES) \
718
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
719
+ && cd "$$am__cwd" \
720
+ || exit 1
721
+ $(am__post_remove_distdir)
722
+ @(echo "$(distdir) archives ready for distribution: "; \
723
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
724
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
725
+ distuninstallcheck:
726
+ @test -n '$(distuninstallcheck_dir)' || { \
727
+ echo 'ERROR: trying to run $@ with an empty' \
728
+ '$$(distuninstallcheck_dir)' >&2; \
729
+ exit 1; \
730
+ }; \
731
+ $(am__cd) '$(distuninstallcheck_dir)' || { \
732
+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
733
+ exit 1; \
734
+ }; \
735
+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
736
+ || { echo "ERROR: files left after uninstall:" ; \
737
+ if test -n "$(DESTDIR)"; then \
738
+ echo " (check DESTDIR support)"; \
739
+ fi ; \
740
+ $(distuninstallcheck_listfiles) ; \
741
+ exit 1; } >&2
742
+ distcleancheck: distclean
743
+ @if test '$(srcdir)' = . ; then \
744
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
745
+ exit 1 ; \
746
+ fi
747
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
748
+ || { echo "ERROR: files left in build directory after distclean:" ; \
749
+ $(distcleancheck_listfiles) ; \
750
+ exit 1; } >&2
751
+ check-am: all-am
752
+ $(MAKE) $(AM_MAKEFLAGS) check-local
753
+ check: check-recursive
754
+ all-am: Makefile config.h
755
+ installdirs: installdirs-recursive
756
+ installdirs-am:
757
+ install: install-recursive
758
+ install-exec: install-exec-recursive
759
+ install-data: install-data-recursive
760
+ uninstall: uninstall-recursive
761
+
762
+ install-am: all-am
763
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
764
+
765
+ installcheck: installcheck-recursive
766
+ install-strip:
767
+ if test -z '$(STRIP)'; then \
768
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
769
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
770
+ install; \
771
+ else \
772
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
773
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
774
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
775
+ fi
776
+ mostlyclean-generic:
777
+
778
+ clean-generic:
779
+
780
+ distclean-generic:
781
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
782
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
783
+
784
+ maintainer-clean-generic:
785
+ @echo "This command is intended for maintainers to use"
786
+ @echo "it deletes files that may require special tools to rebuild."
787
+ clean: clean-recursive
788
+
789
+ clean-am: clean-generic clean-libtool mostlyclean-am
790
+
791
+ distclean: distclean-recursive
792
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
793
+ -rm -f Makefile
794
+ distclean-am: clean-am distclean-generic distclean-hdr \
795
+ distclean-libtool distclean-tags
796
+
797
+ dvi: dvi-recursive
798
+
799
+ dvi-am:
800
+
801
+ html: html-recursive
802
+
803
+ html-am:
804
+
805
+ info: info-recursive
806
+
807
+ info-am:
808
+
809
+ install-data-am:
810
+
811
+ install-dvi: install-dvi-recursive
812
+
813
+ install-dvi-am:
814
+
815
+ install-exec-am:
816
+
817
+ install-html: install-html-recursive
818
+
819
+ install-html-am:
820
+
821
+ install-info: install-info-recursive
822
+
823
+ install-info-am:
824
+
825
+ install-man:
826
+
827
+ install-pdf: install-pdf-recursive
828
+
829
+ install-pdf-am:
830
+
831
+ install-ps: install-ps-recursive
832
+
833
+ install-ps-am:
834
+
835
+ installcheck-am:
836
+
837
+ maintainer-clean: maintainer-clean-recursive
838
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
839
+ -rm -rf $(top_srcdir)/autom4te.cache
840
+ -rm -f Makefile
841
+ maintainer-clean-am: distclean-am maintainer-clean-generic
842
+
843
+ mostlyclean: mostlyclean-recursive
844
+
845
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
846
+
847
+ pdf: pdf-recursive
848
+
849
+ pdf-am:
850
+
851
+ ps: ps-recursive
852
+
853
+ ps-am:
854
+
855
+ uninstall-am:
856
+
857
+ .MAKE: $(am__recursive_targets) all check-am install-am install-strip
858
+
859
+ .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
860
+ am--refresh check check-am check-local clean clean-cscope \
861
+ clean-generic clean-libtool cscope cscopelist-am ctags \
862
+ ctags-am dist dist-all dist-bzip2 dist-gzip dist-lzip \
863
+ dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \
864
+ distclean-generic distclean-hdr distclean-libtool \
865
+ distclean-tags distcleancheck distdir distuninstallcheck dvi \
866
+ dvi-am html html-am info info-am install install-am \
867
+ install-data install-data-am install-dvi install-dvi-am \
868
+ install-exec install-exec-am install-html install-html-am \
869
+ install-info install-info-am install-man install-pdf \
870
+ install-pdf-am install-ps install-ps-am install-strip \
871
+ installcheck installcheck-am installdirs installdirs-am \
872
+ maintainer-clean maintainer-clean-generic mostlyclean \
873
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
874
+ tags tags-am uninstall uninstall-am
875
+
876
+
877
+ check-local: test-no-outputdiff
878
+
879
+ test: all
880
+ @(cd tests; ${MAKE} test)
881
+
882
+ test-extended: all
883
+ @(cd tests; ${MAKE} test-extended)
884
+
885
+ valgrind:
886
+ @(cd tests; ${MAKE} valgrind)
887
+
888
+ test-no-outputdiff:
889
+ @(cd tests; ${MAKE} test-no-outputdiff)
890
+
891
+ fedora:
892
+ rm -f ~/rpmbuild/RPMS/x86_64/libmemcached-$(VERSION)*.rpm
893
+ rm -f ~/rpmbuild/SRPMS/libmemcached-$(VERSION)*.rpm
894
+ cp libmemcached-$(VERSION).tar.gz /home/brian/rpmbuild/SOURCES/
895
+ rpmbuild -ba support/libmemcached.spec
896
+ cp ~/rpmbuild/RPMS/x86_64/libmemcached-$(VERSION)*.rpm .
897
+ cp ~/rpmbuild/SRPMS/libmemcached-$(VERSION)*.rpm .
898
+
899
+ generic:
900
+ rm -f ~/rpmbuild/RPMS/x86_64/libmemcached-$(VERSION)*.rpm
901
+ rm -f ~/rpmbuild/SRPMS/libmemcached-$(VERSION)*.rpm
902
+ cp libmemcached-$(VERSION).tar.gz /home/brian/rpmbuild/SOURCES/
903
+ rpmbuild -ba support/libmemcached.spec
904
+ cp ~/rpmbuild/RPMS/x86_64/libmemcached-$(VERSION)*.rpm .
905
+ cp ~/rpmbuild/SRPMS/libmemcached-$(VERSION)*.rpm .
906
+
907
+ rpm: all dist generic fedora
908
+
909
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
910
+ # Otherwise a system limit (for SysV at least) may be exceeded.
911
+ .NOEXPORT: