passenger 3.9.1.beta → 3.9.2.beta
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- data/.travis.yml +13 -0
- data/CONTRIBUTING.md +287 -0
- data/INSTALL.md +7 -0
- data/NEWS +32 -0
- data/README.md +46 -0
- data/Rakefile +2 -2
- data/bin/passenger +1 -1
- data/bin/passenger-config +1 -1
- data/bin/passenger-install-apache2-module +1 -1
- data/bin/passenger-install-nginx-module +1 -1
- data/bin/passenger-memory-stats +1 -1
- data/bin/passenger-status +1 -1
- data/build/agents.rb +7 -7
- data/build/apache2.rb +2 -2
- data/build/basics.rb +3 -7
- data/build/common_library.rb +14 -7
- data/build/cplusplus_support.rb +1 -1
- data/build/cxx_tests.rb +19 -7
- data/build/documentation.rb +1 -1
- data/build/integration_tests.rb +2 -2
- data/build/misc.rb +6 -6
- data/build/nginx.rb +1 -1
- data/build/oxt_tests.rb +1 -1
- data/build/packaging.rb +13 -23
- data/build/rake_extensions.rb +1 -1
- data/build/rpm.rb +1 -1
- data/build/ruby_extension.rb +2 -2
- data/build/ruby_tests.rb +4 -4
- data/build/test_basics.rb +15 -2
- data/dev/copy_boost_headers.rb +18 -8
- data/dev/find_owner_pipe_leaks.rb +1 -1
- data/dev/render_error_pages.rb +1 -1
- data/dev/run_travis.sh +39 -0
- data/doc/Architectural overview.html +55 -21
- data/doc/{DebuggingAndStressTesting.txt.md → DebuggingAndStressTesting.md} +12 -1
- data/doc/Security of user switching support.html +47 -16
- data/doc/Users guide Apache.html +802 -378
- data/doc/Users guide Apache.idmap.txt +85 -209
- data/doc/Users guide Apache.txt +65 -338
- data/doc/Users guide Nginx.html +715 -252
- data/doc/Users guide Nginx.idmap.txt +71 -147
- data/doc/Users guide Nginx.txt +29 -245
- data/doc/Users guide Standalone.html +45 -14
- data/doc/Users guide Standalone.idmap.txt +0 -2
- data/doc/users_guide_snippets/analysis_and_system_maintenance.txt +1 -1
- data/doc/users_guide_snippets/installation.txt +604 -0
- data/doc/users_guide_snippets/support_information.txt +5 -4
- data/doc/users_guide_snippets/tips.txt +54 -1
- data/ext/apache2/Bucket.cpp +1 -1
- data/ext/apache2/Bucket.h +1 -1
- data/ext/apache2/Configuration.cpp +2 -14
- data/ext/apache2/Configuration.h +1 -1
- data/ext/apache2/Configuration.hpp +3 -22
- data/ext/apache2/DirectoryMapper.h +1 -1
- data/ext/apache2/Hooks.cpp +5 -5
- data/ext/apache2/Hooks.h +1 -1
- data/ext/apache2/mod_passenger.c +1 -1
- data/ext/boost/aligned_storage.hpp +181 -0
- data/ext/boost/array.hpp +446 -0
- data/ext/boost/cerrno.hpp +331 -0
- data/ext/boost/chrono/ceil.hpp +36 -0
- data/ext/boost/chrono/clock_string.hpp +25 -0
- data/ext/boost/chrono/config.hpp +215 -0
- data/ext/boost/chrono/detail/is_evenly_divisible_by.hpp +31 -0
- data/ext/boost/chrono/detail/static_assert.hpp +30 -0
- data/ext/boost/chrono/detail/system.hpp +29 -0
- data/ext/boost/chrono/duration.hpp +795 -0
- data/ext/boost/chrono/system_clocks.hpp +233 -0
- data/ext/boost/chrono/time_point.hpp +379 -0
- data/ext/boost/concept_check.hpp +5 -5
- data/ext/boost/config/compiler/borland.hpp +29 -27
- data/ext/boost/config/compiler/clang.hpp +40 -26
- data/ext/boost/config/compiler/codegear.hpp +20 -19
- data/ext/boost/config/compiler/common_edg.hpp +27 -25
- data/ext/boost/config/compiler/cray.hpp +24 -22
- data/ext/boost/config/compiler/digitalmars.hpp +26 -24
- data/ext/boost/config/compiler/gcc.hpp +32 -30
- data/ext/boost/config/compiler/gcc_xml.hpp +26 -25
- data/ext/boost/config/compiler/hp_acc.hpp +26 -24
- data/ext/boost/config/compiler/intel.hpp +26 -24
- data/ext/boost/config/compiler/metrowerks.hpp +27 -25
- data/ext/boost/config/compiler/mpw.hpp +27 -25
- data/ext/boost/config/compiler/pathscale.hpp +41 -41
- data/ext/boost/config/compiler/pgi.hpp +70 -29
- data/ext/boost/config/compiler/sunpro_cc.hpp +27 -25
- data/ext/boost/config/compiler/vacpp.hpp +36 -26
- data/ext/boost/config/compiler/visualc.hpp +80 -57
- data/ext/boost/config/stdlib/dinkumware.hpp +25 -22
- data/ext/boost/config/stdlib/libcomo.hpp +23 -20
- data/ext/boost/config/stdlib/libcpp.hpp +5 -4
- data/ext/boost/config/stdlib/libstdcpp3.hpp +34 -25
- data/ext/boost/config/stdlib/modena.hpp +23 -20
- data/ext/boost/config/stdlib/msl.hpp +23 -20
- data/ext/boost/config/stdlib/roguewave.hpp +23 -20
- data/ext/boost/config/stdlib/sgi.hpp +23 -20
- data/ext/boost/config/stdlib/stlport.hpp +23 -24
- data/ext/boost/config/stdlib/vacpp.hpp +23 -20
- data/ext/boost/config/suffix.hpp +266 -75
- data/ext/boost/container/container_fwd.hpp +39 -43
- data/ext/boost/date_time/adjust_functors.hpp +1 -1
- data/ext/boost/date_time/c_time.hpp +1 -1
- data/ext/boost/date_time/compiler_config.hpp +1 -1
- data/ext/boost/date_time/constrained_value.hpp +1 -1
- data/ext/boost/date_time/date.hpp +3 -3
- data/ext/boost/date_time/date_clock_device.hpp +1 -1
- data/ext/boost/date_time/date_defs.hpp +1 -1
- data/ext/boost/date_time/date_duration.hpp +9 -9
- data/ext/boost/date_time/date_duration_types.hpp +1 -1
- data/ext/boost/date_time/date_facet.hpp +7 -4
- data/ext/boost/date_time/date_format_simple.hpp +1 -1
- data/ext/boost/date_time/date_formatting.hpp +4 -2
- data/ext/boost/date_time/date_formatting_limited.hpp +1 -1
- data/ext/boost/date_time/date_formatting_locales.hpp +1 -1
- data/ext/boost/date_time/date_generator_formatter.hpp +1 -1
- data/ext/boost/date_time/date_generator_parser.hpp +1 -1
- data/ext/boost/date_time/date_generators.hpp +35 -35
- data/ext/boost/date_time/date_iterator.hpp +15 -15
- data/ext/boost/date_time/date_names_put.hpp +26 -26
- data/ext/boost/date_time/date_parsing.hpp +3 -1
- data/ext/boost/date_time/dst_rules.hpp +2 -2
- data/ext/boost/date_time/filetime_functions.hpp +1 -1
- data/ext/boost/date_time/format_date_parser.hpp +1 -7
- data/ext/boost/date_time/gregorian/conversion.hpp +1 -1
- data/ext/boost/date_time/gregorian/formatters.hpp +1 -1
- data/ext/boost/date_time/gregorian/formatters_limited.hpp +1 -1
- data/ext/boost/date_time/gregorian/greg_calendar.hpp +1 -1
- data/ext/boost/date_time/gregorian/greg_date.hpp +1 -1
- data/ext/boost/date_time/gregorian/greg_day.hpp +1 -1
- data/ext/boost/date_time/gregorian/greg_day_of_year.hpp +1 -1
- data/ext/boost/date_time/gregorian/greg_duration.hpp +1 -1
- data/ext/boost/date_time/gregorian/greg_duration_types.hpp +1 -1
- data/ext/boost/date_time/gregorian/greg_month.hpp +1 -1
- data/ext/boost/date_time/gregorian/greg_weekday.hpp +1 -1
- data/ext/boost/date_time/gregorian/greg_year.hpp +1 -1
- data/ext/boost/date_time/gregorian/greg_ymd.hpp +1 -1
- data/ext/boost/date_time/gregorian/gregorian.hpp +1 -1
- data/ext/boost/date_time/gregorian/gregorian_io.hpp +1 -1
- data/ext/boost/date_time/gregorian/gregorian_types.hpp +1 -1
- data/ext/boost/date_time/gregorian/parsers.hpp +1 -1
- data/ext/boost/date_time/gregorian_calendar.hpp +1 -1
- data/ext/boost/date_time/gregorian_calendar.ipp +1 -1
- data/ext/boost/date_time/int_adapter.hpp +1 -1
- data/ext/boost/date_time/iso_format.hpp +1 -1
- data/ext/boost/date_time/locale_config.hpp +1 -1
- data/ext/boost/date_time/microsec_time_clock.hpp +1 -1
- data/ext/boost/date_time/parse_format_base.hpp +1 -1
- data/ext/boost/date_time/period.hpp +1 -1
- data/ext/boost/date_time/period_formatter.hpp +5 -5
- data/ext/boost/date_time/period_parser.hpp +1 -1
- data/ext/boost/date_time/posix_time/conversion.hpp +1 -1
- data/ext/boost/date_time/posix_time/date_duration_operators.hpp +1 -1
- data/ext/boost/date_time/posix_time/posix_time.hpp +1 -1
- data/ext/boost/date_time/posix_time/posix_time_config.hpp +2 -2
- data/ext/boost/date_time/posix_time/posix_time_duration.hpp +1 -1
- data/ext/boost/date_time/posix_time/posix_time_io.hpp +1 -1
- data/ext/boost/date_time/posix_time/posix_time_system.hpp +1 -1
- data/ext/boost/date_time/posix_time/ptime.hpp +1 -1
- data/ext/boost/date_time/posix_time/time_formatters.hpp +1 -1
- data/ext/boost/date_time/posix_time/time_parsers.hpp +1 -1
- data/ext/boost/date_time/posix_time/time_period.hpp +1 -1
- data/ext/boost/date_time/special_defs.hpp +1 -1
- data/ext/boost/date_time/special_values_formatter.hpp +1 -1
- data/ext/boost/date_time/string_convert.hpp +1 -1
- data/ext/boost/date_time/string_parse_tree.hpp +1 -1
- data/ext/boost/date_time/strings_from_facet.hpp +1 -1
- data/ext/boost/date_time/time.hpp +1 -1
- data/ext/boost/date_time/time_clock.hpp +1 -1
- data/ext/boost/date_time/time_defs.hpp +1 -1
- data/ext/boost/date_time/time_duration.hpp +17 -6
- data/ext/boost/date_time/time_facet.hpp +1 -1
- data/ext/boost/date_time/time_formatting_streams.hpp +1 -1
- data/ext/boost/date_time/time_iterator.hpp +17 -17
- data/ext/boost/date_time/time_parsing.hpp +6 -3
- data/ext/boost/date_time/time_resolution_traits.hpp +1 -1
- data/ext/boost/date_time/time_system_counted.hpp +1 -1
- data/ext/boost/date_time/time_system_split.hpp +1 -1
- data/ext/boost/date_time/wrapping_int.hpp +27 -27
- data/ext/boost/date_time/year_month_day.hpp +1 -1
- data/ext/boost/detail/container_fwd.hpp +162 -0
- data/ext/boost/detail/is_incrementable.hpp +134 -0
- data/ext/boost/detail/scoped_enum_emulation.hpp +337 -0
- data/ext/boost/exception/detail/attribute_noreturn.hpp +1 -1
- data/ext/boost/exception/detail/error_info_impl.hpp +2 -1
- data/ext/boost/exception/detail/exception_ptr.hpp +7 -2
- data/ext/boost/exception/exception.hpp +29 -2
- data/ext/boost/exception/info.hpp +1 -1
- data/ext/boost/foreach.hpp +1128 -0
- data/ext/boost/foreach_fwd.hpp +51 -0
- data/ext/boost/function/function_template.hpp +50 -1
- data/ext/boost/functional/hash.hpp +7 -0
- data/ext/boost/functional/hash/detail/container_fwd_0x.hpp +29 -0
- data/ext/boost/functional/hash/detail/float_functions.hpp +246 -0
- data/ext/boost/functional/hash/detail/hash_float.hpp +268 -0
- data/ext/boost/functional/hash/detail/limits.hpp +61 -0
- data/ext/boost/functional/hash/extensions.hpp +367 -0
- data/ext/boost/functional/hash/hash.hpp +509 -0
- data/ext/boost/functional/hash/hash_fwd.hpp +40 -0
- data/ext/boost/functional/hash_fwd.hpp +7 -0
- data/ext/boost/indirect_reference.hpp +43 -0
- data/ext/boost/integer.hpp +19 -15
- data/ext/boost/integer/static_log2.hpp +127 -0
- data/ext/boost/integer_traits.hpp +1 -1
- data/ext/boost/iterator/iterator_facade.hpp +32 -36
- data/ext/boost/iterator/reverse_iterator.hpp +1 -1
- data/ext/boost/iterator/transform_iterator.hpp +1 -1
- data/ext/boost/lambda/core.hpp +79 -0
- data/ext/boost/lambda/detail/actions.hpp +174 -0
- data/ext/boost/lambda/detail/arity_code.hpp +110 -0
- data/ext/boost/lambda/detail/function_adaptors.hpp +789 -0
- data/ext/boost/lambda/detail/is_instance_of.hpp +104 -0
- data/ext/boost/lambda/detail/lambda_config.hpp +48 -0
- data/ext/boost/lambda/detail/lambda_functor_base.hpp +615 -0
- data/ext/boost/lambda/detail/lambda_functors.hpp +324 -0
- data/ext/boost/lambda/detail/lambda_fwd.hpp +74 -0
- data/ext/boost/lambda/detail/lambda_traits.hpp +578 -0
- data/ext/boost/lambda/detail/member_ptr.hpp +737 -0
- data/ext/boost/lambda/detail/operator_actions.hpp +139 -0
- data/ext/boost/lambda/detail/operator_lambda_func_base.hpp +271 -0
- data/ext/boost/lambda/detail/operator_return_type_traits.hpp +917 -0
- data/ext/boost/lambda/detail/operators.hpp +370 -0
- data/ext/boost/lambda/detail/ret.hpp +325 -0
- data/ext/boost/lambda/detail/return_type_traits.hpp +282 -0
- data/ext/boost/lambda/detail/select_functions.hpp +74 -0
- data/ext/boost/lambda/lambda.hpp +34 -0
- data/ext/boost/lexical_cast.hpp +807 -497
- data/ext/boost/libs/system/src/error_code.cpp +430 -0
- data/ext/boost/libs/system/src/local_free_on_destruction.hpp +40 -0
- data/ext/boost/libs/thread/src/future.cpp +61 -0
- data/ext/boost/{src → libs/thread/src}/pthread/once.cpp +28 -9
- data/ext/boost/{src → libs/thread/src}/pthread/thread.cpp +139 -47
- data/ext/boost/{src → libs/thread/src}/pthread/timeconv.inl +0 -0
- data/ext/boost/{src → libs/thread/src}/tss_null.cpp +2 -2
- data/ext/boost/math/policies/policy.hpp +4 -4
- data/ext/boost/math/special_functions/fpclassify.hpp +10 -6
- data/ext/boost/math/special_functions/math_fwd.hpp +226 -0
- data/ext/boost/math/tools/config.hpp +10 -1
- data/ext/boost/move/move.hpp +70 -19
- data/ext/boost/mpl/O1_size.hpp +1 -1
- data/ext/boost/mpl/O1_size_fwd.hpp +1 -1
- data/ext/boost/mpl/accumulate.hpp +39 -0
- data/ext/boost/mpl/advance.hpp +1 -1
- data/ext/boost/mpl/advance_fwd.hpp +1 -1
- data/ext/boost/mpl/alias.hpp +21 -0
- data/ext/boost/mpl/always.hpp +1 -1
- data/ext/boost/mpl/and.hpp +1 -1
- data/ext/boost/mpl/apply.hpp +1 -1
- data/ext/boost/mpl/apply_fwd.hpp +1 -1
- data/ext/boost/mpl/apply_wrap.hpp +1 -1
- data/ext/boost/mpl/arg.hpp +1 -1
- data/ext/boost/mpl/arg_fwd.hpp +1 -1
- data/ext/boost/mpl/arithmetic.hpp +25 -0
- data/ext/boost/mpl/as_sequence.hpp +38 -0
- data/ext/boost/mpl/assert.hpp +1 -1
- data/ext/boost/mpl/at.hpp +1 -1
- data/ext/boost/mpl/at_fwd.hpp +1 -1
- data/ext/boost/mpl/aux_/O1_size_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/adl_barrier.hpp +1 -1
- data/ext/boost/mpl/aux_/advance_backward.hpp +1 -1
- data/ext/boost/mpl/aux_/advance_forward.hpp +1 -1
- data/ext/boost/mpl/aux_/apply_1st.hpp +35 -0
- data/ext/boost/mpl/aux_/arg_typedef.hpp +1 -1
- data/ext/boost/mpl/aux_/arithmetic_op.hpp +1 -1
- data/ext/boost/mpl/aux_/arity.hpp +1 -1
- data/ext/boost/mpl/aux_/arity_spec.hpp +1 -1
- data/ext/boost/mpl/aux_/at_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/back_impl.hpp +43 -0
- data/ext/boost/mpl/aux_/basic_bind.hpp +21 -0
- data/ext/boost/mpl/aux_/begin_end_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/clear_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/common_name_wknd.hpp +1 -1
- data/ext/boost/mpl/aux_/comparison_op.hpp +1 -1
- data/ext/boost/mpl/aux_/config/adl.hpp +1 -1
- data/ext/boost/mpl/aux_/config/arrays.hpp +1 -1
- data/ext/boost/mpl/aux_/config/bind.hpp +1 -1
- data/ext/boost/mpl/aux_/config/compiler.hpp +1 -1
- data/ext/boost/mpl/aux_/config/ctps.hpp +1 -1
- data/ext/boost/mpl/aux_/config/dependent_nttp.hpp +35 -0
- data/ext/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp +27 -0
- data/ext/boost/mpl/aux_/config/dtp.hpp +1 -1
- data/ext/boost/mpl/aux_/config/eti.hpp +1 -1
- data/ext/boost/mpl/aux_/config/forwarding.hpp +1 -1
- data/ext/boost/mpl/aux_/config/gcc.hpp +1 -1
- data/ext/boost/mpl/aux_/config/has_apply.hpp +1 -1
- data/ext/boost/mpl/aux_/config/has_xxx.hpp +1 -1
- data/ext/boost/mpl/aux_/config/integral.hpp +1 -1
- data/ext/boost/mpl/aux_/config/intel.hpp +1 -1
- data/ext/boost/mpl/aux_/config/lambda.hpp +1 -1
- data/ext/boost/mpl/aux_/config/msvc.hpp +1 -1
- data/ext/boost/mpl/aux_/config/msvc_typename.hpp +1 -1
- data/ext/boost/mpl/aux_/config/nttp.hpp +1 -1
- data/ext/boost/mpl/aux_/config/operators.hpp +33 -0
- data/ext/boost/mpl/aux_/config/overload_resolution.hpp +1 -1
- data/ext/boost/mpl/aux_/config/pp_counter.hpp +1 -1
- data/ext/boost/mpl/aux_/config/preprocessor.hpp +1 -1
- data/ext/boost/mpl/aux_/config/static_constant.hpp +1 -1
- data/ext/boost/mpl/aux_/config/ttp.hpp +1 -1
- data/ext/boost/mpl/aux_/config/typeof.hpp +1 -1
- data/ext/boost/mpl/aux_/config/use_preprocessed.hpp +1 -1
- data/ext/boost/mpl/aux_/config/workaround.hpp +1 -1
- data/ext/boost/mpl/aux_/contains_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/count_args.hpp +105 -0
- data/ext/boost/mpl/aux_/count_impl.hpp +44 -0
- data/ext/boost/mpl/aux_/empty_impl.hpp +43 -0
- data/ext/boost/mpl/aux_/erase_impl.hpp +69 -0
- data/ext/boost/mpl/aux_/erase_key_impl.hpp +32 -0
- data/ext/boost/mpl/aux_/filter_iter.hpp +140 -0
- data/ext/boost/mpl/aux_/fold_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/fold_impl_body.hpp +365 -0
- data/ext/boost/mpl/aux_/fold_op.hpp +37 -0
- data/ext/boost/mpl/aux_/fold_pred.hpp +37 -0
- data/ext/boost/mpl/aux_/front_impl.hpp +41 -0
- data/ext/boost/mpl/aux_/full_lambda.hpp +1 -1
- data/ext/boost/mpl/aux_/has_apply.hpp +1 -1
- data/ext/boost/mpl/aux_/has_begin.hpp +1 -1
- data/ext/boost/mpl/aux_/has_key_impl.hpp +34 -0
- data/ext/boost/mpl/aux_/has_rebind.hpp +99 -0
- data/ext/boost/mpl/aux_/has_size.hpp +1 -1
- data/ext/boost/mpl/aux_/has_tag.hpp +1 -1
- data/ext/boost/mpl/aux_/has_type.hpp +1 -1
- data/ext/boost/mpl/aux_/include_preprocessed.hpp +1 -1
- data/ext/boost/mpl/aux_/insert_impl.hpp +68 -0
- data/ext/boost/mpl/aux_/insert_range_impl.hpp +77 -0
- data/ext/boost/mpl/aux_/inserter_algorithm.hpp +1 -1
- data/ext/boost/mpl/aux_/integral_wrapper.hpp +1 -1
- data/ext/boost/mpl/aux_/is_msvc_eti_arg.hpp +1 -1
- data/ext/boost/mpl/aux_/iter_apply.hpp +1 -1
- data/ext/boost/mpl/aux_/iter_fold_if_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/iter_fold_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/iter_push_front.hpp +36 -0
- data/ext/boost/mpl/aux_/joint_iter.hpp +120 -0
- data/ext/boost/mpl/aux_/lambda_arity_param.hpp +1 -1
- data/ext/boost/mpl/aux_/lambda_no_ctps.hpp +193 -0
- data/ext/boost/mpl/aux_/lambda_spec.hpp +1 -1
- data/ext/boost/mpl/aux_/lambda_support.hpp +1 -1
- data/ext/boost/mpl/aux_/largest_int.hpp +1 -1
- data/ext/boost/mpl/aux_/logical_op.hpp +165 -0
- data/ext/boost/mpl/aux_/msvc_dtw.hpp +68 -0
- data/ext/boost/mpl/aux_/msvc_eti_base.hpp +1 -1
- data/ext/boost/mpl/aux_/msvc_is_class.hpp +58 -0
- data/ext/boost/mpl/aux_/msvc_never_true.hpp +1 -1
- data/ext/boost/mpl/aux_/msvc_type.hpp +1 -1
- data/ext/boost/mpl/aux_/na.hpp +1 -1
- data/ext/boost/mpl/aux_/na_assert.hpp +1 -1
- data/ext/boost/mpl/aux_/na_fwd.hpp +1 -1
- data/ext/boost/mpl/aux_/na_spec.hpp +1 -1
- data/ext/boost/mpl/aux_/nested_type_wknd.hpp +1 -1
- data/ext/boost/mpl/aux_/nttp_decl.hpp +1 -1
- data/ext/boost/mpl/aux_/numeric_cast_utils.hpp +1 -1
- data/ext/boost/mpl/aux_/numeric_op.hpp +1 -1
- data/ext/boost/mpl/aux_/order_impl.hpp +76 -0
- data/ext/boost/mpl/aux_/overload_names.hpp +48 -0
- data/ext/boost/mpl/aux_/partition_op.hpp +58 -0
- data/ext/boost/mpl/aux_/pop_back_impl.hpp +34 -0
- data/ext/boost/mpl/aux_/pop_front_impl.hpp +44 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/and.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/apply.hpp +169 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp +461 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/arg.hpp +117 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp +300 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/bind.hpp +397 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp +46 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/bitand.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/bitor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/deque.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/divides.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp +558 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/greater.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/inherit.hpp +139 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp +229 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/less.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/less_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/list.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/list_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/map.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/minus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/modulus.hpp +101 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/or.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/plus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/quote.hpp +119 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp +295 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp +295 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/set.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/set_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/shift_left.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/shift_right.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/template_arity.hpp +40 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/times.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/vector.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc/vector_c.hpp +309 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/and.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/apply.hpp +169 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp +456 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/arg.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp +306 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/bind.hpp +403 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp +46 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/deque.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/divides.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp +558 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/greater.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/inherit.hpp +141 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp +229 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/less.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/list.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/list_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/map.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/minus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/modulus.hpp +101 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/or.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/plus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/quote.hpp +11 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp +295 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp +295 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/set.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/set_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp +40 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/times.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/vector.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp +309 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp +169 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp +456 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp +117 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp +300 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp +397 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp +46 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp +558 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp +139 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp +229 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp +101 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp +11 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp +295 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp +295 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp +40 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp +309 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/and.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/apply.hpp +169 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp +84 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/arg.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp +406 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/bind.hpp +515 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp +53 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/bitand.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/bitor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/deque.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/divides.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp +536 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/greater.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/inherit.hpp +141 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp +229 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/less.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/less_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/list.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/list_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/map.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/minus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/modulus.hpp +101 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/or.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/plus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/quote.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp +231 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp +231 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/set.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/set_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/shift_left.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/shift_right.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp +11 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/times.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/vector.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/dmc/vector_c.hpp +309 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp +440 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/bitand.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/bitor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/deque.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/divides.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/inherit.hpp +141 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp +229 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/list_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/map.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/modulus.hpp +101 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp +231 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/set.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/set_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/shift_left.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/shift_right.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/vector_c.hpp +309 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp +132 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp +132 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/and.hpp +73 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/apply.hpp +166 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp +46 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp +247 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/arg.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/bind.hpp +432 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp +46 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp +149 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp +149 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp +149 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/deque.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/divides.hpp +148 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp +293 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp +554 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/greater.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/inherit.hpp +166 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp +293 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp +229 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/less.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/list.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/list_c.hpp +534 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/map.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/minus.hpp +148 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/modulus.hpp +115 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/or.hpp +73 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/plus.hpp +148 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/quote.hpp +11 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp +343 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp +343 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/set.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/set_c.hpp +534 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp +114 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp +114 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp +46 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/times.hpp +148 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp +109 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/vector.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp +534 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/and.hpp +71 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/apply.hpp +160 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp +46 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp +138 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/arg.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/bind.hpp +432 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp +46 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp +151 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp +151 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp +151 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/deque.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/divides.hpp +150 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp +245 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp +554 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/greater.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/inherit.hpp +166 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp +245 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp +229 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/less.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/list.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/list_c.hpp +534 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/map.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/minus.hpp +150 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/modulus.hpp +115 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp +102 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/or.hpp +71 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/plus.hpp +150 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/quote.hpp +116 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp +295 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp +295 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/set.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/set_c.hpp +534 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp +114 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp +114 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp +46 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/times.hpp +150 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp +109 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/vector.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp +534 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/and.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/apply.hpp +169 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp +456 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/arg.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp +440 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/bind.hpp +561 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp +147 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/deque.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/divides.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp +554 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/greater.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/inherit.hpp +141 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp +229 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/less.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/list.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/map.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/minus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/modulus.hpp +101 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/or.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/plus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/quote.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp +231 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp +231 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/set.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp +11 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/times.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/vector.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp +309 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/and.hpp +73 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp +268 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp +50 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp +78 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp +486 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp +590 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp +134 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp +134 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp +134 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp +245 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp +554 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/greater.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp +166 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp +245 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp +229 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/less.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/list.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp +534 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/map.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/minus.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp +101 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/or.hpp +73 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/plus.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp +116 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp +295 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp +295 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/set.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp +534 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp +40 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/times.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp +109 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/vector.hpp +556 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp +534 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/and.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp +169 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp +84 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp +369 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp +466 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp +157 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp +157 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp +157 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp +156 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp +98 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp +554 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/greater.hpp +98 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp +98 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp +141 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp +229 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/less.hpp +98 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp +98 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/list.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/map.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/minus.hpp +156 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp +111 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp +98 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/or.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp +156 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp +11 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp +231 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp +231 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/set.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp +110 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp +110 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp +40 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/times.hpp +156 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/vector.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp +309 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/advance_forward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/and.hpp +64 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/apply.hpp +139 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp +84 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/arg.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp +440 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/bind.hpp +561 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/bitand.hpp +142 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/bitor.hpp +142 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/bitxor.hpp +142 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/deque.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/divides.hpp +141 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/equal_to.hpp +92 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/full_lambda.hpp +554 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/greater.hpp +92 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/greater_equal.hpp +92 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/inherit.hpp +125 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp +228 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/less.hpp +92 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/less_equal.hpp +92 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/list.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/list_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/map.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/minus.hpp +141 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/modulus.hpp +99 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp +92 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/or.hpp +64 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/plus.hpp +141 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/quote.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp +231 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp +231 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/set.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/set_c.hpp +328 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/shift_left.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/shift_right.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/template_arity.hpp +11 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/times.hpp +141 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/unpack_args.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/vector.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/plain/vector_c.hpp +309 -0
- data/ext/boost/mpl/aux_/preprocessor/add.hpp +65 -0
- data/ext/boost/mpl/aux_/preprocessor/def_params_tail.hpp +1 -1
- data/ext/boost/mpl/aux_/preprocessor/default_params.hpp +1 -1
- data/ext/boost/mpl/aux_/preprocessor/enum.hpp +1 -1
- data/ext/boost/mpl/aux_/preprocessor/ext_params.hpp +78 -0
- data/ext/boost/mpl/aux_/preprocessor/filter_params.hpp +1 -1
- data/ext/boost/mpl/aux_/preprocessor/is_seq.hpp +54 -0
- data/ext/boost/mpl/aux_/preprocessor/params.hpp +1 -1
- data/ext/boost/mpl/aux_/preprocessor/partial_spec_params.hpp +32 -0
- data/ext/boost/mpl/aux_/preprocessor/range.hpp +23 -0
- data/ext/boost/mpl/aux_/preprocessor/repeat.hpp +51 -0
- data/ext/boost/mpl/aux_/preprocessor/sub.hpp +1 -1
- data/ext/boost/mpl/aux_/preprocessor/token_equal.hpp +56 -0
- data/ext/boost/mpl/aux_/preprocessor/tuple.hpp +29 -0
- data/ext/boost/mpl/aux_/ptr_to_ref.hpp +46 -0
- data/ext/boost/mpl/aux_/push_back_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/push_front_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/range_c/O1_size.hpp +31 -0
- data/ext/boost/mpl/aux_/range_c/back.hpp +34 -0
- data/ext/boost/mpl/aux_/range_c/empty.hpp +37 -0
- data/ext/boost/mpl/aux_/range_c/front.hpp +33 -0
- data/ext/boost/mpl/aux_/range_c/iterator.hpp +106 -0
- data/ext/boost/mpl/aux_/range_c/size.hpp +37 -0
- data/ext/boost/mpl/aux_/range_c/tag.hpp +24 -0
- data/ext/boost/mpl/aux_/reverse_fold_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/reverse_fold_impl_body.hpp +412 -0
- data/ext/boost/mpl/aux_/reverse_iter_fold_impl.hpp +43 -0
- data/ext/boost/mpl/aux_/sequence_wrapper.hpp +292 -0
- data/ext/boost/mpl/aux_/shift_op.hpp +87 -0
- data/ext/boost/mpl/aux_/single_element_iter.hpp +118 -0
- data/ext/boost/mpl/aux_/size_impl.hpp +1 -1
- data/ext/boost/mpl/aux_/sort_impl.hpp +121 -0
- data/ext/boost/mpl/aux_/static_cast.hpp +1 -1
- data/ext/boost/mpl/aux_/template_arity.hpp +1 -1
- data/ext/boost/mpl/aux_/template_arity_fwd.hpp +1 -1
- data/ext/boost/mpl/aux_/test.hpp +32 -0
- data/ext/boost/mpl/aux_/test/assert.hpp +29 -0
- data/ext/boost/mpl/aux_/test/data.hpp +25 -0
- data/ext/boost/mpl/aux_/test/test_case.hpp +21 -0
- data/ext/boost/mpl/aux_/traits_lambda_spec.hpp +1 -1
- data/ext/boost/mpl/aux_/transform_iter.hpp +123 -0
- data/ext/boost/mpl/aux_/type_wrapper.hpp +1 -1
- data/ext/boost/mpl/aux_/unwrap.hpp +47 -0
- data/ext/boost/mpl/aux_/value_wknd.hpp +1 -1
- data/ext/boost/mpl/aux_/yes_no.hpp +1 -1
- data/ext/boost/mpl/back.hpp +39 -0
- data/ext/boost/mpl/back_fwd.hpp +1 -1
- data/ext/boost/mpl/back_inserter.hpp +1 -1
- data/ext/boost/mpl/base.hpp +35 -0
- data/ext/boost/mpl/begin.hpp +19 -0
- data/ext/boost/mpl/begin_end.hpp +1 -1
- data/ext/boost/mpl/begin_end_fwd.hpp +1 -1
- data/ext/boost/mpl/bind.hpp +1 -1
- data/ext/boost/mpl/bind_fwd.hpp +1 -1
- data/ext/boost/mpl/bitand.hpp +45 -0
- data/ext/boost/mpl/bitor.hpp +45 -0
- data/ext/boost/mpl/bitwise.hpp +24 -0
- data/ext/boost/mpl/bitxor.hpp +23 -0
- data/ext/boost/mpl/bool.hpp +1 -1
- data/ext/boost/mpl/bool_fwd.hpp +1 -1
- data/ext/boost/mpl/char.hpp +22 -0
- data/ext/boost/mpl/char_fwd.hpp +27 -0
- data/ext/boost/mpl/clear.hpp +1 -1
- data/ext/boost/mpl/clear_fwd.hpp +1 -1
- data/ext/boost/mpl/comparison.hpp +1 -1
- data/ext/boost/mpl/contains.hpp +1 -1
- data/ext/boost/mpl/contains_fwd.hpp +1 -1
- data/ext/boost/mpl/copy.hpp +58 -0
- data/ext/boost/mpl/copy_if.hpp +96 -0
- data/ext/boost/mpl/count.hpp +40 -0
- data/ext/boost/mpl/count_fwd.hpp +24 -0
- data/ext/boost/mpl/count_if.hpp +79 -0
- data/ext/boost/mpl/deque.hpp +58 -0
- data/ext/boost/mpl/deref.hpp +1 -1
- data/ext/boost/mpl/distance.hpp +1 -1
- data/ext/boost/mpl/distance_fwd.hpp +1 -1
- data/ext/boost/mpl/divides.hpp +21 -0
- data/ext/boost/mpl/empty.hpp +39 -0
- data/ext/boost/mpl/empty_base.hpp +59 -0
- data/ext/boost/mpl/empty_fwd.hpp +1 -1
- data/ext/boost/mpl/empty_sequence.hpp +42 -0
- data/ext/boost/mpl/end.hpp +19 -0
- data/ext/boost/mpl/equal.hpp +112 -0
- data/ext/boost/mpl/equal_to.hpp +1 -1
- data/ext/boost/mpl/erase.hpp +42 -0
- data/ext/boost/mpl/erase_fwd.hpp +24 -0
- data/ext/boost/mpl/erase_key.hpp +41 -0
- data/ext/boost/mpl/erase_key_fwd.hpp +24 -0
- data/ext/boost/mpl/eval_if.hpp +1 -1
- data/ext/boost/mpl/filter_view.hpp +46 -0
- data/ext/boost/mpl/find.hpp +1 -1
- data/ext/boost/mpl/find_if.hpp +1 -1
- data/ext/boost/mpl/fold.hpp +1 -1
- data/ext/boost/mpl/for_each.hpp +116 -0
- data/ext/boost/mpl/front.hpp +39 -0
- data/ext/boost/mpl/front_fwd.hpp +1 -1
- data/ext/boost/mpl/front_inserter.hpp +1 -1
- data/ext/boost/mpl/greater.hpp +1 -1
- data/ext/boost/mpl/greater_equal.hpp +1 -1
- data/ext/boost/mpl/has_key.hpp +41 -0
- data/ext/boost/mpl/has_key_fwd.hpp +25 -0
- data/ext/boost/mpl/has_xxx.hpp +1 -1
- data/ext/boost/mpl/identity.hpp +1 -1
- data/ext/boost/mpl/if.hpp +1 -1
- data/ext/boost/mpl/index_if.hpp +60 -0
- data/ext/boost/mpl/index_of.hpp +39 -0
- data/ext/boost/mpl/inherit.hpp +229 -0
- data/ext/boost/mpl/inherit_linearly.hpp +39 -0
- data/ext/boost/mpl/insert.hpp +41 -0
- data/ext/boost/mpl/insert_fwd.hpp +24 -0
- data/ext/boost/mpl/insert_range.hpp +41 -0
- data/ext/boost/mpl/insert_range_fwd.hpp +24 -0
- data/ext/boost/mpl/inserter.hpp +1 -1
- data/ext/boost/mpl/int.hpp +1 -1
- data/ext/boost/mpl/int_fwd.hpp +1 -1
- data/ext/boost/mpl/integral_c.hpp +1 -1
- data/ext/boost/mpl/integral_c_fwd.hpp +1 -1
- data/ext/boost/mpl/integral_c_tag.hpp +1 -1
- data/ext/boost/mpl/is_placeholder.hpp +67 -0
- data/ext/boost/mpl/is_sequence.hpp +112 -0
- data/ext/boost/mpl/iter_fold.hpp +1 -1
- data/ext/boost/mpl/iter_fold_if.hpp +1 -1
- data/ext/boost/mpl/iterator_category.hpp +35 -0
- data/ext/boost/mpl/iterator_range.hpp +1 -1
- data/ext/boost/mpl/iterator_tags.hpp +1 -1
- data/ext/boost/mpl/joint_view.hpp +65 -0
- data/ext/boost/mpl/key_type.hpp +42 -0
- data/ext/boost/mpl/key_type_fwd.hpp +25 -0
- data/ext/boost/mpl/lambda.hpp +1 -1
- data/ext/boost/mpl/lambda_fwd.hpp +1 -1
- data/ext/boost/mpl/less.hpp +1 -1
- data/ext/boost/mpl/less_equal.hpp +1 -1
- data/ext/boost/mpl/limits/arity.hpp +1 -1
- data/ext/boost/mpl/limits/list.hpp +1 -1
- data/ext/boost/mpl/limits/map.hpp +21 -0
- data/ext/boost/mpl/limits/set.hpp +21 -0
- data/ext/boost/mpl/limits/string.hpp +21 -0
- data/ext/boost/mpl/limits/unrolling.hpp +21 -0
- data/ext/boost/mpl/limits/vector.hpp +1 -1
- data/ext/boost/mpl/list.hpp +1 -1
- data/ext/boost/mpl/list/aux_/O1_size.hpp +1 -1
- data/ext/boost/mpl/list/aux_/begin_end.hpp +1 -1
- data/ext/boost/mpl/list/aux_/clear.hpp +1 -1
- data/ext/boost/mpl/list/aux_/empty.hpp +1 -1
- data/ext/boost/mpl/list/aux_/front.hpp +1 -1
- data/ext/boost/mpl/list/aux_/include_preprocessed.hpp +1 -1
- data/ext/boost/mpl/list/aux_/item.hpp +1 -1
- data/ext/boost/mpl/list/aux_/iterator.hpp +1 -1
- data/ext/boost/mpl/list/aux_/numbered.hpp +68 -0
- data/ext/boost/mpl/list/aux_/numbered_c.hpp +71 -0
- data/ext/boost/mpl/list/aux_/pop_front.hpp +1 -1
- data/ext/boost/mpl/list/aux_/preprocessed/plain/list10_c.hpp +164 -0
- data/ext/boost/mpl/list/aux_/preprocessed/plain/list20_c.hpp +173 -0
- data/ext/boost/mpl/list/aux_/preprocessed/plain/list30.hpp +189 -0
- data/ext/boost/mpl/list/aux_/preprocessed/plain/list30_c.hpp +183 -0
- data/ext/boost/mpl/list/aux_/preprocessed/plain/list40.hpp +209 -0
- data/ext/boost/mpl/list/aux_/preprocessed/plain/list40_c.hpp +193 -0
- data/ext/boost/mpl/list/aux_/preprocessed/plain/list50.hpp +229 -0
- data/ext/boost/mpl/list/aux_/preprocessed/plain/list50_c.hpp +203 -0
- data/ext/boost/mpl/list/aux_/push_back.hpp +1 -1
- data/ext/boost/mpl/list/aux_/push_front.hpp +1 -1
- data/ext/boost/mpl/list/aux_/size.hpp +1 -1
- data/ext/boost/mpl/list/aux_/tag.hpp +1 -1
- data/ext/boost/mpl/list/list0.hpp +1 -1
- data/ext/boost/mpl/list/list0_c.hpp +31 -0
- data/ext/boost/mpl/list/list10.hpp +1 -1
- data/ext/boost/mpl/list/list10_c.hpp +43 -0
- data/ext/boost/mpl/list/list20.hpp +1 -1
- data/ext/boost/mpl/list/list20_c.hpp +43 -0
- data/ext/boost/mpl/list/list30.hpp +43 -0
- data/ext/boost/mpl/list/list30_c.hpp +43 -0
- data/ext/boost/mpl/list/list40.hpp +43 -0
- data/ext/boost/mpl/list/list40_c.hpp +43 -0
- data/ext/boost/mpl/list/list50.hpp +43 -0
- data/ext/boost/mpl/list/list50_c.hpp +43 -0
- data/ext/boost/mpl/list_c.hpp +60 -0
- data/ext/boost/mpl/logical.hpp +1 -1
- data/ext/boost/mpl/long.hpp +1 -1
- data/ext/boost/mpl/long_fwd.hpp +1 -1
- data/ext/boost/mpl/lower_bound.hpp +143 -0
- data/ext/boost/mpl/map.hpp +57 -0
- data/ext/boost/mpl/map/aux_/at_impl.hpp +144 -0
- data/ext/boost/mpl/map/aux_/begin_end_impl.hpp +50 -0
- data/ext/boost/mpl/map/aux_/clear_impl.hpp +35 -0
- data/ext/boost/mpl/map/aux_/contains_impl.hpp +43 -0
- data/ext/boost/mpl/map/aux_/empty_impl.hpp +34 -0
- data/ext/boost/mpl/map/aux_/erase_impl.hpp +41 -0
- data/ext/boost/mpl/map/aux_/erase_key_impl.hpp +53 -0
- data/ext/boost/mpl/map/aux_/has_key_impl.hpp +44 -0
- data/ext/boost/mpl/map/aux_/include_preprocessed.hpp +53 -0
- data/ext/boost/mpl/map/aux_/insert_impl.hpp +72 -0
- data/ext/boost/mpl/map/aux_/item.hpp +138 -0
- data/ext/boost/mpl/map/aux_/iterator.hpp +169 -0
- data/ext/boost/mpl/map/aux_/key_type_impl.hpp +36 -0
- data/ext/boost/mpl/map/aux_/map0.hpp +74 -0
- data/ext/boost/mpl/map/aux_/numbered.hpp +110 -0
- data/ext/boost/mpl/map/aux_/preprocessed/no_ctps/map10.hpp +350 -0
- data/ext/boost/mpl/map/aux_/preprocessed/no_ctps/map20.hpp +370 -0
- data/ext/boost/mpl/map/aux_/preprocessed/no_ctps/map30.hpp +390 -0
- data/ext/boost/mpl/map/aux_/preprocessed/no_ctps/map40.hpp +410 -0
- data/ext/boost/mpl/map/aux_/preprocessed/no_ctps/map50.hpp +430 -0
- data/ext/boost/mpl/map/aux_/preprocessed/plain/map10.hpp +290 -0
- data/ext/boost/mpl/map/aux_/preprocessed/plain/map20.hpp +310 -0
- data/ext/boost/mpl/map/aux_/preprocessed/plain/map30.hpp +330 -0
- data/ext/boost/mpl/map/aux_/preprocessed/plain/map40.hpp +350 -0
- data/ext/boost/mpl/map/aux_/preprocessed/plain/map50.hpp +370 -0
- data/ext/boost/mpl/map/aux_/preprocessed/typeof_based/map10.hpp +150 -0
- data/ext/boost/mpl/map/aux_/preprocessed/typeof_based/map20.hpp +170 -0
- data/ext/boost/mpl/map/aux_/preprocessed/typeof_based/map30.hpp +190 -0
- data/ext/boost/mpl/map/aux_/preprocessed/typeof_based/map40.hpp +210 -0
- data/ext/boost/mpl/map/aux_/preprocessed/typeof_based/map50.hpp +230 -0
- data/ext/boost/mpl/map/aux_/size_impl.hpp +33 -0
- data/ext/boost/mpl/map/aux_/tag.hpp +24 -0
- data/ext/boost/mpl/map/aux_/value_type_impl.hpp +36 -0
- data/ext/boost/mpl/map/map0.hpp +36 -0
- data/ext/boost/mpl/map/map10.hpp +44 -0
- data/ext/boost/mpl/map/map20.hpp +44 -0
- data/ext/boost/mpl/map/map30.hpp +44 -0
- data/ext/boost/mpl/map/map40.hpp +44 -0
- data/ext/boost/mpl/map/map50.hpp +44 -0
- data/ext/boost/mpl/math/fixed_c.hpp +36 -0
- data/ext/boost/mpl/math/is_even.hpp +54 -0
- data/ext/boost/mpl/math/rational_c.hpp +37 -0
- data/ext/boost/mpl/max.hpp +19 -0
- data/ext/boost/mpl/max_element.hpp +72 -0
- data/ext/boost/mpl/min.hpp +19 -0
- data/ext/boost/mpl/min_element.hpp +40 -0
- data/ext/boost/mpl/min_max.hpp +46 -0
- data/ext/boost/mpl/minus.hpp +1 -1
- data/ext/boost/mpl/modulus.hpp +22 -0
- data/ext/boost/mpl/multiplies.hpp +1 -1
- data/ext/boost/mpl/multiset/aux_/count_impl.hpp +82 -0
- data/ext/boost/mpl/multiset/aux_/insert_impl.hpp +34 -0
- data/ext/boost/mpl/multiset/aux_/item.hpp +114 -0
- data/ext/boost/mpl/multiset/aux_/multiset0.hpp +34 -0
- data/ext/boost/mpl/multiset/aux_/tag.hpp +23 -0
- data/ext/boost/mpl/multiset/multiset0.hpp +36 -0
- data/ext/boost/mpl/negate.hpp +1 -1
- data/ext/boost/mpl/next.hpp +1 -1
- data/ext/boost/mpl/next_prior.hpp +1 -1
- data/ext/boost/mpl/not.hpp +1 -1
- data/ext/boost/mpl/not_equal_to.hpp +1 -1
- data/ext/boost/mpl/numeric_cast.hpp +1 -1
- data/ext/boost/mpl/or.hpp +1 -1
- data/ext/boost/mpl/order.hpp +41 -0
- data/ext/boost/mpl/order_fwd.hpp +25 -0
- data/ext/boost/mpl/pair.hpp +1 -1
- data/ext/boost/mpl/pair_view.hpp +169 -0
- data/ext/boost/mpl/partition.hpp +53 -0
- data/ext/boost/mpl/placeholders.hpp +1 -1
- data/ext/boost/mpl/plus.hpp +1 -1
- data/ext/boost/mpl/pop_back.hpp +39 -0
- data/ext/boost/mpl/pop_back_fwd.hpp +1 -1
- data/ext/boost/mpl/pop_front.hpp +39 -0
- data/ext/boost/mpl/pop_front_fwd.hpp +1 -1
- data/ext/boost/mpl/print.hpp +74 -0
- data/ext/boost/mpl/prior.hpp +1 -1
- data/ext/boost/mpl/protect.hpp +1 -1
- data/ext/boost/mpl/push_back.hpp +1 -1
- data/ext/boost/mpl/push_back_fwd.hpp +1 -1
- data/ext/boost/mpl/push_front.hpp +1 -1
- data/ext/boost/mpl/push_front_fwd.hpp +1 -1
- data/ext/boost/mpl/quote.hpp +1 -1
- data/ext/boost/mpl/range_c.hpp +48 -0
- data/ext/boost/mpl/remove.hpp +52 -0
- data/ext/boost/mpl/remove_if.hpp +1 -1
- data/ext/boost/mpl/replace.hpp +55 -0
- data/ext/boost/mpl/replace_if.hpp +88 -0
- data/ext/boost/mpl/reverse.hpp +38 -0
- data/ext/boost/mpl/reverse_fold.hpp +1 -1
- data/ext/boost/mpl/reverse_iter_fold.hpp +56 -0
- data/ext/boost/mpl/same_as.hpp +1 -1
- data/ext/boost/mpl/sequence_tag.hpp +1 -1
- data/ext/boost/mpl/sequence_tag_fwd.hpp +1 -1
- data/ext/boost/mpl/set.hpp +57 -0
- data/ext/boost/mpl/set/aux_/at_impl.hpp +40 -0
- data/ext/boost/mpl/set/aux_/begin_end_impl.hpp +43 -0
- data/ext/boost/mpl/set/aux_/clear_impl.hpp +35 -0
- data/ext/boost/mpl/set/aux_/empty_impl.hpp +34 -0
- data/ext/boost/mpl/set/aux_/erase_impl.hpp +41 -0
- data/ext/boost/mpl/set/aux_/erase_key_impl.hpp +53 -0
- data/ext/boost/mpl/set/aux_/has_key_impl.hpp +60 -0
- data/ext/boost/mpl/set/aux_/include_preprocessed.hpp +42 -0
- data/ext/boost/mpl/set/aux_/insert_impl.hpp +65 -0
- data/ext/boost/mpl/set/aux_/item.hpp +80 -0
- data/ext/boost/mpl/set/aux_/iterator.hpp +98 -0
- data/ext/boost/mpl/set/aux_/key_type_impl.hpp +34 -0
- data/ext/boost/mpl/set/aux_/numbered.hpp +48 -0
- data/ext/boost/mpl/set/aux_/numbered_c.hpp +48 -0
- data/ext/boost/mpl/set/aux_/preprocessed/plain/set10.hpp +140 -0
- data/ext/boost/mpl/set/aux_/preprocessed/plain/set10_c.hpp +145 -0
- data/ext/boost/mpl/set/aux_/preprocessed/plain/set20.hpp +168 -0
- data/ext/boost/mpl/set/aux_/preprocessed/plain/set20_c.hpp +154 -0
- data/ext/boost/mpl/set/aux_/preprocessed/plain/set30.hpp +195 -0
- data/ext/boost/mpl/set/aux_/preprocessed/plain/set30_c.hpp +164 -0
- data/ext/boost/mpl/set/aux_/preprocessed/plain/set40.hpp +221 -0
- data/ext/boost/mpl/set/aux_/preprocessed/plain/set40_c.hpp +174 -0
- data/ext/boost/mpl/set/aux_/preprocessed/plain/set50.hpp +250 -0
- data/ext/boost/mpl/set/aux_/preprocessed/plain/set50_c.hpp +184 -0
- data/ext/boost/mpl/set/aux_/set0.hpp +69 -0
- data/ext/boost/mpl/set/aux_/size_impl.hpp +33 -0
- data/ext/boost/mpl/set/aux_/tag.hpp +24 -0
- data/ext/boost/mpl/set/aux_/value_type_impl.hpp +34 -0
- data/ext/boost/mpl/set/set0.hpp +35 -0
- data/ext/boost/mpl/set/set0_c.hpp +32 -0
- data/ext/boost/mpl/set/set10.hpp +44 -0
- data/ext/boost/mpl/set/set10_c.hpp +45 -0
- data/ext/boost/mpl/set/set20.hpp +44 -0
- data/ext/boost/mpl/set/set20_c.hpp +45 -0
- data/ext/boost/mpl/set/set30.hpp +44 -0
- data/ext/boost/mpl/set/set30_c.hpp +45 -0
- data/ext/boost/mpl/set/set40.hpp +44 -0
- data/ext/boost/mpl/set/set40_c.hpp +45 -0
- data/ext/boost/mpl/set/set50.hpp +44 -0
- data/ext/boost/mpl/set/set50_c.hpp +45 -0
- data/ext/boost/mpl/set_c.hpp +60 -0
- data/ext/boost/mpl/shift_left.hpp +22 -0
- data/ext/boost/mpl/shift_right.hpp +22 -0
- data/ext/boost/mpl/single_view.hpp +38 -0
- data/ext/boost/mpl/size.hpp +1 -1
- data/ext/boost/mpl/size_fwd.hpp +1 -1
- data/ext/boost/mpl/size_t.hpp +1 -1
- data/ext/boost/mpl/size_t_fwd.hpp +1 -1
- data/ext/boost/mpl/sizeof.hpp +36 -0
- data/ext/boost/mpl/sort.hpp +27 -0
- data/ext/boost/mpl/stable_partition.hpp +75 -0
- data/ext/boost/mpl/string.hpp +607 -0
- data/ext/boost/mpl/switch.hpp +49 -0
- data/ext/boost/mpl/tag.hpp +1 -1
- data/ext/boost/mpl/times.hpp +1 -1
- data/ext/boost/mpl/transform.hpp +145 -0
- data/ext/boost/mpl/transform_view.hpp +46 -0
- data/ext/boost/mpl/unique.hpp +85 -0
- data/ext/boost/mpl/unpack_args.hpp +150 -0
- data/ext/boost/mpl/upper_bound.hpp +141 -0
- data/ext/boost/mpl/value_type.hpp +42 -0
- data/ext/boost/mpl/value_type_fwd.hpp +25 -0
- data/ext/boost/mpl/vector.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/O1_size.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/at.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/back.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/begin_end.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/clear.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/empty.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/front.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/include_preprocessed.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/item.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/iterator.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/numbered.hpp +218 -0
- data/ext/boost/mpl/vector/aux_/numbered_c.hpp +77 -0
- data/ext/boost/mpl/vector/aux_/pop_back.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/pop_front.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10.hpp +1528 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10_c.hpp +149 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20.hpp +1804 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20_c.hpp +195 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30.hpp +2124 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30_c.hpp +238 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40.hpp +2444 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40_c.hpp +281 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50.hpp +2764 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50_c.hpp +325 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/plain/vector10_c.hpp +149 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/plain/vector20_c.hpp +195 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/plain/vector30.hpp +1464 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/plain/vector30_c.hpp +238 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/plain/vector40.hpp +1784 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/plain/vector40_c.hpp +281 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/plain/vector50.hpp +2104 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/plain/vector50_c.hpp +325 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10_c.hpp +154 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20_c.hpp +163 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30.hpp +179 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30_c.hpp +173 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40.hpp +199 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40_c.hpp +183 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50.hpp +219 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50_c.hpp +193 -0
- data/ext/boost/mpl/vector/aux_/push_back.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/push_front.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/size.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/tag.hpp +1 -1
- data/ext/boost/mpl/vector/aux_/vector0.hpp +1 -1
- data/ext/boost/mpl/vector/vector0.hpp +1 -1
- data/ext/boost/mpl/vector/vector0_c.hpp +31 -0
- data/ext/boost/mpl/vector/vector10.hpp +1 -1
- data/ext/boost/mpl/vector/vector10_c.hpp +46 -0
- data/ext/boost/mpl/vector/vector20.hpp +1 -1
- data/ext/boost/mpl/vector/vector20_c.hpp +46 -0
- data/ext/boost/mpl/vector/vector30.hpp +45 -0
- data/ext/boost/mpl/vector/vector30_c.hpp +47 -0
- data/ext/boost/mpl/vector/vector40.hpp +45 -0
- data/ext/boost/mpl/vector/vector40_c.hpp +46 -0
- data/ext/boost/mpl/vector/vector50.hpp +45 -0
- data/ext/boost/mpl/vector/vector50_c.hpp +46 -0
- data/ext/boost/mpl/vector_c.hpp +61 -0
- data/ext/boost/mpl/void.hpp +1 -1
- data/ext/boost/mpl/void_fwd.hpp +1 -1
- data/ext/boost/mpl/zip_view.hpp +65 -0
- data/ext/boost/numeric/conversion/converter_policies.hpp +8 -0
- data/ext/boost/optional/optional.hpp +2 -2
- data/ext/boost/pointee.hpp +74 -0
- data/ext/boost/preprocessor/{control/deduce_d.hpp → dec.hpp} +3 -8
- data/ext/boost/preprocessor/enum_params_with_a_default.hpp +17 -0
- data/ext/boost/preprocessor/enum_shifted_params.hpp +17 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/lower2.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/upper2.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/iter/forward2.hpp +1338 -0
- data/ext/boost/preprocessor/iteration/detail/iter/reverse1.hpp +1296 -0
- data/ext/boost/preprocessor/repeat_2nd.hpp +17 -0
- data/ext/boost/preprocessor/repetition/enum_params_with_a_default.hpp +25 -0
- data/ext/boost/range/algorithm/equal.hpp +15 -5
- data/ext/boost/range/as_literal.hpp +1 -1
- data/ext/boost/range/size.hpp +3 -3
- data/ext/boost/range/size_type.hpp +33 -23
- data/ext/boost/ratio/config.hpp +86 -0
- data/ext/boost/ratio/detail/mpl/abs.hpp +89 -0
- data/ext/boost/ratio/detail/mpl/gcd.hpp +124 -0
- data/ext/boost/ratio/detail/mpl/lcm.hpp +126 -0
- data/ext/boost/ratio/detail/mpl/sign.hpp +89 -0
- data/ext/boost/ratio/detail/overflow_helpers.hpp +367 -0
- data/ext/boost/ratio/ratio.hpp +233 -0
- data/ext/boost/ratio/ratio_fwd.hpp +84 -0
- data/ext/boost/smart_ptr/detail/sp_counted_base.hpp +3 -3
- data/ext/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp +150 -0
- data/ext/boost/smart_ptr/detail/spinlock_gcc_arm.hpp +27 -2
- data/ext/boost/swap.hpp +12 -0
- data/ext/boost/system/api_config.hpp +42 -0
- data/ext/boost/system/config.hpp +69 -0
- data/ext/boost/system/error_code.hpp +513 -0
- data/ext/boost/system/system_error.hpp +80 -0
- data/ext/boost/thread/barrier.hpp +4 -4
- data/ext/boost/thread/cv_status.hpp +26 -0
- data/ext/boost/thread/detail/config.hpp +119 -5
- data/ext/boost/thread/detail/delete.hpp +45 -0
- data/ext/boost/thread/detail/memory.hpp +156 -0
- data/ext/boost/thread/detail/move.hpp +181 -1
- data/ext/boost/thread/detail/platform.hpp +3 -1
- data/ext/boost/thread/detail/thread.hpp +254 -157
- data/ext/boost/thread/detail/thread_interruption.hpp +12 -11
- data/ext/boost/thread/exceptions.hpp +125 -136
- data/ext/boost/thread/future.hpp +778 -353
- data/ext/boost/thread/locks.hpp +548 -347
- data/ext/boost/thread/once.hpp +3 -1
- data/ext/boost/thread/pthread/condition_variable.hpp +140 -31
- data/ext/boost/thread/pthread/condition_variable_fwd.hpp +143 -15
- data/ext/boost/thread/pthread/mutex.hpp +76 -24
- data/ext/boost/thread/pthread/once.hpp +53 -22
- data/ext/boost/thread/pthread/recursive_mutex.hpp +74 -27
- data/ext/boost/thread/pthread/shared_mutex.hpp +250 -2
- data/ext/boost/thread/pthread/thread_data.hpp +109 -6
- data/ext/boost/thread/pthread/thread_heap_alloc.hpp +4 -4
- data/ext/boost/thread/reverse_lock.hpp +58 -0
- data/ext/boost/thread/shared_lock_guard.hpp +52 -0
- data/ext/boost/thread/shared_mutex.hpp +7 -2
- data/ext/boost/thread/thread.hpp +2 -1
- data/ext/boost/thread/v2/thread.hpp +56 -0
- data/ext/boost/thread/xtime.hpp +4 -4
- data/ext/boost/throw_exception.hpp +13 -4
- data/ext/boost/tuple/detail/tuple_basic.hpp +980 -0
- data/ext/boost/tuple/tuple.hpp +90 -0
- data/ext/boost/type_traits/add_cv.hpp +48 -0
- data/ext/boost/type_traits/common_type.hpp +158 -0
- data/ext/boost/type_traits/cv_traits.hpp +24 -0
- data/ext/boost/type_traits/decay.hpp +44 -0
- data/ext/boost/type_traits/detail/bool_trait_def.hpp +1 -1
- data/ext/boost/type_traits/detail/bool_trait_undef.hpp +1 -1
- data/ext/boost/type_traits/detail/size_t_trait_def.hpp +1 -1
- data/ext/boost/type_traits/detail/size_t_trait_undef.hpp +1 -1
- data/ext/boost/type_traits/detail/type_trait_def.hpp +1 -1
- data/ext/boost/type_traits/detail/type_trait_undef.hpp +1 -1
- data/ext/boost/type_traits/has_nothrow_assign.hpp +44 -0
- data/ext/boost/type_traits/has_trivial_assign.hpp +57 -0
- data/ext/boost/type_traits/intrinsics.hpp +4 -3
- data/ext/boost/type_traits/is_compound.hpp +46 -0
- data/ext/boost/type_traits/is_empty.hpp +229 -0
- data/ext/boost/type_traits/is_object.hpp +53 -0
- data/ext/boost/type_traits/is_stateless.hpp +48 -0
- data/ext/boost/type_traits/object_traits.hpp +33 -0
- data/ext/boost/type_traits/remove_bounds.hpp +48 -0
- data/ext/boost/type_traits/remove_volatile.hpp +88 -0
- data/ext/boost/type_traits/same_traits.hpp +15 -0
- data/ext/boost/type_traits/transform_traits.hpp +21 -0
- data/ext/boost/typeof/message.hpp +8 -0
- data/ext/boost/typeof/native.hpp +60 -0
- data/ext/boost/typeof/typeof.hpp +218 -0
- data/ext/boost/utility/declval.hpp +7 -2
- data/ext/boost/utility/detail/result_of_iterate.hpp +98 -32
- data/ext/boost/utility/result_of.hpp +92 -8
- data/ext/boost/version.hpp +32 -0
- data/ext/common/Account.h +1 -1
- data/ext/common/AccountsDatabase.cpp +1 -1
- data/ext/common/AccountsDatabase.h +1 -1
- data/ext/common/AgentsStarter.cpp +5 -6
- data/ext/common/AgentsStarter.h +4 -4
- data/ext/common/AgentsStarter.hpp +4 -6
- data/ext/common/AnsiColorConstants.h +1 -1
- data/ext/common/ApplicationPool2/Common.h +62 -2
- data/ext/common/ApplicationPool2/ComponentInfo.h +1 -1
- data/ext/common/ApplicationPool2/Group.h +411 -150
- data/ext/common/ApplicationPool2/Implementation.cpp +367 -86
- data/ext/common/ApplicationPool2/Options.h +6 -2
- data/ext/common/ApplicationPool2/PipeWatcher.h +1 -1
- data/ext/common/ApplicationPool2/Pool.h +260 -137
- data/ext/common/ApplicationPool2/Process.h +28 -27
- data/ext/common/ApplicationPool2/Session.h +4 -2
- data/ext/common/ApplicationPool2/Socket.h +1 -1
- data/ext/common/ApplicationPool2/Spawner.h +133 -77
- data/ext/common/ApplicationPool2/SuperGroup.h +16 -15
- data/ext/common/BackgroundEventLoop.cpp +1 -1
- data/ext/common/BackgroundEventLoop.h +1 -1
- data/ext/common/Constants.h +2 -2
- data/ext/common/EventedBufferedInput.h +1 -1
- data/ext/common/EventedClient.h +1 -1
- data/ext/common/EventedMessageServer.h +1 -1
- data/ext/common/EventedServer.h +1 -1
- data/ext/common/Exceptions.h +1 -1
- data/ext/common/FileDescriptor.h +1 -1
- data/ext/common/HttpConstants.h +8 -8
- data/ext/common/IniFile.h +1 -1
- data/ext/common/Logging.cpp +45 -20
- data/ext/common/Logging.h +16 -65
- data/ext/common/MessageClient.h +1 -1
- data/ext/common/MessageReadersWriters.h +1 -1
- data/ext/common/MessageServer.h +1 -1
- data/ext/common/MultiLibeio.cpp +1 -1
- data/ext/common/MultiLibeio.h +1 -1
- data/ext/common/RandomGenerator.h +1 -1
- data/ext/common/ResourceLocator.h +1 -1
- data/ext/common/SafeLibev.h +1 -1
- data/ext/common/ServerInstanceDir.h +1 -1
- data/ext/common/StaticString.h +1 -1
- data/ext/common/StringListCreator.h +1 -1
- data/ext/common/UnionStation.h +1 -1
- data/ext/common/Utils.cpp +6 -1
- data/ext/common/Utils.h +9 -1
- data/ext/common/Utils/BlockingQueue.h +1 -1
- data/ext/common/Utils/CachedFileStat.cpp +1 -1
- data/ext/common/Utils/CachedFileStat.h +1 -1
- data/ext/common/Utils/CachedFileStat.hpp +1 -1
- data/ext/common/Utils/FileChangeChecker.h +1 -1
- data/ext/common/Utils/HashMap.h +1 -1
- data/ext/common/Utils/HttpHeaderBufferer.h +1 -1
- data/ext/common/Utils/IOUtils.cpp +3 -3
- data/ext/common/Utils/IOUtils.h +1 -1
- data/ext/common/Utils/MemZeroGuard.h +1 -1
- data/ext/common/Utils/MemoryBarrier.h +1 -1
- data/ext/common/Utils/MessageIO.h +1 -1
- data/ext/common/Utils/MessagePassing.h +304 -0
- data/ext/common/Utils/ProcessMetricsCollector.h +1 -1
- data/ext/common/Utils/ScopeGuard.h +1 -1
- data/ext/common/Utils/StrIntUtils.cpp +40 -1
- data/ext/common/Utils/StrIntUtils.h +7 -1
- data/ext/common/Utils/StringMap.h +1 -1
- data/ext/common/Utils/SystemTime.cpp +1 -1
- data/ext/common/Utils/SystemTime.h +1 -1
- data/ext/common/Utils/Timer.h +1 -1
- data/ext/common/Utils/VariantMap.h +1 -1
- data/ext/common/agents/Base.cpp +182 -10
- data/ext/common/agents/Base.h +1 -1
- data/ext/common/agents/HelperAgent/AgentOptions.h +1 -1
- data/ext/common/agents/HelperAgent/BacktracesServer.h +1 -1
- data/ext/common/agents/HelperAgent/FileBackedPipe.h +1 -1
- data/ext/common/agents/HelperAgent/Main.cpp +13 -5
- data/ext/common/agents/HelperAgent/RequestHandler.cpp +1 -1
- data/ext/common/agents/HelperAgent/RequestHandler.h +23 -9
- data/ext/common/agents/HelperAgent/ScgiRequestParser.h +1 -1
- data/ext/common/agents/LoggingAgent/DataStoreId.h +1 -1
- data/ext/common/agents/LoggingAgent/FilterSupport.cpp +1 -1
- data/ext/common/agents/LoggingAgent/FilterSupport.h +1 -1
- data/ext/common/agents/LoggingAgent/LoggingServer.h +89 -214
- data/ext/common/agents/LoggingAgent/Main.cpp +9 -19
- data/ext/common/agents/LoggingAgent/RemoteSender.h +9 -2
- data/ext/common/agents/SpawnPreparer.cpp +70 -30
- data/ext/common/agents/Watchdog/Main.cpp +1 -1
- data/ext/libeio/Changes +4 -0
- data/ext/libeio/ecb.h +281 -24
- data/ext/libeio/eio.c +48 -63
- data/ext/libeio/eio.h +7 -6
- data/ext/libeio/libeio.m4 +0 -16
- data/ext/libeio/xthread.h +2 -2
- data/ext/libev/configure +299 -271
- data/ext/nginx/Configuration.c +15 -52
- data/ext/nginx/Configuration.h +0 -2
- data/ext/nginx/ContentHandler.c +13 -2
- data/ext/nginx/ngx_http_passenger_module.c +2 -19
- data/ext/oxt/detail/spin_lock_pthreads.hpp +1 -1
- data/ext/oxt/dynamic_thread_group.hpp +2 -2
- data/ext/oxt/spin_lock.hpp +1 -1
- data/ext/oxt/system_calls.cpp +36 -13
- data/ext/oxt/thread.hpp +11 -5
- data/ext/ruby/extconf.rb +1 -1
- data/ext/ruby/passenger_native_support.c +3 -2
- data/helper-scripts/classic-rails-loader.rb +3 -1
- data/helper-scripts/classic-rails-preloader.rb +4 -1
- data/helper-scripts/node-loader.js +1 -1
- data/helper-scripts/prespawn +1 -1
- data/helper-scripts/rack-loader.rb +3 -1
- data/helper-scripts/rack-preloader.rb +4 -1
- data/helper-scripts/system-memory-stats.py +185 -0
- data/helper-scripts/wsgi-loader.py +1 -1
- data/lib/phusion_passenger.rb +3 -3
- data/lib/phusion_passenger/abstract_installer.rb +1 -1
- data/lib/phusion_passenger/admin_tools.rb +1 -1
- data/lib/phusion_passenger/admin_tools/memory_stats.rb +1 -1
- data/lib/phusion_passenger/admin_tools/server_instance.rb +1 -1
- data/lib/phusion_passenger/analytics_logger.rb +10 -4
- data/lib/phusion_passenger/classic_rails/thread_handler_extension.rb +3 -2
- data/lib/phusion_passenger/common_library.rb +1 -1
- data/lib/phusion_passenger/console_text_template.rb +1 -1
- data/lib/phusion_passenger/constants.rb +6 -5
- data/lib/phusion_passenger/debug_logging.rb +5 -1
- data/lib/phusion_passenger/dependencies.rb +3 -3
- data/lib/phusion_passenger/loader_shared_helpers.rb +12 -7
- data/lib/phusion_passenger/message_channel.rb +1 -1
- data/lib/phusion_passenger/message_client.rb +1 -1
- data/lib/phusion_passenger/native_support.rb +1 -1
- data/lib/phusion_passenger/packaging.rb +7 -4
- data/lib/phusion_passenger/platform_info.rb +1 -1
- data/lib/phusion_passenger/platform_info/apache.rb +2 -2
- data/lib/phusion_passenger/platform_info/binary_compatibility.rb +14 -5
- data/lib/phusion_passenger/platform_info/compiler.rb +8 -1
- data/lib/phusion_passenger/platform_info/curl.rb +1 -1
- data/lib/phusion_passenger/platform_info/linux.rb +1 -1
- data/lib/phusion_passenger/platform_info/operating_system.rb +1 -1
- data/lib/phusion_passenger/platform_info/ruby.rb +2 -2
- data/lib/phusion_passenger/platform_info/zlib.rb +1 -1
- data/lib/phusion_passenger/plugin.rb +2 -2
- data/lib/phusion_passenger/preloader_shared_helpers.rb +14 -1
- data/lib/phusion_passenger/public_api.rb +8 -2
- data/lib/phusion_passenger/{classic_rails_extensions/analytics_logging/ar_abstract_adapter_extension.rb → rack/out_of_band_gc.rb} +35 -28
- data/lib/phusion_passenger/rack/thread_handler_extension.rb +31 -6
- data/lib/phusion_passenger/rails3_extensions/init.rb +15 -9
- data/lib/phusion_passenger/request_handler.rb +104 -47
- data/lib/phusion_passenger/request_handler/thread_handler.rb +28 -7
- data/lib/phusion_passenger/ruby_core_enhancements.rb +34 -5
- data/lib/phusion_passenger/simple_benchmarking.rb +1 -1
- data/lib/phusion_passenger/standalone/app_finder.rb +1 -1
- data/lib/phusion_passenger/standalone/command.rb +5 -5
- data/lib/phusion_passenger/standalone/config_file.rb +1 -1
- data/lib/phusion_passenger/standalone/help_command.rb +1 -1
- data/lib/phusion_passenger/standalone/main.rb +1 -1
- data/lib/phusion_passenger/standalone/package_runtime_command.rb +1 -1
- data/lib/phusion_passenger/standalone/runtime_installer.rb +1 -1
- data/lib/phusion_passenger/standalone/start_command.rb +73 -21
- data/lib/phusion_passenger/standalone/status_command.rb +1 -1
- data/lib/phusion_passenger/standalone/stop_command.rb +1 -1
- data/lib/phusion_passenger/standalone/utils.rb +2 -2
- data/lib/phusion_passenger/standalone/version_command.rb +1 -1
- data/lib/phusion_passenger/utils.rb +1 -1
- data/lib/phusion_passenger/utils/ansi_colors.rb +2 -2
- data/lib/phusion_passenger/utils/file_system_watcher.rb +1 -1
- data/lib/phusion_passenger/utils/hosts_file_parser.rb +2 -2
- data/lib/phusion_passenger/utils/robust_interruption.rb +10 -6
- data/lib/phusion_passenger/utils/tmpdir.rb +2 -2
- data/lib/phusion_passenger/utils/unseekable_socket.rb +1 -1
- data/lib/phusion_passenger/wsgi/request_handler.py +1 -1
- data/resources/templates/error_layout.html.template +4 -0
- data/resources/templates/nginx/not_available_when_natively_packaged.txt.erb +1 -1
- data/resources/templates/standalone/config.erb +1 -0
- data/test/.rspec +3 -0
- data/test/config.json.travis +15 -0
- data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +3 -2
- data/test/cxx/ApplicationPool2/PoolTest.cpp +349 -128
- data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +21 -18
- data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +141 -118
- data/test/cxx/BufferedIOTest.cpp +11 -11
- data/test/cxx/CxxTestMain.cpp +40 -11
- data/test/cxx/EventedClientTest.cpp +18 -18
- data/test/cxx/FilterSupportTest.cpp +1 -1
- data/test/cxx/IOUtilsTest.cpp +18 -10
- data/test/cxx/MessageIOTest.cpp +9 -9
- data/test/cxx/MessagePassingTest.cpp +81 -0
- data/test/cxx/MessageReadersWritersTest.cpp +3 -4
- data/test/cxx/RequestHandlerTest.cpp +69 -9
- data/test/cxx/TestSupport.h +3 -1
- data/test/cxx/UnionStationTest.cpp +43 -82
- data/test/gdbinit.example +31 -0
- data/test/integration_tests/nginx_tests.rb +48 -0
- data/test/integration_tests/spec_helper.rb +1 -0
- data/test/ruby/analytics_logger_spec.rb +11 -19
- data/test/ruby/classic_rails/loader_spec.rb +3 -4
- data/test/ruby/classic_rails/preloader_spec.rb +3 -4
- data/test/ruby/rack/loader_spec.rb +2 -22
- data/test/ruby/rack/preloader_spec.rb +2 -28
- data/test/ruby/rails3.0/loader_spec.rb +26 -0
- data/test/ruby/rails3.0/preloader_spec.rb +32 -0
- data/test/ruby/rails3.1/loader_spec.rb +26 -0
- data/test/ruby/rails3.1/preloader_spec.rb +32 -0
- data/test/ruby/rails3.2/loader_spec.rb +26 -0
- data/test/ruby/rails3.2/preloader_spec.rb +32 -0
- data/test/ruby/request_handler_spec.rb +104 -13
- data/test/ruby/shared/{loader_spec.rb → loader_sharedspec.rb} +1 -1
- data/test/ruby/shared/rails/{analytics_logging_extensions_spec.rb → analytics_logging_extensions_sharedspec.rb} +26 -27
- data/test/ruby/shared/{ruby_loader_spec.rb → ruby_loader_sharedspec.rb} +1 -1
- data/test/ruby/spec_helper.rb +3 -3
- data/test/stub/rails2.3/app/helpers/bar_helper.rb +2 -0
- data/test/stub/rails2.3/app/helpers/foo_helper.rb +2 -0
- data/test/stub/rails3.0/config/environments/production.rb +1 -1
- data/test/stub/rails3.1/Gemfile +37 -0
- data/test/stub/rails3.1/Gemfile.lock +115 -0
- data/test/stub/rails3.1/README +261 -0
- data/test/stub/rails3.1/Rakefile +7 -0
- data/test/stub/rails3.1/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.1/app/assets/javascripts/application.js +9 -0
- data/test/stub/rails3.1/app/assets/stylesheets/application.css +7 -0
- data/test/stub/rails3.1/app/controllers/application_controller.rb +3 -0
- data/test/stub/rails3.1/app/helpers/application_helper.rb +2 -0
- data/test/stub/rails3.1/app/views/layouts/application.html.erb +14 -0
- data/test/stub/rails3.1/config.ru +4 -0
- data/test/stub/rails3.1/config/application.rb +48 -0
- data/test/stub/rails3.1/config/boot.rb +6 -0
- data/test/stub/rails3.1/config/database.yml +25 -0
- data/test/stub/rails3.1/config/environment.rb +5 -0
- data/test/stub/rails3.1/config/environments/development.rb +30 -0
- data/test/stub/rails3.1/config/environments/production.rb +60 -0
- data/test/stub/rails3.1/config/environments/test.rb +39 -0
- data/test/stub/rails3.1/config/initializers/backtrace_silencers.rb +7 -0
- data/test/stub/rails3.1/config/initializers/inflections.rb +10 -0
- data/test/stub/rails3.1/config/initializers/mime_types.rb +5 -0
- data/test/stub/rails3.1/config/initializers/passenger.rb +1 -0
- data/test/stub/rails3.1/config/initializers/secret_token.rb +7 -0
- data/test/stub/rails3.1/config/initializers/session_store.rb +8 -0
- data/test/stub/rails3.1/config/initializers/wrap_parameters.rb +14 -0
- data/test/stub/rails3.1/config/locales/en.yml +5 -0
- data/test/stub/rails3.1/config/routes.rb +58 -0
- data/test/stub/rails3.1/db/seeds.rb +7 -0
- data/test/stub/rails3.1/doc/README_FOR_APP +2 -0
- data/test/stub/rails3.1/public/404.html +26 -0
- data/test/stub/rails3.1/public/422.html +26 -0
- data/test/stub/rails3.1/public/500.html +26 -0
- data/test/stub/rails3.1/public/favicon.ico +0 -0
- data/test/stub/rails3.1/public/index.html +241 -0
- data/test/stub/rails3.1/public/robots.txt +5 -0
- data/test/stub/rails3.1/script/rails +6 -0
- data/test/stub/rails3.1/test/performance/browsing_test.rb +12 -0
- data/test/stub/rails3.1/test/test_helper.rb +13 -0
- data/test/stub/rails3.2/Gemfile +39 -0
- data/test/stub/rails3.2/Gemfile.lock +113 -0
- data/test/stub/rails3.2/Rakefile +7 -0
- data/test/stub/rails3.2/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.2/app/assets/javascripts/application.js +15 -0
- data/test/stub/rails3.2/app/assets/stylesheets/application.css +13 -0
- data/test/stub/rails3.2/app/controllers/application_controller.rb +3 -0
- data/test/stub/rails3.2/app/helpers/application_helper.rb +2 -0
- data/test/stub/rails3.2/app/views/layouts/application.html.erb +14 -0
- data/test/stub/rails3.2/config.ru +4 -0
- data/test/stub/rails3.2/config/application.rb +62 -0
- data/test/stub/rails3.2/config/boot.rb +6 -0
- data/test/stub/rails3.2/config/database.yml +25 -0
- data/test/stub/rails3.2/config/environment.rb +5 -0
- data/test/stub/rails3.2/config/environments/development.rb +37 -0
- data/test/stub/rails3.2/config/environments/production.rb +67 -0
- data/test/stub/rails3.2/config/environments/test.rb +37 -0
- data/test/stub/rails3.2/config/initializers/backtrace_silencers.rb +7 -0
- data/test/stub/rails3.2/config/initializers/inflections.rb +15 -0
- data/test/stub/rails3.2/config/initializers/mime_types.rb +5 -0
- data/test/stub/rails3.2/config/initializers/passenger.rb +1 -0
- data/test/stub/rails3.2/config/initializers/secret_token.rb +7 -0
- data/test/stub/rails3.2/config/initializers/session_store.rb +8 -0
- data/test/stub/rails3.2/config/initializers/wrap_parameters.rb +14 -0
- data/test/stub/rails3.2/config/locales/en.yml +5 -0
- data/test/stub/rails3.2/config/routes.rb +58 -0
- data/test/stub/rails3.2/db/seeds.rb +7 -0
- data/test/stub/rails3.2/doc/README_FOR_APP +2 -0
- data/test/stub/rails3.2/public/404.html +26 -0
- data/test/stub/rails3.2/public/422.html +26 -0
- data/test/stub/rails3.2/public/500.html +25 -0
- data/test/stub/rails3.2/public/favicon.ico +0 -0
- data/test/stub/rails3.2/public/index.html +241 -0
- data/test/stub/rails3.2/public/robots.txt +5 -0
- data/test/stub/rails3.2/script/rails +6 -0
- data/test/stub/rails3.2/test/performance/browsing_test.rb +12 -0
- data/test/stub/rails3.2/test/test_helper.rb +13 -0
- data/test/stub/wsgi/passenger_wsgi.py +12 -3
- data/test/support/test_helper.rb +5 -3
- data/test/tut/tut.h +61 -0
- metadata +1173 -236
- data/DEVELOPERS.TXT +0 -108
- data/INSTALL +0 -6
- data/README +0 -45
- data/ext/boost/config/platform/win32.hpp +0 -71
- data/ext/boost/implicit_cast.hpp +0 -29
- data/ext/boost/preprocessor/arithmetic/detail/div_base.hpp +0 -61
- data/ext/boost/preprocessor/arithmetic/mod.hpp +0 -39
- data/ext/boost/preprocessor/comparison/less_equal.hpp +0 -39
- data/ext/boost/preprocessor/logical/not.hpp +0 -30
- data/ext/boost/preprocessor/seq/cat.hpp +0 -49
- data/ext/boost/preprocessor/seq/fold_left.hpp +0 -1070
- data/ext/boost/preprocessor/seq/transform.hpp +0 -48
- data/ext/boost/smart_ptr/detail/atomic_count_win32.hpp +0 -63
- data/ext/boost/smart_ptr/detail/sp_counted_base_w32.hpp +0 -130
- data/ext/boost/utility.hpp +0 -20
- data/ext/boost/utility/base_from_member.hpp +0 -87
- data/ext/boost/utility/binary.hpp +0 -708
- data/lib/phusion_passenger/classic_rails_extensions/analytics_logging/ac_base_extension.rb +0 -67
- data/lib/phusion_passenger/classic_rails_extensions/analytics_logging/ac_benchmarking_extension.rb +0 -48
- data/lib/phusion_passenger/classic_rails_extensions/analytics_logging/ac_rescue_extension.rb +0 -59
- data/lib/phusion_passenger/classic_rails_extensions/analytics_logging/as_cache_extension.rb +0 -130
- data/lib/phusion_passenger/classic_rails_extensions/analytics_logging/av_benchmark_helper_extension.rb +0 -47
- data/lib/phusion_passenger/classic_rails_extensions/init.rb +0 -125
data/ext/libeio/eio.c
CHANGED
@@ -134,6 +134,41 @@ static void eio_destroy (eio_req *req);
|
|
134
134
|
#define statvfs(path,buf) EIO_ENOSYS ()
|
135
135
|
#define fstatvfs(fd,buf) EIO_ENOSYS ()
|
136
136
|
|
137
|
+
#define pread(fd,buf,count,offset) eio__pread (fd, buf, count, offset)
|
138
|
+
#define pwrite(fd,buf,count,offset) eio__pwrite (fd, buf, count, offset)
|
139
|
+
|
140
|
+
#if __GNUC__
|
141
|
+
typedef long long eio_off_t; /* signed for compatibility to msvc */
|
142
|
+
#else
|
143
|
+
typedef __int64 eio_off_t; /* unsigned not supported by msvc */
|
144
|
+
#endif
|
145
|
+
|
146
|
+
static eio_ssize_t
|
147
|
+
eio__pread (int fd, void *buf, eio_ssize_t count, eio_off_t offset)
|
148
|
+
{
|
149
|
+
OVERLAPPED o = { 0 };
|
150
|
+
DWORD got;
|
151
|
+
|
152
|
+
o.Offset = offset;
|
153
|
+
o.OffsetHigh = offset >> 32;
|
154
|
+
|
155
|
+
return ReadFile ((HANDLE)EIO_FD_TO_WIN32_HANDLE (fd), buf, count, &got, &o)
|
156
|
+
? got : -1;
|
157
|
+
}
|
158
|
+
|
159
|
+
static eio_ssize_t
|
160
|
+
eio__pwrite (int fd, void *buf, eio_ssize_t count, eio_off_t offset)
|
161
|
+
{
|
162
|
+
OVERLAPPED o = { 0 };
|
163
|
+
DWORD got;
|
164
|
+
|
165
|
+
o.Offset = offset;
|
166
|
+
o.OffsetHigh = offset >> 32;
|
167
|
+
|
168
|
+
return WriteFile ((HANDLE)EIO_FD_TO_WIN32_HANDLE (fd), buf, count, &got, &o)
|
169
|
+
? got : -1;
|
170
|
+
}
|
171
|
+
|
137
172
|
/* rename() uses MoveFile, which fails to overwrite */
|
138
173
|
#define rename(old,neu) eio__rename (old, neu)
|
139
174
|
|
@@ -381,15 +416,6 @@ static xmutex_t reslock;
|
|
381
416
|
static xmutex_t reqlock;
|
382
417
|
static xcond_t reqwait;
|
383
418
|
|
384
|
-
#if !HAVE_PREADWRITE
|
385
|
-
/*
|
386
|
-
* make our pread/pwrite emulation safe against themselves, but not against
|
387
|
-
* normal read/write by using a mutex. slows down execution a lot,
|
388
|
-
* but that's your problem, not mine.
|
389
|
-
*/
|
390
|
-
static xmutex_t preadwritelock;
|
391
|
-
#endif
|
392
|
-
|
393
419
|
typedef struct etp_worker
|
394
420
|
{
|
395
421
|
struct tmpbuf tmpbuf;
|
@@ -578,7 +604,7 @@ etp_start_thread (void)
|
|
578
604
|
|
579
605
|
X_LOCK (wrklock);
|
580
606
|
|
581
|
-
if (
|
607
|
+
if (xthread_create (&wrk->tid, etp_proc, (void *)wrk))
|
582
608
|
{
|
583
609
|
wrk->prev = &wrk_first;
|
584
610
|
wrk->next = wrk_first.next;
|
@@ -945,45 +971,6 @@ int eio_poll (void)
|
|
945
971
|
/*****************************************************************************/
|
946
972
|
/* work around various missing functions */
|
947
973
|
|
948
|
-
#if !HAVE_PREADWRITE
|
949
|
-
# undef pread
|
950
|
-
# undef pwrite
|
951
|
-
# define pread eio__pread
|
952
|
-
# define pwrite eio__pwrite
|
953
|
-
|
954
|
-
static eio_ssize_t
|
955
|
-
eio__pread (int fd, void *buf, size_t count, off_t offset)
|
956
|
-
{
|
957
|
-
eio_ssize_t res;
|
958
|
-
off_t ooffset;
|
959
|
-
|
960
|
-
X_LOCK (preadwritelock);
|
961
|
-
ooffset = lseek (fd, 0, SEEK_CUR);
|
962
|
-
lseek (fd, offset, SEEK_SET);
|
963
|
-
res = read (fd, buf, count);
|
964
|
-
lseek (fd, ooffset, SEEK_SET);
|
965
|
-
X_UNLOCK (preadwritelock);
|
966
|
-
|
967
|
-
return res;
|
968
|
-
}
|
969
|
-
|
970
|
-
static eio_ssize_t
|
971
|
-
eio__pwrite (int fd, void *buf, size_t count, off_t offset)
|
972
|
-
{
|
973
|
-
eio_ssize_t res;
|
974
|
-
off_t ooffset;
|
975
|
-
|
976
|
-
X_LOCK (preadwritelock);
|
977
|
-
ooffset = lseek (fd, 0, SEEK_CUR);
|
978
|
-
lseek (fd, offset, SEEK_SET);
|
979
|
-
res = write (fd, buf, count);
|
980
|
-
lseek (fd, ooffset, SEEK_SET);
|
981
|
-
X_UNLOCK (preadwritelock);
|
982
|
-
|
983
|
-
return res;
|
984
|
-
}
|
985
|
-
#endif
|
986
|
-
|
987
974
|
#ifndef HAVE_UTIMES
|
988
975
|
|
989
976
|
# undef utimes
|
@@ -1933,31 +1920,31 @@ eio__scandir (eio_req *req, etp_worker *self)
|
|
1933
1920
|
#endif
|
1934
1921
|
#ifdef DT_CHR
|
1935
1922
|
case DT_CHR: ent->type = EIO_DT_CHR; break;
|
1936
|
-
#endif
|
1923
|
+
#endif
|
1937
1924
|
#ifdef DT_MPC
|
1938
1925
|
case DT_MPC: ent->type = EIO_DT_MPC; break;
|
1939
|
-
#endif
|
1926
|
+
#endif
|
1940
1927
|
#ifdef DT_DIR
|
1941
1928
|
case DT_DIR: ent->type = EIO_DT_DIR; break;
|
1942
|
-
#endif
|
1929
|
+
#endif
|
1943
1930
|
#ifdef DT_NAM
|
1944
1931
|
case DT_NAM: ent->type = EIO_DT_NAM; break;
|
1945
|
-
#endif
|
1932
|
+
#endif
|
1946
1933
|
#ifdef DT_BLK
|
1947
1934
|
case DT_BLK: ent->type = EIO_DT_BLK; break;
|
1948
|
-
#endif
|
1935
|
+
#endif
|
1949
1936
|
#ifdef DT_MPB
|
1950
1937
|
case DT_MPB: ent->type = EIO_DT_MPB; break;
|
1951
|
-
#endif
|
1938
|
+
#endif
|
1952
1939
|
#ifdef DT_REG
|
1953
1940
|
case DT_REG: ent->type = EIO_DT_REG; break;
|
1954
|
-
#endif
|
1941
|
+
#endif
|
1955
1942
|
#ifdef DT_NWK
|
1956
1943
|
case DT_NWK: ent->type = EIO_DT_NWK; break;
|
1957
|
-
#endif
|
1944
|
+
#endif
|
1958
1945
|
#ifdef DT_CMP
|
1959
1946
|
case DT_CMP: ent->type = EIO_DT_CMP; break;
|
1960
|
-
#endif
|
1947
|
+
#endif
|
1961
1948
|
#ifdef DT_LNK
|
1962
1949
|
case DT_LNK: ent->type = EIO_DT_LNK; break;
|
1963
1950
|
#endif
|
@@ -2242,6 +2229,8 @@ quit:
|
|
2242
2229
|
X_LOCK (wrklock);
|
2243
2230
|
etp_worker_free (self);
|
2244
2231
|
X_UNLOCK (wrklock);
|
2232
|
+
|
2233
|
+
return 0;
|
2245
2234
|
}
|
2246
2235
|
|
2247
2236
|
/*****************************************************************************/
|
@@ -2249,10 +2238,6 @@ quit:
|
|
2249
2238
|
int ecb_cold
|
2250
2239
|
eio_init (void (*want_poll)(void), void (*done_poll)(void))
|
2251
2240
|
{
|
2252
|
-
#if !HAVE_PREADWRITE
|
2253
|
-
X_MUTEX_CREATE (preadwritelock);
|
2254
|
-
#endif
|
2255
|
-
|
2256
2241
|
return etp_init (want_poll, done_poll);
|
2257
2242
|
}
|
2258
2243
|
|
@@ -2262,7 +2247,7 @@ eio_api_destroy (eio_req *req)
|
|
2262
2247
|
free (req);
|
2263
2248
|
}
|
2264
2249
|
|
2265
|
-
#define REQ(rtype)
|
2250
|
+
#define REQ(rtype) \
|
2266
2251
|
eio_req *req; \
|
2267
2252
|
\
|
2268
2253
|
req = (eio_req *)calloc (1, sizeof *req); \
|
data/ext/libeio/eio.h
CHANGED
@@ -6,14 +6,14 @@
|
|
6
6
|
*
|
7
7
|
* Redistribution and use in source and binary forms, with or without modifica-
|
8
8
|
* tion, are permitted provided that the following conditions are met:
|
9
|
-
*
|
9
|
+
*
|
10
10
|
* 1. Redistributions of source code must retain the above copyright notice,
|
11
11
|
* this list of conditions and the following disclaimer.
|
12
|
-
*
|
12
|
+
*
|
13
13
|
* 2. Redistributions in binary form must reproduce the above copyright
|
14
14
|
* notice, this list of conditions and the following disclaimer in the
|
15
15
|
* documentation and/or other materials provided with the distribution.
|
16
|
-
*
|
16
|
+
*
|
17
17
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
18
18
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
|
19
19
|
* CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
@@ -170,7 +170,9 @@ enum
|
|
170
170
|
/* eio_fallocate flags */
|
171
171
|
enum
|
172
172
|
{
|
173
|
-
|
173
|
+
/* these MUST match the value in linux/falloc.h */
|
174
|
+
EIO_FALLOC_FL_KEEP_SIZE = 1,
|
175
|
+
EIO_FALLOC_FL_PUNCH_HOLE = 2
|
174
176
|
};
|
175
177
|
|
176
178
|
/* timestamps and differences - feel free to use double in your code directly */
|
@@ -195,12 +197,11 @@ enum
|
|
195
197
|
|
196
198
|
/* these use wd + ptr1, but are emulated */
|
197
199
|
EIO_REALPATH,
|
198
|
-
EIO_STATVFS,
|
199
200
|
EIO_READDIR,
|
200
201
|
|
201
202
|
/* all the following requests use wd + ptr1 as path in xxxat functions */
|
202
203
|
EIO_OPEN,
|
203
|
-
EIO_STAT, EIO_LSTAT,
|
204
|
+
EIO_STAT, EIO_LSTAT, EIO_STATVFS,
|
204
205
|
EIO_TRUNCATE,
|
205
206
|
EIO_UTIME,
|
206
207
|
EIO_CHMOD,
|
data/ext/libeio/libeio.m4
CHANGED
@@ -62,22 +62,6 @@ int main (void)
|
|
62
62
|
],ac_cv_fdatasync=yes,ac_cv_fdatasync=no)])
|
63
63
|
test $ac_cv_fdatasync = yes && AC_DEFINE(HAVE_FDATASYNC, 1, fdatasync(2) is available)
|
64
64
|
|
65
|
-
AC_CACHE_CHECK(for pread and pwrite, ac_cv_preadwrite, [AC_LINK_IFELSE([
|
66
|
-
#include <unistd.h>
|
67
|
-
int main (void)
|
68
|
-
{
|
69
|
-
int fd = 0;
|
70
|
-
size_t count = 1;
|
71
|
-
char buf;
|
72
|
-
off_t offset = 1;
|
73
|
-
ssize_t res;
|
74
|
-
res = pread (fd, &buf, count, offset);
|
75
|
-
res = pwrite (fd, &buf, count, offset);
|
76
|
-
return 0;
|
77
|
-
}
|
78
|
-
],ac_cv_preadwrite=yes,ac_cv_preadwrite=no)])
|
79
|
-
test $ac_cv_preadwrite = yes && AC_DEFINE(HAVE_PREADWRITE, 1, pread(2) and pwrite(2) are available)
|
80
|
-
|
81
65
|
AC_CACHE_CHECK(for sendfile, ac_cv_sendfile, [AC_LINK_IFELSE([
|
82
66
|
# include <sys/types.h>
|
83
67
|
#if __linux
|
data/ext/libeio/xthread.h
CHANGED
@@ -51,7 +51,7 @@ typedef pthread_t xthread_t;
|
|
51
51
|
#define X_THREAD_ATFORK(a,b,c)
|
52
52
|
|
53
53
|
static int
|
54
|
-
|
54
|
+
xthread_create (xthread_t *tid, void *(*proc)(void *), void *arg)
|
55
55
|
{
|
56
56
|
int retval;
|
57
57
|
pthread_attr_t attr;
|
@@ -132,7 +132,7 @@ typedef pthread_t xthread_t;
|
|
132
132
|
#endif
|
133
133
|
|
134
134
|
static int
|
135
|
-
|
135
|
+
xthread_create (xthread_t *tid, void *(*proc)(void *), void *arg)
|
136
136
|
{
|
137
137
|
int retval;
|
138
138
|
sigset_t fullsigset, oldsigset;
|
data/ext/libev/configure
CHANGED
@@ -1,11 +1,9 @@
|
|
1
1
|
#! /bin/sh
|
2
2
|
# Guess values for system-dependent variables and create Makefiles.
|
3
|
-
# Generated by GNU Autoconf 2.
|
3
|
+
# Generated by GNU Autoconf 2.69.
|
4
4
|
#
|
5
5
|
#
|
6
|
-
# Copyright (C) 1992
|
7
|
-
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
|
8
|
-
# Foundation, Inc.
|
6
|
+
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
|
9
7
|
#
|
10
8
|
#
|
11
9
|
# This configure script is free software; the Free Software Foundation
|
@@ -89,6 +87,7 @@ fi
|
|
89
87
|
IFS=" "" $as_nl"
|
90
88
|
|
91
89
|
# Find who we are. Look in the path if we contain no directory separator.
|
90
|
+
as_myself=
|
92
91
|
case $0 in #((
|
93
92
|
*[\\/]* ) as_myself=$0 ;;
|
94
93
|
*) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
@@ -133,6 +132,31 @@ export LANGUAGE
|
|
133
132
|
# CDPATH.
|
134
133
|
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
|
135
134
|
|
135
|
+
# Use a proper internal environment variable to ensure we don't fall
|
136
|
+
# into an infinite loop, continuously re-executing ourselves.
|
137
|
+
if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
|
138
|
+
_as_can_reexec=no; export _as_can_reexec;
|
139
|
+
# We cannot yet assume a decent shell, so we have to provide a
|
140
|
+
# neutralization value for shells without unset; and this also
|
141
|
+
# works around shells that cannot unset nonexistent variables.
|
142
|
+
# Preserve -v and -x to the replacement shell.
|
143
|
+
BASH_ENV=/dev/null
|
144
|
+
ENV=/dev/null
|
145
|
+
(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
|
146
|
+
case $- in # ((((
|
147
|
+
*v*x* | *x*v* ) as_opts=-vx ;;
|
148
|
+
*v* ) as_opts=-v ;;
|
149
|
+
*x* ) as_opts=-x ;;
|
150
|
+
* ) as_opts= ;;
|
151
|
+
esac
|
152
|
+
exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
|
153
|
+
# Admittedly, this is quite paranoid, since all the known shells bail
|
154
|
+
# out after a failed `exec'.
|
155
|
+
$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
|
156
|
+
as_fn_exit 255
|
157
|
+
fi
|
158
|
+
# We don't want this to propagate to other subprocesses.
|
159
|
+
{ _as_can_reexec=; unset _as_can_reexec;}
|
136
160
|
if test "x$CONFIG_SHELL" = x; then
|
137
161
|
as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
|
138
162
|
emulate sh
|
@@ -166,7 +190,8 @@ if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
|
|
166
190
|
else
|
167
191
|
exitcode=1; echo positional parameters were not saved.
|
168
192
|
fi
|
169
|
-
test x\$exitcode = x0 || exit 1
|
193
|
+
test x\$exitcode = x0 || exit 1
|
194
|
+
test -x / || exit 1"
|
170
195
|
as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
|
171
196
|
as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
|
172
197
|
eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
|
@@ -211,14 +236,25 @@ IFS=$as_save_IFS
|
|
211
236
|
|
212
237
|
|
213
238
|
if test "x$CONFIG_SHELL" != x; then :
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
239
|
+
export CONFIG_SHELL
|
240
|
+
# We cannot yet assume a decent shell, so we have to provide a
|
241
|
+
# neutralization value for shells without unset; and this also
|
242
|
+
# works around shells that cannot unset nonexistent variables.
|
243
|
+
# Preserve -v and -x to the replacement shell.
|
244
|
+
BASH_ENV=/dev/null
|
245
|
+
ENV=/dev/null
|
246
|
+
(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
|
247
|
+
case $- in # ((((
|
248
|
+
*v*x* | *x*v* ) as_opts=-vx ;;
|
249
|
+
*v* ) as_opts=-v ;;
|
250
|
+
*x* ) as_opts=-x ;;
|
251
|
+
* ) as_opts= ;;
|
252
|
+
esac
|
253
|
+
exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
|
254
|
+
# Admittedly, this is quite paranoid, since all the known shells bail
|
255
|
+
# out after a failed `exec'.
|
256
|
+
$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
|
257
|
+
exit 255
|
222
258
|
fi
|
223
259
|
|
224
260
|
if test x$as_have_required = xno; then :
|
@@ -320,6 +356,14 @@ $as_echo X"$as_dir" |
|
|
320
356
|
|
321
357
|
|
322
358
|
} # as_fn_mkdir_p
|
359
|
+
|
360
|
+
# as_fn_executable_p FILE
|
361
|
+
# -----------------------
|
362
|
+
# Test if FILE is an executable regular file.
|
363
|
+
as_fn_executable_p ()
|
364
|
+
{
|
365
|
+
test -f "$1" && test -x "$1"
|
366
|
+
} # as_fn_executable_p
|
323
367
|
# as_fn_append VAR VALUE
|
324
368
|
# ----------------------
|
325
369
|
# Append the text in VALUE to the end of the definition contained in VAR. Take
|
@@ -441,6 +485,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits
|
|
441
485
|
chmod +x "$as_me.lineno" ||
|
442
486
|
{ $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
|
443
487
|
|
488
|
+
# If we had to re-execute with $CONFIG_SHELL, we're ensured to have
|
489
|
+
# already done that, so ensure we don't try to do so again and fall
|
490
|
+
# in an infinite loop. This has already happened in practice.
|
491
|
+
_as_can_reexec=no; export _as_can_reexec
|
444
492
|
# Don't try to exec as it changes $[0], causing all sort of problems
|
445
493
|
# (the dirname of $[0] is not the place where we might find the
|
446
494
|
# original and so on. Autoconf is especially sensitive to this).
|
@@ -475,16 +523,16 @@ if (echo >conf$$.file) 2>/dev/null; then
|
|
475
523
|
# ... but there are two gotchas:
|
476
524
|
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
|
477
525
|
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
|
478
|
-
# In both cases, we have to default to `cp -
|
526
|
+
# In both cases, we have to default to `cp -pR'.
|
479
527
|
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
|
480
|
-
as_ln_s='cp -
|
528
|
+
as_ln_s='cp -pR'
|
481
529
|
elif ln conf$$.file conf$$ 2>/dev/null; then
|
482
530
|
as_ln_s=ln
|
483
531
|
else
|
484
|
-
as_ln_s='cp -
|
532
|
+
as_ln_s='cp -pR'
|
485
533
|
fi
|
486
534
|
else
|
487
|
-
as_ln_s='cp -
|
535
|
+
as_ln_s='cp -pR'
|
488
536
|
fi
|
489
537
|
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
|
490
538
|
rmdir conf$$.dir 2>/dev/null
|
@@ -496,28 +544,8 @@ else
|
|
496
544
|
as_mkdir_p=false
|
497
545
|
fi
|
498
546
|
|
499
|
-
|
500
|
-
|
501
|
-
else
|
502
|
-
if ls -dL / >/dev/null 2>&1; then
|
503
|
-
as_ls_L_option=L
|
504
|
-
else
|
505
|
-
as_ls_L_option=
|
506
|
-
fi
|
507
|
-
as_test_x='
|
508
|
-
eval sh -c '\''
|
509
|
-
if test -d "$1"; then
|
510
|
-
test -d "$1/.";
|
511
|
-
else
|
512
|
-
case $1 in #(
|
513
|
-
-*)set "./$1";;
|
514
|
-
esac;
|
515
|
-
case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
|
516
|
-
???[sx]*):;;*)false;;esac;fi
|
517
|
-
'\'' sh
|
518
|
-
'
|
519
|
-
fi
|
520
|
-
as_executable_p=$as_test_x
|
547
|
+
as_test_x='test -x'
|
548
|
+
as_executable_p=as_fn_executable_p
|
521
549
|
|
522
550
|
# Sed expression to map a string onto a valid CPP name.
|
523
551
|
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
|
@@ -1277,7 +1305,7 @@ Try \`$0 --help' for more information"
|
|
1277
1305
|
$as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
|
1278
1306
|
expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
|
1279
1307
|
$as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
|
1280
|
-
: ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
|
1308
|
+
: "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
|
1281
1309
|
;;
|
1282
1310
|
|
1283
1311
|
esac
|
@@ -1328,8 +1356,6 @@ target=$target_alias
|
|
1328
1356
|
if test "x$host_alias" != x; then
|
1329
1357
|
if test "x$build_alias" = x; then
|
1330
1358
|
cross_compiling=maybe
|
1331
|
-
$as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
|
1332
|
-
If a cross compiler is detected then cross compile mode will be used" >&2
|
1333
1359
|
elif test "x$build_alias" != "x$host_alias"; then
|
1334
1360
|
cross_compiling=yes
|
1335
1361
|
fi
|
@@ -1585,9 +1611,9 @@ test -n "$ac_init_help" && exit $ac_status
|
|
1585
1611
|
if $ac_init_version; then
|
1586
1612
|
cat <<\_ACEOF
|
1587
1613
|
configure
|
1588
|
-
generated by GNU Autoconf 2.
|
1614
|
+
generated by GNU Autoconf 2.69
|
1589
1615
|
|
1590
|
-
Copyright (C)
|
1616
|
+
Copyright (C) 2012 Free Software Foundation, Inc.
|
1591
1617
|
This configure script is free software; the Free Software Foundation
|
1592
1618
|
gives unlimited permission to copy, distribute and modify it.
|
1593
1619
|
_ACEOF
|
@@ -1631,7 +1657,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
|
|
1631
1657
|
|
1632
1658
|
ac_retval=1
|
1633
1659
|
fi
|
1634
|
-
eval $as_lineno_stack;
|
1660
|
+
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
1635
1661
|
as_fn_set_status $ac_retval
|
1636
1662
|
|
1637
1663
|
} # ac_fn_c_try_compile
|
@@ -1663,7 +1689,7 @@ $as_echo "$ac_try_echo"; } >&5
|
|
1663
1689
|
test ! -s conftest.err
|
1664
1690
|
} && test -s conftest$ac_exeext && {
|
1665
1691
|
test "$cross_compiling" = yes ||
|
1666
|
-
|
1692
|
+
test -x conftest$ac_exeext
|
1667
1693
|
}; then :
|
1668
1694
|
ac_retval=0
|
1669
1695
|
else
|
@@ -1677,7 +1703,7 @@ fi
|
|
1677
1703
|
# interfere with the next link command; also delete a directory that is
|
1678
1704
|
# left behind by Apple's compiler. We do this before executing the actions.
|
1679
1705
|
rm -rf conftest.dSYM conftest_ipa8_conftest.oo
|
1680
|
-
eval $as_lineno_stack;
|
1706
|
+
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
1681
1707
|
as_fn_set_status $ac_retval
|
1682
1708
|
|
1683
1709
|
} # ac_fn_c_try_link
|
@@ -1691,7 +1717,7 @@ ac_fn_c_check_header_compile ()
|
|
1691
1717
|
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
1692
1718
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
|
1693
1719
|
$as_echo_n "checking for $2... " >&6; }
|
1694
|
-
if eval
|
1720
|
+
if eval \${$3+:} false; then :
|
1695
1721
|
$as_echo_n "(cached) " >&6
|
1696
1722
|
else
|
1697
1723
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
@@ -1709,7 +1735,7 @@ fi
|
|
1709
1735
|
eval ac_res=\$$3
|
1710
1736
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
1711
1737
|
$as_echo "$ac_res" >&6; }
|
1712
|
-
eval $as_lineno_stack;
|
1738
|
+
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
1713
1739
|
|
1714
1740
|
} # ac_fn_c_check_header_compile
|
1715
1741
|
|
@@ -1745,7 +1771,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
|
|
1745
1771
|
|
1746
1772
|
ac_retval=1
|
1747
1773
|
fi
|
1748
|
-
eval $as_lineno_stack;
|
1774
|
+
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
1749
1775
|
as_fn_set_status $ac_retval
|
1750
1776
|
|
1751
1777
|
} # ac_fn_c_try_cpp
|
@@ -1787,7 +1813,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
|
|
1787
1813
|
ac_retval=$ac_status
|
1788
1814
|
fi
|
1789
1815
|
rm -rf conftest.dSYM conftest_ipa8_conftest.oo
|
1790
|
-
eval $as_lineno_stack;
|
1816
|
+
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
1791
1817
|
as_fn_set_status $ac_retval
|
1792
1818
|
|
1793
1819
|
} # ac_fn_c_try_run
|
@@ -1800,7 +1826,7 @@ ac_fn_c_check_func ()
|
|
1800
1826
|
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
1801
1827
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
|
1802
1828
|
$as_echo_n "checking for $2... " >&6; }
|
1803
|
-
if eval
|
1829
|
+
if eval \${$3+:} false; then :
|
1804
1830
|
$as_echo_n "(cached) " >&6
|
1805
1831
|
else
|
1806
1832
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
@@ -1855,7 +1881,7 @@ fi
|
|
1855
1881
|
eval ac_res=\$$3
|
1856
1882
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
1857
1883
|
$as_echo "$ac_res" >&6; }
|
1858
|
-
eval $as_lineno_stack;
|
1884
|
+
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
1859
1885
|
|
1860
1886
|
} # ac_fn_c_check_func
|
1861
1887
|
|
@@ -1867,10 +1893,10 @@ $as_echo "$ac_res" >&6; }
|
|
1867
1893
|
ac_fn_c_check_header_mongrel ()
|
1868
1894
|
{
|
1869
1895
|
as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
1870
|
-
if eval
|
1896
|
+
if eval \${$3+:} false; then :
|
1871
1897
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
|
1872
1898
|
$as_echo_n "checking for $2... " >&6; }
|
1873
|
-
if eval
|
1899
|
+
if eval \${$3+:} false; then :
|
1874
1900
|
$as_echo_n "(cached) " >&6
|
1875
1901
|
fi
|
1876
1902
|
eval ac_res=\$$3
|
@@ -1933,7 +1959,7 @@ $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
|
|
1933
1959
|
esac
|
1934
1960
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
|
1935
1961
|
$as_echo_n "checking for $2... " >&6; }
|
1936
|
-
if eval
|
1962
|
+
if eval \${$3+:} false; then :
|
1937
1963
|
$as_echo_n "(cached) " >&6
|
1938
1964
|
else
|
1939
1965
|
eval "$3=\$ac_header_compiler"
|
@@ -1942,7 +1968,7 @@ eval ac_res=\$$3
|
|
1942
1968
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
1943
1969
|
$as_echo "$ac_res" >&6; }
|
1944
1970
|
fi
|
1945
|
-
eval $as_lineno_stack;
|
1971
|
+
eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
1946
1972
|
|
1947
1973
|
} # ac_fn_c_check_header_mongrel
|
1948
1974
|
cat >config.log <<_ACEOF
|
@@ -1950,7 +1976,7 @@ This file contains any messages produced by compilers while
|
|
1950
1976
|
running configure, to aid debugging if configure makes a mistake.
|
1951
1977
|
|
1952
1978
|
It was created by $as_me, which was
|
1953
|
-
generated by GNU Autoconf 2.
|
1979
|
+
generated by GNU Autoconf 2.69. Invocation command line was
|
1954
1980
|
|
1955
1981
|
$ $0 $@
|
1956
1982
|
|
@@ -2208,7 +2234,7 @@ $as_echo "$as_me: loading site script $ac_site_file" >&6;}
|
|
2208
2234
|
|| { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
2209
2235
|
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
2210
2236
|
as_fn_error $? "failed to load site script $ac_site_file
|
2211
|
-
See \`config.log' for more details" "$LINENO" 5
|
2237
|
+
See \`config.log' for more details" "$LINENO" 5; }
|
2212
2238
|
fi
|
2213
2239
|
done
|
2214
2240
|
|
@@ -2347,7 +2373,7 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
|
|
2347
2373
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
|
2348
2374
|
$as_echo_n "checking for a BSD-compatible install... " >&6; }
|
2349
2375
|
if test -z "$INSTALL"; then
|
2350
|
-
if
|
2376
|
+
if ${ac_cv_path_install+:} false; then :
|
2351
2377
|
$as_echo_n "(cached) " >&6
|
2352
2378
|
else
|
2353
2379
|
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
@@ -2367,7 +2393,7 @@ case $as_dir/ in #((
|
|
2367
2393
|
# by default.
|
2368
2394
|
for ac_prog in ginstall scoinst install; do
|
2369
2395
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2370
|
-
if
|
2396
|
+
if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
|
2371
2397
|
if test $ac_prog = install &&
|
2372
2398
|
grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
|
2373
2399
|
# AIX install. It has an incompatible calling convention.
|
@@ -2434,11 +2460,11 @@ am_lf='
|
|
2434
2460
|
'
|
2435
2461
|
case `pwd` in
|
2436
2462
|
*[\\\"\#\$\&\'\`$am_lf]*)
|
2437
|
-
as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5
|
2463
|
+
as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
|
2438
2464
|
esac
|
2439
2465
|
case $srcdir in
|
2440
2466
|
*[\\\"\#\$\&\'\`$am_lf\ \ ]*)
|
2441
|
-
as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5
|
2467
|
+
as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
|
2442
2468
|
esac
|
2443
2469
|
|
2444
2470
|
# Do `set' in a subshell so we don't clobber the current shell's
|
@@ -2524,7 +2550,7 @@ if test "$cross_compiling" != no; then
|
|
2524
2550
|
set dummy ${ac_tool_prefix}strip; ac_word=$2
|
2525
2551
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
2526
2552
|
$as_echo_n "checking for $ac_word... " >&6; }
|
2527
|
-
if
|
2553
|
+
if ${ac_cv_prog_STRIP+:} false; then :
|
2528
2554
|
$as_echo_n "(cached) " >&6
|
2529
2555
|
else
|
2530
2556
|
if test -n "$STRIP"; then
|
@@ -2536,7 +2562,7 @@ do
|
|
2536
2562
|
IFS=$as_save_IFS
|
2537
2563
|
test -z "$as_dir" && as_dir=.
|
2538
2564
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2539
|
-
if
|
2565
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
2540
2566
|
ac_cv_prog_STRIP="${ac_tool_prefix}strip"
|
2541
2567
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
2542
2568
|
break 2
|
@@ -2564,7 +2590,7 @@ if test -z "$ac_cv_prog_STRIP"; then
|
|
2564
2590
|
set dummy strip; ac_word=$2
|
2565
2591
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
2566
2592
|
$as_echo_n "checking for $ac_word... " >&6; }
|
2567
|
-
if
|
2593
|
+
if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
|
2568
2594
|
$as_echo_n "(cached) " >&6
|
2569
2595
|
else
|
2570
2596
|
if test -n "$ac_ct_STRIP"; then
|
@@ -2576,7 +2602,7 @@ do
|
|
2576
2602
|
IFS=$as_save_IFS
|
2577
2603
|
test -z "$as_dir" && as_dir=.
|
2578
2604
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2579
|
-
if
|
2605
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
2580
2606
|
ac_cv_prog_ac_ct_STRIP="strip"
|
2581
2607
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
2582
2608
|
break 2
|
@@ -2617,7 +2643,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
|
2617
2643
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
|
2618
2644
|
$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
|
2619
2645
|
if test -z "$MKDIR_P"; then
|
2620
|
-
if
|
2646
|
+
if ${ac_cv_path_mkdir+:} false; then :
|
2621
2647
|
$as_echo_n "(cached) " >&6
|
2622
2648
|
else
|
2623
2649
|
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
@@ -2627,7 +2653,7 @@ do
|
|
2627
2653
|
test -z "$as_dir" && as_dir=.
|
2628
2654
|
for ac_prog in mkdir gmkdir; do
|
2629
2655
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2630
|
-
|
2656
|
+
as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
|
2631
2657
|
case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
|
2632
2658
|
'mkdir (GNU coreutils) '* | \
|
2633
2659
|
'mkdir (coreutils) '* | \
|
@@ -2668,7 +2694,7 @@ do
|
|
2668
2694
|
set dummy $ac_prog; ac_word=$2
|
2669
2695
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
2670
2696
|
$as_echo_n "checking for $ac_word... " >&6; }
|
2671
|
-
if
|
2697
|
+
if ${ac_cv_prog_AWK+:} false; then :
|
2672
2698
|
$as_echo_n "(cached) " >&6
|
2673
2699
|
else
|
2674
2700
|
if test -n "$AWK"; then
|
@@ -2680,7 +2706,7 @@ do
|
|
2680
2706
|
IFS=$as_save_IFS
|
2681
2707
|
test -z "$as_dir" && as_dir=.
|
2682
2708
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2683
|
-
if
|
2709
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
2684
2710
|
ac_cv_prog_AWK="$ac_prog"
|
2685
2711
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
2686
2712
|
break 2
|
@@ -2708,7 +2734,7 @@ done
|
|
2708
2734
|
$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
|
2709
2735
|
set x ${MAKE-make}
|
2710
2736
|
ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
|
2711
|
-
if eval
|
2737
|
+
if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
|
2712
2738
|
$as_echo_n "(cached) " >&6
|
2713
2739
|
else
|
2714
2740
|
cat >conftest.make <<\_ACEOF
|
@@ -2841,7 +2867,7 @@ if test -n "$ac_tool_prefix"; then
|
|
2841
2867
|
set dummy ${ac_tool_prefix}gcc; ac_word=$2
|
2842
2868
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
2843
2869
|
$as_echo_n "checking for $ac_word... " >&6; }
|
2844
|
-
if
|
2870
|
+
if ${ac_cv_prog_CC+:} false; then :
|
2845
2871
|
$as_echo_n "(cached) " >&6
|
2846
2872
|
else
|
2847
2873
|
if test -n "$CC"; then
|
@@ -2853,7 +2879,7 @@ do
|
|
2853
2879
|
IFS=$as_save_IFS
|
2854
2880
|
test -z "$as_dir" && as_dir=.
|
2855
2881
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2856
|
-
if
|
2882
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
2857
2883
|
ac_cv_prog_CC="${ac_tool_prefix}gcc"
|
2858
2884
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
2859
2885
|
break 2
|
@@ -2881,7 +2907,7 @@ if test -z "$ac_cv_prog_CC"; then
|
|
2881
2907
|
set dummy gcc; ac_word=$2
|
2882
2908
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
2883
2909
|
$as_echo_n "checking for $ac_word... " >&6; }
|
2884
|
-
if
|
2910
|
+
if ${ac_cv_prog_ac_ct_CC+:} false; then :
|
2885
2911
|
$as_echo_n "(cached) " >&6
|
2886
2912
|
else
|
2887
2913
|
if test -n "$ac_ct_CC"; then
|
@@ -2893,7 +2919,7 @@ do
|
|
2893
2919
|
IFS=$as_save_IFS
|
2894
2920
|
test -z "$as_dir" && as_dir=.
|
2895
2921
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2896
|
-
if
|
2922
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
2897
2923
|
ac_cv_prog_ac_ct_CC="gcc"
|
2898
2924
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
2899
2925
|
break 2
|
@@ -2934,7 +2960,7 @@ if test -z "$CC"; then
|
|
2934
2960
|
set dummy ${ac_tool_prefix}cc; ac_word=$2
|
2935
2961
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
2936
2962
|
$as_echo_n "checking for $ac_word... " >&6; }
|
2937
|
-
if
|
2963
|
+
if ${ac_cv_prog_CC+:} false; then :
|
2938
2964
|
$as_echo_n "(cached) " >&6
|
2939
2965
|
else
|
2940
2966
|
if test -n "$CC"; then
|
@@ -2946,7 +2972,7 @@ do
|
|
2946
2972
|
IFS=$as_save_IFS
|
2947
2973
|
test -z "$as_dir" && as_dir=.
|
2948
2974
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2949
|
-
if
|
2975
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
2950
2976
|
ac_cv_prog_CC="${ac_tool_prefix}cc"
|
2951
2977
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
2952
2978
|
break 2
|
@@ -2974,7 +3000,7 @@ if test -z "$CC"; then
|
|
2974
3000
|
set dummy cc; ac_word=$2
|
2975
3001
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
2976
3002
|
$as_echo_n "checking for $ac_word... " >&6; }
|
2977
|
-
if
|
3003
|
+
if ${ac_cv_prog_CC+:} false; then :
|
2978
3004
|
$as_echo_n "(cached) " >&6
|
2979
3005
|
else
|
2980
3006
|
if test -n "$CC"; then
|
@@ -2987,7 +3013,7 @@ do
|
|
2987
3013
|
IFS=$as_save_IFS
|
2988
3014
|
test -z "$as_dir" && as_dir=.
|
2989
3015
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2990
|
-
if
|
3016
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
2991
3017
|
if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
|
2992
3018
|
ac_prog_rejected=yes
|
2993
3019
|
continue
|
@@ -3033,7 +3059,7 @@ if test -z "$CC"; then
|
|
3033
3059
|
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
|
3034
3060
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
3035
3061
|
$as_echo_n "checking for $ac_word... " >&6; }
|
3036
|
-
if
|
3062
|
+
if ${ac_cv_prog_CC+:} false; then :
|
3037
3063
|
$as_echo_n "(cached) " >&6
|
3038
3064
|
else
|
3039
3065
|
if test -n "$CC"; then
|
@@ -3045,7 +3071,7 @@ do
|
|
3045
3071
|
IFS=$as_save_IFS
|
3046
3072
|
test -z "$as_dir" && as_dir=.
|
3047
3073
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3048
|
-
if
|
3074
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
3049
3075
|
ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
|
3050
3076
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3051
3077
|
break 2
|
@@ -3077,7 +3103,7 @@ do
|
|
3077
3103
|
set dummy $ac_prog; ac_word=$2
|
3078
3104
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
3079
3105
|
$as_echo_n "checking for $ac_word... " >&6; }
|
3080
|
-
if
|
3106
|
+
if ${ac_cv_prog_ac_ct_CC+:} false; then :
|
3081
3107
|
$as_echo_n "(cached) " >&6
|
3082
3108
|
else
|
3083
3109
|
if test -n "$ac_ct_CC"; then
|
@@ -3089,7 +3115,7 @@ do
|
|
3089
3115
|
IFS=$as_save_IFS
|
3090
3116
|
test -z "$as_dir" && as_dir=.
|
3091
3117
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3092
|
-
if
|
3118
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
3093
3119
|
ac_cv_prog_ac_ct_CC="$ac_prog"
|
3094
3120
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3095
3121
|
break 2
|
@@ -3132,7 +3158,7 @@ fi
|
|
3132
3158
|
test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
3133
3159
|
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
3134
3160
|
as_fn_error $? "no acceptable C compiler found in \$PATH
|
3135
|
-
See \`config.log' for more details" "$LINENO" 5
|
3161
|
+
See \`config.log' for more details" "$LINENO" 5; }
|
3136
3162
|
|
3137
3163
|
# Provide some information about the compiler.
|
3138
3164
|
$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
|
@@ -3247,7 +3273,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
|
|
3247
3273
|
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
3248
3274
|
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
3249
3275
|
as_fn_error 77 "C compiler cannot create executables
|
3250
|
-
See \`config.log' for more details" "$LINENO" 5
|
3276
|
+
See \`config.log' for more details" "$LINENO" 5; }
|
3251
3277
|
else
|
3252
3278
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
3253
3279
|
$as_echo "yes" >&6; }
|
@@ -3290,7 +3316,7 @@ else
|
|
3290
3316
|
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
3291
3317
|
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
3292
3318
|
as_fn_error $? "cannot compute suffix of executables: cannot compile and link
|
3293
|
-
See \`config.log' for more details" "$LINENO" 5
|
3319
|
+
See \`config.log' for more details" "$LINENO" 5; }
|
3294
3320
|
fi
|
3295
3321
|
rm -f conftest conftest$ac_cv_exeext
|
3296
3322
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
|
@@ -3349,7 +3375,7 @@ $as_echo "$ac_try_echo"; } >&5
|
|
3349
3375
|
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
3350
3376
|
as_fn_error $? "cannot run C compiled programs.
|
3351
3377
|
If you meant to cross compile, use \`--host'.
|
3352
|
-
See \`config.log' for more details" "$LINENO" 5
|
3378
|
+
See \`config.log' for more details" "$LINENO" 5; }
|
3353
3379
|
fi
|
3354
3380
|
fi
|
3355
3381
|
fi
|
@@ -3360,7 +3386,7 @@ rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
|
|
3360
3386
|
ac_clean_files=$ac_clean_files_save
|
3361
3387
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
|
3362
3388
|
$as_echo_n "checking for suffix of object files... " >&6; }
|
3363
|
-
if
|
3389
|
+
if ${ac_cv_objext+:} false; then :
|
3364
3390
|
$as_echo_n "(cached) " >&6
|
3365
3391
|
else
|
3366
3392
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
@@ -3401,7 +3427,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
|
|
3401
3427
|
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
3402
3428
|
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
3403
3429
|
as_fn_error $? "cannot compute suffix of object files: cannot compile
|
3404
|
-
See \`config.log' for more details" "$LINENO" 5
|
3430
|
+
See \`config.log' for more details" "$LINENO" 5; }
|
3405
3431
|
fi
|
3406
3432
|
rm -f conftest.$ac_cv_objext conftest.$ac_ext
|
3407
3433
|
fi
|
@@ -3411,7 +3437,7 @@ OBJEXT=$ac_cv_objext
|
|
3411
3437
|
ac_objext=$OBJEXT
|
3412
3438
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
|
3413
3439
|
$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
|
3414
|
-
if
|
3440
|
+
if ${ac_cv_c_compiler_gnu+:} false; then :
|
3415
3441
|
$as_echo_n "(cached) " >&6
|
3416
3442
|
else
|
3417
3443
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
@@ -3448,7 +3474,7 @@ ac_test_CFLAGS=${CFLAGS+set}
|
|
3448
3474
|
ac_save_CFLAGS=$CFLAGS
|
3449
3475
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
|
3450
3476
|
$as_echo_n "checking whether $CC accepts -g... " >&6; }
|
3451
|
-
if
|
3477
|
+
if ${ac_cv_prog_cc_g+:} false; then :
|
3452
3478
|
$as_echo_n "(cached) " >&6
|
3453
3479
|
else
|
3454
3480
|
ac_save_c_werror_flag=$ac_c_werror_flag
|
@@ -3526,7 +3552,7 @@ else
|
|
3526
3552
|
fi
|
3527
3553
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
|
3528
3554
|
$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
|
3529
|
-
if
|
3555
|
+
if ${ac_cv_prog_cc_c89+:} false; then :
|
3530
3556
|
$as_echo_n "(cached) " >&6
|
3531
3557
|
else
|
3532
3558
|
ac_cv_prog_cc_c89=no
|
@@ -3535,8 +3561,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
3535
3561
|
/* end confdefs.h. */
|
3536
3562
|
#include <stdarg.h>
|
3537
3563
|
#include <stdio.h>
|
3538
|
-
|
3539
|
-
#include <sys/stat.h>
|
3564
|
+
struct stat;
|
3540
3565
|
/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
|
3541
3566
|
struct buf { int x; };
|
3542
3567
|
FILE * (*rcsopen) (struct buf *, struct stat *, int);
|
@@ -3687,7 +3712,7 @@ depcc="$CC" am_compiler_list=
|
|
3687
3712
|
|
3688
3713
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
|
3689
3714
|
$as_echo_n "checking dependency style of $depcc... " >&6; }
|
3690
|
-
if
|
3715
|
+
if ${am_cv_CC_dependencies_compiler_type+:} false; then :
|
3691
3716
|
$as_echo_n "(cached) " >&6
|
3692
3717
|
else
|
3693
3718
|
if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
|
@@ -3849,7 +3874,7 @@ $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
|
|
3849
3874
|
|
3850
3875
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
|
3851
3876
|
$as_echo_n "checking build system type... " >&6; }
|
3852
|
-
if
|
3877
|
+
if ${ac_cv_build+:} false; then :
|
3853
3878
|
$as_echo_n "(cached) " >&6
|
3854
3879
|
else
|
3855
3880
|
ac_build_alias=$build_alias
|
@@ -3865,7 +3890,7 @@ fi
|
|
3865
3890
|
$as_echo "$ac_cv_build" >&6; }
|
3866
3891
|
case $ac_cv_build in
|
3867
3892
|
*-*-*) ;;
|
3868
|
-
*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5
|
3893
|
+
*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
|
3869
3894
|
esac
|
3870
3895
|
build=$ac_cv_build
|
3871
3896
|
ac_save_IFS=$IFS; IFS='-'
|
@@ -3883,7 +3908,7 @@ case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
|
|
3883
3908
|
|
3884
3909
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
|
3885
3910
|
$as_echo_n "checking host system type... " >&6; }
|
3886
|
-
if
|
3911
|
+
if ${ac_cv_host+:} false; then :
|
3887
3912
|
$as_echo_n "(cached) " >&6
|
3888
3913
|
else
|
3889
3914
|
if test "x$host_alias" = x; then
|
@@ -3898,7 +3923,7 @@ fi
|
|
3898
3923
|
$as_echo "$ac_cv_host" >&6; }
|
3899
3924
|
case $ac_cv_host in
|
3900
3925
|
*-*-*) ;;
|
3901
|
-
*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5
|
3926
|
+
*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
|
3902
3927
|
esac
|
3903
3928
|
host=$ac_cv_host
|
3904
3929
|
ac_save_IFS=$IFS; IFS='-'
|
@@ -3916,7 +3941,7 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
|
|
3916
3941
|
|
3917
3942
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
|
3918
3943
|
$as_echo_n "checking for a sed that does not truncate output... " >&6; }
|
3919
|
-
if
|
3944
|
+
if ${ac_cv_path_SED+:} false; then :
|
3920
3945
|
$as_echo_n "(cached) " >&6
|
3921
3946
|
else
|
3922
3947
|
ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
|
@@ -3936,7 +3961,7 @@ do
|
|
3936
3961
|
for ac_prog in sed gsed; do
|
3937
3962
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3938
3963
|
ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
|
3939
|
-
|
3964
|
+
as_fn_executable_p "$ac_path_SED" || continue
|
3940
3965
|
# Check for GNU ac_path_SED and select it if it is found.
|
3941
3966
|
# Check for GNU $ac_path_SED
|
3942
3967
|
case `"$ac_path_SED" --version 2>&1` in
|
@@ -3998,7 +4023,7 @@ Xsed="$SED -e 1s/^X//"
|
|
3998
4023
|
|
3999
4024
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
|
4000
4025
|
$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
|
4001
|
-
if
|
4026
|
+
if ${ac_cv_path_GREP+:} false; then :
|
4002
4027
|
$as_echo_n "(cached) " >&6
|
4003
4028
|
else
|
4004
4029
|
if test -z "$GREP"; then
|
@@ -4012,7 +4037,7 @@ do
|
|
4012
4037
|
for ac_prog in grep ggrep; do
|
4013
4038
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
4014
4039
|
ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
|
4015
|
-
|
4040
|
+
as_fn_executable_p "$ac_path_GREP" || continue
|
4016
4041
|
# Check for GNU ac_path_GREP and select it if it is found.
|
4017
4042
|
# Check for GNU $ac_path_GREP
|
4018
4043
|
case `"$ac_path_GREP" --version 2>&1` in
|
@@ -4061,7 +4086,7 @@ $as_echo "$ac_cv_path_GREP" >&6; }
|
|
4061
4086
|
|
4062
4087
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
|
4063
4088
|
$as_echo_n "checking for egrep... " >&6; }
|
4064
|
-
if
|
4089
|
+
if ${ac_cv_path_EGREP+:} false; then :
|
4065
4090
|
$as_echo_n "(cached) " >&6
|
4066
4091
|
else
|
4067
4092
|
if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
|
@@ -4078,7 +4103,7 @@ do
|
|
4078
4103
|
for ac_prog in egrep; do
|
4079
4104
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
4080
4105
|
ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
|
4081
|
-
|
4106
|
+
as_fn_executable_p "$ac_path_EGREP" || continue
|
4082
4107
|
# Check for GNU ac_path_EGREP and select it if it is found.
|
4083
4108
|
# Check for GNU $ac_path_EGREP
|
4084
4109
|
case `"$ac_path_EGREP" --version 2>&1` in
|
@@ -4128,7 +4153,7 @@ $as_echo "$ac_cv_path_EGREP" >&6; }
|
|
4128
4153
|
|
4129
4154
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5
|
4130
4155
|
$as_echo_n "checking for fgrep... " >&6; }
|
4131
|
-
if
|
4156
|
+
if ${ac_cv_path_FGREP+:} false; then :
|
4132
4157
|
$as_echo_n "(cached) " >&6
|
4133
4158
|
else
|
4134
4159
|
if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1
|
@@ -4145,7 +4170,7 @@ do
|
|
4145
4170
|
for ac_prog in fgrep; do
|
4146
4171
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
4147
4172
|
ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext"
|
4148
|
-
|
4173
|
+
as_fn_executable_p "$ac_path_FGREP" || continue
|
4149
4174
|
# Check for GNU ac_path_FGREP and select it if it is found.
|
4150
4175
|
# Check for GNU $ac_path_FGREP
|
4151
4176
|
case `"$ac_path_FGREP" --version 2>&1` in
|
@@ -4259,7 +4284,7 @@ else
|
|
4259
4284
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
|
4260
4285
|
$as_echo_n "checking for non-GNU ld... " >&6; }
|
4261
4286
|
fi
|
4262
|
-
if
|
4287
|
+
if ${lt_cv_path_LD+:} false; then :
|
4263
4288
|
$as_echo_n "(cached) " >&6
|
4264
4289
|
else
|
4265
4290
|
if test -z "$LD"; then
|
@@ -4299,7 +4324,7 @@ fi
|
|
4299
4324
|
test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
|
4300
4325
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
|
4301
4326
|
$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
|
4302
|
-
if
|
4327
|
+
if ${lt_cv_prog_gnu_ld+:} false; then :
|
4303
4328
|
$as_echo_n "(cached) " >&6
|
4304
4329
|
else
|
4305
4330
|
# I'd rather use --version here, but apparently some GNU lds only accept -v.
|
@@ -4326,7 +4351,7 @@ with_gnu_ld=$lt_cv_prog_gnu_ld
|
|
4326
4351
|
|
4327
4352
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5
|
4328
4353
|
$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; }
|
4329
|
-
if
|
4354
|
+
if ${lt_cv_path_NM+:} false; then :
|
4330
4355
|
$as_echo_n "(cached) " >&6
|
4331
4356
|
else
|
4332
4357
|
if test -n "$NM"; then
|
@@ -4386,7 +4411,7 @@ else
|
|
4386
4411
|
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
|
4387
4412
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
4388
4413
|
$as_echo_n "checking for $ac_word... " >&6; }
|
4389
|
-
if
|
4414
|
+
if ${ac_cv_prog_DUMPBIN+:} false; then :
|
4390
4415
|
$as_echo_n "(cached) " >&6
|
4391
4416
|
else
|
4392
4417
|
if test -n "$DUMPBIN"; then
|
@@ -4398,7 +4423,7 @@ do
|
|
4398
4423
|
IFS=$as_save_IFS
|
4399
4424
|
test -z "$as_dir" && as_dir=.
|
4400
4425
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
4401
|
-
if
|
4426
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
4402
4427
|
ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog"
|
4403
4428
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
4404
4429
|
break 2
|
@@ -4430,7 +4455,7 @@ do
|
|
4430
4455
|
set dummy $ac_prog; ac_word=$2
|
4431
4456
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
4432
4457
|
$as_echo_n "checking for $ac_word... " >&6; }
|
4433
|
-
if
|
4458
|
+
if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then :
|
4434
4459
|
$as_echo_n "(cached) " >&6
|
4435
4460
|
else
|
4436
4461
|
if test -n "$ac_ct_DUMPBIN"; then
|
@@ -4442,7 +4467,7 @@ do
|
|
4442
4467
|
IFS=$as_save_IFS
|
4443
4468
|
test -z "$as_dir" && as_dir=.
|
4444
4469
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
4445
|
-
if
|
4470
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
4446
4471
|
ac_cv_prog_ac_ct_DUMPBIN="$ac_prog"
|
4447
4472
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
4448
4473
|
break 2
|
@@ -4493,18 +4518,18 @@ test -z "$NM" && NM=nm
|
|
4493
4518
|
|
4494
4519
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5
|
4495
4520
|
$as_echo_n "checking the name lister ($NM) interface... " >&6; }
|
4496
|
-
if
|
4521
|
+
if ${lt_cv_nm_interface+:} false; then :
|
4497
4522
|
$as_echo_n "(cached) " >&6
|
4498
4523
|
else
|
4499
4524
|
lt_cv_nm_interface="BSD nm"
|
4500
4525
|
echo "int some_variable = 0;" > conftest.$ac_ext
|
4501
|
-
(eval echo "\"\$as_me:
|
4526
|
+
(eval echo "\"\$as_me:4526: $ac_compile\"" >&5)
|
4502
4527
|
(eval "$ac_compile" 2>conftest.err)
|
4503
4528
|
cat conftest.err >&5
|
4504
|
-
(eval echo "\"\$as_me:
|
4529
|
+
(eval echo "\"\$as_me:4529: $NM \\\"conftest.$ac_objext\\\"\"" >&5)
|
4505
4530
|
(eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
|
4506
4531
|
cat conftest.err >&5
|
4507
|
-
(eval echo "\"\$as_me:
|
4532
|
+
(eval echo "\"\$as_me:4532: output\"" >&5)
|
4508
4533
|
cat conftest.out >&5
|
4509
4534
|
if $GREP 'External.*some_variable' conftest.out > /dev/null; then
|
4510
4535
|
lt_cv_nm_interface="MS dumpbin"
|
@@ -4528,7 +4553,7 @@ fi
|
|
4528
4553
|
# find the maximum length of command line arguments
|
4529
4554
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5
|
4530
4555
|
$as_echo_n "checking the maximum length of command line arguments... " >&6; }
|
4531
|
-
if
|
4556
|
+
if ${lt_cv_sys_max_cmd_len+:} false; then :
|
4532
4557
|
$as_echo_n "(cached) " >&6
|
4533
4558
|
else
|
4534
4559
|
i=0
|
@@ -4720,7 +4745,7 @@ esac
|
|
4720
4745
|
|
4721
4746
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5
|
4722
4747
|
$as_echo_n "checking for $LD option to reload object files... " >&6; }
|
4723
|
-
if
|
4748
|
+
if ${lt_cv_ld_reload_flag+:} false; then :
|
4724
4749
|
$as_echo_n "(cached) " >&6
|
4725
4750
|
else
|
4726
4751
|
lt_cv_ld_reload_flag='-r'
|
@@ -4756,7 +4781,7 @@ if test -n "$ac_tool_prefix"; then
|
|
4756
4781
|
set dummy ${ac_tool_prefix}objdump; ac_word=$2
|
4757
4782
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
4758
4783
|
$as_echo_n "checking for $ac_word... " >&6; }
|
4759
|
-
if
|
4784
|
+
if ${ac_cv_prog_OBJDUMP+:} false; then :
|
4760
4785
|
$as_echo_n "(cached) " >&6
|
4761
4786
|
else
|
4762
4787
|
if test -n "$OBJDUMP"; then
|
@@ -4768,7 +4793,7 @@ do
|
|
4768
4793
|
IFS=$as_save_IFS
|
4769
4794
|
test -z "$as_dir" && as_dir=.
|
4770
4795
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
4771
|
-
if
|
4796
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
4772
4797
|
ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump"
|
4773
4798
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
4774
4799
|
break 2
|
@@ -4796,7 +4821,7 @@ if test -z "$ac_cv_prog_OBJDUMP"; then
|
|
4796
4821
|
set dummy objdump; ac_word=$2
|
4797
4822
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
4798
4823
|
$as_echo_n "checking for $ac_word... " >&6; }
|
4799
|
-
if
|
4824
|
+
if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :
|
4800
4825
|
$as_echo_n "(cached) " >&6
|
4801
4826
|
else
|
4802
4827
|
if test -n "$ac_ct_OBJDUMP"; then
|
@@ -4808,7 +4833,7 @@ do
|
|
4808
4833
|
IFS=$as_save_IFS
|
4809
4834
|
test -z "$as_dir" && as_dir=.
|
4810
4835
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
4811
|
-
if
|
4836
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
4812
4837
|
ac_cv_prog_ac_ct_OBJDUMP="objdump"
|
4813
4838
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
4814
4839
|
break 2
|
@@ -4855,7 +4880,7 @@ test -z "$OBJDUMP" && OBJDUMP=objdump
|
|
4855
4880
|
|
4856
4881
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5
|
4857
4882
|
$as_echo_n "checking how to recognize dependent libraries... " >&6; }
|
4858
|
-
if
|
4883
|
+
if ${lt_cv_deplibs_check_method+:} false; then :
|
4859
4884
|
$as_echo_n "(cached) " >&6
|
4860
4885
|
else
|
4861
4886
|
lt_cv_file_magic_cmd='$MAGIC_CMD'
|
@@ -5071,7 +5096,7 @@ if test -n "$ac_tool_prefix"; then
|
|
5071
5096
|
set dummy ${ac_tool_prefix}ar; ac_word=$2
|
5072
5097
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
5073
5098
|
$as_echo_n "checking for $ac_word... " >&6; }
|
5074
|
-
if
|
5099
|
+
if ${ac_cv_prog_AR+:} false; then :
|
5075
5100
|
$as_echo_n "(cached) " >&6
|
5076
5101
|
else
|
5077
5102
|
if test -n "$AR"; then
|
@@ -5083,7 +5108,7 @@ do
|
|
5083
5108
|
IFS=$as_save_IFS
|
5084
5109
|
test -z "$as_dir" && as_dir=.
|
5085
5110
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5086
|
-
if
|
5111
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5087
5112
|
ac_cv_prog_AR="${ac_tool_prefix}ar"
|
5088
5113
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5089
5114
|
break 2
|
@@ -5111,7 +5136,7 @@ if test -z "$ac_cv_prog_AR"; then
|
|
5111
5136
|
set dummy ar; ac_word=$2
|
5112
5137
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
5113
5138
|
$as_echo_n "checking for $ac_word... " >&6; }
|
5114
|
-
if
|
5139
|
+
if ${ac_cv_prog_ac_ct_AR+:} false; then :
|
5115
5140
|
$as_echo_n "(cached) " >&6
|
5116
5141
|
else
|
5117
5142
|
if test -n "$ac_ct_AR"; then
|
@@ -5123,7 +5148,7 @@ do
|
|
5123
5148
|
IFS=$as_save_IFS
|
5124
5149
|
test -z "$as_dir" && as_dir=.
|
5125
5150
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5126
|
-
if
|
5151
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5127
5152
|
ac_cv_prog_ac_ct_AR="ar"
|
5128
5153
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5129
5154
|
break 2
|
@@ -5176,7 +5201,7 @@ if test -n "$ac_tool_prefix"; then
|
|
5176
5201
|
set dummy ${ac_tool_prefix}strip; ac_word=$2
|
5177
5202
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
5178
5203
|
$as_echo_n "checking for $ac_word... " >&6; }
|
5179
|
-
if
|
5204
|
+
if ${ac_cv_prog_STRIP+:} false; then :
|
5180
5205
|
$as_echo_n "(cached) " >&6
|
5181
5206
|
else
|
5182
5207
|
if test -n "$STRIP"; then
|
@@ -5188,7 +5213,7 @@ do
|
|
5188
5213
|
IFS=$as_save_IFS
|
5189
5214
|
test -z "$as_dir" && as_dir=.
|
5190
5215
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5191
|
-
if
|
5216
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5192
5217
|
ac_cv_prog_STRIP="${ac_tool_prefix}strip"
|
5193
5218
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5194
5219
|
break 2
|
@@ -5216,7 +5241,7 @@ if test -z "$ac_cv_prog_STRIP"; then
|
|
5216
5241
|
set dummy strip; ac_word=$2
|
5217
5242
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
5218
5243
|
$as_echo_n "checking for $ac_word... " >&6; }
|
5219
|
-
if
|
5244
|
+
if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
|
5220
5245
|
$as_echo_n "(cached) " >&6
|
5221
5246
|
else
|
5222
5247
|
if test -n "$ac_ct_STRIP"; then
|
@@ -5228,7 +5253,7 @@ do
|
|
5228
5253
|
IFS=$as_save_IFS
|
5229
5254
|
test -z "$as_dir" && as_dir=.
|
5230
5255
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5231
|
-
if
|
5256
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5232
5257
|
ac_cv_prog_ac_ct_STRIP="strip"
|
5233
5258
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5234
5259
|
break 2
|
@@ -5275,7 +5300,7 @@ if test -n "$ac_tool_prefix"; then
|
|
5275
5300
|
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
|
5276
5301
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
5277
5302
|
$as_echo_n "checking for $ac_word... " >&6; }
|
5278
|
-
if
|
5303
|
+
if ${ac_cv_prog_RANLIB+:} false; then :
|
5279
5304
|
$as_echo_n "(cached) " >&6
|
5280
5305
|
else
|
5281
5306
|
if test -n "$RANLIB"; then
|
@@ -5287,7 +5312,7 @@ do
|
|
5287
5312
|
IFS=$as_save_IFS
|
5288
5313
|
test -z "$as_dir" && as_dir=.
|
5289
5314
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5290
|
-
if
|
5315
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5291
5316
|
ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
|
5292
5317
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5293
5318
|
break 2
|
@@ -5315,7 +5340,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
|
|
5315
5340
|
set dummy ranlib; ac_word=$2
|
5316
5341
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
5317
5342
|
$as_echo_n "checking for $ac_word... " >&6; }
|
5318
|
-
if
|
5343
|
+
if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
|
5319
5344
|
$as_echo_n "(cached) " >&6
|
5320
5345
|
else
|
5321
5346
|
if test -n "$ac_ct_RANLIB"; then
|
@@ -5327,7 +5352,7 @@ do
|
|
5327
5352
|
IFS=$as_save_IFS
|
5328
5353
|
test -z "$as_dir" && as_dir=.
|
5329
5354
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5330
|
-
if
|
5355
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5331
5356
|
ac_cv_prog_ac_ct_RANLIB="ranlib"
|
5332
5357
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5333
5358
|
break 2
|
@@ -5432,7 +5457,7 @@ compiler=$CC
|
|
5432
5457
|
# Check for command to grab the raw symbol name followed by C symbol from nm.
|
5433
5458
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5
|
5434
5459
|
$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; }
|
5435
|
-
if
|
5460
|
+
if ${lt_cv_sys_global_symbol_pipe+:} false; then :
|
5436
5461
|
$as_echo_n "(cached) " >&6
|
5437
5462
|
else
|
5438
5463
|
|
@@ -5710,7 +5735,7 @@ ia64-*-hpux*)
|
|
5710
5735
|
;;
|
5711
5736
|
*-*-irix6*)
|
5712
5737
|
# Find out which ABI we are using.
|
5713
|
-
echo '#line
|
5738
|
+
echo '#line 5738 "configure"' > conftest.$ac_ext
|
5714
5739
|
if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
|
5715
5740
|
(eval $ac_compile) 2>&5
|
5716
5741
|
ac_status=$?
|
@@ -5804,7 +5829,7 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
|
|
5804
5829
|
CFLAGS="$CFLAGS -belf"
|
5805
5830
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5
|
5806
5831
|
$as_echo_n "checking whether the C compiler needs -belf... " >&6; }
|
5807
|
-
if
|
5832
|
+
if ${lt_cv_cc_needs_belf+:} false; then :
|
5808
5833
|
$as_echo_n "(cached) " >&6
|
5809
5834
|
else
|
5810
5835
|
ac_ext=c
|
@@ -5880,7 +5905,7 @@ need_locks="$enable_libtool_lock"
|
|
5880
5905
|
set dummy ${ac_tool_prefix}dsymutil; ac_word=$2
|
5881
5906
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
5882
5907
|
$as_echo_n "checking for $ac_word... " >&6; }
|
5883
|
-
if
|
5908
|
+
if ${ac_cv_prog_DSYMUTIL+:} false; then :
|
5884
5909
|
$as_echo_n "(cached) " >&6
|
5885
5910
|
else
|
5886
5911
|
if test -n "$DSYMUTIL"; then
|
@@ -5892,7 +5917,7 @@ do
|
|
5892
5917
|
IFS=$as_save_IFS
|
5893
5918
|
test -z "$as_dir" && as_dir=.
|
5894
5919
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5895
|
-
if
|
5920
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5896
5921
|
ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil"
|
5897
5922
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5898
5923
|
break 2
|
@@ -5920,7 +5945,7 @@ if test -z "$ac_cv_prog_DSYMUTIL"; then
|
|
5920
5945
|
set dummy dsymutil; ac_word=$2
|
5921
5946
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
5922
5947
|
$as_echo_n "checking for $ac_word... " >&6; }
|
5923
|
-
if
|
5948
|
+
if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then :
|
5924
5949
|
$as_echo_n "(cached) " >&6
|
5925
5950
|
else
|
5926
5951
|
if test -n "$ac_ct_DSYMUTIL"; then
|
@@ -5932,7 +5957,7 @@ do
|
|
5932
5957
|
IFS=$as_save_IFS
|
5933
5958
|
test -z "$as_dir" && as_dir=.
|
5934
5959
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5935
|
-
if
|
5960
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5936
5961
|
ac_cv_prog_ac_ct_DSYMUTIL="dsymutil"
|
5937
5962
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5938
5963
|
break 2
|
@@ -5972,7 +5997,7 @@ fi
|
|
5972
5997
|
set dummy ${ac_tool_prefix}nmedit; ac_word=$2
|
5973
5998
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
5974
5999
|
$as_echo_n "checking for $ac_word... " >&6; }
|
5975
|
-
if
|
6000
|
+
if ${ac_cv_prog_NMEDIT+:} false; then :
|
5976
6001
|
$as_echo_n "(cached) " >&6
|
5977
6002
|
else
|
5978
6003
|
if test -n "$NMEDIT"; then
|
@@ -5984,7 +6009,7 @@ do
|
|
5984
6009
|
IFS=$as_save_IFS
|
5985
6010
|
test -z "$as_dir" && as_dir=.
|
5986
6011
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5987
|
-
if
|
6012
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5988
6013
|
ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit"
|
5989
6014
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5990
6015
|
break 2
|
@@ -6012,7 +6037,7 @@ if test -z "$ac_cv_prog_NMEDIT"; then
|
|
6012
6037
|
set dummy nmedit; ac_word=$2
|
6013
6038
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
6014
6039
|
$as_echo_n "checking for $ac_word... " >&6; }
|
6015
|
-
if
|
6040
|
+
if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then :
|
6016
6041
|
$as_echo_n "(cached) " >&6
|
6017
6042
|
else
|
6018
6043
|
if test -n "$ac_ct_NMEDIT"; then
|
@@ -6024,7 +6049,7 @@ do
|
|
6024
6049
|
IFS=$as_save_IFS
|
6025
6050
|
test -z "$as_dir" && as_dir=.
|
6026
6051
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6027
|
-
if
|
6052
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6028
6053
|
ac_cv_prog_ac_ct_NMEDIT="nmedit"
|
6029
6054
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6030
6055
|
break 2
|
@@ -6064,7 +6089,7 @@ fi
|
|
6064
6089
|
set dummy ${ac_tool_prefix}lipo; ac_word=$2
|
6065
6090
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
6066
6091
|
$as_echo_n "checking for $ac_word... " >&6; }
|
6067
|
-
if
|
6092
|
+
if ${ac_cv_prog_LIPO+:} false; then :
|
6068
6093
|
$as_echo_n "(cached) " >&6
|
6069
6094
|
else
|
6070
6095
|
if test -n "$LIPO"; then
|
@@ -6076,7 +6101,7 @@ do
|
|
6076
6101
|
IFS=$as_save_IFS
|
6077
6102
|
test -z "$as_dir" && as_dir=.
|
6078
6103
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6079
|
-
if
|
6104
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6080
6105
|
ac_cv_prog_LIPO="${ac_tool_prefix}lipo"
|
6081
6106
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6082
6107
|
break 2
|
@@ -6104,7 +6129,7 @@ if test -z "$ac_cv_prog_LIPO"; then
|
|
6104
6129
|
set dummy lipo; ac_word=$2
|
6105
6130
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
6106
6131
|
$as_echo_n "checking for $ac_word... " >&6; }
|
6107
|
-
if
|
6132
|
+
if ${ac_cv_prog_ac_ct_LIPO+:} false; then :
|
6108
6133
|
$as_echo_n "(cached) " >&6
|
6109
6134
|
else
|
6110
6135
|
if test -n "$ac_ct_LIPO"; then
|
@@ -6116,7 +6141,7 @@ do
|
|
6116
6141
|
IFS=$as_save_IFS
|
6117
6142
|
test -z "$as_dir" && as_dir=.
|
6118
6143
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6119
|
-
if
|
6144
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6120
6145
|
ac_cv_prog_ac_ct_LIPO="lipo"
|
6121
6146
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6122
6147
|
break 2
|
@@ -6156,7 +6181,7 @@ fi
|
|
6156
6181
|
set dummy ${ac_tool_prefix}otool; ac_word=$2
|
6157
6182
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
6158
6183
|
$as_echo_n "checking for $ac_word... " >&6; }
|
6159
|
-
if
|
6184
|
+
if ${ac_cv_prog_OTOOL+:} false; then :
|
6160
6185
|
$as_echo_n "(cached) " >&6
|
6161
6186
|
else
|
6162
6187
|
if test -n "$OTOOL"; then
|
@@ -6168,7 +6193,7 @@ do
|
|
6168
6193
|
IFS=$as_save_IFS
|
6169
6194
|
test -z "$as_dir" && as_dir=.
|
6170
6195
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6171
|
-
if
|
6196
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6172
6197
|
ac_cv_prog_OTOOL="${ac_tool_prefix}otool"
|
6173
6198
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6174
6199
|
break 2
|
@@ -6196,7 +6221,7 @@ if test -z "$ac_cv_prog_OTOOL"; then
|
|
6196
6221
|
set dummy otool; ac_word=$2
|
6197
6222
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
6198
6223
|
$as_echo_n "checking for $ac_word... " >&6; }
|
6199
|
-
if
|
6224
|
+
if ${ac_cv_prog_ac_ct_OTOOL+:} false; then :
|
6200
6225
|
$as_echo_n "(cached) " >&6
|
6201
6226
|
else
|
6202
6227
|
if test -n "$ac_ct_OTOOL"; then
|
@@ -6208,7 +6233,7 @@ do
|
|
6208
6233
|
IFS=$as_save_IFS
|
6209
6234
|
test -z "$as_dir" && as_dir=.
|
6210
6235
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6211
|
-
if
|
6236
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6212
6237
|
ac_cv_prog_ac_ct_OTOOL="otool"
|
6213
6238
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6214
6239
|
break 2
|
@@ -6248,7 +6273,7 @@ fi
|
|
6248
6273
|
set dummy ${ac_tool_prefix}otool64; ac_word=$2
|
6249
6274
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
6250
6275
|
$as_echo_n "checking for $ac_word... " >&6; }
|
6251
|
-
if
|
6276
|
+
if ${ac_cv_prog_OTOOL64+:} false; then :
|
6252
6277
|
$as_echo_n "(cached) " >&6
|
6253
6278
|
else
|
6254
6279
|
if test -n "$OTOOL64"; then
|
@@ -6260,7 +6285,7 @@ do
|
|
6260
6285
|
IFS=$as_save_IFS
|
6261
6286
|
test -z "$as_dir" && as_dir=.
|
6262
6287
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6263
|
-
if
|
6288
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6264
6289
|
ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64"
|
6265
6290
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6266
6291
|
break 2
|
@@ -6288,7 +6313,7 @@ if test -z "$ac_cv_prog_OTOOL64"; then
|
|
6288
6313
|
set dummy otool64; ac_word=$2
|
6289
6314
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
6290
6315
|
$as_echo_n "checking for $ac_word... " >&6; }
|
6291
|
-
if
|
6316
|
+
if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then :
|
6292
6317
|
$as_echo_n "(cached) " >&6
|
6293
6318
|
else
|
6294
6319
|
if test -n "$ac_ct_OTOOL64"; then
|
@@ -6300,7 +6325,7 @@ do
|
|
6300
6325
|
IFS=$as_save_IFS
|
6301
6326
|
test -z "$as_dir" && as_dir=.
|
6302
6327
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6303
|
-
if
|
6328
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6304
6329
|
ac_cv_prog_ac_ct_OTOOL64="otool64"
|
6305
6330
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6306
6331
|
break 2
|
@@ -6363,7 +6388,7 @@ fi
|
|
6363
6388
|
|
6364
6389
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5
|
6365
6390
|
$as_echo_n "checking for -single_module linker flag... " >&6; }
|
6366
|
-
if
|
6391
|
+
if ${lt_cv_apple_cc_single_mod+:} false; then :
|
6367
6392
|
$as_echo_n "(cached) " >&6
|
6368
6393
|
else
|
6369
6394
|
lt_cv_apple_cc_single_mod=no
|
@@ -6392,7 +6417,7 @@ fi
|
|
6392
6417
|
$as_echo "$lt_cv_apple_cc_single_mod" >&6; }
|
6393
6418
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5
|
6394
6419
|
$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; }
|
6395
|
-
if
|
6420
|
+
if ${lt_cv_ld_exported_symbols_list+:} false; then :
|
6396
6421
|
$as_echo_n "(cached) " >&6
|
6397
6422
|
else
|
6398
6423
|
lt_cv_ld_exported_symbols_list=no
|
@@ -6469,7 +6494,7 @@ if test -n "$CPP" && test -d "$CPP"; then
|
|
6469
6494
|
CPP=
|
6470
6495
|
fi
|
6471
6496
|
if test -z "$CPP"; then
|
6472
|
-
if
|
6497
|
+
if ${ac_cv_prog_CPP+:} false; then :
|
6473
6498
|
$as_echo_n "(cached) " >&6
|
6474
6499
|
else
|
6475
6500
|
# Double quotes because CPP needs to be expanded
|
@@ -6585,7 +6610,7 @@ else
|
|
6585
6610
|
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
6586
6611
|
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
6587
6612
|
as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
|
6588
|
-
See \`config.log' for more details" "$LINENO" 5
|
6613
|
+
See \`config.log' for more details" "$LINENO" 5; }
|
6589
6614
|
fi
|
6590
6615
|
|
6591
6616
|
ac_ext=c
|
@@ -6597,7 +6622,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
6597
6622
|
|
6598
6623
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
|
6599
6624
|
$as_echo_n "checking for ANSI C header files... " >&6; }
|
6600
|
-
if
|
6625
|
+
if ${ac_cv_header_stdc+:} false; then :
|
6601
6626
|
$as_echo_n "(cached) " >&6
|
6602
6627
|
else
|
6603
6628
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
@@ -6728,7 +6753,7 @@ for ac_header in dlfcn.h
|
|
6728
6753
|
do :
|
6729
6754
|
ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default
|
6730
6755
|
"
|
6731
|
-
if test "x$ac_cv_header_dlfcn_h" =
|
6756
|
+
if test "x$ac_cv_header_dlfcn_h" = xyes; then :
|
6732
6757
|
cat >>confdefs.h <<_ACEOF
|
6733
6758
|
#define HAVE_DLFCN_H 1
|
6734
6759
|
_ACEOF
|
@@ -6912,7 +6937,7 @@ fi
|
|
6912
6937
|
|
6913
6938
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5
|
6914
6939
|
$as_echo_n "checking for objdir... " >&6; }
|
6915
|
-
if
|
6940
|
+
if ${lt_cv_objdir+:} false; then :
|
6916
6941
|
$as_echo_n "(cached) " >&6
|
6917
6942
|
else
|
6918
6943
|
rm -f .libs 2>/dev/null
|
@@ -7020,7 +7045,7 @@ file_magic*)
|
|
7020
7045
|
if test "$file_magic_cmd" = '$MAGIC_CMD'; then
|
7021
7046
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5
|
7022
7047
|
$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; }
|
7023
|
-
if
|
7048
|
+
if ${lt_cv_path_MAGIC_CMD+:} false; then :
|
7024
7049
|
$as_echo_n "(cached) " >&6
|
7025
7050
|
else
|
7026
7051
|
case $MAGIC_CMD in
|
@@ -7086,7 +7111,7 @@ if test -z "$lt_cv_path_MAGIC_CMD"; then
|
|
7086
7111
|
if test -n "$ac_tool_prefix"; then
|
7087
7112
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5
|
7088
7113
|
$as_echo_n "checking for file... " >&6; }
|
7089
|
-
if
|
7114
|
+
if ${lt_cv_path_MAGIC_CMD+:} false; then :
|
7090
7115
|
$as_echo_n "(cached) " >&6
|
7091
7116
|
else
|
7092
7117
|
case $MAGIC_CMD in
|
@@ -7219,7 +7244,7 @@ if test "$GCC" = yes; then
|
|
7219
7244
|
|
7220
7245
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
|
7221
7246
|
$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; }
|
7222
|
-
if
|
7247
|
+
if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then :
|
7223
7248
|
$as_echo_n "(cached) " >&6
|
7224
7249
|
else
|
7225
7250
|
lt_cv_prog_compiler_rtti_exceptions=no
|
@@ -7235,11 +7260,11 @@ else
|
|
7235
7260
|
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
7236
7261
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
7237
7262
|
-e 's:$: $lt_compiler_flag:'`
|
7238
|
-
(eval echo "\"\$as_me:
|
7263
|
+
(eval echo "\"\$as_me:7263: $lt_compile\"" >&5)
|
7239
7264
|
(eval "$lt_compile" 2>conftest.err)
|
7240
7265
|
ac_status=$?
|
7241
7266
|
cat conftest.err >&5
|
7242
|
-
echo "$as_me:
|
7267
|
+
echo "$as_me:7267: \$? = $ac_status" >&5
|
7243
7268
|
if (exit $ac_status) && test -s "$ac_outfile"; then
|
7244
7269
|
# The compiler can only warn and ignore the option if not recognized
|
7245
7270
|
# So say no if there are warnings other than the usual output.
|
@@ -7558,7 +7583,7 @@ $as_echo "$lt_prog_compiler_pic" >&6; }
|
|
7558
7583
|
if test -n "$lt_prog_compiler_pic"; then
|
7559
7584
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
|
7560
7585
|
$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; }
|
7561
|
-
if
|
7586
|
+
if ${lt_cv_prog_compiler_pic_works+:} false; then :
|
7562
7587
|
$as_echo_n "(cached) " >&6
|
7563
7588
|
else
|
7564
7589
|
lt_cv_prog_compiler_pic_works=no
|
@@ -7574,11 +7599,11 @@ else
|
|
7574
7599
|
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
7575
7600
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
7576
7601
|
-e 's:$: $lt_compiler_flag:'`
|
7577
|
-
(eval echo "\"\$as_me:
|
7602
|
+
(eval echo "\"\$as_me:7602: $lt_compile\"" >&5)
|
7578
7603
|
(eval "$lt_compile" 2>conftest.err)
|
7579
7604
|
ac_status=$?
|
7580
7605
|
cat conftest.err >&5
|
7581
|
-
echo "$as_me:
|
7606
|
+
echo "$as_me:7606: \$? = $ac_status" >&5
|
7582
7607
|
if (exit $ac_status) && test -s "$ac_outfile"; then
|
7583
7608
|
# The compiler can only warn and ignore the option if not recognized
|
7584
7609
|
# So say no if there are warnings other than the usual output.
|
@@ -7617,7 +7642,7 @@ fi
|
|
7617
7642
|
wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
|
7618
7643
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
|
7619
7644
|
$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
|
7620
|
-
if
|
7645
|
+
if ${lt_cv_prog_compiler_static_works+:} false; then :
|
7621
7646
|
$as_echo_n "(cached) " >&6
|
7622
7647
|
else
|
7623
7648
|
lt_cv_prog_compiler_static_works=no
|
@@ -7660,7 +7685,7 @@ fi
|
|
7660
7685
|
|
7661
7686
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
|
7662
7687
|
$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
|
7663
|
-
if
|
7688
|
+
if ${lt_cv_prog_compiler_c_o+:} false; then :
|
7664
7689
|
$as_echo_n "(cached) " >&6
|
7665
7690
|
else
|
7666
7691
|
lt_cv_prog_compiler_c_o=no
|
@@ -7679,11 +7704,11 @@ else
|
|
7679
7704
|
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
7680
7705
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
7681
7706
|
-e 's:$: $lt_compiler_flag:'`
|
7682
|
-
(eval echo "\"\$as_me:
|
7707
|
+
(eval echo "\"\$as_me:7707: $lt_compile\"" >&5)
|
7683
7708
|
(eval "$lt_compile" 2>out/conftest.err)
|
7684
7709
|
ac_status=$?
|
7685
7710
|
cat out/conftest.err >&5
|
7686
|
-
echo "$as_me:
|
7711
|
+
echo "$as_me:7711: \$? = $ac_status" >&5
|
7687
7712
|
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
7688
7713
|
then
|
7689
7714
|
# The compiler can only warn and ignore the option if not recognized
|
@@ -7715,7 +7740,7 @@ $as_echo "$lt_cv_prog_compiler_c_o" >&6; }
|
|
7715
7740
|
|
7716
7741
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
|
7717
7742
|
$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
|
7718
|
-
if
|
7743
|
+
if ${lt_cv_prog_compiler_c_o+:} false; then :
|
7719
7744
|
$as_echo_n "(cached) " >&6
|
7720
7745
|
else
|
7721
7746
|
lt_cv_prog_compiler_c_o=no
|
@@ -7734,11 +7759,11 @@ else
|
|
7734
7759
|
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
7735
7760
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
7736
7761
|
-e 's:$: $lt_compiler_flag:'`
|
7737
|
-
(eval echo "\"\$as_me:
|
7762
|
+
(eval echo "\"\$as_me:7762: $lt_compile\"" >&5)
|
7738
7763
|
(eval "$lt_compile" 2>out/conftest.err)
|
7739
7764
|
ac_status=$?
|
7740
7765
|
cat out/conftest.err >&5
|
7741
|
-
echo "$as_me:
|
7766
|
+
echo "$as_me:7766: \$? = $ac_status" >&5
|
7742
7767
|
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
7743
7768
|
then
|
7744
7769
|
# The compiler can only warn and ignore the option if not recognized
|
@@ -9860,7 +9885,7 @@ else
|
|
9860
9885
|
# if libdl is installed we need to link against it
|
9861
9886
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
|
9862
9887
|
$as_echo_n "checking for dlopen in -ldl... " >&6; }
|
9863
|
-
if
|
9888
|
+
if ${ac_cv_lib_dl_dlopen+:} false; then :
|
9864
9889
|
$as_echo_n "(cached) " >&6
|
9865
9890
|
else
|
9866
9891
|
ac_check_lib_save_LIBS=$LIBS
|
@@ -9894,7 +9919,7 @@ LIBS=$ac_check_lib_save_LIBS
|
|
9894
9919
|
fi
|
9895
9920
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
|
9896
9921
|
$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
|
9897
|
-
if test "x$ac_cv_lib_dl_dlopen" =
|
9922
|
+
if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
|
9898
9923
|
lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
|
9899
9924
|
else
|
9900
9925
|
|
@@ -9908,12 +9933,12 @@ fi
|
|
9908
9933
|
|
9909
9934
|
*)
|
9910
9935
|
ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load"
|
9911
|
-
if test "x$ac_cv_func_shl_load" =
|
9936
|
+
if test "x$ac_cv_func_shl_load" = xyes; then :
|
9912
9937
|
lt_cv_dlopen="shl_load"
|
9913
9938
|
else
|
9914
9939
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5
|
9915
9940
|
$as_echo_n "checking for shl_load in -ldld... " >&6; }
|
9916
|
-
if
|
9941
|
+
if ${ac_cv_lib_dld_shl_load+:} false; then :
|
9917
9942
|
$as_echo_n "(cached) " >&6
|
9918
9943
|
else
|
9919
9944
|
ac_check_lib_save_LIBS=$LIBS
|
@@ -9947,16 +9972,16 @@ LIBS=$ac_check_lib_save_LIBS
|
|
9947
9972
|
fi
|
9948
9973
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5
|
9949
9974
|
$as_echo "$ac_cv_lib_dld_shl_load" >&6; }
|
9950
|
-
if test "x$ac_cv_lib_dld_shl_load" =
|
9975
|
+
if test "x$ac_cv_lib_dld_shl_load" = xyes; then :
|
9951
9976
|
lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
|
9952
9977
|
else
|
9953
9978
|
ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen"
|
9954
|
-
if test "x$ac_cv_func_dlopen" =
|
9979
|
+
if test "x$ac_cv_func_dlopen" = xyes; then :
|
9955
9980
|
lt_cv_dlopen="dlopen"
|
9956
9981
|
else
|
9957
9982
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
|
9958
9983
|
$as_echo_n "checking for dlopen in -ldl... " >&6; }
|
9959
|
-
if
|
9984
|
+
if ${ac_cv_lib_dl_dlopen+:} false; then :
|
9960
9985
|
$as_echo_n "(cached) " >&6
|
9961
9986
|
else
|
9962
9987
|
ac_check_lib_save_LIBS=$LIBS
|
@@ -9990,12 +10015,12 @@ LIBS=$ac_check_lib_save_LIBS
|
|
9990
10015
|
fi
|
9991
10016
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
|
9992
10017
|
$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
|
9993
|
-
if test "x$ac_cv_lib_dl_dlopen" =
|
10018
|
+
if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
|
9994
10019
|
lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
|
9995
10020
|
else
|
9996
10021
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5
|
9997
10022
|
$as_echo_n "checking for dlopen in -lsvld... " >&6; }
|
9998
|
-
if
|
10023
|
+
if ${ac_cv_lib_svld_dlopen+:} false; then :
|
9999
10024
|
$as_echo_n "(cached) " >&6
|
10000
10025
|
else
|
10001
10026
|
ac_check_lib_save_LIBS=$LIBS
|
@@ -10029,12 +10054,12 @@ LIBS=$ac_check_lib_save_LIBS
|
|
10029
10054
|
fi
|
10030
10055
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5
|
10031
10056
|
$as_echo "$ac_cv_lib_svld_dlopen" >&6; }
|
10032
|
-
if test "x$ac_cv_lib_svld_dlopen" =
|
10057
|
+
if test "x$ac_cv_lib_svld_dlopen" = xyes; then :
|
10033
10058
|
lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
|
10034
10059
|
else
|
10035
10060
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5
|
10036
10061
|
$as_echo_n "checking for dld_link in -ldld... " >&6; }
|
10037
|
-
if
|
10062
|
+
if ${ac_cv_lib_dld_dld_link+:} false; then :
|
10038
10063
|
$as_echo_n "(cached) " >&6
|
10039
10064
|
else
|
10040
10065
|
ac_check_lib_save_LIBS=$LIBS
|
@@ -10068,7 +10093,7 @@ LIBS=$ac_check_lib_save_LIBS
|
|
10068
10093
|
fi
|
10069
10094
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5
|
10070
10095
|
$as_echo "$ac_cv_lib_dld_dld_link" >&6; }
|
10071
|
-
if test "x$ac_cv_lib_dld_dld_link" =
|
10096
|
+
if test "x$ac_cv_lib_dld_dld_link" = xyes; then :
|
10072
10097
|
lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
|
10073
10098
|
fi
|
10074
10099
|
|
@@ -10109,7 +10134,7 @@ fi
|
|
10109
10134
|
|
10110
10135
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5
|
10111
10136
|
$as_echo_n "checking whether a program can dlopen itself... " >&6; }
|
10112
|
-
if
|
10137
|
+
if ${lt_cv_dlopen_self+:} false; then :
|
10113
10138
|
$as_echo_n "(cached) " >&6
|
10114
10139
|
else
|
10115
10140
|
if test "$cross_compiling" = yes; then :
|
@@ -10118,7 +10143,7 @@ else
|
|
10118
10143
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
10119
10144
|
lt_status=$lt_dlunknown
|
10120
10145
|
cat > conftest.$ac_ext <<_LT_EOF
|
10121
|
-
#line
|
10146
|
+
#line 10146 "configure"
|
10122
10147
|
#include "confdefs.h"
|
10123
10148
|
|
10124
10149
|
#if HAVE_DLFCN_H
|
@@ -10205,7 +10230,7 @@ $as_echo "$lt_cv_dlopen_self" >&6; }
|
|
10205
10230
|
wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
|
10206
10231
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5
|
10207
10232
|
$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; }
|
10208
|
-
if
|
10233
|
+
if ${lt_cv_dlopen_self_static+:} false; then :
|
10209
10234
|
$as_echo_n "(cached) " >&6
|
10210
10235
|
else
|
10211
10236
|
if test "$cross_compiling" = yes; then :
|
@@ -10214,7 +10239,7 @@ else
|
|
10214
10239
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
10215
10240
|
lt_status=$lt_dlunknown
|
10216
10241
|
cat > conftest.$ac_ext <<_LT_EOF
|
10217
|
-
#line
|
10242
|
+
#line 10242 "configure"
|
10218
10243
|
#include "confdefs.h"
|
10219
10244
|
|
10220
10245
|
#if HAVE_DLFCN_H
|
@@ -10473,7 +10498,7 @@ done
|
|
10473
10498
|
for ac_func in clock_gettime
|
10474
10499
|
do :
|
10475
10500
|
ac_fn_c_check_func "$LINENO" "clock_gettime" "ac_cv_func_clock_gettime"
|
10476
|
-
if test "x$ac_cv_func_clock_gettime" =
|
10501
|
+
if test "x$ac_cv_func_clock_gettime" = xyes; then :
|
10477
10502
|
cat >>confdefs.h <<_ACEOF
|
10478
10503
|
#define HAVE_CLOCK_GETTIME 1
|
10479
10504
|
_ACEOF
|
@@ -10513,7 +10538,7 @@ rm -f core conftest.err conftest.$ac_objext \
|
|
10513
10538
|
if test -z "$LIBEV_M4_AVOID_LIBRT" && test -z "$ac_have_clock_syscall"; then
|
10514
10539
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for clock_gettime in -lrt" >&5
|
10515
10540
|
$as_echo_n "checking for clock_gettime in -lrt... " >&6; }
|
10516
|
-
if
|
10541
|
+
if ${ac_cv_lib_rt_clock_gettime+:} false; then :
|
10517
10542
|
$as_echo_n "(cached) " >&6
|
10518
10543
|
else
|
10519
10544
|
ac_check_lib_save_LIBS=$LIBS
|
@@ -10547,7 +10572,7 @@ LIBS=$ac_check_lib_save_LIBS
|
|
10547
10572
|
fi
|
10548
10573
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_gettime" >&5
|
10549
10574
|
$as_echo "$ac_cv_lib_rt_clock_gettime" >&6; }
|
10550
|
-
if test "x$ac_cv_lib_rt_clock_gettime" =
|
10575
|
+
if test "x$ac_cv_lib_rt_clock_gettime" = xyes; then :
|
10551
10576
|
cat >>confdefs.h <<_ACEOF
|
10552
10577
|
#define HAVE_LIBRT 1
|
10553
10578
|
_ACEOF
|
@@ -10560,7 +10585,7 @@ fi
|
|
10560
10585
|
for ac_func in clock_gettime
|
10561
10586
|
do :
|
10562
10587
|
ac_fn_c_check_func "$LINENO" "clock_gettime" "ac_cv_func_clock_gettime"
|
10563
|
-
if test "x$ac_cv_func_clock_gettime" =
|
10588
|
+
if test "x$ac_cv_func_clock_gettime" = xyes; then :
|
10564
10589
|
cat >>confdefs.h <<_ACEOF
|
10565
10590
|
#define HAVE_CLOCK_GETTIME 1
|
10566
10591
|
_ACEOF
|
@@ -10577,7 +10602,7 @@ done
|
|
10577
10602
|
for ac_func in nanosleep
|
10578
10603
|
do :
|
10579
10604
|
ac_fn_c_check_func "$LINENO" "nanosleep" "ac_cv_func_nanosleep"
|
10580
|
-
if test "x$ac_cv_func_nanosleep" =
|
10605
|
+
if test "x$ac_cv_func_nanosleep" = xyes; then :
|
10581
10606
|
cat >>confdefs.h <<_ACEOF
|
10582
10607
|
#define HAVE_NANOSLEEP 1
|
10583
10608
|
_ACEOF
|
@@ -10587,7 +10612,7 @@ else
|
|
10587
10612
|
if test -z "$LIBEV_M4_AVOID_LIBRT"; then
|
10588
10613
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for nanosleep in -lrt" >&5
|
10589
10614
|
$as_echo_n "checking for nanosleep in -lrt... " >&6; }
|
10590
|
-
if
|
10615
|
+
if ${ac_cv_lib_rt_nanosleep+:} false; then :
|
10591
10616
|
$as_echo_n "(cached) " >&6
|
10592
10617
|
else
|
10593
10618
|
ac_check_lib_save_LIBS=$LIBS
|
@@ -10621,7 +10646,7 @@ LIBS=$ac_check_lib_save_LIBS
|
|
10621
10646
|
fi
|
10622
10647
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_nanosleep" >&5
|
10623
10648
|
$as_echo "$ac_cv_lib_rt_nanosleep" >&6; }
|
10624
|
-
if test "x$ac_cv_lib_rt_nanosleep" =
|
10649
|
+
if test "x$ac_cv_lib_rt_nanosleep" = xyes; then :
|
10625
10650
|
cat >>confdefs.h <<_ACEOF
|
10626
10651
|
#define HAVE_LIBRT 1
|
10627
10652
|
_ACEOF
|
@@ -10634,7 +10659,7 @@ fi
|
|
10634
10659
|
for ac_func in nanosleep
|
10635
10660
|
do :
|
10636
10661
|
ac_fn_c_check_func "$LINENO" "nanosleep" "ac_cv_func_nanosleep"
|
10637
|
-
if test "x$ac_cv_func_nanosleep" =
|
10662
|
+
if test "x$ac_cv_func_nanosleep" = xyes; then :
|
10638
10663
|
cat >>confdefs.h <<_ACEOF
|
10639
10664
|
#define HAVE_NANOSLEEP 1
|
10640
10665
|
_ACEOF
|
@@ -10653,7 +10678,7 @@ if test -z "$LIBEV_M4_AVOID_LIBM"; then
|
|
10653
10678
|
fi
|
10654
10679
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing floor" >&5
|
10655
10680
|
$as_echo_n "checking for library containing floor... " >&6; }
|
10656
|
-
if
|
10681
|
+
if ${ac_cv_search_floor+:} false; then :
|
10657
10682
|
$as_echo_n "(cached) " >&6
|
10658
10683
|
else
|
10659
10684
|
ac_func_search_save_LIBS=$LIBS
|
@@ -10687,11 +10712,11 @@ for ac_lib in '' $LIBM; do
|
|
10687
10712
|
fi
|
10688
10713
|
rm -f core conftest.err conftest.$ac_objext \
|
10689
10714
|
conftest$ac_exeext
|
10690
|
-
if
|
10715
|
+
if ${ac_cv_search_floor+:} false; then :
|
10691
10716
|
break
|
10692
10717
|
fi
|
10693
10718
|
done
|
10694
|
-
if
|
10719
|
+
if ${ac_cv_search_floor+:} false; then :
|
10695
10720
|
|
10696
10721
|
else
|
10697
10722
|
ac_cv_search_floor=no
|
@@ -10778,10 +10803,21 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
|
|
10778
10803
|
:end' >>confcache
|
10779
10804
|
if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
|
10780
10805
|
if test -w "$cache_file"; then
|
10781
|
-
test "x$cache_file" != "x/dev/null"
|
10806
|
+
if test "x$cache_file" != "x/dev/null"; then
|
10782
10807
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
|
10783
10808
|
$as_echo "$as_me: updating cache $cache_file" >&6;}
|
10784
|
-
|
10809
|
+
if test ! -f "$cache_file" || test -h "$cache_file"; then
|
10810
|
+
cat confcache >"$cache_file"
|
10811
|
+
else
|
10812
|
+
case $cache_file in #(
|
10813
|
+
*/* | ?:*)
|
10814
|
+
mv -f confcache "$cache_file"$$ &&
|
10815
|
+
mv -f "$cache_file"$$ "$cache_file" ;; #(
|
10816
|
+
*)
|
10817
|
+
mv -f confcache "$cache_file" ;;
|
10818
|
+
esac
|
10819
|
+
fi
|
10820
|
+
fi
|
10785
10821
|
else
|
10786
10822
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
|
10787
10823
|
$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
|
@@ -10833,7 +10869,7 @@ if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
|
|
10833
10869
|
Usually this means the macro was only invoked conditionally." "$LINENO" 5
|
10834
10870
|
fi
|
10835
10871
|
|
10836
|
-
: ${CONFIG_STATUS=./config.status}
|
10872
|
+
: "${CONFIG_STATUS=./config.status}"
|
10837
10873
|
ac_write_fail=0
|
10838
10874
|
ac_clean_files_save=$ac_clean_files
|
10839
10875
|
ac_clean_files="$ac_clean_files $CONFIG_STATUS"
|
@@ -10934,6 +10970,7 @@ fi
|
|
10934
10970
|
IFS=" "" $as_nl"
|
10935
10971
|
|
10936
10972
|
# Find who we are. Look in the path if we contain no directory separator.
|
10973
|
+
as_myself=
|
10937
10974
|
case $0 in #((
|
10938
10975
|
*[\\/]* ) as_myself=$0 ;;
|
10939
10976
|
*) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
@@ -11129,16 +11166,16 @@ if (echo >conf$$.file) 2>/dev/null; then
|
|
11129
11166
|
# ... but there are two gotchas:
|
11130
11167
|
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
|
11131
11168
|
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
|
11132
|
-
# In both cases, we have to default to `cp -
|
11169
|
+
# In both cases, we have to default to `cp -pR'.
|
11133
11170
|
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
|
11134
|
-
as_ln_s='cp -
|
11171
|
+
as_ln_s='cp -pR'
|
11135
11172
|
elif ln conf$$.file conf$$ 2>/dev/null; then
|
11136
11173
|
as_ln_s=ln
|
11137
11174
|
else
|
11138
|
-
as_ln_s='cp -
|
11175
|
+
as_ln_s='cp -pR'
|
11139
11176
|
fi
|
11140
11177
|
else
|
11141
|
-
as_ln_s='cp -
|
11178
|
+
as_ln_s='cp -pR'
|
11142
11179
|
fi
|
11143
11180
|
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
|
11144
11181
|
rmdir conf$$.dir 2>/dev/null
|
@@ -11198,28 +11235,16 @@ else
|
|
11198
11235
|
as_mkdir_p=false
|
11199
11236
|
fi
|
11200
11237
|
|
11201
|
-
|
11202
|
-
|
11203
|
-
|
11204
|
-
|
11205
|
-
|
11206
|
-
|
11207
|
-
|
11208
|
-
|
11209
|
-
|
11210
|
-
|
11211
|
-
if test -d "$1"; then
|
11212
|
-
test -d "$1/.";
|
11213
|
-
else
|
11214
|
-
case $1 in #(
|
11215
|
-
-*)set "./$1";;
|
11216
|
-
esac;
|
11217
|
-
case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
|
11218
|
-
???[sx]*):;;*)false;;esac;fi
|
11219
|
-
'\'' sh
|
11220
|
-
'
|
11221
|
-
fi
|
11222
|
-
as_executable_p=$as_test_x
|
11238
|
+
|
11239
|
+
# as_fn_executable_p FILE
|
11240
|
+
# -----------------------
|
11241
|
+
# Test if FILE is an executable regular file.
|
11242
|
+
as_fn_executable_p ()
|
11243
|
+
{
|
11244
|
+
test -f "$1" && test -x "$1"
|
11245
|
+
} # as_fn_executable_p
|
11246
|
+
as_test_x='test -x'
|
11247
|
+
as_executable_p=as_fn_executable_p
|
11223
11248
|
|
11224
11249
|
# Sed expression to map a string onto a valid CPP name.
|
11225
11250
|
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
|
@@ -11241,7 +11266,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|
11241
11266
|
# values after options handling.
|
11242
11267
|
ac_log="
|
11243
11268
|
This file was extended by $as_me, which was
|
11244
|
-
generated by GNU Autoconf 2.
|
11269
|
+
generated by GNU Autoconf 2.69. Invocation command line was
|
11245
11270
|
|
11246
11271
|
CONFIG_FILES = $CONFIG_FILES
|
11247
11272
|
CONFIG_HEADERS = $CONFIG_HEADERS
|
@@ -11307,10 +11332,10 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
|
11307
11332
|
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
11308
11333
|
ac_cs_version="\\
|
11309
11334
|
config.status
|
11310
|
-
configured by $0, generated by GNU Autoconf 2.
|
11335
|
+
configured by $0, generated by GNU Autoconf 2.69,
|
11311
11336
|
with options \\"\$ac_cs_config\\"
|
11312
11337
|
|
11313
|
-
Copyright (C)
|
11338
|
+
Copyright (C) 2012 Free Software Foundation, Inc.
|
11314
11339
|
This config.status script is free software; the Free Software Foundation
|
11315
11340
|
gives unlimited permission to copy, distribute and modify it."
|
11316
11341
|
|
@@ -11401,7 +11426,7 @@ fi
|
|
11401
11426
|
_ACEOF
|
11402
11427
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
11403
11428
|
if \$ac_cs_recheck; then
|
11404
|
-
set X
|
11429
|
+
set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
|
11405
11430
|
shift
|
11406
11431
|
\$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
|
11407
11432
|
CONFIG_SHELL='$SHELL'
|
@@ -11695,7 +11720,7 @@ do
|
|
11695
11720
|
"libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
|
11696
11721
|
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
11697
11722
|
|
11698
|
-
*) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5
|
11723
|
+
*) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
|
11699
11724
|
esac
|
11700
11725
|
done
|
11701
11726
|
|
@@ -11718,9 +11743,10 @@ fi
|
|
11718
11743
|
# after its creation but before its name has been assigned to `$tmp'.
|
11719
11744
|
$debug ||
|
11720
11745
|
{
|
11721
|
-
tmp=
|
11746
|
+
tmp= ac_tmp=
|
11722
11747
|
trap 'exit_status=$?
|
11723
|
-
|
11748
|
+
: "${ac_tmp:=$tmp}"
|
11749
|
+
{ test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
|
11724
11750
|
' 0
|
11725
11751
|
trap 'as_fn_exit 1' 1 2 13 15
|
11726
11752
|
}
|
@@ -11728,12 +11754,13 @@ $debug ||
|
|
11728
11754
|
|
11729
11755
|
{
|
11730
11756
|
tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
|
11731
|
-
test -
|
11757
|
+
test -d "$tmp"
|
11732
11758
|
} ||
|
11733
11759
|
{
|
11734
11760
|
tmp=./conf$$-$RANDOM
|
11735
11761
|
(umask 077 && mkdir "$tmp")
|
11736
11762
|
} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
|
11763
|
+
ac_tmp=$tmp
|
11737
11764
|
|
11738
11765
|
# Set up the scripts for CONFIG_FILES section.
|
11739
11766
|
# No need to generate them if there are no CONFIG_FILES.
|
@@ -11755,7 +11782,7 @@ else
|
|
11755
11782
|
ac_cs_awk_cr=$ac_cr
|
11756
11783
|
fi
|
11757
11784
|
|
11758
|
-
echo 'BEGIN {' >"$
|
11785
|
+
echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
|
11759
11786
|
_ACEOF
|
11760
11787
|
|
11761
11788
|
|
@@ -11783,7 +11810,7 @@ done
|
|
11783
11810
|
rm -f conf$$subs.sh
|
11784
11811
|
|
11785
11812
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
11786
|
-
cat >>"\$
|
11813
|
+
cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
|
11787
11814
|
_ACEOF
|
11788
11815
|
sed -n '
|
11789
11816
|
h
|
@@ -11831,7 +11858,7 @@ t delim
|
|
11831
11858
|
rm -f conf$$subs.awk
|
11832
11859
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
11833
11860
|
_ACAWK
|
11834
|
-
cat >>"\$
|
11861
|
+
cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
|
11835
11862
|
for (key in S) S_is_set[key] = 1
|
11836
11863
|
FS = ""
|
11837
11864
|
|
@@ -11863,7 +11890,7 @@ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
|
|
11863
11890
|
sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
|
11864
11891
|
else
|
11865
11892
|
cat
|
11866
|
-
fi < "$
|
11893
|
+
fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
|
11867
11894
|
|| as_fn_error $? "could not setup config files machinery" "$LINENO" 5
|
11868
11895
|
_ACEOF
|
11869
11896
|
|
@@ -11897,7 +11924,7 @@ fi # test -n "$CONFIG_FILES"
|
|
11897
11924
|
# No need to generate them if there are no CONFIG_HEADERS.
|
11898
11925
|
# This happens for instance with `./config.status Makefile'.
|
11899
11926
|
if test -n "$CONFIG_HEADERS"; then
|
11900
|
-
cat >"$
|
11927
|
+
cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
|
11901
11928
|
BEGIN {
|
11902
11929
|
_ACEOF
|
11903
11930
|
|
@@ -11909,8 +11936,8 @@ _ACEOF
|
|
11909
11936
|
# handling of long lines.
|
11910
11937
|
ac_delim='%!_!# '
|
11911
11938
|
for ac_last_try in false false :; do
|
11912
|
-
|
11913
|
-
if test -z "$
|
11939
|
+
ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
|
11940
|
+
if test -z "$ac_tt"; then
|
11914
11941
|
break
|
11915
11942
|
elif $ac_last_try; then
|
11916
11943
|
as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
|
@@ -12011,7 +12038,7 @@ do
|
|
12011
12038
|
esac
|
12012
12039
|
case $ac_mode$ac_tag in
|
12013
12040
|
:[FHL]*:*);;
|
12014
|
-
:L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5
|
12041
|
+
:L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
|
12015
12042
|
:[FH]-) ac_tag=-:-;;
|
12016
12043
|
:[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
|
12017
12044
|
esac
|
@@ -12030,7 +12057,7 @@ do
|
|
12030
12057
|
for ac_f
|
12031
12058
|
do
|
12032
12059
|
case $ac_f in
|
12033
|
-
-) ac_f="$
|
12060
|
+
-) ac_f="$ac_tmp/stdin";;
|
12034
12061
|
*) # Look for the file first in the build tree, then in the source tree
|
12035
12062
|
# (if the path is not absolute). The absolute path cannot be DOS-style,
|
12036
12063
|
# because $ac_f cannot contain `:'.
|
@@ -12039,7 +12066,7 @@ do
|
|
12039
12066
|
[\\/$]*) false;;
|
12040
12067
|
*) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
|
12041
12068
|
esac ||
|
12042
|
-
as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5
|
12069
|
+
as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
|
12043
12070
|
esac
|
12044
12071
|
case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
|
12045
12072
|
as_fn_append ac_file_inputs " '$ac_f'"
|
@@ -12065,8 +12092,8 @@ $as_echo "$as_me: creating $ac_file" >&6;}
|
|
12065
12092
|
esac
|
12066
12093
|
|
12067
12094
|
case $ac_tag in
|
12068
|
-
*:-:* | *:-) cat >"$
|
12069
|
-
|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
|
12095
|
+
*:-:* | *:-) cat >"$ac_tmp/stdin" \
|
12096
|
+
|| as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
|
12070
12097
|
esac
|
12071
12098
|
;;
|
12072
12099
|
esac
|
@@ -12202,21 +12229,22 @@ s&@INSTALL@&$ac_INSTALL&;t t
|
|
12202
12229
|
s&@MKDIR_P@&$ac_MKDIR_P&;t t
|
12203
12230
|
$ac_datarootdir_hack
|
12204
12231
|
"
|
12205
|
-
eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$
|
12206
|
-
|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
|
12232
|
+
eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
|
12233
|
+
>$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
|
12207
12234
|
|
12208
12235
|
test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
|
12209
|
-
{ ac_out=`sed -n '/\${datarootdir}/p' "$
|
12210
|
-
{ ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p'
|
12236
|
+
{ ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
|
12237
|
+
{ ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
|
12238
|
+
"$ac_tmp/out"`; test -z "$ac_out"; } &&
|
12211
12239
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
|
12212
12240
|
which seems to be undefined. Please make sure it is defined" >&5
|
12213
12241
|
$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
|
12214
12242
|
which seems to be undefined. Please make sure it is defined" >&2;}
|
12215
12243
|
|
12216
|
-
rm -f "$
|
12244
|
+
rm -f "$ac_tmp/stdin"
|
12217
12245
|
case $ac_file in
|
12218
|
-
-) cat "$
|
12219
|
-
*) rm -f "$ac_file" && mv "$
|
12246
|
+
-) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
|
12247
|
+
*) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
|
12220
12248
|
esac \
|
12221
12249
|
|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
|
12222
12250
|
;;
|
@@ -12227,20 +12255,20 @@ which seems to be undefined. Please make sure it is defined" >&2;}
|
|
12227
12255
|
if test x"$ac_file" != x-; then
|
12228
12256
|
{
|
12229
12257
|
$as_echo "/* $configure_input */" \
|
12230
|
-
&& eval '$AWK -f "$
|
12231
|
-
} >"$
|
12258
|
+
&& eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
|
12259
|
+
} >"$ac_tmp/config.h" \
|
12232
12260
|
|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
|
12233
|
-
if diff "$ac_file" "$
|
12261
|
+
if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
|
12234
12262
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
|
12235
12263
|
$as_echo "$as_me: $ac_file is unchanged" >&6;}
|
12236
12264
|
else
|
12237
12265
|
rm -f "$ac_file"
|
12238
|
-
mv "$
|
12266
|
+
mv "$ac_tmp/config.h" "$ac_file" \
|
12239
12267
|
|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
|
12240
12268
|
fi
|
12241
12269
|
else
|
12242
12270
|
$as_echo "/* $configure_input */" \
|
12243
|
-
&& eval '$AWK -f "$
|
12271
|
+
&& eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
|
12244
12272
|
|| as_fn_error $? "could not create -" "$LINENO" 5
|
12245
12273
|
fi
|
12246
12274
|
# Compute "$ac_file"'s index in $config_headers.
|