nutcracker 0.2.4.mac9 → 0.2.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +13 -46
- data/Rakefile +20 -15
- data/bin/nutcracker +1 -6
- data/ext/nutcracker/ChangeLog +0 -9
- data/ext/nutcracker/LICENSE +0 -0
- data/ext/nutcracker/Makefile.am +0 -0
- data/ext/nutcracker/Makefile.in +149 -66
- data/ext/nutcracker/NOTICE +0 -0
- data/ext/nutcracker/README.md +11 -13
- data/ext/nutcracker/aclocal.m4 +201 -112
- data/ext/nutcracker/conf/nutcracker.leaf.yml +0 -0
- data/ext/nutcracker/conf/nutcracker.root.yml +0 -0
- data/ext/nutcracker/conf/nutcracker.yml +0 -0
- data/ext/nutcracker/config.h.in +0 -15
- data/ext/nutcracker/config/config.guess +84 -23
- data/ext/nutcracker/config/config.sub +93 -23
- data/ext/nutcracker/config/depcomp +81 -35
- data/ext/nutcracker/config/install-sh +122 -109
- data/ext/nutcracker/config/ltmain.sh +721 -1053
- data/ext/nutcracker/config/missing +29 -20
- data/ext/nutcracker/configure +2311 -2113
- data/ext/nutcracker/configure.ac +3 -35
- data/ext/nutcracker/contrib/Makefile.am +0 -0
- data/ext/nutcracker/contrib/Makefile.in +107 -41
- data/ext/nutcracker/contrib/yaml-0.1.4.tar.gz +0 -0
- data/ext/nutcracker/extconf.rb +5 -3
- data/ext/nutcracker/m4/libtool.m4 +492 -553
- data/ext/nutcracker/m4/ltoptions.m4 +6 -7
- data/ext/nutcracker/m4/ltversion.m4 +5 -5
- data/ext/nutcracker/m4/lt~obsolete.m4 +3 -9
- 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 +2 -21
- data/ext/nutcracker/notes/redis.md +9 -9
- 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/scripts/redis-check.sh +0 -9
- data/ext/nutcracker/src/Makefile.am +1 -1
- data/ext/nutcracker/src/Makefile.in +153 -74
- data/ext/nutcracker/src/hashkit/Makefile.am +0 -1
- data/ext/nutcracker/src/hashkit/Makefile.in +64 -39
- 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 -2
- 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 +6 -18
- 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 +35 -14
- data/ext/nutcracker/src/nc_conf.h +1 -1
- 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 -2
- 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 +12 -14
- 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 +60 -32
- 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 +4 -17
- data/lib/nutcracker.rb +2 -187
- data/lib/nutcracker/version.rb +1 -1
- metadata +10 -256
- 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.c +0 -66
- 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
@@ -1,2339 +0,0 @@
|
|
1
|
-
m4trace:/usr/share/aclocal/argz.m4:12: -1- AC_DEFUN([gl_FUNC_ARGZ], [gl_PREREQ_ARGZ
|
2
|
-
|
3
|
-
AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
|
4
|
-
|
5
|
-
AC_CHECK_TYPES([error_t],
|
6
|
-
[],
|
7
|
-
[AC_DEFINE([error_t], [int],
|
8
|
-
[Define to a type to use for `error_t' if it is not otherwise available.])
|
9
|
-
AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
|
10
|
-
does not typedef error_t.])],
|
11
|
-
[#if defined(HAVE_ARGZ_H)
|
12
|
-
# include <argz.h>
|
13
|
-
#endif])
|
14
|
-
|
15
|
-
ARGZ_H=
|
16
|
-
AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
|
17
|
-
argz_next argz_stringify], [], [ARGZ_H=argz.h; AC_LIBOBJ([argz])])
|
18
|
-
|
19
|
-
dnl if have system argz functions, allow forced use of
|
20
|
-
dnl libltdl-supplied implementation (and default to do so
|
21
|
-
dnl on "known bad" systems). Could use a runtime check, but
|
22
|
-
dnl (a) detecting malloc issues is notoriously unreliable
|
23
|
-
dnl (b) only known system that declares argz functions,
|
24
|
-
dnl provides them, yet they are broken, is cygwin
|
25
|
-
dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
|
26
|
-
dnl So, it's more straightforward simply to special case
|
27
|
-
dnl this for known bad systems.
|
28
|
-
AS_IF([test -z "$ARGZ_H"],
|
29
|
-
[AC_CACHE_CHECK(
|
30
|
-
[if argz actually works],
|
31
|
-
[lt_cv_sys_argz_works],
|
32
|
-
[[case $host_os in #(
|
33
|
-
*cygwin*)
|
34
|
-
lt_cv_sys_argz_works=no
|
35
|
-
if test "$cross_compiling" != no; then
|
36
|
-
lt_cv_sys_argz_works="guessing no"
|
37
|
-
else
|
38
|
-
lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
|
39
|
-
save_IFS=$IFS
|
40
|
-
IFS=-.
|
41
|
-
set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
|
42
|
-
IFS=$save_IFS
|
43
|
-
lt_os_major=${2-0}
|
44
|
-
lt_os_minor=${3-0}
|
45
|
-
lt_os_micro=${4-0}
|
46
|
-
if test "$lt_os_major" -gt 1 \
|
47
|
-
|| { test "$lt_os_major" -eq 1 \
|
48
|
-
&& { test "$lt_os_minor" -gt 5 \
|
49
|
-
|| { test "$lt_os_minor" -eq 5 \
|
50
|
-
&& test "$lt_os_micro" -gt 24; }; }; }; then
|
51
|
-
lt_cv_sys_argz_works=yes
|
52
|
-
fi
|
53
|
-
fi
|
54
|
-
;; #(
|
55
|
-
*) lt_cv_sys_argz_works=yes ;;
|
56
|
-
esac]])
|
57
|
-
AS_IF([test $lt_cv_sys_argz_works = yes],
|
58
|
-
[AC_DEFINE([HAVE_WORKING_ARGZ], 1,
|
59
|
-
[This value is set to 1 to indicate that the system argz facility works])],
|
60
|
-
[ARGZ_H=argz.h
|
61
|
-
AC_LIBOBJ([argz])])])
|
62
|
-
|
63
|
-
AC_SUBST([ARGZ_H])
|
64
|
-
])
|
65
|
-
m4trace:/usr/share/aclocal/argz.m4:79: -1- AC_DEFUN([gl_PREREQ_ARGZ], [:])
|
66
|
-
m4trace:/usr/share/aclocal/ltdl.m4:16: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
|
67
|
-
_$0($*)
|
68
|
-
])
|
69
|
-
m4trace:/usr/share/aclocal/ltdl.m4:68: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
|
70
|
-
dnl Although the argument is deprecated and no longer documented,
|
71
|
-
dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
|
72
|
-
dnl here make sure it is the same as any other declaration of libltdl's
|
73
|
-
dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
|
74
|
-
dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
|
75
|
-
m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
|
76
|
-
_$0()
|
77
|
-
])
|
78
|
-
m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
79
|
-
_LTDL_CONVENIENCE])
|
80
|
-
m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
|
81
|
-
You should run autoupdate.])dnl
|
82
|
-
_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
83
|
-
_LTDL_CONVENIENCE])
|
84
|
-
m4trace:/usr/share/aclocal/ltdl.m4:124: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
|
85
|
-
dnl Although the argument is deprecated and no longer documented,
|
86
|
-
dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
|
87
|
-
dnl here make sure it is the same as any other declaration of libltdl's
|
88
|
-
dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
|
89
|
-
dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
|
90
|
-
m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
|
91
|
-
_$0()
|
92
|
-
])
|
93
|
-
m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
94
|
-
_LTDL_INSTALLABLE])
|
95
|
-
m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
|
96
|
-
You should run autoupdate.])dnl
|
97
|
-
_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
98
|
-
_LTDL_INSTALLABLE])
|
99
|
-
m4trace:/usr/share/aclocal/ltdl.m4:213: -1- AC_DEFUN([_LT_LIBOBJ], [
|
100
|
-
m4_pattern_allow([^_LT_LIBOBJS$])
|
101
|
-
_LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
|
102
|
-
])
|
103
|
-
m4trace:/usr/share/aclocal/ltdl.m4:226: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
|
104
|
-
_LT_SET_OPTIONS([$0], [$1])
|
105
|
-
|
106
|
-
dnl We need to keep our own list of libobjs separate from our parent project,
|
107
|
-
dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
|
108
|
-
dnl we look for our own LIBOBJs.
|
109
|
-
m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
|
110
|
-
m4_pushdef([AC_LIBSOURCES])
|
111
|
-
|
112
|
-
dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
|
113
|
-
m4_if(_LTDL_MODE, [],
|
114
|
-
[m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
|
115
|
-
m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
|
116
|
-
[m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
|
117
|
-
|
118
|
-
AC_ARG_WITH([included_ltdl],
|
119
|
-
[AS_HELP_STRING([--with-included-ltdl],
|
120
|
-
[use the GNU ltdl sources included here])])
|
121
|
-
|
122
|
-
if test "x$with_included_ltdl" != xyes; then
|
123
|
-
# We are not being forced to use the included libltdl sources, so
|
124
|
-
# decide whether there is a useful installed version we can use.
|
125
|
-
AC_CHECK_HEADER([ltdl.h],
|
126
|
-
[AC_CHECK_DECL([lt_dlinterface_register],
|
127
|
-
[AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
|
128
|
-
[with_included_ltdl=no],
|
129
|
-
[with_included_ltdl=yes])],
|
130
|
-
[with_included_ltdl=yes],
|
131
|
-
[AC_INCLUDES_DEFAULT
|
132
|
-
#include <ltdl.h>])],
|
133
|
-
[with_included_ltdl=yes],
|
134
|
-
[AC_INCLUDES_DEFAULT]
|
135
|
-
)
|
136
|
-
fi
|
137
|
-
|
138
|
-
dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
|
139
|
-
dnl was called yet, then for old times' sake, we assume libltdl is in an
|
140
|
-
dnl eponymous directory:
|
141
|
-
AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
|
142
|
-
|
143
|
-
AC_ARG_WITH([ltdl_include],
|
144
|
-
[AS_HELP_STRING([--with-ltdl-include=DIR],
|
145
|
-
[use the ltdl headers installed in DIR])])
|
146
|
-
|
147
|
-
if test -n "$with_ltdl_include"; then
|
148
|
-
if test -f "$with_ltdl_include/ltdl.h"; then :
|
149
|
-
else
|
150
|
-
AC_MSG_ERROR([invalid ltdl include directory: `$with_ltdl_include'])
|
151
|
-
fi
|
152
|
-
else
|
153
|
-
with_ltdl_include=no
|
154
|
-
fi
|
155
|
-
|
156
|
-
AC_ARG_WITH([ltdl_lib],
|
157
|
-
[AS_HELP_STRING([--with-ltdl-lib=DIR],
|
158
|
-
[use the libltdl.la installed in DIR])])
|
159
|
-
|
160
|
-
if test -n "$with_ltdl_lib"; then
|
161
|
-
if test -f "$with_ltdl_lib/libltdl.la"; then :
|
162
|
-
else
|
163
|
-
AC_MSG_ERROR([invalid ltdl library directory: `$with_ltdl_lib'])
|
164
|
-
fi
|
165
|
-
else
|
166
|
-
with_ltdl_lib=no
|
167
|
-
fi
|
168
|
-
|
169
|
-
case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
|
170
|
-
,yes,no,no,)
|
171
|
-
m4_case(m4_default(_LTDL_TYPE, [convenience]),
|
172
|
-
[convenience], [_LTDL_CONVENIENCE],
|
173
|
-
[installable], [_LTDL_INSTALLABLE],
|
174
|
-
[m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
|
175
|
-
;;
|
176
|
-
,no,no,no,)
|
177
|
-
# If the included ltdl is not to be used, then use the
|
178
|
-
# preinstalled libltdl we found.
|
179
|
-
AC_DEFINE([HAVE_LTDL], [1],
|
180
|
-
[Define this if a modern libltdl is already installed])
|
181
|
-
LIBLTDL=-lltdl
|
182
|
-
LTDLDEPS=
|
183
|
-
LTDLINCL=
|
184
|
-
;;
|
185
|
-
,no*,no,*)
|
186
|
-
AC_MSG_ERROR([`--with-ltdl-include' and `--with-ltdl-lib' options must be used together])
|
187
|
-
;;
|
188
|
-
*) with_included_ltdl=no
|
189
|
-
LIBLTDL="-L$with_ltdl_lib -lltdl"
|
190
|
-
LTDLDEPS=
|
191
|
-
LTDLINCL="-I$with_ltdl_include"
|
192
|
-
;;
|
193
|
-
esac
|
194
|
-
INCLTDL="$LTDLINCL"
|
195
|
-
|
196
|
-
# Report our decision...
|
197
|
-
AC_MSG_CHECKING([where to find libltdl headers])
|
198
|
-
AC_MSG_RESULT([$LTDLINCL])
|
199
|
-
AC_MSG_CHECKING([where to find libltdl library])
|
200
|
-
AC_MSG_RESULT([$LIBLTDL])
|
201
|
-
|
202
|
-
_LTDL_SETUP
|
203
|
-
|
204
|
-
dnl restore autoconf definition.
|
205
|
-
m4_popdef([AC_LIBOBJ])
|
206
|
-
m4_popdef([AC_LIBSOURCES])
|
207
|
-
|
208
|
-
AC_CONFIG_COMMANDS_PRE([
|
209
|
-
_ltdl_libobjs=
|
210
|
-
_ltdl_ltlibobjs=
|
211
|
-
if test -n "$_LT_LIBOBJS"; then
|
212
|
-
# Remove the extension.
|
213
|
-
_lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
|
214
|
-
for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
|
215
|
-
_ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
|
216
|
-
_ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
|
217
|
-
done
|
218
|
-
fi
|
219
|
-
AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
|
220
|
-
AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
|
221
|
-
])
|
222
|
-
|
223
|
-
# Only expand once:
|
224
|
-
m4_define([LTDL_INIT])
|
225
|
-
])
|
226
|
-
m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
|
227
|
-
m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
|
228
|
-
You should run autoupdate.])dnl
|
229
|
-
LTDL_INIT($@)])
|
230
|
-
m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
|
231
|
-
m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
|
232
|
-
You should run autoupdate.])dnl
|
233
|
-
LTDL_INIT($@)])
|
234
|
-
m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
|
235
|
-
m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
|
236
|
-
You should run autoupdate.])dnl
|
237
|
-
LTDL_INIT($@)])
|
238
|
-
m4trace:/usr/share/aclocal/ltdl.m4:367: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
|
239
|
-
AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
|
240
|
-
AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
|
241
|
-
AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
|
242
|
-
AC_REQUIRE([LT_LIB_DLLOAD])dnl
|
243
|
-
AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
|
244
|
-
AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
|
245
|
-
AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
|
246
|
-
AC_REQUIRE([gl_FUNC_ARGZ])dnl
|
247
|
-
|
248
|
-
m4_require([_LT_CHECK_OBJDIR])dnl
|
249
|
-
m4_require([_LT_HEADER_DLFCN])dnl
|
250
|
-
m4_require([_LT_CHECK_DLPREOPEN])dnl
|
251
|
-
m4_require([_LT_DECL_SED])dnl
|
252
|
-
|
253
|
-
dnl Don't require this, or it will be expanded earlier than the code
|
254
|
-
dnl that sets the variables it relies on:
|
255
|
-
_LT_ENABLE_INSTALL
|
256
|
-
|
257
|
-
dnl _LTDL_MODE specific code must be called at least once:
|
258
|
-
_LTDL_MODE_DISPATCH
|
259
|
-
|
260
|
-
# In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
|
261
|
-
# the user used. This is so that ltdl.h can pick up the parent projects
|
262
|
-
# config.h file, The first file in AC_CONFIG_HEADERS must contain the
|
263
|
-
# definitions required by ltdl.c.
|
264
|
-
# FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
|
265
|
-
AC_CONFIG_COMMANDS_PRE([dnl
|
266
|
-
m4_pattern_allow([^LT_CONFIG_H$])dnl
|
267
|
-
m4_ifset([AH_HEADER],
|
268
|
-
[LT_CONFIG_H=AH_HEADER],
|
269
|
-
[m4_ifset([AC_LIST_HEADERS],
|
270
|
-
[LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's,^[[ ]]*,,;s,[[ :]].*$,,'`],
|
271
|
-
[])])])
|
272
|
-
AC_SUBST([LT_CONFIG_H])
|
273
|
-
|
274
|
-
AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
|
275
|
-
[], [], [AC_INCLUDES_DEFAULT])
|
276
|
-
|
277
|
-
AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
|
278
|
-
AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
|
279
|
-
|
280
|
-
AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
|
281
|
-
|
282
|
-
name=ltdl
|
283
|
-
LTDLOPEN=`eval "\\$ECHO \"$libname_spec\""`
|
284
|
-
AC_SUBST([LTDLOPEN])
|
285
|
-
])
|
286
|
-
m4trace:/usr/share/aclocal/ltdl.m4:437: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
287
|
-
AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
|
288
|
-
[lt_cv_sys_dlopen_deplibs],
|
289
|
-
[# PORTME does your system automatically load deplibs for dlopen?
|
290
|
-
# or its logical equivalent (e.g. shl_load for HP-UX < 11)
|
291
|
-
# For now, we just catch OSes we know something about -- in the
|
292
|
-
# future, we'll try test this programmatically.
|
293
|
-
lt_cv_sys_dlopen_deplibs=unknown
|
294
|
-
case $host_os in
|
295
|
-
aix3*|aix4.1.*|aix4.2.*)
|
296
|
-
# Unknown whether this is true for these versions of AIX, but
|
297
|
-
# we want this `case' here to explicitly catch those versions.
|
298
|
-
lt_cv_sys_dlopen_deplibs=unknown
|
299
|
-
;;
|
300
|
-
aix[[4-9]]*)
|
301
|
-
lt_cv_sys_dlopen_deplibs=yes
|
302
|
-
;;
|
303
|
-
amigaos*)
|
304
|
-
case $host_cpu in
|
305
|
-
powerpc)
|
306
|
-
lt_cv_sys_dlopen_deplibs=no
|
307
|
-
;;
|
308
|
-
esac
|
309
|
-
;;
|
310
|
-
darwin*)
|
311
|
-
# Assuming the user has installed a libdl from somewhere, this is true
|
312
|
-
# If you are looking for one http://www.opendarwin.org/projects/dlcompat
|
313
|
-
lt_cv_sys_dlopen_deplibs=yes
|
314
|
-
;;
|
315
|
-
freebsd* | dragonfly*)
|
316
|
-
lt_cv_sys_dlopen_deplibs=yes
|
317
|
-
;;
|
318
|
-
gnu* | linux* | k*bsd*-gnu)
|
319
|
-
# GNU and its variants, using gnu ld.so (Glibc)
|
320
|
-
lt_cv_sys_dlopen_deplibs=yes
|
321
|
-
;;
|
322
|
-
hpux10*|hpux11*)
|
323
|
-
lt_cv_sys_dlopen_deplibs=yes
|
324
|
-
;;
|
325
|
-
interix*)
|
326
|
-
lt_cv_sys_dlopen_deplibs=yes
|
327
|
-
;;
|
328
|
-
irix[[12345]]*|irix6.[[01]]*)
|
329
|
-
# Catch all versions of IRIX before 6.2, and indicate that we don't
|
330
|
-
# know how it worked for any of those versions.
|
331
|
-
lt_cv_sys_dlopen_deplibs=unknown
|
332
|
-
;;
|
333
|
-
irix*)
|
334
|
-
# The case above catches anything before 6.2, and it's known that
|
335
|
-
# at 6.2 and later dlopen does load deplibs.
|
336
|
-
lt_cv_sys_dlopen_deplibs=yes
|
337
|
-
;;
|
338
|
-
netbsd* | netbsdelf*-gnu)
|
339
|
-
lt_cv_sys_dlopen_deplibs=yes
|
340
|
-
;;
|
341
|
-
openbsd*)
|
342
|
-
lt_cv_sys_dlopen_deplibs=yes
|
343
|
-
;;
|
344
|
-
osf[[1234]]*)
|
345
|
-
# dlopen did load deplibs (at least at 4.x), but until the 5.x series,
|
346
|
-
# it did *not* use an RPATH in a shared library to find objects the
|
347
|
-
# library depends on, so we explicitly say `no'.
|
348
|
-
lt_cv_sys_dlopen_deplibs=no
|
349
|
-
;;
|
350
|
-
osf5.0|osf5.0a|osf5.1)
|
351
|
-
# dlopen *does* load deplibs and with the right loader patch applied
|
352
|
-
# it even uses RPATH in a shared library to search for shared objects
|
353
|
-
# that the library depends on, but there's no easy way to know if that
|
354
|
-
# patch is installed. Since this is the case, all we can really
|
355
|
-
# say is unknown -- it depends on the patch being installed. If
|
356
|
-
# it is, this changes to `yes'. Without it, it would be `no'.
|
357
|
-
lt_cv_sys_dlopen_deplibs=unknown
|
358
|
-
;;
|
359
|
-
osf*)
|
360
|
-
# the two cases above should catch all versions of osf <= 5.1. Read
|
361
|
-
# the comments above for what we know about them.
|
362
|
-
# At > 5.1, deplibs are loaded *and* any RPATH in a shared library
|
363
|
-
# is used to find them so we can finally say `yes'.
|
364
|
-
lt_cv_sys_dlopen_deplibs=yes
|
365
|
-
;;
|
366
|
-
qnx*)
|
367
|
-
lt_cv_sys_dlopen_deplibs=yes
|
368
|
-
;;
|
369
|
-
solaris*)
|
370
|
-
lt_cv_sys_dlopen_deplibs=yes
|
371
|
-
;;
|
372
|
-
sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
|
373
|
-
libltdl_cv_sys_dlopen_deplibs=yes
|
374
|
-
;;
|
375
|
-
esac
|
376
|
-
])
|
377
|
-
if test "$lt_cv_sys_dlopen_deplibs" != yes; then
|
378
|
-
AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
|
379
|
-
[Define if the OS needs help to load dependent libraries for dlopen().])
|
380
|
-
fi
|
381
|
-
])
|
382
|
-
m4trace:/usr/share/aclocal/ltdl.m4:536: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
|
383
|
-
m4trace:/usr/share/aclocal/ltdl.m4:536: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
|
384
|
-
You should run autoupdate.])dnl
|
385
|
-
m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
|
386
|
-
m4trace:/usr/share/aclocal/ltdl.m4:543: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
|
387
|
-
AC_CACHE_CHECK([which extension is used for runtime loadable modules],
|
388
|
-
[libltdl_cv_shlibext],
|
389
|
-
[
|
390
|
-
module=yes
|
391
|
-
eval libltdl_cv_shlibext=$shrext_cmds
|
392
|
-
])
|
393
|
-
if test -n "$libltdl_cv_shlibext"; then
|
394
|
-
m4_pattern_allow([LT_MODULE_EXT])dnl
|
395
|
-
AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
|
396
|
-
[Define to the extension used for runtime loadable modules, say, ".so".])
|
397
|
-
fi
|
398
|
-
])
|
399
|
-
m4trace:/usr/share/aclocal/ltdl.m4:559: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
|
400
|
-
m4trace:/usr/share/aclocal/ltdl.m4:559: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
|
401
|
-
You should run autoupdate.])dnl
|
402
|
-
m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
|
403
|
-
m4trace:/usr/share/aclocal/ltdl.m4:566: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
|
404
|
-
AC_CACHE_CHECK([which variable specifies run-time module search path],
|
405
|
-
[lt_cv_module_path_var], [lt_cv_module_path_var="$shlibpath_var"])
|
406
|
-
if test -n "$lt_cv_module_path_var"; then
|
407
|
-
m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
|
408
|
-
AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
|
409
|
-
[Define to the name of the environment variable that determines the run-time module search path.])
|
410
|
-
fi
|
411
|
-
])
|
412
|
-
m4trace:/usr/share/aclocal/ltdl.m4:578: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
|
413
|
-
m4trace:/usr/share/aclocal/ltdl.m4:578: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
|
414
|
-
You should run autoupdate.])dnl
|
415
|
-
m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
|
416
|
-
m4trace:/usr/share/aclocal/ltdl.m4:585: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
|
417
|
-
AC_CACHE_CHECK([for the default library search path],
|
418
|
-
[lt_cv_sys_dlsearch_path],
|
419
|
-
[lt_cv_sys_dlsearch_path="$sys_lib_dlsearch_path_spec"])
|
420
|
-
if test -n "$lt_cv_sys_dlsearch_path"; then
|
421
|
-
sys_dlsearch_path=
|
422
|
-
for dir in $lt_cv_sys_dlsearch_path; do
|
423
|
-
if test -z "$sys_dlsearch_path"; then
|
424
|
-
sys_dlsearch_path="$dir"
|
425
|
-
else
|
426
|
-
sys_dlsearch_path="$sys_dlsearch_path$PATH_SEPARATOR$dir"
|
427
|
-
fi
|
428
|
-
done
|
429
|
-
m4_pattern_allow([LT_DLSEARCH_PATH])dnl
|
430
|
-
AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
|
431
|
-
[Define to the system default library search path.])
|
432
|
-
fi
|
433
|
-
])
|
434
|
-
m4trace:/usr/share/aclocal/ltdl.m4:606: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
|
435
|
-
m4trace:/usr/share/aclocal/ltdl.m4:606: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
|
436
|
-
You should run autoupdate.])dnl
|
437
|
-
m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
|
438
|
-
m4trace:/usr/share/aclocal/ltdl.m4:632: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
|
439
|
-
LT_DLLOADERS=
|
440
|
-
AC_SUBST([LT_DLLOADERS])
|
441
|
-
|
442
|
-
AC_LANG_PUSH([C])
|
443
|
-
|
444
|
-
LIBADD_DLOPEN=
|
445
|
-
AC_SEARCH_LIBS([dlopen], [dl],
|
446
|
-
[AC_DEFINE([HAVE_LIBDL], [1],
|
447
|
-
[Define if you have the libdl library or equivalent.])
|
448
|
-
if test "$ac_cv_search_dlopen" != "none required" ; then
|
449
|
-
LIBADD_DLOPEN="-ldl"
|
450
|
-
fi
|
451
|
-
libltdl_cv_lib_dl_dlopen="yes"
|
452
|
-
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
|
453
|
-
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
|
454
|
-
# include <dlfcn.h>
|
455
|
-
#endif
|
456
|
-
]], [[dlopen(0, 0);]])],
|
457
|
-
[AC_DEFINE([HAVE_LIBDL], [1],
|
458
|
-
[Define if you have the libdl library or equivalent.])
|
459
|
-
libltdl_cv_func_dlopen="yes"
|
460
|
-
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
|
461
|
-
[AC_CHECK_LIB([svld], [dlopen],
|
462
|
-
[AC_DEFINE([HAVE_LIBDL], [1],
|
463
|
-
[Define if you have the libdl library or equivalent.])
|
464
|
-
LIBADD_DLOPEN="-lsvld" libltdl_cv_func_dlopen="yes"
|
465
|
-
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
|
466
|
-
if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes
|
467
|
-
then
|
468
|
-
lt_save_LIBS="$LIBS"
|
469
|
-
LIBS="$LIBS $LIBADD_DLOPEN"
|
470
|
-
AC_CHECK_FUNCS([dlerror])
|
471
|
-
LIBS="$lt_save_LIBS"
|
472
|
-
fi
|
473
|
-
AC_SUBST([LIBADD_DLOPEN])
|
474
|
-
|
475
|
-
LIBADD_SHL_LOAD=
|
476
|
-
AC_CHECK_FUNC([shl_load],
|
477
|
-
[AC_DEFINE([HAVE_SHL_LOAD], [1],
|
478
|
-
[Define if you have the shl_load function.])
|
479
|
-
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
|
480
|
-
[AC_CHECK_LIB([dld], [shl_load],
|
481
|
-
[AC_DEFINE([HAVE_SHL_LOAD], [1],
|
482
|
-
[Define if you have the shl_load function.])
|
483
|
-
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
|
484
|
-
LIBADD_SHL_LOAD="-ldld"])])
|
485
|
-
AC_SUBST([LIBADD_SHL_LOAD])
|
486
|
-
|
487
|
-
case $host_os in
|
488
|
-
darwin[[1567]].*)
|
489
|
-
# We only want this for pre-Mac OS X 10.4.
|
490
|
-
AC_CHECK_FUNC([_dyld_func_lookup],
|
491
|
-
[AC_DEFINE([HAVE_DYLD], [1],
|
492
|
-
[Define if you have the _dyld_func_lookup function.])
|
493
|
-
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
|
494
|
-
;;
|
495
|
-
beos*)
|
496
|
-
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
|
497
|
-
;;
|
498
|
-
cygwin* | mingw* | os2* | pw32*)
|
499
|
-
AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
|
500
|
-
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
|
501
|
-
;;
|
502
|
-
esac
|
503
|
-
|
504
|
-
AC_CHECK_LIB([dld], [dld_link],
|
505
|
-
[AC_DEFINE([HAVE_DLD], [1],
|
506
|
-
[Define if you have the GNU dld library.])
|
507
|
-
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
|
508
|
-
AC_SUBST([LIBADD_DLD_LINK])
|
509
|
-
|
510
|
-
m4_pattern_allow([^LT_DLPREOPEN$])
|
511
|
-
LT_DLPREOPEN=
|
512
|
-
if test -n "$LT_DLLOADERS"
|
513
|
-
then
|
514
|
-
for lt_loader in $LT_DLLOADERS; do
|
515
|
-
LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
|
516
|
-
done
|
517
|
-
AC_DEFINE([HAVE_LIBDLLOADER], [1],
|
518
|
-
[Define if libdlloader will be built on this platform])
|
519
|
-
fi
|
520
|
-
AC_SUBST([LT_DLPREOPEN])
|
521
|
-
|
522
|
-
dnl This isn't used anymore, but set it for backwards compatibility
|
523
|
-
LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
|
524
|
-
AC_SUBST([LIBADD_DL])
|
525
|
-
|
526
|
-
AC_LANG_POP
|
527
|
-
])
|
528
|
-
m4trace:/usr/share/aclocal/ltdl.m4:725: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
|
529
|
-
m4trace:/usr/share/aclocal/ltdl.m4:725: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
|
530
|
-
You should run autoupdate.])dnl
|
531
|
-
m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
|
532
|
-
m4trace:/usr/share/aclocal/ltdl.m4:733: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
|
533
|
-
AC_CACHE_CHECK([for _ prefix in compiled symbols],
|
534
|
-
[lt_cv_sys_symbol_underscore],
|
535
|
-
[lt_cv_sys_symbol_underscore=no
|
536
|
-
cat > conftest.$ac_ext <<_LT_EOF
|
537
|
-
void nm_test_func(){}
|
538
|
-
int main(){nm_test_func;return 0;}
|
539
|
-
_LT_EOF
|
540
|
-
if AC_TRY_EVAL(ac_compile); then
|
541
|
-
# Now try to grab the symbols.
|
542
|
-
ac_nlist=conftest.nm
|
543
|
-
if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
|
544
|
-
# See whether the symbols have a leading underscore.
|
545
|
-
if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
|
546
|
-
lt_cv_sys_symbol_underscore=yes
|
547
|
-
else
|
548
|
-
if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
|
549
|
-
:
|
550
|
-
else
|
551
|
-
echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
|
552
|
-
fi
|
553
|
-
fi
|
554
|
-
else
|
555
|
-
echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
|
556
|
-
fi
|
557
|
-
else
|
558
|
-
echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
|
559
|
-
cat conftest.c >&AS_MESSAGE_LOG_FD
|
560
|
-
fi
|
561
|
-
rm -rf conftest*
|
562
|
-
])
|
563
|
-
sys_symbol_underscore=$lt_cv_sys_symbol_underscore
|
564
|
-
AC_SUBST([sys_symbol_underscore])
|
565
|
-
])
|
566
|
-
m4trace:/usr/share/aclocal/ltdl.m4:770: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
|
567
|
-
m4trace:/usr/share/aclocal/ltdl.m4:770: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete.
|
568
|
-
You should run autoupdate.])dnl
|
569
|
-
m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
|
570
|
-
m4trace:/usr/share/aclocal/ltdl.m4:777: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
|
571
|
-
if test x"$lt_cv_sys_symbol_underscore" = xyes; then
|
572
|
-
if test x"$libltdl_cv_func_dlopen" = xyes ||
|
573
|
-
test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then
|
574
|
-
AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
|
575
|
-
[libltdl_cv_need_uscore],
|
576
|
-
[libltdl_cv_need_uscore=unknown
|
577
|
-
save_LIBS="$LIBS"
|
578
|
-
LIBS="$LIBS $LIBADD_DLOPEN"
|
579
|
-
_LT_TRY_DLOPEN_SELF(
|
580
|
-
[libltdl_cv_need_uscore=no], [libltdl_cv_need_uscore=yes],
|
581
|
-
[], [libltdl_cv_need_uscore=cross])
|
582
|
-
LIBS="$save_LIBS"
|
583
|
-
])
|
584
|
-
fi
|
585
|
-
fi
|
586
|
-
|
587
|
-
if test x"$libltdl_cv_need_uscore" = xyes; then
|
588
|
-
AC_DEFINE([NEED_USCORE], [1],
|
589
|
-
[Define if dlsym() requires a leading underscore in symbol names.])
|
590
|
-
fi
|
591
|
-
])
|
592
|
-
m4trace:/usr/share/aclocal/ltdl.m4:802: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
|
593
|
-
m4trace:/usr/share/aclocal/ltdl.m4:802: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
|
594
|
-
You should run autoupdate.])dnl
|
595
|
-
m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
|
596
|
-
m4trace:/usr/share/aclocal-1.11/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11'
|
597
|
-
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
|
598
|
-
dnl require some minimum version. Point them to the right macro.
|
599
|
-
m4_if([$1], [1.11], [],
|
600
|
-
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
|
601
|
-
])
|
602
|
-
m4trace:/usr/share/aclocal-1.11/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11])dnl
|
603
|
-
m4_ifndef([AC_AUTOCONF_VERSION],
|
604
|
-
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
605
|
-
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
|
606
|
-
m4trace:/usr/share/aclocal-1.11/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
|
607
|
-
AC_PREREQ([2.50])dnl
|
608
|
-
# expand $ac_aux_dir to an absolute path
|
609
|
-
am_aux_dir=`cd $ac_aux_dir && pwd`
|
610
|
-
])
|
611
|
-
m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl
|
612
|
-
ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
|
613
|
-
[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
|
614
|
-
AC_SUBST([$1_TRUE])dnl
|
615
|
-
AC_SUBST([$1_FALSE])dnl
|
616
|
-
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
|
617
|
-
_AM_SUBST_NOTMAKE([$1_FALSE])dnl
|
618
|
-
m4_define([_AM_COND_VALUE_$1], [$2])dnl
|
619
|
-
if $2; then
|
620
|
-
$1_TRUE=
|
621
|
-
$1_FALSE='#'
|
622
|
-
else
|
623
|
-
$1_TRUE='#'
|
624
|
-
$1_FALSE=
|
625
|
-
fi
|
626
|
-
AC_CONFIG_COMMANDS_PRE(
|
627
|
-
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
|
628
|
-
AC_MSG_ERROR([[conditional "$1" was never defined.
|
629
|
-
Usually this means the macro was only invoked conditionally.]])
|
630
|
-
fi])])
|
631
|
-
m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
|
632
|
-
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
|
633
|
-
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
|
634
|
-
AC_REQUIRE([AM_DEP_TRACK])dnl
|
635
|
-
|
636
|
-
ifelse([$1], CC, [depcc="$CC" am_compiler_list=],
|
637
|
-
[$1], CXX, [depcc="$CXX" am_compiler_list=],
|
638
|
-
[$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
|
639
|
-
[$1], UPC, [depcc="$UPC" am_compiler_list=],
|
640
|
-
[$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
|
641
|
-
[depcc="$$1" am_compiler_list=])
|
642
|
-
|
643
|
-
AC_CACHE_CHECK([dependency style of $depcc],
|
644
|
-
[am_cv_$1_dependencies_compiler_type],
|
645
|
-
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
|
646
|
-
# We make a subdir and do the tests there. Otherwise we can end up
|
647
|
-
# making bogus files that we don't know about and never remove. For
|
648
|
-
# instance it was reported that on HP-UX the gcc test will end up
|
649
|
-
# making a dummy file named `D' -- because `-MD' means `put the output
|
650
|
-
# in D'.
|
651
|
-
mkdir conftest.dir
|
652
|
-
# Copy depcomp to subdir because otherwise we won't find it if we're
|
653
|
-
# using a relative directory.
|
654
|
-
cp "$am_depcomp" conftest.dir
|
655
|
-
cd conftest.dir
|
656
|
-
# We will build objects and dependencies in a subdirectory because
|
657
|
-
# it helps to detect inapplicable dependency modes. For instance
|
658
|
-
# both Tru64's cc and ICC support -MD to output dependencies as a
|
659
|
-
# side effect of compilation, but ICC will put the dependencies in
|
660
|
-
# the current directory while Tru64 will put them in the object
|
661
|
-
# directory.
|
662
|
-
mkdir sub
|
663
|
-
|
664
|
-
am_cv_$1_dependencies_compiler_type=none
|
665
|
-
if test "$am_compiler_list" = ""; then
|
666
|
-
am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
|
667
|
-
fi
|
668
|
-
am__universal=false
|
669
|
-
m4_case([$1], [CC],
|
670
|
-
[case " $depcc " in #(
|
671
|
-
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
672
|
-
esac],
|
673
|
-
[CXX],
|
674
|
-
[case " $depcc " in #(
|
675
|
-
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
676
|
-
esac])
|
677
|
-
|
678
|
-
for depmode in $am_compiler_list; do
|
679
|
-
# Setup a source with many dependencies, because some compilers
|
680
|
-
# like to wrap large dependency lists on column 80 (with \), and
|
681
|
-
# we should not choose a depcomp mode which is confused by this.
|
682
|
-
#
|
683
|
-
# We need to recreate these files for each test, as the compiler may
|
684
|
-
# overwrite some of them when testing with obscure command lines.
|
685
|
-
# This happens at least with the AIX C compiler.
|
686
|
-
: > sub/conftest.c
|
687
|
-
for i in 1 2 3 4 5 6; do
|
688
|
-
echo '#include "conftst'$i'.h"' >> sub/conftest.c
|
689
|
-
# Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
|
690
|
-
# Solaris 8's {/usr,}/bin/sh.
|
691
|
-
touch sub/conftst$i.h
|
692
|
-
done
|
693
|
-
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
|
694
|
-
|
695
|
-
# We check with `-c' and `-o' for the sake of the "dashmstdout"
|
696
|
-
# mode. It turns out that the SunPro C++ compiler does not properly
|
697
|
-
# handle `-M -o', and we need to detect this. Also, some Intel
|
698
|
-
# versions had trouble with output in subdirs
|
699
|
-
am__obj=sub/conftest.${OBJEXT-o}
|
700
|
-
am__minus_obj="-o $am__obj"
|
701
|
-
case $depmode in
|
702
|
-
gcc)
|
703
|
-
# This depmode causes a compiler race in universal mode.
|
704
|
-
test "$am__universal" = false || continue
|
705
|
-
;;
|
706
|
-
nosideeffect)
|
707
|
-
# after this tag, mechanisms are not by side-effect, so they'll
|
708
|
-
# only be used when explicitly requested
|
709
|
-
if test "x$enable_dependency_tracking" = xyes; then
|
710
|
-
continue
|
711
|
-
else
|
712
|
-
break
|
713
|
-
fi
|
714
|
-
;;
|
715
|
-
msvisualcpp | msvcmsys)
|
716
|
-
# This compiler won't grok `-c -o', but also, the minuso test has
|
717
|
-
# not run yet. These depmodes are late enough in the game, and
|
718
|
-
# so weak that their functioning should not be impacted.
|
719
|
-
am__obj=conftest.${OBJEXT-o}
|
720
|
-
am__minus_obj=
|
721
|
-
;;
|
722
|
-
none) break ;;
|
723
|
-
esac
|
724
|
-
if depmode=$depmode \
|
725
|
-
source=sub/conftest.c object=$am__obj \
|
726
|
-
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
|
727
|
-
$SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
|
728
|
-
>/dev/null 2>conftest.err &&
|
729
|
-
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
|
730
|
-
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
|
731
|
-
grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
|
732
|
-
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
|
733
|
-
# icc doesn't choke on unknown options, it will just issue warnings
|
734
|
-
# or remarks (even with -Werror). So we grep stderr for any message
|
735
|
-
# that says an option was ignored or not supported.
|
736
|
-
# When given -MP, icc 7.0 and 7.1 complain thusly:
|
737
|
-
# icc: Command line warning: ignoring option '-M'; no argument required
|
738
|
-
# The diagnosis changed in icc 8.0:
|
739
|
-
# icc: Command line remark: option '-MP' not supported
|
740
|
-
if (grep 'ignoring option' conftest.err ||
|
741
|
-
grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
|
742
|
-
am_cv_$1_dependencies_compiler_type=$depmode
|
743
|
-
break
|
744
|
-
fi
|
745
|
-
fi
|
746
|
-
done
|
747
|
-
|
748
|
-
cd ..
|
749
|
-
rm -rf conftest.dir
|
750
|
-
else
|
751
|
-
am_cv_$1_dependencies_compiler_type=none
|
752
|
-
fi
|
753
|
-
])
|
754
|
-
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
|
755
|
-
AM_CONDITIONAL([am__fastdep$1], [
|
756
|
-
test "x$enable_dependency_tracking" != xno \
|
757
|
-
&& test "$am_cv_$1_dependencies_compiler_type" = gcc3])
|
758
|
-
])
|
759
|
-
m4trace:/usr/share/aclocal-1.11/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
760
|
-
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
|
761
|
-
])
|
762
|
-
m4trace:/usr/share/aclocal-1.11/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking,
|
763
|
-
[ --disable-dependency-tracking speeds up one-time build
|
764
|
-
--enable-dependency-tracking do not reject slow dependency extractors])
|
765
|
-
if test "x$enable_dependency_tracking" != xno; then
|
766
|
-
am_depcomp="$ac_aux_dir/depcomp"
|
767
|
-
AMDEPBACKSLASH='\'
|
768
|
-
fi
|
769
|
-
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
770
|
-
AC_SUBST([AMDEPBACKSLASH])dnl
|
771
|
-
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
|
772
|
-
])
|
773
|
-
m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
|
774
|
-
# Autoconf 2.62 quotes --file arguments for eval, but not when files
|
775
|
-
# are listed without --file. Let's play safe and only enable the eval
|
776
|
-
# if we detect the quoting.
|
777
|
-
case $CONFIG_FILES in
|
778
|
-
*\'*) eval set x "$CONFIG_FILES" ;;
|
779
|
-
*) set x $CONFIG_FILES ;;
|
780
|
-
esac
|
781
|
-
shift
|
782
|
-
for mf
|
783
|
-
do
|
784
|
-
# Strip MF so we end up with the name of the file.
|
785
|
-
mf=`echo "$mf" | sed -e 's/:.*$//'`
|
786
|
-
# Check whether this is an Automake generated Makefile or not.
|
787
|
-
# We used to match only the files named `Makefile.in', but
|
788
|
-
# some people rename them; so instead we look at the file content.
|
789
|
-
# Grep'ing the first line is not enough: some people post-process
|
790
|
-
# each Makefile.in and add a new line on top of each file to say so.
|
791
|
-
# Grep'ing the whole file is not good either: AIX grep has a line
|
792
|
-
# limit of 2048, but all sed's we know have understand at least 4000.
|
793
|
-
if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
|
794
|
-
dirpart=`AS_DIRNAME("$mf")`
|
795
|
-
else
|
796
|
-
continue
|
797
|
-
fi
|
798
|
-
# Extract the definition of DEPDIR, am__include, and am__quote
|
799
|
-
# from the Makefile without running `make'.
|
800
|
-
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
|
801
|
-
test -z "$DEPDIR" && continue
|
802
|
-
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
803
|
-
test -z "am__include" && continue
|
804
|
-
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
805
|
-
# When using ansi2knr, U may be empty or an underscore; expand it
|
806
|
-
U=`sed -n 's/^U = //p' < "$mf"`
|
807
|
-
# Find all dependency output files, they are included files with
|
808
|
-
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
809
|
-
# simplest approach to changing $(DEPDIR) to its actual value in the
|
810
|
-
# expansion.
|
811
|
-
for file in `sed -n "
|
812
|
-
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
813
|
-
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
|
814
|
-
# Make sure the directory exists.
|
815
|
-
test -f "$dirpart/$file" && continue
|
816
|
-
fdir=`AS_DIRNAME(["$file"])`
|
817
|
-
AS_MKDIR_P([$dirpart/$fdir])
|
818
|
-
# echo "creating $dirpart/$file"
|
819
|
-
echo '# dummy' > "$dirpart/$file"
|
820
|
-
done
|
821
|
-
done
|
822
|
-
}
|
823
|
-
])
|
824
|
-
m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
|
825
|
-
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
|
826
|
-
[AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
|
827
|
-
])
|
828
|
-
m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl
|
829
|
-
dnl Autoconf wants to disallow AM_ names. We explicitly allow
|
830
|
-
dnl the ones we care about.
|
831
|
-
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
|
832
|
-
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
|
833
|
-
AC_REQUIRE([AC_PROG_INSTALL])dnl
|
834
|
-
if test "`cd $srcdir && pwd`" != "`pwd`"; then
|
835
|
-
# Use -I$(srcdir) only when $(srcdir) != ., so that make's output
|
836
|
-
# is not polluted with repeated "-I."
|
837
|
-
AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
|
838
|
-
# test to see if srcdir already configured
|
839
|
-
if test -f $srcdir/config.status; then
|
840
|
-
AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
|
841
|
-
fi
|
842
|
-
fi
|
843
|
-
|
844
|
-
# test whether we have cygpath
|
845
|
-
if test -z "$CYGPATH_W"; then
|
846
|
-
if (cygpath --version) >/dev/null 2>/dev/null; then
|
847
|
-
CYGPATH_W='cygpath -w'
|
848
|
-
else
|
849
|
-
CYGPATH_W=echo
|
850
|
-
fi
|
851
|
-
fi
|
852
|
-
AC_SUBST([CYGPATH_W])
|
853
|
-
|
854
|
-
# Define the identity of the package.
|
855
|
-
dnl Distinguish between old-style and new-style calls.
|
856
|
-
m4_ifval([$2],
|
857
|
-
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
|
858
|
-
AC_SUBST([PACKAGE], [$1])dnl
|
859
|
-
AC_SUBST([VERSION], [$2])],
|
860
|
-
[_AM_SET_OPTIONS([$1])dnl
|
861
|
-
dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
|
862
|
-
m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
|
863
|
-
[m4_fatal([AC_INIT should be called with package and version arguments])])dnl
|
864
|
-
AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
|
865
|
-
AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
|
866
|
-
|
867
|
-
_AM_IF_OPTION([no-define],,
|
868
|
-
[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
|
869
|
-
AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
|
870
|
-
|
871
|
-
# Some tools Automake needs.
|
872
|
-
AC_REQUIRE([AM_SANITY_CHECK])dnl
|
873
|
-
AC_REQUIRE([AC_ARG_PROGRAM])dnl
|
874
|
-
AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
|
875
|
-
AM_MISSING_PROG(AUTOCONF, autoconf)
|
876
|
-
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
|
877
|
-
AM_MISSING_PROG(AUTOHEADER, autoheader)
|
878
|
-
AM_MISSING_PROG(MAKEINFO, makeinfo)
|
879
|
-
AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
880
|
-
AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
|
881
|
-
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
|
882
|
-
# We need awk for the "check" target. The system "awk" is bad on
|
883
|
-
# some platforms.
|
884
|
-
AC_REQUIRE([AC_PROG_AWK])dnl
|
885
|
-
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
886
|
-
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
887
|
-
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
|
888
|
-
[_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
|
889
|
-
[_AM_PROG_TAR([v7])])])
|
890
|
-
_AM_IF_OPTION([no-dependencies],,
|
891
|
-
[AC_PROVIDE_IFELSE([AC_PROG_CC],
|
892
|
-
[_AM_DEPENDENCIES(CC)],
|
893
|
-
[define([AC_PROG_CC],
|
894
|
-
defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
|
895
|
-
AC_PROVIDE_IFELSE([AC_PROG_CXX],
|
896
|
-
[_AM_DEPENDENCIES(CXX)],
|
897
|
-
[define([AC_PROG_CXX],
|
898
|
-
defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
|
899
|
-
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
|
900
|
-
[_AM_DEPENDENCIES(OBJC)],
|
901
|
-
[define([AC_PROG_OBJC],
|
902
|
-
defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
|
903
|
-
])
|
904
|
-
_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
|
905
|
-
dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
|
906
|
-
dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
|
907
|
-
dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
|
908
|
-
AC_CONFIG_COMMANDS_PRE(dnl
|
909
|
-
[m4_provide_if([_AM_COMPILER_EXEEXT],
|
910
|
-
[AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
|
911
|
-
])
|
912
|
-
m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
|
913
|
-
_am_arg=$1
|
914
|
-
_am_stamp_count=1
|
915
|
-
for _am_header in $config_headers :; do
|
916
|
-
case $_am_header in
|
917
|
-
$_am_arg | $_am_arg:* )
|
918
|
-
break ;;
|
919
|
-
* )
|
920
|
-
_am_stamp_count=`expr $_am_stamp_count + 1` ;;
|
921
|
-
esac
|
922
|
-
done
|
923
|
-
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
|
924
|
-
m4trace:/usr/share/aclocal-1.11/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
925
|
-
if test x"${install_sh}" != xset; then
|
926
|
-
case $am_aux_dir in
|
927
|
-
*\ * | *\ *)
|
928
|
-
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
|
929
|
-
*)
|
930
|
-
install_sh="\${SHELL} $am_aux_dir/install-sh"
|
931
|
-
esac
|
932
|
-
fi
|
933
|
-
AC_SUBST(install_sh)])
|
934
|
-
m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
|
935
|
-
mkdir .tst 2>/dev/null
|
936
|
-
if test -d .tst; then
|
937
|
-
am__leading_dot=.
|
938
|
-
else
|
939
|
-
am__leading_dot=_
|
940
|
-
fi
|
941
|
-
rmdir .tst 2>/dev/null
|
942
|
-
AC_SUBST([am__leading_dot])])
|
943
|
-
m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
|
944
|
-
cat > confinc << 'END'
|
945
|
-
am__doit:
|
946
|
-
@echo this is the am__doit target
|
947
|
-
.PHONY: am__doit
|
948
|
-
END
|
949
|
-
# If we don't find an include directive, just comment out the code.
|
950
|
-
AC_MSG_CHECKING([for style of include used by $am_make])
|
951
|
-
am__include="#"
|
952
|
-
am__quote=
|
953
|
-
_am_result=none
|
954
|
-
# First try GNU make style include.
|
955
|
-
echo "include confinc" > confmf
|
956
|
-
# Ignore all kinds of additional output from `make'.
|
957
|
-
case `$am_make -s -f confmf 2> /dev/null` in #(
|
958
|
-
*the\ am__doit\ target*)
|
959
|
-
am__include=include
|
960
|
-
am__quote=
|
961
|
-
_am_result=GNU
|
962
|
-
;;
|
963
|
-
esac
|
964
|
-
# Now try BSD make style include.
|
965
|
-
if test "$am__include" = "#"; then
|
966
|
-
echo '.include "confinc"' > confmf
|
967
|
-
case `$am_make -s -f confmf 2> /dev/null` in #(
|
968
|
-
*the\ am__doit\ target*)
|
969
|
-
am__include=.include
|
970
|
-
am__quote="\""
|
971
|
-
_am_result=BSD
|
972
|
-
;;
|
973
|
-
esac
|
974
|
-
fi
|
975
|
-
AC_SUBST([am__include])
|
976
|
-
AC_SUBST([am__quote])
|
977
|
-
AC_MSG_RESULT([$_am_result])
|
978
|
-
rm -f confinc confmf
|
979
|
-
])
|
980
|
-
m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
|
981
|
-
$1=${$1-"${am_missing_run}$2"}
|
982
|
-
AC_SUBST($1)])
|
983
|
-
m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
984
|
-
AC_REQUIRE_AUX_FILE([missing])dnl
|
985
|
-
if test x"${MISSING+set}" != xset; then
|
986
|
-
case $am_aux_dir in
|
987
|
-
*\ * | *\ *)
|
988
|
-
MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
|
989
|
-
*)
|
990
|
-
MISSING="\${SHELL} $am_aux_dir/missing" ;;
|
991
|
-
esac
|
992
|
-
fi
|
993
|
-
# Use eval to expand $SHELL
|
994
|
-
if eval "$MISSING --run true"; then
|
995
|
-
am_missing_run="$MISSING --run "
|
996
|
-
else
|
997
|
-
am_missing_run=
|
998
|
-
AC_MSG_WARN([`missing' script is too old or missing])
|
999
|
-
fi
|
1000
|
-
])
|
1001
|
-
m4trace:/usr/share/aclocal-1.11/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl
|
1002
|
-
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
|
1003
|
-
dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
|
1004
|
-
dnl while keeping a definition of mkdir_p for backward compatibility.
|
1005
|
-
dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
|
1006
|
-
dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
|
1007
|
-
dnl Makefile.ins that do not define MKDIR_P, so we do our own
|
1008
|
-
dnl adjustment using top_builddir (which is defined more often than
|
1009
|
-
dnl MKDIR_P).
|
1010
|
-
AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
|
1011
|
-
case $mkdir_p in
|
1012
|
-
[[\\/$]]* | ?:[[\\/]]*) ;;
|
1013
|
-
*/*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
|
1014
|
-
esac
|
1015
|
-
])
|
1016
|
-
m4trace:/usr/share/aclocal-1.11/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
|
1017
|
-
m4trace:/usr/share/aclocal-1.11/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
|
1018
|
-
m4trace:/usr/share/aclocal-1.11/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
|
1019
|
-
m4trace:/usr/share/aclocal-1.11/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
|
1020
|
-
m4trace:/usr/share/aclocal-1.11/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
|
1021
|
-
($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
|
1022
|
-
ac_status=$?
|
1023
|
-
echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
|
1024
|
-
(exit $ac_status); }])
|
1025
|
-
m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
|
1026
|
-
# Just in case
|
1027
|
-
sleep 1
|
1028
|
-
echo timestamp > conftest.file
|
1029
|
-
# Reject unsafe characters in $srcdir or the absolute working directory
|
1030
|
-
# name. Accept space and tab only in the latter.
|
1031
|
-
am_lf='
|
1032
|
-
'
|
1033
|
-
case `pwd` in
|
1034
|
-
*[[\\\"\#\$\&\'\`$am_lf]]*)
|
1035
|
-
AC_MSG_ERROR([unsafe absolute working directory name]);;
|
1036
|
-
esac
|
1037
|
-
case $srcdir in
|
1038
|
-
*[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
|
1039
|
-
AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
|
1040
|
-
esac
|
1041
|
-
|
1042
|
-
# Do `set' in a subshell so we don't clobber the current shell's
|
1043
|
-
# arguments. Must try -L first in case configure is actually a
|
1044
|
-
# symlink; some systems play weird games with the mod time of symlinks
|
1045
|
-
# (eg FreeBSD returns the mod time of the symlink's containing
|
1046
|
-
# directory).
|
1047
|
-
if (
|
1048
|
-
set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
|
1049
|
-
if test "$[*]" = "X"; then
|
1050
|
-
# -L didn't work.
|
1051
|
-
set X `ls -t "$srcdir/configure" conftest.file`
|
1052
|
-
fi
|
1053
|
-
rm -f conftest.file
|
1054
|
-
if test "$[*]" != "X $srcdir/configure conftest.file" \
|
1055
|
-
&& test "$[*]" != "X conftest.file $srcdir/configure"; then
|
1056
|
-
|
1057
|
-
# If neither matched, then we have a broken ls. This can happen
|
1058
|
-
# if, for instance, CONFIG_SHELL is bash and it inherits a
|
1059
|
-
# broken ls alias from the environment. This has actually
|
1060
|
-
# happened. Such a system could not be considered "sane".
|
1061
|
-
AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
|
1062
|
-
alias in your environment])
|
1063
|
-
fi
|
1064
|
-
|
1065
|
-
test "$[2]" = conftest.file
|
1066
|
-
)
|
1067
|
-
then
|
1068
|
-
# Ok.
|
1069
|
-
:
|
1070
|
-
else
|
1071
|
-
AC_MSG_ERROR([newly created file is older than distributed files!
|
1072
|
-
Check your system clock])
|
1073
|
-
fi
|
1074
|
-
AC_MSG_RESULT(yes)])
|
1075
|
-
m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules],
|
1076
|
-
[ --enable-silent-rules less verbose build output (undo: `make V=1')
|
1077
|
-
--disable-silent-rules verbose build output (undo: `make V=0')])
|
1078
|
-
case $enable_silent_rules in
|
1079
|
-
yes) AM_DEFAULT_VERBOSITY=0;;
|
1080
|
-
no) AM_DEFAULT_VERBOSITY=1;;
|
1081
|
-
*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
|
1082
|
-
esac
|
1083
|
-
AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
|
1084
|
-
AM_BACKSLASH='\'
|
1085
|
-
AC_SUBST([AM_BACKSLASH])dnl
|
1086
|
-
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
|
1087
|
-
])
|
1088
|
-
m4trace:/usr/share/aclocal-1.11/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
1089
|
-
# Installed binaries are usually stripped using `strip' when the user
|
1090
|
-
# run `make install-strip'. However `strip' might not be the right
|
1091
|
-
# tool to use in cross-compilation environments, therefore Automake
|
1092
|
-
# will honor the `STRIP' environment variable to overrule this program.
|
1093
|
-
dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
|
1094
|
-
if test "$cross_compiling" != no; then
|
1095
|
-
AC_CHECK_TOOL([STRIP], [strip], :)
|
1096
|
-
fi
|
1097
|
-
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
1098
|
-
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
1099
|
-
m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
|
1100
|
-
m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
|
1101
|
-
m4trace:/usr/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
|
1102
|
-
AM_MISSING_PROG([AMTAR], [tar])
|
1103
|
-
m4_if([$1], [v7],
|
1104
|
-
[am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
|
1105
|
-
[m4_case([$1], [ustar],, [pax],,
|
1106
|
-
[m4_fatal([Unknown tar format])])
|
1107
|
-
AC_MSG_CHECKING([how to create a $1 tar archive])
|
1108
|
-
# Loop over all known methods to create a tar archive until one works.
|
1109
|
-
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
|
1110
|
-
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
|
1111
|
-
# Do not fold the above two line into one, because Tru64 sh and
|
1112
|
-
# Solaris sh will not grok spaces in the rhs of `-'.
|
1113
|
-
for _am_tool in $_am_tools
|
1114
|
-
do
|
1115
|
-
case $_am_tool in
|
1116
|
-
gnutar)
|
1117
|
-
for _am_tar in tar gnutar gtar;
|
1118
|
-
do
|
1119
|
-
AM_RUN_LOG([$_am_tar --version]) && break
|
1120
|
-
done
|
1121
|
-
am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
|
1122
|
-
am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
|
1123
|
-
am__untar="$_am_tar -xf -"
|
1124
|
-
;;
|
1125
|
-
plaintar)
|
1126
|
-
# Must skip GNU tar: if it does not support --format= it doesn't create
|
1127
|
-
# ustar tarball either.
|
1128
|
-
(tar --version) >/dev/null 2>&1 && continue
|
1129
|
-
am__tar='tar chf - "$$tardir"'
|
1130
|
-
am__tar_='tar chf - "$tardir"'
|
1131
|
-
am__untar='tar xf -'
|
1132
|
-
;;
|
1133
|
-
pax)
|
1134
|
-
am__tar='pax -L -x $1 -w "$$tardir"'
|
1135
|
-
am__tar_='pax -L -x $1 -w "$tardir"'
|
1136
|
-
am__untar='pax -r'
|
1137
|
-
;;
|
1138
|
-
cpio)
|
1139
|
-
am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
|
1140
|
-
am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
|
1141
|
-
am__untar='cpio -i -H $1 -d'
|
1142
|
-
;;
|
1143
|
-
none)
|
1144
|
-
am__tar=false
|
1145
|
-
am__tar_=false
|
1146
|
-
am__untar=false
|
1147
|
-
;;
|
1148
|
-
esac
|
1149
|
-
|
1150
|
-
# If the value was cached, stop now. We just wanted to have am__tar
|
1151
|
-
# and am__untar set.
|
1152
|
-
test -n "${am_cv_prog_tar_$1}" && break
|
1153
|
-
|
1154
|
-
# tar/untar a dummy directory, and stop if the command works
|
1155
|
-
rm -rf conftest.dir
|
1156
|
-
mkdir conftest.dir
|
1157
|
-
echo GrepMe > conftest.dir/file
|
1158
|
-
AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
|
1159
|
-
rm -rf conftest.dir
|
1160
|
-
if test -s conftest.tar; then
|
1161
|
-
AM_RUN_LOG([$am__untar <conftest.tar])
|
1162
|
-
grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
|
1163
|
-
fi
|
1164
|
-
done
|
1165
|
-
rm -rf conftest.dir
|
1166
|
-
|
1167
|
-
AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
|
1168
|
-
AC_MSG_RESULT([$am_cv_prog_tar_$1])])
|
1169
|
-
AC_SUBST([am__tar])
|
1170
|
-
AC_SUBST([am__untar])
|
1171
|
-
])
|
1172
|
-
m4trace:m4/libtool.m4:67: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
|
1173
|
-
AC_BEFORE([$0], [LT_LANG])dnl
|
1174
|
-
AC_BEFORE([$0], [LT_OUTPUT])dnl
|
1175
|
-
AC_BEFORE([$0], [LTDL_INIT])dnl
|
1176
|
-
m4_require([_LT_CHECK_BUILDDIR])dnl
|
1177
|
-
|
1178
|
-
dnl Autoconf doesn't catch unexpanded LT_ macros by default:
|
1179
|
-
m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
|
1180
|
-
m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
|
1181
|
-
dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
|
1182
|
-
dnl unless we require an AC_DEFUNed macro:
|
1183
|
-
AC_REQUIRE([LTOPTIONS_VERSION])dnl
|
1184
|
-
AC_REQUIRE([LTSUGAR_VERSION])dnl
|
1185
|
-
AC_REQUIRE([LTVERSION_VERSION])dnl
|
1186
|
-
AC_REQUIRE([LTOBSOLETE_VERSION])dnl
|
1187
|
-
m4_require([_LT_PROG_LTMAIN])dnl
|
1188
|
-
|
1189
|
-
dnl Parse OPTIONS
|
1190
|
-
_LT_SET_OPTIONS([$0], [$1])
|
1191
|
-
|
1192
|
-
# This can be used to rebuild libtool when needed
|
1193
|
-
LIBTOOL_DEPS="$ltmain"
|
1194
|
-
|
1195
|
-
# Always use our own libtool.
|
1196
|
-
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
|
1197
|
-
AC_SUBST(LIBTOOL)dnl
|
1198
|
-
|
1199
|
-
_LT_SETUP
|
1200
|
-
|
1201
|
-
# Only expand once:
|
1202
|
-
m4_define([LT_INIT])
|
1203
|
-
])
|
1204
|
-
m4trace:m4/libtool.m4:102: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
1205
|
-
m4trace:m4/libtool.m4:102: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
|
1206
|
-
You should run autoupdate.])dnl
|
1207
|
-
m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
1208
|
-
m4trace:m4/libtool.m4:103: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
1209
|
-
m4trace:m4/libtool.m4:103: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
|
1210
|
-
You should run autoupdate.])dnl
|
1211
|
-
m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
1212
|
-
m4trace:m4/libtool.m4:562: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
|
1213
|
-
AC_MSG_NOTICE([creating $CONFIG_LT])
|
1214
|
-
cat >"$CONFIG_LT" <<_LTEOF
|
1215
|
-
#! $SHELL
|
1216
|
-
# Generated by $as_me.
|
1217
|
-
# Run this file to recreate a libtool stub with the current configuration.
|
1218
|
-
|
1219
|
-
lt_cl_silent=false
|
1220
|
-
SHELL=\${CONFIG_SHELL-$SHELL}
|
1221
|
-
_LTEOF
|
1222
|
-
|
1223
|
-
cat >>"$CONFIG_LT" <<\_LTEOF
|
1224
|
-
AS_SHELL_SANITIZE
|
1225
|
-
_AS_PREPARE
|
1226
|
-
|
1227
|
-
exec AS_MESSAGE_FD>&1
|
1228
|
-
exec AS_MESSAGE_LOG_FD>>config.log
|
1229
|
-
{
|
1230
|
-
echo
|
1231
|
-
AS_BOX([Running $as_me.])
|
1232
|
-
} >&AS_MESSAGE_LOG_FD
|
1233
|
-
|
1234
|
-
lt_cl_help="\
|
1235
|
-
\`$as_me' creates a local libtool stub from the current configuration,
|
1236
|
-
for use in further configure time tests before the real libtool is
|
1237
|
-
generated.
|
1238
|
-
|
1239
|
-
Usage: $[0] [[OPTIONS]]
|
1240
|
-
|
1241
|
-
-h, --help print this help, then exit
|
1242
|
-
-V, --version print version number, then exit
|
1243
|
-
-q, --quiet do not print progress messages
|
1244
|
-
-d, --debug don't remove temporary files
|
1245
|
-
|
1246
|
-
Report bugs to <bug-libtool@gnu.org>."
|
1247
|
-
|
1248
|
-
lt_cl_version="\
|
1249
|
-
m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
|
1250
|
-
m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
|
1251
|
-
configured by $[0], generated by m4_PACKAGE_STRING.
|
1252
|
-
|
1253
|
-
Copyright (C) 2008 Free Software Foundation, Inc.
|
1254
|
-
This config.lt script is free software; the Free Software Foundation
|
1255
|
-
gives unlimited permision to copy, distribute and modify it."
|
1256
|
-
|
1257
|
-
while test $[#] != 0
|
1258
|
-
do
|
1259
|
-
case $[1] in
|
1260
|
-
--version | --v* | -V )
|
1261
|
-
echo "$lt_cl_version"; exit 0 ;;
|
1262
|
-
--help | --h* | -h )
|
1263
|
-
echo "$lt_cl_help"; exit 0 ;;
|
1264
|
-
--debug | --d* | -d )
|
1265
|
-
debug=: ;;
|
1266
|
-
--quiet | --q* | --silent | --s* | -q )
|
1267
|
-
lt_cl_silent=: ;;
|
1268
|
-
|
1269
|
-
-*) AC_MSG_ERROR([unrecognized option: $[1]
|
1270
|
-
Try \`$[0] --help' for more information.]) ;;
|
1271
|
-
|
1272
|
-
*) AC_MSG_ERROR([unrecognized argument: $[1]
|
1273
|
-
Try \`$[0] --help' for more information.]) ;;
|
1274
|
-
esac
|
1275
|
-
shift
|
1276
|
-
done
|
1277
|
-
|
1278
|
-
if $lt_cl_silent; then
|
1279
|
-
exec AS_MESSAGE_FD>/dev/null
|
1280
|
-
fi
|
1281
|
-
_LTEOF
|
1282
|
-
|
1283
|
-
cat >>"$CONFIG_LT" <<_LTEOF
|
1284
|
-
_LT_OUTPUT_LIBTOOL_COMMANDS_INIT
|
1285
|
-
_LTEOF
|
1286
|
-
|
1287
|
-
cat >>"$CONFIG_LT" <<\_LTEOF
|
1288
|
-
AC_MSG_NOTICE([creating $ofile])
|
1289
|
-
_LT_OUTPUT_LIBTOOL_COMMANDS
|
1290
|
-
AS_EXIT(0)
|
1291
|
-
_LTEOF
|
1292
|
-
chmod +x "$CONFIG_LT"
|
1293
|
-
|
1294
|
-
# configure is writing to config.log, but config.lt does its own redirection,
|
1295
|
-
# appending to config.log, which fails on DOS, as config.log is still kept
|
1296
|
-
# open by configure. Here we exec the FD to /dev/null, effectively closing
|
1297
|
-
# config.log, so it can be properly (re)opened and appended to by config.lt.
|
1298
|
-
if test "$no_create" != yes; then
|
1299
|
-
lt_cl_success=:
|
1300
|
-
test "$silent" = yes &&
|
1301
|
-
lt_config_lt_args="$lt_config_lt_args --quiet"
|
1302
|
-
exec AS_MESSAGE_LOG_FD>/dev/null
|
1303
|
-
$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
|
1304
|
-
exec AS_MESSAGE_LOG_FD>>config.log
|
1305
|
-
$lt_cl_success || AS_EXIT(1)
|
1306
|
-
fi
|
1307
|
-
])
|
1308
|
-
m4trace:m4/libtool.m4:757: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
|
1309
|
-
m4trace:m4/libtool.m4:768: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
|
1310
|
-
m4_case([$1],
|
1311
|
-
[C], [_LT_LANG(C)],
|
1312
|
-
[C++], [_LT_LANG(CXX)],
|
1313
|
-
[Java], [_LT_LANG(GCJ)],
|
1314
|
-
[Fortran 77], [_LT_LANG(F77)],
|
1315
|
-
[Fortran], [_LT_LANG(FC)],
|
1316
|
-
[Windows Resource], [_LT_LANG(RC)],
|
1317
|
-
[m4_ifdef([_LT_LANG_]$1[_CONFIG],
|
1318
|
-
[_LT_LANG($1)],
|
1319
|
-
[m4_fatal([$0: unsupported language: "$1"])])])dnl
|
1320
|
-
])
|
1321
|
-
m4trace:m4/libtool.m4:830: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
|
1322
|
-
m4trace:m4/libtool.m4:830: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
|
1323
|
-
You should run autoupdate.])dnl
|
1324
|
-
LT_LANG(C++)])
|
1325
|
-
m4trace:m4/libtool.m4:831: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
|
1326
|
-
m4trace:m4/libtool.m4:831: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
|
1327
|
-
You should run autoupdate.])dnl
|
1328
|
-
LT_LANG(Fortran 77)])
|
1329
|
-
m4trace:m4/libtool.m4:832: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
|
1330
|
-
m4trace:m4/libtool.m4:832: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
|
1331
|
-
You should run autoupdate.])dnl
|
1332
|
-
LT_LANG(Fortran)])
|
1333
|
-
m4trace:m4/libtool.m4:833: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
|
1334
|
-
m4trace:m4/libtool.m4:833: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
|
1335
|
-
You should run autoupdate.])dnl
|
1336
|
-
LT_LANG(Java)])
|
1337
|
-
m4trace:m4/libtool.m4:1402: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
|
1338
|
-
m4_require([_LT_DECL_SED])dnl
|
1339
|
-
AC_CACHE_CHECK([$1], [$2],
|
1340
|
-
[$2=no
|
1341
|
-
m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
|
1342
|
-
echo "$lt_simple_compile_test_code" > conftest.$ac_ext
|
1343
|
-
lt_compiler_flag="$3"
|
1344
|
-
# Insert the option either (1) after the last *FLAGS variable, or
|
1345
|
-
# (2) before a word containing "conftest.", or (3) at the end.
|
1346
|
-
# Note that $ac_compile itself does not contain backslashes and begins
|
1347
|
-
# with a dollar sign (not a hyphen), so the echo should work correctly.
|
1348
|
-
# The option is referenced via a variable to avoid confusing sed.
|
1349
|
-
lt_compile=`echo "$ac_compile" | $SED \
|
1350
|
-
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
1351
|
-
-e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
|
1352
|
-
-e 's:$: $lt_compiler_flag:'`
|
1353
|
-
(eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
|
1354
|
-
(eval "$lt_compile" 2>conftest.err)
|
1355
|
-
ac_status=$?
|
1356
|
-
cat conftest.err >&AS_MESSAGE_LOG_FD
|
1357
|
-
echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
|
1358
|
-
if (exit $ac_status) && test -s "$ac_outfile"; then
|
1359
|
-
# The compiler can only warn and ignore the option if not recognized
|
1360
|
-
# So say no if there are warnings other than the usual output.
|
1361
|
-
$ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
|
1362
|
-
$SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
|
1363
|
-
if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
|
1364
|
-
$2=yes
|
1365
|
-
fi
|
1366
|
-
fi
|
1367
|
-
$RM conftest*
|
1368
|
-
])
|
1369
|
-
|
1370
|
-
if test x"[$]$2" = xyes; then
|
1371
|
-
m4_if([$5], , :, [$5])
|
1372
|
-
else
|
1373
|
-
m4_if([$6], , :, [$6])
|
1374
|
-
fi
|
1375
|
-
])
|
1376
|
-
m4trace:m4/libtool.m4:1444: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
|
1377
|
-
m4trace:m4/libtool.m4:1444: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
|
1378
|
-
You should run autoupdate.])dnl
|
1379
|
-
m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
|
1380
|
-
m4trace:m4/libtool.m4:1453: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
|
1381
|
-
m4_require([_LT_DECL_SED])dnl
|
1382
|
-
AC_CACHE_CHECK([$1], [$2],
|
1383
|
-
[$2=no
|
1384
|
-
save_LDFLAGS="$LDFLAGS"
|
1385
|
-
LDFLAGS="$LDFLAGS $3"
|
1386
|
-
echo "$lt_simple_link_test_code" > conftest.$ac_ext
|
1387
|
-
if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
|
1388
|
-
# The linker can only warn and ignore the option if not recognized
|
1389
|
-
# So say no if there are warnings
|
1390
|
-
if test -s conftest.err; then
|
1391
|
-
# Append any errors to the config.log.
|
1392
|
-
cat conftest.err 1>&AS_MESSAGE_LOG_FD
|
1393
|
-
$ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
|
1394
|
-
$SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
|
1395
|
-
if diff conftest.exp conftest.er2 >/dev/null; then
|
1396
|
-
$2=yes
|
1397
|
-
fi
|
1398
|
-
else
|
1399
|
-
$2=yes
|
1400
|
-
fi
|
1401
|
-
fi
|
1402
|
-
$RM -r conftest*
|
1403
|
-
LDFLAGS="$save_LDFLAGS"
|
1404
|
-
])
|
1405
|
-
|
1406
|
-
if test x"[$]$2" = xyes; then
|
1407
|
-
m4_if([$4], , :, [$4])
|
1408
|
-
else
|
1409
|
-
m4_if([$5], , :, [$5])
|
1410
|
-
fi
|
1411
|
-
])
|
1412
|
-
m4trace:m4/libtool.m4:1488: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
|
1413
|
-
m4trace:m4/libtool.m4:1488: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
|
1414
|
-
You should run autoupdate.])dnl
|
1415
|
-
m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
|
1416
|
-
m4trace:m4/libtool.m4:1495: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
1417
|
-
# find the maximum length of command line arguments
|
1418
|
-
AC_MSG_CHECKING([the maximum length of command line arguments])
|
1419
|
-
AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
|
1420
|
-
i=0
|
1421
|
-
teststring="ABCD"
|
1422
|
-
|
1423
|
-
case $build_os in
|
1424
|
-
msdosdjgpp*)
|
1425
|
-
# On DJGPP, this test can blow up pretty badly due to problems in libc
|
1426
|
-
# (any single argument exceeding 2000 bytes causes a buffer overrun
|
1427
|
-
# during glob expansion). Even if it were fixed, the result of this
|
1428
|
-
# check would be larger than it should be.
|
1429
|
-
lt_cv_sys_max_cmd_len=12288; # 12K is about right
|
1430
|
-
;;
|
1431
|
-
|
1432
|
-
gnu*)
|
1433
|
-
# Under GNU Hurd, this test is not required because there is
|
1434
|
-
# no limit to the length of command line arguments.
|
1435
|
-
# Libtool will interpret -1 as no limit whatsoever
|
1436
|
-
lt_cv_sys_max_cmd_len=-1;
|
1437
|
-
;;
|
1438
|
-
|
1439
|
-
cygwin* | mingw* | cegcc*)
|
1440
|
-
# On Win9x/ME, this test blows up -- it succeeds, but takes
|
1441
|
-
# about 5 minutes as the teststring grows exponentially.
|
1442
|
-
# Worse, since 9x/ME are not pre-emptively multitasking,
|
1443
|
-
# you end up with a "frozen" computer, even though with patience
|
1444
|
-
# the test eventually succeeds (with a max line length of 256k).
|
1445
|
-
# Instead, let's just punt: use the minimum linelength reported by
|
1446
|
-
# all of the supported platforms: 8192 (on NT/2K/XP).
|
1447
|
-
lt_cv_sys_max_cmd_len=8192;
|
1448
|
-
;;
|
1449
|
-
|
1450
|
-
amigaos*)
|
1451
|
-
# On AmigaOS with pdksh, this test takes hours, literally.
|
1452
|
-
# So we just punt and use a minimum line length of 8192.
|
1453
|
-
lt_cv_sys_max_cmd_len=8192;
|
1454
|
-
;;
|
1455
|
-
|
1456
|
-
netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
|
1457
|
-
# This has been around since 386BSD, at least. Likely further.
|
1458
|
-
if test -x /sbin/sysctl; then
|
1459
|
-
lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
|
1460
|
-
elif test -x /usr/sbin/sysctl; then
|
1461
|
-
lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
|
1462
|
-
else
|
1463
|
-
lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
|
1464
|
-
fi
|
1465
|
-
# And add a safety zone
|
1466
|
-
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
|
1467
|
-
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
|
1468
|
-
;;
|
1469
|
-
|
1470
|
-
interix*)
|
1471
|
-
# We know the value 262144 and hardcode it with a safety zone (like BSD)
|
1472
|
-
lt_cv_sys_max_cmd_len=196608
|
1473
|
-
;;
|
1474
|
-
|
1475
|
-
osf*)
|
1476
|
-
# Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
|
1477
|
-
# due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
|
1478
|
-
# nice to cause kernel panics so lets avoid the loop below.
|
1479
|
-
# First set a reasonable default.
|
1480
|
-
lt_cv_sys_max_cmd_len=16384
|
1481
|
-
#
|
1482
|
-
if test -x /sbin/sysconfig; then
|
1483
|
-
case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
|
1484
|
-
*1*) lt_cv_sys_max_cmd_len=-1 ;;
|
1485
|
-
esac
|
1486
|
-
fi
|
1487
|
-
;;
|
1488
|
-
sco3.2v5*)
|
1489
|
-
lt_cv_sys_max_cmd_len=102400
|
1490
|
-
;;
|
1491
|
-
sysv5* | sco5v6* | sysv4.2uw2*)
|
1492
|
-
kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
|
1493
|
-
if test -n "$kargmax"; then
|
1494
|
-
lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
|
1495
|
-
else
|
1496
|
-
lt_cv_sys_max_cmd_len=32768
|
1497
|
-
fi
|
1498
|
-
;;
|
1499
|
-
*)
|
1500
|
-
lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
|
1501
|
-
if test -n "$lt_cv_sys_max_cmd_len"; then
|
1502
|
-
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
|
1503
|
-
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
|
1504
|
-
else
|
1505
|
-
# Make teststring a little bigger before we do anything with it.
|
1506
|
-
# a 1K string should be a reasonable start.
|
1507
|
-
for i in 1 2 3 4 5 6 7 8 ; do
|
1508
|
-
teststring=$teststring$teststring
|
1509
|
-
done
|
1510
|
-
SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
|
1511
|
-
# If test is not a shell built-in, we'll probably end up computing a
|
1512
|
-
# maximum length that is only half of the actual maximum length, but
|
1513
|
-
# we can't tell.
|
1514
|
-
while { test "X"`$SHELL [$]0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \
|
1515
|
-
= "XX$teststring$teststring"; } >/dev/null 2>&1 &&
|
1516
|
-
test $i != 17 # 1/2 MB should be enough
|
1517
|
-
do
|
1518
|
-
i=`expr $i + 1`
|
1519
|
-
teststring=$teststring$teststring
|
1520
|
-
done
|
1521
|
-
# Only check the string length outside the loop.
|
1522
|
-
lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
|
1523
|
-
teststring=
|
1524
|
-
# Add a significant safety factor because C++ compilers can tack on
|
1525
|
-
# massive amounts of additional arguments before passing them to the
|
1526
|
-
# linker. It appears as though 1/2 is a usable value.
|
1527
|
-
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
|
1528
|
-
fi
|
1529
|
-
;;
|
1530
|
-
esac
|
1531
|
-
])
|
1532
|
-
if test -n $lt_cv_sys_max_cmd_len ; then
|
1533
|
-
AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
|
1534
|
-
else
|
1535
|
-
AC_MSG_RESULT(none)
|
1536
|
-
fi
|
1537
|
-
max_cmd_len=$lt_cv_sys_max_cmd_len
|
1538
|
-
_LT_DECL([], [max_cmd_len], [0],
|
1539
|
-
[What is the maximum length of a command?])
|
1540
|
-
])
|
1541
|
-
m4trace:m4/libtool.m4:1623: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
|
1542
|
-
m4trace:m4/libtool.m4:1623: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
|
1543
|
-
You should run autoupdate.])dnl
|
1544
|
-
m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
|
1545
|
-
m4trace:m4/libtool.m4:1724: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
|
1546
|
-
if test "x$enable_dlopen" != xyes; then
|
1547
|
-
enable_dlopen=unknown
|
1548
|
-
enable_dlopen_self=unknown
|
1549
|
-
enable_dlopen_self_static=unknown
|
1550
|
-
else
|
1551
|
-
lt_cv_dlopen=no
|
1552
|
-
lt_cv_dlopen_libs=
|
1553
|
-
|
1554
|
-
case $host_os in
|
1555
|
-
beos*)
|
1556
|
-
lt_cv_dlopen="load_add_on"
|
1557
|
-
lt_cv_dlopen_libs=
|
1558
|
-
lt_cv_dlopen_self=yes
|
1559
|
-
;;
|
1560
|
-
|
1561
|
-
mingw* | pw32* | cegcc*)
|
1562
|
-
lt_cv_dlopen="LoadLibrary"
|
1563
|
-
lt_cv_dlopen_libs=
|
1564
|
-
;;
|
1565
|
-
|
1566
|
-
cygwin*)
|
1567
|
-
lt_cv_dlopen="dlopen"
|
1568
|
-
lt_cv_dlopen_libs=
|
1569
|
-
;;
|
1570
|
-
|
1571
|
-
darwin*)
|
1572
|
-
# if libdl is installed we need to link against it
|
1573
|
-
AC_CHECK_LIB([dl], [dlopen],
|
1574
|
-
[lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
|
1575
|
-
lt_cv_dlopen="dyld"
|
1576
|
-
lt_cv_dlopen_libs=
|
1577
|
-
lt_cv_dlopen_self=yes
|
1578
|
-
])
|
1579
|
-
;;
|
1580
|
-
|
1581
|
-
*)
|
1582
|
-
AC_CHECK_FUNC([shl_load],
|
1583
|
-
[lt_cv_dlopen="shl_load"],
|
1584
|
-
[AC_CHECK_LIB([dld], [shl_load],
|
1585
|
-
[lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
|
1586
|
-
[AC_CHECK_FUNC([dlopen],
|
1587
|
-
[lt_cv_dlopen="dlopen"],
|
1588
|
-
[AC_CHECK_LIB([dl], [dlopen],
|
1589
|
-
[lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
|
1590
|
-
[AC_CHECK_LIB([svld], [dlopen],
|
1591
|
-
[lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
|
1592
|
-
[AC_CHECK_LIB([dld], [dld_link],
|
1593
|
-
[lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
|
1594
|
-
])
|
1595
|
-
])
|
1596
|
-
])
|
1597
|
-
])
|
1598
|
-
])
|
1599
|
-
;;
|
1600
|
-
esac
|
1601
|
-
|
1602
|
-
if test "x$lt_cv_dlopen" != xno; then
|
1603
|
-
enable_dlopen=yes
|
1604
|
-
else
|
1605
|
-
enable_dlopen=no
|
1606
|
-
fi
|
1607
|
-
|
1608
|
-
case $lt_cv_dlopen in
|
1609
|
-
dlopen)
|
1610
|
-
save_CPPFLAGS="$CPPFLAGS"
|
1611
|
-
test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
|
1612
|
-
|
1613
|
-
save_LDFLAGS="$LDFLAGS"
|
1614
|
-
wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
|
1615
|
-
|
1616
|
-
save_LIBS="$LIBS"
|
1617
|
-
LIBS="$lt_cv_dlopen_libs $LIBS"
|
1618
|
-
|
1619
|
-
AC_CACHE_CHECK([whether a program can dlopen itself],
|
1620
|
-
lt_cv_dlopen_self, [dnl
|
1621
|
-
_LT_TRY_DLOPEN_SELF(
|
1622
|
-
lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
|
1623
|
-
lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
|
1624
|
-
])
|
1625
|
-
|
1626
|
-
if test "x$lt_cv_dlopen_self" = xyes; then
|
1627
|
-
wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
|
1628
|
-
AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
|
1629
|
-
lt_cv_dlopen_self_static, [dnl
|
1630
|
-
_LT_TRY_DLOPEN_SELF(
|
1631
|
-
lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
|
1632
|
-
lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
|
1633
|
-
])
|
1634
|
-
fi
|
1635
|
-
|
1636
|
-
CPPFLAGS="$save_CPPFLAGS"
|
1637
|
-
LDFLAGS="$save_LDFLAGS"
|
1638
|
-
LIBS="$save_LIBS"
|
1639
|
-
;;
|
1640
|
-
esac
|
1641
|
-
|
1642
|
-
case $lt_cv_dlopen_self in
|
1643
|
-
yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
|
1644
|
-
*) enable_dlopen_self=unknown ;;
|
1645
|
-
esac
|
1646
|
-
|
1647
|
-
case $lt_cv_dlopen_self_static in
|
1648
|
-
yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
|
1649
|
-
*) enable_dlopen_self_static=unknown ;;
|
1650
|
-
esac
|
1651
|
-
fi
|
1652
|
-
_LT_DECL([dlopen_support], [enable_dlopen], [0],
|
1653
|
-
[Whether dlopen is supported])
|
1654
|
-
_LT_DECL([dlopen_self], [enable_dlopen_self], [0],
|
1655
|
-
[Whether dlopen of programs is supported])
|
1656
|
-
_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
|
1657
|
-
[Whether dlopen of statically linked programs is supported])
|
1658
|
-
])
|
1659
|
-
m4trace:m4/libtool.m4:1841: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
|
1660
|
-
m4trace:m4/libtool.m4:1841: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
|
1661
|
-
You should run autoupdate.])dnl
|
1662
|
-
m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
|
1663
|
-
m4trace:m4/libtool.m4:2729: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
|
1664
|
-
AC_MSG_CHECKING([for $1])
|
1665
|
-
AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
|
1666
|
-
[case $MAGIC_CMD in
|
1667
|
-
[[\\/*] | ?:[\\/]*])
|
1668
|
-
lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
|
1669
|
-
;;
|
1670
|
-
*)
|
1671
|
-
lt_save_MAGIC_CMD="$MAGIC_CMD"
|
1672
|
-
lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
|
1673
|
-
dnl $ac_dummy forces splitting on constant user-supplied paths.
|
1674
|
-
dnl POSIX.2 word splitting is done only on the output of word expansions,
|
1675
|
-
dnl not every word. This closes a longstanding sh security hole.
|
1676
|
-
ac_dummy="m4_if([$2], , $PATH, [$2])"
|
1677
|
-
for ac_dir in $ac_dummy; do
|
1678
|
-
IFS="$lt_save_ifs"
|
1679
|
-
test -z "$ac_dir" && ac_dir=.
|
1680
|
-
if test -f $ac_dir/$1; then
|
1681
|
-
lt_cv_path_MAGIC_CMD="$ac_dir/$1"
|
1682
|
-
if test -n "$file_magic_test_file"; then
|
1683
|
-
case $deplibs_check_method in
|
1684
|
-
"file_magic "*)
|
1685
|
-
file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
|
1686
|
-
MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
|
1687
|
-
if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
|
1688
|
-
$EGREP "$file_magic_regex" > /dev/null; then
|
1689
|
-
:
|
1690
|
-
else
|
1691
|
-
cat <<_LT_EOF 1>&2
|
1692
|
-
|
1693
|
-
*** Warning: the command libtool uses to detect shared libraries,
|
1694
|
-
*** $file_magic_cmd, produces output that libtool cannot recognize.
|
1695
|
-
*** The result is that libtool may fail to recognize shared libraries
|
1696
|
-
*** as such. This will affect the creation of libtool libraries that
|
1697
|
-
*** depend on shared libraries, but programs linked with such libtool
|
1698
|
-
*** libraries will work regardless of this problem. Nevertheless, you
|
1699
|
-
*** may want to report the problem to your system manager and/or to
|
1700
|
-
*** bug-libtool@gnu.org
|
1701
|
-
|
1702
|
-
_LT_EOF
|
1703
|
-
fi ;;
|
1704
|
-
esac
|
1705
|
-
fi
|
1706
|
-
break
|
1707
|
-
fi
|
1708
|
-
done
|
1709
|
-
IFS="$lt_save_ifs"
|
1710
|
-
MAGIC_CMD="$lt_save_MAGIC_CMD"
|
1711
|
-
;;
|
1712
|
-
esac])
|
1713
|
-
MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
|
1714
|
-
if test -n "$MAGIC_CMD"; then
|
1715
|
-
AC_MSG_RESULT($MAGIC_CMD)
|
1716
|
-
else
|
1717
|
-
AC_MSG_RESULT(no)
|
1718
|
-
fi
|
1719
|
-
_LT_DECL([], [MAGIC_CMD], [0],
|
1720
|
-
[Used to examine libraries when file_magic_cmd begins with "file"])dnl
|
1721
|
-
])
|
1722
|
-
m4trace:m4/libtool.m4:2791: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
|
1723
|
-
m4trace:m4/libtool.m4:2791: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
|
1724
|
-
You should run autoupdate.])dnl
|
1725
|
-
m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
|
1726
|
-
m4trace:m4/libtool.m4:2814: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
|
1727
|
-
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
1728
|
-
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
|
1729
|
-
m4_require([_LT_DECL_SED])dnl
|
1730
|
-
m4_require([_LT_DECL_EGREP])dnl
|
1731
|
-
|
1732
|
-
AC_ARG_WITH([gnu-ld],
|
1733
|
-
[AS_HELP_STRING([--with-gnu-ld],
|
1734
|
-
[assume the C compiler uses GNU ld @<:@default=no@:>@])],
|
1735
|
-
[test "$withval" = no || with_gnu_ld=yes],
|
1736
|
-
[with_gnu_ld=no])dnl
|
1737
|
-
|
1738
|
-
ac_prog=ld
|
1739
|
-
if test "$GCC" = yes; then
|
1740
|
-
# Check if gcc -print-prog-name=ld gives a path.
|
1741
|
-
AC_MSG_CHECKING([for ld used by $CC])
|
1742
|
-
case $host in
|
1743
|
-
*-*-mingw*)
|
1744
|
-
# gcc leaves a trailing carriage return which upsets mingw
|
1745
|
-
ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
|
1746
|
-
*)
|
1747
|
-
ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
|
1748
|
-
esac
|
1749
|
-
case $ac_prog in
|
1750
|
-
# Accept absolute paths.
|
1751
|
-
[[\\/]]* | ?:[[\\/]]*)
|
1752
|
-
re_direlt='/[[^/]][[^/]]*/\.\./'
|
1753
|
-
# Canonicalize the pathname of ld
|
1754
|
-
ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
|
1755
|
-
while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
|
1756
|
-
ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
|
1757
|
-
done
|
1758
|
-
test -z "$LD" && LD="$ac_prog"
|
1759
|
-
;;
|
1760
|
-
"")
|
1761
|
-
# If it fails, then pretend we aren't using GCC.
|
1762
|
-
ac_prog=ld
|
1763
|
-
;;
|
1764
|
-
*)
|
1765
|
-
# If it is relative, then search for the first ld in PATH.
|
1766
|
-
with_gnu_ld=unknown
|
1767
|
-
;;
|
1768
|
-
esac
|
1769
|
-
elif test "$with_gnu_ld" = yes; then
|
1770
|
-
AC_MSG_CHECKING([for GNU ld])
|
1771
|
-
else
|
1772
|
-
AC_MSG_CHECKING([for non-GNU ld])
|
1773
|
-
fi
|
1774
|
-
AC_CACHE_VAL(lt_cv_path_LD,
|
1775
|
-
[if test -z "$LD"; then
|
1776
|
-
lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
|
1777
|
-
for ac_dir in $PATH; do
|
1778
|
-
IFS="$lt_save_ifs"
|
1779
|
-
test -z "$ac_dir" && ac_dir=.
|
1780
|
-
if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
|
1781
|
-
lt_cv_path_LD="$ac_dir/$ac_prog"
|
1782
|
-
# Check to see if the program is GNU ld. I'd rather use --version,
|
1783
|
-
# but apparently some variants of GNU ld only accept -v.
|
1784
|
-
# Break only if it was the GNU/non-GNU ld that we prefer.
|
1785
|
-
case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
|
1786
|
-
*GNU* | *'with BFD'*)
|
1787
|
-
test "$with_gnu_ld" != no && break
|
1788
|
-
;;
|
1789
|
-
*)
|
1790
|
-
test "$with_gnu_ld" != yes && break
|
1791
|
-
;;
|
1792
|
-
esac
|
1793
|
-
fi
|
1794
|
-
done
|
1795
|
-
IFS="$lt_save_ifs"
|
1796
|
-
else
|
1797
|
-
lt_cv_path_LD="$LD" # Let the user override the test with a path.
|
1798
|
-
fi])
|
1799
|
-
LD="$lt_cv_path_LD"
|
1800
|
-
if test -n "$LD"; then
|
1801
|
-
AC_MSG_RESULT($LD)
|
1802
|
-
else
|
1803
|
-
AC_MSG_RESULT(no)
|
1804
|
-
fi
|
1805
|
-
test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
|
1806
|
-
_LT_PATH_LD_GNU
|
1807
|
-
AC_SUBST([LD])
|
1808
|
-
|
1809
|
-
_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
|
1810
|
-
])
|
1811
|
-
m4trace:m4/libtool.m4:2902: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
1812
|
-
m4trace:m4/libtool.m4:2902: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
|
1813
|
-
You should run autoupdate.])dnl
|
1814
|
-
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
1815
|
-
m4trace:m4/libtool.m4:2903: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
1816
|
-
m4trace:m4/libtool.m4:2903: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
|
1817
|
-
You should run autoupdate.])dnl
|
1818
|
-
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
1819
|
-
m4trace:m4/libtool.m4:3167: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
|
1820
|
-
AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
|
1821
|
-
[if test -n "$NM"; then
|
1822
|
-
# Let the user override the test.
|
1823
|
-
lt_cv_path_NM="$NM"
|
1824
|
-
else
|
1825
|
-
lt_nm_to_check="${ac_tool_prefix}nm"
|
1826
|
-
if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
|
1827
|
-
lt_nm_to_check="$lt_nm_to_check nm"
|
1828
|
-
fi
|
1829
|
-
for lt_tmp_nm in $lt_nm_to_check; do
|
1830
|
-
lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
|
1831
|
-
for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
|
1832
|
-
IFS="$lt_save_ifs"
|
1833
|
-
test -z "$ac_dir" && ac_dir=.
|
1834
|
-
tmp_nm="$ac_dir/$lt_tmp_nm"
|
1835
|
-
if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
|
1836
|
-
# Check to see if the nm accepts a BSD-compat flag.
|
1837
|
-
# Adding the `sed 1q' prevents false positives on HP-UX, which says:
|
1838
|
-
# nm: unknown option "B" ignored
|
1839
|
-
# Tru64's nm complains that /dev/null is an invalid object file
|
1840
|
-
case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
|
1841
|
-
*/dev/null* | *'Invalid file or object type'*)
|
1842
|
-
lt_cv_path_NM="$tmp_nm -B"
|
1843
|
-
break
|
1844
|
-
;;
|
1845
|
-
*)
|
1846
|
-
case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
|
1847
|
-
*/dev/null*)
|
1848
|
-
lt_cv_path_NM="$tmp_nm -p"
|
1849
|
-
break
|
1850
|
-
;;
|
1851
|
-
*)
|
1852
|
-
lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
|
1853
|
-
continue # so that we can try to find one that supports BSD flags
|
1854
|
-
;;
|
1855
|
-
esac
|
1856
|
-
;;
|
1857
|
-
esac
|
1858
|
-
fi
|
1859
|
-
done
|
1860
|
-
IFS="$lt_save_ifs"
|
1861
|
-
done
|
1862
|
-
: ${lt_cv_path_NM=no}
|
1863
|
-
fi])
|
1864
|
-
if test "$lt_cv_path_NM" != "no"; then
|
1865
|
-
NM="$lt_cv_path_NM"
|
1866
|
-
else
|
1867
|
-
# Didn't find any BSD compatible name lister, look for dumpbin.
|
1868
|
-
AC_CHECK_TOOLS(DUMPBIN, ["dumpbin -symbols" "link -dump -symbols"], :)
|
1869
|
-
AC_SUBST([DUMPBIN])
|
1870
|
-
if test "$DUMPBIN" != ":"; then
|
1871
|
-
NM="$DUMPBIN"
|
1872
|
-
fi
|
1873
|
-
fi
|
1874
|
-
test -z "$NM" && NM=nm
|
1875
|
-
AC_SUBST([NM])
|
1876
|
-
_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
|
1877
|
-
|
1878
|
-
AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
|
1879
|
-
[lt_cv_nm_interface="BSD nm"
|
1880
|
-
echo "int some_variable = 0;" > conftest.$ac_ext
|
1881
|
-
(eval echo "\"\$as_me:__oline__: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
|
1882
|
-
(eval "$ac_compile" 2>conftest.err)
|
1883
|
-
cat conftest.err >&AS_MESSAGE_LOG_FD
|
1884
|
-
(eval echo "\"\$as_me:__oline__: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
|
1885
|
-
(eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
|
1886
|
-
cat conftest.err >&AS_MESSAGE_LOG_FD
|
1887
|
-
(eval echo "\"\$as_me:__oline__: output\"" >&AS_MESSAGE_LOG_FD)
|
1888
|
-
cat conftest.out >&AS_MESSAGE_LOG_FD
|
1889
|
-
if $GREP 'External.*some_variable' conftest.out > /dev/null; then
|
1890
|
-
lt_cv_nm_interface="MS dumpbin"
|
1891
|
-
fi
|
1892
|
-
rm -f conftest*])
|
1893
|
-
])
|
1894
|
-
m4trace:m4/libtool.m4:3245: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
1895
|
-
m4trace:m4/libtool.m4:3245: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
|
1896
|
-
You should run autoupdate.])dnl
|
1897
|
-
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
1898
|
-
m4trace:m4/libtool.m4:3246: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
1899
|
-
m4trace:m4/libtool.m4:3246: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
|
1900
|
-
You should run autoupdate.])dnl
|
1901
|
-
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
1902
|
-
m4trace:m4/libtool.m4:3255: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
1903
|
-
LIBM=
|
1904
|
-
case $host in
|
1905
|
-
*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
|
1906
|
-
# These system don't have libm, or don't need it
|
1907
|
-
;;
|
1908
|
-
*-ncr-sysv4.3*)
|
1909
|
-
AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
|
1910
|
-
AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
|
1911
|
-
;;
|
1912
|
-
*)
|
1913
|
-
AC_CHECK_LIB(m, cos, LIBM="-lm")
|
1914
|
-
;;
|
1915
|
-
esac
|
1916
|
-
AC_SUBST([LIBM])
|
1917
|
-
])
|
1918
|
-
m4trace:m4/libtool.m4:3274: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
|
1919
|
-
m4trace:m4/libtool.m4:3274: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
|
1920
|
-
You should run autoupdate.])dnl
|
1921
|
-
m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
|
1922
|
-
m4trace:m4/libtool.m4:6967: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
|
1923
|
-
[m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
|
1924
|
-
[AC_CHECK_TOOL(GCJ, gcj,)
|
1925
|
-
test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
|
1926
|
-
AC_SUBST(GCJFLAGS)])])[]dnl
|
1927
|
-
])
|
1928
|
-
m4trace:m4/libtool.m4:6976: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
|
1929
|
-
m4trace:m4/libtool.m4:6976: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
|
1930
|
-
You should run autoupdate.])dnl
|
1931
|
-
m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
|
1932
|
-
m4trace:m4/libtool.m4:6983: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
|
1933
|
-
])
|
1934
|
-
m4trace:m4/libtool.m4:6988: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
|
1935
|
-
m4trace:m4/libtool.m4:6988: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
|
1936
|
-
You should run autoupdate.])dnl
|
1937
|
-
m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
|
1938
|
-
m4trace:m4/libtool.m4:7099: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
|
1939
|
-
m4trace:m4/libtool.m4:7099: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
|
1940
|
-
You should run autoupdate.])dnl
|
1941
|
-
m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
|
1942
|
-
m4trace:m4/ltoptions.m4:13: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
|
1943
|
-
m4trace:m4/ltoptions.m4:110: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
|
1944
|
-
AC_DIAGNOSE([obsolete],
|
1945
|
-
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
1946
|
-
put the `dlopen' option into LT_INIT's first parameter.])
|
1947
|
-
])
|
1948
|
-
m4trace:m4/ltoptions.m4:110: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
|
1949
|
-
You should run autoupdate.])dnl
|
1950
|
-
_LT_SET_OPTION([LT_INIT], [dlopen])
|
1951
|
-
AC_DIAGNOSE([obsolete],
|
1952
|
-
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
1953
|
-
put the `dlopen' option into LT_INIT's first parameter.])
|
1954
|
-
])
|
1955
|
-
m4trace:m4/ltoptions.m4:145: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
1956
|
-
_LT_SET_OPTION([LT_INIT], [win32-dll])
|
1957
|
-
AC_DIAGNOSE([obsolete],
|
1958
|
-
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
1959
|
-
put the `win32-dll' option into LT_INIT's first parameter.])
|
1960
|
-
])
|
1961
|
-
m4trace:m4/ltoptions.m4:145: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
|
1962
|
-
You should run autoupdate.])dnl
|
1963
|
-
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
1964
|
-
_LT_SET_OPTION([LT_INIT], [win32-dll])
|
1965
|
-
AC_DIAGNOSE([obsolete],
|
1966
|
-
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
1967
|
-
put the `win32-dll' option into LT_INIT's first parameter.])
|
1968
|
-
])
|
1969
|
-
m4trace:m4/ltoptions.m4:194: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
|
1970
|
-
])
|
1971
|
-
m4trace:m4/ltoptions.m4:198: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
|
1972
|
-
])
|
1973
|
-
m4trace:m4/ltoptions.m4:202: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
|
1974
|
-
m4trace:m4/ltoptions.m4:202: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
|
1975
|
-
You should run autoupdate.])dnl
|
1976
|
-
AC_ENABLE_SHARED($@)])
|
1977
|
-
m4trace:m4/ltoptions.m4:203: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
|
1978
|
-
m4trace:m4/ltoptions.m4:203: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
|
1979
|
-
You should run autoupdate.])dnl
|
1980
|
-
AC_DISABLE_SHARED($@)])
|
1981
|
-
m4trace:m4/ltoptions.m4:248: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
|
1982
|
-
])
|
1983
|
-
m4trace:m4/ltoptions.m4:252: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
|
1984
|
-
])
|
1985
|
-
m4trace:m4/ltoptions.m4:256: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
|
1986
|
-
m4trace:m4/ltoptions.m4:256: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
|
1987
|
-
You should run autoupdate.])dnl
|
1988
|
-
AC_ENABLE_STATIC($@)])
|
1989
|
-
m4trace:m4/ltoptions.m4:257: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
|
1990
|
-
m4trace:m4/ltoptions.m4:257: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
|
1991
|
-
You should run autoupdate.])dnl
|
1992
|
-
AC_DISABLE_STATIC($@)])
|
1993
|
-
m4trace:m4/ltoptions.m4:302: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
|
1994
|
-
AC_DIAGNOSE([obsolete],
|
1995
|
-
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
1996
|
-
the `fast-install' option into LT_INIT's first parameter.])
|
1997
|
-
])
|
1998
|
-
m4trace:m4/ltoptions.m4:302: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
|
1999
|
-
You should run autoupdate.])dnl
|
2000
|
-
_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
|
2001
|
-
AC_DIAGNOSE([obsolete],
|
2002
|
-
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
2003
|
-
the `fast-install' option into LT_INIT's first parameter.])
|
2004
|
-
])
|
2005
|
-
m4trace:m4/ltoptions.m4:309: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
|
2006
|
-
AC_DIAGNOSE([obsolete],
|
2007
|
-
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
2008
|
-
the `disable-fast-install' option into LT_INIT's first parameter.])
|
2009
|
-
])
|
2010
|
-
m4trace:m4/ltoptions.m4:309: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
|
2011
|
-
You should run autoupdate.])dnl
|
2012
|
-
_LT_SET_OPTION([LT_INIT], [disable-fast-install])
|
2013
|
-
AC_DIAGNOSE([obsolete],
|
2014
|
-
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
2015
|
-
the `disable-fast-install' option into LT_INIT's first parameter.])
|
2016
|
-
])
|
2017
|
-
m4trace:m4/ltoptions.m4:342: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
|
2018
|
-
AC_DIAGNOSE([obsolete],
|
2019
|
-
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
2020
|
-
put the `pic-only' option into LT_INIT's first parameter.])
|
2021
|
-
])
|
2022
|
-
m4trace:m4/ltoptions.m4:342: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
|
2023
|
-
You should run autoupdate.])dnl
|
2024
|
-
_LT_SET_OPTION([LT_INIT], [pic-only])
|
2025
|
-
AC_DIAGNOSE([obsolete],
|
2026
|
-
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
2027
|
-
put the `pic-only' option into LT_INIT's first parameter.])
|
2028
|
-
])
|
2029
|
-
m4trace:m4/ltsugar.m4:13: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
|
2030
|
-
m4trace:m4/ltversion.m4:18: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.2.6'
|
2031
|
-
macro_revision='1.3012'
|
2032
|
-
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
|
2033
|
-
_LT_DECL(, macro_revision, 0)
|
2034
|
-
])
|
2035
|
-
m4trace:m4/lt~obsolete.m4:36: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
|
2036
|
-
m4trace:m4/lt~obsolete.m4:40: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
|
2037
|
-
m4trace:m4/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
|
2038
|
-
m4trace:m4/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
|
2039
|
-
m4trace:m4/lt~obsolete.m4:44: -1- AC_DEFUN([_LT_AC_TAGVAR])
|
2040
|
-
m4trace:m4/lt~obsolete.m4:45: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
|
2041
|
-
m4trace:m4/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_PREOPEN])
|
2042
|
-
m4trace:m4/lt~obsolete.m4:47: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
|
2043
|
-
m4trace:m4/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_LOCK])
|
2044
|
-
m4trace:m4/lt~obsolete.m4:49: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
|
2045
|
-
m4trace:m4/lt~obsolete.m4:50: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
|
2046
|
-
m4trace:m4/lt~obsolete.m4:51: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
|
2047
|
-
m4trace:m4/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
|
2048
|
-
m4trace:m4/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
|
2049
|
-
m4trace:m4/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LTDL_OBJDIR])
|
2050
|
-
m4trace:m4/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
|
2051
|
-
m4trace:m4/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
|
2052
|
-
m4trace:m4/lt~obsolete.m4:57: -1- AC_DEFUN([AC_PATH_MAGIC])
|
2053
|
-
m4trace:m4/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PROG_LD_GNU])
|
2054
|
-
m4trace:m4/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
|
2055
|
-
m4trace:m4/lt~obsolete.m4:60: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
|
2056
|
-
m4trace:m4/lt~obsolete.m4:61: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
|
2057
|
-
m4trace:m4/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
|
2058
|
-
m4trace:m4/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
|
2059
|
-
m4trace:m4/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
|
2060
|
-
m4trace:m4/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
|
2061
|
-
m4trace:m4/lt~obsolete.m4:66: -1- AC_DEFUN([LT_AC_PROG_EGREP])
|
2062
|
-
m4trace:m4/lt~obsolete.m4:71: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
|
2063
|
-
m4trace:m4/lt~obsolete.m4:72: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
|
2064
|
-
m4trace:m4/lt~obsolete.m4:73: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
|
2065
|
-
m4trace:m4/lt~obsolete.m4:74: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
|
2066
|
-
m4trace:m4/lt~obsolete.m4:75: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
|
2067
|
-
m4trace:m4/lt~obsolete.m4:77: -1- AC_DEFUN([_LT_AC_LANG_CXX])
|
2068
|
-
m4trace:m4/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_F77])
|
2069
|
-
m4trace:m4/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
|
2070
|
-
m4trace:m4/lt~obsolete.m4:80: -1- AC_DEFUN([AC_LIBTOOL_RC])
|
2071
|
-
m4trace:m4/lt~obsolete.m4:81: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
|
2072
|
-
m4trace:m4/lt~obsolete.m4:82: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
|
2073
|
-
m4trace:m4/lt~obsolete.m4:83: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
|
2074
|
-
m4trace:m4/lt~obsolete.m4:84: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
|
2075
|
-
m4trace:m4/lt~obsolete.m4:85: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
|
2076
|
-
m4trace:m4/lt~obsolete.m4:86: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
|
2077
|
-
m4trace:m4/lt~obsolete.m4:87: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
|
2078
|
-
m4trace:m4/lt~obsolete.m4:88: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
|
2079
|
-
m4trace:m4/lt~obsolete.m4:89: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
|
2080
|
-
m4trace:m4/lt~obsolete.m4:90: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
|
2081
|
-
m4trace:m4/lt~obsolete.m4:91: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
|
2082
|
-
m4trace:m4/lt~obsolete.m4:92: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
|
2083
|
-
m4trace:configure.ac:27: -1- m4_pattern_forbid([^_?A[CHUM]_])
|
2084
|
-
m4trace:configure.ac:27: -1- m4_pattern_forbid([_AC_])
|
2085
|
-
m4trace:configure.ac:27: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
|
2086
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^AS_FLAGS$])
|
2087
|
-
m4trace:configure.ac:27: -1- m4_pattern_forbid([^_?m4_])
|
2088
|
-
m4trace:configure.ac:27: -1- m4_pattern_forbid([^dnl$])
|
2089
|
-
m4trace:configure.ac:27: -1- m4_pattern_forbid([^_?AS_])
|
2090
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^SHELL$])
|
2091
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PATH_SEPARATOR$])
|
2092
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
2093
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
2094
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
2095
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
2096
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
2097
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_URL$])
|
2098
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^exec_prefix$])
|
2099
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^prefix$])
|
2100
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^program_transform_name$])
|
2101
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^bindir$])
|
2102
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^sbindir$])
|
2103
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^libexecdir$])
|
2104
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^datarootdir$])
|
2105
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^datadir$])
|
2106
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^sysconfdir$])
|
2107
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^sharedstatedir$])
|
2108
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^localstatedir$])
|
2109
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^includedir$])
|
2110
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^oldincludedir$])
|
2111
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^docdir$])
|
2112
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^infodir$])
|
2113
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^htmldir$])
|
2114
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^dvidir$])
|
2115
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^pdfdir$])
|
2116
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^psdir$])
|
2117
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^libdir$])
|
2118
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^localedir$])
|
2119
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^mandir$])
|
2120
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
2121
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
2122
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
2123
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
2124
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
2125
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_URL$])
|
2126
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^DEFS$])
|
2127
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^ECHO_C$])
|
2128
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^ECHO_N$])
|
2129
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^ECHO_T$])
|
2130
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^LIBS$])
|
2131
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^build_alias$])
|
2132
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^host_alias$])
|
2133
|
-
m4trace:configure.ac:27: -1- m4_pattern_allow([^target_alias$])
|
2134
|
-
m4trace:configure.ac:32: -1- AM_INIT_AUTOMAKE([1.9 foreign])
|
2135
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
|
2136
|
-
m4trace:configure.ac:32: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
|
2137
|
-
m4trace:configure.ac:32: -1- AM_AUTOMAKE_VERSION([1.11])
|
2138
|
-
m4trace:configure.ac:32: -1- _AM_AUTOCONF_VERSION([2.64])
|
2139
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
|
2140
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
|
2141
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_DATA$])
|
2142
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^am__isrc$])
|
2143
|
-
m4trace:configure.ac:32: -1- _AM_SUBST_NOTMAKE([am__isrc])
|
2144
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^CYGPATH_W$])
|
2145
|
-
m4trace:configure.ac:32: -1- _AM_SET_OPTIONS([1.9 foreign])
|
2146
|
-
m4trace:configure.ac:32: -1- _AM_SET_OPTION([1.9])
|
2147
|
-
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([1.9])
|
2148
|
-
m4trace:configure.ac:32: -1- _AM_SET_OPTION([foreign])
|
2149
|
-
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([foreign])
|
2150
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^PACKAGE$])
|
2151
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^VERSION$])
|
2152
|
-
m4trace:configure.ac:32: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
|
2153
|
-
AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
|
2154
|
-
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([no-define])
|
2155
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^PACKAGE$])
|
2156
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^VERSION$])
|
2157
|
-
m4trace:configure.ac:32: -1- AM_SANITY_CHECK
|
2158
|
-
m4trace:configure.ac:32: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
|
2159
|
-
m4trace:configure.ac:32: -1- AM_MISSING_HAS_RUN
|
2160
|
-
m4trace:configure.ac:32: -1- AM_AUX_DIR_EXPAND
|
2161
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^ACLOCAL$])
|
2162
|
-
m4trace:configure.ac:32: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
|
2163
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^AUTOCONF$])
|
2164
|
-
m4trace:configure.ac:32: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
|
2165
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^AUTOMAKE$])
|
2166
|
-
m4trace:configure.ac:32: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
|
2167
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^AUTOHEADER$])
|
2168
|
-
m4trace:configure.ac:32: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
|
2169
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^MAKEINFO$])
|
2170
|
-
m4trace:configure.ac:32: -1- AM_PROG_INSTALL_SH
|
2171
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^install_sh$])
|
2172
|
-
m4trace:configure.ac:32: -1- AM_PROG_INSTALL_STRIP
|
2173
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^STRIP$])
|
2174
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
|
2175
|
-
m4trace:configure.ac:32: -1- AM_PROG_MKDIR_P
|
2176
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^MKDIR_P$])
|
2177
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^mkdir_p$])
|
2178
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^AWK$])
|
2179
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^SET_MAKE$])
|
2180
|
-
m4trace:configure.ac:32: -1- AM_SET_LEADING_DOT
|
2181
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^am__leading_dot$])
|
2182
|
-
m4trace:configure.ac:32: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
|
2183
|
-
[_AM_PROG_TAR([v7])])])
|
2184
|
-
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([tar-ustar])
|
2185
|
-
m4trace:configure.ac:32: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
|
2186
|
-
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([tar-pax])
|
2187
|
-
m4trace:configure.ac:32: -1- _AM_PROG_TAR([v7])
|
2188
|
-
m4trace:configure.ac:32: -1- AM_MISSING_PROG([AMTAR], [tar])
|
2189
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^AMTAR$])
|
2190
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^am__tar$])
|
2191
|
-
m4trace:configure.ac:32: -1- m4_pattern_allow([^am__untar$])
|
2192
|
-
m4trace:configure.ac:32: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
|
2193
|
-
[_AM_DEPENDENCIES(CC)],
|
2194
|
-
[define([AC_PROG_CC],
|
2195
|
-
defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
|
2196
|
-
AC_PROVIDE_IFELSE([AC_PROG_CXX],
|
2197
|
-
[_AM_DEPENDENCIES(CXX)],
|
2198
|
-
[define([AC_PROG_CXX],
|
2199
|
-
defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
|
2200
|
-
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
|
2201
|
-
[_AM_DEPENDENCIES(OBJC)],
|
2202
|
-
[define([AC_PROG_OBJC],
|
2203
|
-
defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
|
2204
|
-
])
|
2205
|
-
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([no-dependencies])
|
2206
|
-
m4trace:configure.ac:32: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])
|
2207
|
-
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([silent-rules])
|
2208
|
-
m4trace:configure.ac:35: -1- m4_pattern_allow([^YAML_VERSION_MAJOR$])
|
2209
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([^YAML_VERSION_MINOR$])
|
2210
|
-
m4trace:configure.ac:37: -1- m4_pattern_allow([^YAML_VERSION_PATCH$])
|
2211
|
-
m4trace:configure.ac:38: -1- m4_pattern_allow([^YAML_VERSION_STRING$])
|
2212
|
-
m4trace:configure.ac:45: -1- m4_pattern_allow([^YAML_LT_RELEASE$])
|
2213
|
-
m4trace:configure.ac:46: -1- m4_pattern_allow([^YAML_LT_CURRENT$])
|
2214
|
-
m4trace:configure.ac:47: -1- m4_pattern_allow([^YAML_LT_REVISION$])
|
2215
|
-
m4trace:configure.ac:48: -1- m4_pattern_allow([^YAML_LT_AGE$])
|
2216
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
|
2217
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^CFLAGS$])
|
2218
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^LDFLAGS$])
|
2219
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^LIBS$])
|
2220
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^CPPFLAGS$])
|
2221
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
|
2222
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
|
2223
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
|
2224
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
|
2225
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^ac_ct_CC$])
|
2226
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^EXEEXT$])
|
2227
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^OBJEXT$])
|
2228
|
-
m4trace:configure.ac:53: -1- _AM_DEPENDENCIES([CC])
|
2229
|
-
m4trace:configure.ac:53: -1- AM_SET_DEPDIR
|
2230
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^DEPDIR$])
|
2231
|
-
m4trace:configure.ac:53: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
|
2232
|
-
m4trace:configure.ac:53: -1- AM_MAKE_INCLUDE
|
2233
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^am__include$])
|
2234
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^am__quote$])
|
2235
|
-
m4trace:configure.ac:53: -1- AM_DEP_TRACK
|
2236
|
-
m4trace:configure.ac:53: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
2237
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^AMDEP_TRUE$])
|
2238
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^AMDEP_FALSE$])
|
2239
|
-
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
|
2240
|
-
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
|
2241
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
|
2242
|
-
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
|
2243
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^CCDEPMODE$])
|
2244
|
-
m4trace:configure.ac:53: -1- AM_CONDITIONAL([am__fastdepCC], [
|
2245
|
-
test "x$enable_dependency_tracking" != xno \
|
2246
|
-
&& test "$am_cv_CC_dependencies_compiler_type" = gcc3])
|
2247
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
|
2248
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
|
2249
|
-
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
|
2250
|
-
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
|
2251
|
-
m4trace:configure.ac:54: -1- m4_pattern_allow([^CPP$])
|
2252
|
-
m4trace:configure.ac:54: -1- m4_pattern_allow([^CPPFLAGS$])
|
2253
|
-
m4trace:configure.ac:54: -1- m4_pattern_allow([^CPP$])
|
2254
|
-
m4trace:configure.ac:56: -1- m4_pattern_allow([^LN_S$])
|
2255
|
-
m4trace:configure.ac:57: -1- m4_pattern_allow([^SET_MAKE$])
|
2256
|
-
m4trace:configure.ac:58: -1- AC_PROG_LIBTOOL
|
2257
|
-
m4trace:configure.ac:58: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
|
2258
|
-
You should run autoupdate.], [m4/libtool.m4:102: AC_PROG_LIBTOOL is expanded from...
|
2259
|
-
configure.ac:58: the top level])
|
2260
|
-
m4trace:configure.ac:58: -1- LT_INIT
|
2261
|
-
m4trace:configure.ac:58: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
|
2262
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
|
2263
|
-
m4trace:configure.ac:58: -1- LTOPTIONS_VERSION
|
2264
|
-
m4trace:configure.ac:58: -1- LTSUGAR_VERSION
|
2265
|
-
m4trace:configure.ac:58: -1- LTVERSION_VERSION
|
2266
|
-
m4trace:configure.ac:58: -1- LTOBSOLETE_VERSION
|
2267
|
-
m4trace:configure.ac:58: -1- _LT_PROG_LTMAIN
|
2268
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^LIBTOOL$])
|
2269
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^build$])
|
2270
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^build_cpu$])
|
2271
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^build_vendor$])
|
2272
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^build_os$])
|
2273
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^host$])
|
2274
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^host_cpu$])
|
2275
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^host_vendor$])
|
2276
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^host_os$])
|
2277
|
-
m4trace:configure.ac:58: -1- LT_PATH_LD
|
2278
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^SED$])
|
2279
|
-
m4trace:configure.ac:58: -1- AC_PROG_EGREP
|
2280
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^GREP$])
|
2281
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^EGREP$])
|
2282
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^FGREP$])
|
2283
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^GREP$])
|
2284
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^LD$])
|
2285
|
-
m4trace:configure.ac:58: -1- LT_PATH_NM
|
2286
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^DUMPBIN$])
|
2287
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
|
2288
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^DUMPBIN$])
|
2289
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^NM$])
|
2290
|
-
m4trace:configure.ac:58: -1- LT_CMD_MAX_LEN
|
2291
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^OBJDUMP$])
|
2292
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^OBJDUMP$])
|
2293
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^AR$])
|
2294
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^STRIP$])
|
2295
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^RANLIB$])
|
2296
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([LT_OBJDIR])
|
2297
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^LT_OBJDIR$])
|
2298
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^lt_ECHO$])
|
2299
|
-
m4trace:configure.ac:58: -1- _LT_CC_BASENAME([$compiler])
|
2300
|
-
m4trace:configure.ac:58: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
|
2301
|
-
m4trace:configure.ac:58: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
|
2302
|
-
m4trace:configure.ac:58: -1- LT_SUPPORTED_TAG([CC])
|
2303
|
-
m4trace:configure.ac:58: -1- _LT_COMPILER_BOILERPLATE
|
2304
|
-
m4trace:configure.ac:58: -1- _LT_LINKER_BOILERPLATE
|
2305
|
-
m4trace:configure.ac:58: -1- _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, )="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, ) -fno-rtti -fno-exceptions"])
|
2306
|
-
m4trace:configure.ac:58: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, ) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, )], [$_LT_TAGVAR(lt_prog_compiler_pic, )@&t@m4_if([],[],[ -DPIC],[m4_if([],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, ) in
|
2307
|
-
"" | " "*) ;;
|
2308
|
-
*) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
|
2309
|
-
esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
|
2310
|
-
_LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
|
2311
|
-
m4trace:configure.ac:58: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, )=])
|
2312
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^DSYMUTIL$])
|
2313
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^NMEDIT$])
|
2314
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^LIPO$])
|
2315
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^OTOOL$])
|
2316
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^OTOOL64$])
|
2317
|
-
m4trace:configure.ac:58: -1- LT_SYS_DLOPEN_SELF
|
2318
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^STDC_HEADERS$])
|
2319
|
-
m4trace:configure.ac:58: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
|
2320
|
-
m4trace:configure.ac:60: -1- m4_pattern_allow([^DOXYGEN$])
|
2321
|
-
m4trace:configure.ac:61: -1- AM_CONDITIONAL([DOXYGEN], [test "$DOXYGEN" = true])
|
2322
|
-
m4trace:configure.ac:61: -1- m4_pattern_allow([^DOXYGEN_TRUE$])
|
2323
|
-
m4trace:configure.ac:61: -1- m4_pattern_allow([^DOXYGEN_FALSE$])
|
2324
|
-
m4trace:configure.ac:61: -1- _AM_SUBST_NOTMAKE([DOXYGEN_TRUE])
|
2325
|
-
m4trace:configure.ac:61: -1- _AM_SUBST_NOTMAKE([DOXYGEN_FALSE])
|
2326
|
-
m4trace:configure.ac:64: -1- m4_pattern_allow([^STDC_HEADERS$])
|
2327
|
-
m4trace:configure.ac:65: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
|
2328
|
-
m4trace:configure.ac:68: -1- m4_pattern_allow([^const$])
|
2329
|
-
m4trace:configure.ac:69: -1- m4_pattern_allow([^size_t$])
|
2330
|
-
m4trace:configure.ac:75: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
2331
|
-
m4trace:configure.ac:75: -1- m4_pattern_allow([^LTLIBOBJS$])
|
2332
|
-
m4trace:configure.ac:75: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
|
2333
|
-
m4trace:configure.ac:75: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
|
2334
|
-
m4trace:configure.ac:75: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
|
2335
|
-
m4trace:configure.ac:75: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
|
2336
|
-
m4trace:configure.ac:75: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
|
2337
|
-
m4trace:configure.ac:75: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
|
2338
|
-
m4trace:configure.ac:75: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
|
2339
|
-
m4trace:configure.ac:75: -1- _LT_PROG_LTMAIN
|