nutcracker 0.3.0.12 → 0.4.0.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +5 -13
  2. data/README.md +3 -3
  3. data/Rakefile +12 -10
  4. data/ext/nutcracker/Makefile.in +215 -162
  5. data/ext/nutcracker/README.md +16 -4
  6. data/ext/nutcracker/aclocal.m4 +432 -254
  7. data/ext/nutcracker/{contrib/yaml-0.1.4/configure → autom4te.cache/output.0} +11367 -4545
  8. data/ext/nutcracker/autom4te.cache/output.1 +19907 -0
  9. data/ext/nutcracker/autom4te.cache/output.2 +19907 -0
  10. data/ext/nutcracker/autom4te.cache/requests +518 -0
  11. data/ext/nutcracker/autom4te.cache/traces.0 +2715 -0
  12. data/ext/nutcracker/autom4te.cache/traces.1 +967 -0
  13. data/ext/nutcracker/autom4te.cache/traces.2 +2715 -0
  14. data/ext/nutcracker/config/compile +347 -0
  15. data/ext/nutcracker/config/config.guess +116 -78
  16. data/ext/nutcracker/config/config.sub +65 -45
  17. data/ext/nutcracker/config/depcomp +295 -192
  18. data/ext/nutcracker/config/install-sh +7 -7
  19. data/ext/nutcracker/config/ltmain.sh +15 -20
  20. data/ext/nutcracker/config/missing +149 -265
  21. data/ext/nutcracker/configure +493 -367
  22. data/ext/nutcracker/contrib/Makefile.in +158 -116
  23. data/ext/nutcracker/extconf.rb +0 -1
  24. data/ext/nutcracker/m4/libtool.m4 +4 -23
  25. data/ext/nutcracker/m4/ltoptions.m4 +0 -0
  26. data/ext/nutcracker/m4/ltsugar.m4 +0 -0
  27. data/ext/nutcracker/m4/ltversion.m4 +0 -0
  28. data/ext/nutcracker/m4/lt~obsolete.m4 +0 -0
  29. data/ext/nutcracker/notes/recommendation.md +1 -1
  30. data/ext/nutcracker/notes/redis.md +35 -3
  31. data/ext/nutcracker/scripts/benchmark-mget.py +43 -0
  32. data/ext/nutcracker/scripts/nutcracker.spec +61 -3
  33. data/ext/nutcracker/scripts/redis-check.sh +43 -0
  34. data/ext/nutcracker/src/Makefile.in +205 -142
  35. data/ext/nutcracker/src/event/Makefile.in +164 -66
  36. data/ext/nutcracker/src/hashkit/Makefile.in +164 -66
  37. data/ext/nutcracker/src/nc_conf.c +2 -0
  38. data/ext/nutcracker/src/nc_connection.c +31 -0
  39. data/ext/nutcracker/src/nc_connection.h +3 -0
  40. data/ext/nutcracker/src/nc_core.c +38 -2
  41. data/ext/nutcracker/src/nc_core.h +11 -0
  42. data/ext/nutcracker/src/nc_log.c +90 -12
  43. data/ext/nutcracker/src/nc_log.h +11 -0
  44. data/ext/nutcracker/src/nc_mbuf.h +1 -1
  45. data/ext/nutcracker/src/nc_message.c +162 -116
  46. data/ext/nutcracker/src/nc_message.h +161 -129
  47. data/ext/nutcracker/src/nc_proxy.c +34 -4
  48. data/ext/nutcracker/src/nc_request.c +158 -32
  49. data/ext/nutcracker/src/nc_server.c +59 -5
  50. data/ext/nutcracker/src/nc_server.h +1 -0
  51. data/ext/nutcracker/src/nc_signal.c +2 -2
  52. data/ext/nutcracker/src/nc_stats.c +21 -0
  53. data/ext/nutcracker/src/nc_stats.h +28 -26
  54. data/ext/nutcracker/src/nc_string.c +176 -1
  55. data/ext/nutcracker/src/nc_string.h +26 -0
  56. data/ext/nutcracker/src/nc_util.c +12 -0
  57. data/ext/nutcracker/src/nc_util.h +1 -0
  58. data/ext/nutcracker/src/proto/Makefile.in +164 -66
  59. data/ext/nutcracker/src/proto/nc_memcache.c +279 -88
  60. data/ext/nutcracker/src/proto/nc_proto.h +3 -4
  61. data/ext/nutcracker/src/proto/nc_redis.c +561 -134
  62. data/lib/nutcracker/version.rb +1 -1
  63. metadata +31 -67
  64. data/ext/nutcracker/contrib/yaml-0.1.4/LICENSE +0 -19
  65. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.am +0 -20
  66. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.in +0 -736
  67. data/ext/nutcracker/contrib/yaml-0.1.4/README +0 -27
  68. data/ext/nutcracker/contrib/yaml-0.1.4/aclocal.m4 +0 -956
  69. data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in +0 -80
  70. data/ext/nutcracker/contrib/yaml-0.1.4/config/config.guess +0 -1561
  71. data/ext/nutcracker/contrib/yaml-0.1.4/config/config.sub +0 -1686
  72. data/ext/nutcracker/contrib/yaml-0.1.4/config/depcomp +0 -630
  73. data/ext/nutcracker/contrib/yaml-0.1.4/config/install-sh +0 -520
  74. data/ext/nutcracker/contrib/yaml-0.1.4/config/ltmain.sh +0 -8406
  75. data/ext/nutcracker/contrib/yaml-0.1.4/config/missing +0 -376
  76. data/ext/nutcracker/contrib/yaml-0.1.4/configure.ac +0 -75
  77. data/ext/nutcracker/contrib/yaml-0.1.4/doc/doxygen.cfg +0 -222
  78. data/ext/nutcracker/contrib/yaml-0.1.4/include/yaml.h +0 -1971
  79. data/ext/nutcracker/contrib/yaml-0.1.4/m4/libtool.m4 +0 -7357
  80. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltoptions.m4 +0 -368
  81. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltsugar.m4 +0 -123
  82. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltversion.m4 +0 -23
  83. data/ext/nutcracker/contrib/yaml-0.1.4/m4/lt~obsolete.m4 +0 -92
  84. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.am +0 -4
  85. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.in +0 -484
  86. data/ext/nutcracker/contrib/yaml-0.1.4/src/api.c +0 -1392
  87. data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.c +0 -394
  88. data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.c +0 -2329
  89. data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.c +0 -432
  90. data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.c +0 -1374
  91. data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.c +0 -465
  92. data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.c +0 -3570
  93. data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.c +0 -141
  94. data/ext/nutcracker/contrib/yaml-0.1.4/src/yaml_private.h +0 -640
  95. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.am +0 -8
  96. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.in +0 -675
  97. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt.c +0 -800
  98. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor.c +0 -1130
  99. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt.c +0 -217
  100. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter.c +0 -202
  101. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper.c +0 -311
  102. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter.c +0 -327
  103. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader.c +0 -63
  104. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser.c +0 -63
  105. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner.c +0 -63
  106. data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-reader.c +0 -354
  107. data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-version.c +0 -29
