contrast-agent 3.12.1 → 3.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dockerignore +0 -1
- data/.gitignore +1 -1
- data/.simplecov +1 -1
- data/Rakefile +31 -0
- data/exe/contrast_service +1 -7
- data/ext/build_funchook.rb +0 -2
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +8 -7
- data/ext/cs__assess_array/cs__assess_array.c +6 -5
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +5 -5
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -9
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +0 -1
- data/ext/cs__assess_hash/cs__assess_hash.c +18 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +2 -1
- data/ext/cs__assess_kernel/cs__assess_kernel.c +7 -8
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +4 -5
- data/ext/cs__assess_module/cs__assess_module.c +6 -6
- data/ext/cs__assess_regexp/cs__assess_regexp.c +4 -4
- data/ext/cs__assess_string/cs__assess_string.c +20 -4
- data/ext/cs__assess_string/cs__assess_string.h +4 -1
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +4 -7
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +3 -7
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +0 -1
- data/ext/cs__common/cs__common.c +59 -28
- data/ext/cs__common/cs__common.h +18 -20
- data/ext/cs__common/extconf.rb +0 -14
- data/ext/cs__contrast_patch/cs__contrast_patch.c +27 -25
- data/ext/cs__contrast_patch/cs__contrast_patch.h +5 -7
- data/ext/cs__protect_kernel/cs__protect_kernel.c +11 -12
- data/ext/cs__protect_kernel/cs__protect_kernel.h +2 -2
- data/ext/extconf_common.rb +0 -28
- data/lib/contrast-agent.rb +1 -1
- data/lib/contrast.rb +15 -23
- data/lib/contrast/agent.rb +51 -39
- data/lib/contrast/agent/assess.rb +11 -12
- data/lib/contrast/agent/assess/contrast_event.rb +39 -176
- data/lib/contrast/agent/assess/events/event_factory.rb +2 -2
- data/lib/contrast/agent/assess/events/source_event.rb +5 -9
- data/lib/contrast/agent/assess/finalizers/finalize.rb +21 -0
- data/lib/contrast/agent/assess/finalizers/freeze.rb +13 -0
- data/lib/contrast/agent/assess/finalizers/hash.rb +53 -0
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +2 -2
- data/lib/contrast/agent/assess/policy/patcher.rb +5 -5
- data/lib/contrast/agent/assess/policy/policy.rb +9 -9
- data/lib/contrast/agent/assess/policy/policy_node.rb +5 -99
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +3 -3
- data/lib/contrast/agent/assess/policy/preshift.rb +15 -5
- data/lib/contrast/agent/assess/policy/propagation_method.rb +26 -24
- data/lib/contrast/agent/assess/policy/propagation_node.rb +6 -2
- data/lib/contrast/agent/assess/policy/propagator.rb +18 -18
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +1 -4
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +12 -3
- data/lib/contrast/agent/assess/policy/propagator/prepend.rb +5 -0
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +6 -11
- data/lib/contrast/agent/assess/policy/propagator/select.rb +4 -4
- data/lib/contrast/agent/assess/policy/propagator/split.rb +5 -5
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +8 -7
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +6 -10
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +5 -5
- data/lib/contrast/agent/assess/policy/source_method.rb +6 -16
- data/lib/contrast/agent/assess/policy/source_validation/cross_site_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_method.rb +7 -15
- data/lib/contrast/agent/assess/policy/trigger_node.rb +18 -6
- data/lib/contrast/agent/assess/policy/trigger_validation/trigger_validation.rb +2 -2
- data/lib/contrast/agent/assess/properties.rb +13 -383
- data/lib/contrast/agent/assess/property/evented.rb +78 -0
- data/lib/contrast/agent/assess/property/tagged.rb +339 -0
- data/lib/contrast/agent/assess/rule.rb +2 -2
- data/lib/contrast/agent/assess/rule/base.rb +3 -4
- data/lib/contrast/agent/assess/rule/provider.rb +3 -3
- data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +1 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +4 -22
- data/lib/contrast/agent/assess/tag.rb +27 -12
- data/lib/contrast/agent/at_exit_hook.rb +4 -2
- data/lib/contrast/agent/class_reopener.rb +7 -6
- data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +1 -1
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +1 -1
- data/lib/contrast/agent/exclusion_matcher.rb +3 -3
- data/lib/contrast/agent/inventory/policy/datastores.rb +2 -3
- data/lib/contrast/agent/inventory/policy/policy.rb +3 -3
- data/lib/contrast/agent/inventory/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/middleware.rb +37 -48
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +4 -4
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +6 -5
- data/lib/contrast/agent/patching/policy/module_policy.rb +1 -1
- data/lib/contrast/agent/patching/policy/patch.rb +16 -16
- data/lib/contrast/agent/patching/policy/patcher.rb +30 -22
- data/lib/contrast/agent/patching/policy/policy.rb +9 -9
- data/lib/contrast/agent/patching/policy/policy_node.rb +3 -3
- data/lib/contrast/agent/patching/policy/trigger_node.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/policy.rb +8 -8
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +3 -3
- data/lib/contrast/agent/protect/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/rule.rb +18 -18
- data/lib/contrast/agent/protect/rule/base.rb +21 -32
- data/lib/contrast/agent/protect/rule/base_service.rb +2 -2
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +5 -5
- data/lib/contrast/agent/protect/rule/deserialization.rb +1 -1
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +3 -8
- data/lib/contrast/agent/protect/rule/no_sqli.rb +1 -1
- data/lib/contrast/agent/protect/rule/path_traversal.rb +4 -5
- data/lib/contrast/agent/protect/rule/sqli.rb +2 -2
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +1 -1
- data/lib/contrast/agent/protect/rule/xss.rb +1 -1
- data/lib/contrast/agent/protect/rule/xxe.rb +4 -5
- data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +2 -2
- data/lib/contrast/agent/railtie.rb +1 -1
- data/lib/contrast/agent/reaction_processor.rb +5 -5
- data/lib/contrast/agent/request.rb +103 -340
- data/lib/contrast/agent/request_context.rb +25 -21
- data/lib/contrast/agent/request_handler.rb +1 -1
- data/lib/contrast/agent/response.rb +8 -20
- data/lib/contrast/agent/rewriter.rb +5 -6
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +8 -10
- data/lib/contrast/agent/static_analysis.rb +4 -4
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +49 -0
- data/lib/contrast/agent/tracepoint_hook.rb +1 -1
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent/worker_thread.rb +24 -0
- data/lib/contrast/api.rb +4 -6
- data/lib/contrast/api/communication.rb +20 -0
- data/lib/contrast/api/communication/connection_status.rb +41 -0
- data/lib/contrast/api/communication/messaging_queue.rb +79 -0
- data/lib/contrast/{utils/service_response_util.rb → api/communication/response_processor.rb} +10 -19
- data/lib/contrast/api/communication/service_lifecycle.rb +61 -0
- data/lib/contrast/api/communication/socket.rb +45 -0
- data/lib/contrast/api/communication/socket_client.rb +76 -0
- data/lib/contrast/api/communication/speedracer.rb +111 -0
- data/lib/contrast/api/communication/tcp_socket.rb +31 -0
- data/lib/contrast/api/communication/unix_socket.rb +27 -0
- data/lib/contrast/api/decorators.rb +14 -4
- data/lib/contrast/api/decorators/address.rb +61 -0
- data/lib/contrast/api/decorators/application_settings.rb +10 -5
- data/lib/contrast/api/decorators/application_update.rb +5 -13
- data/lib/contrast/api/decorators/http_request.rb +140 -0
- data/lib/contrast/api/decorators/input_analysis.rb +3 -2
- data/lib/contrast/api/decorators/message.rb +76 -0
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +29 -0
- data/lib/contrast/api/decorators/route_coverage.rb +58 -0
- data/lib/contrast/api/decorators/server_features.rb +3 -2
- data/lib/contrast/api/decorators/trace_event.rb +100 -0
- data/lib/contrast/api/decorators/trace_event_object.rb +58 -0
- data/lib/contrast/api/decorators/trace_event_signature.rb +47 -0
- data/lib/contrast/api/decorators/trace_taint_range.rb +52 -0
- data/lib/contrast/api/decorators/trace_taint_range_tags.rb +109 -0
- data/lib/contrast/api/decorators/user_input.rb +40 -0
- data/lib/contrast/common_agent_configuration.rb +2 -2
- data/lib/contrast/components/agent.rb +2 -2
- data/lib/contrast/components/app_context.rb +1 -8
- data/lib/contrast/components/config.rb +7 -12
- data/lib/contrast/components/contrast_service.rb +1 -1
- data/lib/contrast/components/interface.rb +16 -16
- data/lib/contrast/components/logger.rb +1 -1
- data/lib/contrast/components/scope.rb +3 -3
- data/lib/contrast/components/settings.rb +0 -6
- data/lib/contrast/config.rb +18 -18
- data/lib/contrast/config/base_configuration.rb +2 -2
- data/lib/contrast/config/protect_rule_configuration.rb +1 -1
- data/lib/contrast/configuration.rb +5 -5
- data/lib/contrast/extension/assess.rb +22 -22
- data/lib/contrast/extension/assess/array.rb +4 -4
- data/lib/contrast/extension/assess/assess_extension.rb +28 -31
- data/lib/contrast/extension/assess/eval_trigger.rb +3 -3
- data/lib/contrast/extension/assess/exec_trigger.rb +1 -1
- data/lib/contrast/extension/assess/fiber.rb +3 -3
- data/lib/contrast/extension/assess/hash.rb +5 -3
- data/lib/contrast/extension/assess/kernel.rb +7 -6
- data/lib/contrast/extension/assess/marshal.rb +62 -0
- data/lib/contrast/extension/assess/regexp.rb +3 -3
- data/lib/contrast/extension/assess/string.rb +6 -6
- data/lib/contrast/extension/inventory.rb +4 -5
- data/lib/contrast/extension/kernel.rb +1 -1
- data/lib/contrast/extension/module.rb +1 -1
- data/lib/contrast/extension/protect.rb +3 -3
- data/lib/contrast/extension/protect/kernel.rb +2 -2
- data/lib/contrast/extension/protect/psych.rb +2 -2
- data/lib/contrast/framework/base_support.rb +0 -23
- data/lib/contrast/framework/manager.rb +7 -17
- data/lib/contrast/framework/rack/patch/session_cookie.rb +1 -1
- data/lib/contrast/framework/rack/patch/support.rb +1 -1
- data/lib/contrast/framework/rack/support.rb +2 -2
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -3
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +5 -6
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +1 -1
- data/lib/contrast/framework/rails/patch/support.rb +3 -3
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +2 -2
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +2 -2
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +2 -2
- data/lib/contrast/framework/rails/support.rb +56 -37
- data/lib/contrast/framework/sinatra/patch/base.rb +2 -2
- data/lib/contrast/framework/sinatra/patch/support.rb +1 -1
- data/lib/contrast/framework/sinatra/support.rb +13 -24
- data/lib/contrast/funchook/funchook.rb +45 -0
- data/lib/contrast/logger/application.rb +3 -3
- data/lib/contrast/logger/format.rb +64 -0
- data/lib/contrast/logger/log.rb +17 -9
- data/lib/contrast/logger/request.rb +30 -0
- data/lib/contrast/tasks/config.rb +1 -1
- data/lib/contrast/tasks/service.rb +2 -2
- data/lib/contrast/utils/assess/sampling_util.rb +2 -2
- data/lib/contrast/utils/assess/tracking_util.rb +46 -21
- data/lib/contrast/utils/boolean_util.rb +1 -1
- data/lib/contrast/utils/class_util.rb +5 -3
- data/lib/contrast/utils/freeze_util.rb +1 -1
- data/lib/contrast/utils/gemfile_reader.rb +5 -5
- data/lib/contrast/utils/hash_digest.rb +13 -3
- data/lib/contrast/utils/heap_dump_util.rb +2 -2
- data/lib/contrast/utils/invalid_configuration_util.rb +2 -18
- data/lib/contrast/utils/inventory_util.rb +6 -11
- data/lib/contrast/utils/io_util.rb +1 -1
- data/lib/contrast/utils/object_share.rb +0 -1
- data/lib/contrast/utils/os.rb +16 -4
- data/lib/contrast/utils/ruby_ast_rewriter.rb +1 -1
- data/lib/contrast/utils/sha256_builder.rb +2 -2
- data/lib/contrast/utils/stack_trace_utils.rb +2 -3
- data/lib/contrast/utils/string_utils.rb +1 -1
- data/lib/contrast/utils/tag_util.rb +1 -1
- data/lib/contrast/utils/thread_tracker.rb +1 -14
- data/lib/contrast/utils/timer.rb +1 -17
- data/resources/deadzone/policy.json +5 -0
- data/ruby-agent.gemspec +9 -9
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +60 -79
- data/funchook/Makefile +0 -29
- data/funchook/autom4te.cache/output.0 +0 -4976
- data/funchook/autom4te.cache/requests +0 -78
- data/funchook/autom4te.cache/traces.0 +0 -364
- data/funchook/config.log +0 -490
- data/funchook/config.status +0 -1016
- data/funchook/configure +0 -4976
- data/funchook/src/Makefile +0 -70
- data/funchook/src/config.h +0 -101
- data/funchook/src/config.h.in +0 -100
- data/funchook/src/decoder.o +0 -0
- data/funchook/src/distorm.o +0 -0
- data/funchook/src/funchook.o +0 -0
- data/funchook/src/funchook_io.o +0 -0
- data/funchook/src/funchook_syscall.o +0 -0
- data/funchook/src/funchook_unix.o +0 -0
- data/funchook/src/funchook_x86.o +0 -0
- data/funchook/src/instructions.o +0 -0
- data/funchook/src/insts.o +0 -0
- data/funchook/src/libfunchook.so +0 -0
- data/funchook/src/mnemonics.o +0 -0
- data/funchook/src/operands.o +0 -0
- data/funchook/src/os_func.o +0 -0
- data/funchook/src/os_func_unix.o +0 -0
- data/funchook/src/prefix.o +0 -0
- data/funchook/src/printf_base.o +0 -0
- data/funchook/src/textdefs.o +0 -0
- data/funchook/src/wstring.o +0 -0
- data/funchook/test/Makefile +0 -43
- data/funchook/test/funchook_test +0 -0
- data/funchook/test/libfunchook_test.so +0 -0
- data/funchook/test/test_main.o +0 -0
- data/funchook/test/x86_64_test.o +0 -0
- data/lib/contrast/agent/assess/adjusted_span.rb +0 -27
- data/lib/contrast/agent/assess/insulator.rb +0 -49
- data/lib/contrast/agent/require_state.rb +0 -61
- data/lib/contrast/agent/socket_client.rb +0 -134
- data/lib/contrast/api/connection_status.rb +0 -49
- data/lib/contrast/api/socket.rb +0 -43
- data/lib/contrast/api/speedracer.rb +0 -188
- data/lib/contrast/api/tcp_socket.rb +0 -29
- data/lib/contrast/api/unix_socket.rb +0 -25
- data/lib/contrast/framework/sinatra/application_helper.rb +0 -51
- data/lib/contrast/framework/view_technologies_descriptor.rb +0 -21
- data/lib/contrast/internal_exception.rb +0 -8
- data/lib/contrast/utils/cache.rb +0 -58
- data/lib/contrast/utils/service_sender_util.rb +0 -167
- data/lib/contrast/utils/sinatra_helper.rb +0 -49
@@ -1,78 +0,0 @@
|
|
1
|
-
# This file was generated by Autom4te Sun Aug 20 18:29:13 UTC 2017.
|
2
|
-
# It contains the lists of macros which have been traced.
|
3
|
-
# It can be safely removed.
|
4
|
-
|
5
|
-
@request = (
|
6
|
-
bless( [
|
7
|
-
'0',
|
8
|
-
1,
|
9
|
-
[
|
10
|
-
'/usr/share/autoconf'
|
11
|
-
],
|
12
|
-
[
|
13
|
-
'/usr/share/autoconf/autoconf/autoconf.m4f',
|
14
|
-
'configure.ac'
|
15
|
-
],
|
16
|
-
{
|
17
|
-
'_AM_MAKEFILE_INCLUDE' => 1,
|
18
|
-
'AM_MAINTAINER_MODE' => 1,
|
19
|
-
'AM_NLS' => 1,
|
20
|
-
'AM_ENABLE_MULTILIB' => 1,
|
21
|
-
'AC_CONFIG_FILES' => 1,
|
22
|
-
'AM_POT_TOOLS' => 1,
|
23
|
-
'AM_INIT_AUTOMAKE' => 1,
|
24
|
-
'AM_PROG_LIBTOOL' => 1,
|
25
|
-
'AM_PROG_MOC' => 1,
|
26
|
-
'AC_CONFIG_HEADERS' => 1,
|
27
|
-
'AH_OUTPUT' => 1,
|
28
|
-
'AM_PROG_AR' => 1,
|
29
|
-
'AC_DEFINE_TRACE_LITERAL' => 1,
|
30
|
-
'AC_REQUIRE_AUX_FILE' => 1,
|
31
|
-
'AM_AUTOMAKE_VERSION' => 1,
|
32
|
-
'm4_include' => 1,
|
33
|
-
'AC_CANONICAL_BUILD' => 1,
|
34
|
-
'LT_INIT' => 1,
|
35
|
-
'AC_LIBSOURCE' => 1,
|
36
|
-
'm4_pattern_allow' => 1,
|
37
|
-
'AM_PROG_CC_C_O' => 1,
|
38
|
-
'AM_PROG_FC_C_O' => 1,
|
39
|
-
'AC_SUBST_TRACE' => 1,
|
40
|
-
'AC_FC_PP_DEFINE' => 1,
|
41
|
-
'AC_PROG_LIBTOOL' => 1,
|
42
|
-
'LT_SUPPORTED_TAG' => 1,
|
43
|
-
'AC_SUBST' => 1,
|
44
|
-
'sinclude' => 1,
|
45
|
-
'AM_MAKEFILE_INCLUDE' => 1,
|
46
|
-
'_AM_SUBST_NOTMAKE' => 1,
|
47
|
-
'AM_CONDITIONAL' => 1,
|
48
|
-
'_LT_AC_TAGCONFIG' => 1,
|
49
|
-
'include' => 1,
|
50
|
-
'AC_CANONICAL_TARGET' => 1,
|
51
|
-
'm4_sinclude' => 1,
|
52
|
-
'AC_INIT' => 1,
|
53
|
-
'_AM_COND_ELSE' => 1,
|
54
|
-
'AC_FC_FREEFORM' => 1,
|
55
|
-
'AM_PATH_GUILE' => 1,
|
56
|
-
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
57
|
-
'AM_SILENT_RULES' => 1,
|
58
|
-
'AM_PROG_F77_C_O' => 1,
|
59
|
-
'AC_FC_PP_SRCEXT' => 1,
|
60
|
-
'AC_CANONICAL_SYSTEM' => 1,
|
61
|
-
'AC_CANONICAL_HOST' => 1,
|
62
|
-
'm4_pattern_forbid' => 1,
|
63
|
-
'_AM_COND_IF' => 1,
|
64
|
-
'AM_PROG_CXX_C_O' => 1,
|
65
|
-
'AC_FC_SRCEXT' => 1,
|
66
|
-
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
67
|
-
'AM_XGETTEXT_OPTION' => 1,
|
68
|
-
'_AM_COND_ENDIF' => 1,
|
69
|
-
'LT_CONFIG_LTDL_DIR' => 1,
|
70
|
-
'AC_CONFIG_AUX_DIR' => 1,
|
71
|
-
'AC_CONFIG_SUBDIRS' => 1,
|
72
|
-
'AM_GNU_GETTEXT' => 1,
|
73
|
-
'AC_CONFIG_LINKS' => 1,
|
74
|
-
'_m4_warn' => 1
|
75
|
-
}
|
76
|
-
], 'Autom4te::Request' )
|
77
|
-
);
|
78
|
-
|
@@ -1,364 +0,0 @@
|
|
1
|
-
m4trace:configure.ac:1: -1- AC_INIT([funchook], [0.1])
|
2
|
-
m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?A[CHUM]_])
|
3
|
-
m4trace:configure.ac:1: -1- m4_pattern_forbid([_AC_])
|
4
|
-
m4trace:configure.ac:1: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
|
5
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^AS_FLAGS$])
|
6
|
-
m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?m4_])
|
7
|
-
m4trace:configure.ac:1: -1- m4_pattern_forbid([^dnl$])
|
8
|
-
m4trace:configure.ac:1: -1- m4_pattern_forbid([^_?AS_])
|
9
|
-
m4trace:configure.ac:1: -1- AC_SUBST([SHELL])
|
10
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([SHELL])
|
11
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^SHELL$])
|
12
|
-
m4trace:configure.ac:1: -1- AC_SUBST([PATH_SEPARATOR])
|
13
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
|
14
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PATH_SEPARATOR$])
|
15
|
-
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])])
|
16
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_NAME])
|
17
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
18
|
-
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])])
|
19
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
|
20
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
21
|
-
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])])
|
22
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
|
23
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
24
|
-
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])])
|
25
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_STRING])
|
26
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
27
|
-
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
|
28
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
|
29
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
30
|
-
m4trace:configure.ac:1: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])])
|
31
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([PACKAGE_URL])
|
32
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_URL$])
|
33
|
-
m4trace:configure.ac:1: -1- AC_SUBST([exec_prefix], [NONE])
|
34
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([exec_prefix])
|
35
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^exec_prefix$])
|
36
|
-
m4trace:configure.ac:1: -1- AC_SUBST([prefix], [NONE])
|
37
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([prefix])
|
38
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^prefix$])
|
39
|
-
m4trace:configure.ac:1: -1- AC_SUBST([program_transform_name], [s,x,x,])
|
40
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([program_transform_name])
|
41
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^program_transform_name$])
|
42
|
-
m4trace:configure.ac:1: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
|
43
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([bindir])
|
44
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^bindir$])
|
45
|
-
m4trace:configure.ac:1: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
|
46
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([sbindir])
|
47
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^sbindir$])
|
48
|
-
m4trace:configure.ac:1: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
|
49
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([libexecdir])
|
50
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^libexecdir$])
|
51
|
-
m4trace:configure.ac:1: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
|
52
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([datarootdir])
|
53
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^datarootdir$])
|
54
|
-
m4trace:configure.ac:1: -1- AC_SUBST([datadir], ['${datarootdir}'])
|
55
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([datadir])
|
56
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^datadir$])
|
57
|
-
m4trace:configure.ac:1: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
|
58
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([sysconfdir])
|
59
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^sysconfdir$])
|
60
|
-
m4trace:configure.ac:1: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
|
61
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([sharedstatedir])
|
62
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^sharedstatedir$])
|
63
|
-
m4trace:configure.ac:1: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
|
64
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([localstatedir])
|
65
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^localstatedir$])
|
66
|
-
m4trace:configure.ac:1: -1- AC_SUBST([runstatedir], ['${localstatedir}/run'])
|
67
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([runstatedir])
|
68
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^runstatedir$])
|
69
|
-
m4trace:configure.ac:1: -1- AC_SUBST([includedir], ['${prefix}/include'])
|
70
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([includedir])
|
71
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^includedir$])
|
72
|
-
m4trace:configure.ac:1: -1- AC_SUBST([oldincludedir], ['/usr/include'])
|
73
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([oldincludedir])
|
74
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^oldincludedir$])
|
75
|
-
m4trace:configure.ac:1: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
|
76
|
-
['${datarootdir}/doc/${PACKAGE_TARNAME}'],
|
77
|
-
['${datarootdir}/doc/${PACKAGE}'])])
|
78
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([docdir])
|
79
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^docdir$])
|
80
|
-
m4trace:configure.ac:1: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
|
81
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([infodir])
|
82
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^infodir$])
|
83
|
-
m4trace:configure.ac:1: -1- AC_SUBST([htmldir], ['${docdir}'])
|
84
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([htmldir])
|
85
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^htmldir$])
|
86
|
-
m4trace:configure.ac:1: -1- AC_SUBST([dvidir], ['${docdir}'])
|
87
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([dvidir])
|
88
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^dvidir$])
|
89
|
-
m4trace:configure.ac:1: -1- AC_SUBST([pdfdir], ['${docdir}'])
|
90
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([pdfdir])
|
91
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^pdfdir$])
|
92
|
-
m4trace:configure.ac:1: -1- AC_SUBST([psdir], ['${docdir}'])
|
93
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([psdir])
|
94
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^psdir$])
|
95
|
-
m4trace:configure.ac:1: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
|
96
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([libdir])
|
97
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^libdir$])
|
98
|
-
m4trace:configure.ac:1: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
|
99
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([localedir])
|
100
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^localedir$])
|
101
|
-
m4trace:configure.ac:1: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
|
102
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([mandir])
|
103
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^mandir$])
|
104
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
|
105
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
106
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
|
107
|
-
@%:@undef PACKAGE_NAME])
|
108
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
|
109
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
110
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
|
111
|
-
@%:@undef PACKAGE_TARNAME])
|
112
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
|
113
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
114
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
|
115
|
-
@%:@undef PACKAGE_VERSION])
|
116
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
|
117
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
118
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
|
119
|
-
@%:@undef PACKAGE_STRING])
|
120
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
|
121
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
122
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
|
123
|
-
@%:@undef PACKAGE_BUGREPORT])
|
124
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL])
|
125
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_URL$])
|
126
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */
|
127
|
-
@%:@undef PACKAGE_URL])
|
128
|
-
m4trace:configure.ac:1: -1- AC_SUBST([DEFS])
|
129
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([DEFS])
|
130
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^DEFS$])
|
131
|
-
m4trace:configure.ac:1: -1- AC_SUBST([ECHO_C])
|
132
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_C])
|
133
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_C$])
|
134
|
-
m4trace:configure.ac:1: -1- AC_SUBST([ECHO_N])
|
135
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_N])
|
136
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_N$])
|
137
|
-
m4trace:configure.ac:1: -1- AC_SUBST([ECHO_T])
|
138
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_T])
|
139
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_T$])
|
140
|
-
m4trace:configure.ac:1: -1- AC_SUBST([LIBS])
|
141
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([LIBS])
|
142
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^LIBS$])
|
143
|
-
m4trace:configure.ac:1: -1- AC_SUBST([build_alias])
|
144
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([build_alias])
|
145
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^build_alias$])
|
146
|
-
m4trace:configure.ac:1: -1- AC_SUBST([host_alias])
|
147
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([host_alias])
|
148
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^host_alias$])
|
149
|
-
m4trace:configure.ac:1: -1- AC_SUBST([target_alias])
|
150
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([target_alias])
|
151
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^target_alias$])
|
152
|
-
m4trace:configure.ac:3: -1- AC_SUBST([CC])
|
153
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
|
154
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
|
155
|
-
m4trace:configure.ac:3: -1- AC_SUBST([CFLAGS])
|
156
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CFLAGS])
|
157
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^CFLAGS$])
|
158
|
-
m4trace:configure.ac:3: -1- AC_SUBST([LDFLAGS])
|
159
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([LDFLAGS])
|
160
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^LDFLAGS$])
|
161
|
-
m4trace:configure.ac:3: -1- AC_SUBST([LIBS])
|
162
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([LIBS])
|
163
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^LIBS$])
|
164
|
-
m4trace:configure.ac:3: -1- AC_SUBST([CPPFLAGS])
|
165
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CPPFLAGS])
|
166
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^CPPFLAGS$])
|
167
|
-
m4trace:configure.ac:3: -1- AC_SUBST([CC])
|
168
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
|
169
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
|
170
|
-
m4trace:configure.ac:3: -1- AC_SUBST([CC])
|
171
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
|
172
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
|
173
|
-
m4trace:configure.ac:3: -1- AC_SUBST([CC])
|
174
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
|
175
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
|
176
|
-
m4trace:configure.ac:3: -1- AC_SUBST([CC])
|
177
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
|
178
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
|
179
|
-
m4trace:configure.ac:3: -1- AC_SUBST([ac_ct_CC])
|
180
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([ac_ct_CC])
|
181
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^ac_ct_CC$])
|
182
|
-
m4trace:configure.ac:3: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
|
183
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([EXEEXT])
|
184
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^EXEEXT$])
|
185
|
-
m4trace:configure.ac:3: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
|
186
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([OBJEXT])
|
187
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^OBJEXT$])
|
188
|
-
m4trace:configure.ac:4: -1- _m4_warn([obsolete], [The macro `AC_GNU_SOURCE' is obsolete.
|
189
|
-
You should run autoupdate.], [../../lib/autoconf/specific.m4:314: AC_GNU_SOURCE is expanded from...
|
190
|
-
configure.ac:4: the top level])
|
191
|
-
m4trace:configure.ac:4: -1- AC_SUBST([CPP])
|
192
|
-
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CPP])
|
193
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^CPP$])
|
194
|
-
m4trace:configure.ac:4: -1- AC_SUBST([CPPFLAGS])
|
195
|
-
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CPPFLAGS])
|
196
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^CPPFLAGS$])
|
197
|
-
m4trace:configure.ac:4: -1- AC_SUBST([CPP])
|
198
|
-
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CPP])
|
199
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^CPP$])
|
200
|
-
m4trace:configure.ac:4: -1- AC_SUBST([GREP])
|
201
|
-
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([GREP])
|
202
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^GREP$])
|
203
|
-
m4trace:configure.ac:4: -1- AC_SUBST([EGREP])
|
204
|
-
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([EGREP])
|
205
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^EGREP$])
|
206
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
|
207
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^STDC_HEADERS$])
|
208
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
|
209
|
-
@%:@undef STDC_HEADERS])
|
210
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
|
211
|
-
@%:@undef HAVE_SYS_TYPES_H])
|
212
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
|
213
|
-
@%:@undef HAVE_SYS_STAT_H])
|
214
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
|
215
|
-
@%:@undef HAVE_STDLIB_H])
|
216
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
|
217
|
-
@%:@undef HAVE_STRING_H])
|
218
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
|
219
|
-
@%:@undef HAVE_MEMORY_H])
|
220
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
|
221
|
-
@%:@undef HAVE_STRINGS_H])
|
222
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
|
223
|
-
@%:@undef HAVE_INTTYPES_H])
|
224
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
|
225
|
-
@%:@undef HAVE_STDINT_H])
|
226
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
|
227
|
-
@%:@undef HAVE_UNISTD_H])
|
228
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_SOURCE])
|
229
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_POSIX_SOURCE$])
|
230
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([_POSIX_SOURCE], [/* Define to 1 if you need to in order for `stat\' and other things to work. */
|
231
|
-
@%:@undef _POSIX_SOURCE])
|
232
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_1_SOURCE])
|
233
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_POSIX_1_SOURCE$])
|
234
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([_POSIX_1_SOURCE], [/* Define to 2 if the system does not provide POSIX.1 features except with
|
235
|
-
this defined. */
|
236
|
-
@%:@undef _POSIX_1_SOURCE])
|
237
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_MINIX])
|
238
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_MINIX$])
|
239
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([_MINIX], [/* Define to 1 if on MINIX. */
|
240
|
-
@%:@undef _MINIX])
|
241
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([USE_SYSTEM_EXTENSIONS], [/* Enable extensions on AIX 3, Interix. */
|
242
|
-
#ifndef _ALL_SOURCE
|
243
|
-
# undef _ALL_SOURCE
|
244
|
-
#endif
|
245
|
-
/* Enable GNU extensions on systems that have them. */
|
246
|
-
#ifndef _GNU_SOURCE
|
247
|
-
# undef _GNU_SOURCE
|
248
|
-
#endif
|
249
|
-
/* Enable threading extensions on Solaris. */
|
250
|
-
#ifndef _POSIX_PTHREAD_SEMANTICS
|
251
|
-
# undef _POSIX_PTHREAD_SEMANTICS
|
252
|
-
#endif
|
253
|
-
/* Enable extensions on HP NonStop. */
|
254
|
-
#ifndef _TANDEM_SOURCE
|
255
|
-
# undef _TANDEM_SOURCE
|
256
|
-
#endif
|
257
|
-
/* Enable general extensions on Solaris. */
|
258
|
-
#ifndef __EXTENSIONS__
|
259
|
-
# undef __EXTENSIONS__
|
260
|
-
#endif
|
261
|
-
])
|
262
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([__EXTENSIONS__])
|
263
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^__EXTENSIONS__$])
|
264
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_ALL_SOURCE])
|
265
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_ALL_SOURCE$])
|
266
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_GNU_SOURCE])
|
267
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_GNU_SOURCE$])
|
268
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_PTHREAD_SEMANTICS])
|
269
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_POSIX_PTHREAD_SEMANTICS$])
|
270
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_TANDEM_SOURCE])
|
271
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_TANDEM_SOURCE$])
|
272
|
-
m4trace:configure.ac:5: -1- AC_CANONICAL_HOST
|
273
|
-
m4trace:configure.ac:5: -1- AC_CANONICAL_BUILD
|
274
|
-
m4trace:configure.ac:5: -1- AC_REQUIRE_AUX_FILE([config.sub])
|
275
|
-
m4trace:configure.ac:5: -1- AC_REQUIRE_AUX_FILE([config.guess])
|
276
|
-
m4trace:configure.ac:5: -1- AC_SUBST([build], [$ac_cv_build])
|
277
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([build])
|
278
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^build$])
|
279
|
-
m4trace:configure.ac:5: -1- AC_SUBST([build_cpu], [$[1]])
|
280
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([build_cpu])
|
281
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^build_cpu$])
|
282
|
-
m4trace:configure.ac:5: -1- AC_SUBST([build_vendor], [$[2]])
|
283
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([build_vendor])
|
284
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^build_vendor$])
|
285
|
-
m4trace:configure.ac:5: -1- AC_SUBST([build_os])
|
286
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([build_os])
|
287
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^build_os$])
|
288
|
-
m4trace:configure.ac:5: -1- AC_SUBST([host], [$ac_cv_host])
|
289
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([host])
|
290
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^host$])
|
291
|
-
m4trace:configure.ac:5: -1- AC_SUBST([host_cpu], [$[1]])
|
292
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([host_cpu])
|
293
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^host_cpu$])
|
294
|
-
m4trace:configure.ac:5: -1- AC_SUBST([host_vendor], [$[2]])
|
295
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([host_vendor])
|
296
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^host_vendor$])
|
297
|
-
m4trace:configure.ac:5: -1- AC_SUBST([host_os])
|
298
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([host_os])
|
299
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^host_os$])
|
300
|
-
m4trace:configure.ac:11: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_VOIDP])
|
301
|
-
m4trace:configure.ac:11: -1- m4_pattern_allow([^SIZEOF_VOIDP$])
|
302
|
-
m4trace:configure.ac:11: -1- AH_OUTPUT([SIZEOF_VOIDP], [/* The size of `void*\', as computed by sizeof. */
|
303
|
-
@%:@undef SIZEOF_VOIDP])
|
304
|
-
m4trace:configure.ac:17: -1- AC_SUBST([FUNCHOOK_CPU])
|
305
|
-
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([FUNCHOOK_CPU])
|
306
|
-
m4trace:configure.ac:17: -1- m4_pattern_allow([^FUNCHOOK_CPU$])
|
307
|
-
m4trace:configure.ac:46: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL__SYS_NERR])
|
308
|
-
m4trace:configure.ac:46: -1- m4_pattern_allow([^HAVE_DECL__SYS_NERR$])
|
309
|
-
m4trace:configure.ac:46: -1- AH_OUTPUT([HAVE_DECL__SYS_NERR], [/* Define to 1 if you have the declaration of `_sys_nerr\', and to 0 if you
|
310
|
-
don\'t. */
|
311
|
-
@%:@undef HAVE_DECL__SYS_NERR])
|
312
|
-
m4trace:configure.ac:46: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL__SYS_ERRLIST])
|
313
|
-
m4trace:configure.ac:46: -1- m4_pattern_allow([^HAVE_DECL__SYS_ERRLIST$])
|
314
|
-
m4trace:configure.ac:46: -1- AH_OUTPUT([HAVE_DECL__SYS_ERRLIST], [/* Define to 1 if you have the declaration of `_sys_errlist\', and to 0 if you
|
315
|
-
don\'t. */
|
316
|
-
@%:@undef HAVE_DECL__SYS_ERRLIST])
|
317
|
-
m4trace:configure.ac:46: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_SYS_NERR])
|
318
|
-
m4trace:configure.ac:46: -1- m4_pattern_allow([^HAVE_DECL_SYS_NERR$])
|
319
|
-
m4trace:configure.ac:46: -1- AH_OUTPUT([HAVE_DECL_SYS_NERR], [/* Define to 1 if you have the declaration of `sys_nerr\', and to 0 if you
|
320
|
-
don\'t. */
|
321
|
-
@%:@undef HAVE_DECL_SYS_NERR])
|
322
|
-
m4trace:configure.ac:46: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_SYS_ERRLIST])
|
323
|
-
m4trace:configure.ac:46: -1- m4_pattern_allow([^HAVE_DECL_SYS_ERRLIST$])
|
324
|
-
m4trace:configure.ac:46: -1- AH_OUTPUT([HAVE_DECL_SYS_ERRLIST], [/* Define to 1 if you have the declaration of `sys_errlist\', and to 0 if you
|
325
|
-
don\'t. */
|
326
|
-
@%:@undef HAVE_DECL_SYS_ERRLIST])
|
327
|
-
m4trace:configure.ac:48: -1- AC_SUBST([FUNCHOOK_OS])
|
328
|
-
m4trace:configure.ac:48: -1- AC_SUBST_TRACE([FUNCHOOK_OS])
|
329
|
-
m4trace:configure.ac:48: -1- m4_pattern_allow([^FUNCHOOK_OS$])
|
330
|
-
m4trace:configure.ac:49: -1- AC_SUBST([LIBFUNCHOOK_SO])
|
331
|
-
m4trace:configure.ac:49: -1- AC_SUBST_TRACE([LIBFUNCHOOK_SO])
|
332
|
-
m4trace:configure.ac:49: -1- m4_pattern_allow([^LIBFUNCHOOK_SO$])
|
333
|
-
m4trace:configure.ac:50: -1- AC_SUBST([LINK_SHARED])
|
334
|
-
m4trace:configure.ac:50: -1- AC_SUBST_TRACE([LINK_SHARED])
|
335
|
-
m4trace:configure.ac:50: -1- m4_pattern_allow([^LINK_SHARED$])
|
336
|
-
m4trace:configure.ac:51: -1- AC_SUBST([PIC_CFLAGS])
|
337
|
-
m4trace:configure.ac:51: -1- AC_SUBST_TRACE([PIC_CFLAGS])
|
338
|
-
m4trace:configure.ac:51: -1- m4_pattern_allow([^PIC_CFLAGS$])
|
339
|
-
m4trace:configure.ac:52: -1- AC_SUBST([IF_WIN32])
|
340
|
-
m4trace:configure.ac:52: -1- AC_SUBST_TRACE([IF_WIN32])
|
341
|
-
m4trace:configure.ac:52: -1- m4_pattern_allow([^IF_WIN32$])
|
342
|
-
m4trace:configure.ac:53: -1- AC_SUBST([IF_LINUX])
|
343
|
-
m4trace:configure.ac:53: -1- AC_SUBST_TRACE([IF_LINUX])
|
344
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^IF_LINUX$])
|
345
|
-
m4trace:configure.ac:54: -1- AC_SUBST([IF_OSX])
|
346
|
-
m4trace:configure.ac:54: -1- AC_SUBST_TRACE([IF_OSX])
|
347
|
-
m4trace:configure.ac:54: -1- m4_pattern_allow([^IF_OSX$])
|
348
|
-
m4trace:configure.ac:56: -1- AC_CONFIG_HEADERS([src/config.h])
|
349
|
-
m4trace:configure.ac:58: -1- AC_CONFIG_FILES([Makefile src/Makefile test/Makefile])
|
350
|
-
m4trace:configure.ac:59: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
|
351
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
|
352
|
-
m4trace:configure.ac:59: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
353
|
-
m4trace:configure.ac:59: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
|
354
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([LTLIBOBJS])
|
355
|
-
m4trace:configure.ac:59: -1- m4_pattern_allow([^LTLIBOBJS$])
|
356
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([top_builddir])
|
357
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([top_build_prefix])
|
358
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([srcdir])
|
359
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([abs_srcdir])
|
360
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([top_srcdir])
|
361
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([abs_top_srcdir])
|
362
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([builddir])
|
363
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([abs_builddir])
|
364
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([abs_top_builddir])
|
data/funchook/config.log
DELETED
@@ -1,490 +0,0 @@
|
|
1
|
-
This file contains any messages produced by compilers while
|
2
|
-
running configure, to aid debugging if configure makes a mistake.
|
3
|
-
|
4
|
-
It was created by funchook configure 0.1, which was
|
5
|
-
generated by GNU Autoconf 2.69. Invocation command line was
|
6
|
-
|
7
|
-
$ ./configure
|
8
|
-
|
9
|
-
## --------- ##
|
10
|
-
## Platform. ##
|
11
|
-
## --------- ##
|
12
|
-
|
13
|
-
hostname = a193cfcc-bb72-46e9-914d-bb7806a0d5f9-k7pzb
|
14
|
-
uname -m = x86_64
|
15
|
-
uname -r = 4.19.107-flatcar
|
16
|
-
uname -s = Linux
|
17
|
-
uname -v = #1 SMP Thu Mar 26 19:48:36 -00 2020
|
18
|
-
|
19
|
-
/usr/bin/uname -p = unknown
|
20
|
-
/bin/uname -X = unknown
|
21
|
-
|
22
|
-
/bin/arch = unknown
|
23
|
-
/usr/bin/arch -k = unknown
|
24
|
-
/usr/convex/getsysinfo = unknown
|
25
|
-
/usr/bin/hostinfo = unknown
|
26
|
-
/bin/machine = unknown
|
27
|
-
/usr/bin/oslevel = unknown
|
28
|
-
/bin/universe = unknown
|
29
|
-
|
30
|
-
PATH: /usr/local/bundle/bin
|
31
|
-
PATH: /usr/local/sbin
|
32
|
-
PATH: /usr/local/bin
|
33
|
-
PATH: /usr/sbin
|
34
|
-
PATH: /usr/bin
|
35
|
-
PATH: /sbin
|
36
|
-
PATH: /bin
|
37
|
-
|
38
|
-
|
39
|
-
## ----------- ##
|
40
|
-
## Core tests. ##
|
41
|
-
## ----------- ##
|
42
|
-
|
43
|
-
configure:2271: checking for gcc
|
44
|
-
configure:2287: found /usr/bin/gcc
|
45
|
-
configure:2298: result: gcc
|
46
|
-
configure:2527: checking for C compiler version
|
47
|
-
configure:2536: gcc --version >&5
|
48
|
-
gcc (Debian 8.3.0-6) 8.3.0
|
49
|
-
Copyright (C) 2018 Free Software Foundation, Inc.
|
50
|
-
This is free software; see the source for copying conditions. There is NO
|
51
|
-
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
52
|
-
|
53
|
-
configure:2547: $? = 0
|
54
|
-
configure:2536: gcc -v >&5
|
55
|
-
Using built-in specs.
|
56
|
-
COLLECT_GCC=gcc
|
57
|
-
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper
|
58
|
-
OFFLOAD_TARGET_NAMES=nvptx-none
|
59
|
-
OFFLOAD_TARGET_DEFAULT=1
|
60
|
-
Target: x86_64-linux-gnu
|
61
|
-
Configured with: ../src/configure -v --with-pkgversion='Debian 8.3.0-6' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
|
62
|
-
Thread model: posix
|
63
|
-
gcc version 8.3.0 (Debian 8.3.0-6)
|
64
|
-
configure:2547: $? = 0
|
65
|
-
configure:2536: gcc -V >&5
|
66
|
-
gcc: error: unrecognized command line option '-V'
|
67
|
-
gcc: fatal error: no input files
|
68
|
-
compilation terminated.
|
69
|
-
configure:2547: $? = 1
|
70
|
-
configure:2536: gcc -qversion >&5
|
71
|
-
gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
|
72
|
-
gcc: fatal error: no input files
|
73
|
-
compilation terminated.
|
74
|
-
configure:2547: $? = 1
|
75
|
-
configure:2567: checking whether the C compiler works
|
76
|
-
configure:2589: gcc conftest.c >&5
|
77
|
-
configure:2593: $? = 0
|
78
|
-
configure:2641: result: yes
|
79
|
-
configure:2644: checking for C compiler default output file name
|
80
|
-
configure:2646: result: a.out
|
81
|
-
configure:2652: checking for suffix of executables
|
82
|
-
configure:2659: gcc -o conftest conftest.c >&5
|
83
|
-
configure:2663: $? = 0
|
84
|
-
configure:2685: result:
|
85
|
-
configure:2707: checking whether we are cross compiling
|
86
|
-
configure:2715: gcc -o conftest conftest.c >&5
|
87
|
-
configure:2719: $? = 0
|
88
|
-
configure:2726: ./conftest
|
89
|
-
configure:2730: $? = 0
|
90
|
-
configure:2718: result: no
|
91
|
-
configure:2723: checking for suffix of object files
|
92
|
-
configure:2745: gcc -c conftest.c >&5
|
93
|
-
configure:2749: $? = 0
|
94
|
-
configure:2770: result: o
|
95
|
-
configure:2774: checking whether we are using the GNU C compiler
|
96
|
-
configure:2793: gcc -c conftest.c >&5
|
97
|
-
configure:2793: $? = 0
|
98
|
-
configure:2802: result: yes
|
99
|
-
configure:2811: checking whether gcc accepts -g
|
100
|
-
configure:2831: gcc -c -g conftest.c >&5
|
101
|
-
configure:2831: $? = 0
|
102
|
-
configure:2872: result: yes
|
103
|
-
configure:2889: checking for gcc option to accept ISO C89
|
104
|
-
configure:2952: gcc -c -g -O2 conftest.c >&5
|
105
|
-
configure:2952: $? = 0
|
106
|
-
configure:2965: result: none needed
|
107
|
-
configure:2991: checking how to run the C preprocessor
|
108
|
-
configure:3022: gcc -E conftest.c
|
109
|
-
configure:3022: $? = 0
|
110
|
-
configure:3036: gcc -E conftest.c
|
111
|
-
conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
|
112
|
-
#include <ac_nonexistent.h>
|
113
|
-
^~~~~~~~~~~~~~~~~~
|
114
|
-
compilation terminated.
|
115
|
-
configure:3036: $? = 1
|
116
|
-
configure: failed program was:
|
117
|
-
| /* confdefs.h */
|
118
|
-
| #define PACKAGE_NAME "funchook"
|
119
|
-
| #define PACKAGE_TARNAME "funchook"
|
120
|
-
| #define PACKAGE_VERSION "0.1"
|
121
|
-
| #define PACKAGE_STRING "funchook 0.1"
|
122
|
-
| #define PACKAGE_BUGREPORT ""
|
123
|
-
| #define PACKAGE_URL ""
|
124
|
-
| /* end confdefs.h. */
|
125
|
-
| #include <ac_nonexistent.h>
|
126
|
-
configure:3061: result: gcc -E
|
127
|
-
configure:3081: gcc -E conftest.c
|
128
|
-
configure:3081: $? = 0
|
129
|
-
configure:3095: gcc -E conftest.c
|
130
|
-
conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
|
131
|
-
#include <ac_nonexistent.h>
|
132
|
-
^~~~~~~~~~~~~~~~~~
|
133
|
-
compilation terminated.
|
134
|
-
configure:3095: $? = 1
|
135
|
-
configure: failed program was:
|
136
|
-
| /* confdefs.h */
|
137
|
-
| #define PACKAGE_NAME "funchook"
|
138
|
-
| #define PACKAGE_TARNAME "funchook"
|
139
|
-
| #define PACKAGE_VERSION "0.1"
|
140
|
-
| #define PACKAGE_STRING "funchook 0.1"
|
141
|
-
| #define PACKAGE_BUGREPORT ""
|
142
|
-
| #define PACKAGE_URL ""
|
143
|
-
| /* end confdefs.h. */
|
144
|
-
| #include <ac_nonexistent.h>
|
145
|
-
configure:3124: checking for grep that handles long lines and -e
|
146
|
-
configure:3182: result: /bin/grep
|
147
|
-
configure:3187: checking for egrep
|
148
|
-
configure:3249: result: /bin/grep -E
|
149
|
-
configure:3254: checking for ANSI C header files
|
150
|
-
configure:3274: gcc -c -g -O2 conftest.c >&5
|
151
|
-
configure:3274: $? = 0
|
152
|
-
configure:3347: gcc -o conftest -g -O2 conftest.c >&5
|
153
|
-
configure:3347: $? = 0
|
154
|
-
configure:3347: ./conftest
|
155
|
-
configure:3347: $? = 0
|
156
|
-
configure:3358: result: yes
|
157
|
-
configure:3371: checking for sys/types.h
|
158
|
-
configure:3371: gcc -c -g -O2 conftest.c >&5
|
159
|
-
configure:3371: $? = 0
|
160
|
-
configure:3371: result: yes
|
161
|
-
configure:3371: checking for sys/stat.h
|
162
|
-
configure:3371: gcc -c -g -O2 conftest.c >&5
|
163
|
-
configure:3371: $? = 0
|
164
|
-
configure:3371: result: yes
|
165
|
-
configure:3371: checking for stdlib.h
|
166
|
-
configure:3371: gcc -c -g -O2 conftest.c >&5
|
167
|
-
configure:3371: $? = 0
|
168
|
-
configure:3371: result: yes
|
169
|
-
configure:3371: checking for string.h
|
170
|
-
configure:3371: gcc -c -g -O2 conftest.c >&5
|
171
|
-
configure:3371: $? = 0
|
172
|
-
configure:3371: result: yes
|
173
|
-
configure:3371: checking for memory.h
|
174
|
-
configure:3371: gcc -c -g -O2 conftest.c >&5
|
175
|
-
configure:3371: $? = 0
|
176
|
-
configure:3371: result: yes
|
177
|
-
configure:3371: checking for strings.h
|
178
|
-
configure:3371: gcc -c -g -O2 conftest.c >&5
|
179
|
-
configure:3371: $? = 0
|
180
|
-
configure:3371: result: yes
|
181
|
-
configure:3371: checking for inttypes.h
|
182
|
-
configure:3371: gcc -c -g -O2 conftest.c >&5
|
183
|
-
configure:3371: $? = 0
|
184
|
-
configure:3371: result: yes
|
185
|
-
configure:3371: checking for stdint.h
|
186
|
-
configure:3371: gcc -c -g -O2 conftest.c >&5
|
187
|
-
configure:3371: $? = 0
|
188
|
-
configure:3371: result: yes
|
189
|
-
configure:3371: checking for unistd.h
|
190
|
-
configure:3371: gcc -c -g -O2 conftest.c >&5
|
191
|
-
configure:3371: $? = 0
|
192
|
-
configure:3371: result: yes
|
193
|
-
configure:3384: checking minix/config.h usability
|
194
|
-
configure:3384: gcc -c -g -O2 conftest.c >&5
|
195
|
-
conftest.c:52:10: fatal error: minix/config.h: No such file or directory
|
196
|
-
#include <minix/config.h>
|
197
|
-
^~~~~~~~~~~~~~~~
|
198
|
-
compilation terminated.
|
199
|
-
configure:3384: $? = 1
|
200
|
-
configure: failed program was:
|
201
|
-
| /* confdefs.h */
|
202
|
-
| #define PACKAGE_NAME "funchook"
|
203
|
-
| #define PACKAGE_TARNAME "funchook"
|
204
|
-
| #define PACKAGE_VERSION "0.1"
|
205
|
-
| #define PACKAGE_STRING "funchook 0.1"
|
206
|
-
| #define PACKAGE_BUGREPORT ""
|
207
|
-
| #define PACKAGE_URL ""
|
208
|
-
| #define STDC_HEADERS 1
|
209
|
-
| #define HAVE_SYS_TYPES_H 1
|
210
|
-
| #define HAVE_SYS_STAT_H 1
|
211
|
-
| #define HAVE_STDLIB_H 1
|
212
|
-
| #define HAVE_STRING_H 1
|
213
|
-
| #define HAVE_MEMORY_H 1
|
214
|
-
| #define HAVE_STRINGS_H 1
|
215
|
-
| #define HAVE_INTTYPES_H 1
|
216
|
-
| #define HAVE_STDINT_H 1
|
217
|
-
| #define HAVE_UNISTD_H 1
|
218
|
-
| /* end confdefs.h. */
|
219
|
-
| #include <stdio.h>
|
220
|
-
| #ifdef HAVE_SYS_TYPES_H
|
221
|
-
| # include <sys/types.h>
|
222
|
-
| #endif
|
223
|
-
| #ifdef HAVE_SYS_STAT_H
|
224
|
-
| # include <sys/stat.h>
|
225
|
-
| #endif
|
226
|
-
| #ifdef STDC_HEADERS
|
227
|
-
| # include <stdlib.h>
|
228
|
-
| # include <stddef.h>
|
229
|
-
| #else
|
230
|
-
| # ifdef HAVE_STDLIB_H
|
231
|
-
| # include <stdlib.h>
|
232
|
-
| # endif
|
233
|
-
| #endif
|
234
|
-
| #ifdef HAVE_STRING_H
|
235
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
236
|
-
| # include <memory.h>
|
237
|
-
| # endif
|
238
|
-
| # include <string.h>
|
239
|
-
| #endif
|
240
|
-
| #ifdef HAVE_STRINGS_H
|
241
|
-
| # include <strings.h>
|
242
|
-
| #endif
|
243
|
-
| #ifdef HAVE_INTTYPES_H
|
244
|
-
| # include <inttypes.h>
|
245
|
-
| #endif
|
246
|
-
| #ifdef HAVE_STDINT_H
|
247
|
-
| # include <stdint.h>
|
248
|
-
| #endif
|
249
|
-
| #ifdef HAVE_UNISTD_H
|
250
|
-
| # include <unistd.h>
|
251
|
-
| #endif
|
252
|
-
| #include <minix/config.h>
|
253
|
-
configure:3384: result: no
|
254
|
-
configure:3384: checking minix/config.h presence
|
255
|
-
configure:3384: gcc -E conftest.c
|
256
|
-
conftest.c:19:10: fatal error: minix/config.h: No such file or directory
|
257
|
-
#include <minix/config.h>
|
258
|
-
^~~~~~~~~~~~~~~~
|
259
|
-
compilation terminated.
|
260
|
-
configure:3384: $? = 1
|
261
|
-
configure: failed program was:
|
262
|
-
| /* confdefs.h */
|
263
|
-
| #define PACKAGE_NAME "funchook"
|
264
|
-
| #define PACKAGE_TARNAME "funchook"
|
265
|
-
| #define PACKAGE_VERSION "0.1"
|
266
|
-
| #define PACKAGE_STRING "funchook 0.1"
|
267
|
-
| #define PACKAGE_BUGREPORT ""
|
268
|
-
| #define PACKAGE_URL ""
|
269
|
-
| #define STDC_HEADERS 1
|
270
|
-
| #define HAVE_SYS_TYPES_H 1
|
271
|
-
| #define HAVE_SYS_STAT_H 1
|
272
|
-
| #define HAVE_STDLIB_H 1
|
273
|
-
| #define HAVE_STRING_H 1
|
274
|
-
| #define HAVE_MEMORY_H 1
|
275
|
-
| #define HAVE_STRINGS_H 1
|
276
|
-
| #define HAVE_INTTYPES_H 1
|
277
|
-
| #define HAVE_STDINT_H 1
|
278
|
-
| #define HAVE_UNISTD_H 1
|
279
|
-
| /* end confdefs.h. */
|
280
|
-
| #include <minix/config.h>
|
281
|
-
configure:3384: result: no
|
282
|
-
configure:3384: checking for minix/config.h
|
283
|
-
configure:3384: result: no
|
284
|
-
configure:3405: checking whether it is safe to define __EXTENSIONS__
|
285
|
-
configure:3423: gcc -c -g -O2 conftest.c >&5
|
286
|
-
configure:3423: $? = 0
|
287
|
-
configure:3430: result: yes
|
288
|
-
configure:3478: checking build system type
|
289
|
-
configure:3492: result: x86_64-unknown-linux-gnu
|
290
|
-
configure:3512: checking host system type
|
291
|
-
configure:3525: result: x86_64-unknown-linux-gnu
|
292
|
-
configure:3554: checking size of void*
|
293
|
-
configure:3559: gcc -o conftest -g -O2 -Wall -fvisibility=hidden conftest.c >&5
|
294
|
-
configure:3559: $? = 0
|
295
|
-
configure:3559: ./conftest
|
296
|
-
configure:3559: $? = 0
|
297
|
-
configure:3573: result: 8
|
298
|
-
configure:3617: checking whether _sys_nerr is declared
|
299
|
-
configure:3617: gcc -c -g -O2 -Wall -fvisibility=hidden conftest.c >&5
|
300
|
-
configure:3617: $? = 0
|
301
|
-
configure:3617: result: yes
|
302
|
-
configure:3627: checking whether _sys_errlist is declared
|
303
|
-
configure:3627: gcc -c -g -O2 -Wall -fvisibility=hidden conftest.c >&5
|
304
|
-
configure:3627: $? = 0
|
305
|
-
configure:3627: result: yes
|
306
|
-
configure:3637: checking whether sys_nerr is declared
|
307
|
-
configure:3637: gcc -c -g -O2 -Wall -fvisibility=hidden conftest.c >&5
|
308
|
-
configure:3637: $? = 0
|
309
|
-
configure:3637: result: yes
|
310
|
-
configure:3647: checking whether sys_errlist is declared
|
311
|
-
configure:3647: gcc -c -g -O2 -Wall -fvisibility=hidden conftest.c >&5
|
312
|
-
configure:3647: $? = 0
|
313
|
-
configure:3647: result: yes
|
314
|
-
configure:3778: creating ./config.status
|
315
|
-
|
316
|
-
## ---------------------- ##
|
317
|
-
## Running config.status. ##
|
318
|
-
## ---------------------- ##
|
319
|
-
|
320
|
-
This file was extended by funchook config.status 0.1, which was
|
321
|
-
generated by GNU Autoconf 2.69. Invocation command line was
|
322
|
-
|
323
|
-
CONFIG_FILES =
|
324
|
-
CONFIG_HEADERS =
|
325
|
-
CONFIG_LINKS =
|
326
|
-
CONFIG_COMMANDS =
|
327
|
-
$ ./config.status
|
328
|
-
|
329
|
-
on a193cfcc-bb72-46e9-914d-bb7806a0d5f9-k7pzb
|
330
|
-
|
331
|
-
config.status:822: creating Makefile
|
332
|
-
config.status:822: creating src/Makefile
|
333
|
-
config.status:822: creating test/Makefile
|
334
|
-
config.status:822: creating src/config.h
|
335
|
-
|
336
|
-
## ---------------- ##
|
337
|
-
## Cache variables. ##
|
338
|
-
## ---------------- ##
|
339
|
-
|
340
|
-
ac_cv_build=x86_64-unknown-linux-gnu
|
341
|
-
ac_cv_c_compiler_gnu=yes
|
342
|
-
ac_cv_env_CC_set=
|
343
|
-
ac_cv_env_CC_value=
|
344
|
-
ac_cv_env_CFLAGS_set=
|
345
|
-
ac_cv_env_CFLAGS_value=
|
346
|
-
ac_cv_env_CPPFLAGS_set=
|
347
|
-
ac_cv_env_CPPFLAGS_value=
|
348
|
-
ac_cv_env_CPP_set=
|
349
|
-
ac_cv_env_CPP_value=
|
350
|
-
ac_cv_env_LDFLAGS_set=
|
351
|
-
ac_cv_env_LDFLAGS_value=
|
352
|
-
ac_cv_env_LIBS_set=
|
353
|
-
ac_cv_env_LIBS_value=
|
354
|
-
ac_cv_env_build_alias_set=
|
355
|
-
ac_cv_env_build_alias_value=
|
356
|
-
ac_cv_env_host_alias_set=
|
357
|
-
ac_cv_env_host_alias_value=
|
358
|
-
ac_cv_env_target_alias_set=
|
359
|
-
ac_cv_env_target_alias_value=
|
360
|
-
ac_cv_have_decl__sys_errlist=yes
|
361
|
-
ac_cv_have_decl__sys_nerr=yes
|
362
|
-
ac_cv_have_decl_sys_errlist=yes
|
363
|
-
ac_cv_have_decl_sys_nerr=yes
|
364
|
-
ac_cv_header_inttypes_h=yes
|
365
|
-
ac_cv_header_memory_h=yes
|
366
|
-
ac_cv_header_minix_config_h=no
|
367
|
-
ac_cv_header_stdc=yes
|
368
|
-
ac_cv_header_stdint_h=yes
|
369
|
-
ac_cv_header_stdlib_h=yes
|
370
|
-
ac_cv_header_string_h=yes
|
371
|
-
ac_cv_header_strings_h=yes
|
372
|
-
ac_cv_header_sys_stat_h=yes
|
373
|
-
ac_cv_header_sys_types_h=yes
|
374
|
-
ac_cv_header_unistd_h=yes
|
375
|
-
ac_cv_host=x86_64-unknown-linux-gnu
|
376
|
-
ac_cv_objext=o
|
377
|
-
ac_cv_path_EGREP='/bin/grep -E'
|
378
|
-
ac_cv_path_GREP=/bin/grep
|
379
|
-
ac_cv_prog_CPP='gcc -E'
|
380
|
-
ac_cv_prog_ac_ct_CC=gcc
|
381
|
-
ac_cv_prog_cc_c89=
|
382
|
-
ac_cv_prog_cc_g=yes
|
383
|
-
ac_cv_safe_to_define___extensions__=yes
|
384
|
-
ac_cv_sizeof_voidp=8
|
385
|
-
|
386
|
-
## ----------------- ##
|
387
|
-
## Output variables. ##
|
388
|
-
## ----------------- ##
|
389
|
-
|
390
|
-
CC='gcc'
|
391
|
-
CFLAGS='-g -O2 -Wall -fvisibility=hidden'
|
392
|
-
CPP='gcc -E'
|
393
|
-
CPPFLAGS=''
|
394
|
-
DEFS='-DHAVE_CONFIG_H'
|
395
|
-
ECHO_C=''
|
396
|
-
ECHO_N='-n'
|
397
|
-
ECHO_T=''
|
398
|
-
EGREP='/bin/grep -E'
|
399
|
-
EXEEXT=''
|
400
|
-
FUNCHOOK_CPU='x86_64'
|
401
|
-
FUNCHOOK_OS='unix'
|
402
|
-
GREP='/bin/grep'
|
403
|
-
IF_LINUX=''
|
404
|
-
IF_OSX='#'
|
405
|
-
IF_WIN32='#'
|
406
|
-
LDFLAGS=''
|
407
|
-
LIBFUNCHOOK_SO='libfunchook.so'
|
408
|
-
LIBOBJS=''
|
409
|
-
LIBS='-ldl'
|
410
|
-
LINK_SHARED='$(CC) -shared'
|
411
|
-
LTLIBOBJS=''
|
412
|
-
OBJEXT='o'
|
413
|
-
PACKAGE_BUGREPORT=''
|
414
|
-
PACKAGE_NAME='funchook'
|
415
|
-
PACKAGE_STRING='funchook 0.1'
|
416
|
-
PACKAGE_TARNAME='funchook'
|
417
|
-
PACKAGE_URL=''
|
418
|
-
PACKAGE_VERSION='0.1'
|
419
|
-
PATH_SEPARATOR=':'
|
420
|
-
PIC_CFLAGS='-fPIC'
|
421
|
-
SHELL='/bin/bash'
|
422
|
-
ac_ct_CC='gcc'
|
423
|
-
bindir='${exec_prefix}/bin'
|
424
|
-
build='x86_64-unknown-linux-gnu'
|
425
|
-
build_alias=''
|
426
|
-
build_cpu='x86_64'
|
427
|
-
build_os='linux-gnu'
|
428
|
-
build_vendor='unknown'
|
429
|
-
datadir='${datarootdir}'
|
430
|
-
datarootdir='${prefix}/share'
|
431
|
-
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
|
432
|
-
dvidir='${docdir}'
|
433
|
-
exec_prefix='${prefix}'
|
434
|
-
host='x86_64-unknown-linux-gnu'
|
435
|
-
host_alias=''
|
436
|
-
host_cpu='x86_64'
|
437
|
-
host_os='linux-gnu'
|
438
|
-
host_vendor='unknown'
|
439
|
-
htmldir='${docdir}'
|
440
|
-
includedir='${prefix}/include'
|
441
|
-
infodir='${datarootdir}/info'
|
442
|
-
libdir='${exec_prefix}/lib'
|
443
|
-
libexecdir='${exec_prefix}/libexec'
|
444
|
-
localedir='${datarootdir}/locale'
|
445
|
-
localstatedir='${prefix}/var'
|
446
|
-
mandir='${datarootdir}/man'
|
447
|
-
oldincludedir='/usr/include'
|
448
|
-
pdfdir='${docdir}'
|
449
|
-
prefix='/usr/local'
|
450
|
-
program_transform_name='s,x,x,'
|
451
|
-
psdir='${docdir}'
|
452
|
-
runstatedir='${localstatedir}/run'
|
453
|
-
sbindir='${exec_prefix}/sbin'
|
454
|
-
sharedstatedir='${prefix}/com'
|
455
|
-
sysconfdir='${prefix}/etc'
|
456
|
-
target_alias=''
|
457
|
-
|
458
|
-
## ----------- ##
|
459
|
-
## confdefs.h. ##
|
460
|
-
## ----------- ##
|
461
|
-
|
462
|
-
/* confdefs.h */
|
463
|
-
#define PACKAGE_NAME "funchook"
|
464
|
-
#define PACKAGE_TARNAME "funchook"
|
465
|
-
#define PACKAGE_VERSION "0.1"
|
466
|
-
#define PACKAGE_STRING "funchook 0.1"
|
467
|
-
#define PACKAGE_BUGREPORT ""
|
468
|
-
#define PACKAGE_URL ""
|
469
|
-
#define STDC_HEADERS 1
|
470
|
-
#define HAVE_SYS_TYPES_H 1
|
471
|
-
#define HAVE_SYS_STAT_H 1
|
472
|
-
#define HAVE_STDLIB_H 1
|
473
|
-
#define HAVE_STRING_H 1
|
474
|
-
#define HAVE_MEMORY_H 1
|
475
|
-
#define HAVE_STRINGS_H 1
|
476
|
-
#define HAVE_INTTYPES_H 1
|
477
|
-
#define HAVE_STDINT_H 1
|
478
|
-
#define HAVE_UNISTD_H 1
|
479
|
-
#define __EXTENSIONS__ 1
|
480
|
-
#define _ALL_SOURCE 1
|
481
|
-
#define _GNU_SOURCE 1
|
482
|
-
#define _POSIX_PTHREAD_SEMANTICS 1
|
483
|
-
#define _TANDEM_SOURCE 1
|
484
|
-
#define SIZEOF_VOIDP 8
|
485
|
-
#define HAVE_DECL__SYS_NERR 1
|
486
|
-
#define HAVE_DECL__SYS_ERRLIST 1
|
487
|
-
#define HAVE_DECL_SYS_NERR 1
|
488
|
-
#define HAVE_DECL_SYS_ERRLIST 1
|
489
|
-
|
490
|
-
configure: exit 0
|