nutcracker 0.4.0.16 → 0.4.1.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +3 -3
  3. data/ext/nutcracker/ChangeLog +33 -8
  4. data/ext/nutcracker/Makefile.in +34 -21
  5. data/ext/nutcracker/README.md +61 -26
  6. data/ext/nutcracker/aclocal.m4 +34 -31
  7. data/ext/nutcracker/autom4te.cache/output.0 +1875 -1330
  8. data/ext/nutcracker/autom4te.cache/output.1 +1875 -1330
  9. data/ext/nutcracker/autom4te.cache/requests +232 -451
  10. data/ext/nutcracker/autom4te.cache/traces.0 +2256 -2129
  11. data/ext/nutcracker/autom4te.cache/traces.1 +73 -59
  12. data/ext/nutcracker/config.h.in +1 -2
  13. data/ext/nutcracker/config.h.in~ +333 -0
  14. data/ext/nutcracker/config/compile +1 -1
  15. data/ext/nutcracker/config/config.guess +13 -160
  16. data/ext/nutcracker/config/config.sub +25 -11
  17. data/ext/nutcracker/config/depcomp +1 -1
  18. data/ext/nutcracker/config/install-sh +170 -196
  19. data/ext/nutcracker/config/ltmain.sh +3509 -2018
  20. data/ext/nutcracker/config/missing +1 -1
  21. data/ext/nutcracker/configure +1874 -1329
  22. data/ext/nutcracker/configure.ac +3 -2
  23. data/ext/nutcracker/contrib/Makefile.in +18 -5
  24. data/ext/nutcracker/contrib/yaml-0.1.4/LICENSE +19 -0
  25. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.am +20 -0
  26. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.in +832 -0
  27. data/ext/nutcracker/contrib/yaml-0.1.4/README +27 -0
  28. data/ext/nutcracker/contrib/yaml-0.1.4/aclocal.m4 +1157 -0
  29. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.0 +13342 -0
  30. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.1 +14611 -0
  31. data/ext/nutcracker/{autom4te.cache → contrib/yaml-0.1.4/autom4te.cache}/output.2 +3465 -8761
  32. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/requests +516 -0
  33. data/ext/nutcracker/{autom4te.cache/traces.2 → contrib/yaml-0.1.4/autom4te.cache/traces.0} +662 -698
  34. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.1 +577 -0
  35. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.2 +2721 -0
  36. data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in +79 -0
  37. data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in~ +80 -0
  38. data/ext/nutcracker/contrib/yaml-0.1.4/config/compile +347 -0
  39. data/ext/nutcracker/contrib/yaml-0.1.4/config/config.guess +1421 -0
  40. data/ext/nutcracker/contrib/yaml-0.1.4/config/config.sub +1807 -0
  41. data/ext/nutcracker/contrib/yaml-0.1.4/config/depcomp +791 -0
  42. data/ext/nutcracker/contrib/yaml-0.1.4/config/install-sh +501 -0
  43. data/ext/nutcracker/contrib/yaml-0.1.4/config/ltmain.sh +11147 -0
  44. data/ext/nutcracker/contrib/yaml-0.1.4/config/missing +215 -0
  45. data/ext/nutcracker/contrib/yaml-0.1.4/config/test-driver +148 -0
  46. data/ext/nutcracker/contrib/yaml-0.1.4/configure +14611 -0
  47. data/ext/nutcracker/contrib/yaml-0.1.4/configure.ac +75 -0
  48. data/ext/nutcracker/contrib/yaml-0.1.4/doc/doxygen.cfg +222 -0
  49. data/ext/nutcracker/contrib/yaml-0.1.4/include/yaml.h +1971 -0
  50. data/ext/nutcracker/contrib/yaml-0.1.4/m4/libtool.m4 +8369 -0
  51. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltoptions.m4 +437 -0
  52. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltsugar.m4 +124 -0
  53. data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltversion.m4 +23 -0
  54. data/ext/nutcracker/contrib/yaml-0.1.4/m4/lt~obsolete.m4 +99 -0
  55. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.am +4 -0
  56. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.in +600 -0
  57. data/ext/nutcracker/contrib/yaml-0.1.4/src/api.c +1392 -0
  58. data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.c +394 -0
  59. data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.c +2329 -0
  60. data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.c +432 -0
  61. data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.c +1374 -0
  62. data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.c +465 -0
  63. data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.c +3570 -0
  64. data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.c +141 -0
  65. data/ext/nutcracker/contrib/yaml-0.1.4/src/yaml_private.h +640 -0
  66. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.am +8 -0
  67. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.in +1083 -0
  68. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt.c +800 -0
  69. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor.c +1130 -0
  70. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt.c +217 -0
  71. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter.c +202 -0
  72. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper.c +311 -0
  73. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter.c +327 -0
  74. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader.c +63 -0
  75. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser.c +63 -0
  76. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner.c +63 -0
  77. data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-reader.c +354 -0
  78. data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-version.c +29 -0
  79. data/ext/nutcracker/m4/libtool.m4 +1474 -1087
  80. data/ext/nutcracker/m4/ltoptions.m4 +90 -37
  81. data/ext/nutcracker/m4/ltsugar.m4 +4 -3
  82. data/ext/nutcracker/m4/ltversion.m4 +6 -6
  83. data/ext/nutcracker/m4/lt~obsolete.m4 +4 -3
  84. data/ext/nutcracker/man/nutcracker.8 +1 -1
  85. data/ext/nutcracker/notes/memcache.md +162 -0
  86. data/ext/nutcracker/notes/recommendation.md +10 -5
  87. data/ext/nutcracker/notes/redis.md +23 -9
  88. data/ext/nutcracker/scripts/nutcracker.init +10 -0
  89. data/ext/nutcracker/scripts/nutcracker.init.debian +83 -0
  90. data/ext/nutcracker/scripts/nutcracker.spec +36 -2
  91. data/ext/nutcracker/scripts/redis-check.sh +4 -0
  92. data/ext/nutcracker/src/Makefile.am +6 -1
  93. data/ext/nutcracker/src/Makefile.in +26 -12
  94. data/ext/nutcracker/src/event/Makefile.in +19 -6
  95. data/ext/nutcracker/src/hashkit/Makefile.in +19 -6
  96. data/ext/nutcracker/src/hashkit/nc_jenkins.c +1 -1
  97. data/ext/nutcracker/src/hashkit/nc_ketama.c +3 -3
  98. data/ext/nutcracker/src/nc.c +1 -1
  99. data/ext/nutcracker/src/nc_conf.c +67 -19
  100. data/ext/nutcracker/src/nc_conf.h +9 -4
  101. data/ext/nutcracker/src/nc_connection.c +35 -2
  102. data/ext/nutcracker/src/nc_connection.h +53 -47
  103. data/ext/nutcracker/src/nc_core.c +8 -1
  104. data/ext/nutcracker/src/nc_message.c +23 -7
  105. data/ext/nutcracker/src/nc_message.h +24 -1
  106. data/ext/nutcracker/src/nc_proxy.c +14 -3
  107. data/ext/nutcracker/src/nc_rbtree.c +1 -5
  108. data/ext/nutcracker/src/nc_request.c +58 -10
  109. data/ext/nutcracker/src/nc_response.c +27 -4
  110. data/ext/nutcracker/src/nc_server.c +33 -5
  111. data/ext/nutcracker/src/nc_server.h +10 -9
  112. data/ext/nutcracker/src/nc_string.h +17 -0
  113. data/ext/nutcracker/src/nc_util.c +5 -1
  114. data/ext/nutcracker/src/proto/Makefile.in +19 -6
  115. data/ext/nutcracker/src/proto/nc_memcache.c +76 -12
  116. data/ext/nutcracker/src/proto/nc_proto.h +9 -0
  117. data/ext/nutcracker/src/proto/nc_redis.c +400 -18
  118. data/lib/nutcracker.rb +1 -1
  119. data/lib/nutcracker/version.rb +1 -1
  120. metadata +61 -6
  121. data/ext/nutcracker/notes/memcache.txt +0 -123