@@ -1,9 +1,8 @@
1
- # Makefile.in generated by automake 1.11.3 from Makefile.am.
1
+ # Makefile.in generated by automake 1.14.1 from Makefile.am.
2
2
  # @configure_input@
3
3
 
4
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
- # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6
- # Foundation, Inc.
4
+ # Copyright (C) 1994-2013 Free Software Foundation, Inc.
5
+
7
6
  # This Makefile.in is free software; the Free Software Foundation
8
7
  # gives unlimited permission to copy and/or distribute it,
9
8
  # with or without modifications, as long as this notice is preserved.
@@ -15,6 +14,51 @@
15
14
 
16
15
  @SET_MAKE@
17
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))
18
62
  pkgdatadir = $(datadir)/@PACKAGE@
19
63
  pkgincludedir = $(includedir)/@PACKAGE@
20
64
  pkglibdir = $(libdir)/@PACKAGE@
@@ -34,7 +78,7 @@ POST_UNINSTALL = :
34
78
  build_triplet = @build@
35
79
  host_triplet = @host@
36
80
  subdir = contrib
37
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
81
+ DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
38
82
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
39
83
  am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
40
84
  $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
@@ -46,20 +90,58 @@ mkinstalldirs = $(install_sh) -d
46
90
  CONFIG_HEADER = $(top_builddir)/config.h
