nutcracker 0.2.4.5 → 0.2.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ext/nutcracker/ChangeLog +0 -0
- data/ext/nutcracker/LICENSE +0 -0
- data/ext/nutcracker/Makefile.am +0 -0
- data/ext/nutcracker/Makefile.in +190 -82
- data/ext/nutcracker/NOTICE +0 -0
- data/ext/nutcracker/README.md +0 -0
- data/ext/nutcracker/aclocal.m4 +231 -122
- data/ext/nutcracker/conf/nutcracker.leaf.yml +0 -0
- data/ext/nutcracker/conf/nutcracker.root.yml +0 -0
- data/ext/nutcracker/conf/nutcracker.yml +0 -0
- data/ext/nutcracker/config.h.in +0 -15
- data/ext/nutcracker/config/config.guess +278 -248
- data/ext/nutcracker/config/config.sub +234 -77
- data/ext/nutcracker/config/depcomp +143 -39
- data/ext/nutcracker/config/install-sh +136 -116
- data/ext/nutcracker/config/ltmain.sh +1704 -788
- data/ext/nutcracker/config/missing +29 -65
- data/ext/nutcracker/configure +1998 -1052
- data/ext/nutcracker/configure.ac +2 -34
- data/ext/nutcracker/contrib/Makefile.am +0 -0
- data/ext/nutcracker/contrib/Makefile.in +120 -47
- data/ext/nutcracker/contrib/yaml-0.1.4.tar.gz +0 -0
- data/ext/nutcracker/extconf.rb +5 -2
- data/ext/nutcracker/m4/libtool.m4 +960 -396
- data/ext/nutcracker/m4/ltoptions.m4 +17 -2
- data/ext/nutcracker/m4/ltversion.m4 +6 -6
- data/ext/nutcracker/notes/c-styleguide.txt +0 -0
- data/ext/nutcracker/notes/debug.txt +0 -0
- data/ext/nutcracker/notes/memcache.txt +0 -0
- data/ext/nutcracker/notes/recommendation.md +0 -0
- data/ext/nutcracker/notes/redis.md +0 -0
- data/ext/nutcracker/notes/socket.txt +0 -0
- data/ext/nutcracker/scripts/nutcracker.init +0 -0
- data/ext/nutcracker/scripts/nutcracker.spec +0 -0
- data/ext/nutcracker/scripts/redis-check.py +0 -0
- data/ext/nutcracker/src/Makefile.am +1 -1
- data/ext/nutcracker/src/Makefile.in +167 -81
- data/ext/nutcracker/src/hashkit/Makefile.am +0 -0
- data/ext/nutcracker/src/hashkit/Makefile.in +72 -37
- data/ext/nutcracker/src/hashkit/nc_crc16.c +0 -0
- data/ext/nutcracker/src/hashkit/nc_crc32.c +0 -0
- data/ext/nutcracker/src/hashkit/nc_fnv.c +0 -0
- data/ext/nutcracker/src/hashkit/nc_hashkit.h +0 -0
- data/ext/nutcracker/src/hashkit/nc_hsieh.c +0 -0
- data/ext/nutcracker/src/hashkit/nc_jenkins.c +0 -0
- data/ext/nutcracker/src/hashkit/nc_ketama.c +0 -0
- data/ext/nutcracker/src/hashkit/nc_md5.c +0 -0
- data/ext/nutcracker/src/hashkit/nc_modula.c +0 -0
- data/ext/nutcracker/src/hashkit/nc_murmur.c +0 -0
- data/ext/nutcracker/src/hashkit/nc_one_at_a_time.c +0 -0
- data/ext/nutcracker/src/hashkit/nc_random.c +0 -0
- data/ext/nutcracker/src/nc.c +0 -0
- data/ext/nutcracker/src/nc_array.c +0 -0
- data/ext/nutcracker/src/nc_array.h +0 -0
- data/ext/nutcracker/src/nc_client.c +0 -0
- data/ext/nutcracker/src/nc_client.h +0 -0
- data/ext/nutcracker/src/nc_conf.c +0 -0
- data/ext/nutcracker/src/nc_conf.h +0 -0
- data/ext/nutcracker/src/nc_connection.c +0 -0
- data/ext/nutcracker/src/nc_connection.h +0 -0
- data/ext/nutcracker/src/nc_core.c +26 -29
- data/ext/nutcracker/src/nc_core.h +5 -13
- data/ext/nutcracker/src/{nc_epoll.c → nc_event.c} +30 -94
- data/ext/nutcracker/src/nc_event.h +13 -33
- data/ext/nutcracker/src/nc_log.c +0 -0
- data/ext/nutcracker/src/nc_log.h +0 -0
- data/ext/nutcracker/src/nc_mbuf.c +0 -0
- data/ext/nutcracker/src/nc_mbuf.h +0 -0
- data/ext/nutcracker/src/nc_message.c +0 -0
- data/ext/nutcracker/src/nc_message.h +0 -0
- data/ext/nutcracker/src/nc_proxy.c +8 -8
- data/ext/nutcracker/src/nc_proxy.h +0 -0
- data/ext/nutcracker/src/nc_queue.h +0 -0
- data/ext/nutcracker/src/nc_rbtree.c +0 -0
- data/ext/nutcracker/src/nc_rbtree.h +0 -0
- data/ext/nutcracker/src/nc_request.c +3 -3
- data/ext/nutcracker/src/nc_response.c +6 -4
- data/ext/nutcracker/src/nc_server.c +5 -5
- data/ext/nutcracker/src/nc_server.h +0 -0
- data/ext/nutcracker/src/nc_signal.c +0 -0
- data/ext/nutcracker/src/nc_signal.h +0 -0
- data/ext/nutcracker/src/nc_stats.c +21 -16
- data/ext/nutcracker/src/nc_stats.h +4 -3
- data/ext/nutcracker/src/nc_string.c +0 -0
- data/ext/nutcracker/src/nc_string.h +0 -0
- data/ext/nutcracker/src/nc_util.c +0 -16
- data/ext/nutcracker/src/nc_util.h +0 -1
- data/ext/nutcracker/src/proto/Makefile.am +0 -0
- data/ext/nutcracker/src/proto/Makefile.in +72 -37
- data/ext/nutcracker/src/proto/nc_memcache.c +0 -0
- data/ext/nutcracker/src/proto/nc_proto.h +0 -0
- data/ext/nutcracker/src/proto/nc_redis.c +0 -0
- data/lib/nutcracker/version.rb +1 -1
- metadata +3 -200
- data/ext/nutcracker/Makefile +0 -643
- data/ext/nutcracker/autom4te.cache/output.0 +0 -18664
- data/ext/nutcracker/autom4te.cache/output.1 +0 -18664
- data/ext/nutcracker/autom4te.cache/output.2 +0 -18664
- data/ext/nutcracker/autom4te.cache/requests +0 -494
- data/ext/nutcracker/autom4te.cache/traces.0 +0 -2415
- data/ext/nutcracker/autom4te.cache/traces.1 +0 -945
- data/ext/nutcracker/autom4te.cache/traces.2 +0 -2415
- data/ext/nutcracker/config.h +0 -332
- data/ext/nutcracker/config.log +0 -2684
- data/ext/nutcracker/config.status +0 -2317
- data/ext/nutcracker/contrib/Makefile +0 -494
- data/ext/nutcracker/contrib/yaml-0.1.4/Makefile +0 -736
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.0 +0 -13102
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.1 +0 -13085
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.2 +0 -13085
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/requests +0 -476
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.0 +0 -2339
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.1 +0 -545
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.2 +0 -2339
- data/ext/nutcracker/contrib/yaml-0.1.4/config.h +0 -81
- data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in~ +0 -80
- data/ext/nutcracker/contrib/yaml-0.1.4/config.log +0 -688
- data/ext/nutcracker/contrib/yaml-0.1.4/config.status +0 -2032
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/annotated.html +0 -51
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/bc_s.png +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/classes.html +0 -41
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/closed.png +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/doxygen.css +0 -656
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/doxygen.png +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/files.html +0 -40
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions.html +0 -91
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x62.html +0 -84
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x63.html +0 -87
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x64.html +0 -83
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x65.html +0 -110
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x66.html +0 -79
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x68.html +0 -80
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x69.html +0 -92
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6b.html +0 -71
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6c.html +0 -88
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6d.html +0 -96
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6e.html +0 -71
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6f.html +0 -80
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x70.html +0 -100
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x71.html +0 -71
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x72.html +0 -87
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x73.html +0 -163
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x74.html +0 -115
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x75.html +0 -71
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x76.html +0 -80
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x77.html +0 -77
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars.html +0 -91
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x62.html +0 -84
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x63.html +0 -87
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x64.html +0 -83
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x65.html +0 -110
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x66.html +0 -79
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x68.html +0 -80
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x69.html +0 -92
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6b.html +0 -71
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6c.html +0 -88
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6d.html +0 -96
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6e.html +0 -71
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6f.html +0 -80
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x70.html +0 -100
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x71.html +0 -71
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x72.html +0 -87
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x73.html +0 -163
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x74.html +0 -115
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x75.html +0 -71
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x76.html +0 -80
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x77.html +0 -77
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals.html +0 -667
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_defs.html +0 -81
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_enum.html +0 -78
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_eval.html +0 -373
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_func.html +0 -196
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_type.html +0 -126
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__basic.html +0 -320
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__emitter.html +0 -819
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__events.html +0 -664
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__export.html +0 -60
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__nodes.html +0 -795
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__parser.html +0 -606
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__styles.html +0 -222
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__tokens.html +0 -246
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__version.html +0 -106
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/index.html +0 -31
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/modules.html +0 -42
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/nav_f.png +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/nav_h.png +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/open.png +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__alias__data__s.html +0 -108
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__document__s.html +0 -235
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__emitter__s.html +0 -1300
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__event__s.html +0 -496
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__mark__s.html +0 -108
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__node__pair__s.html +0 -91
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__node__s.html +0 -420
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__parser__s.html +0 -1229
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__simple__key__s.html +0 -97
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__tag__directive__s.html +0 -91
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__token__s.html +0 -413
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__version__directive__s.html +0 -91
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_a.png +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_b.png +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_h.png +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_s.png +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tabs.css +0 -59
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/yaml_8h.html +0 -525
- data/ext/nutcracker/contrib/yaml-0.1.4/include/Makefile.am +0 -17
- data/ext/nutcracker/contrib/yaml-0.1.4/include/Makefile.in +0 -470
- data/ext/nutcracker/contrib/yaml-0.1.4/libtool +0 -8890
- data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile +0 -484
- data/ext/nutcracker/contrib/yaml-0.1.4/src/api.lo +0 -12
- data/ext/nutcracker/contrib/yaml-0.1.4/src/api.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.lo +0 -12
- data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.lo +0 -12
- data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/libyaml.la +0 -41
- data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.lo +0 -12
- data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.lo +0 -12
- data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.lo +0 -12
- data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.lo +0 -12
- data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.lo +0 -12
- data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/stamp-h1 +0 -1
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile +0 -675
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner.o +0 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/yaml-0.1.pc +0 -10
- data/ext/nutcracker/contrib/yaml-0.1.4/yaml-0.1.pc.in +0 -10
- data/ext/nutcracker/exconf.rb +0 -0
- data/ext/nutcracker/libtool +0 -9403
- data/ext/nutcracker/src/Makefile +0 -647
- data/ext/nutcracker/src/hashkit/Makefile +0 -476
- data/ext/nutcracker/src/hashkit/libhashkit.a +0 -0
- data/ext/nutcracker/src/hashkit/nc_crc16.o +0 -0
- data/ext/nutcracker/src/hashkit/nc_crc32.o +0 -0
- data/ext/nutcracker/src/hashkit/nc_fnv.o +0 -0
- data/ext/nutcracker/src/hashkit/nc_hsieh.o +0 -0
- data/ext/nutcracker/src/hashkit/nc_jenkins.o +0 -0
- data/ext/nutcracker/src/hashkit/nc_ketama.o +0 -0
- data/ext/nutcracker/src/hashkit/nc_md5.o +0 -0
- data/ext/nutcracker/src/hashkit/nc_modula.o +0 -0
- data/ext/nutcracker/src/hashkit/nc_murmur.o +0 -0
- data/ext/nutcracker/src/hashkit/nc_one_at_a_time.o +0 -0
- data/ext/nutcracker/src/hashkit/nc_random.o +0 -0
- data/ext/nutcracker/src/nc.o +0 -0
- data/ext/nutcracker/src/nc_array.o +0 -0
- data/ext/nutcracker/src/nc_client.o +0 -0
- data/ext/nutcracker/src/nc_conf.o +0 -0
- data/ext/nutcracker/src/nc_connection.o +0 -0
- data/ext/nutcracker/src/nc_core.o +0 -0
- data/ext/nutcracker/src/nc_epoll.o +0 -0
- data/ext/nutcracker/src/nc_kqueue.c +0 -296
- data/ext/nutcracker/src/nc_kqueue.o +0 -0
- data/ext/nutcracker/src/nc_log.o +0 -0
- data/ext/nutcracker/src/nc_mbuf.o +0 -0
- data/ext/nutcracker/src/nc_message.o +0 -0
- data/ext/nutcracker/src/nc_proxy.o +0 -0
- data/ext/nutcracker/src/nc_rbtree.o +0 -0
- data/ext/nutcracker/src/nc_request.o +0 -0
- data/ext/nutcracker/src/nc_response.o +0 -0
- data/ext/nutcracker/src/nc_server.o +0 -0
- data/ext/nutcracker/src/nc_signal.o +0 -0
- data/ext/nutcracker/src/nc_stats.o +0 -0
- data/ext/nutcracker/src/nc_string.o +0 -0
- data/ext/nutcracker/src/nc_util.o +0 -0
- data/ext/nutcracker/src/nutcracker +0 -0
- data/ext/nutcracker/src/proto/Makefile +0 -454
- data/ext/nutcracker/src/proto/libproto.a +0 -0
- data/ext/nutcracker/src/proto/nc_memcache.o +0 -0
- data/ext/nutcracker/src/proto/nc_redis.o +0 -0
- data/ext/nutcracker/stamp-h1 +0 -1
data/ext/nutcracker/NOTICE
CHANGED
File without changes
|
data/ext/nutcracker/README.md
CHANGED
File without changes
|
data/ext/nutcracker/aclocal.m4
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
-
# generated automatically by aclocal 1.
|
1
|
+
# generated automatically by aclocal 1.11.3 -*- Autoconf -*-
|
2
2
|
|
3
3
|
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
4
|
-
# 2005, 2006
|
4
|
+
# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
|
5
|
+
# Inc.
|
5
6
|
# This file is free software; the Free Software Foundation
|
6
7
|
# gives unlimited permission to copy and/or distribute it,
|
7
8
|
# with or without modifications, as long as this notice is preserved.
|
@@ -11,27 +12,33 @@
|
|
11
12
|
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
12
13
|
# PARTICULAR PURPOSE.
|
13
14
|
|
14
|
-
|
15
|
-
[
|
16
|
-
|
17
|
-
|
15
|
+
m4_ifndef([AC_AUTOCONF_VERSION],
|
16
|
+
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
17
|
+
m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
|
18
|
+
[m4_warning([this file was generated for autoconf 2.68.
|
19
|
+
You have another version of autoconf. It may work, but is not guaranteed to.
|
20
|
+
If you have problems, you may need to regenerate the build system entirely.
|
21
|
+
To do so, use the procedure documented by the package, typically `autoreconf'.])])
|
18
22
|
|
19
|
-
# Copyright (C) 2002, 2003, 2005, 2006
|
23
|
+
# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
|
24
|
+
# Foundation, Inc.
|
20
25
|
#
|
21
26
|
# This file is free software; the Free Software Foundation
|
22
27
|
# gives unlimited permission to copy and/or distribute it,
|
23
28
|
# with or without modifications, as long as this notice is preserved.
|
24
29
|
|
30
|
+
# serial 1
|
31
|
+
|
25
32
|
# AM_AUTOMAKE_VERSION(VERSION)
|
26
33
|
# ----------------------------
|
27
34
|
# Automake X.Y traces this macro to ensure aclocal.m4 has been
|
28
35
|
# generated from the m4 files accompanying Automake X.Y.
|
29
36
|
# (This private macro should not be called outside this file.)
|
30
37
|
AC_DEFUN([AM_AUTOMAKE_VERSION],
|
31
|
-
[am__api_version='1.
|
38
|
+
[am__api_version='1.11'
|
32
39
|
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
|
33
40
|
dnl require some minimum version. Point them to the right macro.
|
34
|
-
m4_if([$1], [1.
|
41
|
+
m4_if([$1], [1.11.3], [],
|
35
42
|
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
|
36
43
|
])
|
37
44
|
|
@@ -45,19 +52,23 @@ m4_define([_AM_AUTOCONF_VERSION], [])
|
|
45
52
|
# AM_SET_CURRENT_AUTOMAKE_VERSION
|
46
53
|
# -------------------------------
|
47
54
|
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
|
48
|
-
# This function is AC_REQUIREd by
|
55
|
+
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
|
49
56
|
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
|
50
|
-
[AM_AUTOMAKE_VERSION([1.
|
51
|
-
|
57
|
+
[AM_AUTOMAKE_VERSION([1.11.3])dnl
|
58
|
+
m4_ifndef([AC_AUTOCONF_VERSION],
|
59
|
+
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
60
|
+
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
|
52
61
|
|
53
62
|
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
|
54
63
|
|
55
|
-
# Copyright (C) 2001, 2003, 2005
|
64
|
+
# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
|
56
65
|
#
|
57
66
|
# This file is free software; the Free Software Foundation
|
58
67
|
# gives unlimited permission to copy and/or distribute it,
|
59
68
|
# with or without modifications, as long as this notice is preserved.
|
60
69
|
|
70
|
+
# serial 1
|
71
|
+
|
61
72
|
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
|
62
73
|
# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
|
63
74
|
# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
|
@@ -105,14 +116,14 @@ am_aux_dir=`cd $ac_aux_dir && pwd`
|
|
105
116
|
|
106
117
|
# AM_CONDITIONAL -*- Autoconf -*-
|
107
118
|
|
108
|
-
# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006
|
119
|
+
# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
|
109
120
|
# Free Software Foundation, Inc.
|
110
121
|
#
|
111
122
|
# This file is free software; the Free Software Foundation
|
112
123
|
# gives unlimited permission to copy and/or distribute it,
|
113
124
|
# with or without modifications, as long as this notice is preserved.
|
114
125
|
|
115
|
-
# serial
|
126
|
+
# serial 9
|
116
127
|
|
117
128
|
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
|
118
129
|
# -------------------------------------
|
@@ -125,6 +136,7 @@ AC_SUBST([$1_TRUE])dnl
|
|
125
136
|
AC_SUBST([$1_FALSE])dnl
|
126
137
|
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
|
127
138
|
_AM_SUBST_NOTMAKE([$1_FALSE])dnl
|
139
|
+
m4_define([_AM_COND_VALUE_$1], [$2])dnl
|
128
140
|
if $2; then
|
129
141
|
$1_TRUE=
|
130
142
|
$1_FALSE='#'
|
@@ -138,14 +150,14 @@ AC_CONFIG_COMMANDS_PRE(
|
|
138
150
|
Usually this means the macro was only invoked conditionally.]])
|
139
151
|
fi])])
|
140
152
|
|
141
|
-
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
142
|
-
# Free Software Foundation, Inc.
|
153
|
+
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
|
154
|
+
# 2010, 2011 Free Software Foundation, Inc.
|
143
155
|
#
|
144
156
|
# This file is free software; the Free Software Foundation
|
145
157
|
# gives unlimited permission to copy and/or distribute it,
|
146
158
|
# with or without modifications, as long as this notice is preserved.
|
147
159
|
|
148
|
-
# serial
|
160
|
+
# serial 12
|
149
161
|
|
150
162
|
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
|
151
163
|
# written in clear, in which case automake, when reading aclocal.m4,
|
@@ -185,6 +197,7 @@ AC_CACHE_CHECK([dependency style of $depcc],
|
|
185
197
|
# instance it was reported that on HP-UX the gcc test will end up
|
186
198
|
# making a dummy file named `D' -- because `-MD' means `put the output
|
187
199
|
# in D'.
|
200
|
+
rm -rf conftest.dir
|
188
201
|
mkdir conftest.dir
|
189
202
|
# Copy depcomp to subdir because otherwise we won't find it if we're
|
190
203
|
# using a relative directory.
|
@@ -202,6 +215,16 @@ AC_CACHE_CHECK([dependency style of $depcc],
|
|
202
215
|
if test "$am_compiler_list" = ""; then
|
203
216
|
am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
|
204
217
|
fi
|
218
|
+
am__universal=false
|
219
|
+
m4_case([$1], [CC],
|
220
|
+
[case " $depcc " in #(
|
221
|
+
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
222
|
+
esac],
|
223
|
+
[CXX],
|
224
|
+
[case " $depcc " in #(
|
225
|
+
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
226
|
+
esac])
|
227
|
+
|
205
228
|
for depmode in $am_compiler_list; do
|
206
229
|
# Setup a source with many dependencies, because some compilers
|
207
230
|
# like to wrap large dependency lists on column 80 (with \), and
|
@@ -219,7 +242,17 @@ AC_CACHE_CHECK([dependency style of $depcc],
|
|
219
242
|
done
|
220
243
|
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
|
221
244
|
|
245
|
+
# We check with `-c' and `-o' for the sake of the "dashmstdout"
|
246
|
+
# mode. It turns out that the SunPro C++ compiler does not properly
|
247
|
+
# handle `-M -o', and we need to detect this. Also, some Intel
|
248
|
+
# versions had trouble with output in subdirs
|
249
|
+
am__obj=sub/conftest.${OBJEXT-o}
|
250
|
+
am__minus_obj="-o $am__obj"
|
222
251
|
case $depmode in
|
252
|
+
gcc)
|
253
|
+
# This depmode causes a compiler race in universal mode.
|
254
|
+
test "$am__universal" = false || continue
|
255
|
+
;;
|
223
256
|
nosideeffect)
|
224
257
|
# after this tag, mechanisms are not by side-effect, so they'll
|
225
258
|
# only be used when explicitly requested
|
@@ -229,19 +262,23 @@ AC_CACHE_CHECK([dependency style of $depcc],
|
|
229
262
|
break
|
230
263
|
fi
|
231
264
|
;;
|
265
|
+
msvc7 | msvc7msys | msvisualcpp | msvcmsys)
|
266
|
+
# This compiler won't grok `-c -o', but also, the minuso test has
|
267
|
+
# not run yet. These depmodes are late enough in the game, and
|
268
|
+
# so weak that their functioning should not be impacted.
|
269
|
+
am__obj=conftest.${OBJEXT-o}
|
270
|
+
am__minus_obj=
|
271
|
+
;;
|
232
272
|
none) break ;;
|
233
273
|
esac
|
234
|
-
# We check with `-c' and `-o' for the sake of the "dashmstdout"
|
235
|
-
# mode. It turns out that the SunPro C++ compiler does not properly
|
236
|
-
# handle `-M -o', and we need to detect this.
|
237
274
|
if depmode=$depmode \
|
238
|
-
source=sub/conftest.c object
|
275
|
+
source=sub/conftest.c object=$am__obj \
|
239
276
|
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
|
240
|
-
$SHELL ./depcomp $depcc -c
|
277
|
+
$SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
|
241
278
|
>/dev/null 2>conftest.err &&
|
242
279
|
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
|
243
280
|
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
|
244
|
-
grep
|
281
|
+
grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
|
245
282
|
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
|
246
283
|
# icc doesn't choke on unknown options, it will just issue warnings
|
247
284
|
# or remarks (even with -Werror). So we grep stderr for any message
|
@@ -290,65 +327,79 @@ AC_DEFUN([AM_DEP_TRACK],
|
|
290
327
|
if test "x$enable_dependency_tracking" != xno; then
|
291
328
|
am_depcomp="$ac_aux_dir/depcomp"
|
292
329
|
AMDEPBACKSLASH='\'
|
330
|
+
am__nodep='_no'
|
293
331
|
fi
|
294
332
|
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
295
333
|
AC_SUBST([AMDEPBACKSLASH])dnl
|
296
334
|
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
|
335
|
+
AC_SUBST([am__nodep])dnl
|
336
|
+
_AM_SUBST_NOTMAKE([am__nodep])dnl
|
297
337
|
])
|
298
338
|
|
299
339
|
# Generate code to set up dependency tracking. -*- Autoconf -*-
|
300
340
|
|
301
|
-
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
|
341
|
+
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
|
302
342
|
# Free Software Foundation, Inc.
|
303
343
|
#
|
304
344
|
# This file is free software; the Free Software Foundation
|
305
345
|
# gives unlimited permission to copy and/or distribute it,
|
306
346
|
# with or without modifications, as long as this notice is preserved.
|
307
347
|
|
308
|
-
#serial
|
348
|
+
#serial 5
|
309
349
|
|
310
350
|
# _AM_OUTPUT_DEPENDENCY_COMMANDS
|
311
351
|
# ------------------------------
|
312
352
|
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
|
313
|
-
[
|
314
|
-
#
|
315
|
-
|
316
|
-
#
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
s
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
#
|
349
|
-
|
353
|
+
[{
|
354
|
+
# Autoconf 2.62 quotes --file arguments for eval, but not when files
|
355
|
+
# are listed without --file. Let's play safe and only enable the eval
|
356
|
+
# if we detect the quoting.
|
357
|
+
case $CONFIG_FILES in
|
358
|
+
*\'*) eval set x "$CONFIG_FILES" ;;
|
359
|
+
*) set x $CONFIG_FILES ;;
|
360
|
+
esac
|
361
|
+
shift
|
362
|
+
for mf
|
363
|
+
do
|
364
|
+
# Strip MF so we end up with the name of the file.
|
365
|
+
mf=`echo "$mf" | sed -e 's/:.*$//'`
|
366
|
+
# Check whether this is an Automake generated Makefile or not.
|
367
|
+
# We used to match only the files named `Makefile.in', but
|
368
|
+
# some people rename them; so instead we look at the file content.
|
369
|
+
# Grep'ing the first line is not enough: some people post-process
|
370
|
+
# each Makefile.in and add a new line on top of each file to say so.
|
371
|
+
# Grep'ing the whole file is not good either: AIX grep has a line
|
372
|
+
# limit of 2048, but all sed's we know have understand at least 4000.
|
373
|
+
if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
|
374
|
+
dirpart=`AS_DIRNAME("$mf")`
|
375
|
+
else
|
376
|
+
continue
|
377
|
+
fi
|
378
|
+
# Extract the definition of DEPDIR, am__include, and am__quote
|
379
|
+
# from the Makefile without running `make'.
|
380
|
+
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
|
381
|
+
test -z "$DEPDIR" && continue
|
382
|
+
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
383
|
+
test -z "am__include" && continue
|
384
|
+
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
385
|
+
# When using ansi2knr, U may be empty or an underscore; expand it
|
386
|
+
U=`sed -n 's/^U = //p' < "$mf"`
|
387
|
+
# Find all dependency output files, they are included files with
|
388
|
+
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
389
|
+
# simplest approach to changing $(DEPDIR) to its actual value in the
|
390
|
+
# expansion.
|
391
|
+
for file in `sed -n "
|
392
|
+
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
393
|
+
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
|
394
|
+
# Make sure the directory exists.
|
395
|
+
test -f "$dirpart/$file" && continue
|
396
|
+
fdir=`AS_DIRNAME(["$file"])`
|
397
|
+
AS_MKDIR_P([$dirpart/$fdir])
|
398
|
+
# echo "creating $dirpart/$file"
|
399
|
+
echo '# dummy' > "$dirpart/$file"
|
400
|
+
done
|
350
401
|
done
|
351
|
-
|
402
|
+
}
|
352
403
|
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
|
353
404
|
|
354
405
|
|
@@ -368,13 +419,13 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
|
|
368
419
|
# Do all the work for Automake. -*- Autoconf -*-
|
369
420
|
|
370
421
|
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
371
|
-
# 2005, 2006 Free Software Foundation, Inc.
|
422
|
+
# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
|
372
423
|
#
|
373
424
|
# This file is free software; the Free Software Foundation
|
374
425
|
# gives unlimited permission to copy and/or distribute it,
|
375
426
|
# with or without modifications, as long as this notice is preserved.
|
376
427
|
|
377
|
-
# serial
|
428
|
+
# serial 16
|
378
429
|
|
379
430
|
# This macro actually does too much. Some checks are only needed if
|
380
431
|
# your package does certain things. But this isn't really a big deal.
|
@@ -391,7 +442,7 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
|
|
391
442
|
# arguments mandatory, and then we can depend on a new Autoconf
|
392
443
|
# release and drop the old call support.
|
393
444
|
AC_DEFUN([AM_INIT_AUTOMAKE],
|
394
|
-
[AC_PREREQ([2.
|
445
|
+
[AC_PREREQ([2.62])dnl
|
395
446
|
dnl Autoconf wants to disallow AM_ names. We explicitly allow
|
396
447
|
dnl the ones we care about.
|
397
448
|
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
|
@@ -442,8 +493,8 @@ AM_MISSING_PROG(AUTOCONF, autoconf)
|
|
442
493
|
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
|
443
494
|
AM_MISSING_PROG(AUTOHEADER, autoheader)
|
444
495
|
AM_MISSING_PROG(MAKEINFO, makeinfo)
|
445
|
-
AM_PROG_INSTALL_SH
|
446
|
-
AM_PROG_INSTALL_STRIP
|
496
|
+
AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
497
|
+
AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
|
447
498
|
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
|
448
499
|
# We need awk for the "check" target. The system "awk" is bad on
|
449
500
|
# some platforms.
|
@@ -451,24 +502,37 @@ AC_REQUIRE([AC_PROG_AWK])dnl
|
|
451
502
|
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
452
503
|
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
453
504
|
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
|
454
|
-
|
455
|
-
|
505
|
+
[_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
|
506
|
+
[_AM_PROG_TAR([v7])])])
|
456
507
|
_AM_IF_OPTION([no-dependencies],,
|
457
508
|
[AC_PROVIDE_IFELSE([AC_PROG_CC],
|
458
|
-
|
459
|
-
|
460
|
-
|
509
|
+
[_AM_DEPENDENCIES(CC)],
|
510
|
+
[define([AC_PROG_CC],
|
511
|
+
defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
|
461
512
|
AC_PROVIDE_IFELSE([AC_PROG_CXX],
|
462
|
-
|
463
|
-
|
464
|
-
|
513
|
+
[_AM_DEPENDENCIES(CXX)],
|
514
|
+
[define([AC_PROG_CXX],
|
515
|
+
defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
|
465
516
|
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
|
466
|
-
|
467
|
-
|
468
|
-
|
517
|
+
[_AM_DEPENDENCIES(OBJC)],
|
518
|
+
[define([AC_PROG_OBJC],
|
519
|
+
defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
|
469
520
|
])
|
521
|
+
_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
|
522
|
+
dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
|
523
|
+
dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
|
524
|
+
dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
|
525
|
+
AC_CONFIG_COMMANDS_PRE(dnl
|
526
|
+
[m4_provide_if([_AM_COMPILER_EXEEXT],
|
527
|
+
[AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
|
470
528
|
])
|
471
529
|
|
530
|
+
dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
|
531
|
+
dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
|
532
|
+
dnl mangled by Autoconf and run in a shell conditional statement.
|
533
|
+
m4_define([_AC_COMPILER_EXEEXT],
|
534
|
+
m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
|
535
|
+
|
472
536
|
|
473
537
|
# When config.status generates a header, we must update the stamp-h file.
|
474
538
|
# This file resides in the same directory as the config header
|
@@ -479,29 +543,40 @@ AC_PROVIDE_IFELSE([AC_PROG_OBJC],
|
|
479
543
|
# our stamp files there.
|
480
544
|
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
|
481
545
|
[# Compute $1's index in $config_headers.
|
546
|
+
_am_arg=$1
|
482
547
|
_am_stamp_count=1
|
483
548
|
for _am_header in $config_headers :; do
|
484
549
|
case $_am_header in
|
485
|
-
$
|
550
|
+
$_am_arg | $_am_arg:* )
|
486
551
|
break ;;
|
487
552
|
* )
|
488
553
|
_am_stamp_count=`expr $_am_stamp_count + 1` ;;
|
489
554
|
esac
|
490
555
|
done
|
491
|
-
echo "timestamp for $
|
556
|
+
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
|
492
557
|
|
493
|
-
# Copyright (C) 2001, 2003, 2005
|
558
|
+
# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
|
559
|
+
# Inc.
|
494
560
|
#
|
495
561
|
# This file is free software; the Free Software Foundation
|
496
562
|
# gives unlimited permission to copy and/or distribute it,
|
497
563
|
# with or without modifications, as long as this notice is preserved.
|
498
564
|
|
565
|
+
# serial 1
|
566
|
+
|
499
567
|
# AM_PROG_INSTALL_SH
|
500
568
|
# ------------------
|
501
569
|
# Define $install_sh.
|
502
570
|
AC_DEFUN([AM_PROG_INSTALL_SH],
|
503
571
|
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
504
|
-
|
572
|
+
if test x"${install_sh}" != xset; then
|
573
|
+
case $am_aux_dir in
|
574
|
+
*\ * | *\ *)
|
575
|
+
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
|
576
|
+
*)
|
577
|
+
install_sh="\${SHELL} $am_aux_dir/install-sh"
|
578
|
+
esac
|
579
|
+
fi
|
505
580
|
AC_SUBST(install_sh)])
|
506
581
|
|
507
582
|
# Copyright (C) 2003, 2005 Free Software Foundation, Inc.
|
@@ -527,13 +602,13 @@ AC_SUBST([am__leading_dot])])
|
|
527
602
|
|
528
603
|
# Check to see how 'make' treats includes. -*- Autoconf -*-
|
529
604
|
|
530
|
-
# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
|
605
|
+
# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc.
|
531
606
|
#
|
532
607
|
# This file is free software; the Free Software Foundation
|
533
608
|
# gives unlimited permission to copy and/or distribute it,
|
534
609
|
# with or without modifications, as long as this notice is preserved.
|
535
610
|
|
536
|
-
# serial
|
611
|
+
# serial 4
|
537
612
|
|
538
613
|
# AM_MAKE_INCLUDE()
|
539
614
|
# -----------------
|
@@ -542,7 +617,7 @@ AC_DEFUN([AM_MAKE_INCLUDE],
|
|
542
617
|
[am_make=${MAKE-make}
|
543
618
|
cat > confinc << 'END'
|
544
619
|
am__doit:
|
545
|
-
@echo
|
620
|
+
@echo this is the am__doit target
|
546
621
|
.PHONY: am__doit
|
547
622
|
END
|
548
623
|
# If we don't find an include directive, just comment out the code.
|
@@ -552,24 +627,24 @@ am__quote=
|
|
552
627
|
_am_result=none
|
553
628
|
# First try GNU make style include.
|
554
629
|
echo "include confinc" > confmf
|
555
|
-
#
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
_am_result=GNU
|
564
|
-
fi
|
630
|
+
# Ignore all kinds of additional output from `make'.
|
631
|
+
case `$am_make -s -f confmf 2> /dev/null` in #(
|
632
|
+
*the\ am__doit\ target*)
|
633
|
+
am__include=include
|
634
|
+
am__quote=
|
635
|
+
_am_result=GNU
|
636
|
+
;;
|
637
|
+
esac
|
565
638
|
# Now try BSD make style include.
|
566
639
|
if test "$am__include" = "#"; then
|
567
640
|
echo '.include "confinc"' > confmf
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
641
|
+
case `$am_make -s -f confmf 2> /dev/null` in #(
|
642
|
+
*the\ am__doit\ target*)
|
643
|
+
am__include=.include
|
644
|
+
am__quote="\""
|
645
|
+
_am_result=BSD
|
646
|
+
;;
|
647
|
+
esac
|
573
648
|
fi
|
574
649
|
AC_SUBST([am__include])
|
575
650
|
AC_SUBST([am__quote])
|
@@ -579,14 +654,14 @@ rm -f confinc confmf
|
|
579
654
|
|
580
655
|
# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
|
581
656
|
|
582
|
-
# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005
|
657
|
+
# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
|
583
658
|
# Free Software Foundation, Inc.
|
584
659
|
#
|
585
660
|
# This file is free software; the Free Software Foundation
|
586
661
|
# gives unlimited permission to copy and/or distribute it,
|
587
662
|
# with or without modifications, as long as this notice is preserved.
|
588
663
|
|
589
|
-
# serial
|
664
|
+
# serial 6
|
590
665
|
|
591
666
|
# AM_MISSING_PROG(NAME, PROGRAM)
|
592
667
|
# ------------------------------
|
@@ -603,7 +678,14 @@ AC_SUBST($1)])
|
|
603
678
|
AC_DEFUN([AM_MISSING_HAS_RUN],
|
604
679
|
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
605
680
|
AC_REQUIRE_AUX_FILE([missing])dnl
|
606
|
-
test x"${MISSING+set}"
|
681
|
+
if test x"${MISSING+set}" != xset; then
|
682
|
+
case $am_aux_dir in
|
683
|
+
*\ * | *\ *)
|
684
|
+
MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
|
685
|
+
*)
|
686
|
+
MISSING="\${SHELL} $am_aux_dir/missing" ;;
|
687
|
+
esac
|
688
|
+
fi
|
607
689
|
# Use eval to expand $SHELL
|
608
690
|
if eval "$MISSING --run true"; then
|
609
691
|
am_missing_run="$MISSING --run "
|
@@ -613,12 +695,15 @@ else
|
|
613
695
|
fi
|
614
696
|
])
|
615
697
|
|
616
|
-
# Copyright (C) 2003, 2004, 2005, 2006
|
698
|
+
# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
|
699
|
+
# Inc.
|
617
700
|
#
|
618
701
|
# This file is free software; the Free Software Foundation
|
619
702
|
# gives unlimited permission to copy and/or distribute it,
|
620
703
|
# with or without modifications, as long as this notice is preserved.
|
621
704
|
|
705
|
+
# serial 1
|
706
|
+
|
622
707
|
# AM_PROG_MKDIR_P
|
623
708
|
# ---------------
|
624
709
|
# Check for `mkdir -p'.
|
@@ -641,13 +726,14 @@ esac
|
|
641
726
|
|
642
727
|
# Helper functions for option handling. -*- Autoconf -*-
|
643
728
|
|
644
|
-
# Copyright (C) 2001, 2002, 2003, 2005
|
729
|
+
# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
|
730
|
+
# Foundation, Inc.
|
645
731
|
#
|
646
732
|
# This file is free software; the Free Software Foundation
|
647
733
|
# gives unlimited permission to copy and/or distribute it,
|
648
734
|
# with or without modifications, as long as this notice is preserved.
|
649
735
|
|
650
|
-
# serial
|
736
|
+
# serial 5
|
651
737
|
|
652
738
|
# _AM_MANGLE_OPTION(NAME)
|
653
739
|
# -----------------------
|
@@ -655,16 +741,16 @@ AC_DEFUN([_AM_MANGLE_OPTION],
|
|
655
741
|
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
|
656
742
|
|
657
743
|
# _AM_SET_OPTION(NAME)
|
658
|
-
#
|
744
|
+
# --------------------
|
659
745
|
# Set option NAME. Presently that only means defining a flag for this option.
|
660
746
|
AC_DEFUN([_AM_SET_OPTION],
|
661
747
|
[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
|
662
748
|
|
663
749
|
# _AM_SET_OPTIONS(OPTIONS)
|
664
|
-
#
|
750
|
+
# ------------------------
|
665
751
|
# OPTIONS is a space-separated list of Automake options.
|
666
752
|
AC_DEFUN([_AM_SET_OPTIONS],
|
667
|
-
[
|
753
|
+
[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
|
668
754
|
|
669
755
|
# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
|
670
756
|
# -------------------------------------------
|
@@ -674,14 +760,14 @@ AC_DEFUN([_AM_IF_OPTION],
|
|
674
760
|
|
675
761
|
# Check to make sure that the build environment is sane. -*- Autoconf -*-
|
676
762
|
|
677
|
-
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
|
763
|
+
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
|
678
764
|
# Free Software Foundation, Inc.
|
679
765
|
#
|
680
766
|
# This file is free software; the Free Software Foundation
|
681
767
|
# gives unlimited permission to copy and/or distribute it,
|
682
768
|
# with or without modifications, as long as this notice is preserved.
|
683
769
|
|
684
|
-
# serial
|
770
|
+
# serial 5
|
685
771
|
|
686
772
|
# AM_SANITY_CHECK
|
687
773
|
# ---------------
|
@@ -690,16 +776,29 @@ AC_DEFUN([AM_SANITY_CHECK],
|
|
690
776
|
# Just in case
|
691
777
|
sleep 1
|
692
778
|
echo timestamp > conftest.file
|
779
|
+
# Reject unsafe characters in $srcdir or the absolute working directory
|
780
|
+
# name. Accept space and tab only in the latter.
|
781
|
+
am_lf='
|
782
|
+
'
|
783
|
+
case `pwd` in
|
784
|
+
*[[\\\"\#\$\&\'\`$am_lf]]*)
|
785
|
+
AC_MSG_ERROR([unsafe absolute working directory name]);;
|
786
|
+
esac
|
787
|
+
case $srcdir in
|
788
|
+
*[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
|
789
|
+
AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
|
790
|
+
esac
|
791
|
+
|
693
792
|
# Do `set' in a subshell so we don't clobber the current shell's
|
694
793
|
# arguments. Must try -L first in case configure is actually a
|
695
794
|
# symlink; some systems play weird games with the mod time of symlinks
|
696
795
|
# (eg FreeBSD returns the mod time of the symlink's containing
|
697
796
|
# directory).
|
698
797
|
if (
|
699
|
-
set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
|
798
|
+
set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
|
700
799
|
if test "$[*]" = "X"; then
|
701
800
|
# -L didn't work.
|
702
|
-
set X `ls -t $srcdir/configure conftest.file`
|
801
|
+
set X `ls -t "$srcdir/configure" conftest.file`
|
703
802
|
fi
|
704
803
|
rm -f conftest.file
|
705
804
|
if test "$[*]" != "X $srcdir/configure conftest.file" \
|
@@ -724,12 +823,14 @@ Check your system clock])
|
|
724
823
|
fi
|
725
824
|
AC_MSG_RESULT(yes)])
|
726
825
|
|
727
|
-
# Copyright (C) 2001, 2003, 2005
|
826
|
+
# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
|
728
827
|
#
|
729
828
|
# This file is free software; the Free Software Foundation
|
730
829
|
# gives unlimited permission to copy and/or distribute it,
|
731
830
|
# with or without modifications, as long as this notice is preserved.
|
732
831
|
|
832
|
+
# serial 1
|
833
|
+
|
733
834
|
# AM_PROG_INSTALL_STRIP
|
734
835
|
# ---------------------
|
735
836
|
# One issue with vendor `install' (even GNU) is that you can't
|
@@ -752,21 +853,28 @@ fi
|
|
752
853
|
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
753
854
|
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
754
855
|
|
755
|
-
# Copyright (C) 2006
|
856
|
+
# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
|
756
857
|
#
|
757
858
|
# This file is free software; the Free Software Foundation
|
758
859
|
# gives unlimited permission to copy and/or distribute it,
|
759
860
|
# with or without modifications, as long as this notice is preserved.
|
760
861
|
|
862
|
+
# serial 3
|
863
|
+
|
761
864
|
# _AM_SUBST_NOTMAKE(VARIABLE)
|
762
865
|
# ---------------------------
|
763
|
-
# Prevent Automake from
|
866
|
+
# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
|
764
867
|
# This macro is traced by Automake.
|
765
868
|
AC_DEFUN([_AM_SUBST_NOTMAKE])
|
766
869
|
|
870
|
+
# AM_SUBST_NOTMAKE(VARIABLE)
|
871
|
+
# --------------------------
|
872
|
+
# Public sister of _AM_SUBST_NOTMAKE.
|
873
|
+
AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
|
874
|
+
|
767
875
|
# Check how to create a tarball. -*- Autoconf -*-
|
768
876
|
|
769
|
-
# Copyright (C) 2004, 2005
|
877
|
+
# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
|
770
878
|
#
|
771
879
|
# This file is free software; the Free Software Foundation
|
772
880
|
# gives unlimited permission to copy and/or distribute it,
|
@@ -788,10 +896,11 @@ AC_DEFUN([_AM_SUBST_NOTMAKE])
|
|
788
896
|
# a tarball read from stdin.
|
789
897
|
# $(am__untar) < result.tar
|
790
898
|
AC_DEFUN([_AM_PROG_TAR],
|
791
|
-
[# Always define AMTAR for backward compatibility.
|
792
|
-
|
899
|
+
[# Always define AMTAR for backward compatibility. Yes, it's still used
|
900
|
+
# in the wild :-( We should find a proper way to deprecate it ...
|
901
|
+
AC_SUBST([AMTAR], ['$${TAR-tar}'])
|
793
902
|
m4_if([$1], [v7],
|
794
|
-
[am__tar='
|
903
|
+
[am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
|
795
904
|
[m4_case([$1], [ustar],, [pax],,
|
796
905
|
[m4_fatal([Unknown tar format])])
|
797
906
|
AC_MSG_CHECKING([how to create a $1 tar archive])
|