@@ -1,8 +1,8 @@
1
- m4trace:aclocal.m4:1150: -1- m4_include([m4/libtool.m4])
2
- m4trace:aclocal.m4:1151: -1- m4_include([m4/ltoptions.m4])
3
- m4trace:aclocal.m4:1152: -1- m4_include([m4/ltsugar.m4])
4
- m4trace:aclocal.m4:1153: -1- m4_include([m4/ltversion.m4])
5
- m4trace:aclocal.m4:1154: -1- m4_include([m4/lt~obsolete.m4])
1
+ m4trace:aclocal.m4:1153: -1- m4_include([m4/libtool.m4])
2
+ m4trace:aclocal.m4:1154: -1- m4_include([m4/ltoptions.m4])
3
+ m4trace:aclocal.m4:1155: -1- m4_include([m4/ltsugar.m4])
4
+ m4trace:aclocal.m4:1156: -1- m4_include([m4/ltversion.m4])
5
+ m4trace:aclocal.m4:1157: -1- m4_include([m4/lt~obsolete.m4])
6
6
  m4trace:configure.ac:9: -1- AC_INIT([nutcracker], [NC_MAJOR.NC_MINOR.NC_PATCH], [NC_BUGS])
7
7
  m4trace:configure.ac:9: -1- m4_pattern_forbid([^_?A[CHUM]_])