47
91
  CONFIG_CLEAN_FILES =
48
92
  CONFIG_CLEAN_VPATH_FILES =
93
+ AM_V_P = $(am__v_P_@AM_V@)
94
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
95
+ am__v_P_0 = false
96
+ am__v_P_1 = :
97
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
98
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
99
+ am__v_GEN_0 = @echo " GEN " $@;
100
+ am__v_GEN_1 =
101
+ AM_V_at = $(am__v_at_@AM_V@)
102
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
103
+ am__v_at_0 = @
104
+ am__v_at_1 =
49
105
  SOURCES =
50
106
  DIST_SOURCES =
51
- RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
52
- html-recursive info-recursive install-data-recursive \
53
- install-dvi-recursive install-exec-recursive \
54
- install-html-recursive install-info-recursive \
55
- install-pdf-recursive install-ps-recursive install-recursive \
56
- installcheck-recursive installdirs-recursive pdf-recursive \
57
- ps-recursive uninstall-recursive
107
+ RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
108
+ ctags-recursive dvi-recursive html-recursive info-recursive \
109
+ install-data-recursive install-dvi-recursive \
110
+ install-exec-recursive install-html-recursive \
111
+ install-info-recursive install-pdf-recursive \
112
+ install-ps-recursive install-recursive installcheck-recursive \
113
+ installdirs-recursive pdf-recursive ps-recursive \
114
+ tags-recursive uninstall-recursive
115
+ am__can_run_installinfo = \
116
+ case $$AM_UPDATE_INFO_DIR in \
117
+ n|no|NO) false;; \
118
+ *) (install-info --version) >/dev/null 2>&1;; \
119
+ esac
58
120
  RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
59
121
  distclean-recursive maintainer-clean-recursive
60
- AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
61
- $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
122
+ am__recursive_targets = \
123
+ $(RECURSIVE_TARGETS) \
124
+ $(RECURSIVE_CLEAN_TARGETS) \
125
+ $(am__extra_recursive_targets)
126
+ AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
62
127
  distdir
128
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
129
+ # Read a list of newline-separated strings from the standard input,
130
+ # and print each of them once, without duplicates. Input order is
131
+ # *not* preserved.
132
+ am__uniquify_input = $(AWK) '\
133
+ BEGIN { nonempty = 0; } \
134
+ { items[$$0] = 1; nonempty = 1; } \
135
+ END { if (nonempty) { for (i in items) print i; }; } \
136
+ '
137
+ # Make sure the list of sources is unique. This is necessary because,
138
+ # e.g., the same source file might be shared among _SOURCES variables
139
+ # for different programs/libraries.
140
+ am__define_uniq_tagged_files = \
141
+ list='$(am__tagged_files)'; \
142
+ unique=`for i in $$list; do \
143
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
144
+ done | $(am__uniquify_input)`
63
145
  ETAGS = etags
64
146
  CTAGS = ctags
65
147
  DIST_SUBDIRS = $(SUBDIRS)
@@ -91,6 +173,7 @@ am__relativize = \
91
173
  reldir="$$dir2"
92
174
  ACLOCAL = @ACLOCAL@
93
175
  AMTAR = @AMTAR@
176
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
94
177
  AR = @AR@
95
178
  AUTOCONF = @AUTOCONF@
96
179
  AUTOHEADER = @AUTOHEADER@
@@ -251,22 +334,25 @@ clean-libtool:
251
334
  -rm -rf .libs _libs
252
335
 
253
336
  # This directory's subdirectories are mostly independent; you can cd
