From owner-svn-ports-head@FreeBSD.ORG Thu May 28 08:12:48 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A101F775; Thu, 28 May 2015 08:12:48 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D0FC9A7; Thu, 28 May 2015 08:12:48 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4S8Cmd6068537; Thu, 28 May 2015 08:12:48 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4S8ClfN068533; Thu, 28 May 2015 08:12:47 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201505280812.t4S8ClfN068533@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 28 May 2015 08:12:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387710 - in head/net/polyorb: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 May 2015 08:12:48 -0000 Author: marino Date: Thu May 28 08:12:47 2015 New Revision: 387710 URL: https://svnweb.freebsd.org/changeset/ports/387710 Log: net/polyorb: convert to pkg-plist, support testsuite, plus The pkg-plist isn't absurdly long, especially when docs are omitted, so convert port from using generated plist to a static one with PORTDOCS defined. While here, allow the possibility of not installing docs although this saves no effort and is not recommended since it removes polyorb from GPS (Gnat Programming Studio IDE) menus. Also import Makefile.in patch to properly strip binaries. The main reason for the update was to support the ability to run the testsuite. When selected (off by default), the "run-testsuite" target is available, and is intended to be executed after "make install". The testsuite target will build the examples along with the tests to be run, but the examples are not installed. However, additional .ali files are installed as a result (before only their source files were installed). Added: head/net/polyorb/pkg-plist (contents, props changed) Modified: head/net/polyorb/Makefile head/net/polyorb/files/patch-Makefile.in Modified: head/net/polyorb/Makefile ============================================================================== --- head/net/polyorb/Makefile Thu May 28 08:11:59 2015 (r387709) +++ head/net/polyorb/Makefile Thu May 28 08:12:47 2015 (r387710) @@ -3,6 +3,7 @@ PORTNAME= polyorb PORTVERSION= 2.11.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://downloads.dragonlace.net/src/ DISTNAME= polyorb-gpl-${YEAR}-src @@ -14,16 +15,25 @@ LICENSE= GPLv3 BUILD_DEPENDS= xmlada>=3.2:${PORTSDIR}/textproc/xmlada -USES= ada gmake python:build +USES= ada gmake python:build shebangfix GNU_CONFIGURE= yes NO_MTREE= yes YEAR= 2014 WRKSRC= ${WRKDIR}/polyorb-${YEAR}-src +ALL_TARGET= default MAKE_ENV= PROCESSORS=${MAKE_JOBS_NUMBER} CONFIGURE_ENV= PYTHON=${PYTHON_CMD} \ ac_cv_prog_CXXCPP="cpp -E" \ ac_cv_prog_SVN=false +PORTDOCS= html \ + info/polyorb_ug.info \ + pdf/polyorb_ug.pdf \ + txt/polyorb_ug.txt +SHEBANG_FILES= compilers/idlac/*.py testsuite/*.py testsuite/tests/*.py + +python_OLD_CMD= /usr/bin/env python +python_CMD= ${PYTHON_CMD} CONFIGURE_ARGS= --with-appli-perso="corba dsa moma" \ --with-proto-perso="giop soap srp" \ @@ -34,13 +44,34 @@ CONFIGURE_ARGS= --with-appli-perso="corb # Polyorb 2013 = PCS version 6 GNAT GCC 4.9 = PCS version 6 # Polyorb 2014 = PCS version 6 GNAT GCC 4.9 = PCS version 6 +OPTIONS_DEFINE= DOCS TESTSUITE +OPTIONS_SUB= TESTSUITE + +TESTSUITE_ALL_TARGET= testsuite +TESTSUITE_BUILD_DEPENDS=gnatpython>=20101207:${PORTSDIR}/devel/gnatpython +TESTSUITE_DESC= Enable 'make run-testsuite' target + + +.include + +post-patch: +.if !${PORT_OPTIONS:MDOCS} + ${MV} ${WRKSRC}/docs/polyorb_ug.html ${WRKSRC}/docs/ug.html +.endif + @${REINPLACE_CMD} -e 's|bash|/bin/sh|' ${WRKSRC}/testsuite/testsuite.py + do-build: - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} default + (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \ + ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET}) post-install: - @(cd ${STAGEDIR}${PREFIX}; \ + (cd ${STAGEDIR}${PREFIX}; \ ${FIND} * -type d -empty -print | ${XARGS} ${RMDIR}) - @(cd ${STAGEDIR}${PREFIX}; ${FIND} * \( -type f -or -type l \) | \ - ${SORT} >> ${TMPPLIST}) + +.if ${PORT_OPTIONS:MTESTSUITE} +# must be run after "make install" +run-testsuite: + (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} run_tests) +.endif .include Modified: head/net/polyorb/files/patch-Makefile.in ============================================================================== --- head/net/polyorb/files/patch-Makefile.in Thu May 28 08:11:59 2015 (r387709) +++ head/net/polyorb/files/patch-Makefile.in Thu May 28 08:12:47 2015 (r387710) @@ -1,4 +1,4 @@ ---- Makefile.in.orig 2013-11-20 14:58:55.000000000 +0000 +--- Makefile.in.orig 2013-11-20 14:58:55 UTC +++ Makefile.in @@ -824,10 +824,10 @@ host=@host@ target=@target@ @@ -14,6 +14,21 @@ else target_prefix=${prefix}/${target} +@@ -851,11 +851,11 @@ install: + ${RM} -fr "${target_prefix}/include/polyorb" + ${PINSTALL} -d ${target_prefix}/include/polyorb + for comp in ${COMPILER_EXES}; do \ +- ${INSTALL_BIN} ${top_builddir}/compilers/$${comp}${HOST_EXE_SUFFIX} ${host_exe_dir}/${host_cmdprefix}`basename $${comp}`${HOST_EXE_SUFFIX}; \ ++ ${BSD_INSTALL_PROGRAM} ${top_builddir}/compilers/$${comp}${HOST_EXE_SUFFIX} ${host_exe_dir}/${host_cmdprefix}`basename $${comp}`${HOST_EXE_SUFFIX}; \ + done +- ${INSTALL_SCRIPT} ${top_builddir}/polyorb-config ${host_exe_dir}/${host_cmdprefix}polyorb-config ++ ${BSD_INSTALL_SCRIPT} ${top_builddir}/polyorb-config ${host_exe_dir}/${host_cmdprefix}polyorb-config + for tool in po_cos_naming/po_cos_naming po_cos_naming/po_cos_naming_shell po_cos_naming/ir_ab_names po_ir/po_ir po_catref/po_catref po_createref/po_createref po_names/po_names po_dumpir/po_dumpir; do \ +- ${INSTALL_BIN} ${top_builddir}/tools/$$tool${TARGET_EXE_SUFFIX} ${target_exe_dir}/`basename $$tool`${TARGET_EXE_SUFFIX}; \ ++ ${BSD_INSTALL_PROGRAM} ${top_builddir}/tools/$$tool${TARGET_EXE_SUFFIX} ${target_exe_dir}/`basename $$tool`${TARGET_EXE_SUFFIX}; \ + done + ls ${top_builddir}/lib/*.a | ${PINSTALL} -m 444 - ${target_prefix}/lib/polyorb/static + ls ${top_builddir}/lib/*.so | ${PINSTALL} -m 555 - ${target_prefix}/lib @@ -884,10 +884,10 @@ install: # pre-built and packaged with sources. if [ -r docs/polyorb_ug.html ]; \ Added: head/net/polyorb/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/polyorb/pkg-plist Thu May 28 08:12:47 2015 (r387710) @@ -0,0 +1,3512 @@ +bin/gnatprfh +bin/iac +bin/ir_ab_names +bin/po_catref +bin/po_cos_naming +bin/po_cos_naming_shell +bin/po_createref +bin/po_dumpir +bin/po_gnatdist +bin/po_ir +bin/po_names +bin/polyorb-config +include/polyorb/BiDirPolicy.idl +include/polyorb/CONV_FRAME.idl +include/polyorb/CORBA_Context.idl +include/polyorb/CORBA_Current.idl +include/polyorb/CORBA_CustomMarshal.idl +include/polyorb/CORBA_DomainManager.idl +include/polyorb/CORBA_InterfaceRepository.idl +include/polyorb/CORBA_NVList.idl +include/polyorb/CORBA_ORB.idl +include/polyorb/CORBA_ORB_init.idl +include/polyorb/CORBA_Object.idl +include/polyorb/CORBA_Policy.idl +include/polyorb/CORBA_Pollable.idl +include/polyorb/CORBA_Request.idl +include/polyorb/CORBA_ServerRequest.idl +include/polyorb/CORBA_StandardExceptions.idl +include/polyorb/CORBA_Stream.idl +include/polyorb/CORBA_TypeCode.idl +include/polyorb/CORBA_ValueBase.idl +include/polyorb/CSI.idl +include/polyorb/CSIIOP.idl +include/polyorb/CosCollection.idl +include/polyorb/CosCompoundLifeCycle.idl +include/polyorb/CosConcurrencyControl.idl +include/polyorb/CosContainment.idl +include/polyorb/CosEventChannelAdmin.idl +include/polyorb/CosEventComm.idl +include/polyorb/CosExternalization.idl +include/polyorb/CosExternalizationContainment.idl +include/polyorb/CosExternalizationReference.idl +include/polyorb/CosGraphs.idl +include/polyorb/CosLicensingManager.idl +include/polyorb/CosLifeCycle.idl +include/polyorb/CosLifeCycleContainment.idl +include/polyorb/CosLifeCycleReference.idl +include/polyorb/CosNaming.idl +include/polyorb/CosNotification.idl +include/polyorb/CosNotifyChannelAdmin.idl +include/polyorb/CosNotifyComm.idl +include/polyorb/CosNotifyFilter.idl +include/polyorb/CosObjectIdentity.idl +include/polyorb/CosPropertyService.idl +include/polyorb/CosQuery.idl +include/polyorb/CosQueryCollection.idl +include/polyorb/CosReference.idl +include/polyorb/CosRelationships.idl +include/polyorb/CosStream.idl +include/polyorb/CosTSInteroperation.idl +include/polyorb/CosTSPortability.idl +include/polyorb/CosTime.idl +include/polyorb/CosTimerEvent.idl +include/polyorb/CosTrading.idl +include/polyorb/CosTradingDynamic.idl +include/polyorb/CosTradingRepos.idl +include/polyorb/CosTransactions.idl +include/polyorb/CosTypedEventChannelAdmin.idl +include/polyorb/CosTypedEventComm.idl +include/polyorb/CosTypedNotifyChannelAdmin.idl +include/polyorb/CosTypedNotifyComm.idl +include/polyorb/DCE_CIOPSecurity.idl +include/polyorb/Dynamic.idl +include/polyorb/DynamicAny.idl +include/polyorb/FT.idl +include/polyorb/File.idl +include/polyorb/GIOP.idl +include/polyorb/GSSUP.idl +include/polyorb/IIOP.idl +include/polyorb/IOP.idl +include/polyorb/IOP_DCE.idl +include/polyorb/LifeCycleService.idl +include/polyorb/Lname-library.idl +include/polyorb/MGM.idl +include/polyorb/MIOP.idl +include/polyorb/MessageRouting.idl +include/polyorb/Messaging.idl +include/polyorb/NRService.idl +include/polyorb/PortableGroup.idl +include/polyorb/PortableInterceptor.idl +include/polyorb/PortableServer.idl +include/polyorb/RTCORBA.idl +include/polyorb/RTCosScheduling.idl +include/polyorb/RTPortableServer.idl +include/polyorb/SECIOP.idl +include/polyorb/SSLIOP.idl +include/polyorb/Security.idl +include/polyorb/SecurityAdmin.idl +include/polyorb/SecurityLevel1.idl +include/polyorb/SecurityLevel2.idl +include/polyorb/SecurityReplaceable.idl +include/polyorb/SendingContext.idl +include/polyorb/TimeBase.idl +include/polyorb/conv_frame-helper.adb +include/polyorb/conv_frame-helper.ads +include/polyorb/conv_frame.ads +include/polyorb/corba-abstractbase.adb +include/polyorb/corba-abstractbase.ads +include/polyorb/corba-bounded_strings.adb +include/polyorb/corba-bounded_strings.ads +include/polyorb/corba-bounded_wide_strings.adb +include/polyorb/corba-bounded_wide_strings.ads +include/polyorb/corba-context.adb +include/polyorb/corba-context.ads +include/polyorb/corba-contextlist.adb +include/polyorb/corba-contextlist.ads +include/polyorb/corba-current-impl.ads +include/polyorb/corba-current.ads +include/polyorb/corba-domainmanager-helper.adb +include/polyorb/corba-domainmanager-helper.ads +include/polyorb/corba-domainmanager.adb +include/polyorb/corba-domainmanager.ads +include/polyorb/corba-exceptionlist.adb +include/polyorb/corba-exceptionlist.ads +include/polyorb/corba-fixed_point.adb +include/polyorb/corba-fixed_point.ads +include/polyorb/corba-forward.adb +include/polyorb/corba-forward.ads +include/polyorb/corba-helper.adb +include/polyorb/corba-helper.ads +include/polyorb/corba-idl_sequences-helper.adb +include/polyorb/corba-idl_sequences-helper.ads +include/polyorb/corba-idl_sequences.ads +include/polyorb/corba-impl.adb +include/polyorb/corba-impl.ads +include/polyorb/corba-local.ads +include/polyorb/corba-nvlist.adb +include/polyorb/corba-nvlist.ads +include/polyorb/corba-object-helper.adb +include/polyorb/corba-object-helper.ads +include/polyorb/corba-object-policies.adb +include/polyorb/corba-object-policies.ads +include/polyorb/corba-object.adb +include/polyorb/corba-object.ads +include/polyorb/corba-orb-typecode.adb +include/polyorb/corba-orb-typecode.ads +include/polyorb/corba-orb.adb +include/polyorb/corba-orb.ads +include/polyorb/corba-policy-helper.adb +include/polyorb/corba-policy-helper.ads +include/polyorb/corba-policy.adb +include/polyorb/corba-policy.ads +include/polyorb/corba-policycurrent.adb +include/polyorb/corba-policycurrent.ads +include/polyorb/corba-policymanager.adb +include/polyorb/corba-policymanager.ads +include/polyorb/corba-repository_root-abstractinterfacedef-helper.adb +include/polyorb/corba-repository_root-abstractinterfacedef-helper.ads +include/polyorb/corba-repository_root-abstractinterfacedef-impl.adb +include/polyorb/corba-repository_root-abstractinterfacedef-impl.ads +include/polyorb/corba-repository_root-abstractinterfacedef-skel.adb +include/polyorb/corba-repository_root-abstractinterfacedef-skel.ads +include/polyorb/corba-repository_root-abstractinterfacedef.adb +include/polyorb/corba-repository_root-abstractinterfacedef.ads +include/polyorb/corba-repository_root-aliasdef-helper.adb +include/polyorb/corba-repository_root-aliasdef-helper.ads +include/polyorb/corba-repository_root-aliasdef-impl.adb +include/polyorb/corba-repository_root-aliasdef-impl.ads +include/polyorb/corba-repository_root-aliasdef-skel.adb +include/polyorb/corba-repository_root-aliasdef-skel.ads +include/polyorb/corba-repository_root-aliasdef.adb +include/polyorb/corba-repository_root-aliasdef.ads +include/polyorb/corba-repository_root-arraydef-helper.adb +include/polyorb/corba-repository_root-arraydef-helper.ads +include/polyorb/corba-repository_root-arraydef-impl.adb +include/polyorb/corba-repository_root-arraydef-impl.ads +include/polyorb/corba-repository_root-arraydef-skel.adb +include/polyorb/corba-repository_root-arraydef-skel.ads +include/polyorb/corba-repository_root-arraydef.adb +include/polyorb/corba-repository_root-arraydef.ads +include/polyorb/corba-repository_root-attributedef-helper.adb +include/polyorb/corba-repository_root-attributedef-helper.ads +include/polyorb/corba-repository_root-attributedef-impl.adb +include/polyorb/corba-repository_root-attributedef-impl.ads +include/polyorb/corba-repository_root-attributedef-skel.adb +include/polyorb/corba-repository_root-attributedef-skel.ads +include/polyorb/corba-repository_root-attributedef.adb +include/polyorb/corba-repository_root-attributedef.ads +include/polyorb/corba-repository_root-constantdef-helper.adb +include/polyorb/corba-repository_root-constantdef-helper.ads +include/polyorb/corba-repository_root-constantdef-impl.adb +include/polyorb/corba-repository_root-constantdef-impl.ads +include/polyorb/corba-repository_root-constantdef-skel.adb +include/polyorb/corba-repository_root-constantdef-skel.ads +include/polyorb/corba-repository_root-constantdef.adb +include/polyorb/corba-repository_root-constantdef.ads +include/polyorb/corba-repository_root-contained-helper.adb +include/polyorb/corba-repository_root-contained-helper.ads +include/polyorb/corba-repository_root-contained-impl.adb +include/polyorb/corba-repository_root-contained-impl.ads +include/polyorb/corba-repository_root-contained-skel.adb +include/polyorb/corba-repository_root-contained-skel.ads +include/polyorb/corba-repository_root-contained.adb +include/polyorb/corba-repository_root-contained.ads +include/polyorb/corba-repository_root-container-helper.adb +include/polyorb/corba-repository_root-container-helper.ads +include/polyorb/corba-repository_root-container-impl.adb +include/polyorb/corba-repository_root-container-impl.ads +include/polyorb/corba-repository_root-container-skel.adb +include/polyorb/corba-repository_root-container-skel.ads +include/polyorb/corba-repository_root-container.adb +include/polyorb/corba-repository_root-container.ads +include/polyorb/corba-repository_root-enumdef-helper.adb +include/polyorb/corba-repository_root-enumdef-helper.ads +include/polyorb/corba-repository_root-enumdef-impl.adb +include/polyorb/corba-repository_root-enumdef-impl.ads +include/polyorb/corba-repository_root-enumdef-skel.adb +include/polyorb/corba-repository_root-enumdef-skel.ads +include/polyorb/corba-repository_root-enumdef.adb +include/polyorb/corba-repository_root-enumdef.ads +include/polyorb/corba-repository_root-exceptiondef-helper.adb +include/polyorb/corba-repository_root-exceptiondef-helper.ads +include/polyorb/corba-repository_root-exceptiondef-impl.adb +include/polyorb/corba-repository_root-exceptiondef-impl.ads +include/polyorb/corba-repository_root-exceptiondef-skel.adb +include/polyorb/corba-repository_root-exceptiondef-skel.ads +include/polyorb/corba-repository_root-exceptiondef.adb +include/polyorb/corba-repository_root-exceptiondef.ads +include/polyorb/corba-repository_root-extabstractinterfacedef-helper.adb +include/polyorb/corba-repository_root-extabstractinterfacedef-helper.ads +include/polyorb/corba-repository_root-extabstractinterfacedef-impl.adb +include/polyorb/corba-repository_root-extabstractinterfacedef-impl.ads +include/polyorb/corba-repository_root-extabstractinterfacedef-skel.adb +include/polyorb/corba-repository_root-extabstractinterfacedef-skel.ads +include/polyorb/corba-repository_root-extabstractinterfacedef.adb +include/polyorb/corba-repository_root-extabstractinterfacedef.ads +include/polyorb/corba-repository_root-extattributedef-helper.adb +include/polyorb/corba-repository_root-extattributedef-helper.ads +include/polyorb/corba-repository_root-extattributedef-impl.adb +include/polyorb/corba-repository_root-extattributedef-impl.ads +include/polyorb/corba-repository_root-extattributedef-skel.adb +include/polyorb/corba-repository_root-extattributedef-skel.ads +include/polyorb/corba-repository_root-extattributedef.adb +include/polyorb/corba-repository_root-extattributedef.ads +include/polyorb/corba-repository_root-extinterfacedef-helper.adb +include/polyorb/corba-repository_root-extinterfacedef-helper.ads +include/polyorb/corba-repository_root-extinterfacedef-impl.adb +include/polyorb/corba-repository_root-extinterfacedef-impl.ads +include/polyorb/corba-repository_root-extinterfacedef-skel.adb +include/polyorb/corba-repository_root-extinterfacedef-skel.ads +include/polyorb/corba-repository_root-extinterfacedef.adb +include/polyorb/corba-repository_root-extinterfacedef.ads +include/polyorb/corba-repository_root-extlocalinterfacedef-helper.adb +include/polyorb/corba-repository_root-extlocalinterfacedef-helper.ads +include/polyorb/corba-repository_root-extlocalinterfacedef-impl.adb +include/polyorb/corba-repository_root-extlocalinterfacedef-impl.ads +include/polyorb/corba-repository_root-extlocalinterfacedef-skel.adb +include/polyorb/corba-repository_root-extlocalinterfacedef-skel.ads +include/polyorb/corba-repository_root-extlocalinterfacedef.adb +include/polyorb/corba-repository_root-extlocalinterfacedef.ads +include/polyorb/corba-repository_root-fixeddef-helper.adb +include/polyorb/corba-repository_root-fixeddef-helper.ads +include/polyorb/corba-repository_root-fixeddef-impl.adb +include/polyorb/corba-repository_root-fixeddef-impl.ads +include/polyorb/corba-repository_root-fixeddef-skel.adb +include/polyorb/corba-repository_root-fixeddef-skel.ads +include/polyorb/corba-repository_root-fixeddef.adb +include/polyorb/corba-repository_root-fixeddef.ads +include/polyorb/corba-repository_root-helper.adb +include/polyorb/corba-repository_root-helper.ads +include/polyorb/corba-repository_root-idltype-helper.adb +include/polyorb/corba-repository_root-idltype-helper.ads +include/polyorb/corba-repository_root-idltype-impl.adb +include/polyorb/corba-repository_root-idltype-impl.ads +include/polyorb/corba-repository_root-idltype-skel.adb +include/polyorb/corba-repository_root-idltype-skel.ads +include/polyorb/corba-repository_root-idltype.adb +include/polyorb/corba-repository_root-idltype.ads +include/polyorb/corba-repository_root-interfaceattrextension-helper.adb +include/polyorb/corba-repository_root-interfaceattrextension-helper.ads +include/polyorb/corba-repository_root-interfaceattrextension-impl.adb +include/polyorb/corba-repository_root-interfaceattrextension-impl.ads +include/polyorb/corba-repository_root-interfaceattrextension-skel.adb +include/polyorb/corba-repository_root-interfaceattrextension-skel.ads +include/polyorb/corba-repository_root-interfaceattrextension.adb +include/polyorb/corba-repository_root-interfaceattrextension.ads +include/polyorb/corba-repository_root-interfacedef-helper.adb +include/polyorb/corba-repository_root-interfacedef-helper.ads +include/polyorb/corba-repository_root-interfacedef-impl.adb +include/polyorb/corba-repository_root-interfacedef-impl.ads +include/polyorb/corba-repository_root-interfacedef-skel.adb +include/polyorb/corba-repository_root-interfacedef-skel.ads +include/polyorb/corba-repository_root-interfacedef.adb +include/polyorb/corba-repository_root-interfacedef.ads +include/polyorb/corba-repository_root-irobject-helper.adb +include/polyorb/corba-repository_root-irobject-helper.ads +include/polyorb/corba-repository_root-irobject-impl.adb +include/polyorb/corba-repository_root-irobject-impl.ads +include/polyorb/corba-repository_root-irobject-skel.adb +include/polyorb/corba-repository_root-irobject-skel.ads +include/polyorb/corba-repository_root-irobject.adb +include/polyorb/corba-repository_root-irobject.ads +include/polyorb/corba-repository_root-localinterfacedef-helper.adb +include/polyorb/corba-repository_root-localinterfacedef-helper.ads +include/polyorb/corba-repository_root-localinterfacedef-impl.adb +include/polyorb/corba-repository_root-localinterfacedef-impl.ads +include/polyorb/corba-repository_root-localinterfacedef-skel.adb +include/polyorb/corba-repository_root-localinterfacedef-skel.ads +include/polyorb/corba-repository_root-localinterfacedef.adb +include/polyorb/corba-repository_root-localinterfacedef.ads +include/polyorb/corba-repository_root-moduledef-helper.adb +include/polyorb/corba-repository_root-moduledef-helper.ads +include/polyorb/corba-repository_root-moduledef-impl.adb +include/polyorb/corba-repository_root-moduledef-impl.ads +include/polyorb/corba-repository_root-moduledef-skel.adb +include/polyorb/corba-repository_root-moduledef-skel.ads +include/polyorb/corba-repository_root-moduledef.adb +include/polyorb/corba-repository_root-moduledef.ads +include/polyorb/corba-repository_root-nativedef-helper.adb +include/polyorb/corba-repository_root-nativedef-helper.ads +include/polyorb/corba-repository_root-nativedef-impl.adb +include/polyorb/corba-repository_root-nativedef-impl.ads +include/polyorb/corba-repository_root-nativedef-skel.adb +include/polyorb/corba-repository_root-nativedef-skel.ads +include/polyorb/corba-repository_root-nativedef.adb +include/polyorb/corba-repository_root-nativedef.ads +include/polyorb/corba-repository_root-operationdef-helper.adb +include/polyorb/corba-repository_root-operationdef-helper.ads +include/polyorb/corba-repository_root-operationdef-impl.adb +include/polyorb/corba-repository_root-operationdef-impl.ads +include/polyorb/corba-repository_root-operationdef-skel.adb +include/polyorb/corba-repository_root-operationdef-skel.ads +include/polyorb/corba-repository_root-operationdef.adb +include/polyorb/corba-repository_root-operationdef.ads +include/polyorb/corba-repository_root-primitivedef-helper.adb +include/polyorb/corba-repository_root-primitivedef-helper.ads +include/polyorb/corba-repository_root-primitivedef-impl.adb +include/polyorb/corba-repository_root-primitivedef-impl.ads +include/polyorb/corba-repository_root-primitivedef-skel.adb +include/polyorb/corba-repository_root-primitivedef-skel.ads +include/polyorb/corba-repository_root-primitivedef.adb +include/polyorb/corba-repository_root-primitivedef.ads +include/polyorb/corba-repository_root-repository-helper.adb +include/polyorb/corba-repository_root-repository-helper.ads +include/polyorb/corba-repository_root-repository-impl.adb +include/polyorb/corba-repository_root-repository-impl.ads +include/polyorb/corba-repository_root-repository-skel.adb +include/polyorb/corba-repository_root-repository-skel.ads +include/polyorb/corba-repository_root-repository.adb +include/polyorb/corba-repository_root-repository.ads +include/polyorb/corba-repository_root-sequencedef-helper.adb +include/polyorb/corba-repository_root-sequencedef-helper.ads +include/polyorb/corba-repository_root-sequencedef-impl.adb +include/polyorb/corba-repository_root-sequencedef-impl.ads +include/polyorb/corba-repository_root-sequencedef-skel.adb +include/polyorb/corba-repository_root-sequencedef-skel.ads +include/polyorb/corba-repository_root-sequencedef.adb +include/polyorb/corba-repository_root-sequencedef.ads +include/polyorb/corba-repository_root-stringdef-helper.adb +include/polyorb/corba-repository_root-stringdef-helper.ads +include/polyorb/corba-repository_root-stringdef-impl.adb +include/polyorb/corba-repository_root-stringdef-impl.ads +include/polyorb/corba-repository_root-stringdef-skel.adb +include/polyorb/corba-repository_root-stringdef-skel.ads +include/polyorb/corba-repository_root-stringdef.adb +include/polyorb/corba-repository_root-stringdef.ads +include/polyorb/corba-repository_root-structdef-helper.adb +include/polyorb/corba-repository_root-structdef-helper.ads +include/polyorb/corba-repository_root-structdef-impl.adb +include/polyorb/corba-repository_root-structdef-impl.ads +include/polyorb/corba-repository_root-structdef-skel.adb +include/polyorb/corba-repository_root-structdef-skel.ads +include/polyorb/corba-repository_root-structdef.adb +include/polyorb/corba-repository_root-structdef.ads +include/polyorb/corba-repository_root-typedefdef-helper.adb +include/polyorb/corba-repository_root-typedefdef-helper.ads +include/polyorb/corba-repository_root-typedefdef-impl.adb +include/polyorb/corba-repository_root-typedefdef-impl.ads +include/polyorb/corba-repository_root-typedefdef-skel.adb +include/polyorb/corba-repository_root-typedefdef-skel.ads +include/polyorb/corba-repository_root-typedefdef.adb +include/polyorb/corba-repository_root-typedefdef.ads +include/polyorb/corba-repository_root-uniondef-helper.adb +include/polyorb/corba-repository_root-uniondef-helper.ads +include/polyorb/corba-repository_root-uniondef-impl.adb +include/polyorb/corba-repository_root-uniondef-impl.ads +include/polyorb/corba-repository_root-uniondef-skel.adb +include/polyorb/corba-repository_root-uniondef-skel.ads +include/polyorb/corba-repository_root-uniondef.adb +include/polyorb/corba-repository_root-uniondef.ads +include/polyorb/corba-repository_root-valueboxdef-helper.adb +include/polyorb/corba-repository_root-valueboxdef-helper.ads +include/polyorb/corba-repository_root-valueboxdef-impl.adb +include/polyorb/corba-repository_root-valueboxdef-impl.ads +include/polyorb/corba-repository_root-valueboxdef-skel.adb +include/polyorb/corba-repository_root-valueboxdef-skel.ads +include/polyorb/corba-repository_root-valueboxdef.adb +include/polyorb/corba-repository_root-valueboxdef.ads +include/polyorb/corba-repository_root-valuedef-helper.adb +include/polyorb/corba-repository_root-valuedef-helper.ads +include/polyorb/corba-repository_root-valuedef-impl.adb +include/polyorb/corba-repository_root-valuedef-impl.ads +include/polyorb/corba-repository_root-valuedef-skel.adb +include/polyorb/corba-repository_root-valuedef-skel.ads +include/polyorb/corba-repository_root-valuedef.adb +include/polyorb/corba-repository_root-valuedef.ads +include/polyorb/corba-repository_root-valuememberdef-helper.adb +include/polyorb/corba-repository_root-valuememberdef-helper.ads +include/polyorb/corba-repository_root-valuememberdef-impl.adb +include/polyorb/corba-repository_root-valuememberdef-impl.ads +include/polyorb/corba-repository_root-valuememberdef-skel.adb +include/polyorb/corba-repository_root-valuememberdef-skel.ads +include/polyorb/corba-repository_root-valuememberdef.adb +include/polyorb/corba-repository_root-valuememberdef.ads +include/polyorb/corba-repository_root-wstringdef-helper.adb +include/polyorb/corba-repository_root-wstringdef-helper.ads +include/polyorb/corba-repository_root-wstringdef-impl.adb +include/polyorb/corba-repository_root-wstringdef-impl.ads +include/polyorb/corba-repository_root-wstringdef-skel.adb +include/polyorb/corba-repository_root-wstringdef-skel.ads +include/polyorb/corba-repository_root-wstringdef.adb +include/polyorb/corba-repository_root-wstringdef.ads +include/polyorb/corba-repository_root.ads +include/polyorb/corba-request.adb +include/polyorb/corba-request.ads +include/polyorb/corba-sequences-bounded.ads +include/polyorb/corba-sequences-unbounded.ads +include/polyorb/corba-sequences.ads +include/polyorb/corba-serverrequest.adb +include/polyorb/corba-serverrequest.ads +include/polyorb/corba-value-box-helper.adb +include/polyorb/corba-value-box-helper.ads +include/polyorb/corba-value-box.adb +include/polyorb/corba-value-box.ads +include/polyorb/corba-value.ads +include/polyorb/corba.adb +include/polyorb/corba.ads +include/polyorb/corba_repository_root_abstractinterfacedef_hash.adb +include/polyorb/corba_repository_root_abstractinterfacedef_hash.ads +include/polyorb/corba_repository_root_aliasdef_hash.adb +include/polyorb/corba_repository_root_aliasdef_hash.ads +include/polyorb/corba_repository_root_arraydef_hash.adb +include/polyorb/corba_repository_root_arraydef_hash.ads +include/polyorb/corba_repository_root_attributedef_hash.adb +include/polyorb/corba_repository_root_attributedef_hash.ads +include/polyorb/corba_repository_root_constantdef_hash.adb +include/polyorb/corba_repository_root_constantdef_hash.ads +include/polyorb/corba_repository_root_contained_hash.adb +include/polyorb/corba_repository_root_contained_hash.ads +include/polyorb/corba_repository_root_container_hash.adb +include/polyorb/corba_repository_root_container_hash.ads +include/polyorb/corba_repository_root_enumdef_hash.adb +include/polyorb/corba_repository_root_enumdef_hash.ads +include/polyorb/corba_repository_root_exceptiondef_hash.adb +include/polyorb/corba_repository_root_exceptiondef_hash.ads +include/polyorb/corba_repository_root_extabstractinterfacedef_hash.adb +include/polyorb/corba_repository_root_extabstractinterfacedef_hash.ads +include/polyorb/corba_repository_root_extattributedef_hash.adb +include/polyorb/corba_repository_root_extattributedef_hash.ads +include/polyorb/corba_repository_root_extinterfacedef_hash.adb +include/polyorb/corba_repository_root_extinterfacedef_hash.ads +include/polyorb/corba_repository_root_extlocalinterfacedef_hash.adb +include/polyorb/corba_repository_root_extlocalinterfacedef_hash.ads +include/polyorb/corba_repository_root_fixeddef_hash.adb +include/polyorb/corba_repository_root_fixeddef_hash.ads +include/polyorb/corba_repository_root_idltype_hash.adb +include/polyorb/corba_repository_root_idltype_hash.ads +include/polyorb/corba_repository_root_interfaceattrextension_hash.adb +include/polyorb/corba_repository_root_interfaceattrextension_hash.ads +include/polyorb/corba_repository_root_interfacedef_hash.adb +include/polyorb/corba_repository_root_interfacedef_hash.ads +include/polyorb/corba_repository_root_irobject_hash.adb +include/polyorb/corba_repository_root_irobject_hash.ads +include/polyorb/corba_repository_root_localinterfacedef_hash.adb +include/polyorb/corba_repository_root_localinterfacedef_hash.ads +include/polyorb/corba_repository_root_moduledef_hash.adb +include/polyorb/corba_repository_root_moduledef_hash.ads +include/polyorb/corba_repository_root_nativedef_hash.adb +include/polyorb/corba_repository_root_nativedef_hash.ads +include/polyorb/corba_repository_root_operationdef_hash.adb +include/polyorb/corba_repository_root_operationdef_hash.ads +include/polyorb/corba_repository_root_primitivedef_hash.adb +include/polyorb/corba_repository_root_primitivedef_hash.ads +include/polyorb/corba_repository_root_repository_hash.adb +include/polyorb/corba_repository_root_repository_hash.ads +include/polyorb/corba_repository_root_sequencedef_hash.adb +include/polyorb/corba_repository_root_sequencedef_hash.ads +include/polyorb/corba_repository_root_stringdef_hash.adb +include/polyorb/corba_repository_root_stringdef_hash.ads +include/polyorb/corba_repository_root_structdef_hash.adb +include/polyorb/corba_repository_root_structdef_hash.ads +include/polyorb/corba_repository_root_typedefdef_hash.adb +include/polyorb/corba_repository_root_typedefdef_hash.ads +include/polyorb/corba_repository_root_uniondef_hash.adb +include/polyorb/corba_repository_root_uniondef_hash.ads +include/polyorb/corba_repository_root_valueboxdef_hash.adb +include/polyorb/corba_repository_root_valueboxdef_hash.ads +include/polyorb/corba_repository_root_valuedef_hash.adb +include/polyorb/corba_repository_root_valuedef_hash.ads +include/polyorb/corba_repository_root_valuememberdef_hash.adb +include/polyorb/corba_repository_root_valuememberdef_hash.ads +include/polyorb/corba_repository_root_wstringdef_hash.adb +include/polyorb/corba_repository_root_wstringdef_hash.ads +include/polyorb/coseventchanneladmin-consumeradmin-helper.adb +include/polyorb/coseventchanneladmin-consumeradmin-helper.ads +include/polyorb/coseventchanneladmin-consumeradmin-impl.adb +include/polyorb/coseventchanneladmin-consumeradmin-impl.ads +include/polyorb/coseventchanneladmin-consumeradmin-skel.adb +include/polyorb/coseventchanneladmin-consumeradmin-skel.ads +include/polyorb/coseventchanneladmin-consumeradmin.adb +include/polyorb/coseventchanneladmin-consumeradmin.ads +include/polyorb/coseventchanneladmin-eventchannel-helper.adb +include/polyorb/coseventchanneladmin-eventchannel-helper.ads +include/polyorb/coseventchanneladmin-eventchannel-impl.adb +include/polyorb/coseventchanneladmin-eventchannel-impl.ads +include/polyorb/coseventchanneladmin-eventchannel-skel.adb +include/polyorb/coseventchanneladmin-eventchannel-skel.ads +include/polyorb/coseventchanneladmin-eventchannel.adb +include/polyorb/coseventchanneladmin-eventchannel.ads +include/polyorb/coseventchanneladmin-helper.adb +include/polyorb/coseventchanneladmin-helper.ads +include/polyorb/coseventchanneladmin-proxypullconsumer-helper.adb +include/polyorb/coseventchanneladmin-proxypullconsumer-helper.ads +include/polyorb/coseventchanneladmin-proxypullconsumer-impl.adb +include/polyorb/coseventchanneladmin-proxypullconsumer-impl.ads +include/polyorb/coseventchanneladmin-proxypullconsumer-skel.adb +include/polyorb/coseventchanneladmin-proxypullconsumer-skel.ads +include/polyorb/coseventchanneladmin-proxypullconsumer.adb +include/polyorb/coseventchanneladmin-proxypullconsumer.ads +include/polyorb/coseventchanneladmin-proxypullsupplier-helper.adb +include/polyorb/coseventchanneladmin-proxypullsupplier-helper.ads +include/polyorb/coseventchanneladmin-proxypullsupplier-impl.adb +include/polyorb/coseventchanneladmin-proxypullsupplier-impl.ads +include/polyorb/coseventchanneladmin-proxypullsupplier-skel.adb +include/polyorb/coseventchanneladmin-proxypullsupplier-skel.ads +include/polyorb/coseventchanneladmin-proxypullsupplier.adb +include/polyorb/coseventchanneladmin-proxypullsupplier.ads +include/polyorb/coseventchanneladmin-proxypushconsumer-helper.adb +include/polyorb/coseventchanneladmin-proxypushconsumer-helper.ads +include/polyorb/coseventchanneladmin-proxypushconsumer-impl.adb +include/polyorb/coseventchanneladmin-proxypushconsumer-impl.ads +include/polyorb/coseventchanneladmin-proxypushconsumer-skel.adb +include/polyorb/coseventchanneladmin-proxypushconsumer-skel.ads +include/polyorb/coseventchanneladmin-proxypushconsumer.adb +include/polyorb/coseventchanneladmin-proxypushconsumer.ads +include/polyorb/coseventchanneladmin-proxypushsupplier-helper.adb +include/polyorb/coseventchanneladmin-proxypushsupplier-helper.ads +include/polyorb/coseventchanneladmin-proxypushsupplier-impl.adb +include/polyorb/coseventchanneladmin-proxypushsupplier-impl.ads +include/polyorb/coseventchanneladmin-proxypushsupplier-skel.adb +include/polyorb/coseventchanneladmin-proxypushsupplier-skel.ads +include/polyorb/coseventchanneladmin-proxypushsupplier.adb +include/polyorb/coseventchanneladmin-proxypushsupplier.ads +include/polyorb/coseventchanneladmin-supplieradmin-helper.adb +include/polyorb/coseventchanneladmin-supplieradmin-helper.ads +include/polyorb/coseventchanneladmin-supplieradmin-impl.adb +include/polyorb/coseventchanneladmin-supplieradmin-impl.ads +include/polyorb/coseventchanneladmin-supplieradmin-skel.adb +include/polyorb/coseventchanneladmin-supplieradmin-skel.ads +include/polyorb/coseventchanneladmin-supplieradmin.adb +include/polyorb/coseventchanneladmin-supplieradmin.ads +include/polyorb/coseventchanneladmin.adb +include/polyorb/coseventchanneladmin.ads +include/polyorb/coseventchanneladmin_consumeradmin_hash.adb +include/polyorb/coseventchanneladmin_consumeradmin_hash.ads +include/polyorb/coseventchanneladmin_eventchannel_hash.adb +include/polyorb/coseventchanneladmin_eventchannel_hash.ads +include/polyorb/coseventchanneladmin_proxypullconsumer_hash.adb +include/polyorb/coseventchanneladmin_proxypullconsumer_hash.ads +include/polyorb/coseventchanneladmin_proxypullsupplier_hash.adb +include/polyorb/coseventchanneladmin_proxypullsupplier_hash.ads +include/polyorb/coseventchanneladmin_proxypushconsumer_hash.adb +include/polyorb/coseventchanneladmin_proxypushconsumer_hash.ads +include/polyorb/coseventchanneladmin_proxypushsupplier_hash.adb +include/polyorb/coseventchanneladmin_proxypushsupplier_hash.ads +include/polyorb/coseventchanneladmin_supplieradmin_hash.adb +include/polyorb/coseventchanneladmin_supplieradmin_hash.ads +include/polyorb/coseventcomm-helper.adb +include/polyorb/coseventcomm-helper.ads +include/polyorb/coseventcomm-pullconsumer-helper.adb +include/polyorb/coseventcomm-pullconsumer-helper.ads +include/polyorb/coseventcomm-pullconsumer-impl.adb +include/polyorb/coseventcomm-pullconsumer-impl.ads +include/polyorb/coseventcomm-pullconsumer-skel.adb +include/polyorb/coseventcomm-pullconsumer-skel.ads +include/polyorb/coseventcomm-pullconsumer.adb +include/polyorb/coseventcomm-pullconsumer.ads +include/polyorb/coseventcomm-pullsupplier-helper.adb +include/polyorb/coseventcomm-pullsupplier-helper.ads +include/polyorb/coseventcomm-pullsupplier-impl.adb +include/polyorb/coseventcomm-pullsupplier-impl.ads +include/polyorb/coseventcomm-pullsupplier-skel.adb +include/polyorb/coseventcomm-pullsupplier-skel.ads +include/polyorb/coseventcomm-pullsupplier.adb +include/polyorb/coseventcomm-pullsupplier.ads +include/polyorb/coseventcomm-pushconsumer-helper.adb +include/polyorb/coseventcomm-pushconsumer-helper.ads +include/polyorb/coseventcomm-pushconsumer-impl.adb +include/polyorb/coseventcomm-pushconsumer-impl.ads +include/polyorb/coseventcomm-pushconsumer-skel.adb +include/polyorb/coseventcomm-pushconsumer-skel.ads +include/polyorb/coseventcomm-pushconsumer.adb +include/polyorb/coseventcomm-pushconsumer.ads +include/polyorb/coseventcomm-pushsupplier-helper.adb +include/polyorb/coseventcomm-pushsupplier-helper.ads +include/polyorb/coseventcomm-pushsupplier-impl.adb +include/polyorb/coseventcomm-pushsupplier-impl.ads +include/polyorb/coseventcomm-pushsupplier-skel.adb +include/polyorb/coseventcomm-pushsupplier-skel.ads +include/polyorb/coseventcomm-pushsupplier.adb +include/polyorb/coseventcomm-pushsupplier.ads +include/polyorb/coseventcomm.adb +include/polyorb/coseventcomm.ads +include/polyorb/coseventcomm_pullconsumer_hash.adb +include/polyorb/coseventcomm_pullconsumer_hash.ads +include/polyorb/coseventcomm_pullsupplier_hash.adb +include/polyorb/coseventcomm_pullsupplier_hash.ads +include/polyorb/coseventcomm_pushconsumer_hash.adb +include/polyorb/coseventcomm_pushconsumer_hash.ads +include/polyorb/coseventcomm_pushsupplier_hash.adb +include/polyorb/coseventcomm_pushsupplier_hash.ads +include/polyorb/cosnaming-bindingiterator-helper.adb +include/polyorb/cosnaming-bindingiterator-helper.ads +include/polyorb/cosnaming-bindingiterator-impl.adb +include/polyorb/cosnaming-bindingiterator-impl.ads +include/polyorb/cosnaming-bindingiterator-skel.adb +include/polyorb/cosnaming-bindingiterator-skel.ads +include/polyorb/cosnaming-bindingiterator.adb +include/polyorb/cosnaming-bindingiterator.ads +include/polyorb/cosnaming-helper.adb +include/polyorb/cosnaming-helper.ads +include/polyorb/cosnaming-namingcontext-helper.adb +include/polyorb/cosnaming-namingcontext-helper.ads +include/polyorb/cosnaming-namingcontext-impl.adb +include/polyorb/cosnaming-namingcontext-impl.ads +include/polyorb/cosnaming-namingcontext-skel.adb +include/polyorb/cosnaming-namingcontext-skel.ads +include/polyorb/cosnaming-namingcontext.adb +include/polyorb/cosnaming-namingcontext.ads +include/polyorb/cosnaming-namingcontextext-helper.adb +include/polyorb/cosnaming-namingcontextext-helper.ads +include/polyorb/cosnaming-namingcontextext-impl.adb +include/polyorb/cosnaming-namingcontextext-impl.ads +include/polyorb/cosnaming-namingcontextext-skel.adb +include/polyorb/cosnaming-namingcontextext-skel.ads +include/polyorb/cosnaming-namingcontextext.adb +include/polyorb/cosnaming-namingcontextext.ads +include/polyorb/cosnaming.ads +include/polyorb/cosnaming_bindingiterator_hash.adb +include/polyorb/cosnaming_bindingiterator_hash.ads +include/polyorb/cosnaming_namingcontext_hash.adb +include/polyorb/cosnaming_namingcontext_hash.ads +include/polyorb/cosnaming_namingcontextext_hash.adb +include/polyorb/cosnaming_namingcontextext_hash.ads +include/polyorb/cosnotification-adminpropertiesadmin-helper.adb +include/polyorb/cosnotification-adminpropertiesadmin-helper.ads +include/polyorb/cosnotification-adminpropertiesadmin-impl.adb +include/polyorb/cosnotification-adminpropertiesadmin-impl.ads +include/polyorb/cosnotification-adminpropertiesadmin-skel.adb +include/polyorb/cosnotification-adminpropertiesadmin-skel.ads +include/polyorb/cosnotification-adminpropertiesadmin.adb +include/polyorb/cosnotification-adminpropertiesadmin.ads +include/polyorb/cosnotification-helper.adb +include/polyorb/cosnotification-helper.ads +include/polyorb/cosnotification-qosadmin-helper.adb +include/polyorb/cosnotification-qosadmin-helper.ads +include/polyorb/cosnotification-qosadmin-impl.adb +include/polyorb/cosnotification-qosadmin-impl.ads +include/polyorb/cosnotification-qosadmin-skel.adb +include/polyorb/cosnotification-qosadmin-skel.ads +include/polyorb/cosnotification-qosadmin.adb +include/polyorb/cosnotification-qosadmin.ads +include/polyorb/cosnotification.adb +include/polyorb/cosnotification.ads +include/polyorb/cosnotification_adminpropertiesadmin_hash.adb +include/polyorb/cosnotification_adminpropertiesadmin_hash.ads +include/polyorb/cosnotification_qosadmin_hash.adb +include/polyorb/cosnotification_qosadmin_hash.ads +include/polyorb/cosnotifychanneladmin-consumeradmin-helper.adb +include/polyorb/cosnotifychanneladmin-consumeradmin-helper.ads +include/polyorb/cosnotifychanneladmin-consumeradmin-impl.adb +include/polyorb/cosnotifychanneladmin-consumeradmin-impl.ads +include/polyorb/cosnotifychanneladmin-consumeradmin-skel.adb +include/polyorb/cosnotifychanneladmin-consumeradmin-skel.ads +include/polyorb/cosnotifychanneladmin-consumeradmin.adb +include/polyorb/cosnotifychanneladmin-consumeradmin.ads +include/polyorb/cosnotifychanneladmin-eventchannel-helper.adb +include/polyorb/cosnotifychanneladmin-eventchannel-helper.ads +include/polyorb/cosnotifychanneladmin-eventchannel-impl.adb +include/polyorb/cosnotifychanneladmin-eventchannel-impl.ads +include/polyorb/cosnotifychanneladmin-eventchannel-skel.adb +include/polyorb/cosnotifychanneladmin-eventchannel-skel.ads +include/polyorb/cosnotifychanneladmin-eventchannel.adb +include/polyorb/cosnotifychanneladmin-eventchannel.ads +include/polyorb/cosnotifychanneladmin-eventchannelfactory-helper.adb +include/polyorb/cosnotifychanneladmin-eventchannelfactory-helper.ads +include/polyorb/cosnotifychanneladmin-eventchannelfactory-impl.adb +include/polyorb/cosnotifychanneladmin-eventchannelfactory-impl.ads +include/polyorb/cosnotifychanneladmin-eventchannelfactory-skel.adb +include/polyorb/cosnotifychanneladmin-eventchannelfactory-skel.ads +include/polyorb/cosnotifychanneladmin-eventchannelfactory.adb +include/polyorb/cosnotifychanneladmin-eventchannelfactory.ads +include/polyorb/cosnotifychanneladmin-helper.adb +include/polyorb/cosnotifychanneladmin-helper.ads +include/polyorb/cosnotifychanneladmin-proxyconsumer-helper.adb +include/polyorb/cosnotifychanneladmin-proxyconsumer-helper.ads +include/polyorb/cosnotifychanneladmin-proxyconsumer-impl.adb +include/polyorb/cosnotifychanneladmin-proxyconsumer-impl.ads +include/polyorb/cosnotifychanneladmin-proxyconsumer-skel.adb +include/polyorb/cosnotifychanneladmin-proxyconsumer-skel.ads +include/polyorb/cosnotifychanneladmin-proxyconsumer.adb +include/polyorb/cosnotifychanneladmin-proxyconsumer.ads +include/polyorb/cosnotifychanneladmin-proxypullconsumer-helper.adb +include/polyorb/cosnotifychanneladmin-proxypullconsumer-helper.ads +include/polyorb/cosnotifychanneladmin-proxypullconsumer-impl.adb +include/polyorb/cosnotifychanneladmin-proxypullconsumer-impl.ads +include/polyorb/cosnotifychanneladmin-proxypullconsumer-skel.adb +include/polyorb/cosnotifychanneladmin-proxypullconsumer-skel.ads +include/polyorb/cosnotifychanneladmin-proxypullconsumer.adb +include/polyorb/cosnotifychanneladmin-proxypullconsumer.ads +include/polyorb/cosnotifychanneladmin-proxypullsupplier-helper.adb +include/polyorb/cosnotifychanneladmin-proxypullsupplier-helper.ads +include/polyorb/cosnotifychanneladmin-proxypullsupplier-impl.adb +include/polyorb/cosnotifychanneladmin-proxypullsupplier-impl.ads +include/polyorb/cosnotifychanneladmin-proxypullsupplier-skel.adb +include/polyorb/cosnotifychanneladmin-proxypullsupplier-skel.ads +include/polyorb/cosnotifychanneladmin-proxypullsupplier.adb +include/polyorb/cosnotifychanneladmin-proxypullsupplier.ads +include/polyorb/cosnotifychanneladmin-proxypushconsumer-helper.adb +include/polyorb/cosnotifychanneladmin-proxypushconsumer-helper.ads +include/polyorb/cosnotifychanneladmin-proxypushconsumer-impl.adb +include/polyorb/cosnotifychanneladmin-proxypushconsumer-impl.ads +include/polyorb/cosnotifychanneladmin-proxypushconsumer-skel.adb +include/polyorb/cosnotifychanneladmin-proxypushconsumer-skel.ads +include/polyorb/cosnotifychanneladmin-proxypushconsumer.adb +include/polyorb/cosnotifychanneladmin-proxypushconsumer.ads +include/polyorb/cosnotifychanneladmin-proxypushsupplier-helper.adb +include/polyorb/cosnotifychanneladmin-proxypushsupplier-helper.ads +include/polyorb/cosnotifychanneladmin-proxypushsupplier-impl.adb +include/polyorb/cosnotifychanneladmin-proxypushsupplier-impl.ads +include/polyorb/cosnotifychanneladmin-proxypushsupplier-skel.adb +include/polyorb/cosnotifychanneladmin-proxypushsupplier-skel.ads +include/polyorb/cosnotifychanneladmin-proxypushsupplier.adb +include/polyorb/cosnotifychanneladmin-proxypushsupplier.ads +include/polyorb/cosnotifychanneladmin-proxysupplier-helper.adb +include/polyorb/cosnotifychanneladmin-proxysupplier-helper.ads +include/polyorb/cosnotifychanneladmin-proxysupplier-impl.adb +include/polyorb/cosnotifychanneladmin-proxysupplier-impl.ads +include/polyorb/cosnotifychanneladmin-proxysupplier-skel.adb +include/polyorb/cosnotifychanneladmin-proxysupplier-skel.ads +include/polyorb/cosnotifychanneladmin-proxysupplier.adb +include/polyorb/cosnotifychanneladmin-proxysupplier.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypullconsumer-helper.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypullconsumer-helper.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypullconsumer-impl.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypullconsumer-impl.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypullconsumer-skel.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypullconsumer-skel.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypullconsumer.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypullconsumer.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypullsupplier-helper.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypullsupplier-helper.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypullsupplier-impl.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypullsupplier-impl.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypullsupplier-skel.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypullsupplier-skel.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypullsupplier.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypullsupplier.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypushconsumer-helper.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypushconsumer-helper.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypushconsumer-impl.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypushconsumer-impl.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypushconsumer-skel.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypushconsumer-skel.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypushconsumer.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypushconsumer.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypushsupplier-helper.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypushsupplier-helper.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypushsupplier-impl.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypushsupplier-impl.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypushsupplier-skel.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypushsupplier-skel.ads +include/polyorb/cosnotifychanneladmin-sequenceproxypushsupplier.adb +include/polyorb/cosnotifychanneladmin-sequenceproxypushsupplier.ads +include/polyorb/cosnotifychanneladmin-structuredproxypullconsumer-helper.adb +include/polyorb/cosnotifychanneladmin-structuredproxypullconsumer-helper.ads +include/polyorb/cosnotifychanneladmin-structuredproxypullconsumer-impl.adb +include/polyorb/cosnotifychanneladmin-structuredproxypullconsumer-impl.ads +include/polyorb/cosnotifychanneladmin-structuredproxypullconsumer-skel.adb +include/polyorb/cosnotifychanneladmin-structuredproxypullconsumer-skel.ads +include/polyorb/cosnotifychanneladmin-structuredproxypullconsumer.adb +include/polyorb/cosnotifychanneladmin-structuredproxypullconsumer.ads +include/polyorb/cosnotifychanneladmin-structuredproxypullsupplier-helper.adb +include/polyorb/cosnotifychanneladmin-structuredproxypullsupplier-helper.ads +include/polyorb/cosnotifychanneladmin-structuredproxypullsupplier-impl.adb +include/polyorb/cosnotifychanneladmin-structuredproxypullsupplier-impl.ads +include/polyorb/cosnotifychanneladmin-structuredproxypullsupplier-skel.adb +include/polyorb/cosnotifychanneladmin-structuredproxypullsupplier-skel.ads +include/polyorb/cosnotifychanneladmin-structuredproxypullsupplier.adb +include/polyorb/cosnotifychanneladmin-structuredproxypullsupplier.ads +include/polyorb/cosnotifychanneladmin-structuredproxypushconsumer-helper.adb +include/polyorb/cosnotifychanneladmin-structuredproxypushconsumer-helper.ads +include/polyorb/cosnotifychanneladmin-structuredproxypushconsumer-impl.adb +include/polyorb/cosnotifychanneladmin-structuredproxypushconsumer-impl.ads +include/polyorb/cosnotifychanneladmin-structuredproxypushconsumer-skel.adb +include/polyorb/cosnotifychanneladmin-structuredproxypushconsumer-skel.ads +include/polyorb/cosnotifychanneladmin-structuredproxypushconsumer.adb +include/polyorb/cosnotifychanneladmin-structuredproxypushconsumer.ads +include/polyorb/cosnotifychanneladmin-structuredproxypushsupplier-helper.adb +include/polyorb/cosnotifychanneladmin-structuredproxypushsupplier-helper.ads +include/polyorb/cosnotifychanneladmin-structuredproxypushsupplier-impl.adb +include/polyorb/cosnotifychanneladmin-structuredproxypushsupplier-impl.ads +include/polyorb/cosnotifychanneladmin-structuredproxypushsupplier-skel.adb +include/polyorb/cosnotifychanneladmin-structuredproxypushsupplier-skel.ads +include/polyorb/cosnotifychanneladmin-structuredproxypushsupplier.adb +include/polyorb/cosnotifychanneladmin-structuredproxypushsupplier.ads +include/polyorb/cosnotifychanneladmin-supplieradmin-helper.adb +include/polyorb/cosnotifychanneladmin-supplieradmin-helper.ads +include/polyorb/cosnotifychanneladmin-supplieradmin-impl.adb +include/polyorb/cosnotifychanneladmin-supplieradmin-impl.ads +include/polyorb/cosnotifychanneladmin-supplieradmin-skel.adb +include/polyorb/cosnotifychanneladmin-supplieradmin-skel.ads +include/polyorb/cosnotifychanneladmin-supplieradmin.adb +include/polyorb/cosnotifychanneladmin-supplieradmin.ads +include/polyorb/cosnotifychanneladmin.adb +include/polyorb/cosnotifychanneladmin.ads +include/polyorb/cosnotifychanneladmin_consumeradmin_hash.adb +include/polyorb/cosnotifychanneladmin_consumeradmin_hash.ads +include/polyorb/cosnotifychanneladmin_eventchannel_hash.adb +include/polyorb/cosnotifychanneladmin_eventchannel_hash.ads +include/polyorb/cosnotifychanneladmin_eventchannelfactory_hash.adb +include/polyorb/cosnotifychanneladmin_eventchannelfactory_hash.ads +include/polyorb/cosnotifychanneladmin_proxyconsumer_hash.adb +include/polyorb/cosnotifychanneladmin_proxyconsumer_hash.ads +include/polyorb/cosnotifychanneladmin_proxypullconsumer_hash.adb +include/polyorb/cosnotifychanneladmin_proxypullconsumer_hash.ads +include/polyorb/cosnotifychanneladmin_proxypullsupplier_hash.adb +include/polyorb/cosnotifychanneladmin_proxypullsupplier_hash.ads +include/polyorb/cosnotifychanneladmin_proxypushconsumer_hash.adb +include/polyorb/cosnotifychanneladmin_proxypushconsumer_hash.ads +include/polyorb/cosnotifychanneladmin_proxypushsupplier_hash.adb +include/polyorb/cosnotifychanneladmin_proxypushsupplier_hash.ads +include/polyorb/cosnotifychanneladmin_proxysupplier_hash.adb +include/polyorb/cosnotifychanneladmin_proxysupplier_hash.ads +include/polyorb/cosnotifychanneladmin_sequenceproxypullconsumer_hash.adb +include/polyorb/cosnotifychanneladmin_sequenceproxypullconsumer_hash.ads +include/polyorb/cosnotifychanneladmin_sequenceproxypullsupplier_hash.adb +include/polyorb/cosnotifychanneladmin_sequenceproxypullsupplier_hash.ads +include/polyorb/cosnotifychanneladmin_sequenceproxypushconsumer_hash.adb +include/polyorb/cosnotifychanneladmin_sequenceproxypushconsumer_hash.ads +include/polyorb/cosnotifychanneladmin_sequenceproxypushsupplier_hash.adb +include/polyorb/cosnotifychanneladmin_sequenceproxypushsupplier_hash.ads +include/polyorb/cosnotifychanneladmin_structuredproxypullconsumer_hash.adb +include/polyorb/cosnotifychanneladmin_structuredproxypullconsumer_hash.ads +include/polyorb/cosnotifychanneladmin_structuredproxypullsupplier_hash.adb +include/polyorb/cosnotifychanneladmin_structuredproxypullsupplier_hash.ads +include/polyorb/cosnotifychanneladmin_structuredproxypushconsumer_hash.adb +include/polyorb/cosnotifychanneladmin_structuredproxypushconsumer_hash.ads +include/polyorb/cosnotifychanneladmin_structuredproxypushsupplier_hash.adb +include/polyorb/cosnotifychanneladmin_structuredproxypushsupplier_hash.ads +include/polyorb/cosnotifychanneladmin_supplieradmin_hash.adb +include/polyorb/cosnotifychanneladmin_supplieradmin_hash.ads +include/polyorb/cosnotifycomm-helper.adb +include/polyorb/cosnotifycomm-helper.ads +include/polyorb/cosnotifycomm-notifypublish-helper.adb +include/polyorb/cosnotifycomm-notifypublish-helper.ads +include/polyorb/cosnotifycomm-notifypublish-impl.adb +include/polyorb/cosnotifycomm-notifypublish-impl.ads +include/polyorb/cosnotifycomm-notifypublish-skel.adb +include/polyorb/cosnotifycomm-notifypublish-skel.ads +include/polyorb/cosnotifycomm-notifypublish.adb +include/polyorb/cosnotifycomm-notifypublish.ads +include/polyorb/cosnotifycomm-notifysubscribe-helper.adb +include/polyorb/cosnotifycomm-notifysubscribe-helper.ads +include/polyorb/cosnotifycomm-notifysubscribe-impl.adb +include/polyorb/cosnotifycomm-notifysubscribe-impl.ads +include/polyorb/cosnotifycomm-notifysubscribe-skel.adb +include/polyorb/cosnotifycomm-notifysubscribe-skel.ads +include/polyorb/cosnotifycomm-notifysubscribe.adb +include/polyorb/cosnotifycomm-notifysubscribe.ads +include/polyorb/cosnotifycomm-pullconsumer-helper.adb +include/polyorb/cosnotifycomm-pullconsumer-helper.ads +include/polyorb/cosnotifycomm-pullconsumer-impl.adb +include/polyorb/cosnotifycomm-pullconsumer-impl.ads +include/polyorb/cosnotifycomm-pullconsumer-skel.adb +include/polyorb/cosnotifycomm-pullconsumer-skel.ads +include/polyorb/cosnotifycomm-pullconsumer.adb +include/polyorb/cosnotifycomm-pullconsumer.ads +include/polyorb/cosnotifycomm-pullsupplier-helper.adb +include/polyorb/cosnotifycomm-pullsupplier-helper.ads +include/polyorb/cosnotifycomm-pullsupplier-impl.adb *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***