nutcracker 0.2.4.10mac → 0.2.4.10
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/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/config.h.in +0 -15
- 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 -0
- 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 +8 -201
- 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/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/config.log
DELETED
|
@@ -1,2684 +0,0 @@
|
|
|
1
|
-
This file contains any messages produced by compilers while
|
|
2
|
-
running configure, to aid debugging if configure makes a mistake.
|
|
3
|
-
|
|
4
|
-
It was created by nutcracker configure 0.2.4, which was
|
|
5
|
-
generated by GNU Autoconf 2.69. Invocation command line was
|
|
6
|
-
|
|
7
|
-
$ ./configure
|
|
8
|
-
|
|
9
|
-
## --------- ##
|
|
10
|
-
## Platform. ##
|
|
11
|
-
## --------- ##
|
|
12
|
-
|
|
13
|
-
hostname = Eran-Levis-MacBook-Pro.local
|
|
14
|
-
uname -m = x86_64
|
|
15
|
-
uname -r = 11.4.2
|
|
16
|
-
uname -s = Darwin
|
|
17
|
-
uname -v = Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
|
|
18
|
-
|
|
19
|
-
/usr/bin/uname -p = i386
|
|
20
|
-
/bin/uname -X = unknown
|
|
21
|
-
|
|
22
|
-
/bin/arch = unknown
|
|
23
|
-
/usr/bin/arch -k = unknown
|
|
24
|
-
/usr/convex/getsysinfo = unknown
|
|
25
|
-
/usr/bin/hostinfo = Mach kernel version:
|
|
26
|
-
Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
|
|
27
|
-
Kernel configured for up to 2 processors.
|
|
28
|
-
2 processors are physically available.
|
|
29
|
-
2 processors are logically available.
|
|
30
|
-
Processor type: i486 (Intel 80486)
|
|
31
|
-
Processors active: 0 1
|
|
32
|
-
Primary memory available: 4.00 gigabytes
|
|
33
|
-
Default processor set: 120 tasks, 627 threads, 2 processors
|
|
34
|
-
Load average: 0.82, Mach factor: 1.17
|
|
35
|
-
/bin/machine = unknown
|
|
36
|
-
/usr/bin/oslevel = unknown
|
|
37
|
-
/bin/universe = unknown
|
|
38
|
-
|
|
39
|
-
PATH: /Users/eran/.rvm/gems/ruby-1.9.3-p392@nutcracker/bin
|
|
40
|
-
PATH: /Users/eran/.rvm/gems/ruby-1.9.3-p392@global/bin
|
|
41
|
-
PATH: /Users/eran/.rvm/rubies/ruby-1.9.3-p392/bin
|
|
42
|
-
PATH: /Users/eran/.rvm/bin
|
|
43
|
-
PATH: /usr/local/bin
|
|
44
|
-
PATH: /usr/local/mysql/bin
|
|
45
|
-
PATH: /usr/bin
|
|
46
|
-
PATH: /bin
|
|
47
|
-
PATH: /usr/sbin
|
|
48
|
-
PATH: /sbin
|
|
49
|
-
PATH: /usr/X11/bin
|
|
50
|
-
PATH: /usr/local/smlnj-110.75/bin
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
## ----------- ##
|
|
54
|
-
## Core tests. ##
|
|
55
|
-
## ----------- ##
|
|
56
|
-
|
|
57
|
-
configure:2565: checking for a BSD-compatible install
|
|
58
|
-
configure:2633: result: /usr/bin/install -c
|
|
59
|
-
configure:2644: checking whether build environment is sane
|
|
60
|
-
configure:2681: result: yes
|
|
61
|
-
configure:2706: checking for a thread-safe mkdir -p
|
|
62
|
-
configure:2745: result: config/install-sh -c -d
|
|
63
|
-
configure:2758: checking for gawk
|
|
64
|
-
configure:2788: result: no
|
|
65
|
-
configure:2758: checking for mawk
|
|
66
|
-
configure:2788: result: no
|
|
67
|
-
configure:2758: checking for nawk
|
|
68
|
-
configure:2788: result: no
|
|
69
|
-
configure:2758: checking for awk
|
|
70
|
-
configure:2774: found /usr/bin/awk
|
|
71
|
-
configure:2785: result: awk
|
|
72
|
-
configure:2796: checking whether make sets $(MAKE)
|
|
73
|
-
configure:2818: result: yes
|
|
74
|
-
configure:3028: checking for gawk
|
|
75
|
-
configure:3055: result: awk
|
|
76
|
-
configure:3114: checking for gcc
|
|
77
|
-
configure:3130: found /usr/bin/gcc
|
|
78
|
-
configure:3141: result: gcc
|
|
79
|
-
configure:3370: checking for C compiler version
|
|
80
|
-
configure:3379: gcc --version >&5
|
|
81
|
-
i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
|
|
82
|
-
Copyright (C) 2007 Free Software Foundation, Inc.
|
|
83
|
-
This is free software; see the source for copying conditions. There is NO
|
|
84
|
-
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
85
|
-
|
|
86
|
-
configure:3390: $? = 0
|
|
87
|
-
configure:3379: gcc -v >&5
|
|
88
|
-
Using built-in specs.
|
|
89
|
-
Target: i686-apple-darwin11
|
|
90
|
-
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.11~182/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.11~182/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1
|
|
91
|
-
Thread model: posix
|
|
92
|
-
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
|
|
93
|
-
configure:3390: $? = 0
|
|
94
|
-
configure:3379: gcc -V >&5
|
|
95
|
-
llvm-gcc-4.2: argument to `-V' is missing
|
|
96
|
-
configure:3390: $? = 1
|
|
97
|
-
configure:3379: gcc -qversion >&5
|
|
98
|
-
i686-apple-darwin11-llvm-gcc-4.2: no input files
|
|
99
|
-
configure:3390: $? = 1
|
|
100
|
-
configure:3410: checking whether the C compiler works
|
|
101
|
-
configure:3432: gcc conftest.c >&5
|
|
102
|
-
configure:3436: $? = 0
|
|
103
|
-
configure:3484: result: yes
|
|
104
|
-
configure:3487: checking for C compiler default output file name
|
|
105
|
-
configure:3489: result: a.out
|
|
106
|
-
configure:3495: checking for suffix of executables
|
|
107
|
-
configure:3502: gcc -o conftest conftest.c >&5
|
|
108
|
-
configure:3506: $? = 0
|
|
109
|
-
configure:3528: result:
|
|
110
|
-
configure:3550: checking whether we are cross compiling
|
|
111
|
-
configure:3558: gcc -o conftest conftest.c >&5
|
|
112
|
-
configure:3562: $? = 0
|
|
113
|
-
configure:3569: ./conftest
|
|
114
|
-
configure:3573: $? = 0
|
|
115
|
-
configure:3588: result: no
|
|
116
|
-
configure:3593: checking for suffix of object files
|
|
117
|
-
configure:3615: gcc -c conftest.c >&5
|
|
118
|
-
configure:3619: $? = 0
|
|
119
|
-
configure:3640: result: o
|
|
120
|
-
configure:3644: checking whether we are using the GNU C compiler
|
|
121
|
-
configure:3663: gcc -c conftest.c >&5
|
|
122
|
-
configure:3663: $? = 0
|
|
123
|
-
configure:3672: result: yes
|
|
124
|
-
configure:3681: checking whether gcc accepts -g
|
|
125
|
-
configure:3701: gcc -c -g conftest.c >&5
|
|
126
|
-
configure:3701: $? = 0
|
|
127
|
-
configure:3742: result: yes
|
|
128
|
-
configure:3759: checking for gcc option to accept ISO C89
|
|
129
|
-
configure:3822: gcc -c -g -O2 conftest.c >&5
|
|
130
|
-
configure:3822: $? = 0
|
|
131
|
-
configure:3835: result: none needed
|
|
132
|
-
configure:3866: checking for style of include used by make
|
|
133
|
-
configure:3894: result: GNU
|
|
134
|
-
configure:3919: checking dependency style of gcc
|
|
135
|
-
configure:4010: result: gcc3
|
|
136
|
-
configure:4030: checking how to run the C preprocessor
|
|
137
|
-
configure:4061: gcc -E conftest.c
|
|
138
|
-
configure:4061: $? = 0
|
|
139
|
-
configure:4075: gcc -E conftest.c
|
|
140
|
-
conftest.c:15:28: error: ac_nonexistent.h: No such file or directory
|
|
141
|
-
configure:4075: $? = 1
|
|
142
|
-
configure: failed program was:
|
|
143
|
-
| /* confdefs.h */
|
|
144
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
145
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
146
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
147
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
148
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
149
|
-
| #define PACKAGE_URL ""
|
|
150
|
-
| #define PACKAGE "nutcracker"
|
|
151
|
-
| #define VERSION "0.2.4"
|
|
152
|
-
| #define NC_VERSION_MAJOR 0
|
|
153
|
-
| #define NC_VERSION_MINOR 2
|
|
154
|
-
| #define NC_VERSION_PATCH 4
|
|
155
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
156
|
-
| /* end confdefs.h. */
|
|
157
|
-
| #include <ac_nonexistent.h>
|
|
158
|
-
configure:4100: result: gcc -E
|
|
159
|
-
configure:4120: gcc -E conftest.c
|
|
160
|
-
configure:4120: $? = 0
|
|
161
|
-
configure:4134: gcc -E conftest.c
|
|
162
|
-
conftest.c:15:28: error: ac_nonexistent.h: No such file or directory
|
|
163
|
-
configure:4134: $? = 1
|
|
164
|
-
configure: failed program was:
|
|
165
|
-
| /* confdefs.h */
|
|
166
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
167
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
168
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
169
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
170
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
171
|
-
| #define PACKAGE_URL ""
|
|
172
|
-
| #define PACKAGE "nutcracker"
|
|
173
|
-
| #define VERSION "0.2.4"
|
|
174
|
-
| #define NC_VERSION_MAJOR 0
|
|
175
|
-
| #define NC_VERSION_MINOR 2
|
|
176
|
-
| #define NC_VERSION_PATCH 4
|
|
177
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
178
|
-
| /* end confdefs.h. */
|
|
179
|
-
| #include <ac_nonexistent.h>
|
|
180
|
-
configure:4220: checking for g++
|
|
181
|
-
configure:4236: found /usr/bin/g++
|
|
182
|
-
configure:4247: result: g++
|
|
183
|
-
configure:4274: checking for C++ compiler version
|
|
184
|
-
configure:4283: g++ --version >&5
|
|
185
|
-
i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
|
|
186
|
-
Copyright (C) 2007 Free Software Foundation, Inc.
|
|
187
|
-
This is free software; see the source for copying conditions. There is NO
|
|
188
|
-
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
189
|
-
|
|
190
|
-
configure:4294: $? = 0
|
|
191
|
-
configure:4283: g++ -v >&5
|
|
192
|
-
Using built-in specs.
|
|
193
|
-
Target: i686-apple-darwin11
|
|
194
|
-
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.11~182/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.11~182/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1
|
|
195
|
-
Thread model: posix
|
|
196
|
-
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
|
|
197
|
-
configure:4294: $? = 0
|
|
198
|
-
configure:4283: g++ -V >&5
|
|
199
|
-
llvm-g++-4.2: argument to `-V' is missing
|
|
200
|
-
configure:4294: $? = 1
|
|
201
|
-
configure:4283: g++ -qversion >&5
|
|
202
|
-
i686-apple-darwin11-llvm-g++-4.2: no input files
|
|
203
|
-
configure:4294: $? = 1
|
|
204
|
-
configure:4298: checking whether we are using the GNU C++ compiler
|
|
205
|
-
configure:4317: g++ -c conftest.cpp >&5
|
|
206
|
-
configure:4317: $? = 0
|
|
207
|
-
configure:4326: result: yes
|
|
208
|
-
configure:4335: checking whether g++ accepts -g
|
|
209
|
-
configure:4355: g++ -c -g conftest.cpp >&5
|
|
210
|
-
configure:4355: $? = 0
|
|
211
|
-
configure:4396: result: yes
|
|
212
|
-
configure:4421: checking dependency style of g++
|
|
213
|
-
configure:4512: result: gcc3
|
|
214
|
-
configure:4528: checking whether ln -s works
|
|
215
|
-
configure:4532: result: yes
|
|
216
|
-
configure:4539: checking whether make sets $(MAKE)
|
|
217
|
-
configure:4561: result: yes
|
|
218
|
-
configure:4613: checking for ranlib
|
|
219
|
-
configure:4629: found /usr/bin/ranlib
|
|
220
|
-
configure:4640: result: ranlib
|
|
221
|
-
configure:4691: checking build system type
|
|
222
|
-
configure:4705: result: i386-apple-darwin11.4.2
|
|
223
|
-
configure:4725: checking host system type
|
|
224
|
-
configure:4738: result: i386-apple-darwin11.4.2
|
|
225
|
-
configure:4779: checking how to print strings
|
|
226
|
-
configure:4806: result: printf
|
|
227
|
-
configure:4827: checking for a sed that does not truncate output
|
|
228
|
-
configure:4891: result: /usr/bin/sed
|
|
229
|
-
configure:4909: checking for grep that handles long lines and -e
|
|
230
|
-
configure:4967: result: /usr/bin/grep
|
|
231
|
-
configure:4972: checking for egrep
|
|
232
|
-
configure:5034: result: /usr/bin/grep -E
|
|
233
|
-
configure:5039: checking for fgrep
|
|
234
|
-
configure:5101: result: /usr/bin/grep -F
|
|
235
|
-
configure:5136: checking for ld used by gcc
|
|
236
|
-
configure:5203: result: /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
|
|
237
|
-
configure:5210: checking if the linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) is GNU ld
|
|
238
|
-
configure:5225: result: no
|
|
239
|
-
configure:5237: checking for BSD- or MS-compatible name lister (nm)
|
|
240
|
-
configure:5286: result: /usr/bin/nm
|
|
241
|
-
configure:5416: checking the name lister (/usr/bin/nm) interface
|
|
242
|
-
configure:5423: gcc -c -g -O2 conftest.c >&5
|
|
243
|
-
configure:5426: /usr/bin/nm "conftest.o"
|
|
244
|
-
configure:5429: output
|
|
245
|
-
00000000000001b8 S _some_variable
|
|
246
|
-
configure:5436: result: BSD nm
|
|
247
|
-
configure:5440: checking the maximum length of command line arguments
|
|
248
|
-
configure:5565: result: 196608
|
|
249
|
-
configure:5582: checking whether the shell understands some XSI constructs
|
|
250
|
-
configure:5592: result: yes
|
|
251
|
-
configure:5596: checking whether the shell understands "+="
|
|
252
|
-
configure:5602: result: yes
|
|
253
|
-
configure:5637: checking for /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld option to reload object files
|
|
254
|
-
configure:5644: result: -r
|
|
255
|
-
configure:5713: checking for objdump
|
|
256
|
-
configure:5743: result: no
|
|
257
|
-
configure:5772: checking how to recognize dependent libraries
|
|
258
|
-
configure:5974: result: pass_all
|
|
259
|
-
configure:6034: checking for ar
|
|
260
|
-
configure:6050: found /usr/bin/ar
|
|
261
|
-
configure:6061: result: ar
|
|
262
|
-
configure:6139: checking for strip
|
|
263
|
-
configure:6155: found /usr/bin/strip
|
|
264
|
-
configure:6166: result: strip
|
|
265
|
-
configure:6238: checking for ranlib
|
|
266
|
-
configure:6265: result: ranlib
|
|
267
|
-
configure:6367: checking command to parse /usr/bin/nm output from gcc object
|
|
268
|
-
configure:6485: gcc -c -g -O2 conftest.c >&5
|
|
269
|
-
configure:6488: $? = 0
|
|
270
|
-
configure:6492: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
|
|
271
|
-
configure:6495: $? = 0
|
|
272
|
-
cannot find nm_test_var in conftest.nm
|
|
273
|
-
configure:6485: gcc -c -g -O2 conftest.c >&5
|
|
274
|
-
configure:6488: $? = 0
|
|
275
|
-
configure:6492: /usr/bin/nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p' \> conftest.nm
|
|
276
|
-
configure:6495: $? = 0
|
|
277
|
-
configure:6549: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
|
|
278
|
-
configure:6552: $? = 0
|
|
279
|
-
configure:6590: result: ok
|
|
280
|
-
configure:6855: checking for dsymutil
|
|
281
|
-
configure:6871: found /usr/bin/dsymutil
|
|
282
|
-
configure:6882: result: dsymutil
|
|
283
|
-
configure:6947: checking for nmedit
|
|
284
|
-
configure:6963: found /usr/bin/nmedit
|
|
285
|
-
configure:6974: result: nmedit
|
|
286
|
-
configure:7039: checking for lipo
|
|
287
|
-
configure:7055: found /usr/bin/lipo
|
|
288
|
-
configure:7066: result: lipo
|
|
289
|
-
configure:7131: checking for otool
|
|
290
|
-
configure:7147: found /usr/bin/otool
|
|
291
|
-
configure:7158: result: otool
|
|
292
|
-
configure:7223: checking for otool64
|
|
293
|
-
configure:7253: result: no
|
|
294
|
-
configure:7298: checking for -single_module linker flag
|
|
295
|
-
gcc -g -O2 -o libconftest.dylib -dynamiclib -Wl,-single_module conftest.c
|
|
296
|
-
configure:7325: result: yes
|
|
297
|
-
configure:7327: checking for -exported_symbols_list linker flag
|
|
298
|
-
configure:7347: gcc -o conftest -g -O2 -Wl,-exported_symbols_list,conftest.sym conftest.c >&5
|
|
299
|
-
configure:7347: $? = 0
|
|
300
|
-
configure:7357: result: yes
|
|
301
|
-
configure:7359: checking for -force_load linker flag
|
|
302
|
-
gcc -g -O2 -c -o conftest.o conftest.c
|
|
303
|
-
ar cru libconftest.a conftest.o
|
|
304
|
-
ranlib libconftest.a
|
|
305
|
-
gcc -g -O2 -o conftest conftest.c -Wl,-force_load,./libconftest.a
|
|
306
|
-
configure:7389: result: yes
|
|
307
|
-
configure:7427: checking for ANSI C header files
|
|
308
|
-
configure:7447: gcc -c -g -O2 conftest.c >&5
|
|
309
|
-
configure:7447: $? = 0
|
|
310
|
-
configure:7520: gcc -o conftest -g -O2 conftest.c >&5
|
|
311
|
-
configure:7520: $? = 0
|
|
312
|
-
configure:7520: ./conftest
|
|
313
|
-
configure:7520: $? = 0
|
|
314
|
-
configure:7531: result: yes
|
|
315
|
-
configure:7544: checking for sys/types.h
|
|
316
|
-
configure:7544: gcc -c -g -O2 conftest.c >&5
|
|
317
|
-
configure:7544: $? = 0
|
|
318
|
-
configure:7544: result: yes
|
|
319
|
-
configure:7544: checking for sys/stat.h
|
|
320
|
-
configure:7544: gcc -c -g -O2 conftest.c >&5
|
|
321
|
-
configure:7544: $? = 0
|
|
322
|
-
configure:7544: result: yes
|
|
323
|
-
configure:7544: checking for stdlib.h
|
|
324
|
-
configure:7544: gcc -c -g -O2 conftest.c >&5
|
|
325
|
-
configure:7544: $? = 0
|
|
326
|
-
configure:7544: result: yes
|
|
327
|
-
configure:7544: checking for string.h
|
|
328
|
-
configure:7544: gcc -c -g -O2 conftest.c >&5
|
|
329
|
-
configure:7544: $? = 0
|
|
330
|
-
configure:7544: result: yes
|
|
331
|
-
configure:7544: checking for memory.h
|
|
332
|
-
configure:7544: gcc -c -g -O2 conftest.c >&5
|
|
333
|
-
configure:7544: $? = 0
|
|
334
|
-
configure:7544: result: yes
|
|
335
|
-
configure:7544: checking for strings.h
|
|
336
|
-
configure:7544: gcc -c -g -O2 conftest.c >&5
|
|
337
|
-
configure:7544: $? = 0
|
|
338
|
-
configure:7544: result: yes
|
|
339
|
-
configure:7544: checking for inttypes.h
|
|
340
|
-
configure:7544: gcc -c -g -O2 conftest.c >&5
|
|
341
|
-
configure:7544: $? = 0
|
|
342
|
-
configure:7544: result: yes
|
|
343
|
-
configure:7544: checking for stdint.h
|
|
344
|
-
configure:7544: gcc -c -g -O2 conftest.c >&5
|
|
345
|
-
configure:7544: $? = 0
|
|
346
|
-
configure:7544: result: yes
|
|
347
|
-
configure:7544: checking for unistd.h
|
|
348
|
-
configure:7544: gcc -c -g -O2 conftest.c >&5
|
|
349
|
-
configure:7544: $? = 0
|
|
350
|
-
configure:7544: result: yes
|
|
351
|
-
configure:7558: checking for dlfcn.h
|
|
352
|
-
configure:7558: gcc -c -g -O2 conftest.c >&5
|
|
353
|
-
configure:7558: $? = 0
|
|
354
|
-
configure:7558: result: yes
|
|
355
|
-
configure:7746: checking for objdir
|
|
356
|
-
configure:7761: result: .libs
|
|
357
|
-
configure:8032: checking if gcc supports -fno-rtti -fno-exceptions
|
|
358
|
-
configure:8050: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
|
|
359
|
-
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
|
|
360
|
-
configure:8054: $? = 0
|
|
361
|
-
configure:8067: result: no
|
|
362
|
-
configure:8087: checking for gcc option to produce PIC
|
|
363
|
-
configure:8372: result: -fno-common -DPIC
|
|
364
|
-
configure:8384: checking if gcc PIC flag -fno-common -DPIC works
|
|
365
|
-
configure:8402: gcc -c -g -O2 -fno-common -DPIC -DPIC conftest.c >&5
|
|
366
|
-
configure:8406: $? = 0
|
|
367
|
-
configure:8419: result: yes
|
|
368
|
-
configure:8443: checking if gcc static flag -static works
|
|
369
|
-
configure:8471: result: no
|
|
370
|
-
configure:8486: checking if gcc supports -c -o file.o
|
|
371
|
-
configure:8507: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
|
|
372
|
-
configure:8511: $? = 0
|
|
373
|
-
configure:8533: result: yes
|
|
374
|
-
configure:8541: checking if gcc supports -c -o file.o
|
|
375
|
-
configure:8588: result: yes
|
|
376
|
-
configure:8621: checking whether the gcc linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports shared libraries
|
|
377
|
-
configure:9696: result: yes
|
|
378
|
-
configure:9941: checking dynamic linker characteristics
|
|
379
|
-
configure:10618: result: darwin11.4.2 dyld
|
|
380
|
-
configure:10725: checking how to hardcode library paths into programs
|
|
381
|
-
configure:10750: result: immediate
|
|
382
|
-
configure:11290: checking whether stripping libraries is possible
|
|
383
|
-
configure:11304: result: yes
|
|
384
|
-
configure:11330: checking if libtool supports shared libraries
|
|
385
|
-
configure:11332: result: yes
|
|
386
|
-
configure:11335: checking whether to build shared libraries
|
|
387
|
-
configure:11356: result: yes
|
|
388
|
-
configure:11359: checking whether to build static libraries
|
|
389
|
-
configure:11363: result: yes
|
|
390
|
-
configure:11386: checking how to run the C++ preprocessor
|
|
391
|
-
configure:11413: g++ -E conftest.cpp
|
|
392
|
-
configure:11413: $? = 0
|
|
393
|
-
configure:11427: g++ -E conftest.cpp
|
|
394
|
-
conftest.cpp:27:28: error: ac_nonexistent.h: No such file or directory
|
|
395
|
-
configure:11427: $? = 1
|
|
396
|
-
configure: failed program was:
|
|
397
|
-
| /* confdefs.h */
|
|
398
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
399
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
400
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
401
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
402
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
403
|
-
| #define PACKAGE_URL ""
|
|
404
|
-
| #define PACKAGE "nutcracker"
|
|
405
|
-
| #define VERSION "0.2.4"
|
|
406
|
-
| #define NC_VERSION_MAJOR 0
|
|
407
|
-
| #define NC_VERSION_MINOR 2
|
|
408
|
-
| #define NC_VERSION_PATCH 4
|
|
409
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
410
|
-
| #define STDC_HEADERS 1
|
|
411
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
412
|
-
| #define HAVE_SYS_STAT_H 1
|
|
413
|
-
| #define HAVE_STDLIB_H 1
|
|
414
|
-
| #define HAVE_STRING_H 1
|
|
415
|
-
| #define HAVE_MEMORY_H 1
|
|
416
|
-
| #define HAVE_STRINGS_H 1
|
|
417
|
-
| #define HAVE_INTTYPES_H 1
|
|
418
|
-
| #define HAVE_STDINT_H 1
|
|
419
|
-
| #define HAVE_UNISTD_H 1
|
|
420
|
-
| #define HAVE_DLFCN_H 1
|
|
421
|
-
| #define LT_OBJDIR ".libs/"
|
|
422
|
-
| /* end confdefs.h. */
|
|
423
|
-
| #include <ac_nonexistent.h>
|
|
424
|
-
configure:11452: result: g++ -E
|
|
425
|
-
configure:11472: g++ -E conftest.cpp
|
|
426
|
-
configure:11472: $? = 0
|
|
427
|
-
configure:11486: g++ -E conftest.cpp
|
|
428
|
-
conftest.cpp:27:28: error: ac_nonexistent.h: No such file or directory
|
|
429
|
-
configure:11486: $? = 1
|
|
430
|
-
configure: failed program was:
|
|
431
|
-
| /* confdefs.h */
|
|
432
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
433
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
434
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
435
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
436
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
437
|
-
| #define PACKAGE_URL ""
|
|
438
|
-
| #define PACKAGE "nutcracker"
|
|
439
|
-
| #define VERSION "0.2.4"
|
|
440
|
-
| #define NC_VERSION_MAJOR 0
|
|
441
|
-
| #define NC_VERSION_MINOR 2
|
|
442
|
-
| #define NC_VERSION_PATCH 4
|
|
443
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
444
|
-
| #define STDC_HEADERS 1
|
|
445
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
446
|
-
| #define HAVE_SYS_STAT_H 1
|
|
447
|
-
| #define HAVE_STDLIB_H 1
|
|
448
|
-
| #define HAVE_STRING_H 1
|
|
449
|
-
| #define HAVE_MEMORY_H 1
|
|
450
|
-
| #define HAVE_STRINGS_H 1
|
|
451
|
-
| #define HAVE_INTTYPES_H 1
|
|
452
|
-
| #define HAVE_STDINT_H 1
|
|
453
|
-
| #define HAVE_UNISTD_H 1
|
|
454
|
-
| #define HAVE_DLFCN_H 1
|
|
455
|
-
| #define LT_OBJDIR ".libs/"
|
|
456
|
-
| /* end confdefs.h. */
|
|
457
|
-
| #include <ac_nonexistent.h>
|
|
458
|
-
configure:11654: checking for ld used by g++
|
|
459
|
-
configure:11721: result: /usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
|
|
460
|
-
configure:11728: checking if the linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) is GNU ld
|
|
461
|
-
configure:11743: result: no
|
|
462
|
-
configure:11798: checking whether the g++ linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports shared libraries
|
|
463
|
-
configure:12730: result: yes
|
|
464
|
-
configure:12758: g++ -c -g -O2 conftest.cpp >&5
|
|
465
|
-
configure:12761: $? = 0
|
|
466
|
-
configure:12943: checking for g++ option to produce PIC
|
|
467
|
-
configure:13265: result: -fno-common -DPIC
|
|
468
|
-
configure:13274: checking if g++ PIC flag -fno-common -DPIC works
|
|
469
|
-
configure:13292: g++ -c -g -O2 -fno-common -DPIC -DPIC conftest.cpp >&5
|
|
470
|
-
configure:13296: $? = 0
|
|
471
|
-
configure:13309: result: yes
|
|
472
|
-
configure:13330: checking if g++ static flag -static works
|
|
473
|
-
configure:13358: result: no
|
|
474
|
-
configure:13370: checking if g++ supports -c -o file.o
|
|
475
|
-
configure:13391: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
|
|
476
|
-
configure:13395: $? = 0
|
|
477
|
-
configure:13417: result: yes
|
|
478
|
-
configure:13422: checking if g++ supports -c -o file.o
|
|
479
|
-
configure:13469: result: yes
|
|
480
|
-
configure:13499: checking whether the g++ linker (/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld) supports shared libraries
|
|
481
|
-
configure:13527: result: yes
|
|
482
|
-
configure:13670: checking dynamic linker characteristics
|
|
483
|
-
configure:14281: result: darwin11.4.2 dyld
|
|
484
|
-
configure:14334: checking how to hardcode library paths into programs
|
|
485
|
-
configure:14359: result: immediate
|
|
486
|
-
configure:14419: checking for inline
|
|
487
|
-
configure:14435: gcc -c -g -O2 conftest.c >&5
|
|
488
|
-
configure:14435: $? = 0
|
|
489
|
-
configure:14443: result: inline
|
|
490
|
-
configure:14461: checking for int8_t
|
|
491
|
-
configure:14461: gcc -c -g -O2 conftest.c >&5
|
|
492
|
-
configure:14461: $? = 0
|
|
493
|
-
configure:14461: gcc -c -g -O2 conftest.c >&5
|
|
494
|
-
conftest.c: In function 'main':
|
|
495
|
-
conftest.c:65: error: size of array 'test_array' is negative
|
|
496
|
-
configure:14461: $? = 1
|
|
497
|
-
configure: failed program was:
|
|
498
|
-
| /* confdefs.h */
|
|
499
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
500
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
501
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
502
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
503
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
504
|
-
| #define PACKAGE_URL ""
|
|
505
|
-
| #define PACKAGE "nutcracker"
|
|
506
|
-
| #define VERSION "0.2.4"
|
|
507
|
-
| #define NC_VERSION_MAJOR 0
|
|
508
|
-
| #define NC_VERSION_MINOR 2
|
|
509
|
-
| #define NC_VERSION_PATCH 4
|
|
510
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
511
|
-
| #define STDC_HEADERS 1
|
|
512
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
513
|
-
| #define HAVE_SYS_STAT_H 1
|
|
514
|
-
| #define HAVE_STDLIB_H 1
|
|
515
|
-
| #define HAVE_STRING_H 1
|
|
516
|
-
| #define HAVE_MEMORY_H 1
|
|
517
|
-
| #define HAVE_STRINGS_H 1
|
|
518
|
-
| #define HAVE_INTTYPES_H 1
|
|
519
|
-
| #define HAVE_STDINT_H 1
|
|
520
|
-
| #define HAVE_UNISTD_H 1
|
|
521
|
-
| #define HAVE_DLFCN_H 1
|
|
522
|
-
| #define LT_OBJDIR ".libs/"
|
|
523
|
-
| /* end confdefs.h. */
|
|
524
|
-
| #include <stdio.h>
|
|
525
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
526
|
-
| # include <sys/types.h>
|
|
527
|
-
| #endif
|
|
528
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
529
|
-
| # include <sys/stat.h>
|
|
530
|
-
| #endif
|
|
531
|
-
| #ifdef STDC_HEADERS
|
|
532
|
-
| # include <stdlib.h>
|
|
533
|
-
| # include <stddef.h>
|
|
534
|
-
| #else
|
|
535
|
-
| # ifdef HAVE_STDLIB_H
|
|
536
|
-
| # include <stdlib.h>
|
|
537
|
-
| # endif
|
|
538
|
-
| #endif
|
|
539
|
-
| #ifdef HAVE_STRING_H
|
|
540
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
541
|
-
| # include <memory.h>
|
|
542
|
-
| # endif
|
|
543
|
-
| # include <string.h>
|
|
544
|
-
| #endif
|
|
545
|
-
| #ifdef HAVE_STRINGS_H
|
|
546
|
-
| # include <strings.h>
|
|
547
|
-
| #endif
|
|
548
|
-
| #ifdef HAVE_INTTYPES_H
|
|
549
|
-
| # include <inttypes.h>
|
|
550
|
-
| #endif
|
|
551
|
-
| #ifdef HAVE_STDINT_H
|
|
552
|
-
| # include <stdint.h>
|
|
553
|
-
| #endif
|
|
554
|
-
| #ifdef HAVE_UNISTD_H
|
|
555
|
-
| # include <unistd.h>
|
|
556
|
-
| #endif
|
|
557
|
-
| enum { N = 8 / 2 - 1 };
|
|
558
|
-
| int
|
|
559
|
-
| main ()
|
|
560
|
-
| {
|
|
561
|
-
| static int test_array [1 - 2 * !((int8_t) (((((int8_t) 1 << N) << N) - 1) * 2 + 1)
|
|
562
|
-
| < (int8_t) (((((int8_t) 1 << N) << N) - 1) * 2 + 2))];
|
|
563
|
-
| test_array [0] = 0;
|
|
564
|
-
| return test_array [0];
|
|
565
|
-
|
|
|
566
|
-
| ;
|
|
567
|
-
| return 0;
|
|
568
|
-
| }
|
|
569
|
-
configure:14461: result: yes
|
|
570
|
-
configure:14472: checking for int16_t
|
|
571
|
-
configure:14472: gcc -c -g -O2 conftest.c >&5
|
|
572
|
-
configure:14472: $? = 0
|
|
573
|
-
configure:14472: gcc -c -g -O2 conftest.c >&5
|
|
574
|
-
conftest.c: In function 'main':
|
|
575
|
-
conftest.c:65: error: size of array 'test_array' is negative
|
|
576
|
-
configure:14472: $? = 1
|
|
577
|
-
configure: failed program was:
|
|
578
|
-
| /* confdefs.h */
|
|
579
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
580
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
581
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
582
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
583
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
584
|
-
| #define PACKAGE_URL ""
|
|
585
|
-
| #define PACKAGE "nutcracker"
|
|
586
|
-
| #define VERSION "0.2.4"
|
|
587
|
-
| #define NC_VERSION_MAJOR 0
|
|
588
|
-
| #define NC_VERSION_MINOR 2
|
|
589
|
-
| #define NC_VERSION_PATCH 4
|
|
590
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
591
|
-
| #define STDC_HEADERS 1
|
|
592
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
593
|
-
| #define HAVE_SYS_STAT_H 1
|
|
594
|
-
| #define HAVE_STDLIB_H 1
|
|
595
|
-
| #define HAVE_STRING_H 1
|
|
596
|
-
| #define HAVE_MEMORY_H 1
|
|
597
|
-
| #define HAVE_STRINGS_H 1
|
|
598
|
-
| #define HAVE_INTTYPES_H 1
|
|
599
|
-
| #define HAVE_STDINT_H 1
|
|
600
|
-
| #define HAVE_UNISTD_H 1
|
|
601
|
-
| #define HAVE_DLFCN_H 1
|
|
602
|
-
| #define LT_OBJDIR ".libs/"
|
|
603
|
-
| /* end confdefs.h. */
|
|
604
|
-
| #include <stdio.h>
|
|
605
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
606
|
-
| # include <sys/types.h>
|
|
607
|
-
| #endif
|
|
608
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
609
|
-
| # include <sys/stat.h>
|
|
610
|
-
| #endif
|
|
611
|
-
| #ifdef STDC_HEADERS
|
|
612
|
-
| # include <stdlib.h>
|
|
613
|
-
| # include <stddef.h>
|
|
614
|
-
| #else
|
|
615
|
-
| # ifdef HAVE_STDLIB_H
|
|
616
|
-
| # include <stdlib.h>
|
|
617
|
-
| # endif
|
|
618
|
-
| #endif
|
|
619
|
-
| #ifdef HAVE_STRING_H
|
|
620
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
621
|
-
| # include <memory.h>
|
|
622
|
-
| # endif
|
|
623
|
-
| # include <string.h>
|
|
624
|
-
| #endif
|
|
625
|
-
| #ifdef HAVE_STRINGS_H
|
|
626
|
-
| # include <strings.h>
|
|
627
|
-
| #endif
|
|
628
|
-
| #ifdef HAVE_INTTYPES_H
|
|
629
|
-
| # include <inttypes.h>
|
|
630
|
-
| #endif
|
|
631
|
-
| #ifdef HAVE_STDINT_H
|
|
632
|
-
| # include <stdint.h>
|
|
633
|
-
| #endif
|
|
634
|
-
| #ifdef HAVE_UNISTD_H
|
|
635
|
-
| # include <unistd.h>
|
|
636
|
-
| #endif
|
|
637
|
-
| enum { N = 16 / 2 - 1 };
|
|
638
|
-
| int
|
|
639
|
-
| main ()
|
|
640
|
-
| {
|
|
641
|
-
| static int test_array [1 - 2 * !((int16_t) (((((int16_t) 1 << N) << N) - 1) * 2 + 1)
|
|
642
|
-
| < (int16_t) (((((int16_t) 1 << N) << N) - 1) * 2 + 2))];
|
|
643
|
-
| test_array [0] = 0;
|
|
644
|
-
| return test_array [0];
|
|
645
|
-
|
|
|
646
|
-
| ;
|
|
647
|
-
| return 0;
|
|
648
|
-
| }
|
|
649
|
-
configure:14472: result: yes
|
|
650
|
-
configure:14483: checking for int32_t
|
|
651
|
-
configure:14483: gcc -c -g -O2 conftest.c >&5
|
|
652
|
-
configure:14483: $? = 0
|
|
653
|
-
configure:14483: gcc -c -g -O2 conftest.c >&5
|
|
654
|
-
conftest.c: In function 'main':
|
|
655
|
-
conftest.c:65: warning: integer overflow in expression
|
|
656
|
-
conftest.c:65: error: size of array 'test_array' is negative
|
|
657
|
-
configure:14483: $? = 1
|
|
658
|
-
configure: failed program was:
|
|
659
|
-
| /* confdefs.h */
|
|
660
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
661
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
662
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
663
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
664
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
665
|
-
| #define PACKAGE_URL ""
|
|
666
|
-
| #define PACKAGE "nutcracker"
|
|
667
|
-
| #define VERSION "0.2.4"
|
|
668
|
-
| #define NC_VERSION_MAJOR 0
|
|
669
|
-
| #define NC_VERSION_MINOR 2
|
|
670
|
-
| #define NC_VERSION_PATCH 4
|
|
671
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
672
|
-
| #define STDC_HEADERS 1
|
|
673
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
674
|
-
| #define HAVE_SYS_STAT_H 1
|
|
675
|
-
| #define HAVE_STDLIB_H 1
|
|
676
|
-
| #define HAVE_STRING_H 1
|
|
677
|
-
| #define HAVE_MEMORY_H 1
|
|
678
|
-
| #define HAVE_STRINGS_H 1
|
|
679
|
-
| #define HAVE_INTTYPES_H 1
|
|
680
|
-
| #define HAVE_STDINT_H 1
|
|
681
|
-
| #define HAVE_UNISTD_H 1
|
|
682
|
-
| #define HAVE_DLFCN_H 1
|
|
683
|
-
| #define LT_OBJDIR ".libs/"
|
|
684
|
-
| /* end confdefs.h. */
|
|
685
|
-
| #include <stdio.h>
|
|
686
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
687
|
-
| # include <sys/types.h>
|
|
688
|
-
| #endif
|
|
689
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
690
|
-
| # include <sys/stat.h>
|
|
691
|
-
| #endif
|
|
692
|
-
| #ifdef STDC_HEADERS
|
|
693
|
-
| # include <stdlib.h>
|
|
694
|
-
| # include <stddef.h>
|
|
695
|
-
| #else
|
|
696
|
-
| # ifdef HAVE_STDLIB_H
|
|
697
|
-
| # include <stdlib.h>
|
|
698
|
-
| # endif
|
|
699
|
-
| #endif
|
|
700
|
-
| #ifdef HAVE_STRING_H
|
|
701
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
702
|
-
| # include <memory.h>
|
|
703
|
-
| # endif
|
|
704
|
-
| # include <string.h>
|
|
705
|
-
| #endif
|
|
706
|
-
| #ifdef HAVE_STRINGS_H
|
|
707
|
-
| # include <strings.h>
|
|
708
|
-
| #endif
|
|
709
|
-
| #ifdef HAVE_INTTYPES_H
|
|
710
|
-
| # include <inttypes.h>
|
|
711
|
-
| #endif
|
|
712
|
-
| #ifdef HAVE_STDINT_H
|
|
713
|
-
| # include <stdint.h>
|
|
714
|
-
| #endif
|
|
715
|
-
| #ifdef HAVE_UNISTD_H
|
|
716
|
-
| # include <unistd.h>
|
|
717
|
-
| #endif
|
|
718
|
-
| enum { N = 32 / 2 - 1 };
|
|
719
|
-
| int
|
|
720
|
-
| main ()
|
|
721
|
-
| {
|
|
722
|
-
| static int test_array [1 - 2 * !((int32_t) (((((int32_t) 1 << N) << N) - 1) * 2 + 1)
|
|
723
|
-
| < (int32_t) (((((int32_t) 1 << N) << N) - 1) * 2 + 2))];
|
|
724
|
-
| test_array [0] = 0;
|
|
725
|
-
| return test_array [0];
|
|
726
|
-
|
|
|
727
|
-
| ;
|
|
728
|
-
| return 0;
|
|
729
|
-
| }
|
|
730
|
-
configure:14483: result: yes
|
|
731
|
-
configure:14494: checking for int64_t
|
|
732
|
-
configure:14494: gcc -c -g -O2 conftest.c >&5
|
|
733
|
-
configure:14494: $? = 0
|
|
734
|
-
configure:14494: gcc -c -g -O2 conftest.c >&5
|
|
735
|
-
conftest.c: In function 'main':
|
|
736
|
-
conftest.c:65: warning: integer overflow in expression
|
|
737
|
-
conftest.c:65: error: size of array 'test_array' is negative
|
|
738
|
-
configure:14494: $? = 1
|
|
739
|
-
configure: failed program was:
|
|
740
|
-
| /* confdefs.h */
|
|
741
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
742
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
743
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
744
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
745
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
746
|
-
| #define PACKAGE_URL ""
|
|
747
|
-
| #define PACKAGE "nutcracker"
|
|
748
|
-
| #define VERSION "0.2.4"
|
|
749
|
-
| #define NC_VERSION_MAJOR 0
|
|
750
|
-
| #define NC_VERSION_MINOR 2
|
|
751
|
-
| #define NC_VERSION_PATCH 4
|
|
752
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
753
|
-
| #define STDC_HEADERS 1
|
|
754
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
755
|
-
| #define HAVE_SYS_STAT_H 1
|
|
756
|
-
| #define HAVE_STDLIB_H 1
|
|
757
|
-
| #define HAVE_STRING_H 1
|
|
758
|
-
| #define HAVE_MEMORY_H 1
|
|
759
|
-
| #define HAVE_STRINGS_H 1
|
|
760
|
-
| #define HAVE_INTTYPES_H 1
|
|
761
|
-
| #define HAVE_STDINT_H 1
|
|
762
|
-
| #define HAVE_UNISTD_H 1
|
|
763
|
-
| #define HAVE_DLFCN_H 1
|
|
764
|
-
| #define LT_OBJDIR ".libs/"
|
|
765
|
-
| /* end confdefs.h. */
|
|
766
|
-
| #include <stdio.h>
|
|
767
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
768
|
-
| # include <sys/types.h>
|
|
769
|
-
| #endif
|
|
770
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
771
|
-
| # include <sys/stat.h>
|
|
772
|
-
| #endif
|
|
773
|
-
| #ifdef STDC_HEADERS
|
|
774
|
-
| # include <stdlib.h>
|
|
775
|
-
| # include <stddef.h>
|
|
776
|
-
| #else
|
|
777
|
-
| # ifdef HAVE_STDLIB_H
|
|
778
|
-
| # include <stdlib.h>
|
|
779
|
-
| # endif
|
|
780
|
-
| #endif
|
|
781
|
-
| #ifdef HAVE_STRING_H
|
|
782
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
783
|
-
| # include <memory.h>
|
|
784
|
-
| # endif
|
|
785
|
-
| # include <string.h>
|
|
786
|
-
| #endif
|
|
787
|
-
| #ifdef HAVE_STRINGS_H
|
|
788
|
-
| # include <strings.h>
|
|
789
|
-
| #endif
|
|
790
|
-
| #ifdef HAVE_INTTYPES_H
|
|
791
|
-
| # include <inttypes.h>
|
|
792
|
-
| #endif
|
|
793
|
-
| #ifdef HAVE_STDINT_H
|
|
794
|
-
| # include <stdint.h>
|
|
795
|
-
| #endif
|
|
796
|
-
| #ifdef HAVE_UNISTD_H
|
|
797
|
-
| # include <unistd.h>
|
|
798
|
-
| #endif
|
|
799
|
-
| enum { N = 64 / 2 - 1 };
|
|
800
|
-
| int
|
|
801
|
-
| main ()
|
|
802
|
-
| {
|
|
803
|
-
| static int test_array [1 - 2 * !((int64_t) (((((int64_t) 1 << N) << N) - 1) * 2 + 1)
|
|
804
|
-
| < (int64_t) (((((int64_t) 1 << N) << N) - 1) * 2 + 2))];
|
|
805
|
-
| test_array [0] = 0;
|
|
806
|
-
| return test_array [0];
|
|
807
|
-
|
|
|
808
|
-
| ;
|
|
809
|
-
| return 0;
|
|
810
|
-
| }
|
|
811
|
-
configure:14494: result: yes
|
|
812
|
-
configure:14506: checking for unsigned long long int
|
|
813
|
-
configure:14545: gcc -o conftest -g -O2 conftest.c >&5
|
|
814
|
-
configure:14545: $? = 0
|
|
815
|
-
configure:14554: result: yes
|
|
816
|
-
configure:14564: checking for long long int
|
|
817
|
-
configure:14602: gcc -o conftest -g -O2 conftest.c >&5
|
|
818
|
-
configure:14602: $? = 0
|
|
819
|
-
configure:14602: ./conftest
|
|
820
|
-
configure:14602: $? = 0
|
|
821
|
-
configure:14614: result: yes
|
|
822
|
-
configure:14624: checking for intmax_t
|
|
823
|
-
configure:14624: gcc -c -g -O2 conftest.c >&5
|
|
824
|
-
configure:14624: $? = 0
|
|
825
|
-
configure:14624: gcc -c -g -O2 conftest.c >&5
|
|
826
|
-
conftest.c: In function 'main':
|
|
827
|
-
conftest.c:65: error: expected expression before ')' token
|
|
828
|
-
configure:14624: $? = 1
|
|
829
|
-
configure: failed program was:
|
|
830
|
-
| /* confdefs.h */
|
|
831
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
832
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
833
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
834
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
835
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
836
|
-
| #define PACKAGE_URL ""
|
|
837
|
-
| #define PACKAGE "nutcracker"
|
|
838
|
-
| #define VERSION "0.2.4"
|
|
839
|
-
| #define NC_VERSION_MAJOR 0
|
|
840
|
-
| #define NC_VERSION_MINOR 2
|
|
841
|
-
| #define NC_VERSION_PATCH 4
|
|
842
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
843
|
-
| #define STDC_HEADERS 1
|
|
844
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
845
|
-
| #define HAVE_SYS_STAT_H 1
|
|
846
|
-
| #define HAVE_STDLIB_H 1
|
|
847
|
-
| #define HAVE_STRING_H 1
|
|
848
|
-
| #define HAVE_MEMORY_H 1
|
|
849
|
-
| #define HAVE_STRINGS_H 1
|
|
850
|
-
| #define HAVE_INTTYPES_H 1
|
|
851
|
-
| #define HAVE_STDINT_H 1
|
|
852
|
-
| #define HAVE_UNISTD_H 1
|
|
853
|
-
| #define HAVE_DLFCN_H 1
|
|
854
|
-
| #define LT_OBJDIR ".libs/"
|
|
855
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
856
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
857
|
-
| /* end confdefs.h. */
|
|
858
|
-
| #include <stdio.h>
|
|
859
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
860
|
-
| # include <sys/types.h>
|
|
861
|
-
| #endif
|
|
862
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
863
|
-
| # include <sys/stat.h>
|
|
864
|
-
| #endif
|
|
865
|
-
| #ifdef STDC_HEADERS
|
|
866
|
-
| # include <stdlib.h>
|
|
867
|
-
| # include <stddef.h>
|
|
868
|
-
| #else
|
|
869
|
-
| # ifdef HAVE_STDLIB_H
|
|
870
|
-
| # include <stdlib.h>
|
|
871
|
-
| # endif
|
|
872
|
-
| #endif
|
|
873
|
-
| #ifdef HAVE_STRING_H
|
|
874
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
875
|
-
| # include <memory.h>
|
|
876
|
-
| # endif
|
|
877
|
-
| # include <string.h>
|
|
878
|
-
| #endif
|
|
879
|
-
| #ifdef HAVE_STRINGS_H
|
|
880
|
-
| # include <strings.h>
|
|
881
|
-
| #endif
|
|
882
|
-
| #ifdef HAVE_INTTYPES_H
|
|
883
|
-
| # include <inttypes.h>
|
|
884
|
-
| #endif
|
|
885
|
-
| #ifdef HAVE_STDINT_H
|
|
886
|
-
| # include <stdint.h>
|
|
887
|
-
| #endif
|
|
888
|
-
| #ifdef HAVE_UNISTD_H
|
|
889
|
-
| # include <unistd.h>
|
|
890
|
-
| #endif
|
|
891
|
-
| int
|
|
892
|
-
| main ()
|
|
893
|
-
| {
|
|
894
|
-
| if (sizeof ((intmax_t)))
|
|
895
|
-
| return 0;
|
|
896
|
-
| ;
|
|
897
|
-
| return 0;
|
|
898
|
-
| }
|
|
899
|
-
configure:14624: result: yes
|
|
900
|
-
configure:14642: checking for intptr_t
|
|
901
|
-
configure:14642: gcc -c -g -O2 conftest.c >&5
|
|
902
|
-
configure:14642: $? = 0
|
|
903
|
-
configure:14642: gcc -c -g -O2 conftest.c >&5
|
|
904
|
-
conftest.c: In function 'main':
|
|
905
|
-
conftest.c:66: error: expected expression before ')' token
|
|
906
|
-
configure:14642: $? = 1
|
|
907
|
-
configure: failed program was:
|
|
908
|
-
| /* confdefs.h */
|
|
909
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
910
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
911
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
912
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
913
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
914
|
-
| #define PACKAGE_URL ""
|
|
915
|
-
| #define PACKAGE "nutcracker"
|
|
916
|
-
| #define VERSION "0.2.4"
|
|
917
|
-
| #define NC_VERSION_MAJOR 0
|
|
918
|
-
| #define NC_VERSION_MINOR 2
|
|
919
|
-
| #define NC_VERSION_PATCH 4
|
|
920
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
921
|
-
| #define STDC_HEADERS 1
|
|
922
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
923
|
-
| #define HAVE_SYS_STAT_H 1
|
|
924
|
-
| #define HAVE_STDLIB_H 1
|
|
925
|
-
| #define HAVE_STRING_H 1
|
|
926
|
-
| #define HAVE_MEMORY_H 1
|
|
927
|
-
| #define HAVE_STRINGS_H 1
|
|
928
|
-
| #define HAVE_INTTYPES_H 1
|
|
929
|
-
| #define HAVE_STDINT_H 1
|
|
930
|
-
| #define HAVE_UNISTD_H 1
|
|
931
|
-
| #define HAVE_DLFCN_H 1
|
|
932
|
-
| #define LT_OBJDIR ".libs/"
|
|
933
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
934
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
935
|
-
| #define HAVE_INTMAX_T 1
|
|
936
|
-
| /* end confdefs.h. */
|
|
937
|
-
| #include <stdio.h>
|
|
938
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
939
|
-
| # include <sys/types.h>
|
|
940
|
-
| #endif
|
|
941
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
942
|
-
| # include <sys/stat.h>
|
|
943
|
-
| #endif
|
|
944
|
-
| #ifdef STDC_HEADERS
|
|
945
|
-
| # include <stdlib.h>
|
|
946
|
-
| # include <stddef.h>
|
|
947
|
-
| #else
|
|
948
|
-
| # ifdef HAVE_STDLIB_H
|
|
949
|
-
| # include <stdlib.h>
|
|
950
|
-
| # endif
|
|
951
|
-
| #endif
|
|
952
|
-
| #ifdef HAVE_STRING_H
|
|
953
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
954
|
-
| # include <memory.h>
|
|
955
|
-
| # endif
|
|
956
|
-
| # include <string.h>
|
|
957
|
-
| #endif
|
|
958
|
-
| #ifdef HAVE_STRINGS_H
|
|
959
|
-
| # include <strings.h>
|
|
960
|
-
| #endif
|
|
961
|
-
| #ifdef HAVE_INTTYPES_H
|
|
962
|
-
| # include <inttypes.h>
|
|
963
|
-
| #endif
|
|
964
|
-
| #ifdef HAVE_STDINT_H
|
|
965
|
-
| # include <stdint.h>
|
|
966
|
-
| #endif
|
|
967
|
-
| #ifdef HAVE_UNISTD_H
|
|
968
|
-
| # include <unistd.h>
|
|
969
|
-
| #endif
|
|
970
|
-
| int
|
|
971
|
-
| main ()
|
|
972
|
-
| {
|
|
973
|
-
| if (sizeof ((intptr_t)))
|
|
974
|
-
| return 0;
|
|
975
|
-
| ;
|
|
976
|
-
| return 0;
|
|
977
|
-
| }
|
|
978
|
-
configure:14642: result: yes
|
|
979
|
-
configure:14677: checking for uint8_t
|
|
980
|
-
configure:14677: gcc -c -g -O2 conftest.c >&5
|
|
981
|
-
configure:14677: $? = 0
|
|
982
|
-
configure:14677: result: yes
|
|
983
|
-
configure:14691: checking for uint16_t
|
|
984
|
-
configure:14691: gcc -c -g -O2 conftest.c >&5
|
|
985
|
-
configure:14691: $? = 0
|
|
986
|
-
configure:14691: result: yes
|
|
987
|
-
configure:14703: checking for uint32_t
|
|
988
|
-
configure:14703: gcc -c -g -O2 conftest.c >&5
|
|
989
|
-
configure:14703: $? = 0
|
|
990
|
-
configure:14703: result: yes
|
|
991
|
-
configure:14717: checking for uint64_t
|
|
992
|
-
configure:14717: gcc -c -g -O2 conftest.c >&5
|
|
993
|
-
configure:14717: $? = 0
|
|
994
|
-
configure:14717: result: yes
|
|
995
|
-
configure:14733: checking for uintmax_t
|
|
996
|
-
configure:14733: gcc -c -g -O2 conftest.c >&5
|
|
997
|
-
configure:14733: $? = 0
|
|
998
|
-
configure:14733: gcc -c -g -O2 conftest.c >&5
|
|
999
|
-
conftest.c: In function 'main':
|
|
1000
|
-
conftest.c:67: error: expected expression before ')' token
|
|
1001
|
-
configure:14733: $? = 1
|
|
1002
|
-
configure: failed program was:
|
|
1003
|
-
| /* confdefs.h */
|
|
1004
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
1005
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
1006
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
1007
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
1008
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
1009
|
-
| #define PACKAGE_URL ""
|
|
1010
|
-
| #define PACKAGE "nutcracker"
|
|
1011
|
-
| #define VERSION "0.2.4"
|
|
1012
|
-
| #define NC_VERSION_MAJOR 0
|
|
1013
|
-
| #define NC_VERSION_MINOR 2
|
|
1014
|
-
| #define NC_VERSION_PATCH 4
|
|
1015
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
1016
|
-
| #define STDC_HEADERS 1
|
|
1017
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
1018
|
-
| #define HAVE_SYS_STAT_H 1
|
|
1019
|
-
| #define HAVE_STDLIB_H 1
|
|
1020
|
-
| #define HAVE_STRING_H 1
|
|
1021
|
-
| #define HAVE_MEMORY_H 1
|
|
1022
|
-
| #define HAVE_STRINGS_H 1
|
|
1023
|
-
| #define HAVE_INTTYPES_H 1
|
|
1024
|
-
| #define HAVE_STDINT_H 1
|
|
1025
|
-
| #define HAVE_UNISTD_H 1
|
|
1026
|
-
| #define HAVE_DLFCN_H 1
|
|
1027
|
-
| #define LT_OBJDIR ".libs/"
|
|
1028
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
1029
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
1030
|
-
| #define HAVE_INTMAX_T 1
|
|
1031
|
-
| #define HAVE_INTPTR_T 1
|
|
1032
|
-
| /* end confdefs.h. */
|
|
1033
|
-
| #include <stdio.h>
|
|
1034
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
1035
|
-
| # include <sys/types.h>
|
|
1036
|
-
| #endif
|
|
1037
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
1038
|
-
| # include <sys/stat.h>
|
|
1039
|
-
| #endif
|
|
1040
|
-
| #ifdef STDC_HEADERS
|
|
1041
|
-
| # include <stdlib.h>
|
|
1042
|
-
| # include <stddef.h>
|
|
1043
|
-
| #else
|
|
1044
|
-
| # ifdef HAVE_STDLIB_H
|
|
1045
|
-
| # include <stdlib.h>
|
|
1046
|
-
| # endif
|
|
1047
|
-
| #endif
|
|
1048
|
-
| #ifdef HAVE_STRING_H
|
|
1049
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
1050
|
-
| # include <memory.h>
|
|
1051
|
-
| # endif
|
|
1052
|
-
| # include <string.h>
|
|
1053
|
-
| #endif
|
|
1054
|
-
| #ifdef HAVE_STRINGS_H
|
|
1055
|
-
| # include <strings.h>
|
|
1056
|
-
| #endif
|
|
1057
|
-
| #ifdef HAVE_INTTYPES_H
|
|
1058
|
-
| # include <inttypes.h>
|
|
1059
|
-
| #endif
|
|
1060
|
-
| #ifdef HAVE_STDINT_H
|
|
1061
|
-
| # include <stdint.h>
|
|
1062
|
-
| #endif
|
|
1063
|
-
| #ifdef HAVE_UNISTD_H
|
|
1064
|
-
| # include <unistd.h>
|
|
1065
|
-
| #endif
|
|
1066
|
-
| int
|
|
1067
|
-
| main ()
|
|
1068
|
-
| {
|
|
1069
|
-
| if (sizeof ((uintmax_t)))
|
|
1070
|
-
| return 0;
|
|
1071
|
-
| ;
|
|
1072
|
-
| return 0;
|
|
1073
|
-
| }
|
|
1074
|
-
configure:14733: result: yes
|
|
1075
|
-
configure:14751: checking for uintptr_t
|
|
1076
|
-
configure:14751: gcc -c -g -O2 conftest.c >&5
|
|
1077
|
-
configure:14751: $? = 0
|
|
1078
|
-
configure:14751: gcc -c -g -O2 conftest.c >&5
|
|
1079
|
-
conftest.c: In function 'main':
|
|
1080
|
-
conftest.c:68: error: expected expression before ')' token
|
|
1081
|
-
configure:14751: $? = 1
|
|
1082
|
-
configure: failed program was:
|
|
1083
|
-
| /* confdefs.h */
|
|
1084
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
1085
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
1086
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
1087
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
1088
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
1089
|
-
| #define PACKAGE_URL ""
|
|
1090
|
-
| #define PACKAGE "nutcracker"
|
|
1091
|
-
| #define VERSION "0.2.4"
|
|
1092
|
-
| #define NC_VERSION_MAJOR 0
|
|
1093
|
-
| #define NC_VERSION_MINOR 2
|
|
1094
|
-
| #define NC_VERSION_PATCH 4
|
|
1095
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
1096
|
-
| #define STDC_HEADERS 1
|
|
1097
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
1098
|
-
| #define HAVE_SYS_STAT_H 1
|
|
1099
|
-
| #define HAVE_STDLIB_H 1
|
|
1100
|
-
| #define HAVE_STRING_H 1
|
|
1101
|
-
| #define HAVE_MEMORY_H 1
|
|
1102
|
-
| #define HAVE_STRINGS_H 1
|
|
1103
|
-
| #define HAVE_INTTYPES_H 1
|
|
1104
|
-
| #define HAVE_STDINT_H 1
|
|
1105
|
-
| #define HAVE_UNISTD_H 1
|
|
1106
|
-
| #define HAVE_DLFCN_H 1
|
|
1107
|
-
| #define LT_OBJDIR ".libs/"
|
|
1108
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
1109
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
1110
|
-
| #define HAVE_INTMAX_T 1
|
|
1111
|
-
| #define HAVE_INTPTR_T 1
|
|
1112
|
-
| #define HAVE_UINTMAX_T 1
|
|
1113
|
-
| /* end confdefs.h. */
|
|
1114
|
-
| #include <stdio.h>
|
|
1115
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
1116
|
-
| # include <sys/types.h>
|
|
1117
|
-
| #endif
|
|
1118
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
1119
|
-
| # include <sys/stat.h>
|
|
1120
|
-
| #endif
|
|
1121
|
-
| #ifdef STDC_HEADERS
|
|
1122
|
-
| # include <stdlib.h>
|
|
1123
|
-
| # include <stddef.h>
|
|
1124
|
-
| #else
|
|
1125
|
-
| # ifdef HAVE_STDLIB_H
|
|
1126
|
-
| # include <stdlib.h>
|
|
1127
|
-
| # endif
|
|
1128
|
-
| #endif
|
|
1129
|
-
| #ifdef HAVE_STRING_H
|
|
1130
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
1131
|
-
| # include <memory.h>
|
|
1132
|
-
| # endif
|
|
1133
|
-
| # include <string.h>
|
|
1134
|
-
| #endif
|
|
1135
|
-
| #ifdef HAVE_STRINGS_H
|
|
1136
|
-
| # include <strings.h>
|
|
1137
|
-
| #endif
|
|
1138
|
-
| #ifdef HAVE_INTTYPES_H
|
|
1139
|
-
| # include <inttypes.h>
|
|
1140
|
-
| #endif
|
|
1141
|
-
| #ifdef HAVE_STDINT_H
|
|
1142
|
-
| # include <stdint.h>
|
|
1143
|
-
| #endif
|
|
1144
|
-
| #ifdef HAVE_UNISTD_H
|
|
1145
|
-
| # include <unistd.h>
|
|
1146
|
-
| #endif
|
|
1147
|
-
| int
|
|
1148
|
-
| main ()
|
|
1149
|
-
| {
|
|
1150
|
-
| if (sizeof ((uintptr_t)))
|
|
1151
|
-
| return 0;
|
|
1152
|
-
| ;
|
|
1153
|
-
| return 0;
|
|
1154
|
-
| }
|
|
1155
|
-
configure:14751: result: yes
|
|
1156
|
-
configure:14787: checking for off_t
|
|
1157
|
-
configure:14787: gcc -c -g -O2 conftest.c >&5
|
|
1158
|
-
configure:14787: $? = 0
|
|
1159
|
-
configure:14787: gcc -c -g -O2 conftest.c >&5
|
|
1160
|
-
conftest.c: In function 'main':
|
|
1161
|
-
conftest.c:69: error: expected expression before ')' token
|
|
1162
|
-
configure:14787: $? = 1
|
|
1163
|
-
configure: failed program was:
|
|
1164
|
-
| /* confdefs.h */
|
|
1165
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
1166
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
1167
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
1168
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
1169
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
1170
|
-
| #define PACKAGE_URL ""
|
|
1171
|
-
| #define PACKAGE "nutcracker"
|
|
1172
|
-
| #define VERSION "0.2.4"
|
|
1173
|
-
| #define NC_VERSION_MAJOR 0
|
|
1174
|
-
| #define NC_VERSION_MINOR 2
|
|
1175
|
-
| #define NC_VERSION_PATCH 4
|
|
1176
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
1177
|
-
| #define STDC_HEADERS 1
|
|
1178
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
1179
|
-
| #define HAVE_SYS_STAT_H 1
|
|
1180
|
-
| #define HAVE_STDLIB_H 1
|
|
1181
|
-
| #define HAVE_STRING_H 1
|
|
1182
|
-
| #define HAVE_MEMORY_H 1
|
|
1183
|
-
| #define HAVE_STRINGS_H 1
|
|
1184
|
-
| #define HAVE_INTTYPES_H 1
|
|
1185
|
-
| #define HAVE_STDINT_H 1
|
|
1186
|
-
| #define HAVE_UNISTD_H 1
|
|
1187
|
-
| #define HAVE_DLFCN_H 1
|
|
1188
|
-
| #define LT_OBJDIR ".libs/"
|
|
1189
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
1190
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
1191
|
-
| #define HAVE_INTMAX_T 1
|
|
1192
|
-
| #define HAVE_INTPTR_T 1
|
|
1193
|
-
| #define HAVE_UINTMAX_T 1
|
|
1194
|
-
| #define HAVE_UINTPTR_T 1
|
|
1195
|
-
| /* end confdefs.h. */
|
|
1196
|
-
| #include <stdio.h>
|
|
1197
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
1198
|
-
| # include <sys/types.h>
|
|
1199
|
-
| #endif
|
|
1200
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
1201
|
-
| # include <sys/stat.h>
|
|
1202
|
-
| #endif
|
|
1203
|
-
| #ifdef STDC_HEADERS
|
|
1204
|
-
| # include <stdlib.h>
|
|
1205
|
-
| # include <stddef.h>
|
|
1206
|
-
| #else
|
|
1207
|
-
| # ifdef HAVE_STDLIB_H
|
|
1208
|
-
| # include <stdlib.h>
|
|
1209
|
-
| # endif
|
|
1210
|
-
| #endif
|
|
1211
|
-
| #ifdef HAVE_STRING_H
|
|
1212
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
1213
|
-
| # include <memory.h>
|
|
1214
|
-
| # endif
|
|
1215
|
-
| # include <string.h>
|
|
1216
|
-
| #endif
|
|
1217
|
-
| #ifdef HAVE_STRINGS_H
|
|
1218
|
-
| # include <strings.h>
|
|
1219
|
-
| #endif
|
|
1220
|
-
| #ifdef HAVE_INTTYPES_H
|
|
1221
|
-
| # include <inttypes.h>
|
|
1222
|
-
| #endif
|
|
1223
|
-
| #ifdef HAVE_STDINT_H
|
|
1224
|
-
| # include <stdint.h>
|
|
1225
|
-
| #endif
|
|
1226
|
-
| #ifdef HAVE_UNISTD_H
|
|
1227
|
-
| # include <unistd.h>
|
|
1228
|
-
| #endif
|
|
1229
|
-
| int
|
|
1230
|
-
| main ()
|
|
1231
|
-
| {
|
|
1232
|
-
| if (sizeof ((off_t)))
|
|
1233
|
-
| return 0;
|
|
1234
|
-
| ;
|
|
1235
|
-
| return 0;
|
|
1236
|
-
| }
|
|
1237
|
-
configure:14787: result: yes
|
|
1238
|
-
configure:14798: checking for pid_t
|
|
1239
|
-
configure:14798: gcc -c -g -O2 conftest.c >&5
|
|
1240
|
-
configure:14798: $? = 0
|
|
1241
|
-
configure:14798: gcc -c -g -O2 conftest.c >&5
|
|
1242
|
-
conftest.c: In function 'main':
|
|
1243
|
-
conftest.c:69: error: expected expression before ')' token
|
|
1244
|
-
configure:14798: $? = 1
|
|
1245
|
-
configure: failed program was:
|
|
1246
|
-
| /* confdefs.h */
|
|
1247
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
1248
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
1249
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
1250
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
1251
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
1252
|
-
| #define PACKAGE_URL ""
|
|
1253
|
-
| #define PACKAGE "nutcracker"
|
|
1254
|
-
| #define VERSION "0.2.4"
|
|
1255
|
-
| #define NC_VERSION_MAJOR 0
|
|
1256
|
-
| #define NC_VERSION_MINOR 2
|
|
1257
|
-
| #define NC_VERSION_PATCH 4
|
|
1258
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
1259
|
-
| #define STDC_HEADERS 1
|
|
1260
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
1261
|
-
| #define HAVE_SYS_STAT_H 1
|
|
1262
|
-
| #define HAVE_STDLIB_H 1
|
|
1263
|
-
| #define HAVE_STRING_H 1
|
|
1264
|
-
| #define HAVE_MEMORY_H 1
|
|
1265
|
-
| #define HAVE_STRINGS_H 1
|
|
1266
|
-
| #define HAVE_INTTYPES_H 1
|
|
1267
|
-
| #define HAVE_STDINT_H 1
|
|
1268
|
-
| #define HAVE_UNISTD_H 1
|
|
1269
|
-
| #define HAVE_DLFCN_H 1
|
|
1270
|
-
| #define LT_OBJDIR ".libs/"
|
|
1271
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
1272
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
1273
|
-
| #define HAVE_INTMAX_T 1
|
|
1274
|
-
| #define HAVE_INTPTR_T 1
|
|
1275
|
-
| #define HAVE_UINTMAX_T 1
|
|
1276
|
-
| #define HAVE_UINTPTR_T 1
|
|
1277
|
-
| /* end confdefs.h. */
|
|
1278
|
-
| #include <stdio.h>
|
|
1279
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
1280
|
-
| # include <sys/types.h>
|
|
1281
|
-
| #endif
|
|
1282
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
1283
|
-
| # include <sys/stat.h>
|
|
1284
|
-
| #endif
|
|
1285
|
-
| #ifdef STDC_HEADERS
|
|
1286
|
-
| # include <stdlib.h>
|
|
1287
|
-
| # include <stddef.h>
|
|
1288
|
-
| #else
|
|
1289
|
-
| # ifdef HAVE_STDLIB_H
|
|
1290
|
-
| # include <stdlib.h>
|
|
1291
|
-
| # endif
|
|
1292
|
-
| #endif
|
|
1293
|
-
| #ifdef HAVE_STRING_H
|
|
1294
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
1295
|
-
| # include <memory.h>
|
|
1296
|
-
| # endif
|
|
1297
|
-
| # include <string.h>
|
|
1298
|
-
| #endif
|
|
1299
|
-
| #ifdef HAVE_STRINGS_H
|
|
1300
|
-
| # include <strings.h>
|
|
1301
|
-
| #endif
|
|
1302
|
-
| #ifdef HAVE_INTTYPES_H
|
|
1303
|
-
| # include <inttypes.h>
|
|
1304
|
-
| #endif
|
|
1305
|
-
| #ifdef HAVE_STDINT_H
|
|
1306
|
-
| # include <stdint.h>
|
|
1307
|
-
| #endif
|
|
1308
|
-
| #ifdef HAVE_UNISTD_H
|
|
1309
|
-
| # include <unistd.h>
|
|
1310
|
-
| #endif
|
|
1311
|
-
| int
|
|
1312
|
-
| main ()
|
|
1313
|
-
| {
|
|
1314
|
-
| if (sizeof ((pid_t)))
|
|
1315
|
-
| return 0;
|
|
1316
|
-
| ;
|
|
1317
|
-
| return 0;
|
|
1318
|
-
| }
|
|
1319
|
-
configure:14798: result: yes
|
|
1320
|
-
configure:14809: checking for size_t
|
|
1321
|
-
configure:14809: gcc -c -g -O2 conftest.c >&5
|
|
1322
|
-
configure:14809: $? = 0
|
|
1323
|
-
configure:14809: gcc -c -g -O2 conftest.c >&5
|
|
1324
|
-
conftest.c: In function 'main':
|
|
1325
|
-
conftest.c:69: error: expected expression before ')' token
|
|
1326
|
-
configure:14809: $? = 1
|
|
1327
|
-
configure: failed program was:
|
|
1328
|
-
| /* confdefs.h */
|
|
1329
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
1330
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
1331
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
1332
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
1333
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
1334
|
-
| #define PACKAGE_URL ""
|
|
1335
|
-
| #define PACKAGE "nutcracker"
|
|
1336
|
-
| #define VERSION "0.2.4"
|
|
1337
|
-
| #define NC_VERSION_MAJOR 0
|
|
1338
|
-
| #define NC_VERSION_MINOR 2
|
|
1339
|
-
| #define NC_VERSION_PATCH 4
|
|
1340
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
1341
|
-
| #define STDC_HEADERS 1
|
|
1342
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
1343
|
-
| #define HAVE_SYS_STAT_H 1
|
|
1344
|
-
| #define HAVE_STDLIB_H 1
|
|
1345
|
-
| #define HAVE_STRING_H 1
|
|
1346
|
-
| #define HAVE_MEMORY_H 1
|
|
1347
|
-
| #define HAVE_STRINGS_H 1
|
|
1348
|
-
| #define HAVE_INTTYPES_H 1
|
|
1349
|
-
| #define HAVE_STDINT_H 1
|
|
1350
|
-
| #define HAVE_UNISTD_H 1
|
|
1351
|
-
| #define HAVE_DLFCN_H 1
|
|
1352
|
-
| #define LT_OBJDIR ".libs/"
|
|
1353
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
1354
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
1355
|
-
| #define HAVE_INTMAX_T 1
|
|
1356
|
-
| #define HAVE_INTPTR_T 1
|
|
1357
|
-
| #define HAVE_UINTMAX_T 1
|
|
1358
|
-
| #define HAVE_UINTPTR_T 1
|
|
1359
|
-
| /* end confdefs.h. */
|
|
1360
|
-
| #include <stdio.h>
|
|
1361
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
1362
|
-
| # include <sys/types.h>
|
|
1363
|
-
| #endif
|
|
1364
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
1365
|
-
| # include <sys/stat.h>
|
|
1366
|
-
| #endif
|
|
1367
|
-
| #ifdef STDC_HEADERS
|
|
1368
|
-
| # include <stdlib.h>
|
|
1369
|
-
| # include <stddef.h>
|
|
1370
|
-
| #else
|
|
1371
|
-
| # ifdef HAVE_STDLIB_H
|
|
1372
|
-
| # include <stdlib.h>
|
|
1373
|
-
| # endif
|
|
1374
|
-
| #endif
|
|
1375
|
-
| #ifdef HAVE_STRING_H
|
|
1376
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
1377
|
-
| # include <memory.h>
|
|
1378
|
-
| # endif
|
|
1379
|
-
| # include <string.h>
|
|
1380
|
-
| #endif
|
|
1381
|
-
| #ifdef HAVE_STRINGS_H
|
|
1382
|
-
| # include <strings.h>
|
|
1383
|
-
| #endif
|
|
1384
|
-
| #ifdef HAVE_INTTYPES_H
|
|
1385
|
-
| # include <inttypes.h>
|
|
1386
|
-
| #endif
|
|
1387
|
-
| #ifdef HAVE_STDINT_H
|
|
1388
|
-
| # include <stdint.h>
|
|
1389
|
-
| #endif
|
|
1390
|
-
| #ifdef HAVE_UNISTD_H
|
|
1391
|
-
| # include <unistd.h>
|
|
1392
|
-
| #endif
|
|
1393
|
-
| int
|
|
1394
|
-
| main ()
|
|
1395
|
-
| {
|
|
1396
|
-
| if (sizeof ((size_t)))
|
|
1397
|
-
| return 0;
|
|
1398
|
-
| ;
|
|
1399
|
-
| return 0;
|
|
1400
|
-
| }
|
|
1401
|
-
configure:14809: result: yes
|
|
1402
|
-
configure:14820: checking for ssize_t
|
|
1403
|
-
configure:14820: gcc -c -g -O2 conftest.c >&5
|
|
1404
|
-
configure:14820: $? = 0
|
|
1405
|
-
configure:14820: gcc -c -g -O2 conftest.c >&5
|
|
1406
|
-
conftest.c: In function 'main':
|
|
1407
|
-
conftest.c:69: error: expected expression before ')' token
|
|
1408
|
-
configure:14820: $? = 1
|
|
1409
|
-
configure: failed program was:
|
|
1410
|
-
| /* confdefs.h */
|
|
1411
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
1412
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
1413
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
1414
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
1415
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
1416
|
-
| #define PACKAGE_URL ""
|
|
1417
|
-
| #define PACKAGE "nutcracker"
|
|
1418
|
-
| #define VERSION "0.2.4"
|
|
1419
|
-
| #define NC_VERSION_MAJOR 0
|
|
1420
|
-
| #define NC_VERSION_MINOR 2
|
|
1421
|
-
| #define NC_VERSION_PATCH 4
|
|
1422
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
1423
|
-
| #define STDC_HEADERS 1
|
|
1424
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
1425
|
-
| #define HAVE_SYS_STAT_H 1
|
|
1426
|
-
| #define HAVE_STDLIB_H 1
|
|
1427
|
-
| #define HAVE_STRING_H 1
|
|
1428
|
-
| #define HAVE_MEMORY_H 1
|
|
1429
|
-
| #define HAVE_STRINGS_H 1
|
|
1430
|
-
| #define HAVE_INTTYPES_H 1
|
|
1431
|
-
| #define HAVE_STDINT_H 1
|
|
1432
|
-
| #define HAVE_UNISTD_H 1
|
|
1433
|
-
| #define HAVE_DLFCN_H 1
|
|
1434
|
-
| #define LT_OBJDIR ".libs/"
|
|
1435
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
1436
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
1437
|
-
| #define HAVE_INTMAX_T 1
|
|
1438
|
-
| #define HAVE_INTPTR_T 1
|
|
1439
|
-
| #define HAVE_UINTMAX_T 1
|
|
1440
|
-
| #define HAVE_UINTPTR_T 1
|
|
1441
|
-
| /* end confdefs.h. */
|
|
1442
|
-
| #include <stdio.h>
|
|
1443
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
1444
|
-
| # include <sys/types.h>
|
|
1445
|
-
| #endif
|
|
1446
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
1447
|
-
| # include <sys/stat.h>
|
|
1448
|
-
| #endif
|
|
1449
|
-
| #ifdef STDC_HEADERS
|
|
1450
|
-
| # include <stdlib.h>
|
|
1451
|
-
| # include <stddef.h>
|
|
1452
|
-
| #else
|
|
1453
|
-
| # ifdef HAVE_STDLIB_H
|
|
1454
|
-
| # include <stdlib.h>
|
|
1455
|
-
| # endif
|
|
1456
|
-
| #endif
|
|
1457
|
-
| #ifdef HAVE_STRING_H
|
|
1458
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
1459
|
-
| # include <memory.h>
|
|
1460
|
-
| # endif
|
|
1461
|
-
| # include <string.h>
|
|
1462
|
-
| #endif
|
|
1463
|
-
| #ifdef HAVE_STRINGS_H
|
|
1464
|
-
| # include <strings.h>
|
|
1465
|
-
| #endif
|
|
1466
|
-
| #ifdef HAVE_INTTYPES_H
|
|
1467
|
-
| # include <inttypes.h>
|
|
1468
|
-
| #endif
|
|
1469
|
-
| #ifdef HAVE_STDINT_H
|
|
1470
|
-
| # include <stdint.h>
|
|
1471
|
-
| #endif
|
|
1472
|
-
| #ifdef HAVE_UNISTD_H
|
|
1473
|
-
| # include <unistd.h>
|
|
1474
|
-
| #endif
|
|
1475
|
-
| int
|
|
1476
|
-
| main ()
|
|
1477
|
-
| {
|
|
1478
|
-
| if (sizeof ((ssize_t)))
|
|
1479
|
-
| return 0;
|
|
1480
|
-
| ;
|
|
1481
|
-
| return 0;
|
|
1482
|
-
| }
|
|
1483
|
-
configure:14820: result: yes
|
|
1484
|
-
configure:14832: checking whether byte ordering is bigendian
|
|
1485
|
-
configure:14847: gcc -c -g -O2 conftest.c >&5
|
|
1486
|
-
configure:14847: $? = 0
|
|
1487
|
-
configure:14892: gcc -c -g -O2 conftest.c >&5
|
|
1488
|
-
configure:14892: $? = 0
|
|
1489
|
-
configure:14910: gcc -c -g -O2 conftest.c >&5
|
|
1490
|
-
conftest.c: In function 'main':
|
|
1491
|
-
conftest.c:40: error: 'not' undeclared (first use in this function)
|
|
1492
|
-
conftest.c:40: error: (Each undeclared identifier is reported only once
|
|
1493
|
-
conftest.c:40: error: for each function it appears in.)
|
|
1494
|
-
conftest.c:40: error: expected ';' before 'big'
|
|
1495
|
-
configure:14910: $? = 1
|
|
1496
|
-
configure: failed program was:
|
|
1497
|
-
| /* confdefs.h */
|
|
1498
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
1499
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
1500
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
1501
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
1502
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
1503
|
-
| #define PACKAGE_URL ""
|
|
1504
|
-
| #define PACKAGE "nutcracker"
|
|
1505
|
-
| #define VERSION "0.2.4"
|
|
1506
|
-
| #define NC_VERSION_MAJOR 0
|
|
1507
|
-
| #define NC_VERSION_MINOR 2
|
|
1508
|
-
| #define NC_VERSION_PATCH 4
|
|
1509
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
1510
|
-
| #define STDC_HEADERS 1
|
|
1511
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
1512
|
-
| #define HAVE_SYS_STAT_H 1
|
|
1513
|
-
| #define HAVE_STDLIB_H 1
|
|
1514
|
-
| #define HAVE_STRING_H 1
|
|
1515
|
-
| #define HAVE_MEMORY_H 1
|
|
1516
|
-
| #define HAVE_STRINGS_H 1
|
|
1517
|
-
| #define HAVE_INTTYPES_H 1
|
|
1518
|
-
| #define HAVE_STDINT_H 1
|
|
1519
|
-
| #define HAVE_UNISTD_H 1
|
|
1520
|
-
| #define HAVE_DLFCN_H 1
|
|
1521
|
-
| #define LT_OBJDIR ".libs/"
|
|
1522
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
1523
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
1524
|
-
| #define HAVE_INTMAX_T 1
|
|
1525
|
-
| #define HAVE_INTPTR_T 1
|
|
1526
|
-
| #define HAVE_UINTMAX_T 1
|
|
1527
|
-
| #define HAVE_UINTPTR_T 1
|
|
1528
|
-
| /* end confdefs.h. */
|
|
1529
|
-
| #include <sys/types.h>
|
|
1530
|
-
| #include <sys/param.h>
|
|
1531
|
-
|
|
|
1532
|
-
| int
|
|
1533
|
-
| main ()
|
|
1534
|
-
| {
|
|
1535
|
-
| #if BYTE_ORDER != BIG_ENDIAN
|
|
1536
|
-
| not big endian
|
|
1537
|
-
| #endif
|
|
1538
|
-
|
|
|
1539
|
-
| ;
|
|
1540
|
-
| return 0;
|
|
1541
|
-
| }
|
|
1542
|
-
configure:15038: result: no
|
|
1543
|
-
configure:15058: checking for stdbool.h that conforms to C99
|
|
1544
|
-
configure:15125: gcc -c -g -O2 conftest.c >&5
|
|
1545
|
-
configure:15125: $? = 0
|
|
1546
|
-
configure:15132: result: yes
|
|
1547
|
-
configure:15134: checking for _Bool
|
|
1548
|
-
configure:15134: gcc -c -g -O2 conftest.c >&5
|
|
1549
|
-
configure:15134: $? = 0
|
|
1550
|
-
configure:15134: gcc -c -g -O2 conftest.c >&5
|
|
1551
|
-
conftest.c: In function 'main':
|
|
1552
|
-
conftest.c:70: error: expected expression before ')' token
|
|
1553
|
-
configure:15134: $? = 1
|
|
1554
|
-
configure: failed program was:
|
|
1555
|
-
| /* confdefs.h */
|
|
1556
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
1557
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
1558
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
1559
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
1560
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
1561
|
-
| #define PACKAGE_URL ""
|
|
1562
|
-
| #define PACKAGE "nutcracker"
|
|
1563
|
-
| #define VERSION "0.2.4"
|
|
1564
|
-
| #define NC_VERSION_MAJOR 0
|
|
1565
|
-
| #define NC_VERSION_MINOR 2
|
|
1566
|
-
| #define NC_VERSION_PATCH 4
|
|
1567
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
1568
|
-
| #define STDC_HEADERS 1
|
|
1569
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
1570
|
-
| #define HAVE_SYS_STAT_H 1
|
|
1571
|
-
| #define HAVE_STDLIB_H 1
|
|
1572
|
-
| #define HAVE_STRING_H 1
|
|
1573
|
-
| #define HAVE_MEMORY_H 1
|
|
1574
|
-
| #define HAVE_STRINGS_H 1
|
|
1575
|
-
| #define HAVE_INTTYPES_H 1
|
|
1576
|
-
| #define HAVE_STDINT_H 1
|
|
1577
|
-
| #define HAVE_UNISTD_H 1
|
|
1578
|
-
| #define HAVE_DLFCN_H 1
|
|
1579
|
-
| #define LT_OBJDIR ".libs/"
|
|
1580
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
1581
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
1582
|
-
| #define HAVE_INTMAX_T 1
|
|
1583
|
-
| #define HAVE_INTPTR_T 1
|
|
1584
|
-
| #define HAVE_UINTMAX_T 1
|
|
1585
|
-
| #define HAVE_UINTPTR_T 1
|
|
1586
|
-
| #define HAVE_LITTLE_ENDIAN 1
|
|
1587
|
-
| /* end confdefs.h. */
|
|
1588
|
-
| #include <stdio.h>
|
|
1589
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
1590
|
-
| # include <sys/types.h>
|
|
1591
|
-
| #endif
|
|
1592
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
1593
|
-
| # include <sys/stat.h>
|
|
1594
|
-
| #endif
|
|
1595
|
-
| #ifdef STDC_HEADERS
|
|
1596
|
-
| # include <stdlib.h>
|
|
1597
|
-
| # include <stddef.h>
|
|
1598
|
-
| #else
|
|
1599
|
-
| # ifdef HAVE_STDLIB_H
|
|
1600
|
-
| # include <stdlib.h>
|
|
1601
|
-
| # endif
|
|
1602
|
-
| #endif
|
|
1603
|
-
| #ifdef HAVE_STRING_H
|
|
1604
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
1605
|
-
| # include <memory.h>
|
|
1606
|
-
| # endif
|
|
1607
|
-
| # include <string.h>
|
|
1608
|
-
| #endif
|
|
1609
|
-
| #ifdef HAVE_STRINGS_H
|
|
1610
|
-
| # include <strings.h>
|
|
1611
|
-
| #endif
|
|
1612
|
-
| #ifdef HAVE_INTTYPES_H
|
|
1613
|
-
| # include <inttypes.h>
|
|
1614
|
-
| #endif
|
|
1615
|
-
| #ifdef HAVE_STDINT_H
|
|
1616
|
-
| # include <stdint.h>
|
|
1617
|
-
| #endif
|
|
1618
|
-
| #ifdef HAVE_UNISTD_H
|
|
1619
|
-
| # include <unistd.h>
|
|
1620
|
-
| #endif
|
|
1621
|
-
| int
|
|
1622
|
-
| main ()
|
|
1623
|
-
| {
|
|
1624
|
-
| if (sizeof ((_Bool)))
|
|
1625
|
-
| return 0;
|
|
1626
|
-
| ;
|
|
1627
|
-
| return 0;
|
|
1628
|
-
| }
|
|
1629
|
-
configure:15134: result: yes
|
|
1630
|
-
configure:15154: checking fcntl.h usability
|
|
1631
|
-
configure:15154: gcc -c -g -O2 conftest.c >&5
|
|
1632
|
-
configure:15154: $? = 0
|
|
1633
|
-
configure:15154: result: yes
|
|
1634
|
-
configure:15154: checking fcntl.h presence
|
|
1635
|
-
configure:15154: gcc -E conftest.c
|
|
1636
|
-
configure:15154: $? = 0
|
|
1637
|
-
configure:15154: result: yes
|
|
1638
|
-
configure:15154: checking for fcntl.h
|
|
1639
|
-
configure:15154: result: yes
|
|
1640
|
-
configure:15154: checking float.h usability
|
|
1641
|
-
configure:15154: gcc -c -g -O2 conftest.c >&5
|
|
1642
|
-
configure:15154: $? = 0
|
|
1643
|
-
configure:15154: result: yes
|
|
1644
|
-
configure:15154: checking float.h presence
|
|
1645
|
-
configure:15154: gcc -E conftest.c
|
|
1646
|
-
configure:15154: $? = 0
|
|
1647
|
-
configure:15154: result: yes
|
|
1648
|
-
configure:15154: checking for float.h
|
|
1649
|
-
configure:15154: result: yes
|
|
1650
|
-
configure:15154: checking limits.h usability
|
|
1651
|
-
configure:15154: gcc -c -g -O2 conftest.c >&5
|
|
1652
|
-
configure:15154: $? = 0
|
|
1653
|
-
configure:15154: result: yes
|
|
1654
|
-
configure:15154: checking limits.h presence
|
|
1655
|
-
configure:15154: gcc -E conftest.c
|
|
1656
|
-
configure:15154: $? = 0
|
|
1657
|
-
configure:15154: result: yes
|
|
1658
|
-
configure:15154: checking for limits.h
|
|
1659
|
-
configure:15154: result: yes
|
|
1660
|
-
configure:15154: checking stddef.h usability
|
|
1661
|
-
configure:15154: gcc -c -g -O2 conftest.c >&5
|
|
1662
|
-
configure:15154: $? = 0
|
|
1663
|
-
configure:15154: result: yes
|
|
1664
|
-
configure:15154: checking stddef.h presence
|
|
1665
|
-
configure:15154: gcc -E conftest.c
|
|
1666
|
-
configure:15154: $? = 0
|
|
1667
|
-
configure:15154: result: yes
|
|
1668
|
-
configure:15154: checking for stddef.h
|
|
1669
|
-
configure:15154: result: yes
|
|
1670
|
-
configure:15154: checking for stdlib.h
|
|
1671
|
-
configure:15154: result: yes
|
|
1672
|
-
configure:15154: checking for string.h
|
|
1673
|
-
configure:15154: result: yes
|
|
1674
|
-
configure:15154: checking for unistd.h
|
|
1675
|
-
configure:15154: result: yes
|
|
1676
|
-
configure:15167: checking for inttypes.h
|
|
1677
|
-
configure:15167: result: yes
|
|
1678
|
-
configure:15167: checking for stdint.h
|
|
1679
|
-
configure:15167: result: yes
|
|
1680
|
-
configure:15180: checking sys/ioctl.h usability
|
|
1681
|
-
configure:15180: gcc -c -g -O2 conftest.c >&5
|
|
1682
|
-
configure:15180: $? = 0
|
|
1683
|
-
configure:15180: result: yes
|
|
1684
|
-
configure:15180: checking sys/ioctl.h presence
|
|
1685
|
-
configure:15180: gcc -E conftest.c
|
|
1686
|
-
configure:15180: $? = 0
|
|
1687
|
-
configure:15180: result: yes
|
|
1688
|
-
configure:15180: checking for sys/ioctl.h
|
|
1689
|
-
configure:15180: result: yes
|
|
1690
|
-
configure:15180: checking sys/time.h usability
|
|
1691
|
-
configure:15180: gcc -c -g -O2 conftest.c >&5
|
|
1692
|
-
configure:15180: $? = 0
|
|
1693
|
-
configure:15180: result: yes
|
|
1694
|
-
configure:15180: checking sys/time.h presence
|
|
1695
|
-
configure:15180: gcc -E conftest.c
|
|
1696
|
-
configure:15180: $? = 0
|
|
1697
|
-
configure:15180: result: yes
|
|
1698
|
-
configure:15180: checking for sys/time.h
|
|
1699
|
-
configure:15180: result: yes
|
|
1700
|
-
configure:15180: checking sys/uio.h usability
|
|
1701
|
-
configure:15180: gcc -c -g -O2 conftest.c >&5
|
|
1702
|
-
configure:15180: $? = 0
|
|
1703
|
-
configure:15180: result: yes
|
|
1704
|
-
configure:15180: checking sys/uio.h presence
|
|
1705
|
-
configure:15180: gcc -E conftest.c
|
|
1706
|
-
configure:15180: $? = 0
|
|
1707
|
-
configure:15180: result: yes
|
|
1708
|
-
configure:15180: checking for sys/uio.h
|
|
1709
|
-
configure:15180: result: yes
|
|
1710
|
-
configure:15193: checking sys/socket.h usability
|
|
1711
|
-
configure:15193: gcc -c -g -O2 conftest.c >&5
|
|
1712
|
-
configure:15193: $? = 0
|
|
1713
|
-
configure:15193: result: yes
|
|
1714
|
-
configure:15193: checking sys/socket.h presence
|
|
1715
|
-
configure:15193: gcc -E conftest.c
|
|
1716
|
-
configure:15193: $? = 0
|
|
1717
|
-
configure:15193: result: yes
|
|
1718
|
-
configure:15193: checking for sys/socket.h
|
|
1719
|
-
configure:15193: result: yes
|
|
1720
|
-
configure:15193: checking sys/un.h usability
|
|
1721
|
-
configure:15193: gcc -c -g -O2 conftest.c >&5
|
|
1722
|
-
configure:15193: $? = 0
|
|
1723
|
-
configure:15193: result: yes
|
|
1724
|
-
configure:15193: checking sys/un.h presence
|
|
1725
|
-
configure:15193: gcc -E conftest.c
|
|
1726
|
-
configure:15193: $? = 0
|
|
1727
|
-
configure:15193: result: yes
|
|
1728
|
-
configure:15193: checking for sys/un.h
|
|
1729
|
-
configure:15193: result: yes
|
|
1730
|
-
configure:15193: checking netinet/in.h usability
|
|
1731
|
-
configure:15193: gcc -c -g -O2 conftest.c >&5
|
|
1732
|
-
configure:15193: $? = 0
|
|
1733
|
-
configure:15193: result: yes
|
|
1734
|
-
configure:15193: checking netinet/in.h presence
|
|
1735
|
-
configure:15193: gcc -E conftest.c
|
|
1736
|
-
configure:15193: $? = 0
|
|
1737
|
-
configure:15193: result: yes
|
|
1738
|
-
configure:15193: checking for netinet/in.h
|
|
1739
|
-
configure:15193: result: yes
|
|
1740
|
-
configure:15193: checking arpa/inet.h usability
|
|
1741
|
-
configure:15193: gcc -c -g -O2 conftest.c >&5
|
|
1742
|
-
configure:15193: $? = 0
|
|
1743
|
-
configure:15193: result: yes
|
|
1744
|
-
configure:15193: checking arpa/inet.h presence
|
|
1745
|
-
configure:15193: gcc -E conftest.c
|
|
1746
|
-
configure:15193: $? = 0
|
|
1747
|
-
configure:15193: result: yes
|
|
1748
|
-
configure:15193: checking for arpa/inet.h
|
|
1749
|
-
configure:15193: result: yes
|
|
1750
|
-
configure:15193: checking netdb.h usability
|
|
1751
|
-
configure:15193: gcc -c -g -O2 conftest.c >&5
|
|
1752
|
-
configure:15193: $? = 0
|
|
1753
|
-
configure:15193: result: yes
|
|
1754
|
-
configure:15193: checking netdb.h presence
|
|
1755
|
-
configure:15193: gcc -E conftest.c
|
|
1756
|
-
configure:15193: $? = 0
|
|
1757
|
-
configure:15193: result: yes
|
|
1758
|
-
configure:15193: checking for netdb.h
|
|
1759
|
-
configure:15193: result: yes
|
|
1760
|
-
configure:15205: checking execinfo.h usability
|
|
1761
|
-
configure:15205: gcc -c -g -O2 conftest.c >&5
|
|
1762
|
-
configure:15205: $? = 0
|
|
1763
|
-
configure:15205: result: yes
|
|
1764
|
-
configure:15205: checking execinfo.h presence
|
|
1765
|
-
configure:15205: gcc -E conftest.c
|
|
1766
|
-
configure:15205: $? = 0
|
|
1767
|
-
configure:15205: result: yes
|
|
1768
|
-
configure:15205: checking for execinfo.h
|
|
1769
|
-
configure:15205: result: yes
|
|
1770
|
-
configure:15219: checking sys/epoll.h usability
|
|
1771
|
-
configure:15219: gcc -c -g -O2 conftest.c >&5
|
|
1772
|
-
conftest.c:88:23: error: sys/epoll.h: No such file or directory
|
|
1773
|
-
configure:15219: $? = 1
|
|
1774
|
-
configure: failed program was:
|
|
1775
|
-
| /* confdefs.h */
|
|
1776
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
1777
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
1778
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
1779
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
1780
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
1781
|
-
| #define PACKAGE_URL ""
|
|
1782
|
-
| #define PACKAGE "nutcracker"
|
|
1783
|
-
| #define VERSION "0.2.4"
|
|
1784
|
-
| #define NC_VERSION_MAJOR 0
|
|
1785
|
-
| #define NC_VERSION_MINOR 2
|
|
1786
|
-
| #define NC_VERSION_PATCH 4
|
|
1787
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
1788
|
-
| #define STDC_HEADERS 1
|
|
1789
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
1790
|
-
| #define HAVE_SYS_STAT_H 1
|
|
1791
|
-
| #define HAVE_STDLIB_H 1
|
|
1792
|
-
| #define HAVE_STRING_H 1
|
|
1793
|
-
| #define HAVE_MEMORY_H 1
|
|
1794
|
-
| #define HAVE_STRINGS_H 1
|
|
1795
|
-
| #define HAVE_INTTYPES_H 1
|
|
1796
|
-
| #define HAVE_STDINT_H 1
|
|
1797
|
-
| #define HAVE_UNISTD_H 1
|
|
1798
|
-
| #define HAVE_DLFCN_H 1
|
|
1799
|
-
| #define LT_OBJDIR ".libs/"
|
|
1800
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
1801
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
1802
|
-
| #define HAVE_INTMAX_T 1
|
|
1803
|
-
| #define HAVE_INTPTR_T 1
|
|
1804
|
-
| #define HAVE_UINTMAX_T 1
|
|
1805
|
-
| #define HAVE_UINTPTR_T 1
|
|
1806
|
-
| #define HAVE_LITTLE_ENDIAN 1
|
|
1807
|
-
| #define HAVE__BOOL 1
|
|
1808
|
-
| #define HAVE_STDBOOL_H 1
|
|
1809
|
-
| #define HAVE_FCNTL_H 1
|
|
1810
|
-
| #define HAVE_FLOAT_H 1
|
|
1811
|
-
| #define HAVE_LIMITS_H 1
|
|
1812
|
-
| #define HAVE_STDDEF_H 1
|
|
1813
|
-
| #define HAVE_STDLIB_H 1
|
|
1814
|
-
| #define HAVE_STRING_H 1
|
|
1815
|
-
| #define HAVE_UNISTD_H 1
|
|
1816
|
-
| #define HAVE_INTTYPES_H 1
|
|
1817
|
-
| #define HAVE_STDINT_H 1
|
|
1818
|
-
| #define HAVE_SYS_IOCTL_H 1
|
|
1819
|
-
| #define HAVE_SYS_TIME_H 1
|
|
1820
|
-
| #define HAVE_SYS_UIO_H 1
|
|
1821
|
-
| #define HAVE_SYS_SOCKET_H 1
|
|
1822
|
-
| #define HAVE_SYS_UN_H 1
|
|
1823
|
-
| #define HAVE_NETINET_IN_H 1
|
|
1824
|
-
| #define HAVE_ARPA_INET_H 1
|
|
1825
|
-
| #define HAVE_NETDB_H 1
|
|
1826
|
-
| #define HAVE_EXECINFO_H 1
|
|
1827
|
-
| #define HAVE_BACKTRACE 1
|
|
1828
|
-
| /* end confdefs.h. */
|
|
1829
|
-
| #include <stdio.h>
|
|
1830
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
1831
|
-
| # include <sys/types.h>
|
|
1832
|
-
| #endif
|
|
1833
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
1834
|
-
| # include <sys/stat.h>
|
|
1835
|
-
| #endif
|
|
1836
|
-
| #ifdef STDC_HEADERS
|
|
1837
|
-
| # include <stdlib.h>
|
|
1838
|
-
| # include <stddef.h>
|
|
1839
|
-
| #else
|
|
1840
|
-
| # ifdef HAVE_STDLIB_H
|
|
1841
|
-
| # include <stdlib.h>
|
|
1842
|
-
| # endif
|
|
1843
|
-
| #endif
|
|
1844
|
-
| #ifdef HAVE_STRING_H
|
|
1845
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
1846
|
-
| # include <memory.h>
|
|
1847
|
-
| # endif
|
|
1848
|
-
| # include <string.h>
|
|
1849
|
-
| #endif
|
|
1850
|
-
| #ifdef HAVE_STRINGS_H
|
|
1851
|
-
| # include <strings.h>
|
|
1852
|
-
| #endif
|
|
1853
|
-
| #ifdef HAVE_INTTYPES_H
|
|
1854
|
-
| # include <inttypes.h>
|
|
1855
|
-
| #endif
|
|
1856
|
-
| #ifdef HAVE_STDINT_H
|
|
1857
|
-
| # include <stdint.h>
|
|
1858
|
-
| #endif
|
|
1859
|
-
| #ifdef HAVE_UNISTD_H
|
|
1860
|
-
| # include <unistd.h>
|
|
1861
|
-
| #endif
|
|
1862
|
-
| #include <sys/epoll.h>
|
|
1863
|
-
configure:15219: result: no
|
|
1864
|
-
configure:15219: checking sys/epoll.h presence
|
|
1865
|
-
configure:15219: gcc -E conftest.c
|
|
1866
|
-
conftest.c:55:23: error: sys/epoll.h: No such file or directory
|
|
1867
|
-
configure:15219: $? = 1
|
|
1868
|
-
configure: failed program was:
|
|
1869
|
-
| /* confdefs.h */
|
|
1870
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
1871
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
1872
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
1873
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
1874
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
1875
|
-
| #define PACKAGE_URL ""
|
|
1876
|
-
| #define PACKAGE "nutcracker"
|
|
1877
|
-
| #define VERSION "0.2.4"
|
|
1878
|
-
| #define NC_VERSION_MAJOR 0
|
|
1879
|
-
| #define NC_VERSION_MINOR 2
|
|
1880
|
-
| #define NC_VERSION_PATCH 4
|
|
1881
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
1882
|
-
| #define STDC_HEADERS 1
|
|
1883
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
1884
|
-
| #define HAVE_SYS_STAT_H 1
|
|
1885
|
-
| #define HAVE_STDLIB_H 1
|
|
1886
|
-
| #define HAVE_STRING_H 1
|
|
1887
|
-
| #define HAVE_MEMORY_H 1
|
|
1888
|
-
| #define HAVE_STRINGS_H 1
|
|
1889
|
-
| #define HAVE_INTTYPES_H 1
|
|
1890
|
-
| #define HAVE_STDINT_H 1
|
|
1891
|
-
| #define HAVE_UNISTD_H 1
|
|
1892
|
-
| #define HAVE_DLFCN_H 1
|
|
1893
|
-
| #define LT_OBJDIR ".libs/"
|
|
1894
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
1895
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
1896
|
-
| #define HAVE_INTMAX_T 1
|
|
1897
|
-
| #define HAVE_INTPTR_T 1
|
|
1898
|
-
| #define HAVE_UINTMAX_T 1
|
|
1899
|
-
| #define HAVE_UINTPTR_T 1
|
|
1900
|
-
| #define HAVE_LITTLE_ENDIAN 1
|
|
1901
|
-
| #define HAVE__BOOL 1
|
|
1902
|
-
| #define HAVE_STDBOOL_H 1
|
|
1903
|
-
| #define HAVE_FCNTL_H 1
|
|
1904
|
-
| #define HAVE_FLOAT_H 1
|
|
1905
|
-
| #define HAVE_LIMITS_H 1
|
|
1906
|
-
| #define HAVE_STDDEF_H 1
|
|
1907
|
-
| #define HAVE_STDLIB_H 1
|
|
1908
|
-
| #define HAVE_STRING_H 1
|
|
1909
|
-
| #define HAVE_UNISTD_H 1
|
|
1910
|
-
| #define HAVE_INTTYPES_H 1
|
|
1911
|
-
| #define HAVE_STDINT_H 1
|
|
1912
|
-
| #define HAVE_SYS_IOCTL_H 1
|
|
1913
|
-
| #define HAVE_SYS_TIME_H 1
|
|
1914
|
-
| #define HAVE_SYS_UIO_H 1
|
|
1915
|
-
| #define HAVE_SYS_SOCKET_H 1
|
|
1916
|
-
| #define HAVE_SYS_UN_H 1
|
|
1917
|
-
| #define HAVE_NETINET_IN_H 1
|
|
1918
|
-
| #define HAVE_ARPA_INET_H 1
|
|
1919
|
-
| #define HAVE_NETDB_H 1
|
|
1920
|
-
| #define HAVE_EXECINFO_H 1
|
|
1921
|
-
| #define HAVE_BACKTRACE 1
|
|
1922
|
-
| /* end confdefs.h. */
|
|
1923
|
-
| #include <sys/epoll.h>
|
|
1924
|
-
configure:15219: result: no
|
|
1925
|
-
configure:15219: checking for sys/epoll.h
|
|
1926
|
-
configure:15219: result: no
|
|
1927
|
-
configure:15231: checking sys/event.h usability
|
|
1928
|
-
configure:15231: gcc -c -g -O2 conftest.c >&5
|
|
1929
|
-
configure:15231: $? = 0
|
|
1930
|
-
configure:15231: result: yes
|
|
1931
|
-
configure:15231: checking sys/event.h presence
|
|
1932
|
-
configure:15231: gcc -E conftest.c
|
|
1933
|
-
configure:15231: $? = 0
|
|
1934
|
-
configure:15231: result: yes
|
|
1935
|
-
configure:15231: checking for sys/event.h
|
|
1936
|
-
configure:15231: result: yes
|
|
1937
|
-
configure:15243: checking for pow in -lm
|
|
1938
|
-
configure:15268: gcc -o conftest -g -O2 conftest.c -lm >&5
|
|
1939
|
-
conftest.c:63: warning: conflicting types for built-in function 'pow'
|
|
1940
|
-
configure:15268: $? = 0
|
|
1941
|
-
configure:15277: result: yes
|
|
1942
|
-
configure:15288: checking for pthread_create in -lpthread
|
|
1943
|
-
configure:15313: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
1944
|
-
configure:15313: $? = 0
|
|
1945
|
-
configure:15322: result: yes
|
|
1946
|
-
configure:15337: checking vfork.h usability
|
|
1947
|
-
configure:15337: gcc -c -g -O2 conftest.c >&5
|
|
1948
|
-
conftest.c:91:19: error: vfork.h: No such file or directory
|
|
1949
|
-
configure:15337: $? = 1
|
|
1950
|
-
configure: failed program was:
|
|
1951
|
-
| /* confdefs.h */
|
|
1952
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
1953
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
1954
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
1955
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
1956
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
1957
|
-
| #define PACKAGE_URL ""
|
|
1958
|
-
| #define PACKAGE "nutcracker"
|
|
1959
|
-
| #define VERSION "0.2.4"
|
|
1960
|
-
| #define NC_VERSION_MAJOR 0
|
|
1961
|
-
| #define NC_VERSION_MINOR 2
|
|
1962
|
-
| #define NC_VERSION_PATCH 4
|
|
1963
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
1964
|
-
| #define STDC_HEADERS 1
|
|
1965
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
1966
|
-
| #define HAVE_SYS_STAT_H 1
|
|
1967
|
-
| #define HAVE_STDLIB_H 1
|
|
1968
|
-
| #define HAVE_STRING_H 1
|
|
1969
|
-
| #define HAVE_MEMORY_H 1
|
|
1970
|
-
| #define HAVE_STRINGS_H 1
|
|
1971
|
-
| #define HAVE_INTTYPES_H 1
|
|
1972
|
-
| #define HAVE_STDINT_H 1
|
|
1973
|
-
| #define HAVE_UNISTD_H 1
|
|
1974
|
-
| #define HAVE_DLFCN_H 1
|
|
1975
|
-
| #define LT_OBJDIR ".libs/"
|
|
1976
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
1977
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
1978
|
-
| #define HAVE_INTMAX_T 1
|
|
1979
|
-
| #define HAVE_INTPTR_T 1
|
|
1980
|
-
| #define HAVE_UINTMAX_T 1
|
|
1981
|
-
| #define HAVE_UINTPTR_T 1
|
|
1982
|
-
| #define HAVE_LITTLE_ENDIAN 1
|
|
1983
|
-
| #define HAVE__BOOL 1
|
|
1984
|
-
| #define HAVE_STDBOOL_H 1
|
|
1985
|
-
| #define HAVE_FCNTL_H 1
|
|
1986
|
-
| #define HAVE_FLOAT_H 1
|
|
1987
|
-
| #define HAVE_LIMITS_H 1
|
|
1988
|
-
| #define HAVE_STDDEF_H 1
|
|
1989
|
-
| #define HAVE_STDLIB_H 1
|
|
1990
|
-
| #define HAVE_STRING_H 1
|
|
1991
|
-
| #define HAVE_UNISTD_H 1
|
|
1992
|
-
| #define HAVE_INTTYPES_H 1
|
|
1993
|
-
| #define HAVE_STDINT_H 1
|
|
1994
|
-
| #define HAVE_SYS_IOCTL_H 1
|
|
1995
|
-
| #define HAVE_SYS_TIME_H 1
|
|
1996
|
-
| #define HAVE_SYS_UIO_H 1
|
|
1997
|
-
| #define HAVE_SYS_SOCKET_H 1
|
|
1998
|
-
| #define HAVE_SYS_UN_H 1
|
|
1999
|
-
| #define HAVE_NETINET_IN_H 1
|
|
2000
|
-
| #define HAVE_ARPA_INET_H 1
|
|
2001
|
-
| #define HAVE_NETDB_H 1
|
|
2002
|
-
| #define HAVE_EXECINFO_H 1
|
|
2003
|
-
| #define HAVE_BACKTRACE 1
|
|
2004
|
-
| #define HAVE_SYS_EVENT_H 1
|
|
2005
|
-
| #define HAVE_LIBM 1
|
|
2006
|
-
| #define HAVE_LIBPTHREAD 1
|
|
2007
|
-
| /* end confdefs.h. */
|
|
2008
|
-
| #include <stdio.h>
|
|
2009
|
-
| #ifdef HAVE_SYS_TYPES_H
|
|
2010
|
-
| # include <sys/types.h>
|
|
2011
|
-
| #endif
|
|
2012
|
-
| #ifdef HAVE_SYS_STAT_H
|
|
2013
|
-
| # include <sys/stat.h>
|
|
2014
|
-
| #endif
|
|
2015
|
-
| #ifdef STDC_HEADERS
|
|
2016
|
-
| # include <stdlib.h>
|
|
2017
|
-
| # include <stddef.h>
|
|
2018
|
-
| #else
|
|
2019
|
-
| # ifdef HAVE_STDLIB_H
|
|
2020
|
-
| # include <stdlib.h>
|
|
2021
|
-
| # endif
|
|
2022
|
-
| #endif
|
|
2023
|
-
| #ifdef HAVE_STRING_H
|
|
2024
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
|
2025
|
-
| # include <memory.h>
|
|
2026
|
-
| # endif
|
|
2027
|
-
| # include <string.h>
|
|
2028
|
-
| #endif
|
|
2029
|
-
| #ifdef HAVE_STRINGS_H
|
|
2030
|
-
| # include <strings.h>
|
|
2031
|
-
| #endif
|
|
2032
|
-
| #ifdef HAVE_INTTYPES_H
|
|
2033
|
-
| # include <inttypes.h>
|
|
2034
|
-
| #endif
|
|
2035
|
-
| #ifdef HAVE_STDINT_H
|
|
2036
|
-
| # include <stdint.h>
|
|
2037
|
-
| #endif
|
|
2038
|
-
| #ifdef HAVE_UNISTD_H
|
|
2039
|
-
| # include <unistd.h>
|
|
2040
|
-
| #endif
|
|
2041
|
-
| #include <vfork.h>
|
|
2042
|
-
configure:15337: result: no
|
|
2043
|
-
configure:15337: checking vfork.h presence
|
|
2044
|
-
configure:15337: gcc -E conftest.c
|
|
2045
|
-
conftest.c:58:19: error: vfork.h: No such file or directory
|
|
2046
|
-
configure:15337: $? = 1
|
|
2047
|
-
configure: failed program was:
|
|
2048
|
-
| /* confdefs.h */
|
|
2049
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
2050
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
2051
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
2052
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
2053
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
2054
|
-
| #define PACKAGE_URL ""
|
|
2055
|
-
| #define PACKAGE "nutcracker"
|
|
2056
|
-
| #define VERSION "0.2.4"
|
|
2057
|
-
| #define NC_VERSION_MAJOR 0
|
|
2058
|
-
| #define NC_VERSION_MINOR 2
|
|
2059
|
-
| #define NC_VERSION_PATCH 4
|
|
2060
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
2061
|
-
| #define STDC_HEADERS 1
|
|
2062
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
2063
|
-
| #define HAVE_SYS_STAT_H 1
|
|
2064
|
-
| #define HAVE_STDLIB_H 1
|
|
2065
|
-
| #define HAVE_STRING_H 1
|
|
2066
|
-
| #define HAVE_MEMORY_H 1
|
|
2067
|
-
| #define HAVE_STRINGS_H 1
|
|
2068
|
-
| #define HAVE_INTTYPES_H 1
|
|
2069
|
-
| #define HAVE_STDINT_H 1
|
|
2070
|
-
| #define HAVE_UNISTD_H 1
|
|
2071
|
-
| #define HAVE_DLFCN_H 1
|
|
2072
|
-
| #define LT_OBJDIR ".libs/"
|
|
2073
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
2074
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
2075
|
-
| #define HAVE_INTMAX_T 1
|
|
2076
|
-
| #define HAVE_INTPTR_T 1
|
|
2077
|
-
| #define HAVE_UINTMAX_T 1
|
|
2078
|
-
| #define HAVE_UINTPTR_T 1
|
|
2079
|
-
| #define HAVE_LITTLE_ENDIAN 1
|
|
2080
|
-
| #define HAVE__BOOL 1
|
|
2081
|
-
| #define HAVE_STDBOOL_H 1
|
|
2082
|
-
| #define HAVE_FCNTL_H 1
|
|
2083
|
-
| #define HAVE_FLOAT_H 1
|
|
2084
|
-
| #define HAVE_LIMITS_H 1
|
|
2085
|
-
| #define HAVE_STDDEF_H 1
|
|
2086
|
-
| #define HAVE_STDLIB_H 1
|
|
2087
|
-
| #define HAVE_STRING_H 1
|
|
2088
|
-
| #define HAVE_UNISTD_H 1
|
|
2089
|
-
| #define HAVE_INTTYPES_H 1
|
|
2090
|
-
| #define HAVE_STDINT_H 1
|
|
2091
|
-
| #define HAVE_SYS_IOCTL_H 1
|
|
2092
|
-
| #define HAVE_SYS_TIME_H 1
|
|
2093
|
-
| #define HAVE_SYS_UIO_H 1
|
|
2094
|
-
| #define HAVE_SYS_SOCKET_H 1
|
|
2095
|
-
| #define HAVE_SYS_UN_H 1
|
|
2096
|
-
| #define HAVE_NETINET_IN_H 1
|
|
2097
|
-
| #define HAVE_ARPA_INET_H 1
|
|
2098
|
-
| #define HAVE_NETDB_H 1
|
|
2099
|
-
| #define HAVE_EXECINFO_H 1
|
|
2100
|
-
| #define HAVE_BACKTRACE 1
|
|
2101
|
-
| #define HAVE_SYS_EVENT_H 1
|
|
2102
|
-
| #define HAVE_LIBM 1
|
|
2103
|
-
| #define HAVE_LIBPTHREAD 1
|
|
2104
|
-
| /* end confdefs.h. */
|
|
2105
|
-
| #include <vfork.h>
|
|
2106
|
-
configure:15337: result: no
|
|
2107
|
-
configure:15337: checking for vfork.h
|
|
2108
|
-
configure:15337: result: no
|
|
2109
|
-
configure:15350: checking for fork
|
|
2110
|
-
configure:15350: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2111
|
-
conftest.c:81: warning: conflicting types for built-in function 'fork'
|
|
2112
|
-
configure:15350: $? = 0
|
|
2113
|
-
configure:15350: result: yes
|
|
2114
|
-
configure:15350: checking for vfork
|
|
2115
|
-
configure:15350: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2116
|
-
configure:15350: $? = 0
|
|
2117
|
-
configure:15350: result: yes
|
|
2118
|
-
configure:15360: checking for working fork
|
|
2119
|
-
configure:15382: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2120
|
-
configure:15382: $? = 0
|
|
2121
|
-
configure:15382: ./conftest
|
|
2122
|
-
configure:15382: $? = 0
|
|
2123
|
-
configure:15392: result: yes
|
|
2124
|
-
configure:15413: checking for working vfork
|
|
2125
|
-
configure:15523: result: yes
|
|
2126
|
-
configure:15550: checking for stdlib.h
|
|
2127
|
-
configure:15550: result: yes
|
|
2128
|
-
configure:15560: checking for GNU libc compatible malloc
|
|
2129
|
-
configure:15584: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2130
|
-
configure:15584: $? = 0
|
|
2131
|
-
configure:15584: ./conftest
|
|
2132
|
-
configure:15584: $? = 0
|
|
2133
|
-
configure:15594: result: yes
|
|
2134
|
-
configure:15617: checking for stdlib.h
|
|
2135
|
-
configure:15617: result: yes
|
|
2136
|
-
configure:15627: checking for GNU libc compatible realloc
|
|
2137
|
-
configure:15651: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2138
|
-
configure:15651: $? = 0
|
|
2139
|
-
configure:15651: ./conftest
|
|
2140
|
-
configure:15651: $? = 0
|
|
2141
|
-
configure:15661: result: yes
|
|
2142
|
-
configure:15685: checking for dup2
|
|
2143
|
-
configure:15685: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2144
|
-
configure:15685: $? = 0
|
|
2145
|
-
configure:15685: result: yes
|
|
2146
|
-
configure:15685: checking for gethostname
|
|
2147
|
-
configure:15685: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2148
|
-
configure:15685: $? = 0
|
|
2149
|
-
configure:15685: result: yes
|
|
2150
|
-
configure:15685: checking for gettimeofday
|
|
2151
|
-
configure:15685: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2152
|
-
configure:15685: $? = 0
|
|
2153
|
-
configure:15685: result: yes
|
|
2154
|
-
configure:15685: checking for strerror
|
|
2155
|
-
configure:15685: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2156
|
-
configure:15685: $? = 0
|
|
2157
|
-
configure:15685: result: yes
|
|
2158
|
-
configure:15696: checking for socket
|
|
2159
|
-
configure:15696: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2160
|
-
configure:15696: $? = 0
|
|
2161
|
-
configure:15696: result: yes
|
|
2162
|
-
configure:15708: checking for memchr
|
|
2163
|
-
configure:15708: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2164
|
-
configure:15708: $? = 0
|
|
2165
|
-
configure:15708: result: yes
|
|
2166
|
-
configure:15708: checking for memmove
|
|
2167
|
-
configure:15708: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2168
|
-
conftest.c:95: warning: conflicting types for built-in function 'memmove'
|
|
2169
|
-
configure:15708: $? = 0
|
|
2170
|
-
configure:15708: result: yes
|
|
2171
|
-
configure:15708: checking for memset
|
|
2172
|
-
configure:15708: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2173
|
-
conftest.c:96: warning: conflicting types for built-in function 'memset'
|
|
2174
|
-
configure:15708: $? = 0
|
|
2175
|
-
configure:15708: result: yes
|
|
2176
|
-
configure:15720: checking for strchr
|
|
2177
|
-
configure:15720: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2178
|
-
conftest.c:97: warning: conflicting types for built-in function 'strchr'
|
|
2179
|
-
configure:15720: $? = 0
|
|
2180
|
-
configure:15720: result: yes
|
|
2181
|
-
configure:15720: checking for strndup
|
|
2182
|
-
configure:15720: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2183
|
-
conftest.c:98: warning: conflicting types for built-in function 'strndup'
|
|
2184
|
-
configure:15720: $? = 0
|
|
2185
|
-
configure:15720: result: yes
|
|
2186
|
-
configure:15720: checking for strtoul
|
|
2187
|
-
configure:15720: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2188
|
-
configure:15720: $? = 0
|
|
2189
|
-
configure:15720: result: yes
|
|
2190
|
-
configure:15730: checking if epoll works
|
|
2191
|
-
configure:15761: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2192
|
-
conftest.c:80:23: error: sys/epoll.h: No such file or directory
|
|
2193
|
-
configure:15761: $? = 1
|
|
2194
|
-
configure: program exited with status 1
|
|
2195
|
-
configure: failed program was:
|
|
2196
|
-
| /* confdefs.h */
|
|
2197
|
-
| #define PACKAGE_NAME "nutcracker"
|
|
2198
|
-
| #define PACKAGE_TARNAME "nutcracker"
|
|
2199
|
-
| #define PACKAGE_VERSION "0.2.4"
|
|
2200
|
-
| #define PACKAGE_STRING "nutcracker 0.2.4"
|
|
2201
|
-
| #define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
2202
|
-
| #define PACKAGE_URL ""
|
|
2203
|
-
| #define PACKAGE "nutcracker"
|
|
2204
|
-
| #define VERSION "0.2.4"
|
|
2205
|
-
| #define NC_VERSION_MAJOR 0
|
|
2206
|
-
| #define NC_VERSION_MINOR 2
|
|
2207
|
-
| #define NC_VERSION_PATCH 4
|
|
2208
|
-
| #define NC_VERSION_STRING "0.2.4"
|
|
2209
|
-
| #define STDC_HEADERS 1
|
|
2210
|
-
| #define HAVE_SYS_TYPES_H 1
|
|
2211
|
-
| #define HAVE_SYS_STAT_H 1
|
|
2212
|
-
| #define HAVE_STDLIB_H 1
|
|
2213
|
-
| #define HAVE_STRING_H 1
|
|
2214
|
-
| #define HAVE_MEMORY_H 1
|
|
2215
|
-
| #define HAVE_STRINGS_H 1
|
|
2216
|
-
| #define HAVE_INTTYPES_H 1
|
|
2217
|
-
| #define HAVE_STDINT_H 1
|
|
2218
|
-
| #define HAVE_UNISTD_H 1
|
|
2219
|
-
| #define HAVE_DLFCN_H 1
|
|
2220
|
-
| #define LT_OBJDIR ".libs/"
|
|
2221
|
-
| #define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
2222
|
-
| #define HAVE_LONG_LONG_INT 1
|
|
2223
|
-
| #define HAVE_INTMAX_T 1
|
|
2224
|
-
| #define HAVE_INTPTR_T 1
|
|
2225
|
-
| #define HAVE_UINTMAX_T 1
|
|
2226
|
-
| #define HAVE_UINTPTR_T 1
|
|
2227
|
-
| #define HAVE_LITTLE_ENDIAN 1
|
|
2228
|
-
| #define HAVE__BOOL 1
|
|
2229
|
-
| #define HAVE_STDBOOL_H 1
|
|
2230
|
-
| #define HAVE_FCNTL_H 1
|
|
2231
|
-
| #define HAVE_FLOAT_H 1
|
|
2232
|
-
| #define HAVE_LIMITS_H 1
|
|
2233
|
-
| #define HAVE_STDDEF_H 1
|
|
2234
|
-
| #define HAVE_STDLIB_H 1
|
|
2235
|
-
| #define HAVE_STRING_H 1
|
|
2236
|
-
| #define HAVE_UNISTD_H 1
|
|
2237
|
-
| #define HAVE_INTTYPES_H 1
|
|
2238
|
-
| #define HAVE_STDINT_H 1
|
|
2239
|
-
| #define HAVE_SYS_IOCTL_H 1
|
|
2240
|
-
| #define HAVE_SYS_TIME_H 1
|
|
2241
|
-
| #define HAVE_SYS_UIO_H 1
|
|
2242
|
-
| #define HAVE_SYS_SOCKET_H 1
|
|
2243
|
-
| #define HAVE_SYS_UN_H 1
|
|
2244
|
-
| #define HAVE_NETINET_IN_H 1
|
|
2245
|
-
| #define HAVE_ARPA_INET_H 1
|
|
2246
|
-
| #define HAVE_NETDB_H 1
|
|
2247
|
-
| #define HAVE_EXECINFO_H 1
|
|
2248
|
-
| #define HAVE_BACKTRACE 1
|
|
2249
|
-
| #define HAVE_SYS_EVENT_H 1
|
|
2250
|
-
| #define HAVE_LIBM 1
|
|
2251
|
-
| #define HAVE_LIBPTHREAD 1
|
|
2252
|
-
| #define HAVE_FORK 1
|
|
2253
|
-
| #define HAVE_VFORK 1
|
|
2254
|
-
| #define HAVE_WORKING_VFORK 1
|
|
2255
|
-
| #define HAVE_WORKING_FORK 1
|
|
2256
|
-
| #define HAVE_STDLIB_H 1
|
|
2257
|
-
| #define HAVE_MALLOC 1
|
|
2258
|
-
| #define HAVE_STDLIB_H 1
|
|
2259
|
-
| #define HAVE_REALLOC 1
|
|
2260
|
-
| #define HAVE_DUP2 1
|
|
2261
|
-
| #define HAVE_GETHOSTNAME 1
|
|
2262
|
-
| #define HAVE_GETTIMEOFDAY 1
|
|
2263
|
-
| #define HAVE_STRERROR 1
|
|
2264
|
-
| #define HAVE_SOCKET 1
|
|
2265
|
-
| #define HAVE_MEMCHR 1
|
|
2266
|
-
| #define HAVE_MEMMOVE 1
|
|
2267
|
-
| #define HAVE_MEMSET 1
|
|
2268
|
-
| #define HAVE_STRCHR 1
|
|
2269
|
-
| #define HAVE_STRNDUP 1
|
|
2270
|
-
| #define HAVE_STRTOUL 1
|
|
2271
|
-
| /* end confdefs.h. */
|
|
2272
|
-
|
|
|
2273
|
-
| #include <stdio.h>
|
|
2274
|
-
| #include <stdlib.h>
|
|
2275
|
-
| #include <sys/epoll.h>
|
|
2276
|
-
| int
|
|
2277
|
-
| main(int argc, char **argv)
|
|
2278
|
-
| {
|
|
2279
|
-
| int fd;
|
|
2280
|
-
|
|
|
2281
|
-
| fd = epoll_create(256);
|
|
2282
|
-
| if (fd < 0) {
|
|
2283
|
-
| perror("epoll_create:");
|
|
2284
|
-
| exit(1);
|
|
2285
|
-
| }
|
|
2286
|
-
| exit(0);
|
|
2287
|
-
| }
|
|
2288
|
-
|
|
|
2289
|
-
configure:15771: result: no
|
|
2290
|
-
configure:15779: checking if kqueue works
|
|
2291
|
-
configure:15812: gcc -o conftest -g -O2 conftest.c -lpthread -lm >&5
|
|
2292
|
-
configure:15812: $? = 0
|
|
2293
|
-
configure:15812: ./conftest
|
|
2294
|
-
configure:15812: $? = 0
|
|
2295
|
-
configure:15822: result: yes
|
|
2296
|
-
configure:15837: checking whether to enable debug logs and asserts
|
|
2297
|
-
configure:15875: result: no
|
|
2298
|
-
configure:15878: checking whether to disable stats
|
|
2299
|
-
configure:15894: result: no
|
|
2300
|
-
configure:16038: creating ./config.status
|
|
2301
|
-
|
|
2302
|
-
## ---------------------- ##
|
|
2303
|
-
## Running config.status. ##
|
|
2304
|
-
## ---------------------- ##
|
|
2305
|
-
|
|
2306
|
-
This file was extended by nutcracker config.status 0.2.4, which was
|
|
2307
|
-
generated by GNU Autoconf 2.69. Invocation command line was
|
|
2308
|
-
|
|
2309
|
-
CONFIG_FILES =
|
|
2310
|
-
CONFIG_HEADERS =
|
|
2311
|
-
CONFIG_LINKS =
|
|
2312
|
-
CONFIG_COMMANDS =
|
|
2313
|
-
$ ./config.status
|
|
2314
|
-
|
|
2315
|
-
on Eran-Levis-MacBook-Pro.local
|
|
2316
|
-
|
|
2317
|
-
config.status:1182: creating Makefile
|
|
2318
|
-
config.status:1182: creating contrib/Makefile
|
|
2319
|
-
config.status:1182: creating src/Makefile
|
|
2320
|
-
config.status:1182: creating src/hashkit/Makefile
|
|
2321
|
-
config.status:1182: creating src/proto/Makefile
|
|
2322
|
-
config.status:1182: creating config.h
|
|
2323
|
-
config.status:1410: executing depfiles commands
|
|
2324
|
-
config.status:1410: executing libtool commands
|
|
2325
|
-
configure:18586: === configuring in contrib/yaml-0.1.4 (/Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/contrib/yaml-0.1.4)
|
|
2326
|
-
configure:18649: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local' --cache-file=/dev/null --srcdir=.
|
|
2327
|
-
|
|
2328
|
-
## ---------------- ##
|
|
2329
|
-
## Cache variables. ##
|
|
2330
|
-
## ---------------- ##
|
|
2331
|
-
|
|
2332
|
-
ac_cv_build=i386-apple-darwin11.4.2
|
|
2333
|
-
ac_cv_c_bigendian=no
|
|
2334
|
-
ac_cv_c_compiler_gnu=yes
|
|
2335
|
-
ac_cv_c_inline=inline
|
|
2336
|
-
ac_cv_c_int16_t=yes
|
|
2337
|
-
ac_cv_c_int32_t=yes
|
|
2338
|
-
ac_cv_c_int64_t=yes
|
|
2339
|
-
ac_cv_c_int8_t=yes
|
|
2340
|
-
ac_cv_c_uint16_t=yes
|
|
2341
|
-
ac_cv_c_uint32_t=yes
|
|
2342
|
-
ac_cv_c_uint64_t=yes
|
|
2343
|
-
ac_cv_c_uint8_t=yes
|
|
2344
|
-
ac_cv_cxx_compiler_gnu=yes
|
|
2345
|
-
ac_cv_env_CCC_set=
|
|
2346
|
-
ac_cv_env_CCC_value=
|
|
2347
|
-
ac_cv_env_CC_set=
|
|
2348
|
-
ac_cv_env_CC_value=
|
|
2349
|
-
ac_cv_env_CFLAGS_set=
|
|
2350
|
-
ac_cv_env_CFLAGS_value=
|
|
2351
|
-
ac_cv_env_CPPFLAGS_set=
|
|
2352
|
-
ac_cv_env_CPPFLAGS_value=
|
|
2353
|
-
ac_cv_env_CPP_set=
|
|
2354
|
-
ac_cv_env_CPP_value=
|
|
2355
|
-
ac_cv_env_CXXCPP_set=
|
|
2356
|
-
ac_cv_env_CXXCPP_value=
|
|
2357
|
-
ac_cv_env_CXXFLAGS_set=
|
|
2358
|
-
ac_cv_env_CXXFLAGS_value=
|
|
2359
|
-
ac_cv_env_CXX_set=
|
|
2360
|
-
ac_cv_env_CXX_value=
|
|
2361
|
-
ac_cv_env_LDFLAGS_set=
|
|
2362
|
-
ac_cv_env_LDFLAGS_value=
|
|
2363
|
-
ac_cv_env_LIBS_set=
|
|
2364
|
-
ac_cv_env_LIBS_value=
|
|
2365
|
-
ac_cv_env_build_alias_set=
|
|
2366
|
-
ac_cv_env_build_alias_value=
|
|
2367
|
-
ac_cv_env_host_alias_set=
|
|
2368
|
-
ac_cv_env_host_alias_value=
|
|
2369
|
-
ac_cv_env_target_alias_set=
|
|
2370
|
-
ac_cv_env_target_alias_value=
|
|
2371
|
-
ac_cv_epoll_works=no
|
|
2372
|
-
ac_cv_func_dup2=yes
|
|
2373
|
-
ac_cv_func_fork=yes
|
|
2374
|
-
ac_cv_func_fork_works=yes
|
|
2375
|
-
ac_cv_func_gethostname=yes
|
|
2376
|
-
ac_cv_func_gettimeofday=yes
|
|
2377
|
-
ac_cv_func_malloc_0_nonnull=yes
|
|
2378
|
-
ac_cv_func_memchr=yes
|
|
2379
|
-
ac_cv_func_memmove=yes
|
|
2380
|
-
ac_cv_func_memset=yes
|
|
2381
|
-
ac_cv_func_realloc_0_nonnull=yes
|
|
2382
|
-
ac_cv_func_socket=yes
|
|
2383
|
-
ac_cv_func_strchr=yes
|
|
2384
|
-
ac_cv_func_strerror=yes
|
|
2385
|
-
ac_cv_func_strndup=yes
|
|
2386
|
-
ac_cv_func_strtoul=yes
|
|
2387
|
-
ac_cv_func_vfork=yes
|
|
2388
|
-
ac_cv_func_vfork_works=yes
|
|
2389
|
-
ac_cv_header_arpa_inet_h=yes
|
|
2390
|
-
ac_cv_header_dlfcn_h=yes
|
|
2391
|
-
ac_cv_header_execinfo_h=yes
|
|
2392
|
-
ac_cv_header_fcntl_h=yes
|
|
2393
|
-
ac_cv_header_float_h=yes
|
|
2394
|
-
ac_cv_header_inttypes_h=yes
|
|
2395
|
-
ac_cv_header_limits_h=yes
|
|
2396
|
-
ac_cv_header_memory_h=yes
|
|
2397
|
-
ac_cv_header_netdb_h=yes
|
|
2398
|
-
ac_cv_header_netinet_in_h=yes
|
|
2399
|
-
ac_cv_header_stdbool_h=yes
|
|
2400
|
-
ac_cv_header_stdc=yes
|
|
2401
|
-
ac_cv_header_stddef_h=yes
|
|
2402
|
-
ac_cv_header_stdint_h=yes
|
|
2403
|
-
ac_cv_header_stdlib_h=yes
|
|
2404
|
-
ac_cv_header_string_h=yes
|
|
2405
|
-
ac_cv_header_strings_h=yes
|
|
2406
|
-
ac_cv_header_sys_epoll_h=no
|
|
2407
|
-
ac_cv_header_sys_event_h=yes
|
|
2408
|
-
ac_cv_header_sys_ioctl_h=yes
|
|
2409
|
-
ac_cv_header_sys_socket_h=yes
|
|
2410
|
-
ac_cv_header_sys_stat_h=yes
|
|
2411
|
-
ac_cv_header_sys_time_h=yes
|
|
2412
|
-
ac_cv_header_sys_types_h=yes
|
|
2413
|
-
ac_cv_header_sys_uio_h=yes
|
|
2414
|
-
ac_cv_header_sys_un_h=yes
|
|
2415
|
-
ac_cv_header_unistd_h=yes
|
|
2416
|
-
ac_cv_header_vfork_h=no
|
|
2417
|
-
ac_cv_host=i386-apple-darwin11.4.2
|
|
2418
|
-
ac_cv_kqueue_works=yes
|
|
2419
|
-
ac_cv_lib_m_pow=yes
|
|
2420
|
-
ac_cv_lib_pthread_pthread_create=yes
|
|
2421
|
-
ac_cv_objext=o
|
|
2422
|
-
ac_cv_path_EGREP='/usr/bin/grep -E'
|
|
2423
|
-
ac_cv_path_FGREP='/usr/bin/grep -F'
|
|
2424
|
-
ac_cv_path_GREP=/usr/bin/grep
|
|
2425
|
-
ac_cv_path_SED=/usr/bin/sed
|
|
2426
|
-
ac_cv_path_install='/usr/bin/install -c'
|
|
2427
|
-
ac_cv_prog_AWK=awk
|
|
2428
|
-
ac_cv_prog_CPP='gcc -E'
|
|
2429
|
-
ac_cv_prog_CXXCPP='g++ -E'
|
|
2430
|
-
ac_cv_prog_ac_ct_AR=ar
|
|
2431
|
-
ac_cv_prog_ac_ct_CC=gcc
|
|
2432
|
-
ac_cv_prog_ac_ct_CXX=g++
|
|
2433
|
-
ac_cv_prog_ac_ct_DSYMUTIL=dsymutil
|
|
2434
|
-
ac_cv_prog_ac_ct_LIPO=lipo
|
|
2435
|
-
ac_cv_prog_ac_ct_NMEDIT=nmedit
|
|
2436
|
-
ac_cv_prog_ac_ct_OTOOL=otool
|
|
2437
|
-
ac_cv_prog_ac_ct_RANLIB=ranlib
|
|
2438
|
-
ac_cv_prog_ac_ct_STRIP=strip
|
|
2439
|
-
ac_cv_prog_cc_c89=
|
|
2440
|
-
ac_cv_prog_cc_g=yes
|
|
2441
|
-
ac_cv_prog_cxx_g=yes
|
|
2442
|
-
ac_cv_prog_make_make_set=yes
|
|
2443
|
-
ac_cv_type__Bool=yes
|
|
2444
|
-
ac_cv_type_intmax_t=yes
|
|
2445
|
-
ac_cv_type_intptr_t=yes
|
|
2446
|
-
ac_cv_type_long_long_int=yes
|
|
2447
|
-
ac_cv_type_off_t=yes
|
|
2448
|
-
ac_cv_type_pid_t=yes
|
|
2449
|
-
ac_cv_type_size_t=yes
|
|
2450
|
-
ac_cv_type_ssize_t=yes
|
|
2451
|
-
ac_cv_type_uintmax_t=yes
|
|
2452
|
-
ac_cv_type_uintptr_t=yes
|
|
2453
|
-
ac_cv_type_unsigned_long_long_int=yes
|
|
2454
|
-
am_cv_CC_dependencies_compiler_type=gcc3
|
|
2455
|
-
am_cv_CXX_dependencies_compiler_type=gcc3
|
|
2456
|
-
lt_cv_apple_cc_single_mod=yes
|
|
2457
|
-
lt_cv_deplibs_check_method=pass_all
|
|
2458
|
-
lt_cv_file_magic_cmd='$MAGIC_CMD'
|
|
2459
|
-
lt_cv_file_magic_test_file=
|
|
2460
|
-
lt_cv_ld_exported_symbols_list=yes
|
|
2461
|
-
lt_cv_ld_force_load=yes
|
|
2462
|
-
lt_cv_ld_reload_flag=-r
|
|
2463
|
-
lt_cv_nm_interface='BSD nm'
|
|
2464
|
-
lt_cv_objdir=.libs
|
|
2465
|
-
lt_cv_path_LD=/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
|
|
2466
|
-
lt_cv_path_LDCXX=/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld
|
|
2467
|
-
lt_cv_path_NM=/usr/bin/nm
|
|
2468
|
-
lt_cv_prog_compiler_c_o=yes
|
|
2469
|
-
lt_cv_prog_compiler_c_o_CXX=yes
|
|
2470
|
-
lt_cv_prog_compiler_pic_works=yes
|
|
2471
|
-
lt_cv_prog_compiler_pic_works_CXX=yes
|
|
2472
|
-
lt_cv_prog_compiler_rtti_exceptions=no
|
|
2473
|
-
lt_cv_prog_compiler_static_works=no
|
|
2474
|
-
lt_cv_prog_compiler_static_works_CXX=no
|
|
2475
|
-
lt_cv_prog_gnu_ld=no
|
|
2476
|
-
lt_cv_prog_gnu_ldcxx=no
|
|
2477
|
-
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p'\'''
|
|
2478
|
-
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
|
|
2479
|
-
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[BCDEGRST]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
|
|
2480
|
-
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[BCDEGRST]* .* \(.*\)$/extern char \1;/p'\'''
|
|
2481
|
-
lt_cv_sys_max_cmd_len=196608
|
|
2482
|
-
|
|
2483
|
-
## ----------------- ##
|
|
2484
|
-
## Output variables. ##
|
|
2485
|
-
## ----------------- ##
|
|
2486
|
-
|
|
2487
|
-
ACLOCAL='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/config/missing --run aclocal-1.10'
|
|
2488
|
-
AMDEPBACKSLASH='\'
|
|
2489
|
-
AMDEP_FALSE='#'
|
|
2490
|
-
AMDEP_TRUE=''
|
|
2491
|
-
AMTAR='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/config/missing --run tar'
|
|
2492
|
-
AR='ar'
|
|
2493
|
-
AUTOCONF='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/config/missing --run autoconf'
|
|
2494
|
-
AUTOHEADER='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/config/missing --run autoheader'
|
|
2495
|
-
AUTOMAKE='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/config/missing --run automake-1.10'
|
|
2496
|
-
AWK='awk'
|
|
2497
|
-
CC='gcc'
|
|
2498
|
-
CCDEPMODE='depmode=gcc3'
|
|
2499
|
-
CFLAGS='-g -O2'
|
|
2500
|
-
CPP='gcc -E'
|
|
2501
|
-
CPPFLAGS=''
|
|
2502
|
-
CXX='g++'
|
|
2503
|
-
CXXCPP='g++ -E'
|
|
2504
|
-
CXXDEPMODE='depmode=gcc3'
|
|
2505
|
-
CXXFLAGS='-g -O2'
|
|
2506
|
-
CYGPATH_W='echo'
|
|
2507
|
-
DEFS='-DHAVE_CONFIG_H'
|
|
2508
|
-
DEPDIR='.deps'
|
|
2509
|
-
DSYMUTIL='dsymutil'
|
|
2510
|
-
DUMPBIN=''
|
|
2511
|
-
ECHO_C='\c'
|
|
2512
|
-
ECHO_N=''
|
|
2513
|
-
ECHO_T=''
|
|
2514
|
-
EGREP='/usr/bin/grep -E'
|
|
2515
|
-
EXEEXT=''
|
|
2516
|
-
FGREP='/usr/bin/grep -F'
|
|
2517
|
-
GREP='/usr/bin/grep'
|
|
2518
|
-
INSTALL_DATA='${INSTALL} -m 644'
|
|
2519
|
-
INSTALL_PROGRAM='${INSTALL}'
|
|
2520
|
-
INSTALL_SCRIPT='${INSTALL}'
|
|
2521
|
-
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
|
|
2522
|
-
LD='/usr/llvm-gcc-4.2/libexec/gcc/i686-apple-darwin11/4.2.1/ld'
|
|
2523
|
-
LDFLAGS=''
|
|
2524
|
-
LIBOBJS=''
|
|
2525
|
-
LIBS='-lpthread -lm '
|
|
2526
|
-
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
|
|
2527
|
-
LIPO='lipo'
|
|
2528
|
-
LN_S='ln -s'
|
|
2529
|
-
LTLIBOBJS=''
|
|
2530
|
-
MAKEINFO='${SHELL} /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/config/missing --run makeinfo'
|
|
2531
|
-
MKDIR_P='config/install-sh -c -d'
|
|
2532
|
-
NM='/usr/bin/nm'
|
|
2533
|
-
NMEDIT='nmedit'
|
|
2534
|
-
OBJDUMP='false'
|
|
2535
|
-
OBJEXT='o'
|
|
2536
|
-
OTOOL64=':'
|
|
2537
|
-
OTOOL='otool'
|
|
2538
|
-
PACKAGE='nutcracker'
|
|
2539
|
-
PACKAGE_BUGREPORT='manj@twitter.com'
|
|
2540
|
-
PACKAGE_NAME='nutcracker'
|
|
2541
|
-
PACKAGE_STRING='nutcracker 0.2.4'
|
|
2542
|
-
PACKAGE_TARNAME='nutcracker'
|
|
2543
|
-
PACKAGE_URL=''
|
|
2544
|
-
PACKAGE_VERSION='0.2.4'
|
|
2545
|
-
PATH_SEPARATOR=':'
|
|
2546
|
-
RANLIB='ranlib'
|
|
2547
|
-
SED='/usr/bin/sed'
|
|
2548
|
-
SET_MAKE=''
|
|
2549
|
-
SHELL='/bin/sh'
|
|
2550
|
-
STRIP='strip'
|
|
2551
|
-
VERSION='0.2.4'
|
|
2552
|
-
ac_ct_CC='gcc'
|
|
2553
|
-
ac_ct_CXX='g++'
|
|
2554
|
-
ac_ct_DUMPBIN=''
|
|
2555
|
-
am__fastdepCC_FALSE='#'
|
|
2556
|
-
am__fastdepCC_TRUE=''
|
|
2557
|
-
am__fastdepCXX_FALSE='#'
|
|
2558
|
-
am__fastdepCXX_TRUE=''
|
|
2559
|
-
am__include='include'
|
|
2560
|
-
am__isrc=''
|
|
2561
|
-
am__leading_dot='.'
|
|
2562
|
-
am__quote=''
|
|
2563
|
-
am__tar='${AMTAR} chof - "$$tardir"'
|
|
2564
|
-
am__untar='${AMTAR} xf -'
|
|
2565
|
-
bindir='${exec_prefix}/bin'
|
|
2566
|
-
build='i386-apple-darwin11.4.2'
|
|
2567
|
-
build_alias=''
|
|
2568
|
-
build_cpu='i386'
|
|
2569
|
-
build_os='darwin11.4.2'
|
|
2570
|
-
build_vendor='apple'
|
|
2571
|
-
datadir='${datarootdir}'
|
|
2572
|
-
datarootdir='${prefix}/share'
|
|
2573
|
-
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
|
|
2574
|
-
dvidir='${docdir}'
|
|
2575
|
-
exec_prefix='${prefix}'
|
|
2576
|
-
host='i386-apple-darwin11.4.2'
|
|
2577
|
-
host_alias=''
|
|
2578
|
-
host_cpu='i386'
|
|
2579
|
-
host_os='darwin11.4.2'
|
|
2580
|
-
host_vendor='apple'
|
|
2581
|
-
htmldir='${docdir}'
|
|
2582
|
-
includedir='${prefix}/include'
|
|
2583
|
-
infodir='${datarootdir}/info'
|
|
2584
|
-
install_sh='$(SHELL) /Users/eran/github/nutcracker/twemproxy-twemproxy_bsd/config/install-sh'
|
|
2585
|
-
libdir='${exec_prefix}/lib'
|
|
2586
|
-
libexecdir='${exec_prefix}/libexec'
|
|
2587
|
-
localedir='${datarootdir}/locale'
|
|
2588
|
-
localstatedir='${prefix}/var'
|
|
2589
|
-
mandir='${datarootdir}/man'
|
|
2590
|
-
mkdir_p='$(top_builddir)/config/install-sh -c -d'
|
|
2591
|
-
oldincludedir='/usr/include'
|
|
2592
|
-
pdfdir='${docdir}'
|
|
2593
|
-
prefix='/usr/local'
|
|
2594
|
-
program_transform_name='s,x,x,'
|
|
2595
|
-
psdir='${docdir}'
|
|
2596
|
-
sbindir='${exec_prefix}/sbin'
|
|
2597
|
-
sharedstatedir='${prefix}/com'
|
|
2598
|
-
subdirs=' contrib/yaml-0.1.4'
|
|
2599
|
-
sysconfdir='${prefix}/etc'
|
|
2600
|
-
target_alias=''
|
|
2601
|
-
|
|
2602
|
-
## ----------- ##
|
|
2603
|
-
## confdefs.h. ##
|
|
2604
|
-
## ----------- ##
|
|
2605
|
-
|
|
2606
|
-
/* confdefs.h */
|
|
2607
|
-
#define PACKAGE_NAME "nutcracker"
|
|
2608
|
-
#define PACKAGE_TARNAME "nutcracker"
|
|
2609
|
-
#define PACKAGE_VERSION "0.2.4"
|
|
2610
|
-
#define PACKAGE_STRING "nutcracker 0.2.4"
|
|
2611
|
-
#define PACKAGE_BUGREPORT "manj@twitter.com"
|
|
2612
|
-
#define PACKAGE_URL ""
|
|
2613
|
-
#define PACKAGE "nutcracker"
|
|
2614
|
-
#define VERSION "0.2.4"
|
|
2615
|
-
#define NC_VERSION_MAJOR 0
|
|
2616
|
-
#define NC_VERSION_MINOR 2
|
|
2617
|
-
#define NC_VERSION_PATCH 4
|
|
2618
|
-
#define NC_VERSION_STRING "0.2.4"
|
|
2619
|
-
#define STDC_HEADERS 1
|
|
2620
|
-
#define HAVE_SYS_TYPES_H 1
|
|
2621
|
-
#define HAVE_SYS_STAT_H 1
|
|
2622
|
-
#define HAVE_STDLIB_H 1
|
|
2623
|
-
#define HAVE_STRING_H 1
|
|
2624
|
-
#define HAVE_MEMORY_H 1
|
|
2625
|
-
#define HAVE_STRINGS_H 1
|
|
2626
|
-
#define HAVE_INTTYPES_H 1
|
|
2627
|
-
#define HAVE_STDINT_H 1
|
|
2628
|
-
#define HAVE_UNISTD_H 1
|
|
2629
|
-
#define HAVE_DLFCN_H 1
|
|
2630
|
-
#define LT_OBJDIR ".libs/"
|
|
2631
|
-
#define HAVE_UNSIGNED_LONG_LONG_INT 1
|
|
2632
|
-
#define HAVE_LONG_LONG_INT 1
|
|
2633
|
-
#define HAVE_INTMAX_T 1
|
|
2634
|
-
#define HAVE_INTPTR_T 1
|
|
2635
|
-
#define HAVE_UINTMAX_T 1
|
|
2636
|
-
#define HAVE_UINTPTR_T 1
|
|
2637
|
-
#define HAVE_LITTLE_ENDIAN 1
|
|
2638
|
-
#define HAVE__BOOL 1
|
|
2639
|
-
#define HAVE_STDBOOL_H 1
|
|
2640
|
-
#define HAVE_FCNTL_H 1
|
|
2641
|
-
#define HAVE_FLOAT_H 1
|
|
2642
|
-
#define HAVE_LIMITS_H 1
|
|
2643
|
-
#define HAVE_STDDEF_H 1
|
|
2644
|
-
#define HAVE_STDLIB_H 1
|
|
2645
|
-
#define HAVE_STRING_H 1
|
|
2646
|
-
#define HAVE_UNISTD_H 1
|
|
2647
|
-
#define HAVE_INTTYPES_H 1
|
|
2648
|
-
#define HAVE_STDINT_H 1
|
|
2649
|
-
#define HAVE_SYS_IOCTL_H 1
|
|
2650
|
-
#define HAVE_SYS_TIME_H 1
|
|
2651
|
-
#define HAVE_SYS_UIO_H 1
|
|
2652
|
-
#define HAVE_SYS_SOCKET_H 1
|
|
2653
|
-
#define HAVE_SYS_UN_H 1
|
|
2654
|
-
#define HAVE_NETINET_IN_H 1
|
|
2655
|
-
#define HAVE_ARPA_INET_H 1
|
|
2656
|
-
#define HAVE_NETDB_H 1
|
|
2657
|
-
#define HAVE_EXECINFO_H 1
|
|
2658
|
-
#define HAVE_BACKTRACE 1
|
|
2659
|
-
#define HAVE_SYS_EVENT_H 1
|
|
2660
|
-
#define HAVE_LIBM 1
|
|
2661
|
-
#define HAVE_LIBPTHREAD 1
|
|
2662
|
-
#define HAVE_FORK 1
|
|
2663
|
-
#define HAVE_VFORK 1
|
|
2664
|
-
#define HAVE_WORKING_VFORK 1
|
|
2665
|
-
#define HAVE_WORKING_FORK 1
|
|
2666
|
-
#define HAVE_STDLIB_H 1
|
|
2667
|
-
#define HAVE_MALLOC 1
|
|
2668
|
-
#define HAVE_STDLIB_H 1
|
|
2669
|
-
#define HAVE_REALLOC 1
|
|
2670
|
-
#define HAVE_DUP2 1
|
|
2671
|
-
#define HAVE_GETHOSTNAME 1
|
|
2672
|
-
#define HAVE_GETTIMEOFDAY 1
|
|
2673
|
-
#define HAVE_STRERROR 1
|
|
2674
|
-
#define HAVE_SOCKET 1
|
|
2675
|
-
#define HAVE_MEMCHR 1
|
|
2676
|
-
#define HAVE_MEMMOVE 1
|
|
2677
|
-
#define HAVE_MEMSET 1
|
|
2678
|
-
#define HAVE_STRCHR 1
|
|
2679
|
-
#define HAVE_STRNDUP 1
|
|
2680
|
-
#define HAVE_STRTOUL 1
|
|
2681
|
-
#define HAVE_KQUEUE 1
|
|
2682
|
-
#define HAVE_STATS 1
|
|
2683
|
-
|
|
2684
|
-
configure: exit 0
|