254
- # into them and run `make' without going through this Makefile.
255
- # To change the values of `make' variables: instead of editing Makefiles,
256
- # (1) if the variable is set in `config.status', edit `config.status'
257
- # (which will cause the Makefiles to be regenerated when you run `make');
258
- # (2) otherwise, pass the desired values on the `make' command line.
259
- $(RECURSIVE_TARGETS):
260
- @fail= failcom='exit 1'; \
261
- for f in x $$MAKEFLAGS; do \
262
- case $$f in \
263
- *=* | --[!k]*);; \
264
- *k*) failcom='fail=yes';; \
265
- esac; \
266
- done; \
337
+ # into them and run 'make' without going through this Makefile.
338
+ # To change the values of 'make' variables: instead of editing Makefiles,
339
+ # (1) if the variable is set in 'config.status', edit 'config.status'
340
+ # (which will cause the Makefiles to be regenerated when you run 'make');
341
+ # (2) otherwise, pass the desired values on the 'make' command line.
342
+ $(am__recursive_targets):
343
+ @fail=; \
344
+ if $(am__make_keepgoing); then \
345
+ failcom='fail=yes'; \
346
+ else \
347
+ failcom='exit 1'; \
348
+ fi; \
267
349
  dot_seen=no; \
268
350
  target=`echo $@ | sed s/-recursive//`; \
269
- list='$(SUBDIRS)'; for subdir in $$list; do \
351
+ case "$@" in \
352
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
353
+ *) list='$(SUBDIRS)' ;; \
354
+ esac; \
355
+ for subdir in $$list; do \
270
356
  echo "Making $$target in $$subdir"; \
271
357
  if test "$$subdir" = "."; then \
272
358
  dot_seen=yes; \
@@ -281,57 +367,12 @@ $(RECURSIVE_TARGETS):
281
367
  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
282
368
  fi; test -z "$$fail"
283
369
 
284
- $(RECURSIVE_CLEAN_TARGETS):
285
- @fail= failcom='exit 1'; \
286
- for f in x $$MAKEFLAGS; do \
287
- case $$f in \
288
- *=* | --[!k]*);; \
289
- *k*) failcom='fail=yes';; \
290
- esac; \
291
- done; \
292
- dot_seen=no; \
293
- case "$@" in \
294
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
295
- *) list='$(SUBDIRS)' ;; \
296
- esac; \
297
- rev=''; for subdir in $$list; do \
298
- if test "$$subdir" = "."; then :; else \
299
- rev="$$subdir $$rev"; \
300
- fi; \
301
- done; \
302
- rev="$$rev ."; \
303
- target=`echo $@ | sed s/-recursive//`; \
304
- for subdir in $$rev; do \
305
- echo "Making $$target in $$subdir"; \
306
- if test "$$subdir" = "."; then \
307
- local_target="$$target-am"; \
308
- else \
309
- local_target="$$target"; \
310
- fi; \
311
- ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
312
- || eval $$failcom; \
313
- done && test -z "$$fail"
314
- tags-recursive:
315
- list='$(SUBDIRS)'; for subdir in $$list; do \
316
- test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
317
- done
318
- ctags-recursive:
319
- list='$(SUBDIRS)'; for subdir in $$list; do \
320
- test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
321
- done
370
+ ID: $(am__tagged_files)
371
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
372
+ tags: tags-recursive
373
+ TAGS: tags
322
374
 
323
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
324
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
325
- unique=`for i in $$list; do \
326
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
327
- done | \
328
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
329
- END { if (nonempty) { for (i in files) print i; }; }'`; \
330
- mkid -fID $$unique
331
- tags: TAGS
332
-
333
- TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
334
- $(TAGS_FILES) $(LISP)
375
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
335
376
  set x; \
336
377
  here=`pwd`; \
337
378
  if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
@@ -347,12 +388,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
347
388
  set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
348
389
  fi; \
349
390
  done; \
350
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
351
- unique=`for i in $$list; do \
352
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
353
- done | \
354
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
355
- END { if (nonempty) { for (i in files) print i; }; }'`; \
391
+ $(am__define_uniq_tagged_files); \
356
392
  shift; \