8
8
  m4trace:configure.ac:9: -1- m4_pattern_forbid([_AC_])
@@ -155,7 +155,7 @@ m4trace:configure.ac:11: -1- AC_CONFIG_AUX_DIR([config])
155
155
  m4trace:configure.ac:12: -1- AC_CONFIG_HEADERS([config.h:config.h.in])
156
156
  m4trace:configure.ac:16: -1- AM_INIT_AUTOMAKE([1.9 foreign])
157
157
  m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
158
- m4trace:configure.ac:16: -1- AM_AUTOMAKE_VERSION([1.14.1])
158
+ m4trace:configure.ac:16: -1- AM_AUTOMAKE_VERSION([1.15])
159
159
  m4trace:configure.ac:16: -1- AC_REQUIRE_AUX_FILE([install-sh])
160
160
  m4trace:configure.ac:16: -1- AC_SUBST([INSTALL_PROGRAM])
161
161
  m4trace:configure.ac:16: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
@@ -404,7 +404,7 @@ m4trace:configure.ac:35: -1- AC_SUBST_TRACE([RANLIB])
404
404
  m4trace:configure.ac:35: -1- m4_pattern_allow([^RANLIB$])
405
405
  m4trace:configure.ac:36: -1- AC_PROG_LIBTOOL
406
406
  m4trace:configure.ac:36: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
407
- You should run autoupdate.], [m4/libtool.m4:107: AC_PROG_LIBTOOL is expanded from...
407
+ You should run autoupdate.], [m4/libtool.m4:99: AC_PROG_LIBTOOL is expanded from...
408
408
  configure.ac:36: the top level])
409
409
  m4trace:configure.ac:36: -1- LT_INIT
410
410
  m4trace:configure.ac:36: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
@@ -498,8 +498,7 @@ m4trace:configure.ac:36: -1- m4_pattern_allow([^RANLIB$])
498
498
  m4trace:configure.ac:36: -1- m4_pattern_allow([LT_OBJDIR])
499
499
  m4trace:configure.ac:36: -1- AC_DEFINE_TRACE_LITERAL([LT_OBJDIR])
500
500
  m4trace:configure.ac:36: -1- m4_pattern_allow([^LT_OBJDIR$])
