Date: Sun, 13 Jan 2019 09:53:42 +0000 (UTC) From: Kirill Ponomarev <krion@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r490121 - in head/devel: . rpclib rpclib/files Message-ID: <201901130953.x0D9rgcO076711@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: krion Date: Sun Jan 13 09:53:41 2019 New Revision: 490121 URL: https://svnweb.freebsd.org/changeset/ports/490121 Log: Modern C++ msgpack-RPC server and client library Submitted by: aleksandr.fedorov@itglobal.com Added: head/devel/rpclib/ head/devel/rpclib/Makefile (contents, props changed) head/devel/rpclib/distinfo (contents, props changed) head/devel/rpclib/files/ head/devel/rpclib/files/patch-CMakeLists.txt (contents, props changed) head/devel/rpclib/pkg-descr (contents, props changed) head/devel/rpclib/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jan 13 09:30:27 2019 (r490120) +++ head/devel/Makefile Sun Jan 13 09:53:41 2019 (r490121) @@ -5418,6 +5418,7 @@ SUBDIR += root-doc SUBDIR += rote SUBDIR += rpc2 + SUBDIR += rpclib SUBDIR += rpm-spec-mode.el SUBDIR += rsvndump SUBDIR += rth Added: head/devel/rpclib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rpclib/Makefile Sun Jan 13 09:53:41 2019 (r490121) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= rpclib +DISTVERSIONPREFIX= v +DISTVERSION= 2.2.1 +CATEGORIES= devel + +MAINTAINER= aleksandr.fedorov@itglobal.com +COMMENT= Modern C++ msgpack-RPC server and client library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USES= cmake compiler:c++11-lib + +USE_GITHUB= yes + +.include <bsd.port.mk> Added: head/devel/rpclib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rpclib/distinfo Sun Jan 13 09:53:41 2019 (r490121) @@ -0,0 +1,3 @@ +TIMESTAMP = 1547202918 +SHA256 (rpclib-rpclib-v2.2.1_GH0.tar.gz) = ceef2c521a1712035bc64d1bd5e3b2c7de16a1d856cbbeadd000ae318c96463f +SIZE (rpclib-rpclib-v2.2.1_GH0.tar.gz) = 1629771 Added: head/devel/rpclib/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rpclib/files/patch-CMakeLists.txt Sun Jan 13 09:53:41 2019 (r490121) @@ -0,0 +1,19 @@ +--- CMakeLists.txt.orig 2019-01-11 12:07:42 UTC ++++ CMakeLists.txt +@@ -126,7 +126,7 @@ if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") + set(UNUSED_LAMBDA_CAPTURE_WARN_SUPPORTED) + check_warning_flag("unused-lambda-capture" UNUSED_LAMBDA_CAPTURE_WARN_SUPPORTED) + if(${UNUSED_LAMBDA_CAPTURE_WARN_SUPPORTED}) +- list(APPEND RPCLIB_BUILD_FLAGS -Wno-no-unused-lambda-capture) ++ list(APPEND RPCLIB_BUILD_FLAGS -Wno-unused-lambda-capture) + endif() + + check_warning_flag("zero-as-null-pointer-constant" ZERO_AS_NULL_POINTER_CONSTANT_WARN_SUPPORTED) +@@ -251,6 +251,7 @@ if(NOT MSVC) # Don't install pkg-config files when bu + set(libdir "${CMAKE_INSTALL_PREFIX}/lib") + set(includedir "${CMAKE_INSTALL_PREFIX}/include") + set(rpclib_version ${PROJECT_VERSION}) ++ set(OUTPUT_LIBRARY_NAME ${PROJECT_NAME}) + get_target_property(rpclib_cflags ${PROJECT_NAME} COMPILE_OPTIONS) + string(REPLACE ";" " " rpclib_cflags "${rpclib_cflags}") # Convert list to string + Added: head/devel/rpclib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rpclib/pkg-descr Sun Jan 13 09:53:41 2019 (r490121) @@ -0,0 +1,3 @@ +Modern C++ msgpack-RPC server and client library. + +WWW: https://github.com/rpclib/rpclib Added: head/devel/rpclib/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rpclib/pkg-plist Sun Jan 13 09:53:41 2019 (r490121) @@ -0,0 +1,692 @@ +include/rpc/client.h +include/rpc/client.inl +include/rpc/compatibility.h +include/rpc/config.h +include/rpc/detail/all.h +include/rpc/detail/any.h +include/rpc/detail/async_writer.h +include/rpc/detail/bool.h +include/rpc/detail/call.h +include/rpc/detail/client_error.h +include/rpc/detail/constant.h +include/rpc/detail/dev_utils.h +include/rpc/detail/func_tools.h +include/rpc/detail/func_traits.h +include/rpc/detail/if.h +include/rpc/detail/invoke.h +include/rpc/detail/is_specialization_of.h +include/rpc/detail/log.h +include/rpc/detail/make_unique.h +include/rpc/detail/not.h +include/rpc/detail/pimpl.h +include/rpc/detail/response.h +include/rpc/detail/server_session.h +include/rpc/detail/thread_group.h +include/rpc/detail/util.h +include/rpc/dispatcher.h +include/rpc/dispatcher.inl +include/rpc/msgpack.hpp +include/rpc/msgpack/adaptor/adaptor_base.hpp +include/rpc/msgpack/adaptor/adaptor_base_decl.hpp +include/rpc/msgpack/adaptor/array_ref.hpp +include/rpc/msgpack/adaptor/array_ref_decl.hpp +include/rpc/msgpack/adaptor/bool.hpp +include/rpc/msgpack/adaptor/boost/fusion.hpp +include/rpc/msgpack/adaptor/boost/msgpack_variant.hpp +include/rpc/msgpack/adaptor/boost/msgpack_variant_decl.hpp +include/rpc/msgpack/adaptor/boost/optional.hpp +include/rpc/msgpack/adaptor/boost/string_ref.hpp +include/rpc/msgpack/adaptor/boost/string_view.hpp +include/rpc/msgpack/adaptor/carray.hpp +include/rpc/msgpack/adaptor/char_ptr.hpp +include/rpc/msgpack/adaptor/check_container_size.hpp +include/rpc/msgpack/adaptor/check_container_size_decl.hpp +include/rpc/msgpack/adaptor/cpp11/array.hpp +include/rpc/msgpack/adaptor/cpp11/array_char.hpp +include/rpc/msgpack/adaptor/cpp11/array_unsigned_char.hpp +include/rpc/msgpack/adaptor/cpp11/forward_list.hpp +include/rpc/msgpack/adaptor/cpp11/reference_wrapper.hpp +include/rpc/msgpack/adaptor/cpp11/shared_ptr.hpp +include/rpc/msgpack/adaptor/cpp11/tuple.hpp +include/rpc/msgpack/adaptor/cpp11/unique_ptr.hpp +include/rpc/msgpack/adaptor/cpp11/unordered_map.hpp +include/rpc/msgpack/adaptor/cpp11/unordered_set.hpp +include/rpc/msgpack/adaptor/cpp17/optional.hpp +include/rpc/msgpack/adaptor/cpp17/string_view.hpp +include/rpc/msgpack/adaptor/define.hpp +include/rpc/msgpack/adaptor/define_decl.hpp +include/rpc/msgpack/adaptor/deque.hpp +include/rpc/msgpack/adaptor/ext.hpp +include/rpc/msgpack/adaptor/ext_decl.hpp +include/rpc/msgpack/adaptor/fixint.hpp +include/rpc/msgpack/adaptor/fixint_decl.hpp +include/rpc/msgpack/adaptor/float.hpp +include/rpc/msgpack/adaptor/int.hpp +include/rpc/msgpack/adaptor/int_decl.hpp +include/rpc/msgpack/adaptor/list.hpp +include/rpc/msgpack/adaptor/map.hpp +include/rpc/msgpack/adaptor/map_decl.hpp +include/rpc/msgpack/adaptor/msgpack_tuple.hpp +include/rpc/msgpack/adaptor/msgpack_tuple_decl.hpp +include/rpc/msgpack/adaptor/nil.hpp +include/rpc/msgpack/adaptor/nil_decl.hpp +include/rpc/msgpack/adaptor/pair.hpp +include/rpc/msgpack/adaptor/raw.hpp +include/rpc/msgpack/adaptor/raw_decl.hpp +include/rpc/msgpack/adaptor/set.hpp +include/rpc/msgpack/adaptor/size_equal_only.hpp +include/rpc/msgpack/adaptor/size_equal_only_decl.hpp +include/rpc/msgpack/adaptor/string.hpp +include/rpc/msgpack/adaptor/tr1/unordered_map.hpp +include/rpc/msgpack/adaptor/tr1/unordered_set.hpp +include/rpc/msgpack/adaptor/v4raw.hpp +include/rpc/msgpack/adaptor/v4raw_decl.hpp +include/rpc/msgpack/adaptor/vector.hpp +include/rpc/msgpack/adaptor/vector_bool.hpp +include/rpc/msgpack/adaptor/vector_char.hpp +include/rpc/msgpack/adaptor/vector_unsigned_char.hpp +include/rpc/msgpack/cpp_config.hpp +include/rpc/msgpack/cpp_config_decl.hpp +include/rpc/msgpack/fbuffer.h +include/rpc/msgpack/fbuffer.hpp +include/rpc/msgpack/fbuffer_decl.hpp +include/rpc/msgpack/gcc_atomic.h +include/rpc/msgpack/gcc_atomic.hpp +include/rpc/msgpack/iterator.hpp +include/rpc/msgpack/iterator_decl.hpp +include/rpc/msgpack/meta.hpp +include/rpc/msgpack/meta_decl.hpp +include/rpc/msgpack/object.h +include/rpc/msgpack/object.hpp +include/rpc/msgpack/object_decl.hpp +include/rpc/msgpack/object_fwd.hpp +include/rpc/msgpack/object_fwd_decl.hpp +include/rpc/msgpack/pack.h +include/rpc/msgpack/pack.hpp +include/rpc/msgpack/pack_decl.hpp +include/rpc/msgpack/pack_define.h +include/rpc/msgpack/pack_template.h +include/rpc/msgpack/parse_return.hpp +include/rpc/msgpack/predef.h +include/rpc/msgpack/predef/architecture.h +include/rpc/msgpack/predef/architecture/alpha.h +include/rpc/msgpack/predef/architecture/arm.h +include/rpc/msgpack/predef/architecture/blackfin.h +include/rpc/msgpack/predef/architecture/convex.h +include/rpc/msgpack/predef/architecture/ia64.h +include/rpc/msgpack/predef/architecture/m68k.h +include/rpc/msgpack/predef/architecture/mips.h +include/rpc/msgpack/predef/architecture/parisc.h +include/rpc/msgpack/predef/architecture/ppc.h +include/rpc/msgpack/predef/architecture/pyramid.h +include/rpc/msgpack/predef/architecture/rs6k.h +include/rpc/msgpack/predef/architecture/sparc.h +include/rpc/msgpack/predef/architecture/superh.h +include/rpc/msgpack/predef/architecture/sys370.h +include/rpc/msgpack/predef/architecture/sys390.h +include/rpc/msgpack/predef/architecture/x86.h +include/rpc/msgpack/predef/architecture/x86/32.h +include/rpc/msgpack/predef/architecture/x86/64.h +include/rpc/msgpack/predef/architecture/z.h +include/rpc/msgpack/predef/compiler.h +include/rpc/msgpack/predef/compiler/borland.h +include/rpc/msgpack/predef/compiler/clang.h +include/rpc/msgpack/predef/compiler/comeau.h +include/rpc/msgpack/predef/compiler/compaq.h +include/rpc/msgpack/predef/compiler/diab.h +include/rpc/msgpack/predef/compiler/digitalmars.h +include/rpc/msgpack/predef/compiler/dignus.h +include/rpc/msgpack/predef/compiler/edg.h +include/rpc/msgpack/predef/compiler/ekopath.h +include/rpc/msgpack/predef/compiler/gcc.h +include/rpc/msgpack/predef/compiler/gcc_xml.h +include/rpc/msgpack/predef/compiler/greenhills.h +include/rpc/msgpack/predef/compiler/hp_acc.h +include/rpc/msgpack/predef/compiler/iar.h +include/rpc/msgpack/predef/compiler/ibm.h +include/rpc/msgpack/predef/compiler/intel.h +include/rpc/msgpack/predef/compiler/kai.h +include/rpc/msgpack/predef/compiler/llvm.h +include/rpc/msgpack/predef/compiler/metaware.h +include/rpc/msgpack/predef/compiler/metrowerks.h +include/rpc/msgpack/predef/compiler/microtec.h +include/rpc/msgpack/predef/compiler/mpw.h +include/rpc/msgpack/predef/compiler/palm.h +include/rpc/msgpack/predef/compiler/pgi.h +include/rpc/msgpack/predef/compiler/sgi_mipspro.h +include/rpc/msgpack/predef/compiler/sunpro.h +include/rpc/msgpack/predef/compiler/tendra.h +include/rpc/msgpack/predef/compiler/visualc.h +include/rpc/msgpack/predef/compiler/watcom.h +include/rpc/msgpack/predef/detail/_cassert.h +include/rpc/msgpack/predef/detail/_exception.h +include/rpc/msgpack/predef/detail/comp_detected.h +include/rpc/msgpack/predef/detail/endian_compat.h +include/rpc/msgpack/predef/detail/os_detected.h +include/rpc/msgpack/predef/detail/platform_detected.h +include/rpc/msgpack/predef/detail/test.h +include/rpc/msgpack/predef/detail/test_def.h +include/rpc/msgpack/predef/hardware.h +include/rpc/msgpack/predef/hardware/simd.h +include/rpc/msgpack/predef/hardware/simd/arm.h +include/rpc/msgpack/predef/hardware/simd/arm/versions.h +include/rpc/msgpack/predef/hardware/simd/ppc.h +include/rpc/msgpack/predef/hardware/simd/ppc/versions.h +include/rpc/msgpack/predef/hardware/simd/x86.h +include/rpc/msgpack/predef/hardware/simd/x86/versions.h +include/rpc/msgpack/predef/hardware/simd/x86_amd.h +include/rpc/msgpack/predef/hardware/simd/x86_amd/versions.h +include/rpc/msgpack/predef/language.h +include/rpc/msgpack/predef/language/objc.h +include/rpc/msgpack/predef/language/stdc.h +include/rpc/msgpack/predef/language/stdcpp.h +include/rpc/msgpack/predef/library.h +include/rpc/msgpack/predef/library/c.h +include/rpc/msgpack/predef/library/c/_prefix.h +include/rpc/msgpack/predef/library/c/gnu.h +include/rpc/msgpack/predef/library/c/uc.h +include/rpc/msgpack/predef/library/c/vms.h +include/rpc/msgpack/predef/library/c/zos.h +include/rpc/msgpack/predef/library/std.h +include/rpc/msgpack/predef/library/std/_prefix.h +include/rpc/msgpack/predef/library/std/cxx.h +include/rpc/msgpack/predef/library/std/dinkumware.h +include/rpc/msgpack/predef/library/std/libcomo.h +include/rpc/msgpack/predef/library/std/modena.h +include/rpc/msgpack/predef/library/std/msl.h +include/rpc/msgpack/predef/library/std/roguewave.h +include/rpc/msgpack/predef/library/std/sgi.h +include/rpc/msgpack/predef/library/std/stdcpp3.h +include/rpc/msgpack/predef/library/std/stlport.h +include/rpc/msgpack/predef/library/std/vacpp.h +include/rpc/msgpack/predef/make.h +include/rpc/msgpack/predef/os.h +include/rpc/msgpack/predef/os/aix.h +include/rpc/msgpack/predef/os/amigaos.h +include/rpc/msgpack/predef/os/android.h +include/rpc/msgpack/predef/os/beos.h +include/rpc/msgpack/predef/os/bsd.h +include/rpc/msgpack/predef/os/bsd/bsdi.h +include/rpc/msgpack/predef/os/bsd/dragonfly.h +include/rpc/msgpack/predef/os/bsd/free.h +include/rpc/msgpack/predef/os/bsd/net.h +include/rpc/msgpack/predef/os/bsd/open.h +include/rpc/msgpack/predef/os/cygwin.h +include/rpc/msgpack/predef/os/haiku.h +include/rpc/msgpack/predef/os/hpux.h +include/rpc/msgpack/predef/os/ios.h +include/rpc/msgpack/predef/os/irix.h +include/rpc/msgpack/predef/os/linux.h +include/rpc/msgpack/predef/os/macos.h +include/rpc/msgpack/predef/os/os400.h +include/rpc/msgpack/predef/os/qnxnto.h +include/rpc/msgpack/predef/os/solaris.h +include/rpc/msgpack/predef/os/unix.h +include/rpc/msgpack/predef/os/vms.h +include/rpc/msgpack/predef/os/windows.h +include/rpc/msgpack/predef/other.h +include/rpc/msgpack/predef/other/endian.h +include/rpc/msgpack/predef/platform.h +include/rpc/msgpack/predef/platform/mingw.h +include/rpc/msgpack/predef/platform/windows_desktop.h +include/rpc/msgpack/predef/platform/windows_phone.h +include/rpc/msgpack/predef/platform/windows_runtime.h +include/rpc/msgpack/predef/platform/windows_store.h +include/rpc/msgpack/predef/version.h +include/rpc/msgpack/predef/version_number.h +include/rpc/msgpack/preprocessor.hpp +include/rpc/msgpack/preprocessor/arithmetic.hpp +include/rpc/msgpack/preprocessor/arithmetic/add.hpp +include/rpc/msgpack/preprocessor/arithmetic/dec.hpp +include/rpc/msgpack/preprocessor/arithmetic/detail/div_base.hpp +include/rpc/msgpack/preprocessor/arithmetic/div.hpp +include/rpc/msgpack/preprocessor/arithmetic/inc.hpp +include/rpc/msgpack/preprocessor/arithmetic/mod.hpp +include/rpc/msgpack/preprocessor/arithmetic/mul.hpp +include/rpc/msgpack/preprocessor/arithmetic/sub.hpp +include/rpc/msgpack/preprocessor/array.hpp +include/rpc/msgpack/preprocessor/array/data.hpp +include/rpc/msgpack/preprocessor/array/detail/get_data.hpp +include/rpc/msgpack/preprocessor/array/elem.hpp +include/rpc/msgpack/preprocessor/array/enum.hpp +include/rpc/msgpack/preprocessor/array/insert.hpp +include/rpc/msgpack/preprocessor/array/pop_back.hpp +include/rpc/msgpack/preprocessor/array/pop_front.hpp +include/rpc/msgpack/preprocessor/array/push_back.hpp +include/rpc/msgpack/preprocessor/array/push_front.hpp +include/rpc/msgpack/preprocessor/array/remove.hpp +include/rpc/msgpack/preprocessor/array/replace.hpp +include/rpc/msgpack/preprocessor/array/reverse.hpp +include/rpc/msgpack/preprocessor/array/size.hpp +include/rpc/msgpack/preprocessor/array/to_list.hpp +include/rpc/msgpack/preprocessor/array/to_seq.hpp +include/rpc/msgpack/preprocessor/array/to_tuple.hpp +include/rpc/msgpack/preprocessor/assert_msg.hpp +include/rpc/msgpack/preprocessor/cat.hpp +include/rpc/msgpack/preprocessor/comma.hpp +include/rpc/msgpack/preprocessor/comma_if.hpp +include/rpc/msgpack/preprocessor/comparison.hpp +include/rpc/msgpack/preprocessor/comparison/equal.hpp +include/rpc/msgpack/preprocessor/comparison/greater.hpp +include/rpc/msgpack/preprocessor/comparison/greater_equal.hpp +include/rpc/msgpack/preprocessor/comparison/less.hpp +include/rpc/msgpack/preprocessor/comparison/less_equal.hpp +include/rpc/msgpack/preprocessor/comparison/not_equal.hpp +include/rpc/msgpack/preprocessor/config/config.hpp +include/rpc/msgpack/preprocessor/config/limits.hpp +include/rpc/msgpack/preprocessor/control.hpp +include/rpc/msgpack/preprocessor/control/deduce_d.hpp +include/rpc/msgpack/preprocessor/control/detail/dmc/while.hpp +include/rpc/msgpack/preprocessor/control/detail/edg/while.hpp +include/rpc/msgpack/preprocessor/control/detail/msvc/while.hpp +include/rpc/msgpack/preprocessor/control/detail/while.hpp +include/rpc/msgpack/preprocessor/control/expr_if.hpp +include/rpc/msgpack/preprocessor/control/expr_iif.hpp +include/rpc/msgpack/preprocessor/control/if.hpp +include/rpc/msgpack/preprocessor/control/iif.hpp +include/rpc/msgpack/preprocessor/control/while.hpp +include/rpc/msgpack/preprocessor/debug.hpp +include/rpc/msgpack/preprocessor/debug/assert.hpp +include/rpc/msgpack/preprocessor/debug/error.hpp +include/rpc/msgpack/preprocessor/debug/line.hpp +include/rpc/msgpack/preprocessor/dec.hpp +include/rpc/msgpack/preprocessor/detail/auto_rec.hpp +include/rpc/msgpack/preprocessor/detail/check.hpp +include/rpc/msgpack/preprocessor/detail/dmc/auto_rec.hpp +include/rpc/msgpack/preprocessor/detail/is_binary.hpp +include/rpc/msgpack/preprocessor/detail/is_nullary.hpp +include/rpc/msgpack/preprocessor/detail/is_unary.hpp +include/rpc/msgpack/preprocessor/detail/null.hpp +include/rpc/msgpack/preprocessor/detail/split.hpp +include/rpc/msgpack/preprocessor/empty.hpp +include/rpc/msgpack/preprocessor/enum.hpp +include/rpc/msgpack/preprocessor/enum_params.hpp +include/rpc/msgpack/preprocessor/enum_params_with_a_default.hpp +include/rpc/msgpack/preprocessor/enum_params_with_defaults.hpp +include/rpc/msgpack/preprocessor/enum_shifted.hpp +include/rpc/msgpack/preprocessor/enum_shifted_params.hpp +include/rpc/msgpack/preprocessor/expand.hpp +include/rpc/msgpack/preprocessor/expr_if.hpp +include/rpc/msgpack/preprocessor/facilities.hpp +include/rpc/msgpack/preprocessor/facilities/apply.hpp +include/rpc/msgpack/preprocessor/facilities/detail/is_empty.hpp +include/rpc/msgpack/preprocessor/facilities/empty.hpp +include/rpc/msgpack/preprocessor/facilities/expand.hpp +include/rpc/msgpack/preprocessor/facilities/identity.hpp +include/rpc/msgpack/preprocessor/facilities/intercept.hpp +include/rpc/msgpack/preprocessor/facilities/is_1.hpp +include/rpc/msgpack/preprocessor/facilities/is_empty.hpp +include/rpc/msgpack/preprocessor/facilities/is_empty_or_1.hpp +include/rpc/msgpack/preprocessor/facilities/is_empty_variadic.hpp +include/rpc/msgpack/preprocessor/facilities/overload.hpp +include/rpc/msgpack/preprocessor/for.hpp +include/rpc/msgpack/preprocessor/identity.hpp +include/rpc/msgpack/preprocessor/if.hpp +include/rpc/msgpack/preprocessor/inc.hpp +include/rpc/msgpack/preprocessor/iterate.hpp +include/rpc/msgpack/preprocessor/iteration.hpp +include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower1.hpp +include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower2.hpp +include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower3.hpp +include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower4.hpp +include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower5.hpp +include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper1.hpp +include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper2.hpp +include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper3.hpp +include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper4.hpp +include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper5.hpp +include/rpc/msgpack/preprocessor/iteration/detail/finish.hpp +include/rpc/msgpack/preprocessor/iteration/detail/iter/forward1.hpp +include/rpc/msgpack/preprocessor/iteration/detail/iter/forward2.hpp +include/rpc/msgpack/preprocessor/iteration/detail/iter/forward3.hpp +include/rpc/msgpack/preprocessor/iteration/detail/iter/forward4.hpp +include/rpc/msgpack/preprocessor/iteration/detail/iter/forward5.hpp +include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse1.hpp +include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse2.hpp +include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse3.hpp +include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse4.hpp +include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse5.hpp +include/rpc/msgpack/preprocessor/iteration/detail/local.hpp +include/rpc/msgpack/preprocessor/iteration/detail/rlocal.hpp +include/rpc/msgpack/preprocessor/iteration/detail/self.hpp +include/rpc/msgpack/preprocessor/iteration/detail/start.hpp +include/rpc/msgpack/preprocessor/iteration/iterate.hpp +include/rpc/msgpack/preprocessor/iteration/local.hpp +include/rpc/msgpack/preprocessor/iteration/self.hpp +include/rpc/msgpack/preprocessor/library.hpp +include/rpc/msgpack/preprocessor/limits.hpp +include/rpc/msgpack/preprocessor/list.hpp +include/rpc/msgpack/preprocessor/list/adt.hpp +include/rpc/msgpack/preprocessor/list/append.hpp +include/rpc/msgpack/preprocessor/list/at.hpp +include/rpc/msgpack/preprocessor/list/cat.hpp +include/rpc/msgpack/preprocessor/list/detail/dmc/fold_left.hpp +include/rpc/msgpack/preprocessor/list/detail/edg/fold_left.hpp +include/rpc/msgpack/preprocessor/list/detail/edg/fold_right.hpp +include/rpc/msgpack/preprocessor/list/detail/fold_left.hpp +include/rpc/msgpack/preprocessor/list/detail/fold_right.hpp +include/rpc/msgpack/preprocessor/list/enum.hpp +include/rpc/msgpack/preprocessor/list/filter.hpp +include/rpc/msgpack/preprocessor/list/first_n.hpp +include/rpc/msgpack/preprocessor/list/fold_left.hpp +include/rpc/msgpack/preprocessor/list/fold_right.hpp +include/rpc/msgpack/preprocessor/list/for_each.hpp +include/rpc/msgpack/preprocessor/list/for_each_i.hpp +include/rpc/msgpack/preprocessor/list/for_each_product.hpp +include/rpc/msgpack/preprocessor/list/rest_n.hpp +include/rpc/msgpack/preprocessor/list/reverse.hpp +include/rpc/msgpack/preprocessor/list/size.hpp +include/rpc/msgpack/preprocessor/list/to_array.hpp +include/rpc/msgpack/preprocessor/list/to_seq.hpp +include/rpc/msgpack/preprocessor/list/to_tuple.hpp +include/rpc/msgpack/preprocessor/list/transform.hpp +include/rpc/msgpack/preprocessor/logical.hpp +include/rpc/msgpack/preprocessor/logical/and.hpp +include/rpc/msgpack/preprocessor/logical/bitand.hpp +include/rpc/msgpack/preprocessor/logical/bitnor.hpp +include/rpc/msgpack/preprocessor/logical/bitor.hpp +include/rpc/msgpack/preprocessor/logical/bitxor.hpp +include/rpc/msgpack/preprocessor/logical/bool.hpp +include/rpc/msgpack/preprocessor/logical/compl.hpp +include/rpc/msgpack/preprocessor/logical/nor.hpp +include/rpc/msgpack/preprocessor/logical/not.hpp +include/rpc/msgpack/preprocessor/logical/or.hpp +include/rpc/msgpack/preprocessor/logical/xor.hpp +include/rpc/msgpack/preprocessor/max.hpp +include/rpc/msgpack/preprocessor/min.hpp +include/rpc/msgpack/preprocessor/punctuation.hpp +include/rpc/msgpack/preprocessor/punctuation/comma.hpp +include/rpc/msgpack/preprocessor/punctuation/comma_if.hpp +include/rpc/msgpack/preprocessor/punctuation/detail/is_begin_parens.hpp +include/rpc/msgpack/preprocessor/punctuation/is_begin_parens.hpp +include/rpc/msgpack/preprocessor/punctuation/paren.hpp +include/rpc/msgpack/preprocessor/punctuation/paren_if.hpp +include/rpc/msgpack/preprocessor/punctuation/remove_parens.hpp +include/rpc/msgpack/preprocessor/repeat.hpp +include/rpc/msgpack/preprocessor/repeat_2nd.hpp +include/rpc/msgpack/preprocessor/repeat_3rd.hpp +include/rpc/msgpack/preprocessor/repeat_from_to.hpp +include/rpc/msgpack/preprocessor/repeat_from_to_2nd.hpp +include/rpc/msgpack/preprocessor/repeat_from_to_3rd.hpp +include/rpc/msgpack/preprocessor/repetition.hpp +include/rpc/msgpack/preprocessor/repetition/deduce_r.hpp +include/rpc/msgpack/preprocessor/repetition/deduce_z.hpp +include/rpc/msgpack/preprocessor/repetition/detail/dmc/for.hpp +include/rpc/msgpack/preprocessor/repetition/detail/edg/for.hpp +include/rpc/msgpack/preprocessor/repetition/detail/for.hpp +include/rpc/msgpack/preprocessor/repetition/detail/msvc/for.hpp +include/rpc/msgpack/preprocessor/repetition/enum.hpp +include/rpc/msgpack/preprocessor/repetition/enum_binary_params.hpp +include/rpc/msgpack/preprocessor/repetition/enum_params.hpp +include/rpc/msgpack/preprocessor/repetition/enum_params_with_a_default.hpp +include/rpc/msgpack/preprocessor/repetition/enum_params_with_defaults.hpp +include/rpc/msgpack/preprocessor/repetition/enum_shifted.hpp +include/rpc/msgpack/preprocessor/repetition/enum_shifted_binary_params.hpp +include/rpc/msgpack/preprocessor/repetition/enum_shifted_params.hpp +include/rpc/msgpack/preprocessor/repetition/enum_trailing.hpp +include/rpc/msgpack/preprocessor/repetition/enum_trailing_binary_params.hpp +include/rpc/msgpack/preprocessor/repetition/enum_trailing_params.hpp +include/rpc/msgpack/preprocessor/repetition/for.hpp +include/rpc/msgpack/preprocessor/repetition/repeat.hpp +include/rpc/msgpack/preprocessor/repetition/repeat_from_to.hpp +include/rpc/msgpack/preprocessor/selection.hpp +include/rpc/msgpack/preprocessor/selection/max.hpp +include/rpc/msgpack/preprocessor/selection/min.hpp +include/rpc/msgpack/preprocessor/seq.hpp +include/rpc/msgpack/preprocessor/seq/cat.hpp +include/rpc/msgpack/preprocessor/seq/detail/binary_transform.hpp +include/rpc/msgpack/preprocessor/seq/detail/is_empty.hpp +include/rpc/msgpack/preprocessor/seq/detail/split.hpp +include/rpc/msgpack/preprocessor/seq/elem.hpp +include/rpc/msgpack/preprocessor/seq/enum.hpp +include/rpc/msgpack/preprocessor/seq/filter.hpp +include/rpc/msgpack/preprocessor/seq/first_n.hpp +include/rpc/msgpack/preprocessor/seq/fold_left.hpp +include/rpc/msgpack/preprocessor/seq/fold_right.hpp +include/rpc/msgpack/preprocessor/seq/for_each.hpp +include/rpc/msgpack/preprocessor/seq/for_each_i.hpp +include/rpc/msgpack/preprocessor/seq/for_each_product.hpp +include/rpc/msgpack/preprocessor/seq/insert.hpp +include/rpc/msgpack/preprocessor/seq/pop_back.hpp +include/rpc/msgpack/preprocessor/seq/pop_front.hpp +include/rpc/msgpack/preprocessor/seq/push_back.hpp +include/rpc/msgpack/preprocessor/seq/push_front.hpp +include/rpc/msgpack/preprocessor/seq/remove.hpp +include/rpc/msgpack/preprocessor/seq/replace.hpp +include/rpc/msgpack/preprocessor/seq/rest_n.hpp +include/rpc/msgpack/preprocessor/seq/reverse.hpp +include/rpc/msgpack/preprocessor/seq/seq.hpp +include/rpc/msgpack/preprocessor/seq/size.hpp +include/rpc/msgpack/preprocessor/seq/subseq.hpp +include/rpc/msgpack/preprocessor/seq/to_array.hpp +include/rpc/msgpack/preprocessor/seq/to_list.hpp +include/rpc/msgpack/preprocessor/seq/to_tuple.hpp +include/rpc/msgpack/preprocessor/seq/transform.hpp +include/rpc/msgpack/preprocessor/seq/variadic_seq_to_seq.hpp +include/rpc/msgpack/preprocessor/slot.hpp +include/rpc/msgpack/preprocessor/slot/counter.hpp +include/rpc/msgpack/preprocessor/slot/detail/counter.hpp +include/rpc/msgpack/preprocessor/slot/detail/def.hpp +include/rpc/msgpack/preprocessor/slot/detail/shared.hpp +include/rpc/msgpack/preprocessor/slot/detail/slot1.hpp +include/rpc/msgpack/preprocessor/slot/detail/slot2.hpp +include/rpc/msgpack/preprocessor/slot/detail/slot3.hpp +include/rpc/msgpack/preprocessor/slot/detail/slot4.hpp +include/rpc/msgpack/preprocessor/slot/detail/slot5.hpp +include/rpc/msgpack/preprocessor/slot/slot.hpp +include/rpc/msgpack/preprocessor/stringize.hpp +include/rpc/msgpack/preprocessor/tuple.hpp +include/rpc/msgpack/preprocessor/tuple/detail/is_single_return.hpp +include/rpc/msgpack/preprocessor/tuple/eat.hpp +include/rpc/msgpack/preprocessor/tuple/elem.hpp +include/rpc/msgpack/preprocessor/tuple/enum.hpp +include/rpc/msgpack/preprocessor/tuple/insert.hpp +include/rpc/msgpack/preprocessor/tuple/pop_back.hpp +include/rpc/msgpack/preprocessor/tuple/pop_front.hpp +include/rpc/msgpack/preprocessor/tuple/push_back.hpp +include/rpc/msgpack/preprocessor/tuple/push_front.hpp +include/rpc/msgpack/preprocessor/tuple/rem.hpp +include/rpc/msgpack/preprocessor/tuple/remove.hpp +include/rpc/msgpack/preprocessor/tuple/replace.hpp +include/rpc/msgpack/preprocessor/tuple/reverse.hpp +include/rpc/msgpack/preprocessor/tuple/size.hpp +include/rpc/msgpack/preprocessor/tuple/to_array.hpp +include/rpc/msgpack/preprocessor/tuple/to_list.hpp +include/rpc/msgpack/preprocessor/tuple/to_seq.hpp +include/rpc/msgpack/preprocessor/variadic.hpp +include/rpc/msgpack/preprocessor/variadic/detail/is_single_return.hpp +include/rpc/msgpack/preprocessor/variadic/elem.hpp +include/rpc/msgpack/preprocessor/variadic/size.hpp +include/rpc/msgpack/preprocessor/variadic/to_array.hpp +include/rpc/msgpack/preprocessor/variadic/to_list.hpp +include/rpc/msgpack/preprocessor/variadic/to_seq.hpp +include/rpc/msgpack/preprocessor/variadic/to_tuple.hpp +include/rpc/msgpack/preprocessor/while.hpp +include/rpc/msgpack/preprocessor/wstringize.hpp +include/rpc/msgpack/sbuffer.h +include/rpc/msgpack/sbuffer.hpp +include/rpc/msgpack/sbuffer_decl.hpp +include/rpc/msgpack/sysdep.h +include/rpc/msgpack/type.hpp +include/rpc/msgpack/unpack.h +include/rpc/msgpack/unpack.hpp +include/rpc/msgpack/unpack_decl.hpp +include/rpc/msgpack/unpack_define.h +include/rpc/msgpack/unpack_exception.hpp +include/rpc/msgpack/unpack_template.h +include/rpc/msgpack/util.h +include/rpc/msgpack/v1/adaptor/adaptor_base.hpp +include/rpc/msgpack/v1/adaptor/adaptor_base_decl.hpp +include/rpc/msgpack/v1/adaptor/array_ref.hpp +include/rpc/msgpack/v1/adaptor/array_ref_decl.hpp +include/rpc/msgpack/v1/adaptor/bool.hpp +include/rpc/msgpack/v1/adaptor/boost/fusion.hpp +include/rpc/msgpack/v1/adaptor/boost/msgpack_variant.hpp +include/rpc/msgpack/v1/adaptor/boost/msgpack_variant_decl.hpp +include/rpc/msgpack/v1/adaptor/boost/optional.hpp +include/rpc/msgpack/v1/adaptor/boost/string_ref.hpp +include/rpc/msgpack/v1/adaptor/boost/string_view.hpp +include/rpc/msgpack/v1/adaptor/carray.hpp +include/rpc/msgpack/v1/adaptor/char_ptr.hpp +include/rpc/msgpack/v1/adaptor/check_container_size.hpp +include/rpc/msgpack/v1/adaptor/check_container_size_decl.hpp +include/rpc/msgpack/v1/adaptor/cpp11/array.hpp +include/rpc/msgpack/v1/adaptor/cpp11/array_char.hpp +include/rpc/msgpack/v1/adaptor/cpp11/array_unsigned_char.hpp +include/rpc/msgpack/v1/adaptor/cpp11/forward_list.hpp +include/rpc/msgpack/v1/adaptor/cpp11/reference_wrapper.hpp +include/rpc/msgpack/v1/adaptor/cpp11/shared_ptr.hpp +include/rpc/msgpack/v1/adaptor/cpp11/tuple.hpp +include/rpc/msgpack/v1/adaptor/cpp11/unique_ptr.hpp +include/rpc/msgpack/v1/adaptor/cpp11/unordered_map.hpp +include/rpc/msgpack/v1/adaptor/cpp11/unordered_set.hpp +include/rpc/msgpack/v1/adaptor/cpp17/optional.hpp +include/rpc/msgpack/v1/adaptor/cpp17/string_view.hpp +include/rpc/msgpack/v1/adaptor/define.hpp +include/rpc/msgpack/v1/adaptor/define_decl.hpp +include/rpc/msgpack/v1/adaptor/deque.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp03_define_array.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp03_define_array_decl.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp03_define_map.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp03_define_map_decl.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple_decl.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp11_define_array.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp11_define_array_decl.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp11_define_map.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp11_define_map_decl.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple.hpp +include/rpc/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple_decl.hpp +include/rpc/msgpack/v1/adaptor/ext.hpp +include/rpc/msgpack/v1/adaptor/ext_decl.hpp +include/rpc/msgpack/v1/adaptor/fixint.hpp +include/rpc/msgpack/v1/adaptor/fixint_decl.hpp +include/rpc/msgpack/v1/adaptor/float.hpp +include/rpc/msgpack/v1/adaptor/int.hpp +include/rpc/msgpack/v1/adaptor/int_decl.hpp +include/rpc/msgpack/v1/adaptor/list.hpp +include/rpc/msgpack/v1/adaptor/map.hpp +include/rpc/msgpack/v1/adaptor/map_decl.hpp +include/rpc/msgpack/v1/adaptor/msgpack_tuple.hpp +include/rpc/msgpack/v1/adaptor/msgpack_tuple_decl.hpp +include/rpc/msgpack/v1/adaptor/nil.hpp +include/rpc/msgpack/v1/adaptor/nil_decl.hpp +include/rpc/msgpack/v1/adaptor/pair.hpp +include/rpc/msgpack/v1/adaptor/raw.hpp +include/rpc/msgpack/v1/adaptor/raw_decl.hpp +include/rpc/msgpack/v1/adaptor/set.hpp +include/rpc/msgpack/v1/adaptor/size_equal_only.hpp +include/rpc/msgpack/v1/adaptor/size_equal_only_decl.hpp +include/rpc/msgpack/v1/adaptor/string.hpp +include/rpc/msgpack/v1/adaptor/tr1/unordered_map.hpp +include/rpc/msgpack/v1/adaptor/tr1/unordered_set.hpp +include/rpc/msgpack/v1/adaptor/v4raw.hpp +include/rpc/msgpack/v1/adaptor/v4raw_decl.hpp +include/rpc/msgpack/v1/adaptor/vector.hpp +include/rpc/msgpack/v1/adaptor/vector_bool.hpp +include/rpc/msgpack/v1/adaptor/vector_char.hpp +include/rpc/msgpack/v1/adaptor/vector_unsigned_char.hpp +include/rpc/msgpack/v1/cpp_config.hpp +include/rpc/msgpack/v1/cpp_config_decl.hpp +include/rpc/msgpack/v1/detail/cpp03_zone.hpp +include/rpc/msgpack/v1/detail/cpp03_zone_decl.hpp +include/rpc/msgpack/v1/detail/cpp11_zone.hpp +include/rpc/msgpack/v1/detail/cpp11_zone_decl.hpp +include/rpc/msgpack/v1/fbuffer.hpp +include/rpc/msgpack/v1/fbuffer_decl.hpp +include/rpc/msgpack/v1/iterator.hpp +include/rpc/msgpack/v1/iterator_decl.hpp +include/rpc/msgpack/v1/meta.hpp +include/rpc/msgpack/v1/meta_decl.hpp +include/rpc/msgpack/v1/object.hpp +include/rpc/msgpack/v1/object_decl.hpp +include/rpc/msgpack/v1/object_fwd.hpp +include/rpc/msgpack/v1/object_fwd_decl.hpp +include/rpc/msgpack/v1/pack.hpp +include/rpc/msgpack/v1/pack_decl.hpp +include/rpc/msgpack/v1/parse_return.hpp +include/rpc/msgpack/v1/preprocessor.hpp +include/rpc/msgpack/v1/sbuffer.hpp +include/rpc/msgpack/v1/sbuffer_decl.hpp +include/rpc/msgpack/v1/unpack.hpp +include/rpc/msgpack/v1/unpack_decl.hpp +include/rpc/msgpack/v1/unpack_exception.hpp +include/rpc/msgpack/v1/version.hpp +include/rpc/msgpack/v1/versioning.hpp +include/rpc/msgpack/v1/vrefbuffer.hpp +include/rpc/msgpack/v1/vrefbuffer_decl.hpp +include/rpc/msgpack/v1/zbuffer.hpp +include/rpc/msgpack/v1/zbuffer_decl.hpp +include/rpc/msgpack/v1/zone.hpp +include/rpc/msgpack/v1/zone_decl.hpp +include/rpc/msgpack/v2/adaptor/adaptor_base.hpp +include/rpc/msgpack/v2/adaptor/adaptor_base_decl.hpp +include/rpc/msgpack/v2/adaptor/array_ref_decl.hpp +include/rpc/msgpack/v2/adaptor/boost/msgpack_variant_decl.hpp +include/rpc/msgpack/v2/adaptor/check_container_size_decl.hpp +include/rpc/msgpack/v2/adaptor/define_decl.hpp +include/rpc/msgpack/v2/adaptor/detail/cpp03_define_array_decl.hpp +include/rpc/msgpack/v2/adaptor/detail/cpp03_define_map_decl.hpp +include/rpc/msgpack/v2/adaptor/detail/cpp03_msgpack_tuple_decl.hpp +include/rpc/msgpack/v2/adaptor/detail/cpp11_define_array_decl.hpp +include/rpc/msgpack/v2/adaptor/detail/cpp11_define_map_decl.hpp +include/rpc/msgpack/v2/adaptor/detail/cpp11_msgpack_tuple_decl.hpp +include/rpc/msgpack/v2/adaptor/ext_decl.hpp +include/rpc/msgpack/v2/adaptor/fixint_decl.hpp +include/rpc/msgpack/v2/adaptor/int_decl.hpp +include/rpc/msgpack/v2/adaptor/map_decl.hpp +include/rpc/msgpack/v2/adaptor/msgpack_tuple_decl.hpp +include/rpc/msgpack/v2/adaptor/nil_decl.hpp +include/rpc/msgpack/v2/adaptor/raw_decl.hpp +include/rpc/msgpack/v2/adaptor/size_equal_only_decl.hpp +include/rpc/msgpack/v2/adaptor/v4raw_decl.hpp +include/rpc/msgpack/v2/cpp_config_decl.hpp +include/rpc/msgpack/v2/create_object_visitor.hpp +include/rpc/msgpack/v2/detail/cpp03_zone_decl.hpp +include/rpc/msgpack/v2/detail/cpp11_zone_decl.hpp +include/rpc/msgpack/v2/fbuffer_decl.hpp +include/rpc/msgpack/v2/iterator_decl.hpp +include/rpc/msgpack/v2/meta_decl.hpp +include/rpc/msgpack/v2/null_visitor.hpp +include/rpc/msgpack/v2/object.hpp +include/rpc/msgpack/v2/object_decl.hpp +include/rpc/msgpack/v2/object_fwd.hpp +include/rpc/msgpack/v2/object_fwd_decl.hpp +include/rpc/msgpack/v2/pack_decl.hpp +include/rpc/msgpack/v2/parse.hpp +include/rpc/msgpack/v2/parse_return.hpp +include/rpc/msgpack/v2/sbuffer_decl.hpp +include/rpc/msgpack/v2/unpack.hpp +include/rpc/msgpack/v2/unpack_decl.hpp +include/rpc/msgpack/v2/vrefbuffer_decl.hpp +include/rpc/msgpack/v2/x3_parse.hpp +include/rpc/msgpack/v2/x3_unpack.hpp +include/rpc/msgpack/v2/zbuffer_decl.hpp +include/rpc/msgpack/v2/zone_decl.hpp +include/rpc/msgpack/version.h +include/rpc/msgpack/version.hpp +include/rpc/msgpack/version_master.h +include/rpc/msgpack/versioning.hpp +include/rpc/msgpack/vrefbuffer.h +include/rpc/msgpack/vrefbuffer.hpp +include/rpc/msgpack/vrefbuffer_decl.hpp +include/rpc/msgpack/zbuffer.h +include/rpc/msgpack/zbuffer.hpp +include/rpc/msgpack/zbuffer_decl.hpp +include/rpc/msgpack/zone.h +include/rpc/msgpack/zone.hpp +include/rpc/msgpack/zone_decl.hpp +include/rpc/nonstd/optional.hpp +include/rpc/rpc_error.h +include/rpc/server.h +include/rpc/this_handler.h +include/rpc/this_handler.inl +include/rpc/this_server.h +include/rpc/this_session.h +include/rpc/version.h +lib/cmake/rpclib/rpclibConfig.cmake +lib/cmake/rpclib/rpclibConfigVersion.cmake +lib/cmake/rpclib/rpclibTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/rpclib/rpclibTargets.cmake +lib/librpc.a +libdata/pkgconfig/rpclib.pc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901130953.x0D9rgcO076711>