357
393
  if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
358
394
  test -n "$$unique" || unique=$$empty_fix; \
@@ -364,15 +400,11 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
364
400
  $$unique; \
365
401
  fi; \
366
402
  fi
367
- ctags: CTAGS
368
- CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
369
- $(TAGS_FILES) $(LISP)
370
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
371
- unique=`for i in $$list; do \
372
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
373
- done | \
374
- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
375
- END { if (nonempty) { for (i in files) print i; }; }'`; \
403
+ ctags: ctags-recursive
404
+
405
+ CTAGS: ctags
406
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
407
+ $(am__define_uniq_tagged_files); \
376
408
  test -z "$(CTAGS_ARGS)$$unique" \
377
409
  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
378
410
  $$unique
@@ -381,6 +413,21 @@ GTAGS:
381
413
  here=`$(am__cd) $(top_builddir) && pwd` \
382
414
  && $(am__cd) $(top_srcdir) \
383
415
  && gtags -i $(GTAGS_ARGS) "$$here"
416
+ cscopelist: cscopelist-recursive
417
+
418
+ cscopelist-am: $(am__tagged_files)
419
+ list='$(am__tagged_files)'; \
420
+ case "$(srcdir)" in \
421
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
422
+ *) sdir=$(subdir)/$(srcdir) ;; \
423
+ esac; \
424
+ for i in $$list; do \
425
+ if test -f "$$i"; then \
426
+ echo "$(subdir)/$$i"; \
427
+ else \
428
+ echo "$$sdir/$$i"; \
429
+ fi; \
430
+ done >> $(top_builddir)/cscope.files
384
431
 
385
432
  distclean-tags:
386
433
  -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
@@ -417,13 +464,10 @@ distdir: $(DISTFILES)
417
464
  done
418
465
  @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
419
466
  if test "$$subdir" = .; then :; else \
420
- test -d "$(distdir)/$$subdir" \
421
- || $(MKDIR_P) "$(distdir)/$$subdir" \
422
- || exit 1; \
423
- fi; \
424
- done
425
- @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
426
- if test "$$subdir" = .; then :; else \
467
+ $(am__make_dryrun) \
468
+ || test -d "$(distdir)/$$subdir" \
469
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
470
+ || exit 1; \
427
471
  dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
428
472
  $(am__relativize); \
429
473
  new_distdir=$$reldir; \
@@ -544,22 +588,20 @@ ps-am:
544
588
 
545
589
  uninstall-am:
546
590
 
547
- .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
548
- install-am install-strip tags-recursive
549
-
550
- .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
551
- all all-am check check-am clean clean-generic clean-libtool \
552
- ctags ctags-recursive distclean distclean-generic \
553
- distclean-libtool distclean-tags distdir dvi dvi-am html \
554
- html-am info info-am install install-am install-data \
555
- install-data-am install-dvi install-dvi-am install-exec \
556
- install-exec-am install-html install-html-am install-info \
557
- install-info-am install-man install-pdf install-pdf-am \
558
- install-ps install-ps-am install-strip installcheck \
559
- installcheck-am installdirs installdirs-am maintainer-clean \
560
- maintainer-clean-generic mostlyclean mostlyclean-generic \
561
- mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
562
- uninstall uninstall-am
591
+ .MAKE: $(am__recursive_targets) install-am install-strip
592
+
593
+ .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
594
+ check-am clean clean-generic clean-libtool cscopelist-am ctags \
595
+ ctags-am distclean distclean-generic distclean-libtool \
596
+ distclean-tags distdir dvi dvi-am html html-am info info-am \
597
+ install install-am install-data install-data-am install-dvi \
598
+ install-dvi-am install-exec install-exec-am install-html \
599
+ install-html-am install-info install-info-am install-man \
600
+ install-pdf install-pdf-am install-ps install-ps-am \
601
+ install-strip installcheck installcheck-am installdirs \
602
+ installdirs-am maintainer-clean maintainer-clean-generic \
603
+ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
604
+ ps ps-am tags tags-am uninstall uninstall-am
563
605
 