501
- m4trace:configure.ac:36: -1- AH_OUTPUT([LT_OBJDIR], [/* Define to the sub-directory in which libtool stores uninstalled libraries.
502
- */
501
+ m4trace:configure.ac:36: -1- AH_OUTPUT([LT_OBJDIR], [/* Define to the sub-directory where libtool stores uninstalled libraries. */
503
502
  @%:@undef LT_OBJDIR])
504
503
  m4trace:configure.ac:36: -1- LT_SUPPORTED_TAG([CC])
505
504
  m4trace:configure.ac:36: -1- AC_SUBST([MANIFEST_TOOL])
@@ -520,6 +519,9 @@ m4trace:configure.ac:36: -1- m4_pattern_allow([^OTOOL$])
520
519
  m4trace:configure.ac:36: -1- AC_SUBST([OTOOL64])
521
520
  m4trace:configure.ac:36: -1- AC_SUBST_TRACE([OTOOL64])
522
521
  m4trace:configure.ac:36: -1- m4_pattern_allow([^OTOOL64$])
522
+ m4trace:configure.ac:36: -1- AC_SUBST([LT_SYS_LIBRARY_PATH])
523
+ m4trace:configure.ac:36: -1- AC_SUBST_TRACE([LT_SYS_LIBRARY_PATH])
524
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
523
525
  m4trace:configure.ac:36: -1- AH_OUTPUT([HAVE_DLFCN_H], [/* Define to 1 if you have the <dlfcn.h> header file. */
524
526
  @%:@undef HAVE_DLFCN_H])
525
527
  m4trace:configure.ac:36: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
@@ -559,6 +561,9 @@ m4trace:configure.ac:36: -1- m4_pattern_allow([^CXXCPP$])
559
561
  m4trace:configure.ac:36: -1- AC_SUBST([LD])
560
562
  m4trace:configure.ac:36: -1- AC_SUBST_TRACE([LD])
561
563
  m4trace:configure.ac:36: -1- m4_pattern_allow([^LD$])
564
+ m4trace:configure.ac:36: -1- AC_SUBST([LT_SYS_LIBRARY_PATH])
565
+ m4trace:configure.ac:36: -1- AC_SUBST_TRACE([LT_SYS_LIBRARY_PATH])
566
+ m4trace:configure.ac:36: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
562
567
  m4trace:configure.ac:39: -1- AH_OUTPUT([inline], [/* Define to `__inline__\' or `__inline\' if that\'s what the C compiler
563
568
  calls it, or to nothing if \'inline\' is not supported under any name. */
564
569
  #ifndef __cplusplus
@@ -904,64 +909,73 @@ m4trace:configure.ac:160: -1- AC_SUBST_TRACE([OS_SOLARIS_FALSE])
904
909
  m4trace:configure.ac:160: -1- m4_pattern_allow([^OS_SOLARIS_FALSE$])
905
910
  m4trace:configure.ac:160: -1- _AM_SUBST_NOTMAKE([OS_SOLARIS_TRUE])
906
911
  m4trace:configure.ac:160: -1- _AM_SUBST_NOTMAKE([OS_SOLARIS_FALSE])
907
- m4trace:configure.ac:182: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASSERT_PANIC])
908
- m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_ASSERT_PANIC$])
909
- m4trace:configure.ac:182: -1- AH_OUTPUT([HAVE_ASSERT_PANIC], [/* Define to 1 if panic on an assert is enabled */
912
+ m4trace:configure.ac:161: -1- AM_CONDITIONAL([OS_FREEBSD], [test "$(uname -v | cut -c 1-10)" == "FreeBSD 10"])
913
+ m4trace:configure.ac:161: -1- AC_SUBST([OS_FREEBSD_TRUE])
914
+ m4trace:configure.ac:161: -1- AC_SUBST_TRACE([OS_FREEBSD_TRUE])
915
+ m4trace:configure.ac:161: -1- m4_pattern_allow([^OS_FREEBSD_TRUE$])
916
+ m4trace:configure.ac:161: -1- AC_SUBST([OS_FREEBSD_FALSE])
917
+ m4trace:configure.ac:161: -1- AC_SUBST_TRACE([OS_FREEBSD_FALSE])
918
+ m4trace:configure.ac:161: -1- m4_pattern_allow([^OS_FREEBSD_FALSE$])
919
+ m4trace:configure.ac:161: -1- _AM_SUBST_NOTMAKE([OS_FREEBSD_TRUE])
920
+ m4trace:configure.ac:161: -1- _AM_SUBST_NOTMAKE([OS_FREEBSD_FALSE])
921
+ m4trace:configure.ac:183: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASSERT_PANIC])
922
+ m4trace:configure.ac:183: -1- m4_pattern_allow([^HAVE_ASSERT_PANIC$])
923
+ m4trace:configure.ac:183: -1- AH_OUTPUT([HAVE_ASSERT_PANIC], [/* Define to 1 if panic on an assert is enabled */
910
924
  @%:@undef HAVE_ASSERT_PANIC])
911
- m4trace:configure.ac:182: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DEBUG_LOG])
912
- m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
913
- m4trace:configure.ac:182: -1- AH_OUTPUT([HAVE_DEBUG_LOG], [/* Define to 1 if debug log is enabled */
925
+ m4trace:configure.ac:183: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DEBUG_LOG])
926
+ m4trace:configure.ac:183: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
927
+ m4trace:configure.ac:183: -1- AH_OUTPUT([HAVE_DEBUG_LOG], [/* Define to 1 if debug log is enabled */
914
928
  @%:@undef HAVE_DEBUG_LOG])
915
- m4trace:configure.ac:182: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASSERT_LOG])
916
- m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_ASSERT_LOG$])
917
- m4trace:configure.ac:182: -1- AH_OUTPUT([HAVE_ASSERT_LOG], [/* Define to 1 if log on an assert is enabled */
929
+ m4trace:configure.ac:183: -1- AC_DEFINE_TRACE_LITERAL([HAVE_ASSERT_LOG])
930
+ m4trace:configure.ac:183: -1- m4_pattern_allow([^HAVE_ASSERT_LOG$])
931
+ m4trace:configure.ac:183: -1- AH_OUTPUT([HAVE_ASSERT_LOG], [/* Define to 1 if log on an assert is enabled */
918
932
  @%:@undef HAVE_ASSERT_LOG])
919
- m4trace:configure.ac:182: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DEBUG_LOG])
920
- m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
921
- m4trace:configure.ac:182: -1- AH_OUTPUT([HAVE_DEBUG_LOG], [/* Define to 1 if debug log is enabled */
933
+ m4trace:configure.ac:183: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DEBUG_LOG])
934
+ m4trace:configure.ac:183: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
935
+ m4trace:configure.ac:183: -1- AH_OUTPUT([HAVE_DEBUG_LOG], [/* Define to 1 if debug log is enabled */
922
936
  @%:@undef HAVE_DEBUG_LOG])
