contrast-agent 3.12.2 → 3.13.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/ext/build_funchook.rb +0 -2
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +2 -8
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +0 -1
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +1 -6
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +1 -5
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +0 -1
- data/ext/cs__common/cs__common.c +24 -0
- data/ext/cs__common/cs__common.h +3 -0
- data/ext/cs__common/extconf.rb +0 -14
- data/ext/extconf_common.rb +0 -28
- data/lib/contrast.rb +3 -1
- data/lib/contrast/agent.rb +14 -2
- data/lib/contrast/agent/assess/contrast_event.rb +28 -167
- data/lib/contrast/agent/assess/events/source_event.rb +3 -7
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +1 -1
- data/lib/contrast/agent/assess/policy/policy_node.rb +4 -98
- data/lib/contrast/agent/assess/policy/propagation_method.rb +1 -2
- data/lib/contrast/agent/assess/policy/propagation_node.rb +5 -1
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +1 -4
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +9 -1
- 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 +2 -2
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +4 -4
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +6 -10
- data/lib/contrast/agent/assess/policy/source_method.rb +1 -2
- data/lib/contrast/agent/assess/policy/trigger_method.rb +1 -9
- data/lib/contrast/agent/assess/policy/trigger_node.rb +16 -4
- data/lib/contrast/agent/assess/properties.rb +4 -382
- 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/provider/hardcoded_value_rule.rb +2 -20
- data/lib/contrast/agent/assess/tag.rb +27 -12
- data/lib/contrast/agent/at_exit_hook.rb +3 -1
- data/lib/contrast/agent/exclusion_matcher.rb +2 -2
- data/lib/contrast/agent/inventory/policy/datastores.rb +0 -1
- data/lib/contrast/agent/middleware.rb +2 -14
- data/lib/contrast/agent/patching/policy/patch.rb +1 -1
- data/lib/contrast/agent/patching/policy/policy.rb +3 -3
- data/lib/contrast/agent/patching/policy/policy_node.rb +2 -2
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +2 -2
- data/lib/contrast/agent/protect/rule/base.rb +19 -31
- data/lib/contrast/agent/protect/rule/base_service.rb +1 -1
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +2 -7
- data/lib/contrast/agent/protect/rule/xxe.rb +1 -0
- data/lib/contrast/agent/reaction_processor.rb +3 -3
- data/lib/contrast/agent/request.rb +92 -331
- data/lib/contrast/agent/request_context.rb +15 -15
- data/lib/contrast/agent/request_handler.rb +1 -1
- data/lib/contrast/agent/response.rb +2 -14
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +7 -9
- data/lib/contrast/agent/static_analysis.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +49 -0
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent/worker_thread.rb +24 -0
- data/lib/contrast/api.rb +3 -5
- 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} +9 -18
- 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 +10 -0
- data/lib/contrast/api/decorators/address.rb +60 -0
- data/lib/contrast/api/decorators/application_settings.rb +7 -3
- data/lib/contrast/api/decorators/application_update.rb +0 -9
- data/lib/contrast/api/decorators/http_request.rb +139 -0
- data/lib/contrast/api/decorators/message.rb +75 -0
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +28 -0
- data/lib/contrast/api/decorators/route_coverage.rb +57 -0
- data/lib/contrast/api/decorators/trace_event.rb +99 -0
- data/lib/contrast/api/decorators/trace_event_object.rb +57 -0
- data/lib/contrast/api/decorators/trace_event_signature.rb +46 -0
- data/lib/contrast/api/decorators/trace_taint_range.rb +51 -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/components/app_context.rb +0 -7
- data/lib/contrast/components/config.rb +4 -9
- data/lib/contrast/components/interface.rb +1 -1
- data/lib/contrast/components/settings.rb +0 -6
- data/lib/contrast/extension/assess.rb +0 -1
- data/lib/contrast/extension/assess/assess_extension.rb +1 -2
- data/lib/contrast/extension/assess/fiber.rb +1 -1
- data/lib/contrast/extension/assess/string.rb +1 -1
- data/lib/contrast/extension/inventory.rb +0 -1
- data/lib/contrast/framework/base_support.rb +0 -23
- data/lib/contrast/framework/manager.rb +0 -9
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -3
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +3 -4
- data/lib/contrast/framework/rails/support.rb +3 -32
- data/lib/contrast/framework/sinatra/patch/base.rb +1 -1
- data/lib/contrast/framework/sinatra/support.rb +11 -22
- data/lib/contrast/funchook/funchook.rb +45 -0
- data/lib/contrast/logger/application.rb +1 -1
- data/lib/contrast/logger/format.rb +51 -0
- data/lib/contrast/logger/log.rb +8 -2
- data/lib/contrast/utils/assess/tracking_util.rb +45 -20
- data/lib/contrast/utils/hash_digest.rb +11 -2
- data/lib/contrast/utils/invalid_configuration_util.rb +1 -17
- data/lib/contrast/utils/inventory_util.rb +2 -7
- data/lib/contrast/utils/object_share.rb +0 -1
- data/lib/contrast/utils/os.rb +16 -4
- data/lib/contrast/utils/stack_trace_utils.rb +0 -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/ruby-agent.gemspec +4 -4
- metadata +48 -72
- data/funchook/Makefile +0 -29
- data/funchook/autom4te.cache/output.0 +0 -4964
- data/funchook/autom4te.cache/requests +0 -77
- data/funchook/autom4te.cache/traces.0 +0 -361
- data/funchook/config.log +0 -651
- data/funchook/config.status +0 -1015
- data/funchook/configure +0 -4964
- 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.dylib +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/libfunchook_test.so.dSYM/Contents/Info.plist +0 -20
- data/funchook/test/libfunchook_test.so.dSYM/Contents/Resources/DWARF/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/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,77 +0,0 @@
|
|
1
|
-
# This file was generated.
|
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/local/Cellar/autoconf/2.69/share/autoconf'
|
11
|
-
],
|
12
|
-
[
|
13
|
-
'/usr/local/Cellar/autoconf/2.69/share/autoconf/autoconf/autoconf.m4f',
|
14
|
-
'configure.ac'
|
15
|
-
],
|
16
|
-
{
|
17
|
-
'AC_SUBST' => 1,
|
18
|
-
'LT_INIT' => 1,
|
19
|
-
'include' => 1,
|
20
|
-
'AM_MAINTAINER_MODE' => 1,
|
21
|
-
'm4_pattern_allow' => 1,
|
22
|
-
'_AM_MAKEFILE_INCLUDE' => 1,
|
23
|
-
'AM_SILENT_RULES' => 1,
|
24
|
-
'AM_CONDITIONAL' => 1,
|
25
|
-
'LT_CONFIG_LTDL_DIR' => 1,
|
26
|
-
'AM_PROG_F77_C_O' => 1,
|
27
|
-
'sinclude' => 1,
|
28
|
-
'AM_PROG_MOC' => 1,
|
29
|
-
'm4_sinclude' => 1,
|
30
|
-
'AC_FC_SRCEXT' => 1,
|
31
|
-
'_AM_COND_ENDIF' => 1,
|
32
|
-
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
33
|
-
'LT_SUPPORTED_TAG' => 1,
|
34
|
-
'AC_CONFIG_AUX_DIR' => 1,
|
35
|
-
'AM_MAKEFILE_INCLUDE' => 1,
|
36
|
-
'AM_PROG_CC_C_O' => 1,
|
37
|
-
'AM_POT_TOOLS' => 1,
|
38
|
-
'AM_GNU_GETTEXT' => 1,
|
39
|
-
'AH_OUTPUT' => 1,
|
40
|
-
'AC_SUBST_TRACE' => 1,
|
41
|
-
'AM_NLS' => 1,
|
42
|
-
'_AM_SUBST_NOTMAKE' => 1,
|
43
|
-
'm4_include' => 1,
|
44
|
-
'AM_PROG_AR' => 1,
|
45
|
-
'AC_FC_PP_DEFINE' => 1,
|
46
|
-
'AC_CANONICAL_SYSTEM' => 1,
|
47
|
-
'AM_XGETTEXT_OPTION' => 1,
|
48
|
-
'AC_LIBSOURCE' => 1,
|
49
|
-
'_AM_COND_ELSE' => 1,
|
50
|
-
'AM_AUTOMAKE_VERSION' => 1,
|
51
|
-
'AC_PROG_LIBTOOL' => 1,
|
52
|
-
'AC_CONFIG_SUBDIRS' => 1,
|
53
|
-
'AC_CANONICAL_HOST' => 1,
|
54
|
-
'AC_CONFIG_FILES' => 1,
|
55
|
-
'AC_CONFIG_HEADERS' => 1,
|
56
|
-
'AC_CONFIG_LINKS' => 1,
|
57
|
-
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
58
|
-
'AC_CANONICAL_BUILD' => 1,
|
59
|
-
'_m4_warn' => 1,
|
60
|
-
'AC_INIT' => 1,
|
61
|
-
'AM_INIT_AUTOMAKE' => 1,
|
62
|
-
'AC_FC_PP_SRCEXT' => 1,
|
63
|
-
'AM_PROG_FC_C_O' => 1,
|
64
|
-
'AC_CANONICAL_TARGET' => 1,
|
65
|
-
'AC_DEFINE_TRACE_LITERAL' => 1,
|
66
|
-
'AM_PROG_CXX_C_O' => 1,
|
67
|
-
'_LT_AC_TAGCONFIG' => 1,
|
68
|
-
'_AM_COND_IF' => 1,
|
69
|
-
'AM_PATH_GUILE' => 1,
|
70
|
-
'AC_FC_FREEFORM' => 1,
|
71
|
-
'm4_pattern_forbid' => 1,
|
72
|
-
'AC_REQUIRE_AUX_FILE' => 1,
|
73
|
-
'AM_ENABLE_MULTILIB' => 1
|
74
|
-
}
|
75
|
-
], 'Autom4te::Request' )
|
76
|
-
);
|
77
|
-
|
@@ -1,361 +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([includedir], ['${prefix}/include'])
|
67
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([includedir])
|
68
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^includedir$])
|
69
|
-
m4trace:configure.ac:1: -1- AC_SUBST([oldincludedir], ['/usr/include'])
|
70
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([oldincludedir])
|
71
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^oldincludedir$])
|
72
|
-
m4trace:configure.ac:1: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
|
73
|
-
['${datarootdir}/doc/${PACKAGE_TARNAME}'],
|
74
|
-
['${datarootdir}/doc/${PACKAGE}'])])
|
75
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([docdir])
|
76
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^docdir$])
|
77
|
-
m4trace:configure.ac:1: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
|
78
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([infodir])
|
79
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^infodir$])
|
80
|
-
m4trace:configure.ac:1: -1- AC_SUBST([htmldir], ['${docdir}'])
|
81
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([htmldir])
|
82
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^htmldir$])
|
83
|
-
m4trace:configure.ac:1: -1- AC_SUBST([dvidir], ['${docdir}'])
|
84
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([dvidir])
|
85
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^dvidir$])
|
86
|
-
m4trace:configure.ac:1: -1- AC_SUBST([pdfdir], ['${docdir}'])
|
87
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([pdfdir])
|
88
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^pdfdir$])
|
89
|
-
m4trace:configure.ac:1: -1- AC_SUBST([psdir], ['${docdir}'])
|
90
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([psdir])
|
91
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^psdir$])
|
92
|
-
m4trace:configure.ac:1: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
|
93
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([libdir])
|
94
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^libdir$])
|
95
|
-
m4trace:configure.ac:1: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
|
96
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([localedir])
|
97
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^localedir$])
|
98
|
-
m4trace:configure.ac:1: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
|
99
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([mandir])
|
100
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^mandir$])
|
101
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
|
102
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
103
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
|
104
|
-
@%:@undef PACKAGE_NAME])
|
105
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
|
106
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
107
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
|
108
|
-
@%:@undef PACKAGE_TARNAME])
|
109
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
|
110
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
111
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
|
112
|
-
@%:@undef PACKAGE_VERSION])
|
113
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
|
114
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
115
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
|
116
|
-
@%:@undef PACKAGE_STRING])
|
117
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
|
118
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
119
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
|
120
|
-
@%:@undef PACKAGE_BUGREPORT])
|
121
|
-
m4trace:configure.ac:1: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL])
|
122
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^PACKAGE_URL$])
|
123
|
-
m4trace:configure.ac:1: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */
|
124
|
-
@%:@undef PACKAGE_URL])
|
125
|
-
m4trace:configure.ac:1: -1- AC_SUBST([DEFS])
|
126
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([DEFS])
|
127
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^DEFS$])
|
128
|
-
m4trace:configure.ac:1: -1- AC_SUBST([ECHO_C])
|
129
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_C])
|
130
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_C$])
|
131
|
-
m4trace:configure.ac:1: -1- AC_SUBST([ECHO_N])
|
132
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_N])
|
133
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_N$])
|
134
|
-
m4trace:configure.ac:1: -1- AC_SUBST([ECHO_T])
|
135
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([ECHO_T])
|
136
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^ECHO_T$])
|
137
|
-
m4trace:configure.ac:1: -1- AC_SUBST([LIBS])
|
138
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([LIBS])
|
139
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^LIBS$])
|
140
|
-
m4trace:configure.ac:1: -1- AC_SUBST([build_alias])
|
141
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([build_alias])
|
142
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^build_alias$])
|
143
|
-
m4trace:configure.ac:1: -1- AC_SUBST([host_alias])
|
144
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([host_alias])
|
145
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^host_alias$])
|
146
|
-
m4trace:configure.ac:1: -1- AC_SUBST([target_alias])
|
147
|
-
m4trace:configure.ac:1: -1- AC_SUBST_TRACE([target_alias])
|
148
|
-
m4trace:configure.ac:1: -1- m4_pattern_allow([^target_alias$])
|
149
|
-
m4trace:configure.ac:3: -1- AC_SUBST([CC])
|
150
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
|
151
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
|
152
|
-
m4trace:configure.ac:3: -1- AC_SUBST([CFLAGS])
|
153
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CFLAGS])
|
154
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^CFLAGS$])
|
155
|
-
m4trace:configure.ac:3: -1- AC_SUBST([LDFLAGS])
|
156
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([LDFLAGS])
|
157
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^LDFLAGS$])
|
158
|
-
m4trace:configure.ac:3: -1- AC_SUBST([LIBS])
|
159
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([LIBS])
|
160
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^LIBS$])
|
161
|
-
m4trace:configure.ac:3: -1- AC_SUBST([CPPFLAGS])
|
162
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CPPFLAGS])
|
163
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^CPPFLAGS$])
|
164
|
-
m4trace:configure.ac:3: -1- AC_SUBST([CC])
|
165
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([CC])
|
166
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^CC$])
|
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([ac_ct_CC])
|
177
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([ac_ct_CC])
|
178
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^ac_ct_CC$])
|
179
|
-
m4trace:configure.ac:3: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
|
180
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([EXEEXT])
|
181
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^EXEEXT$])
|
182
|
-
m4trace:configure.ac:3: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
|
183
|
-
m4trace:configure.ac:3: -1- AC_SUBST_TRACE([OBJEXT])
|
184
|
-
m4trace:configure.ac:3: -1- m4_pattern_allow([^OBJEXT$])
|
185
|
-
m4trace:configure.ac:4: -1- _m4_warn([obsolete], [The macro `AC_GNU_SOURCE' is obsolete.
|
186
|
-
You should run autoupdate.], [../../lib/autoconf/specific.m4:314: AC_GNU_SOURCE is expanded from...
|
187
|
-
configure.ac:4: the top level])
|
188
|
-
m4trace:configure.ac:4: -1- AC_SUBST([CPP])
|
189
|
-
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CPP])
|
190
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^CPP$])
|
191
|
-
m4trace:configure.ac:4: -1- AC_SUBST([CPPFLAGS])
|
192
|
-
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CPPFLAGS])
|
193
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^CPPFLAGS$])
|
194
|
-
m4trace:configure.ac:4: -1- AC_SUBST([CPP])
|
195
|
-
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([CPP])
|
196
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^CPP$])
|
197
|
-
m4trace:configure.ac:4: -1- AC_SUBST([GREP])
|
198
|
-
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([GREP])
|
199
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^GREP$])
|
200
|
-
m4trace:configure.ac:4: -1- AC_SUBST([EGREP])
|
201
|
-
m4trace:configure.ac:4: -1- AC_SUBST_TRACE([EGREP])
|
202
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^EGREP$])
|
203
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
|
204
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^STDC_HEADERS$])
|
205
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
|
206
|
-
@%:@undef STDC_HEADERS])
|
207
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
|
208
|
-
@%:@undef HAVE_SYS_TYPES_H])
|
209
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
|
210
|
-
@%:@undef HAVE_SYS_STAT_H])
|
211
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
|
212
|
-
@%:@undef HAVE_STDLIB_H])
|
213
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
|
214
|
-
@%:@undef HAVE_STRING_H])
|
215
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
|
216
|
-
@%:@undef HAVE_MEMORY_H])
|
217
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
|
218
|
-
@%:@undef HAVE_STRINGS_H])
|
219
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
|
220
|
-
@%:@undef HAVE_INTTYPES_H])
|
221
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
|
222
|
-
@%:@undef HAVE_STDINT_H])
|
223
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
|
224
|
-
@%:@undef HAVE_UNISTD_H])
|
225
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_SOURCE])
|
226
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_POSIX_SOURCE$])
|
227
|
-
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. */
|
228
|
-
@%:@undef _POSIX_SOURCE])
|
229
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_1_SOURCE])
|
230
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_POSIX_1_SOURCE$])
|
231
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([_POSIX_1_SOURCE], [/* Define to 2 if the system does not provide POSIX.1 features except with
|
232
|
-
this defined. */
|
233
|
-
@%:@undef _POSIX_1_SOURCE])
|
234
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_MINIX])
|
235
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_MINIX$])
|
236
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([_MINIX], [/* Define to 1 if on MINIX. */
|
237
|
-
@%:@undef _MINIX])
|
238
|
-
m4trace:configure.ac:4: -1- AH_OUTPUT([USE_SYSTEM_EXTENSIONS], [/* Enable extensions on AIX 3, Interix. */
|
239
|
-
#ifndef _ALL_SOURCE
|
240
|
-
# undef _ALL_SOURCE
|
241
|
-
#endif
|
242
|
-
/* Enable GNU extensions on systems that have them. */
|
243
|
-
#ifndef _GNU_SOURCE
|
244
|
-
# undef _GNU_SOURCE
|
245
|
-
#endif
|
246
|
-
/* Enable threading extensions on Solaris. */
|
247
|
-
#ifndef _POSIX_PTHREAD_SEMANTICS
|
248
|
-
# undef _POSIX_PTHREAD_SEMANTICS
|
249
|
-
#endif
|
250
|
-
/* Enable extensions on HP NonStop. */
|
251
|
-
#ifndef _TANDEM_SOURCE
|
252
|
-
# undef _TANDEM_SOURCE
|
253
|
-
#endif
|
254
|
-
/* Enable general extensions on Solaris. */
|
255
|
-
#ifndef __EXTENSIONS__
|
256
|
-
# undef __EXTENSIONS__
|
257
|
-
#endif
|
258
|
-
])
|
259
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([__EXTENSIONS__])
|
260
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^__EXTENSIONS__$])
|
261
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_ALL_SOURCE])
|
262
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_ALL_SOURCE$])
|
263
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_GNU_SOURCE])
|
264
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_GNU_SOURCE$])
|
265
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_PTHREAD_SEMANTICS])
|
266
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_POSIX_PTHREAD_SEMANTICS$])
|
267
|
-
m4trace:configure.ac:4: -1- AC_DEFINE_TRACE_LITERAL([_TANDEM_SOURCE])
|
268
|
-
m4trace:configure.ac:4: -1- m4_pattern_allow([^_TANDEM_SOURCE$])
|
269
|
-
m4trace:configure.ac:5: -1- AC_CANONICAL_HOST
|
270
|
-
m4trace:configure.ac:5: -1- AC_CANONICAL_BUILD
|
271
|
-
m4trace:configure.ac:5: -1- AC_REQUIRE_AUX_FILE([config.sub])
|
272
|
-
m4trace:configure.ac:5: -1- AC_REQUIRE_AUX_FILE([config.guess])
|
273
|
-
m4trace:configure.ac:5: -1- AC_SUBST([build], [$ac_cv_build])
|
274
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([build])
|
275
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^build$])
|
276
|
-
m4trace:configure.ac:5: -1- AC_SUBST([build_cpu], [$[1]])
|
277
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([build_cpu])
|
278
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^build_cpu$])
|
279
|
-
m4trace:configure.ac:5: -1- AC_SUBST([build_vendor], [$[2]])
|
280
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([build_vendor])
|
281
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^build_vendor$])
|
282
|
-
m4trace:configure.ac:5: -1- AC_SUBST([build_os])
|
283
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([build_os])
|
284
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^build_os$])
|
285
|
-
m4trace:configure.ac:5: -1- AC_SUBST([host], [$ac_cv_host])
|
286
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([host])
|
287
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^host$])
|
288
|
-
m4trace:configure.ac:5: -1- AC_SUBST([host_cpu], [$[1]])
|
289
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([host_cpu])
|
290
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^host_cpu$])
|
291
|
-
m4trace:configure.ac:5: -1- AC_SUBST([host_vendor], [$[2]])
|
292
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([host_vendor])
|
293
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^host_vendor$])
|
294
|
-
m4trace:configure.ac:5: -1- AC_SUBST([host_os])
|
295
|
-
m4trace:configure.ac:5: -1- AC_SUBST_TRACE([host_os])
|
296
|
-
m4trace:configure.ac:5: -1- m4_pattern_allow([^host_os$])
|
297
|
-
m4trace:configure.ac:11: -1- AC_DEFINE_TRACE_LITERAL([SIZEOF_VOIDP])
|
298
|
-
m4trace:configure.ac:11: -1- m4_pattern_allow([^SIZEOF_VOIDP$])
|
299
|
-
m4trace:configure.ac:11: -1- AH_OUTPUT([SIZEOF_VOIDP], [/* The size of `void*\', as computed by sizeof. */
|
300
|
-
@%:@undef SIZEOF_VOIDP])
|
301
|
-
m4trace:configure.ac:17: -1- AC_SUBST([FUNCHOOK_CPU])
|
302
|
-
m4trace:configure.ac:17: -1- AC_SUBST_TRACE([FUNCHOOK_CPU])
|
303
|
-
m4trace:configure.ac:17: -1- m4_pattern_allow([^FUNCHOOK_CPU$])
|
304
|
-
m4trace:configure.ac:46: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL__SYS_NERR])
|
305
|
-
m4trace:configure.ac:46: -1- m4_pattern_allow([^HAVE_DECL__SYS_NERR$])
|
306
|
-
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
|
307
|
-
don\'t. */
|
308
|
-
@%:@undef HAVE_DECL__SYS_NERR])
|
309
|
-
m4trace:configure.ac:46: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL__SYS_ERRLIST])
|
310
|
-
m4trace:configure.ac:46: -1- m4_pattern_allow([^HAVE_DECL__SYS_ERRLIST$])
|
311
|
-
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
|
312
|
-
don\'t. */
|
313
|
-
@%:@undef HAVE_DECL__SYS_ERRLIST])
|
314
|
-
m4trace:configure.ac:46: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_SYS_NERR])
|
315
|
-
m4trace:configure.ac:46: -1- m4_pattern_allow([^HAVE_DECL_SYS_NERR$])
|
316
|
-
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
|
317
|
-
don\'t. */
|
318
|
-
@%:@undef HAVE_DECL_SYS_NERR])
|
319
|
-
m4trace:configure.ac:46: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DECL_SYS_ERRLIST])
|
320
|
-
m4trace:configure.ac:46: -1- m4_pattern_allow([^HAVE_DECL_SYS_ERRLIST$])
|
321
|
-
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
|
322
|
-
don\'t. */
|
323
|
-
@%:@undef HAVE_DECL_SYS_ERRLIST])
|
324
|
-
m4trace:configure.ac:48: -1- AC_SUBST([FUNCHOOK_OS])
|
325
|
-
m4trace:configure.ac:48: -1- AC_SUBST_TRACE([FUNCHOOK_OS])
|
326
|
-
m4trace:configure.ac:48: -1- m4_pattern_allow([^FUNCHOOK_OS$])
|
327
|
-
m4trace:configure.ac:49: -1- AC_SUBST([LIBFUNCHOOK_SO])
|
328
|
-
m4trace:configure.ac:49: -1- AC_SUBST_TRACE([LIBFUNCHOOK_SO])
|
329
|
-
m4trace:configure.ac:49: -1- m4_pattern_allow([^LIBFUNCHOOK_SO$])
|
330
|
-
m4trace:configure.ac:50: -1- AC_SUBST([LINK_SHARED])
|
331
|
-
m4trace:configure.ac:50: -1- AC_SUBST_TRACE([LINK_SHARED])
|
332
|
-
m4trace:configure.ac:50: -1- m4_pattern_allow([^LINK_SHARED$])
|
333
|
-
m4trace:configure.ac:51: -1- AC_SUBST([PIC_CFLAGS])
|
334
|
-
m4trace:configure.ac:51: -1- AC_SUBST_TRACE([PIC_CFLAGS])
|
335
|
-
m4trace:configure.ac:51: -1- m4_pattern_allow([^PIC_CFLAGS$])
|
336
|
-
m4trace:configure.ac:52: -1- AC_SUBST([IF_WIN32])
|
337
|
-
m4trace:configure.ac:52: -1- AC_SUBST_TRACE([IF_WIN32])
|
338
|
-
m4trace:configure.ac:52: -1- m4_pattern_allow([^IF_WIN32$])
|
339
|
-
m4trace:configure.ac:53: -1- AC_SUBST([IF_LINUX])
|
340
|
-
m4trace:configure.ac:53: -1- AC_SUBST_TRACE([IF_LINUX])
|
341
|
-
m4trace:configure.ac:53: -1- m4_pattern_allow([^IF_LINUX$])
|
342
|
-
m4trace:configure.ac:54: -1- AC_SUBST([IF_OSX])
|
343
|
-
m4trace:configure.ac:54: -1- AC_SUBST_TRACE([IF_OSX])
|
344
|
-
m4trace:configure.ac:54: -1- m4_pattern_allow([^IF_OSX$])
|
345
|
-
m4trace:configure.ac:56: -1- AC_CONFIG_HEADERS([src/config.h])
|
346
|
-
m4trace:configure.ac:58: -1- AC_CONFIG_FILES([Makefile src/Makefile test/Makefile])
|
347
|
-
m4trace:configure.ac:59: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
|
348
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
|
349
|
-
m4trace:configure.ac:59: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
350
|
-
m4trace:configure.ac:59: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
|
351
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([LTLIBOBJS])
|
352
|
-
m4trace:configure.ac:59: -1- m4_pattern_allow([^LTLIBOBJS$])
|
353
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([top_builddir])
|
354
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([top_build_prefix])
|
355
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([srcdir])
|
356
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([abs_srcdir])
|
357
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([top_srcdir])
|
358
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([abs_top_srcdir])
|
359
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([builddir])
|
360
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([abs_builddir])
|
361
|
-
m4trace:configure.ac:59: -1- AC_SUBST_TRACE([abs_top_builddir])
|
data/funchook/config.log
DELETED
@@ -1,651 +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 = donalds-mbp-2.lan
|
14
|
-
uname -m = x86_64
|
15
|
-
uname -r = 18.6.0
|
16
|
-
uname -s = Darwin
|
17
|
-
uname -v = Darwin Kernel Version 18.6.0: Thu Apr 25 23:16:27 PDT 2019; root:xnu-4903.261.4~2/RELEASE_X86_64
|
18
|
-
|
19
|
-
/usr/bin/uname -p = i386
|
20
|
-
/bin/uname -X = unknown
|
21
|
-
|
22
|
-
/bin/arch = unknown
|
23
|
-
/usr/bin/arch -k = unknown
|
24
|
-
/usr/convex/getsysinfo = unknown
|
25
|
-
/usr/bin/hostinfo = Mach kernel version:
|
26
|
-
Darwin Kernel Version 18.6.0: Thu Apr 25 23:16:27 PDT 2019; root:xnu-4903.261.4~2/RELEASE_X86_64
|
27
|
-
Kernel configured for up to 16 processors.
|
28
|
-
8 processors are physically available.
|
29
|
-
16 processors are logically available.
|
30
|
-
Processor type: x86_64h (Intel x86-64h Haswell)
|
31
|
-
Processors active: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
32
|
-
Primary memory available: 32.00 gigabytes
|
33
|
-
Default processor set: 466 tasks, 2706 threads, 16 processors
|
34
|
-
Load average: 5.07, Mach factor: 10.92
|
35
|
-
/bin/machine = unknown
|
36
|
-
/usr/bin/oslevel = unknown
|
37
|
-
/bin/universe = unknown
|
38
|
-
|
39
|
-
PATH: /Users/donaldpropst/.rvm/gems/ruby-2.6.6@agent/bin
|
40
|
-
PATH: /Users/donaldpropst/.rvm/gems/ruby-2.6.6@global/bin
|
41
|
-
PATH: /Users/donaldpropst/.rvm/rubies/ruby-2.6.6/bin
|
42
|
-
PATH: /Users/donaldpropst/.rvm/bin
|
43
|
-
PATH: /Users/donaldpropst/.yarn/bin
|
44
|
-
PATH: /Library/Frameworks/Python.framework/Versions/3.8/bin
|
45
|
-
PATH: /usr/local/bin
|
46
|
-
PATH: /usr/bin
|
47
|
-
PATH: /bin
|
48
|
-
PATH: /usr/sbin
|
49
|
-
PATH: /sbin
|
50
|
-
PATH: /Users/donaldpropst/go
|
51
|
-
PATH: /usr/local/go/bin
|
52
|
-
|
53
|
-
|
54
|
-
## ----------- ##
|
55
|
-
## Core tests. ##
|
56
|
-
## ----------- ##
|
57
|
-
|
58
|
-
configure:2263: checking for gcc
|
59
|
-
configure:2279: found /usr/bin/gcc
|
60
|
-
configure:2290: result: gcc
|
61
|
-
configure:2519: checking for C compiler version
|
62
|
-
configure:2528: gcc --version >&5
|
63
|
-
Apple LLVM version 10.0.1 (clang-1001.0.46.4)
|
64
|
-
Target: x86_64-apple-darwin18.6.0
|
65
|
-
Thread model: posix
|
66
|
-
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
67
|
-
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include/c++/4.2.1
|
68
|
-
configure:2539: $? = 0
|
69
|
-
configure:2528: gcc -v >&5
|
70
|
-
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include/c++/4.2.1
|
71
|
-
Apple LLVM version 10.0.1 (clang-1001.0.46.4)
|
72
|
-
Target: x86_64-apple-darwin18.6.0
|
73
|
-
Thread model: posix
|
74
|
-
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
75
|
-
configure:2539: $? = 0
|
76
|
-
configure:2528: gcc -V >&5
|
77
|
-
clang: error: unsupported option '-V -Wno-atomic-implicit-seq-cst'
|
78
|
-
clang: error: no input files
|
79
|
-
configure:2539: $? = 1
|
80
|
-
configure:2528: gcc -qversion >&5
|
81
|
-
clang: error: unknown argument '-qversion', did you mean '--version'?
|
82
|
-
clang: error: no input files
|
83
|
-
configure:2539: $? = 1
|
84
|
-
configure:2559: checking whether the C compiler works
|
85
|
-
configure:2581: gcc conftest.c >&5
|
86
|
-
configure:2585: $? = 0
|
87
|
-
configure:2633: result: yes
|
88
|
-
configure:2636: checking for C compiler default output file name
|
89
|
-
configure:2638: result: a.out
|
90
|
-
configure:2644: checking for suffix of executables
|
91
|
-
configure:2651: gcc -o conftest conftest.c >&5
|
92
|
-
configure:2655: $? = 0
|
93
|
-
configure:2677: result:
|
94
|
-
configure:2699: checking whether we are cross compiling
|
95
|
-
configure:2707: gcc -o conftest conftest.c >&5
|
96
|
-
configure:2711: $? = 0
|
97
|
-
configure:2718: ./conftest
|
98
|
-
configure:2722: $? = 0
|
99
|
-
configure:2737: result: no
|
100
|
-
configure:2742: checking for suffix of object files
|
101
|
-
configure:2764: gcc -c conftest.c >&5
|
102
|
-
configure:2768: $? = 0
|
103
|
-
configure:2789: result: o
|
104
|
-
configure:2793: checking whether we are using the GNU C compiler
|
105
|
-
configure:2812: gcc -c conftest.c >&5
|
106
|
-
configure:2812: $? = 0
|
107
|
-
configure:2821: result: yes
|
108
|
-
configure:2830: checking whether gcc accepts -g
|
109
|
-
configure:2850: gcc -c -g conftest.c >&5
|
110
|
-
configure:2850: $? = 0
|
111
|
-
configure:2891: result: yes
|
112
|
-
configure:2908: checking for gcc option to accept ISO C89
|
113
|
-
configure:2971: gcc -c -g -O2 conftest.c >&5
|
114
|
-
configure:2971: $? = 0
|
115
|
-
configure:2984: result: none needed
|
116
|
-
configure:3010: checking how to run the C preprocessor
|
117
|
-
configure:3041: gcc -E conftest.c
|
118
|
-
configure:3041: $? = 0
|
119
|
-
configure:3055: gcc -E conftest.c
|
120
|
-
conftest.c:9:10: fatal error: 'ac_nonexistent.h' file not found
|
121
|
-
#include <ac_nonexistent.h>
|
122
|
-
^~~~~~~~~~~~~~~~~~
|
123
|
-
1 error generated.
|
124
|
-
configure:3055: $? = 1
|
125
|
-
configure: failed program was:
|
126
|
-
| /* confdefs.h */
|
127
|
-
| #define PACKAGE_NAME "funchook"
|
128
|
-
| #define PACKAGE_TARNAME "funchook"
|
129
|
-
| #define PACKAGE_VERSION "0.1"
|
130
|
-
| #define PACKAGE_STRING "funchook 0.1"
|
131
|
-
| #define PACKAGE_BUGREPORT ""
|
132
|
-
| #define PACKAGE_URL ""
|
133
|
-
| /* end confdefs.h. */
|
134
|
-
| #include <ac_nonexistent.h>
|
135
|
-
configure:3080: result: gcc -E
|
136
|
-
configure:3100: gcc -E conftest.c
|
137
|
-
configure:3100: $? = 0
|
138
|
-
configure:3114: gcc -E conftest.c
|
139
|
-
conftest.c:9:10: fatal error: 'ac_nonexistent.h' file not found
|
140
|
-
#include <ac_nonexistent.h>
|
141
|
-
^~~~~~~~~~~~~~~~~~
|
142
|
-
1 error generated.
|
143
|
-
configure:3114: $? = 1
|
144
|
-
configure: failed program was:
|
145
|
-
| /* confdefs.h */
|
146
|
-
| #define PACKAGE_NAME "funchook"
|
147
|
-
| #define PACKAGE_TARNAME "funchook"
|
148
|
-
| #define PACKAGE_VERSION "0.1"
|
149
|
-
| #define PACKAGE_STRING "funchook 0.1"
|
150
|
-
| #define PACKAGE_BUGREPORT ""
|
151
|
-
| #define PACKAGE_URL ""
|
152
|
-
| /* end confdefs.h. */
|
153
|
-
| #include <ac_nonexistent.h>
|
154
|
-
configure:3143: checking for grep that handles long lines and -e
|
155
|
-
configure:3201: result: /usr/bin/grep
|
156
|
-
configure:3206: checking for egrep
|
157
|
-
configure:3268: result: /usr/bin/grep -E
|
158
|
-
configure:3273: checking for ANSI C header files
|
159
|
-
configure:3293: gcc -c -g -O2 conftest.c >&5
|
160
|
-
configure:3293: $? = 0
|
161
|
-
configure:3366: gcc -o conftest -g -O2 conftest.c >&5
|
162
|
-
configure:3366: $? = 0
|
163
|
-
configure:3366: ./conftest
|
164
|
-
configure:3366: $? = 0
|
165
|
-
configure:3377: result: yes
|
166
|
-
configure:3390: checking for sys/types.h
|
167
|
-
configure:3390: gcc -c -g -O2 conftest.c >&5
|
168
|
-
configure:3390: $? = 0
|
169
|
-
configure:3390: result: yes
|
170
|
-
configure:3390: checking for sys/stat.h
|
171
|
-
configure:3390: gcc -c -g -O2 conftest.c >&5
|
172
|
-
configure:3390: $? = 0
|
173
|
-
configure:3390: result: yes
|
174
|
-
configure:3390: checking for stdlib.h
|
175
|
-
configure:3390: gcc -c -g -O2 conftest.c >&5
|
176
|
-
configure:3390: $? = 0
|
177
|
-
configure:3390: result: yes
|
178
|
-
configure:3390: checking for string.h
|
179
|
-
configure:3390: gcc -c -g -O2 conftest.c >&5
|
180
|
-
configure:3390: $? = 0
|
181
|
-
configure:3390: result: yes
|
182
|
-
configure:3390: checking for memory.h
|
183
|
-
configure:3390: gcc -c -g -O2 conftest.c >&5
|
184
|
-
configure:3390: $? = 0
|
185
|
-
configure:3390: result: yes
|
186
|
-
configure:3390: checking for strings.h
|
187
|
-
configure:3390: gcc -c -g -O2 conftest.c >&5
|
188
|
-
configure:3390: $? = 0
|
189
|
-
configure:3390: result: yes
|
190
|
-
configure:3390: checking for inttypes.h
|
191
|
-
configure:3390: gcc -c -g -O2 conftest.c >&5
|
192
|
-
configure:3390: $? = 0
|
193
|
-
configure:3390: result: yes
|
194
|
-
configure:3390: checking for stdint.h
|
195
|
-
configure:3390: gcc -c -g -O2 conftest.c >&5
|
196
|
-
configure:3390: $? = 0
|
197
|
-
configure:3390: result: yes
|
198
|
-
configure:3390: checking for unistd.h
|
199
|
-
configure:3390: gcc -c -g -O2 conftest.c >&5
|
200
|
-
configure:3390: $? = 0
|
201
|
-
configure:3390: result: yes
|
202
|
-
configure:3403: checking minix/config.h usability
|
203
|
-
configure:3403: gcc -c -g -O2 conftest.c >&5
|
204
|
-
conftest.c:52:10: fatal error: 'minix/config.h' file not found
|
205
|
-
#include <minix/config.h>
|
206
|
-
^~~~~~~~~~~~~~~~
|
207
|
-
1 error generated.
|
208
|
-
configure:3403: $? = 1
|
209
|
-
configure: failed program was:
|
210
|
-
| /* confdefs.h */
|
211
|
-
| #define PACKAGE_NAME "funchook"
|
212
|
-
| #define PACKAGE_TARNAME "funchook"
|
213
|
-
| #define PACKAGE_VERSION "0.1"
|
214
|
-
| #define PACKAGE_STRING "funchook 0.1"
|
215
|
-
| #define PACKAGE_BUGREPORT ""
|
216
|
-
| #define PACKAGE_URL ""
|
217
|
-
| #define STDC_HEADERS 1
|
218
|
-
| #define HAVE_SYS_TYPES_H 1
|
219
|
-
| #define HAVE_SYS_STAT_H 1
|
220
|
-
| #define HAVE_STDLIB_H 1
|
221
|
-
| #define HAVE_STRING_H 1
|
222
|
-
| #define HAVE_MEMORY_H 1
|
223
|
-
| #define HAVE_STRINGS_H 1
|
224
|
-
| #define HAVE_INTTYPES_H 1
|
225
|
-
| #define HAVE_STDINT_H 1
|
226
|
-
| #define HAVE_UNISTD_H 1
|
227
|
-
| /* end confdefs.h. */
|
228
|
-
| #include <stdio.h>
|
229
|
-
| #ifdef HAVE_SYS_TYPES_H
|
230
|
-
| # include <sys/types.h>
|
231
|
-
| #endif
|
232
|
-
| #ifdef HAVE_SYS_STAT_H
|
233
|
-
| # include <sys/stat.h>
|
234
|
-
| #endif
|
235
|
-
| #ifdef STDC_HEADERS
|
236
|
-
| # include <stdlib.h>
|
237
|
-
| # include <stddef.h>
|
238
|
-
| #else
|
239
|
-
| # ifdef HAVE_STDLIB_H
|
240
|
-
| # include <stdlib.h>
|
241
|
-
| # endif
|
242
|
-
| #endif
|
243
|
-
| #ifdef HAVE_STRING_H
|
244
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
245
|
-
| # include <memory.h>
|
246
|
-
| # endif
|
247
|
-
| # include <string.h>
|
248
|
-
| #endif
|
249
|
-
| #ifdef HAVE_STRINGS_H
|
250
|
-
| # include <strings.h>
|
251
|
-
| #endif
|
252
|
-
| #ifdef HAVE_INTTYPES_H
|
253
|
-
| # include <inttypes.h>
|
254
|
-
| #endif
|
255
|
-
| #ifdef HAVE_STDINT_H
|
256
|
-
| # include <stdint.h>
|
257
|
-
| #endif
|
258
|
-
| #ifdef HAVE_UNISTD_H
|
259
|
-
| # include <unistd.h>
|
260
|
-
| #endif
|
261
|
-
| #include <minix/config.h>
|
262
|
-
configure:3403: result: no
|
263
|
-
configure:3403: checking minix/config.h presence
|
264
|
-
configure:3403: gcc -E conftest.c
|
265
|
-
conftest.c:19:10: fatal error: 'minix/config.h' file not found
|
266
|
-
#include <minix/config.h>
|
267
|
-
^~~~~~~~~~~~~~~~
|
268
|
-
1 error generated.
|
269
|
-
configure:3403: $? = 1
|
270
|
-
configure: failed program was:
|
271
|
-
| /* confdefs.h */
|
272
|
-
| #define PACKAGE_NAME "funchook"
|
273
|
-
| #define PACKAGE_TARNAME "funchook"
|
274
|
-
| #define PACKAGE_VERSION "0.1"
|
275
|
-
| #define PACKAGE_STRING "funchook 0.1"
|
276
|
-
| #define PACKAGE_BUGREPORT ""
|
277
|
-
| #define PACKAGE_URL ""
|
278
|
-
| #define STDC_HEADERS 1
|
279
|
-
| #define HAVE_SYS_TYPES_H 1
|
280
|
-
| #define HAVE_SYS_STAT_H 1
|
281
|
-
| #define HAVE_STDLIB_H 1
|
282
|
-
| #define HAVE_STRING_H 1
|
283
|
-
| #define HAVE_MEMORY_H 1
|
284
|
-
| #define HAVE_STRINGS_H 1
|
285
|
-
| #define HAVE_INTTYPES_H 1
|
286
|
-
| #define HAVE_STDINT_H 1
|
287
|
-
| #define HAVE_UNISTD_H 1
|
288
|
-
| /* end confdefs.h. */
|
289
|
-
| #include <minix/config.h>
|
290
|
-
configure:3403: result: no
|
291
|
-
configure:3403: checking for minix/config.h
|
292
|
-
configure:3403: result: no
|
293
|
-
configure:3424: checking whether it is safe to define __EXTENSIONS__
|
294
|
-
configure:3442: gcc -c -g -O2 conftest.c >&5
|
295
|
-
configure:3442: $? = 0
|
296
|
-
configure:3449: result: yes
|
297
|
-
configure:3497: checking build system type
|
298
|
-
configure:3511: result: x86_64-apple-darwin18.6.0
|
299
|
-
configure:3531: checking host system type
|
300
|
-
configure:3544: result: x86_64-apple-darwin18.6.0
|
301
|
-
configure:3573: checking size of void*
|
302
|
-
configure:3578: gcc -o conftest -g -O2 -Wall -fvisibility=hidden conftest.c >&5
|
303
|
-
configure:3578: $? = 0
|
304
|
-
configure:3578: ./conftest
|
305
|
-
configure:3578: $? = 0
|
306
|
-
configure:3592: result: 8
|
307
|
-
configure:3636: checking whether _sys_nerr is declared
|
308
|
-
configure:3636: gcc -c -g -O2 -Wall -fvisibility=hidden conftest.c >&5
|
309
|
-
conftest.c:65:10: error: use of undeclared identifier '_sys_nerr'
|
310
|
-
(void) _sys_nerr;
|
311
|
-
^
|
312
|
-
1 error generated.
|
313
|
-
configure:3636: $? = 1
|
314
|
-
configure: failed program was:
|
315
|
-
| /* confdefs.h */
|
316
|
-
| #define PACKAGE_NAME "funchook"
|
317
|
-
| #define PACKAGE_TARNAME "funchook"
|
318
|
-
| #define PACKAGE_VERSION "0.1"
|
319
|
-
| #define PACKAGE_STRING "funchook 0.1"
|
320
|
-
| #define PACKAGE_BUGREPORT ""
|
321
|
-
| #define PACKAGE_URL ""
|
322
|
-
| #define STDC_HEADERS 1
|
323
|
-
| #define HAVE_SYS_TYPES_H 1
|
324
|
-
| #define HAVE_SYS_STAT_H 1
|
325
|
-
| #define HAVE_STDLIB_H 1
|
326
|
-
| #define HAVE_STRING_H 1
|
327
|
-
| #define HAVE_MEMORY_H 1
|
328
|
-
| #define HAVE_STRINGS_H 1
|
329
|
-
| #define HAVE_INTTYPES_H 1
|
330
|
-
| #define HAVE_STDINT_H 1
|
331
|
-
| #define HAVE_UNISTD_H 1
|
332
|
-
| #define __EXTENSIONS__ 1
|
333
|
-
| #define _ALL_SOURCE 1
|
334
|
-
| #define _GNU_SOURCE 1
|
335
|
-
| #define _POSIX_PTHREAD_SEMANTICS 1
|
336
|
-
| #define _TANDEM_SOURCE 1
|
337
|
-
| #define SIZEOF_VOIDP 8
|
338
|
-
| /* end confdefs.h. */
|
339
|
-
| #include <stdio.h>
|
340
|
-
| #ifdef HAVE_SYS_TYPES_H
|
341
|
-
| # include <sys/types.h>
|
342
|
-
| #endif
|
343
|
-
| #ifdef HAVE_SYS_STAT_H
|
344
|
-
| # include <sys/stat.h>
|
345
|
-
| #endif
|
346
|
-
| #ifdef STDC_HEADERS
|
347
|
-
| # include <stdlib.h>
|
348
|
-
| # include <stddef.h>
|
349
|
-
| #else
|
350
|
-
| # ifdef HAVE_STDLIB_H
|
351
|
-
| # include <stdlib.h>
|
352
|
-
| # endif
|
353
|
-
| #endif
|
354
|
-
| #ifdef HAVE_STRING_H
|
355
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
356
|
-
| # include <memory.h>
|
357
|
-
| # endif
|
358
|
-
| # include <string.h>
|
359
|
-
| #endif
|
360
|
-
| #ifdef HAVE_STRINGS_H
|
361
|
-
| # include <strings.h>
|
362
|
-
| #endif
|
363
|
-
| #ifdef HAVE_INTTYPES_H
|
364
|
-
| # include <inttypes.h>
|
365
|
-
| #endif
|
366
|
-
| #ifdef HAVE_STDINT_H
|
367
|
-
| # include <stdint.h>
|
368
|
-
| #endif
|
369
|
-
| #ifdef HAVE_UNISTD_H
|
370
|
-
| # include <unistd.h>
|
371
|
-
| #endif
|
372
|
-
| int
|
373
|
-
| main ()
|
374
|
-
| {
|
375
|
-
| #ifndef _sys_nerr
|
376
|
-
| #ifdef __cplusplus
|
377
|
-
| (void) _sys_nerr;
|
378
|
-
| #else
|
379
|
-
| (void) _sys_nerr;
|
380
|
-
| #endif
|
381
|
-
| #endif
|
382
|
-
|
|
383
|
-
| ;
|
384
|
-
| return 0;
|
385
|
-
| }
|
386
|
-
configure:3636: result: no
|
387
|
-
configure:3646: checking whether _sys_errlist is declared
|
388
|
-
configure:3646: gcc -c -g -O2 -Wall -fvisibility=hidden conftest.c >&5
|
389
|
-
conftest.c:66:10: error: use of undeclared identifier '_sys_errlist'
|
390
|
-
(void) _sys_errlist;
|
391
|
-
^
|
392
|
-
1 error generated.
|
393
|
-
configure:3646: $? = 1
|
394
|
-
configure: failed program was:
|
395
|
-
| /* confdefs.h */
|
396
|
-
| #define PACKAGE_NAME "funchook"
|
397
|
-
| #define PACKAGE_TARNAME "funchook"
|
398
|
-
| #define PACKAGE_VERSION "0.1"
|
399
|
-
| #define PACKAGE_STRING "funchook 0.1"
|
400
|
-
| #define PACKAGE_BUGREPORT ""
|
401
|
-
| #define PACKAGE_URL ""
|
402
|
-
| #define STDC_HEADERS 1
|
403
|
-
| #define HAVE_SYS_TYPES_H 1
|
404
|
-
| #define HAVE_SYS_STAT_H 1
|
405
|
-
| #define HAVE_STDLIB_H 1
|
406
|
-
| #define HAVE_STRING_H 1
|
407
|
-
| #define HAVE_MEMORY_H 1
|
408
|
-
| #define HAVE_STRINGS_H 1
|
409
|
-
| #define HAVE_INTTYPES_H 1
|
410
|
-
| #define HAVE_STDINT_H 1
|
411
|
-
| #define HAVE_UNISTD_H 1
|
412
|
-
| #define __EXTENSIONS__ 1
|
413
|
-
| #define _ALL_SOURCE 1
|
414
|
-
| #define _GNU_SOURCE 1
|
415
|
-
| #define _POSIX_PTHREAD_SEMANTICS 1
|
416
|
-
| #define _TANDEM_SOURCE 1
|
417
|
-
| #define SIZEOF_VOIDP 8
|
418
|
-
| #define HAVE_DECL__SYS_NERR 0
|
419
|
-
| /* end confdefs.h. */
|
420
|
-
| #include <stdio.h>
|
421
|
-
| #ifdef HAVE_SYS_TYPES_H
|
422
|
-
| # include <sys/types.h>
|
423
|
-
| #endif
|
424
|
-
| #ifdef HAVE_SYS_STAT_H
|
425
|
-
| # include <sys/stat.h>
|
426
|
-
| #endif
|
427
|
-
| #ifdef STDC_HEADERS
|
428
|
-
| # include <stdlib.h>
|
429
|
-
| # include <stddef.h>
|
430
|
-
| #else
|
431
|
-
| # ifdef HAVE_STDLIB_H
|
432
|
-
| # include <stdlib.h>
|
433
|
-
| # endif
|
434
|
-
| #endif
|
435
|
-
| #ifdef HAVE_STRING_H
|
436
|
-
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
437
|
-
| # include <memory.h>
|
438
|
-
| # endif
|
439
|
-
| # include <string.h>
|
440
|
-
| #endif
|
441
|
-
| #ifdef HAVE_STRINGS_H
|
442
|
-
| # include <strings.h>
|
443
|
-
| #endif
|
444
|
-
| #ifdef HAVE_INTTYPES_H
|
445
|
-
| # include <inttypes.h>
|
446
|
-
| #endif
|
447
|
-
| #ifdef HAVE_STDINT_H
|
448
|
-
| # include <stdint.h>
|
449
|
-
| #endif
|
450
|
-
| #ifdef HAVE_UNISTD_H
|
451
|
-
| # include <unistd.h>
|
452
|
-
| #endif
|
453
|
-
| int
|
454
|
-
| main ()
|
455
|
-
| {
|
456
|
-
| #ifndef _sys_errlist
|
457
|
-
| #ifdef __cplusplus
|
458
|
-
| (void) _sys_errlist;
|
459
|
-
| #else
|
460
|
-
| (void) _sys_errlist;
|
461
|
-
| #endif
|
462
|
-
| #endif
|
463
|
-
|
|
464
|
-
| ;
|
465
|
-
| return 0;
|
466
|
-
| }
|
467
|
-
configure:3646: result: no
|
468
|
-
configure:3656: checking whether sys_nerr is declared
|
469
|
-
configure:3656: gcc -c -g -O2 -Wall -fvisibility=hidden conftest.c >&5
|
470
|
-
configure:3656: $? = 0
|
471
|
-
configure:3656: result: yes
|
472
|
-
configure:3666: checking whether sys_errlist is declared
|
473
|
-
configure:3666: gcc -c -g -O2 -Wall -fvisibility=hidden conftest.c >&5
|
474
|
-
configure:3666: $? = 0
|
475
|
-
configure:3666: result: yes
|
476
|
-
configure:3805: creating ./config.status
|
477
|
-
|
478
|
-
## ---------------------- ##
|
479
|
-
## Running config.status. ##
|
480
|
-
## ---------------------- ##
|
481
|
-
|
482
|
-
This file was extended by funchook config.status 0.1, which was
|
483
|
-
generated by GNU Autoconf 2.69. Invocation command line was
|
484
|
-
|
485
|
-
CONFIG_FILES =
|
486
|
-
CONFIG_HEADERS =
|
487
|
-
CONFIG_LINKS =
|
488
|
-
CONFIG_COMMANDS =
|
489
|
-
$ ./config.status
|
490
|
-
|
491
|
-
on donalds-mbp-2.lan
|
492
|
-
|
493
|
-
config.status:825: creating Makefile
|
494
|
-
config.status:825: creating src/Makefile
|
495
|
-
config.status:825: creating test/Makefile
|
496
|
-
config.status:825: creating src/config.h
|
497
|
-
|
498
|
-
## ---------------- ##
|
499
|
-
## Cache variables. ##
|
500
|
-
## ---------------- ##
|
501
|
-
|
502
|
-
ac_cv_build=x86_64-apple-darwin18.6.0
|
503
|
-
ac_cv_c_compiler_gnu=yes
|
504
|
-
ac_cv_env_CC_set=
|
505
|
-
ac_cv_env_CC_value=
|
506
|
-
ac_cv_env_CFLAGS_set=
|
507
|
-
ac_cv_env_CFLAGS_value=
|
508
|
-
ac_cv_env_CPPFLAGS_set=
|
509
|
-
ac_cv_env_CPPFLAGS_value=
|
510
|
-
ac_cv_env_CPP_set=
|
511
|
-
ac_cv_env_CPP_value=
|
512
|
-
ac_cv_env_LDFLAGS_set=
|
513
|
-
ac_cv_env_LDFLAGS_value=
|
514
|
-
ac_cv_env_LIBS_set=
|
515
|
-
ac_cv_env_LIBS_value=
|
516
|
-
ac_cv_env_build_alias_set=
|
517
|
-
ac_cv_env_build_alias_value=
|
518
|
-
ac_cv_env_host_alias_set=
|
519
|
-
ac_cv_env_host_alias_value=
|
520
|
-
ac_cv_env_target_alias_set=
|
521
|
-
ac_cv_env_target_alias_value=
|
522
|
-
ac_cv_have_decl__sys_errlist=no
|
523
|
-
ac_cv_have_decl__sys_nerr=no
|
524
|
-
ac_cv_have_decl_sys_errlist=yes
|
525
|
-
ac_cv_have_decl_sys_nerr=yes
|
526
|
-
ac_cv_header_inttypes_h=yes
|
527
|
-
ac_cv_header_memory_h=yes
|
528
|
-
ac_cv_header_minix_config_h=no
|
529
|
-
ac_cv_header_stdc=yes
|
530
|
-
ac_cv_header_stdint_h=yes
|
531
|
-
ac_cv_header_stdlib_h=yes
|
532
|
-
ac_cv_header_string_h=yes
|
533
|
-
ac_cv_header_strings_h=yes
|
534
|
-
ac_cv_header_sys_stat_h=yes
|
535
|
-
ac_cv_header_sys_types_h=yes
|
536
|
-
ac_cv_header_unistd_h=yes
|
537
|
-
ac_cv_host=x86_64-apple-darwin18.6.0
|
538
|
-
ac_cv_objext=o
|
539
|
-
ac_cv_path_EGREP='/usr/bin/grep -E'
|
540
|
-
ac_cv_path_GREP=/usr/bin/grep
|
541
|
-
ac_cv_prog_CPP='gcc -E'
|
542
|
-
ac_cv_prog_ac_ct_CC=gcc
|
543
|
-
ac_cv_prog_cc_c89=
|
544
|
-
ac_cv_prog_cc_g=yes
|
545
|
-
ac_cv_safe_to_define___extensions__=yes
|
546
|
-
ac_cv_sizeof_voidp=8
|
547
|
-
|
548
|
-
## ----------------- ##
|
549
|
-
## Output variables. ##
|
550
|
-
## ----------------- ##
|
551
|
-
|
552
|
-
CC='gcc'
|
553
|
-
CFLAGS='-g -O2 -Wall -fvisibility=hidden'
|
554
|
-
CPP='gcc -E'
|
555
|
-
CPPFLAGS=''
|
556
|
-
DEFS='-DHAVE_CONFIG_H'
|
557
|
-
ECHO_C='\c'
|
558
|
-
ECHO_N=''
|
559
|
-
ECHO_T=''
|
560
|
-
EGREP='/usr/bin/grep -E'
|
561
|
-
EXEEXT=''
|
562
|
-
FUNCHOOK_CPU='x86_64'
|
563
|
-
FUNCHOOK_OS='unix'
|
564
|
-
GREP='/usr/bin/grep'
|
565
|
-
IF_LINUX='#'
|
566
|
-
IF_OSX=''
|
567
|
-
IF_WIN32='#'
|
568
|
-
LDFLAGS=''
|
569
|
-
LIBFUNCHOOK_SO='libfunchook.dylib'
|
570
|
-
LIBOBJS=''
|
571
|
-
LIBS=''
|
572
|
-
LINK_SHARED='$(CC) -shared'
|
573
|
-
LTLIBOBJS=''
|
574
|
-
OBJEXT='o'
|
575
|
-
PACKAGE_BUGREPORT=''
|
576
|
-
PACKAGE_NAME='funchook'
|
577
|
-
PACKAGE_STRING='funchook 0.1'
|
578
|
-
PACKAGE_TARNAME='funchook'
|
579
|
-
PACKAGE_URL=''
|
580
|
-
PACKAGE_VERSION='0.1'
|
581
|
-
PATH_SEPARATOR=':'
|
582
|
-
PIC_CFLAGS='-fPIC'
|
583
|
-
SHELL='/bin/sh'
|
584
|
-
ac_ct_CC='gcc'
|
585
|
-
bindir='${exec_prefix}/bin'
|
586
|
-
build='x86_64-apple-darwin18.6.0'
|
587
|
-
build_alias=''
|
588
|
-
build_cpu='x86_64'
|
589
|
-
build_os='darwin18.6.0'
|
590
|
-
build_vendor='apple'
|
591
|
-
datadir='${datarootdir}'
|
592
|
-
datarootdir='${prefix}/share'
|
593
|
-
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
|
594
|
-
dvidir='${docdir}'
|
595
|
-
exec_prefix='${prefix}'
|
596
|
-
host='x86_64-apple-darwin18.6.0'
|
597
|
-
host_alias=''
|
598
|
-
host_cpu='x86_64'
|
599
|
-
host_os='darwin18.6.0'
|
600
|
-
host_vendor='apple'
|
601
|
-
htmldir='${docdir}'
|
602
|
-
includedir='${prefix}/include'
|
603
|
-
infodir='${datarootdir}/info'
|
604
|
-
libdir='${exec_prefix}/lib'
|
605
|
-
libexecdir='${exec_prefix}/libexec'
|
606
|
-
localedir='${datarootdir}/locale'
|
607
|
-
localstatedir='${prefix}/var'
|
608
|
-
mandir='${datarootdir}/man'
|
609
|
-
oldincludedir='/usr/include'
|
610
|
-
pdfdir='${docdir}'
|
611
|
-
prefix='/usr/local'
|
612
|
-
program_transform_name='s,x,x,'
|
613
|
-
psdir='${docdir}'
|
614
|
-
sbindir='${exec_prefix}/sbin'
|
615
|
-
sharedstatedir='${prefix}/com'
|
616
|
-
sysconfdir='${prefix}/etc'
|
617
|
-
target_alias=''
|
618
|
-
|
619
|
-
## ----------- ##
|
620
|
-
## confdefs.h. ##
|
621
|
-
## ----------- ##
|
622
|
-
|
623
|
-
/* confdefs.h */
|
624
|
-
#define PACKAGE_NAME "funchook"
|
625
|
-
#define PACKAGE_TARNAME "funchook"
|
626
|
-
#define PACKAGE_VERSION "0.1"
|
627
|
-
#define PACKAGE_STRING "funchook 0.1"
|
628
|
-
#define PACKAGE_BUGREPORT ""
|
629
|
-
#define PACKAGE_URL ""
|
630
|
-
#define STDC_HEADERS 1
|
631
|
-
#define HAVE_SYS_TYPES_H 1
|
632
|
-
#define HAVE_SYS_STAT_H 1
|
633
|
-
#define HAVE_STDLIB_H 1
|
634
|
-
#define HAVE_STRING_H 1
|
635
|
-
#define HAVE_MEMORY_H 1
|
636
|
-
#define HAVE_STRINGS_H 1
|
637
|
-
#define HAVE_INTTYPES_H 1
|
638
|
-
#define HAVE_STDINT_H 1
|
639
|
-
#define HAVE_UNISTD_H 1
|
640
|
-
#define __EXTENSIONS__ 1
|
641
|
-
#define _ALL_SOURCE 1
|
642
|
-
#define _GNU_SOURCE 1
|
643
|
-
#define _POSIX_PTHREAD_SEMANTICS 1
|
644
|
-
#define _TANDEM_SOURCE 1
|
645
|
-
#define SIZEOF_VOIDP 8
|
646
|
-
#define HAVE_DECL__SYS_NERR 0
|
647
|
-
#define HAVE_DECL__SYS_ERRLIST 0
|
648
|
-
#define HAVE_DECL_SYS_NERR 1
|
649
|
-
#define HAVE_DECL_SYS_ERRLIST 1
|
650
|
-
|
651
|
-
configure: exit 0
|