564
606
 
565
607
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
@@ -1,5 +1,4 @@
1
1
 
2
- #raise "no support for #{RUBY_PLATFORM}" if RUBY_PLATFORM =~ /darwin|mswin|mingw/
3
2
  system "./configure --prefix=#{File.expand_path('..',__FILE__)}"
4
3
  system 'make'
5
4
 
@@ -2684,18 +2684,6 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu)
2684
2684
  dynamic_linker='GNU/Linux ld.so'
2685
2685
  ;;
2686
2686
 
2687
- netbsdelf*-gnu)
2688
- version_type=linux
2689
- need_lib_prefix=no
2690
- need_version=no
2691
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
2692
- soname_spec='${libname}${release}${shared_ext}$major'
2693
- shlibpath_var=LD_LIBRARY_PATH
2694
- shlibpath_overrides_runpath=no
2695
- hardcode_into_libs=yes
2696
- dynamic_linker='NetBSD ld.elf_so'
2697
- ;;
2698
-
2699
2687
  netbsd*)
2700
2688
  version_type=sunos
2701
2689
  need_lib_prefix=no
@@ -3301,7 +3289,7 @@ linux* | k*bsd*-gnu | kopensolaris*-gnu)
3301
3289
  lt_cv_deplibs_check_method=pass_all
3302
3290
  ;;
3303
3291
 
3304
- netbsd* | netbsdelf*-gnu)
3292
+ netbsd*)
3305
3293
  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
3306
3294
  lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
3307
3295
  else
@@ -4113,7 +4101,7 @@ m4_if([$1], [CXX], [
4113
4101
  ;;
4114
4102
  esac
4115
4103
  ;;
4116
- netbsd* | netbsdelf*-gnu)
4104
+ netbsd*)
4117
4105
  ;;
4118
4106
  *qnx* | *nto*)
4119
4107
  # QNX uses GNU C++, but need to define -shared option too, otherwise
@@ -4590,9 +4578,6 @@ m4_if([$1], [CXX], [
4590
4578
  ;;
4591
4579
  esac
4592
4580
  ;;
4593
- linux* | k*bsd*-gnu | gnu*)
4594
- _LT_TAGVAR(link_all_deplibs, $1)=no
4595
- ;;
4596
4581
  *)
4597
4582
  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
4598
4583
  ;;
@@ -4655,9 +4640,6 @@ dnl Note also adjust exclude_expsyms for C++ above.
4655
4640
  openbsd*)
4656
4641
  with_gnu_ld=no
4657
4642
  ;;
4658
- linux* | k*bsd*-gnu | gnu*)
4659
- _LT_TAGVAR(link_all_deplibs, $1)=no
4660
- ;;
4661
4643
  esac
4662
4644
 
4663
4645
  _LT_TAGVAR(ld_shlibs, $1)=yes
@@ -4879,7 +4861,7 @@ _LT_EOF
4879
4861
  fi
4880
4862
  ;;
4881
4863
 
4882
- netbsd* | netbsdelf*-gnu)
4864
+ netbsd*)
4883
4865
  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
4884
4866
  _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
4885
4867
  wlarc=
@@ -5056,7 +5038,6 @@ _LT_EOF
5056
5038
  if test "$aix_use_runtimelinking" = yes; then
5057
5039
  shared_flag="$shared_flag "'${wl}-G'
5058
5040
  fi
5059
- _LT_TAGVAR(link_all_deplibs, $1)=no
5060
5041
  else
5061
5042
  # not using gcc
5062
5043
  if test "$host_cpu" = ia64; then
@@ -5361,7 +5342,7 @@ _LT_EOF
5361
5342
  _LT_TAGVAR(link_all_deplibs, $1)=yes
5362
5343
  ;;
5363
5344
 
5364
- netbsd* | netbsdelf*-gnu)
5345
+ netbsd*)
5365
5346
  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
5366
5347
  _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
5367
5348
  else
File without changes
File without changes
File without changes