923
- m4trace:configure.ac:182: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DEBUG_LOG])
924
- m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
925
- m4trace:configure.ac:182: -1- AH_OUTPUT([HAVE_DEBUG_LOG], [/* Define to 1 if debug log is enabled */
937
+ m4trace:configure.ac:183: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DEBUG_LOG])
938
+ m4trace:configure.ac:183: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
939
+ m4trace:configure.ac:183: -1- AH_OUTPUT([HAVE_DEBUG_LOG], [/* Define to 1 if debug log is enabled */
926
940
  @%:@undef HAVE_DEBUG_LOG])
927
- m4trace:configure.ac:195: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STATS])
928
- m4trace:configure.ac:195: -1- m4_pattern_allow([^HAVE_STATS$])
929
- m4trace:configure.ac:195: -1- AH_OUTPUT([HAVE_STATS], [/* Define to 1 if stats is not disabled */
941
+ m4trace:configure.ac:196: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STATS])
942
+ m4trace:configure.ac:196: -1- m4_pattern_allow([^HAVE_STATS$])
943
+ m4trace:configure.ac:196: -1- AH_OUTPUT([HAVE_STATS], [/* Define to 1 if stats is not disabled */
930
944
  @%:@undef HAVE_STATS])
931
- m4trace:configure.ac:202: -1- AC_CONFIG_SUBDIRS([contrib/yaml-0.1.4])
932
- m4trace:configure.ac:202: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([contrib/yaml-0.1.4])"])
933
- m4trace:configure.ac:202: -1- AC_SUBST_TRACE([subdirs])
934
- m4trace:configure.ac:202: -1- m4_pattern_allow([^subdirs$])
935
- m4trace:configure.ac:210: -1- AC_CONFIG_FILES([Makefile
945
+ m4trace:configure.ac:203: -1- AC_CONFIG_SUBDIRS([contrib/yaml-0.1.4])
946
+ m4trace:configure.ac:203: -1- AC_SUBST([subdirs], ["$subdirs m4_normalize([contrib/yaml-0.1.4])"])
947
+ m4trace:configure.ac:203: -1- AC_SUBST_TRACE([subdirs])
948
+ m4trace:configure.ac:203: -1- m4_pattern_allow([^subdirs$])
949
+ m4trace:configure.ac:211: -1- AC_CONFIG_FILES([Makefile
936
950
  contrib/Makefile
937
951
  src/Makefile
938
952
  src/hashkit/Makefile
939
953
  src/proto/Makefile
940
954
  src/event/Makefile])
941
- m4trace:configure.ac:213: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
942
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
943
- m4trace:configure.ac:213: -1- m4_pattern_allow([^LIB@&t@OBJS$])
944
- m4trace:configure.ac:213: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
945
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([LTLIBOBJS])
946
- m4trace:configure.ac:213: -1- m4_pattern_allow([^LTLIBOBJS$])
947
- m4trace:configure.ac:213: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
948
- m4trace:configure.ac:213: -1- AC_SUBST([am__EXEEXT_TRUE])
949
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
950
- m4trace:configure.ac:213: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
951
- m4trace:configure.ac:213: -1- AC_SUBST([am__EXEEXT_FALSE])
952
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
953
- m4trace:configure.ac:213: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
954
- m4trace:configure.ac:213: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
955
- m4trace:configure.ac:213: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
956
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([top_builddir])
957
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([top_build_prefix])
958
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([srcdir])
959
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([abs_srcdir])
960
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([top_srcdir])
961
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([abs_top_srcdir])
962
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([builddir])
963
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([abs_builddir])
964
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([abs_top_builddir])
965
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([INSTALL])
966
- m4trace:configure.ac:213: -1- AC_SUBST_TRACE([MKDIR_P])
967
- m4trace:configure.ac:213: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
955
+ m4trace:configure.ac:214: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
956
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
957
+ m4trace:configure.ac:214: -1- m4_pattern_allow([^LIB@&t@OBJS$])
958
+ m4trace:configure.ac:214: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
959
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([LTLIBOBJS])
960
+ m4trace:configure.ac:214: -1- m4_pattern_allow([^LTLIBOBJS$])
961
+ m4trace:configure.ac:214: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
962
+ m4trace:configure.ac:214: -1- AC_SUBST([am__EXEEXT_TRUE])
963
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
964
+ m4trace:configure.ac:214: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
965
+ m4trace:configure.ac:214: -1- AC_SUBST([am__EXEEXT_FALSE])
966
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
967
+ m4trace:configure.ac:214: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
968
+ m4trace:configure.ac:214: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
969
+ m4trace:configure.ac:214: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
970
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([top_builddir])
971
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([top_build_prefix])
972
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([srcdir])
973
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([abs_srcdir])
974
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([top_srcdir])
975
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([abs_top_srcdir])
976
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([builddir])
977
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([abs_builddir])
978
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([abs_top_builddir])
979
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([INSTALL])
980
+ m4trace:configure.ac:214: -1- AC_SUBST_TRACE([MKDIR_P])
981
+ m4trace:configure.ac:214: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
@@ -188,8 +188,7 @@
188
188
  /* Define to 1 if the system has the type `_Bool'. */
189
189
  #undef HAVE__BOOL
190
190
 
191
- /* Define to the sub-directory in which libtool stores uninstalled libraries.
192
- */
191
+ /* Define to the sub-directory where libtool stores uninstalled libraries. */
193
192
  #undef LT_OBJDIR
194
193
 
195
194
  /* Define the major version number */
@@ -0,0 +1,333 @@
1
+ /* config.h.in. Generated from configure.ac by autoheader. */
2
+
3
+ /* Define to 1 if you have the <arpa/inet.h> header file. */
4
+ #undef HAVE_ARPA_INET_H
5
+
6
+ /* Define to 1 if log on an assert is enabled */
7
+ #undef HAVE_ASSERT_LOG
8
+
9
+ /* Define to 1 if panic on an assert is enabled */
10
+ #undef HAVE_ASSERT_PANIC
11
+
12
+ /* Define to 1 if backtrace is supported */
13
+ #undef HAVE_BACKTRACE
14
+
15
+ /* Define to 1 if debug log is enabled */
16
+ #undef HAVE_DEBUG_LOG
17
+
18
+ /* Define to 1 if you have the <dlfcn.h> header file. */
19
+ #undef HAVE_DLFCN_H
20
+
21
+ /* Define to 1 if you have the `dup2' function. */
22
+ #undef HAVE_DUP2
23
+
24
+ /* Define to 1 if epoll is supported */
25
+ #undef HAVE_EPOLL
26
+
27
+ /* Define to 1 if event ports is supported */
28
+ #undef HAVE_EVENT_PORTS
29
+
30
+ /* Define to 1 if you have the <execinfo.h> header file. */
31
+ #undef HAVE_EXECINFO_H
32
+
33
+ /* Define to 1 if you have the <fcntl.h> header file. */
34
+ #undef HAVE_FCNTL_H
35
+
36
+ /* Define to 1 if you have the <float.h> header file. */
37
+ #undef HAVE_FLOAT_H
38
+
39
+ /* Define to 1 if you have the `fork' function. */
40
+ #undef HAVE_FORK
41
+
42
+ /* Define to 1 if you have the `gethostname' function. */
43
+ #undef HAVE_GETHOSTNAME
44
+
45
+ /* Define to 1 if you have the `gettimeofday' function. */
46
+ #undef HAVE_GETTIMEOFDAY
47
+
48
+ /* Define to 1 if the system has the type `intmax_t'. */
49
+ #undef HAVE_INTMAX_T
50
+
51
+ /* Define to 1 if the system has the type `intptr_t'. */
52
+ #undef HAVE_INTPTR_T
53
+
54
+ /* Define to 1 if you have the <inttypes.h> header file. */
55
+ #undef HAVE_INTTYPES_H
56
+
57
+ /* Define to 1 if kqueue is supported */
58
+ #undef HAVE_KQUEUE
59
+
60
+ /* Define to 1 if you have the `m' library (-lm). */
61
+ #undef HAVE_LIBM
62
+
63
+ /* Define to 1 if you have the `pthread' library (-lpthread). */
64
+ #undef HAVE_LIBPTHREAD
65
+
66
+ /* Define to 1 if you have the <limits.h> header file. */
67
+ #undef HAVE_LIMITS_H
68
+
69
+ /* Define to 1 if machine is little endian */
70
+ #undef HAVE_LITTLE_ENDIAN
71
+
72
+ /* Define to 1 if the system has the type `long long int'. */
73
+ #undef HAVE_LONG_LONG_INT
74
+
75
+ /* Define to 1 if your system has a GNU libc compatible `malloc' function, and
76
+ to 0 otherwise. */
77
+ #undef HAVE_MALLOC
78
+
79
+ /* Define to 1 if you have the `memchr' function. */
80
+ #undef HAVE_MEMCHR
81
+
82
+ /* Define to 1 if you have the `memmove' function. */
83
+ #undef HAVE_MEMMOVE
84
+
85
+ /* Define to 1 if you have the <memory.h> header file. */
86
+ #undef HAVE_MEMORY_H
87
+
88
+ /* Define to 1 if you have the `memset' function. */
89
+ #undef HAVE_MEMSET
90
+
91
+ /* Define to 1 if you have the <netdb.h> header file. */
92
+ #undef HAVE_NETDB_H
93
+
94
+ /* Define to 1 if you have the <netinet/in.h> header file. */
95
+ #undef HAVE_NETINET_IN_H
96
+
97
+ /* Define to 1 if your system has a GNU libc compatible `realloc' function,
98
+ and to 0 otherwise. */
99
+ #undef HAVE_REALLOC
100
+
101
+ /* Define to 1 if you have the `socket' function. */
102
+ #undef HAVE_SOCKET
103
+
104
+ /* Define to 1 if stats is not disabled */
105
+ #undef HAVE_STATS
106
+
107
+ /* Define to 1 if stdbool.h conforms to C99. */
108
+ #undef HAVE_STDBOOL_H
109
+
110
+ /* Define to 1 if you have the <stddef.h> header file. */
111
+ #undef HAVE_STDDEF_H
112
+
113
+ /* Define to 1 if you have the <stdint.h> header file. */
114
+ #undef HAVE_STDINT_H
115
+
116
+ /* Define to 1 if you have the <stdlib.h> header file. */
117
+ #undef HAVE_STDLIB_H
118
+
119
+ /* Define to 1 if you have the `strchr' function. */
120
+ #undef HAVE_STRCHR
121
+
122
+ /* Define to 1 if you have the `strerror' function. */
123
+ #undef HAVE_STRERROR
124
+
125
+ /* Define to 1 if you have the <strings.h> header file. */
126
+ #undef HAVE_STRINGS_H
127
+
128
+ /* Define to 1 if you have the <string.h> header file. */
129
+ #undef HAVE_STRING_H
130
+
131
+ /* Define to 1 if you have the `strndup' function. */
132
+ #undef HAVE_STRNDUP
133
+
134
+ /* Define to 1 if you have the `strtoul' function. */
135
+ #undef HAVE_STRTOUL
136
+
137
+ /* Define to 1 if you have the <sys/epoll.h> header file. */
138
+ #undef HAVE_SYS_EPOLL_H
139
+
140
+ /* Define to 1 if you have the <sys/event.h> header file. */
141
+ #undef HAVE_SYS_EVENT_H
142
+
143
+ /* Define to 1 if you have the <sys/ioctl.h> header file. */
144
+ #undef HAVE_SYS_IOCTL_H
145
+
146
+ /* Define to 1 if you have the <sys/socket.h> header file. */
147
+ #undef HAVE_SYS_SOCKET_H
148
+
149
+ /* Define to 1 if you have the <sys/stat.h> header file. */
150
+ #undef HAVE_SYS_STAT_H
151
+
152
+ /* Define to 1 if you have the <sys/time.h> header file. */
153
+ #undef HAVE_SYS_TIME_H
154
+
155
+ /* Define to 1 if you have the <sys/types.h> header file. */
156
+ #undef HAVE_SYS_TYPES_H
157
+
158
+ /* Define to 1 if you have the <sys/uio.h> header file. */
159
+ #undef HAVE_SYS_UIO_H
160
+
161
+ /* Define to 1 if you have the <sys/un.h> header file. */
162
+ #undef HAVE_SYS_UN_H
163
+
164
+ /* Define to 1 if the system has the type `uintmax_t'. */
165
+ #undef HAVE_UINTMAX_T
166
+
167
+ /* Define to 1 if the system has the type `uintptr_t'. */
168
+ #undef HAVE_UINTPTR_T
169
+
170
+ /* Define to 1 if you have the <unistd.h> header file. */
171
+ #undef HAVE_UNISTD_H
172
+
173
+ /* Define to 1 if the system has the type `unsigned long long int'. */
174
+ #undef HAVE_UNSIGNED_LONG_LONG_INT
175
+
176
+ /* Define to 1 if you have the `vfork' function. */
177
+ #undef HAVE_VFORK
178
+
179
+ /* Define to 1 if you have the <vfork.h> header file. */
180
+ #undef HAVE_VFORK_H
181
+
182
+ /* Define to 1 if `fork' works. */
183
+ #undef HAVE_WORKING_FORK
184
+
185
+ /* Define to 1 if `vfork' works. */
186
+ #undef HAVE_WORKING_VFORK
187
+
188
+ /* Define to 1 if the system has the type `_Bool'. */
189
+ #undef HAVE__BOOL
190
+
191
+ /* Define to the sub-directory where libtool stores uninstalled libraries. */
192
+ #undef LT_OBJDIR
193
+
194
+ /* Define the major version number */
195
+ #undef NC_VERSION_MAJOR
196
+
197
+ /* Define the minor version number */
198
+ #undef NC_VERSION_MINOR
199
+
200
+ /* Define the patch version number */
201
+ #undef NC_VERSION_PATCH
202
+
203
+ /* Define the version string */
204
+ #undef NC_VERSION_STRING
205
+
206
+ /* Name of package */
207
+ #undef PACKAGE
208
+
209
+ /* Define to the address where bug reports for this package should be sent. */
210
+ #undef PACKAGE_BUGREPORT
211
+
212
+ /* Define to the full name of this package. */
213
+ #undef PACKAGE_NAME
214
+
215
+ /* Define to the full name and version of this package. */
216
+ #undef PACKAGE_STRING
217
+
218
+ /* Define to the one symbol short name of this package. */
219
+ #undef PACKAGE_TARNAME
220
+
221
+ /* Define to the home page for this package. */
222
+ #undef PACKAGE_URL
223
+
224
+ /* Define to the version of this package. */
225
+ #undef PACKAGE_VERSION
226
+
227
+ /* Define to 1 if you have the ANSI C header files. */
228
+ #undef STDC_HEADERS
229
+
230
+ /* Version number of package */
231
+ #undef VERSION
232
+
233
+ /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
234
+ significant byte first (like Motorola and SPARC, unlike Intel). */
235
+ #if defined AC_APPLE_UNIVERSAL_BUILD
236
+ # if defined __BIG_ENDIAN__
237
+ # define WORDS_BIGENDIAN 1
238
+ # endif
239
+ #else
240
+ # ifndef WORDS_BIGENDIAN
241
+ # undef WORDS_BIGENDIAN
242
+ # endif
243
+ #endif
244
+
245
+ /* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
246
+ <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
247
+ #define below would cause a syntax error. */
248
+ #undef _UINT32_T
249
+
250
+ /* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
251
+ <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
252
+ #define below would cause a syntax error. */
253
+ #undef _UINT64_T
254
+
255
+ /* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
256
+ <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
257
+ #define below would cause a syntax error. */
258
+ #undef _UINT8_T
259
+
260
+ /* Define to `__inline__' or `__inline' if that's what the C compiler
261
+ calls it, or to nothing if 'inline' is not supported under any name. */
262
+ #ifndef __cplusplus
263
+ #undef inline
264
+ #endif
265
+
266
+ /* Define to the type of a signed integer type of width exactly 16 bits if
267
+ such a type exists and the standard includes do not define it. */
268
+ #undef int16_t
269
+
270
+ /* Define to the type of a signed integer type of width exactly 32 bits if
271
+ such a type exists and the standard includes do not define it. */
272
+ #undef int32_t
273
+
274
+ /* Define to the type of a signed integer type of width exactly 64 bits if
275
+ such a type exists and the standard includes do not define it. */
276
+ #undef int64_t
277
+
278
+ /* Define to the type of a signed integer type of width exactly 8 bits if such
279
+ a type exists and the standard includes do not define it. */
280
+ #undef int8_t
281
+
282
+ /* Define to the widest signed integer type if <stdint.h> and <inttypes.h> do
283
+ not define. */
284
+ #undef intmax_t
285
+
286
+ /* Define to the type of a signed integer type wide enough to hold a pointer,
287
+ if such a type exists, and if the system does not define it. */
288
+ #undef intptr_t
289
+
290
+ /* Define to rpl_malloc if the replacement function should be used. */
291
+ #undef malloc
292
+
293
+ /* Define to `long int' if <sys/types.h> does not define. */
294
+ #undef off_t
295
+
296
+ /* Define to `int' if <sys/types.h> does not define. */
297
+ #undef pid_t
298
+
299
+ /* Define to rpl_realloc if the replacement function should be used. */
300
+ #undef realloc
301
+
302
+ /* Define to `unsigned int' if <sys/types.h> does not define. */
303
+ #undef size_t
304
+
305
+ /* Define to `int' if <sys/types.h> does not define. */
306
+ #undef ssize_t
307
+
308
+ /* Define to the type of an unsigned integer type of width exactly 16 bits if
309
+ such a type exists and the standard includes do not define it. */
310
+ #undef uint16_t
311
+
312
+ /* Define to the type of an unsigned integer type of width exactly 32 bits if
313
+ such a type exists and the standard includes do not define it. */
314
+ #undef uint32_t
315
+
316
+ /* Define to the type of an unsigned integer type of width exactly 64 bits if
317
+ such a type exists and the standard includes do not define it. */
318
+ #undef uint64_t
319
+
320
+ /* Define to the type of an unsigned integer type of width exactly 8 bits if
321
+ such a type exists and the standard includes do not define it. */
322
+ #undef uint8_t
323
+
324
+ /* Define to the widest unsigned integer type if <stdint.h> and <inttypes.h>
325
+ do not define. */
326
+ #undef uintmax_t
327
+
328
+ /* Define to the type of an unsigned integer type wide enough to hold a
329
+ pointer, if such a type exists, and if the system does not define it. */
330
+ #undef uintptr_t
331
+
332
+ /* Define as `fork' if `vfork' does not work. */
333
+ #undef vfork