View | Details | Raw Unified | Return to bug 53988
Collapse All | Expand All

(-)mico/Makefile (-36 / +84 lines)
Lines 7-69 Link Here
7
7
8
PORTNAME=	mico
8
PORTNAME=	mico
9
PORTVERSION=	2.3.10
9
PORTVERSION=	2.3.10
10
PORTREVISION=	1
10
CATEGORIES=	devel
11
CATEGORIES=	devel
11
MASTER_SITES=	http://www.mico.org/
12
MASTER_SITES=	http://www.mico.org/
12
13
13
MAINTAINER=	sem@ciam.ru
14
MAINTAINER=	sem@ciam.ru
14
COMMENT=	An Open Source CORBA 2.3 implementation
15
COMMENT=	Fully compliant implementation of CORBA2.3 with some CORBA3.0 features
15
16
16
WRKSRC=			${WRKDIR}/mico
17
DISTFILES=	${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \
18
		doc-html.tar.gz
19
20
WRKSRC=			${WRKDIR}/${PORTNAME}
17
INSTALLS_SHLIB=		yes
21
INSTALLS_SHLIB=		yes
18
GNU_CONFIGURE=		yes
22
GNU_CONFIGURE=		yes
19
USE_REINPLACE=		yes
23
USE_REINPLACE=		yes
20
USE_GMAKE=		yes
24
USE_GMAKE=		yes
21
CONIFUGRE_ARGS+=	--enable-cd --disable-mini-stl \
25
.if defined(WITH_GCC32)
22
			--enable-ccm --enable-threads
26
USE_GCC=		3.2
23
.if !defined(WITHOUT_SSL)
27
.endif
28
CONFIGURE_ARGS+=	--enable-cd --disable-mini-stl --enable-threads \
29
			--enable-ccm
30
CONFIGURE_ENV+=		CXXFLAGS=${CPPFLAGS}
31
32
.if defined(WITH_X11)
33
USE_XLIBS=		yes
34
CONFIGURE_ARGS+=	--with-x
35
.else
36
CONFIGURE_ARGS+=	--without-x
37
MICO_X11=		"@comment "
38
.endif
39
.if defined(WITH_QT)
40
USE_QT_VER=			3
41
CONFIGURE_ARGS+=	--with-qt=${LOCALBASE}
42
QTCPPFLAGS+=		${CPPFLAGS}
43
.else
44
MICO_QT=		"@comment "
45
.endif
46
.if defined(WITH_GTK)
47
USE_GNOME=		gtk12
48
CONFIGURE_ARGS+=	--with-gtk=${LOCALBASE}
49
.else
50
MICO_GTK=		"@comment "
51
.endif
52
.if defined(WITH_TCL)
53
LIB_DEPENDS=		tcl83:${PORTSDIR}/lang/tcl83
54
CONFIGURE_ARGS+=	--with-tcl
55
CPPFLAGS+=		-I${LOCALBASE}/include/tcl8.3
56
CONFIGURE_ENV+=		CPPFLAGS=${CPPFLAGS}
57
.else
58
MICO_TCL=		"@comment "
59
.endif
60
61
.include <bsd.port.pre.mk>
62
63
.if defined(WITHOUT_SSL)
64
MICO_SSL=		"@comment "
65
.else
24
USE_OPENSSL=		yes
66
USE_OPENSSL=		yes
25
CONFIGURE_ARGS+=	--enable-ssl=${OPENSSLBASE}
67
CONFIGURE_ARGS+=	--enable-ssl=${OPENSSLBASE} --enable-csiv2
68
# CORBASecV2 doesn't build with gcc32 port because FlexLexer.h absent
69
.if !( ${OSVERSION} < 500035 && defined(WITH_GCC32) )
70
CONFIGURE_ARGS+=	--enable-csl2
71
.endif
26
.endif
72
.endif
27
73
74
PLIST_SUB+=	MICO_X11=${MICO_X11} MICO_QT=${MICO_QT} MICO_GTK=${MICO_GTK} \
75
		MICO_TCL=${MICO_TCL} MICO_SSL=${MICO_SSL}
76
28
MAN1=		idl.1 imr.1 nsadmin.1
77
MAN1=		idl.1 imr.1 nsadmin.1
29
MAN5=		micorc.5
78
MAN5=		micorc.5
30
MAN8=		ird.8 micod.8 nsd.8
79
MAN8=		ird.8 micod.8 nsd.8
31
80
32
.include <bsd.port.pre.mk>
81
pre-fetch:
82
	@${ECHO} "============================================================================"
83
.if ${OSVERSION} < 500035
84
	@${ECHO} "Use WITH_GCC32=yes to build Mico with gcc 3.2 for better stability."
85
	@${ECHO}
86
.endif
87
	@${ECHO} "Following options are allowed:"
88
	@${ECHO} "WITHOUT_SSL=yes, WITH_X11=yes, WITH_QT=yes, WITH_GTK=yes, WITH_TCL=yes"
89
	@${ECHO} "============================================================================"
90
91
post-extract:
92
	${TAR} xzf ${DISTDIR}/doc-html.tar.gz -C ${WRKDIR}
33
93
34
post-patch:
94
post-patch:
35
	${REINPLACE_CMD} -e "s,so.1.0,so, ;s,-O2,${CFLAGS}," ${WRKSRC}/configure
95
	${REINPLACE_CMD} -e "s#-O2#${CFLAGS}#" ${WRKSRC}/configure
36
96
37
post-configure:
97
post-configure:
38
	${FIND} ${WRKSRC} -name Makefile | ${XARGS} \
98
	${FIND} ${WRKSRC}/demo -name Makefile | ${XARGS} \
39
		${REINPLACE_CMD} -e "s,/doc/,/share/doc/,"
99
		${REINPLACE_CMD} -e "s#/doc/mico/examples#/share/examples/mico#"
40
	${REINPLACE_CMD} -e "s,/doc/,/share/doc/," ${WRKSRC}/demo/MakeVars
100
	${REINPLACE_CMD} -e "s#/doc/mico/examples#/share/examples/mico#" ${WRKSRC}/demo/MakeVars
101
	${REINPLACE_CMD} -e "s#ministl##" ${WRKSRC}/include/Makefile
102
	${RM} ${WRKSRC}/include/mico/*.orig
41
103
42
post-install:
104
post-install:
43
	${LN} -sf ${PREFIX}/lib/libmico${PORTVERSION}.so.1 ${PREFIX}/lib/libmico.${PORTVERSION}.so
105
	@for i in `${GREP} '^lib/lib.*so$$' ${TMPPLIST}`; do \
44
	${LN} -sf ${PREFIX}/lib/libmicoaux${PORTVERSION}.so.1 ${PREFIX}/lib/libmicoaux.${PORTVERSION}.so
106
		${LN} -fs ${PREFIX}/$$i ${PREFIX}/$$i.1; \
45
	${LN} -sf ${PREFIX}/lib/libmicocoss${PORTVERSION}.so.1 ${PREFIX}/lib/libmicocoss.${PORTVERSION}.so
107
	done; \
46
	${LN} -sf ${PREFIX}/lib/libmicogtk${PORTVERSION}.so.1 ${PREFIX}/lib/libmicogtk.${PORTVERSION}.so
108
	for i in `${GREP} ^bin/ ${TMPPLIST}`; do \
47
	${LN} -sf ${PREFIX}/lib/libmicoqt${PORTVERSION}.so.1 ${PREFIX}/lib/libmicoqt.${PORTVERSION}.so
109
		(${STRIP_CMD} ${PREFIX}/$$i || ${TRUE}) 2> /dev/null; \
48
	${LN} -sf ${PREFIX}/lib/libmicotcl${PORTVERSION}.so.1 ${PREFIX}/lib/libmicotcl.${PORTVERSION}.so
110
	done
49
	${LN} -sf ${PREFIX}/lib/libmicox${PORTVERSION}.so.1 ${PREFIX}/lib/libmicox.${PORTVERSION}.so
111
.if !defined(NOPORTDOCS)
50
	@${STRIP_CMD} ${PREFIX}/bin/containmentd
112
	${GMAKE} -C ${WRKSRC} install-doc
51
	@${STRIP_CMD} ${PREFIX}/bin/eventd
113
	${MKDIR} ${PREFIX}/share/doc/mico/html
52
	@${STRIP_CMD} ${PREFIX}/bin/idl
114
	${INSTALL_DATA} ${WRKDIR}/doc/doc/* ${PREFIX}/share/doc/mico/html
53
	@${STRIP_CMD} ${PREFIX}/bin/imr
115
.endif
54
	@${STRIP_CMD} ${PREFIX}/bin/iordump
55
	@${STRIP_CMD} ${PREFIX}/bin/ird
56
	@${STRIP_CMD} ${PREFIX}/bin/mico-cpp
57
	@${STRIP_CMD} ${PREFIX}/bin/micod
58
	@${STRIP_CMD} ${PREFIX}/bin/noded
59
	@${STRIP_CMD} ${PREFIX}/bin/nsadmin
60
	@${STRIP_CMD} ${PREFIX}/bin/nsd
61
	@${STRIP_CMD} ${PREFIX}/bin/propertyd
62
	@${STRIP_CMD} ${PREFIX}/bin/proxyd
63
	@${STRIP_CMD} ${PREFIX}/bin/randomd
64
	@${STRIP_CMD} ${PREFIX}/bin/referenced
65
	@${STRIP_CMD} ${PREFIX}/bin/timed
66
	@${STRIP_CMD} ${PREFIX}/bin/traderd
67
	@${STRIP_CMD} ${PREFIX}/bin/traversald
68
116
69
.include <bsd.port.post.mk>
117
.include <bsd.port.post.mk>
(-)mico/distinfo (+1 lines)
Line 1 Link Here
1
MD5 (mico-2.3.10.tar.gz) = 0f27a8d66bc57100d762302cdf4868bf
1
MD5 (mico-2.3.10.tar.gz) = 0f27a8d66bc57100d762302cdf4868bf
2
MD5 (doc-html.tar.gz) = f32f618cfb2da541efd5dba50c3e2273
(-)mico/files/patch-aq (-10 lines)
Lines 1-10 Link Here
1
--- Makefile.orig	Fri Dec  3 14:35:16 1999
2
+++ Makefile	Fri Dec  3 14:36:14 1999
3
@@ -62,7 +62,6 @@
4
 		$(IDIRCMD) $(SHARED_INSTDIR)/doc/mico; \
5
 		$(IMANCMD) doc/doc.ps $(SHARED_INSTDIR)/doc/mico/manual.ps; \
6
 	fi
7
-	-ldconfig
8
 
9
 install-cd:
10
 	for i in $(INSTALLDIRS); do $(MAKE) -C $$i install-cd || exit 1; done
(-)mico/files/patch-ar (-10 lines)
Lines 1-10 Link Here
1
--- aclocal.m4.orig	Sun Nov 28 00:34:22 1999
2
+++ aclocal.m4	Sun Nov 28 00:34:47 1999
3
@@ -684,6 +684,7 @@
4
       AC_TRY_RUN([
5
 #include <gtk/gtk.h>
6
 #include <stdio.h>
7
+#include <stdlib.h>
8
 
9
 int 
10
 main ()
(-)mico/files/patch-as (-24 lines)
Lines 1-24 Link Here
1
--- os-math.h.orig	Mon May 26 14:55:46 2003
2
+++ include/mico/os-math.h	Tue Jun 24 02:20:33 2003
3
@@ -275,6 +275,21 @@
4
 };
5
 
6
 #else // neither _WIN32 nor _POCKET_PC
7
+#include <sys/param.h>
8
+#if (defined(__FreeBSD__) && __FreeBSD_version >= 500035)
9
+#ifndef fpclassify
10
+#define	fpclassify(x) \
11
+    ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) \
12
+    : (sizeof (x) == sizeof (double)) ? __fpclassifyd(x) \
13
+    : __fpclassifyl(x))
14
+#endif
15
+#ifndef isinf
16
+#define	isinf(x)	(fpclassify(x) == FP_INFINITE)
17
+#endif
18
+#ifndef isnan
19
+#define	isnan(x)	(fpclassify(x) == FP_NAN)
20
+#endif
21
+#endif
22
 
23
 #include <unistd.h>
24
 #include <signal.h>
(-)mico/files/patch-examples::Makefile (+11 lines)
Line 0 Link Here
1
--- demo/Makefile.orig	Mon Jun 30 05:51:13 2003
2
+++ demo/Makefile	Mon Jun 30 05:51:23 2003
3
@@ -27,7 +27,7 @@
4
 
5
 RUNDIRS = bench dynany interceptor codesets poa obv mcast generic pi
6
 
7
-INST_DIRS = $(DIRS) shlib ssl
8
+INST_DIRS = $(DIRS) shlib
9
 
10
 ifeq ($(HAVE_DYNAMIC), yes)
11
 DIRS := $(DIRS) shlib
(-)mico/files/patch-include::os-math.h (+24 lines)
Line 0 Link Here
1
--- os-math.h.orig	Mon May 26 14:55:46 2003
2
+++ include/mico/os-math.h	Tue Jun 24 02:20:33 2003
3
@@ -275,6 +275,21 @@
4
 };
5
 
6
 #else // neither _WIN32 nor _POCKET_PC
7
+#include <sys/param.h>
8
+#if (defined(__FreeBSD__) && __FreeBSD_version >= 500035)
9
+#ifndef fpclassify
10
+#define	fpclassify(x) \
11
+    ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) \
12
+    : (sizeof (x) == sizeof (double)) ? __fpclassifyd(x) \
13
+    : __fpclassifyl(x))
14
+#endif
15
+#ifndef isinf
16
+#define	isinf(x)	(fpclassify(x) == FP_INFINITE)
17
+#endif
18
+#ifndef isnan
19
+#define	isnan(x)	(fpclassify(x) == FP_NAN)
20
+#endif
21
+#endif
22
 
23
 #include <unistd.h>
24
 #include <signal.h>
(-)mico/files/patch-include::tclmico.h (+13 lines)
Line 0 Link Here
1
--- tclmico.h.orig	Mon May 26 14:55:46 2003
2
+++ include/mico/tclmico.h	Sun Jun 29 02:25:42 2003
3
@@ -32,6 +32,10 @@
4
 #include <tcl.h>
5
 #endif
6
 
7
+using std::list;
8
+using std::set;
9
+using std::less;
10
+
11
 class TclDispatcher : public CORBA::Dispatcher {
12
 
13
     struct FileEvent {
(-)mico/files/patch-src::Makefile (+28 lines)
Line 0 Link Here
1
--- Makefile.orig	Fri Feb 14 13:55:53 2003
2
+++ Makefile	Sun Jun 29 13:49:37 2003
3
@@ -27,7 +27,7 @@
4
 PRGDIRS = orb ir cpp idl daemon auxdir coss ccm tools
5
 EXTRADIRS = test demo
6
 ALLDIRS = admin orb ir daemon idl cpp auxdir coss ccm test tools demo
7
-INSTALLDIRS = admin orb ir daemon idl cpp auxdir coss ccm tools include man demo
8
+INSTALLDIRS = admin orb ir daemon idl cpp auxdir coss ccm tools include man
9
 # Bootstrap minimal build configuration
10
 MINLIBDIRS = orb ir idl
11
 MINPRGDIRS = cpp idl
12
@@ -68,11 +68,13 @@
13
 
14
 install:
15
 	for i in $(INSTALLDIRS); do $(MAKE) -C $$i install || exit 1; done
16
+
17
+install-doc:
18
+	$(MAKE) -C demo install || exit 1;
19
 	if test -f doc/doc.ps; then \
20
-		$(IDIRCMD) $(SHARED_INSTDIR)/doc/mico; \
21
-		$(IMANCMD) doc/doc.ps $(SHARED_INSTDIR)/doc/mico/manual.ps; \
22
+		$(IDIRCMD) $(SHARED_INSTDIR)/share/doc/mico; \
23
+		$(IMANCMD) doc/doc.ps $(SHARED_INSTDIR)/share/doc/mico/manual.ps; \
24
 	fi
25
-	-ldconfig
26
 
27
 install-cd:
28
 	for i in $(INSTALLDIRS); do $(MAKE) -C $$i install-cd || exit 1; done
(-)mico/files/patch-src::aclocal.m4 (+10 lines)
Line 0 Link Here
1
--- aclocal.m4.orig	Sun Nov 28 00:34:22 1999
2
+++ aclocal.m4	Sun Nov 28 00:34:47 1999
3
@@ -684,6 +684,7 @@
4
       AC_TRY_RUN([
5
 #include <gtk/gtk.h>
6
 #include <stdio.h>
7
+#include <stdlib.h>
8
 
9
 int 
10
 main ()
(-)mico/files/patch-src::configure (+43 lines)
Line 0 Link Here
1
--- configure.orig	Mon May 26 14:55:21 2003
2
+++ configure	Sun Jun 29 05:48:32 2003
3
@@ -3130,7 +3130,7 @@
4
 # System dependencies.
5
 #
6
 
7
-CONF_OPT_FLAGS=-O2
8
+CONF_OPT_FLAGS="-O2"
9
 CONF_DEBUG_FLAGS=-g
10
 CONF_LIBNSL=yes
11
 CONF_EXCEPT_FLAGS=
12
@@ -3155,7 +3155,7 @@
13
   CFLAGS="-Wall $CFLAGS"
14
 
15
   if test X"$use_speed_tune" = Xyes; then
16
-    CONF_OPT_FLAGS=-O2
17
+    CONF_OPT_FLAGS="-O2"
18
   fi
19
 
20
   CONF_SHARED_CC="$CXX -shared"
21
@@ -3233,6 +3233,12 @@
22
       CXXFLAGS="$CXXFLAGS -D_THREAD_SAFE"
23
     fi
24
     ;;
25
+  *freebsd5*)
26
+    # must not use .so.1.0 here
27
+    if test X"$use_threads" = Xyes; then
28
+      CXXFLAGS="$CXXFLAGS -D_THREAD_SAFE"
29
+    fi
30
+    ;;
31
   *netbsd*)
32
     # must not use .so.1.0 here
33
     if test X"$use_threads" = Xyes; then
34
@@ -4274,7 +4280,8 @@
35
 rm -rf conftest*
36
   if test X"$TCL_VERSION" != X; then
37
         TCL_VERSION=`echo $TCL_VERSION | tr -d \"`
38
-    TCL_LIBS=-ltcl$TCL_VERSION
39
+    TCL_LIBS="-ltcl$TCL_VERSION -L/usr/local/lib"
40
+    TCL_LIBS=`echo $TCL_LIBS | tr -d .`
41
     HAVE_TCL=yes
42
     echo "$ac_t""$TCL_VERSION" 1>&6
43
   else
(-)mico/pkg-descr (-10 / +8 lines)
Lines 1-16 Link Here
1
The acronym MICO expands to MICO Is CORBA. The intention of this project
1
The acronym MICO expands to MICO Is CORBA. The intention of this project
2
is to provide a freely available and fully compliant implementation of
2
is to provide a freely available and fully compliant implementation of
3
the latest CORBA standard. 
3
the latest CORBA standard for C++ developers.
4
4
5
Here is some of MICO features:
5
Here is some of MICO features:
6
    * IDL to C++ mapping
7
    * Multi-threaded
6
    * Multi-threaded
8
    * Dynamic Invocation Interface (DII)
7
    * Dynamic Invocation Interface (DII) and Dynamic Skeleton Interface (DSI)
9
    * Dynamic Skeleton Interface (DSI)
8
    * Interface Repository (IR) with graphical Interface Repository browser
10
    * graphical Interface Repository browser
11
    * Interface Repository (IR)
12
    * IIOP as native protocol (ORB prepared for multiprotocol support)
9
    * IIOP as native protocol (ORB prepared for multiprotocol support)
13
    * Portable Object Adapter (POA)
10
    * Portable Object Adapter (POA) and Basic Object Adapter (BOA) support
14
    * Objects by Value (OBV)
11
    * Objects by Value (OBV)
15
    * CORBA Components (CCM)
12
    * CORBA Components (CCM)
16
    * Dynamic Any
13
    * Dynamic Any
Lines 19-26 Link Here
19
    * Support for nested method invocations
16
    * Support for nested method invocations
20
    * Any offers an interface for inserting and extracting constructed
17
    * Any offers an interface for inserting and extracting constructed
21
       types that were not known at compile time
18
       types that were not known at compile time
22
    * CORBA Services: o Interoperable Naming service, o Trading service,
19
    * CORBA Services: 
23
        o Event service, o Relationship service, o Property service,
20
       o Interoperable Naming service, o Trading service, o Event service, 
24
	o Time service, o Security service 
21
       o Relationship service, o Property service, o Time service, 
22
       o Security service 
25
23
26
WWW: http://www.mico.org
24
WWW: http://www.mico.org
(-)mico/pkg-plist (-532 / +914 lines)
Lines 1-3 Link Here
1
bin/ccmload
2
bin/componentserver
1
bin/containmentd
3
bin/containmentd
2
bin/eventd
4
bin/eventd
3
bin/idl
5
bin/idl
Lines 6-11 Link Here
6
bin/ird
8
bin/ird
7
bin/mico-ar
9
bin/mico-ar
8
bin/mico-c++
10
bin/mico-c++
11
bin/mico-ccm
12
bin/mico-ccmd
9
bin/mico-cpp
13
bin/mico-cpp
10
bin/mico-ld
14
bin/mico-ld
11
bin/mico-shc++
15
bin/mico-shc++
Lines 179-185 Link Here
179
include/mico/orb_impl.h
183
include/mico/orb_impl.h
180
include/mico/orb_mico.h
184
include/mico/orb_mico.h
181
include/mico/os-math.h
185
include/mico/os-math.h
182
include/mico/os-math.h.orig
183
include/mico/os-misc.h
186
include/mico/os-misc.h
184
include/mico/os-net.h
187
include/mico/os-net.h
185
include/mico/os-thread.h
188
include/mico/os-thread.h
Lines 279-825 Link Here
279
include/mico/valuetype_impl.h
282
include/mico/valuetype_impl.h
280
include/mico/version.h
283
include/mico/version.h
281
include/mico/x11.h
284
include/mico/x11.h
282
include/ministl/algo.h
283
include/ministl/algorithm
284
include/ministl/bool.h
285
include/ministl/bstring.h
286
include/ministl/defalloc.h
287
include/ministl/function
288
include/ministl/function.h
289
include/ministl/list
290
include/ministl/list.h
291
include/ministl/map
292
include/ministl/map.h
293
include/ministl/ministl.h
294
include/ministl/pair
295
include/ministl/pair.h
296
include/ministl/set
297
include/ministl/set.h
298
include/ministl/simplevec.h
299
include/ministl/string
300
include/ministl/vector
301
include/ministl/vector.h
302
lib/libmico.2.3.10.so
303
lib/libmico2.3.10.a
285
lib/libmico2.3.10.a
304
lib/libmico2.3.10.so
286
lib/libmico2.3.10.so
305
lib/libmicoaux.2.3.10.so
287
lib/libmico2.3.10.so.1
306
lib/libmicoaux2.3.10.a
288
lib/libmicoaux2.3.10.a
307
lib/libmicoaux2.3.10.so
289
lib/libmicoaux2.3.10.so
308
lib/libmicocoss.2.3.10.so
290
lib/libmicoaux2.3.10.so.1
291
lib/libmicoccm2.3.10.a
292
lib/libmicoccm2.3.10.so
293
lib/libmicoccm2.3.10.so.1
309
lib/libmicocoss2.3.10.a
294
lib/libmicocoss2.3.10.a
310
lib/libmicocoss2.3.10.so
295
lib/libmicocoss2.3.10.so
311
lib/libmicogtk.2.3.10.so
296
lib/libmicocoss2.3.10.so.1
297
%%MICO_GTK%%lib/libmicogtk2.3.10.a
298
%%MICO_GTK%%lib/libmicogtk2.3.10.so
299
%%MICO_GTK%%lib/libmicogtk2.3.10.so.1
312
lib/libmicoir2.3.10.a
300
lib/libmicoir2.3.10.a
313
lib/libmicoir2.3.10.so
301
lib/libmicoir2.3.10.so
314
lib/libmicoqt.2.3.10.so
302
lib/libmicoir2.3.10.so.1
315
lib/libmicotcl.2.3.10.so
303
%%MICO_QT%%lib/libmicoqt2.3.10.a
316
lib/libmicox.2.3.10.so
304
%%MICO_QT%%lib/libmicoqt2.3.10.so
305
%%MICO_QT%%lib/libmicoqt2.3.10.so.1
306
%%MICO_TCL%%lib/libmicotcl2.3.10.a
307
%%MICO_TCL%%lib/libmicotcl2.3.10.so
308
%%MICO_TCL%%lib/libmicotcl2.3.10.so.1
309
%%MICO_X11%%lib/libmicox2.3.10.a
310
%%MICO_X11%%lib/libmicox2.3.10.so
311
%%MICO_X11%%lib/libmicox2.3.10.so.1
317
lib/mico-setup.csh
312
lib/mico-setup.csh
318
lib/mico-setup.sh
313
lib/mico-setup.sh
319
share/doc/mico/examples/MakeVars
314
%%PORTDOCS%%share/doc/mico/html/WARNINGS
320
share/doc/mico/examples/README
315
%%PORTDOCS%%share/doc/mico/html/doc.css
321
share/doc/mico/examples/bench/Makefile
316
%%PORTDOCS%%share/doc/mico/html/doc.html
322
share/doc/mico/examples/bench/bench
317
%%PORTDOCS%%share/doc/mico/html/footnode.html
323
share/doc/mico/examples/bench/bench.idl
318
%%PORTDOCS%%share/doc/mico/html/images.aux
324
share/doc/mico/examples/bench/bench_impl.h
319
%%PORTDOCS%%share/doc/mico/html/images.bbl
325
share/doc/mico/examples/bench/client.cc
320
%%PORTDOCS%%share/doc/mico/html/images.log
326
share/doc/mico/examples/bench/server.cc
321
%%PORTDOCS%%share/doc/mico/html/images.pl
327
share/doc/mico/examples/boa/Makefile
322
%%PORTDOCS%%share/doc/mico/html/images.tex
328
share/doc/mico/examples/boa/README
323
%%PORTDOCS%%share/doc/mico/html/img1.gif
329
share/doc/mico/examples/boa/account/Makefile
324
%%PORTDOCS%%share/doc/mico/html/img10.gif
330
share/doc/mico/examples/boa/account/account.idl
325
%%PORTDOCS%%share/doc/mico/html/img11.gif
331
share/doc/mico/examples/boa/account/main.cc
326
%%PORTDOCS%%share/doc/mico/html/img12.gif
332
share/doc/mico/examples/boa/account2/Makefile
327
%%PORTDOCS%%share/doc/mico/html/img13.gif
333
share/doc/mico/examples/boa/account2/account
328
%%PORTDOCS%%share/doc/mico/html/img14.gif
334
share/doc/mico/examples/boa/account2/account.idl
329
%%PORTDOCS%%share/doc/mico/html/img15.gif
335
share/doc/mico/examples/boa/account2/client.cc
330
%%PORTDOCS%%share/doc/mico/html/img16.gif
336
share/doc/mico/examples/boa/account2/server.cc
331
%%PORTDOCS%%share/doc/mico/html/img17.gif
337
share/doc/mico/examples/boa/account3/Makefile
332
%%PORTDOCS%%share/doc/mico/html/img18.gif
338
share/doc/mico/examples/boa/account3/account
333
%%PORTDOCS%%share/doc/mico/html/img19.gif
339
share/doc/mico/examples/boa/account3/account.idl
334
%%PORTDOCS%%share/doc/mico/html/img2.gif
340
share/doc/mico/examples/boa/account3/client.cc
335
%%PORTDOCS%%share/doc/mico/html/img20.gif
341
share/doc/mico/examples/boa/account3/server.cc
336
%%PORTDOCS%%share/doc/mico/html/img21.gif
342
share/doc/mico/examples/boa/account4/Makefile
337
%%PORTDOCS%%share/doc/mico/html/img22.gif
343
share/doc/mico/examples/boa/account4/account
338
%%PORTDOCS%%share/doc/mico/html/img23.gif
344
share/doc/mico/examples/boa/account4/account.idl
339
%%PORTDOCS%%share/doc/mico/html/img24.gif
345
share/doc/mico/examples/boa/account4/client.cc
340
%%PORTDOCS%%share/doc/mico/html/img3.gif
346
share/doc/mico/examples/boa/account4/server.cc
341
%%PORTDOCS%%share/doc/mico/html/img4.gif
347
share/doc/mico/examples/boa/activate/Makefile
342
%%PORTDOCS%%share/doc/mico/html/img5.gif
348
share/doc/mico/examples/boa/activate/client.cc
343
%%PORTDOCS%%share/doc/mico/html/img6.gif
349
share/doc/mico/examples/boa/activate/hello-permethod
344
%%PORTDOCS%%share/doc/mico/html/img7.gif
350
share/doc/mico/examples/boa/activate/hello-shared
345
%%PORTDOCS%%share/doc/mico/html/img8.gif
351
share/doc/mico/examples/boa/activate/hello-unshared
346
%%PORTDOCS%%share/doc/mico/html/img9.gif
352
share/doc/mico/examples/boa/activate/hello.idl
347
%%PORTDOCS%%share/doc/mico/html/index.html
353
share/doc/mico/examples/boa/activate/server.cc
348
%%PORTDOCS%%share/doc/mico/html/internals.pl
354
share/doc/mico/examples/codesets/Makefile
349
%%PORTDOCS%%share/doc/mico/html/labels.pl
355
share/doc/mico/examples/codesets/client.cc
350
%%PORTDOCS%%share/doc/mico/html/node1.html
356
share/doc/mico/examples/codesets/hello.idl
351
%%PORTDOCS%%share/doc/mico/html/node10.html
357
share/doc/mico/examples/codesets/runit
352
%%PORTDOCS%%share/doc/mico/html/node11.html
358
share/doc/mico/examples/codesets/server.cc
353
%%PORTDOCS%%share/doc/mico/html/node12.html
359
share/doc/mico/examples/dispatcher/README
354
%%PORTDOCS%%share/doc/mico/html/node13.html
360
share/doc/mico/examples/dispatcher/Makefile
355
%%PORTDOCS%%share/doc/mico/html/node14.html
361
share/doc/mico/examples/dynany/Makefile
356
%%PORTDOCS%%share/doc/mico/html/node15.html
362
share/doc/mico/examples/dynany/dynany.cc
357
%%PORTDOCS%%share/doc/mico/html/node16.html
363
share/doc/mico/examples/dynany/dynanytest.cc
358
%%PORTDOCS%%share/doc/mico/html/node17.html
364
share/doc/mico/examples/dynany/test.idl
359
%%PORTDOCS%%share/doc/mico/html/node18.html
365
share/doc/mico/examples/generic/Makefile
360
%%PORTDOCS%%share/doc/mico/html/node19.html
366
share/doc/mico/examples/generic/client.cc
361
%%PORTDOCS%%share/doc/mico/html/node2.html
367
share/doc/mico/examples/generic/run_test
362
%%PORTDOCS%%share/doc/mico/html/node20.html
368
share/doc/mico/examples/generic/server.cc
363
%%PORTDOCS%%share/doc/mico/html/node21.html
369
share/doc/mico/examples/generic/test.idl
364
%%PORTDOCS%%share/doc/mico/html/node22.html
370
share/doc/mico/examples/generic/test_cases
365
%%PORTDOCS%%share/doc/mico/html/node23.html
371
share/doc/mico/examples/henning/README
366
%%PORTDOCS%%share/doc/mico/html/node24.html
372
share/doc/mico/examples/henning/diffs
367
%%PORTDOCS%%share/doc/mico/html/node25.html
373
share/doc/mico/examples/interceptor/Makefile
368
%%PORTDOCS%%share/doc/mico/html/node26.html
374
share/doc/mico/examples/interceptor/client.cc
369
%%PORTDOCS%%share/doc/mico/html/node27.html
375
share/doc/mico/examples/interceptor/hello.idl
370
%%PORTDOCS%%share/doc/mico/html/node28.html
376
share/doc/mico/examples/interceptor/runit
371
%%PORTDOCS%%share/doc/mico/html/node29.html
377
share/doc/mico/examples/interceptor/server.cc
372
%%PORTDOCS%%share/doc/mico/html/node3.html
378
share/doc/mico/examples/interop/Makefile
373
%%PORTDOCS%%share/doc/mico/html/node30.html
379
share/doc/mico/examples/interop/README
374
%%PORTDOCS%%share/doc/mico/html/node31.html
380
share/doc/mico/examples/interop/jacorb/Account.idl
375
%%PORTDOCS%%share/doc/mico/html/node32.html
381
share/doc/mico/examples/interop/jacorb/Client.java
376
%%PORTDOCS%%share/doc/mico/html/node33.html
382
share/doc/mico/examples/interop/jacorb/ClientApplet.html.in
377
%%PORTDOCS%%share/doc/mico/html/node34.html
383
share/doc/mico/examples/interop/jacorb/ClientApplet.java
378
%%PORTDOCS%%share/doc/mico/html/node35.html
384
share/doc/mico/examples/interop/jacorb/Makefile
379
%%PORTDOCS%%share/doc/mico/html/node36.html
385
share/doc/mico/examples/interop/jacorb/README
380
%%PORTDOCS%%share/doc/mico/html/node37.html
386
share/doc/mico/examples/interop/jacorb/Server.java
381
%%PORTDOCS%%share/doc/mico/html/node38.html
387
share/doc/mico/examples/interop/jacorb/account
382
%%PORTDOCS%%share/doc/mico/html/node39.html
388
share/doc/mico/examples/interop/jacorb/client.cc
383
%%PORTDOCS%%share/doc/mico/html/node4.html
389
share/doc/mico/examples/interop/jacorb/run_applet
384
%%PORTDOCS%%share/doc/mico/html/node40.html
390
share/doc/mico/examples/interop/jacorb/server.cc
385
%%PORTDOCS%%share/doc/mico/html/node41.html
391
share/doc/mico/examples/interop/jboss/Makefile
386
%%PORTDOCS%%share/doc/mico/html/node42.html
392
share/doc/mico/examples/interop/jboss/README
387
%%PORTDOCS%%share/doc/mico/html/node43.html
393
share/doc/mico/examples/interop/jboss/jdk1.3.x/Makefile
388
%%PORTDOCS%%share/doc/mico/html/node44.html
394
share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/META-INF/ejb-jar.xml
389
%%PORTDOCS%%share/doc/mico/html/node5.html
395
share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/META-INF/jboss.xml
390
%%PORTDOCS%%share/doc/mico/html/node6.html
396
share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/Makefile
391
%%PORTDOCS%%share/doc/mico/html/node7.html
397
share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/client.cc
392
%%PORTDOCS%%share/doc/mico/html/node8.html
398
share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/examples/BookException.java
393
%%PORTDOCS%%share/doc/mico/html/node9.html
399
share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/examples/Cart.java
394
%%PORTDOCS%%share/doc/mico/manual.ps
400
share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/examples/CartBean.java
395
%%PORTDOCS%%share/examples/mico/MakeVars
401
share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/examples/CartHome.java
396
%%PORTDOCS%%share/examples/mico/README
402
share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/examples/IdVerifier.java
397
%%PORTDOCS%%share/examples/mico/bench/Makefile
403
share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/run-client
398
%%PORTDOCS%%share/examples/mico/bench/bench
404
share/doc/mico/examples/interop/jboss/jdk1.3.x/converter-ejb/META-INF/ejb-jar.xml
399
%%PORTDOCS%%share/examples/mico/bench/bench.idl
405
share/doc/mico/examples/interop/jboss/jdk1.3.x/converter-ejb/META-INF/jboss.xml
400
%%PORTDOCS%%share/examples/mico/bench/bench_impl.h
406
share/doc/mico/examples/interop/jboss/jdk1.3.x/converter-ejb/Makefile
401
%%PORTDOCS%%share/examples/mico/bench/client.cc
407
share/doc/mico/examples/interop/jboss/jdk1.3.x/converter-ejb/client.cc
402
%%PORTDOCS%%share/examples/mico/bench/server.cc
408
share/doc/mico/examples/interop/jboss/jdk1.3.x/converter-ejb/examples/Converter.java
403
%%PORTDOCS%%share/examples/mico/boa/Makefile
409
share/doc/mico/examples/interop/jboss/jdk1.3.x/converter-ejb/examples/ConverterBean.java
404
%%PORTDOCS%%share/examples/mico/boa/README
410
share/doc/mico/examples/interop/jboss/jdk1.3.x/converter-ejb/examples/ConverterHome.java
405
%%PORTDOCS%%share/examples/mico/boa/account/Makefile
411
share/doc/mico/examples/interop/jboss/jdk1.3.x/converter-ejb/run-client
406
%%PORTDOCS%%share/examples/mico/boa/account/account.idl
412
share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/META-INF/ejb-jar.xml
407
%%PORTDOCS%%share/examples/mico/boa/account/main.cc
413
share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/META-INF/jboss.xml
408
%%PORTDOCS%%share/examples/mico/boa/account2/Makefile
414
share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/Makefile
409
%%PORTDOCS%%share/examples/mico/boa/account2/account
415
share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/client.cc
410
%%PORTDOCS%%share/examples/mico/boa/account2/account.idl
416
share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples/CorbaFriendlySession.java
411
%%PORTDOCS%%share/examples/mico/boa/account2/client.cc
417
share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples/CorbaFriendlySessionBean.java
412
%%PORTDOCS%%share/examples/mico/boa/account2/server.cc
418
share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples/CorbaFriendlySessionHome.java
413
%%PORTDOCS%%share/examples/mico/boa/account3/Makefile
419
share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples/corba/DataObject.idl
414
%%PORTDOCS%%share/examples/mico/boa/account3/account
420
share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/run-client
415
%%PORTDOCS%%share/examples/mico/boa/account3/account.idl
421
share/doc/mico/examples/interop/jboss/jdk1.3.x/setenv.sh
416
%%PORTDOCS%%share/examples/mico/boa/account3/client.cc
422
share/doc/mico/examples/interop/jboss/jdk1.4.x/Makefile
417
%%PORTDOCS%%share/examples/mico/boa/account3/server.cc
423
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/META-INF/ejb-jar.xml
418
%%PORTDOCS%%share/examples/mico/boa/account4/Makefile
424
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/META-INF/jboss.xml
419
%%PORTDOCS%%share/examples/mico/boa/account4/account
425
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/Makefile
420
%%PORTDOCS%%share/examples/mico/boa/account4/account.idl
426
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/client.cc
421
%%PORTDOCS%%share/examples/mico/boa/account4/client.cc
427
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/examples/BookException.java
422
%%PORTDOCS%%share/examples/mico/boa/account4/server.cc
428
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/examples/Cart.java
423
%%PORTDOCS%%share/examples/mico/boa/activate/Makefile
429
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/examples/CartBean.java
424
%%PORTDOCS%%share/examples/mico/boa/activate/client.cc
430
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/examples/CartHome.java
425
%%PORTDOCS%%share/examples/mico/boa/activate/hello-permethod
431
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/examples/IdVerifier.java
426
%%PORTDOCS%%share/examples/mico/boa/activate/hello-shared
432
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/jdk1.4-Throwable/StackTraceElement.idl
427
%%PORTDOCS%%share/examples/mico/boa/activate/hello-unshared
433
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/jdk1.4-Throwable/Throwable.idl
428
%%PORTDOCS%%share/examples/mico/boa/activate/hello.idl
434
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/jdk1.4-Throwable/seq1_StackTraceElement.idl
429
%%PORTDOCS%%share/examples/mico/boa/activate/server.cc
435
share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/run-client
430
%%PORTDOCS%%share/examples/mico/ccm/Makefile
436
share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/META-INF/ejb-jar.xml
431
%%PORTDOCS%%share/examples/mico/ccm/events/Makefile
437
share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/META-INF/jboss.xml
432
%%PORTDOCS%%share/examples/mico/ccm/events/README
438
share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/Makefile
433
%%PORTDOCS%%share/examples/mico/ccm/events/channel.idl
439
share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/client.cc
434
%%PORTDOCS%%share/examples/mico/ccm/events/channel_impl.cc
440
share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/examples/Converter.java
435
%%PORTDOCS%%share/examples/mico/ccm/events/client.cc
441
share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/examples/ConverterBean.java
436
%%PORTDOCS%%share/examples/mico/ccm/events/consumer.idl
442
share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/examples/ConverterHome.java
437
%%PORTDOCS%%share/examples/mico/ccm/events/consumer_impl.cc
443
share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/jdk1.4-Throwable/StackTraceElement.idl
438
%%PORTDOCS%%share/examples/mico/ccm/events/events
444
share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/jdk1.4-Throwable/Throwable.idl
439
%%PORTDOCS%%share/examples/mico/ccm/events/message.idl
445
share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/jdk1.4-Throwable/seq1_StackTraceElement.idl
440
%%PORTDOCS%%share/examples/mico/ccm/events/message_impl.cc
446
share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/run-client
441
%%PORTDOCS%%share/examples/mico/ccm/events/message_impl.h
447
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/META-INF/ejb-jar.xml
442
%%PORTDOCS%%share/examples/mico/ccm/events/producer.idl
448
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/META-INF/jboss.xml
443
%%PORTDOCS%%share/examples/mico/ccm/events/producer_impl.cc
449
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/Makefile
444
%%PORTDOCS%%share/examples/mico/ccm/hello/Makefile
450
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/client.cc
445
%%PORTDOCS%%share/examples/mico/ccm/hello/README
451
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/CorbaFriendlySession.cc.saved
446
%%PORTDOCS%%share/examples/mico/ccm/hello/client.cc
452
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/CorbaFriendlySession.h.saved
447
%%PORTDOCS%%share/examples/mico/ccm/hello/hello
453
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/CorbaFriendlySession.java
448
%%PORTDOCS%%share/examples/mico/ccm/hello/hello.idl
454
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/CorbaFriendlySessionBean.java
449
%%PORTDOCS%%share/examples/mico/ccm/hello/hello_impl.cc
455
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/CorbaFriendlySessionHome.java
450
%%PORTDOCS%%share/examples/mico/ccm/hello2/Makefile
456
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/corba/DataObject.idl
451
%%PORTDOCS%%share/examples/mico/ccm/hello2/README
457
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/jdk1.4-Throwable/StackTraceElement.idl
452
%%PORTDOCS%%share/examples/mico/ccm/hello2/client.cc
458
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/jdk1.4-Throwable/Throwable.idl
453
%%PORTDOCS%%share/examples/mico/ccm/hello2/hello
459
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/jdk1.4-Throwable/seq1_StackTraceElement.idl
454
%%PORTDOCS%%share/examples/mico/ccm/hello2/hello.idl
460
share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/run-client
455
%%PORTDOCS%%share/examples/mico/ccm/hello2/hello_impl.cc
461
share/doc/mico/examples/interop/jboss/jdk1.4.x/setenv.sh
456
%%PORTDOCS%%share/examples/mico/ccm/philo/Makefile
462
share/doc/mico/examples/interop/jdk/Account.idl
457
%%PORTDOCS%%share/examples/mico/ccm/philo/README
463
share/doc/mico/examples/interop/jdk/Client.java
458
%%PORTDOCS%%share/examples/mico/ccm/philo/client.cc
464
share/doc/mico/examples/interop/jdk/ClientApplet.html.in
459
%%PORTDOCS%%share/examples/mico/ccm/philo/philo
465
share/doc/mico/examples/interop/jdk/ClientApplet.java
460
%%PORTDOCS%%share/examples/mico/ccm/philo/philo.idl
466
share/doc/mico/examples/interop/jdk/Makefile
461
%%PORTDOCS%%share/examples/mico/ccm/philo/philo_impl.cc
467
share/doc/mico/examples/interop/jdk/README
462
%%PORTDOCS%%share/examples/mico/ccm/philo/tkobserver.cc
468
share/doc/mico/examples/interop/jdk/account
463
%%PORTDOCS%%share/examples/mico/codesets/Makefile
469
share/doc/mico/examples/interop/jdk/main.cc
464
%%PORTDOCS%%share/examples/mico/codesets/client.cc
470
share/doc/mico/examples/interop/jdk/run_applet
465
%%PORTDOCS%%share/examples/mico/codesets/hello.idl
471
share/doc/mico/examples/interop/orbix/Makefile
466
%%PORTDOCS%%share/examples/mico/codesets/runit
472
share/doc/mico/examples/interop/orbix/README
467
%%PORTDOCS%%share/examples/mico/codesets/server.cc
473
share/doc/mico/examples/interop/orbix/grid.idl
468
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/Makefile
474
share/doc/mico/examples/interop/orbix/main.cc
469
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/README
475
share/doc/mico/examples/interop/visibroker/Account.idl
470
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/hello-1/Makefile
476
share/doc/mico/examples/interop/visibroker/Client.java
471
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/hello-1/client.cc
477
share/doc/mico/examples/interop/visibroker/ClientApplet.html.in
472
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/hello-1/hello
478
share/doc/mico/examples/interop/visibroker/ClientApplet.java
473
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/hello-1/hello.idl
479
share/doc/mico/examples/interop/visibroker/Makefile
474
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/hello-1/server.cc
480
share/doc/mico/examples/interop/visibroker/README
475
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/identity-1/Makefile
481
share/doc/mico/examples/interop/visibroker/account
476
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/identity-1/client.cc
482
share/doc/mico/examples/interop/visibroker/main.cc
477
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/identity-1/hello
483
share/doc/mico/examples/interop/visibroker/run_applet
478
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/identity-1/hello.idl
484
share/doc/mico/examples/mcast/Makefile
479
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/identity-1/server.cc
485
share/doc/mico/examples/mcast/client.cc
480
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/Makefile
486
share/doc/mico/examples/mcast/hello.idl
481
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/README
487
share/doc/mico/examples/mcast/runit
482
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/InterOpTest.idl
488
share/doc/mico/examples/mcast/server.cc
483
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/Makefile
489
share/doc/mico/examples/obv/Makefile
484
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/c_cert.pem
490
share/doc/mico/examples/obv/README
485
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/c_key.pem
491
share/doc/mico/examples/obv/abstract/Makefile
486
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/ca_cert.pem
492
share/doc/mico/examples/obv/abstract/README
487
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/client.cc
493
share/doc/mico/examples/obv/abstract/abstract
488
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/client2.cc
494
share/doc/mico/examples/obv/abstract/abstract.idl
489
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/get_iors.sh
495
share/doc/mico/examples/obv/abstract/abstract_impl.h
490
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/iiop_csiv2_extedned_hello.sh
496
share/doc/mico/examples/obv/abstract/client.cc
491
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/iiop_csiv2_hello.sh
497
share/doc/mico/examples/obv/abstract/server.cc
492
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/iiop_hello.sh
498
share/doc/mico/examples/obv/custom/Makefile
493
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/run.sh
499
share/doc/mico/examples/obv/custom/README
494
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/s_cert.pem
500
share/doc/mico/examples/obv/custom/custom
495
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/s_key.pem
501
share/doc/mico/examples/obv/custom/custom.idl
496
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/server.cc
502
share/doc/mico/examples/obv/custom/custom_impl.cc
497
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/tls_csiv2_extedned_hello.sh
503
share/doc/mico/examples/obv/custom/custom_impl.h
498
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/tls_csiv2_hello.sh
504
share/doc/mico/examples/obv/custom/test.cc
499
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/interop/adiron/tls_hello.sh
505
share/doc/mico/examples/obv/date/Makefile
500
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-1/Makefile
506
share/doc/mico/examples/obv/date/calendar.idl
501
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-1/c_cert.pem
507
share/doc/mico/examples/obv/date/client.cc
502
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-1/c_key.pem
508
share/doc/mico/examples/obv/date/date
503
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-1/ca_cert.pem
509
share/doc/mico/examples/obv/date/date.idl
504
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-1/client.cc
510
share/doc/mico/examples/obv/date/date_impl.cc
505
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-1/hello
511
share/doc/mico/examples/obv/date/date_impl.h
506
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-1/hello.idl
512
share/doc/mico/examples/obv/date/server.cc
507
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-1/s_cert.pem
513
share/doc/mico/examples/obv/tree/Makefile
508
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-1/s_key.pem
514
share/doc/mico/examples/obv/tree/client.cc
509
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-1/server.cc
515
share/doc/mico/examples/obv/tree/server.cc
510
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-2/Makefile
516
share/doc/mico/examples/obv/tree/tree
511
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-2/c_cert.pem
517
share/doc/mico/examples/obv/tree/tree.idl
512
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-2/c_key.pem
518
share/doc/mico/examples/obv/tree/tree_impl.cc
513
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-2/ca_cert.pem
519
share/doc/mico/examples/obv/tree/tree_impl.h
514
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-2/client.cc
520
share/doc/mico/examples/obv/tricky/Makefile
515
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-2/hello
521
share/doc/mico/examples/obv/tricky/client.cc
516
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-2/hello.idl
522
share/doc/mico/examples/obv/tricky/server.cc
517
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-2/s_cert.pem
523
share/doc/mico/examples/obv/tricky/tricky
518
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-2/s_key.pem
524
share/doc/mico/examples/obv/tricky/tricky.idl
519
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-hello-2/server.cc
525
share/doc/mico/examples/obv/tricky/tricky_impl.cc
520
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-identity-1/Makefile
526
share/doc/mico/examples/obv/tricky/tricky_impl.h
521
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-identity-1/c_cert.pem
527
share/doc/mico/examples/pi/Makefile
522
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-identity-1/c_key.pem
528
share/doc/mico/examples/pi/README
523
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-identity-1/ca_cert.pem
529
share/doc/mico/examples/pi/current/Makefile
524
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-identity-1/client.cc
530
share/doc/mico/examples/pi/current/client.cc
525
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-identity-1/hello
531
share/doc/mico/examples/pi/current/hello
526
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-identity-1/hello.idl
532
share/doc/mico/examples/pi/current/hello.idl
527
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-identity-1/s_cert.pem
533
share/doc/mico/examples/pi/current/server.cc
528
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-identity-1/s_key.pem
534
share/doc/mico/examples/pi/dii/Makefile
529
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/csiv2/tls-identity-1/server.cc
535
share/doc/mico/examples/pi/dii/diiclient.cc
530
%%PORTDOCS%%share/examples/mico/dispatcher/Makefile
536
share/doc/mico/examples/pi/dii/diiserver.cc
531
%%PORTDOCS%%share/examples/mico/dispatcher/README
537
share/doc/mico/examples/pi/dii/rundiic
532
%%PORTDOCS%%%%MICO_GTK%%share/examples/mico/dispatcher/gtkmico/Makefile
538
share/doc/mico/examples/pi/dii/rundiis
533
%%PORTDOCS%%%%MICO_GTK%%share/examples/mico/dispatcher/gtkmico/README
539
share/doc/mico/examples/pi/dii/runit
534
%%PORTDOCS%%%%MICO_GTK%%share/examples/mico/dispatcher/gtkmico/client.cc
540
share/doc/mico/examples/pi/poa/Makefile
535
%%PORTDOCS%%%%MICO_GTK%%share/examples/mico/dispatcher/gtkmico/gtkhello
541
share/doc/mico/examples/pi/poa/account
536
%%PORTDOCS%%%%MICO_GTK%%share/examples/mico/dispatcher/gtkmico/hello.idl
542
share/doc/mico/examples/pi/poa/account.idl
537
%%PORTDOCS%%%%MICO_GTK%%share/examples/mico/dispatcher/gtkmico/server.cc
543
share/doc/mico/examples/pi/poa/client.cc
538
%%PORTDOCS%%%%MICO_QT%%share/examples/mico/dispatcher/qtmico/Makefile
544
share/doc/mico/examples/pi/poa/collocated.cc
539
%%PORTDOCS%%%%MICO_QT%%share/examples/mico/dispatcher/qtmico/README
545
share/doc/mico/examples/pi/poa/server.cc
540
%%PORTDOCS%%%%MICO_QT%%share/examples/mico/dispatcher/qtmico/client.cc
546
share/doc/mico/examples/pi/poa2/Makefile
541
%%PORTDOCS%%%%MICO_QT%%share/examples/mico/dispatcher/qtmico/hello.idl
547
share/doc/mico/examples/pi/poa2/account
542
%%PORTDOCS%%%%MICO_QT%%share/examples/mico/dispatcher/qtmico/qthello1
548
share/doc/mico/examples/pi/poa2/account.idl
543
%%PORTDOCS%%%%MICO_QT%%share/examples/mico/dispatcher/qtmico/qthello2
549
share/doc/mico/examples/pi/poa2/client.cc
544
%%PORTDOCS%%%%MICO_QT%%share/examples/mico/dispatcher/qtmico/server.cc
550
share/doc/mico/examples/pi/poa2/server.cc
545
%%PORTDOCS%%%%MICO_X11%%share/examples/mico/dispatcher/x11/Makefile
551
share/doc/mico/examples/poa/Makefile
546
%%PORTDOCS%%%%MICO_X11%%share/examples/mico/dispatcher/x11/client.cc
552
share/doc/mico/examples/poa/README
547
%%PORTDOCS%%%%MICO_X11%%share/examples/mico/dispatcher/x11/hello.idl
553
share/doc/mico/examples/poa/account-1/Makefile
548
%%PORTDOCS%%%%MICO_X11%%share/examples/mico/dispatcher/x11/server.cc
554
share/doc/mico/examples/poa/account-1/account
549
%%PORTDOCS%%%%MICO_X11%%share/examples/mico/dispatcher/x11/xhello
555
share/doc/mico/examples/poa/account-1/account.idl
550
%%PORTDOCS%%share/examples/mico/dynany/Makefile
556
share/doc/mico/examples/poa/account-1/client.cc
551
%%PORTDOCS%%share/examples/mico/dynany/dynany.cc
557
share/doc/mico/examples/poa/account-1/server.cc
552
%%PORTDOCS%%share/examples/mico/dynany/dynanytest.cc
558
share/doc/mico/examples/poa/account-2/Makefile
553
%%PORTDOCS%%share/examples/mico/dynany/test.idl
559
share/doc/mico/examples/poa/account-2/account
554
%%PORTDOCS%%share/examples/mico/generic/Makefile
560
share/doc/mico/examples/poa/account-2/account.idl
555
%%PORTDOCS%%share/examples/mico/generic/client.cc
561
share/doc/mico/examples/poa/account-2/client.cc
556
%%PORTDOCS%%share/examples/mico/generic/run_test
562
share/doc/mico/examples/poa/account-2/server.cc
557
%%PORTDOCS%%share/examples/mico/generic/server.cc
563
share/doc/mico/examples/poa/account-3/Makefile
558
%%PORTDOCS%%share/examples/mico/generic/test.idl
564
share/doc/mico/examples/poa/account-3/account
559
%%PORTDOCS%%share/examples/mico/generic/test_cases
565
share/doc/mico/examples/poa/account-3/account.idl
560
%%PORTDOCS%%share/examples/mico/henning/README
566
share/doc/mico/examples/poa/account-3/client.cc
561
%%PORTDOCS%%share/examples/mico/henning/diffs
567
share/doc/mico/examples/poa/account-3/server.cc
562
%%PORTDOCS%%share/examples/mico/interceptor/Makefile
568
share/doc/mico/examples/poa/hello-1/Makefile
563
%%PORTDOCS%%share/examples/mico/interceptor/client.cc
569
share/doc/mico/examples/poa/hello-1/client.cc
564
%%PORTDOCS%%share/examples/mico/interceptor/hello.idl
570
share/doc/mico/examples/poa/hello-1/hello
565
%%PORTDOCS%%share/examples/mico/interceptor/runit
571
share/doc/mico/examples/poa/hello-1/hello.idl
566
%%PORTDOCS%%share/examples/mico/interceptor/server.cc
572
share/doc/mico/examples/poa/hello-1/server.cc
567
%%PORTDOCS%%share/examples/mico/interop/Makefile
573
share/doc/mico/examples/poa/hello-2/Makefile
568
%%PORTDOCS%%share/examples/mico/interop/README
574
share/doc/mico/examples/poa/hello-2/client.cc
569
%%PORTDOCS%%share/examples/mico/interop/jacorb/Account.idl
575
share/doc/mico/examples/poa/hello-2/hello
570
%%PORTDOCS%%share/examples/mico/interop/jacorb/Client.java
576
share/doc/mico/examples/poa/hello-2/hello.idl
571
%%PORTDOCS%%share/examples/mico/interop/jacorb/ClientApplet.html.in
577
share/doc/mico/examples/poa/hello-2/server.cc
572
%%PORTDOCS%%share/examples/mico/interop/jacorb/ClientApplet.java
578
share/doc/mico/examples/poa/inherit/Makefile
573
%%PORTDOCS%%share/examples/mico/interop/jacorb/Makefile
579
share/doc/mico/examples/poa/inherit/client.cc
574
%%PORTDOCS%%share/examples/mico/interop/jacorb/README
580
share/doc/mico/examples/poa/inherit/inherit
575
%%PORTDOCS%%share/examples/mico/interop/jacorb/Server.java
581
share/doc/mico/examples/poa/inherit/inherit.idl
576
%%PORTDOCS%%share/examples/mico/interop/jacorb/account
582
share/doc/mico/examples/poa/inherit/server.cc
577
%%PORTDOCS%%share/examples/mico/interop/jacorb/client.cc
583
share/doc/mico/examples/random/Makefile
578
%%PORTDOCS%%share/examples/mico/interop/jacorb/run_applet
584
share/doc/mico/examples/random/client.cc
579
%%PORTDOCS%%share/examples/mico/interop/jacorb/server.cc
585
share/doc/mico/examples/random/random.idl
580
%%PORTDOCS%%share/examples/mico/interop/jboss/Makefile
586
share/doc/mico/examples/redlich/Calc-1/Makefile
581
%%PORTDOCS%%share/examples/mico/interop/jboss/README
587
share/doc/mico/examples/redlich/Calc-1/calc.idl
582
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/Makefile
588
share/doc/mico/examples/redlich/Calc-1/client.cc
583
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/META-INF/ejb-jar.xml
589
share/doc/mico/examples/redlich/Calc-1/server.cc
584
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/META-INF/jboss.xml
590
share/doc/mico/examples/redlich/Calc-2/Makefile
585
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/Makefile
591
share/doc/mico/examples/redlich/Calc-2/calc.idl
586
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/client.cc
592
share/doc/mico/examples/redlich/Calc-2/client.cc
587
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/examples/BookException.java
593
share/doc/mico/examples/redlich/Calc-2/server.cc
588
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/examples/Cart.java
594
share/doc/mico/examples/redlich/Calc-3/Makefile
589
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/examples/CartBean.java
595
share/doc/mico/examples/redlich/Calc-3/calc.idl
590
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/examples/CartHome.java
596
share/doc/mico/examples/redlich/Calc-3/client.cc
591
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/examples/IdVerifier.java
597
share/doc/mico/examples/redlich/Calc-3/server.cc
592
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/run-client
598
share/doc/mico/examples/redlich/Calc-4/Makefile
593
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/converter-ejb/META-INF/ejb-jar.xml
599
share/doc/mico/examples/redlich/Calc-4/calc.idl
594
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/converter-ejb/META-INF/jboss.xml
600
share/doc/mico/examples/redlich/Calc-4/client.cc
595
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/converter-ejb/Makefile
601
share/doc/mico/examples/redlich/Calc-4/server.cc
596
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/converter-ejb/client.cc
602
share/doc/mico/examples/redlich/Hello-1/Makefile
597
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/converter-ejb/examples/Converter.java
603
share/doc/mico/examples/redlich/Hello-1/client.cc
598
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/converter-ejb/examples/ConverterBean.java
604
share/doc/mico/examples/redlich/Hello-1/server.cc
599
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/converter-ejb/examples/ConverterHome.java
605
share/doc/mico/examples/redlich/Hello-1/tty.idl
600
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/converter-ejb/run-client
606
share/doc/mico/examples/redlich/Hello-2/Makefile
601
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/META-INF/ejb-jar.xml
607
share/doc/mico/examples/redlich/Hello-2/client.cc
602
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/META-INF/jboss.xml
608
share/doc/mico/examples/redlich/Hello-2/server.cc
603
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/Makefile
609
share/doc/mico/examples/redlich/Hello-2/tty.idl
604
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/client.cc
610
share/doc/mico/examples/redlich/Hello-3/Makefile
605
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples/CorbaFriendlySession.java
611
share/doc/mico/examples/redlich/Hello-3/client.cc
606
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples/CorbaFriendlySessionBean.java
612
share/doc/mico/examples/redlich/Hello-3/server.cc
607
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples/CorbaFriendlySessionHome.java
613
share/doc/mico/examples/redlich/Hello-3/tty.idl
608
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples/corba/DataObject.idl
614
share/doc/mico/examples/redlich/Hello-3/ttyplus.idl
609
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/run-client
615
share/doc/mico/examples/redlich/Hello-4/Makefile
610
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.3.x/setenv.sh
616
share/doc/mico/examples/redlich/Hello-4/client.cc
611
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/Makefile
617
share/doc/mico/examples/redlich/Hello-4/server.cc
612
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/META-INF/ejb-jar.xml
618
share/doc/mico/examples/redlich/Hello-4/tty.idl
613
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/META-INF/jboss.xml
619
share/doc/mico/examples/redlich/Hello-4/ttyplus.idl
614
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/Makefile
620
share/doc/mico/examples/redlich/Makefile
615
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/client.cc
621
share/doc/mico/examples/redlich/README
616
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/examples/BookException.java
622
share/doc/mico/examples/services/Makefile
617
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/examples/Cart.java
623
share/doc/mico/examples/services/README
618
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/examples/CartBean.java
624
share/doc/mico/examples/services/events/Makefile
619
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/examples/CartHome.java
625
share/doc/mico/examples/services/events/client.cc
620
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/examples/IdVerifier.java
626
share/doc/mico/examples/services/events/client2.cc
621
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/jdk1.4-Throwable/StackTraceElement.idl
627
share/doc/mico/examples/services/events/runit
622
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/jdk1.4-Throwable/Throwable.idl
628
share/doc/mico/examples/services/events/server.cc
623
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/jdk1.4-Throwable/seq1_StackTraceElement.idl
629
share/doc/mico/examples/services/events/server2.cc
624
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/run-client
630
share/doc/mico/examples/services/events/server3.cc
625
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/META-INF/ejb-jar.xml
631
share/doc/mico/examples/services/naming-lb/Client.cc
626
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/META-INF/jboss.xml
632
share/doc/mico/examples/services/naming-lb/Makefile
627
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/Makefile
633
share/doc/mico/examples/services/naming-lb/Printer.idl
628
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/client.cc
634
share/doc/mico/examples/services/naming-lb/Printer_impl.cc
629
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/examples/Converter.java
635
share/doc/mico/examples/services/naming-lb/Printer_impl.h
630
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/examples/ConverterBean.java
636
share/doc/mico/examples/services/naming-lb/Server.cc
631
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/examples/ConverterHome.java
637
share/doc/mico/examples/services/naming-lb/printer_test
632
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/jdk1.4-Throwable/StackTraceElement.idl
638
share/doc/mico/examples/services/naming/Makefile
633
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/jdk1.4-Throwable/Throwable.idl
639
share/doc/mico/examples/services/naming/account.idl
634
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/jdk1.4-Throwable/seq1_StackTraceElement.idl
640
share/doc/mico/examples/services/naming/account_test
635
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/run-client
641
share/doc/mico/examples/services/naming/client.cc
636
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/META-INF/ejb-jar.xml
642
share/doc/mico/examples/services/naming/server.cc
637
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/META-INF/jboss.xml
643
share/doc/mico/examples/services/property-daemon/Makefile
638
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/Makefile
644
share/doc/mico/examples/services/property-daemon/README
639
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/client.cc
645
share/doc/mico/examples/services/property-daemon/bank.idl
640
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/CorbaFriendlySession.cc.saved
646
share/doc/mico/examples/services/property-daemon/get_properties.cc
641
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/CorbaFriendlySession.h.saved
647
share/doc/mico/examples/services/property-daemon/set_properties.cc
642
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/CorbaFriendlySession.java
648
share/doc/mico/examples/services/property-daemon/start_demo
643
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/CorbaFriendlySessionBean.java
649
share/doc/mico/examples/services/relship/Documents.idl
644
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/CorbaFriendlySessionHome.java
650
share/doc/mico/examples/services/relship/DocumentsServer.cc
645
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/corba/DataObject.idl
651
share/doc/mico/examples/services/relship/Documents_impl.cc
646
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/jdk1.4-Throwable/StackTraceElement.idl
652
share/doc/mico/examples/services/relship/Documents_impl.h
647
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/jdk1.4-Throwable/Throwable.idl
653
share/doc/mico/examples/services/relship/Makefile
648
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/jdk1.4-Throwable/seq1_StackTraceElement.idl
654
share/doc/mico/examples/services/relship/README
649
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/run-client
655
share/doc/mico/examples/services/relship/Test.idl
650
%%PORTDOCS%%share/examples/mico/interop/jboss/jdk1.4.x/setenv.sh
656
share/doc/mico/examples/services/relship/TestServer.cc
651
%%PORTDOCS%%share/examples/mico/interop/jdk/Account.idl
657
share/doc/mico/examples/services/relship/Test_impl.cc
652
%%PORTDOCS%%share/examples/mico/interop/jdk/Client.java
658
share/doc/mico/examples/services/relship/Test_impl.h
653
%%PORTDOCS%%share/examples/mico/interop/jdk/ClientApplet.html.in
659
share/doc/mico/examples/services/relship/daemons-start
654
%%PORTDOCS%%share/examples/mico/interop/jdk/ClientApplet.java
660
share/doc/mico/examples/services/relship/daemons-stop
655
%%PORTDOCS%%share/examples/mico/interop/jdk/Makefile
661
share/doc/mico/examples/services/relship/rundemo
656
%%PORTDOCS%%share/examples/mico/interop/jdk/README
662
share/doc/mico/examples/services/relship/servers-start
657
%%PORTDOCS%%share/examples/mico/interop/jdk/account
663
share/doc/mico/examples/services/relship/simple-test.cc
658
%%PORTDOCS%%share/examples/mico/interop/jdk/main.cc
664
share/doc/mico/examples/services/relship/stop-servers
659
%%PORTDOCS%%share/examples/mico/interop/jdk/run_applet
665
share/doc/mico/examples/services/relship/test
660
%%PORTDOCS%%share/examples/mico/interop/orbix/Makefile
666
share/doc/mico/examples/services/stream-bench/Makefile
661
%%PORTDOCS%%share/examples/mico/interop/orbix/README
667
share/doc/mico/examples/services/stream-bench/bench
662
%%PORTDOCS%%share/examples/mico/interop/orbix/grid.idl
668
share/doc/mico/examples/services/stream-bench/req.idl
663
%%PORTDOCS%%share/examples/mico/interop/orbix/main.cc
669
share/doc/mico/examples/services/stream-bench/req_client.cc
664
%%PORTDOCS%%share/examples/mico/interop/visibroker/Account.idl
670
share/doc/mico/examples/services/stream-bench/req_server.cc
665
%%PORTDOCS%%share/examples/mico/interop/visibroker/Client.java
671
share/doc/mico/examples/services/stream-bench/stream_client.cc
666
%%PORTDOCS%%share/examples/mico/interop/visibroker/ClientApplet.html.in
672
share/doc/mico/examples/services/stream-bench/stream_server.cc
667
%%PORTDOCS%%share/examples/mico/interop/visibroker/ClientApplet.java
673
share/doc/mico/examples/services/stream-sound/Makefile
668
%%PORTDOCS%%share/examples/mico/interop/visibroker/Makefile
674
share/doc/mico/examples/services/stream-sound/client.cc
669
%%PORTDOCS%%share/examples/mico/interop/visibroker/README
675
share/doc/mico/examples/services/stream-sound/server.cc
670
%%PORTDOCS%%share/examples/mico/interop/visibroker/account
676
share/doc/mico/examples/services/stream-sound/sound.h
671
%%PORTDOCS%%share/examples/mico/interop/visibroker/main.cc
677
share/doc/mico/examples/services/trader/Makefile
672
%%PORTDOCS%%share/examples/mico/interop/visibroker/run_applet
678
share/doc/mico/examples/services/trader/demo.idl
673
%%PORTDOCS%%share/examples/mico/mcast/Makefile
679
share/doc/mico/examples/services/trader/main.cc
674
%%PORTDOCS%%share/examples/mico/mcast/client.cc
680
share/doc/mico/examples/services/trader/run
675
%%PORTDOCS%%share/examples/mico/mcast/hello.idl
681
share/doc/mico/examples/shlib/Makefile
676
%%PORTDOCS%%share/examples/mico/mcast/runit
682
share/doc/mico/examples/shlib/client.cc
677
%%PORTDOCS%%share/examples/mico/mcast/server.cc
683
share/doc/mico/examples/shlib/hello
678
%%PORTDOCS%%share/examples/mico/mt/Makefile
684
share/doc/mico/examples/shlib/hello.idl
679
%%PORTDOCS%%share/examples/mico/mt/README
685
share/doc/mico/examples/shlib/server.cc
680
%%PORTDOCS%%share/examples/mico/mt/callback/Makefile
686
share/doc/mico/examples/siegel/Makefile
681
%%PORTDOCS%%share/examples/mico/mt/callback/callback.idl
687
share/doc/mico/examples/siegel/README
682
%%PORTDOCS%%share/examples/mico/mt/callback/client.cc
688
share/doc/mico/examples/siegel/central/DepotData.cc
683
%%PORTDOCS%%share/examples/mico/mt/callback/run
689
share/doc/mico/examples/siegel/central/DepotData.h
684
%%PORTDOCS%%share/examples/mico/mt/callback/server.cc
690
share/doc/mico/examples/siegel/central/DepotImpl.cc
685
%%PORTDOCS%%share/examples/mico/mt/prodcons-1/Makefile
691
share/doc/mico/examples/siegel/central/DepotImpl.h
686
%%PORTDOCS%%share/examples/mico/mt/prodcons-1/prodcons.cc
692
share/doc/mico/examples/siegel/central/Makefile
687
%%PORTDOCS%%share/examples/mico/obv/Makefile
693
share/doc/mico/examples/siegel/central/TreeNode.h
688
%%PORTDOCS%%share/examples/mico/obv/README
694
share/doc/mico/examples/siegel/central/depot.dat
689
%%PORTDOCS%%share/examples/mico/obv/abstract/Makefile
695
share/doc/mico/examples/siegel/central/depot_server.cc
690
%%PORTDOCS%%share/examples/mico/obv/abstract/README
696
share/doc/mico/examples/siegel/idl/Central.idl
691
%%PORTDOCS%%share/examples/mico/obv/abstract/abstract
697
share/doc/mico/examples/siegel/idl/Makefile
692
%%PORTDOCS%%share/examples/mico/obv/abstract/abstract.idl
698
share/doc/mico/examples/siegel/idl/POS.idl
693
%%PORTDOCS%%share/examples/mico/obv/abstract/abstract_impl.h
699
share/doc/mico/examples/siegel/idl/Store.idl
694
%%PORTDOCS%%share/examples/mico/obv/abstract/client.cc
700
share/doc/mico/examples/siegel/pos/InputMediaImpl.cc
695
%%PORTDOCS%%share/examples/mico/obv/abstract/server.cc
701
share/doc/mico/examples/siegel/pos/InputMediaImpl.h
696
%%PORTDOCS%%share/examples/mico/obv/custom/Makefile
702
share/doc/mico/examples/siegel/pos/Makefile
697
%%PORTDOCS%%share/examples/mico/obv/custom/README
703
share/doc/mico/examples/siegel/pos/OutputMediaImpl.cc
698
%%PORTDOCS%%share/examples/mico/obv/custom/custom
704
share/doc/mico/examples/siegel/pos/OutputMediaImpl.h
699
%%PORTDOCS%%share/examples/mico/obv/custom/custom.idl
705
share/doc/mico/examples/siegel/pos/POSTerminalImpl.cc
700
%%PORTDOCS%%share/examples/mico/obv/custom/custom_impl.cc
706
share/doc/mico/examples/siegel/pos/POSTerminalImpl.h
701
%%PORTDOCS%%share/examples/mico/obv/custom/custom_impl.h
707
share/doc/mico/examples/siegel/pos/POS_Client.cc
702
%%PORTDOCS%%share/examples/mico/obv/custom/test.cc
708
share/doc/mico/examples/siegel/pos/POS_Server.cc
703
%%PORTDOCS%%share/examples/mico/obv/date/Makefile
709
share/doc/mico/examples/siegel/primer_utils/Makefile
704
%%PORTDOCS%%share/examples/mico/obv/date/calendar.idl
710
share/doc/mico/examples/siegel/primer_utils/NsPublisher.cc
705
%%PORTDOCS%%share/examples/mico/obv/date/client.cc
711
share/doc/mico/examples/siegel/primer_utils/NsPublisher.h
706
%%PORTDOCS%%share/examples/mico/obv/date/date
712
share/doc/mico/examples/siegel/store/Makefile
707
%%PORTDOCS%%share/examples/mico/obv/date/date.idl
713
share/doc/mico/examples/siegel/store/StoreAccessImpl.cc
708
%%PORTDOCS%%share/examples/mico/obv/date/date_impl.cc
714
share/doc/mico/examples/siegel/store/StoreAccessImpl.h
709
%%PORTDOCS%%share/examples/mico/obv/date/date_impl.h
715
share/doc/mico/examples/siegel/store/StoreImpl.cc
710
%%PORTDOCS%%share/examples/mico/obv/date/server.cc
716
share/doc/mico/examples/siegel/store/StoreImpl.h
711
%%PORTDOCS%%share/examples/mico/obv/tree/Makefile
717
share/doc/mico/examples/siegel/store/TaxImpl.cc
712
%%PORTDOCS%%share/examples/mico/obv/tree/client.cc
718
share/doc/mico/examples/siegel/store/TaxImpl.h
713
%%PORTDOCS%%share/examples/mico/obv/tree/server.cc
719
share/doc/mico/examples/siegel/store/store_server.cc
714
%%PORTDOCS%%share/examples/mico/obv/tree/tree
720
share/doc/mico/examples/ssl/Makefile
715
%%PORTDOCS%%share/examples/mico/obv/tree/tree.idl
721
share/doc/mico/examples/ssl/c_cert.pem
716
%%PORTDOCS%%share/examples/mico/obv/tree/tree_impl.cc
722
share/doc/mico/examples/ssl/c_key.pem
717
%%PORTDOCS%%share/examples/mico/obv/tree/tree_impl.h
723
share/doc/mico/examples/ssl/client.cc
718
%%PORTDOCS%%share/examples/mico/obv/tricky/Makefile
724
share/doc/mico/examples/ssl/hello.idl
719
%%PORTDOCS%%share/examples/mico/obv/tricky/client.cc
725
share/doc/mico/examples/ssl/s_cert.pem
720
%%PORTDOCS%%share/examples/mico/obv/tricky/server.cc
726
share/doc/mico/examples/ssl/s_key.pem
721
%%PORTDOCS%%share/examples/mico/obv/tricky/tricky
727
share/doc/mico/examples/ssl/server.cc
722
%%PORTDOCS%%share/examples/mico/obv/tricky/tricky.idl
728
share/doc/mico/examples/ssl/ssl
723
%%PORTDOCS%%share/examples/mico/obv/tricky/tricky_impl.cc
729
share/doc/mico/manual.ps
724
%%PORTDOCS%%share/examples/mico/obv/tricky/tricky_impl.h
730
@dirrm share/doc/mico/examples/ssl
725
%%PORTDOCS%%share/examples/mico/pi/Makefile
731
@dirrm share/doc/mico/examples/siegel/store
726
%%PORTDOCS%%share/examples/mico/pi/README
732
@dirrm share/doc/mico/examples/siegel/primer_utils
727
%%PORTDOCS%%share/examples/mico/pi/current/Makefile
733
@dirrm share/doc/mico/examples/siegel/pos
728
%%PORTDOCS%%share/examples/mico/pi/current/client.cc
734
@dirrm share/doc/mico/examples/siegel/idl
729
%%PORTDOCS%%share/examples/mico/pi/current/hello
735
@dirrm share/doc/mico/examples/siegel/central
730
%%PORTDOCS%%share/examples/mico/pi/current/hello.idl
736
@dirrm share/doc/mico/examples/siegel
731
%%PORTDOCS%%share/examples/mico/pi/current/server.cc
737
@dirrm share/doc/mico/examples/shlib
732
%%PORTDOCS%%share/examples/mico/pi/dii/Makefile
738
@dirrm share/doc/mico/examples/services/trader
733
%%PORTDOCS%%share/examples/mico/pi/dii/diiclient.cc
739
@dirrm share/doc/mico/examples/services/stream-sound
734
%%PORTDOCS%%share/examples/mico/pi/dii/diiserver.cc
740
@dirrm share/doc/mico/examples/services/stream-bench
735
%%PORTDOCS%%share/examples/mico/pi/dii/rundiic
741
@dirrm share/doc/mico/examples/services/relship
736
%%PORTDOCS%%share/examples/mico/pi/dii/rundiis
742
@dirrm share/doc/mico/examples/services/property-daemon
737
%%PORTDOCS%%share/examples/mico/pi/dii/runit
743
@dirrm share/doc/mico/examples/services/naming-lb
738
%%PORTDOCS%%share/examples/mico/pi/poa/Makefile
744
@dirrm share/doc/mico/examples/services/naming
739
%%PORTDOCS%%share/examples/mico/pi/poa/account
745
@dirrm share/doc/mico/examples/services/events
740
%%PORTDOCS%%share/examples/mico/pi/poa/account.idl
746
@dirrm share/doc/mico/examples/services
741
%%PORTDOCS%%share/examples/mico/pi/poa/client.cc
747
@dirrm share/doc/mico/examples/redlich/Hello-4
742
%%PORTDOCS%%share/examples/mico/pi/poa/collocated.cc
748
@dirrm share/doc/mico/examples/redlich/Hello-3
743
%%PORTDOCS%%share/examples/mico/pi/poa/server.cc
749
@dirrm share/doc/mico/examples/redlich/Hello-2
744
%%PORTDOCS%%share/examples/mico/pi/poa2/Makefile
750
@dirrm share/doc/mico/examples/redlich/Hello-1
745
%%PORTDOCS%%share/examples/mico/pi/poa2/account
751
@dirrm share/doc/mico/examples/redlich/Calc-4
746
%%PORTDOCS%%share/examples/mico/pi/poa2/account.idl
752
@dirrm share/doc/mico/examples/redlich/Calc-3
747
%%PORTDOCS%%share/examples/mico/pi/poa2/client.cc
753
@dirrm share/doc/mico/examples/redlich/Calc-2
748
%%PORTDOCS%%share/examples/mico/pi/poa2/server.cc
754
@dirrm share/doc/mico/examples/redlich/Calc-1
749
%%PORTDOCS%%share/examples/mico/poa/Makefile
755
@dirrm share/doc/mico/examples/redlich
750
%%PORTDOCS%%share/examples/mico/poa/README
756
@dirrm share/doc/mico/examples/random
751
%%PORTDOCS%%share/examples/mico/poa/account-1/Makefile
757
@dirrm share/doc/mico/examples/poa/inherit
752
%%PORTDOCS%%share/examples/mico/poa/account-1/account
758
@dirrm share/doc/mico/examples/poa/hello-2
753
%%PORTDOCS%%share/examples/mico/poa/account-1/account.idl
759
@dirrm share/doc/mico/examples/poa/hello-1
754
%%PORTDOCS%%share/examples/mico/poa/account-1/client.cc
760
@dirrm share/doc/mico/examples/poa/account-3
755
%%PORTDOCS%%share/examples/mico/poa/account-1/server.cc
761
@dirrm share/doc/mico/examples/poa/account-2
756
%%PORTDOCS%%share/examples/mico/poa/account-2/Makefile
762
@dirrm share/doc/mico/examples/poa/account-1
757
%%PORTDOCS%%share/examples/mico/poa/account-2/account
763
@dirrm share/doc/mico/examples/poa
758
%%PORTDOCS%%share/examples/mico/poa/account-2/account.idl
764
@dirrm share/doc/mico/examples/pi/poa2
759
%%PORTDOCS%%share/examples/mico/poa/account-2/client.cc
765
@dirrm share/doc/mico/examples/pi/poa
760
%%PORTDOCS%%share/examples/mico/poa/account-2/server.cc
766
@dirrm share/doc/mico/examples/pi/dii
761
%%PORTDOCS%%share/examples/mico/poa/account-3/Makefile
767
@dirrm share/doc/mico/examples/pi/current
762
%%PORTDOCS%%share/examples/mico/poa/account-3/account
768
@dirrm share/doc/mico/examples/pi
763
%%PORTDOCS%%share/examples/mico/poa/account-3/account.idl
769
@dirrm share/doc/mico/examples/obv/tricky
764
%%PORTDOCS%%share/examples/mico/poa/account-3/client.cc
770
@dirrm share/doc/mico/examples/obv/tree
765
%%PORTDOCS%%share/examples/mico/poa/account-3/server.cc
771
@dirrm share/doc/mico/examples/obv/date
766
%%PORTDOCS%%share/examples/mico/poa/hello-1/Makefile
772
@dirrm share/doc/mico/examples/obv/custom
767
%%PORTDOCS%%share/examples/mico/poa/hello-1/client.cc
773
@dirrm share/doc/mico/examples/obv/abstract
768
%%PORTDOCS%%share/examples/mico/poa/hello-1/hello
774
@dirrm share/doc/mico/examples/obv
769
%%PORTDOCS%%share/examples/mico/poa/hello-1/hello.idl
775
@dirrm share/doc/mico/examples/mcast
770
%%PORTDOCS%%share/examples/mico/poa/hello-1/server.cc
776
@dirrm share/doc/mico/examples/interop/visibroker
771
%%PORTDOCS%%share/examples/mico/poa/hello-2/Makefile
777
@dirrm share/doc/mico/examples/interop/orbix
772
%%PORTDOCS%%share/examples/mico/poa/hello-2/client.cc
778
@dirrm share/doc/mico/examples/interop/jdk
773
%%PORTDOCS%%share/examples/mico/poa/hello-2/hello
779
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/jdk1.4-Throwable
774
%%PORTDOCS%%share/examples/mico/poa/hello-2/hello.idl
780
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/corba
775
%%PORTDOCS%%share/examples/mico/poa/hello-2/server.cc
781
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples
776
%%PORTDOCS%%share/examples/mico/poa/inherit/Makefile
782
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb/META-INF
777
%%PORTDOCS%%share/examples/mico/poa/inherit/client.cc
783
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/corba-friendly-ejb
778
%%PORTDOCS%%share/examples/mico/poa/inherit/inherit
784
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/jdk1.4-Throwable
779
%%PORTDOCS%%share/examples/mico/poa/inherit/inherit.idl
785
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/examples
780
%%PORTDOCS%%share/examples/mico/poa/inherit/server.cc
786
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb/META-INF
781
%%PORTDOCS%%share/examples/mico/random/Makefile
787
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/converter-ejb
782
%%PORTDOCS%%share/examples/mico/random/client.cc
788
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/jdk1.4-Throwable
783
%%PORTDOCS%%share/examples/mico/random/random.idl
789
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/examples
784
%%PORTDOCS%%share/examples/mico/redlich/Calc-1/Makefile
790
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb/META-INF
785
%%PORTDOCS%%share/examples/mico/redlich/Calc-1/calc.idl
791
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x/cart-ejb
786
%%PORTDOCS%%share/examples/mico/redlich/Calc-1/client.cc
792
@dirrm share/doc/mico/examples/interop/jboss/jdk1.4.x
787
%%PORTDOCS%%share/examples/mico/redlich/Calc-1/server.cc
793
@dirrm share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples/corba
788
%%PORTDOCS%%share/examples/mico/redlich/Calc-2/Makefile
794
@dirrm share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples
789
%%PORTDOCS%%share/examples/mico/redlich/Calc-2/calc.idl
795
@dirrm share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb/META-INF
790
%%PORTDOCS%%share/examples/mico/redlich/Calc-2/client.cc
796
@dirrm share/doc/mico/examples/interop/jboss/jdk1.3.x/corba-friendly-ejb
791
%%PORTDOCS%%share/examples/mico/redlich/Calc-2/server.cc
797
@dirrm share/doc/mico/examples/interop/jboss/jdk1.3.x/converter-ejb/examples
792
%%PORTDOCS%%share/examples/mico/redlich/Calc-3/Makefile
798
@dirrm share/doc/mico/examples/interop/jboss/jdk1.3.x/converter-ejb/META-INF
793
%%PORTDOCS%%share/examples/mico/redlich/Calc-3/calc.idl
799
@dirrm share/doc/mico/examples/interop/jboss/jdk1.3.x/converter-ejb
794
%%PORTDOCS%%share/examples/mico/redlich/Calc-3/client.cc
800
@dirrm share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/examples
795
%%PORTDOCS%%share/examples/mico/redlich/Calc-3/server.cc
801
@dirrm share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb/META-INF
796
%%PORTDOCS%%share/examples/mico/redlich/Calc-4/Makefile
802
@dirrm share/doc/mico/examples/interop/jboss/jdk1.3.x/cart-ejb
797
%%PORTDOCS%%share/examples/mico/redlich/Calc-4/calc.idl
803
@dirrm share/doc/mico/examples/interop/jboss/jdk1.3.x
798
%%PORTDOCS%%share/examples/mico/redlich/Calc-4/client.cc
804
@dirrm share/doc/mico/examples/interop/jboss
799
%%PORTDOCS%%share/examples/mico/redlich/Calc-4/server.cc
805
@dirrm share/doc/mico/examples/interop/jacorb
800
%%PORTDOCS%%share/examples/mico/redlich/Hello-1/Makefile
806
@dirrm share/doc/mico/examples/interop
801
%%PORTDOCS%%share/examples/mico/redlich/Hello-1/client.cc
807
@dirrm share/doc/mico/examples/interceptor
802
%%PORTDOCS%%share/examples/mico/redlich/Hello-1/server.cc
808
@dirrm share/doc/mico/examples/henning
803
%%PORTDOCS%%share/examples/mico/redlich/Hello-1/tty.idl
809
@dirrm share/doc/mico/examples/generic
804
%%PORTDOCS%%share/examples/mico/redlich/Hello-2/Makefile
810
@dirrm share/doc/mico/examples/dynany
805
%%PORTDOCS%%share/examples/mico/redlich/Hello-2/client.cc
811
@dirrm share/doc/mico/examples/dispatcher
806
%%PORTDOCS%%share/examples/mico/redlich/Hello-2/server.cc
812
@dirrm share/doc/mico/examples/codesets
807
%%PORTDOCS%%share/examples/mico/redlich/Hello-2/tty.idl
813
@dirrm share/doc/mico/examples/boa/activate
808
%%PORTDOCS%%share/examples/mico/redlich/Hello-3/Makefile
814
@dirrm share/doc/mico/examples/boa/account4
809
%%PORTDOCS%%share/examples/mico/redlich/Hello-3/client.cc
815
@dirrm share/doc/mico/examples/boa/account3
810
%%PORTDOCS%%share/examples/mico/redlich/Hello-3/server.cc
816
@dirrm share/doc/mico/examples/boa/account2
811
%%PORTDOCS%%share/examples/mico/redlich/Hello-3/tty.idl
817
@dirrm share/doc/mico/examples/boa/account
812
%%PORTDOCS%%share/examples/mico/redlich/Hello-3/ttyplus.idl
818
@dirrm share/doc/mico/examples/boa
813
%%PORTDOCS%%share/examples/mico/redlich/Hello-4/Makefile
819
@dirrm share/doc/mico/examples/bench
814
%%PORTDOCS%%share/examples/mico/redlich/Hello-4/client.cc
820
@dirrm share/doc/mico/examples
815
%%PORTDOCS%%share/examples/mico/redlich/Hello-4/server.cc
821
@dirrm share/doc/mico
816
%%PORTDOCS%%share/examples/mico/redlich/Hello-4/tty.idl
822
@dirrm include/ministl
817
%%PORTDOCS%%share/examples/mico/redlich/Hello-4/ttyplus.idl
818
%%PORTDOCS%%share/examples/mico/redlich/Makefile
819
%%PORTDOCS%%share/examples/mico/redlich/README
820
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/Makefile
821
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/README
822
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/Makefile
823
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/README
824
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/ServerCert.pem
825
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/ServerKey.pem
826
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/account.idl
827
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/audit.cnf
828
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/client.cc
829
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/client2.cc
830
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/config.cnf
831
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/key.pem
832
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/manager.pem
833
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/owner.pem
834
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/rcs
835
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/rss
836
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/run
837
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/server.cc
838
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-aware/wife.pem
839
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/Makefile
840
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/ODM.cnf
841
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/README
842
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/access.cnf
843
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/account.idl
844
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/audit.cnf
845
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/ca_cert.pem
846
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/client.cc
847
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/client2.cc
848
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/manager_cert.pem
849
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/manager_key.pem
850
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/owner_cert.pem
851
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/owner_key.pem
852
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/rights.cnf
853
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/run
854
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/s_cert.pem
855
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/s_key.pem
856
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/server.cc
857
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/wife_cert.pem
858
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/wife_key.pem
859
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/wife_self_cert.pem
860
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware-ca-check/wife_self_key.pem
861
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/Makefile
862
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/ODM.cnf
863
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/README
864
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/ServerCert.pem
865
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/ServerKey.pem
866
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/access.cnf
867
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/account.idl
868
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/audit.cnf
869
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/client.cc
870
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/client2.cc
871
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/key.pem
872
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/manager.pem
873
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/owner.pem
874
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/rcs
875
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/rcs1
876
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/rcs2
877
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/rights.cnf
878
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/rss
879
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/rss1
880
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/run
881
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/server.cc
882
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/acl-unaware/wife.pem
883
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/Makefile
884
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/ODM.cnf
885
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/README
886
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/README.Audit
887
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/ServerCert.pem
888
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/ServerKey.pem
889
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/access.cnf
890
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/account.idl
891
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/client.cc
892
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/client2.cc
893
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/config.cnf
894
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/key.pem
895
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/manager.pem
896
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/owner.pem
897
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/rcs
898
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/rights.cnf
899
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/rsnd
900
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/rss
901
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/rst
902
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/run
903
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/server.cc
904
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-aware/wife.pem
905
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/ClientCert.pem
906
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/ClientKey.pem
907
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/Makefile
908
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/README
909
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/ServerCert.pem
910
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/ServerKey.pem
911
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/client.cc
912
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/hello.idl
913
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/rcs
914
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/rss
915
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/run
916
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/runit
917
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/server.cc
918
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-book/ssl
919
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/Makefile
920
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/ODM.cnf
921
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/README
922
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/ServerCert.pem
923
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/ServerKey.pem
924
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/access.cnf
925
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/account.idl
926
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/audit.cnf
927
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/client.cc
928
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/client2.cc
929
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/key.pem
930
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/manager.pem
931
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/owner.pem
932
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/rcs
933
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/rights.cnf
934
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/rss
935
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/run
936
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/server.cc
937
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/audit-unaware/wife.pem
938
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/ClientCert.pem
939
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/ClientKey.pem
940
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/Makefile
941
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/ServerCert.pem
942
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/ServerKey.pem
943
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/account.idl
944
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/client.cc
945
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/rcs
946
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/rss
947
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/run
948
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/server.cc
949
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l1/ssl
950
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/ClientCert.pem
951
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/ClientKey.pem
952
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/Makefile
953
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/ServerCert.pem
954
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/ServerKey.pem
955
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/account.idl
956
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/client.cc
957
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/list.pem
958
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/rcs
959
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/rss
960
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/run
961
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/server.cc
962
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/l2/ssl
963
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/ClientCert.pem
964
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/ClientKey.pem
965
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/Makefile
966
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/ServerCert.pem
967
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/ServerKey.pem
968
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/account.idl
969
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/client.cc
970
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/list.pem
971
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/rcs
972
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/rss
973
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/run
974
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/server.cc
975
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/security/tutorial/ssl
976
%%PORTDOCS%%share/examples/mico/services/Makefile
977
%%PORTDOCS%%share/examples/mico/services/README
978
%%PORTDOCS%%share/examples/mico/services/events/Makefile
979
%%PORTDOCS%%share/examples/mico/services/events/client.cc
980
%%PORTDOCS%%share/examples/mico/services/events/client2.cc
981
%%PORTDOCS%%share/examples/mico/services/events/runit
982
%%PORTDOCS%%share/examples/mico/services/events/server.cc
983
%%PORTDOCS%%share/examples/mico/services/events/server2.cc
984
%%PORTDOCS%%share/examples/mico/services/events/server3.cc
985
%%PORTDOCS%%share/examples/mico/services/naming-lb/Client.cc
986
%%PORTDOCS%%share/examples/mico/services/naming-lb/Makefile
987
%%PORTDOCS%%share/examples/mico/services/naming-lb/Printer.idl
988
%%PORTDOCS%%share/examples/mico/services/naming-lb/Printer_impl.cc
989
%%PORTDOCS%%share/examples/mico/services/naming-lb/Printer_impl.h
990
%%PORTDOCS%%share/examples/mico/services/naming-lb/Server.cc
991
%%PORTDOCS%%share/examples/mico/services/naming-lb/printer_test
992
%%PORTDOCS%%share/examples/mico/services/naming/Makefile
993
%%PORTDOCS%%share/examples/mico/services/naming/account.idl
994
%%PORTDOCS%%share/examples/mico/services/naming/account_test
995
%%PORTDOCS%%share/examples/mico/services/naming/client.cc
996
%%PORTDOCS%%share/examples/mico/services/naming/server.cc
997
%%PORTDOCS%%share/examples/mico/services/property-daemon/Makefile
998
%%PORTDOCS%%share/examples/mico/services/property-daemon/README
999
%%PORTDOCS%%share/examples/mico/services/property-daemon/bank.idl
1000
%%PORTDOCS%%share/examples/mico/services/property-daemon/get_properties.cc
1001
%%PORTDOCS%%share/examples/mico/services/property-daemon/set_properties.cc
1002
%%PORTDOCS%%share/examples/mico/services/property-daemon/start_demo
1003
%%PORTDOCS%%share/examples/mico/services/relship/Documents.idl
1004
%%PORTDOCS%%share/examples/mico/services/relship/DocumentsServer.cc
1005
%%PORTDOCS%%share/examples/mico/services/relship/Documents_impl.cc
1006
%%PORTDOCS%%share/examples/mico/services/relship/Documents_impl.h
1007
%%PORTDOCS%%share/examples/mico/services/relship/Makefile
1008
%%PORTDOCS%%share/examples/mico/services/relship/README
1009
%%PORTDOCS%%share/examples/mico/services/relship/Test.idl
1010
%%PORTDOCS%%share/examples/mico/services/relship/TestServer.cc
1011
%%PORTDOCS%%share/examples/mico/services/relship/Test_impl.cc
1012
%%PORTDOCS%%share/examples/mico/services/relship/Test_impl.h
1013
%%PORTDOCS%%share/examples/mico/services/relship/daemons-start
1014
%%PORTDOCS%%share/examples/mico/services/relship/daemons-stop
1015
%%PORTDOCS%%share/examples/mico/services/relship/rundemo
1016
%%PORTDOCS%%share/examples/mico/services/relship/servers-start
1017
%%PORTDOCS%%share/examples/mico/services/relship/simple-test.cc
1018
%%PORTDOCS%%share/examples/mico/services/relship/stop-servers
1019
%%PORTDOCS%%share/examples/mico/services/relship/test
1020
%%PORTDOCS%%share/examples/mico/services/stream-bench/Makefile
1021
%%PORTDOCS%%share/examples/mico/services/stream-bench/bench
1022
%%PORTDOCS%%share/examples/mico/services/stream-bench/req.idl
1023
%%PORTDOCS%%share/examples/mico/services/stream-bench/req_client.cc
1024
%%PORTDOCS%%share/examples/mico/services/stream-bench/req_server.cc
1025
%%PORTDOCS%%share/examples/mico/services/stream-bench/stream_client.cc
1026
%%PORTDOCS%%share/examples/mico/services/stream-bench/stream_server.cc
1027
%%PORTDOCS%%share/examples/mico/services/stream-sound/Makefile
1028
%%PORTDOCS%%share/examples/mico/services/stream-sound/client.cc
1029
%%PORTDOCS%%share/examples/mico/services/stream-sound/server.cc
1030
%%PORTDOCS%%share/examples/mico/services/stream-sound/sound.h
1031
%%PORTDOCS%%share/examples/mico/services/trader/Makefile
1032
%%PORTDOCS%%share/examples/mico/services/trader/demo.idl
1033
%%PORTDOCS%%share/examples/mico/services/trader/main.cc
1034
%%PORTDOCS%%share/examples/mico/services/trader/run
1035
%%PORTDOCS%%share/examples/mico/shlib/Makefile
1036
%%PORTDOCS%%share/examples/mico/shlib/client.cc
1037
%%PORTDOCS%%share/examples/mico/shlib/hello
1038
%%PORTDOCS%%share/examples/mico/shlib/hello.idl
1039
%%PORTDOCS%%share/examples/mico/shlib/server.cc
1040
%%PORTDOCS%%share/examples/mico/siegel/Makefile
1041
%%PORTDOCS%%share/examples/mico/siegel/README
1042
%%PORTDOCS%%share/examples/mico/siegel/central/DepotData.cc
1043
%%PORTDOCS%%share/examples/mico/siegel/central/DepotData.h
1044
%%PORTDOCS%%share/examples/mico/siegel/central/DepotImpl.cc
1045
%%PORTDOCS%%share/examples/mico/siegel/central/DepotImpl.h
1046
%%PORTDOCS%%share/examples/mico/siegel/central/Makefile
1047
%%PORTDOCS%%share/examples/mico/siegel/central/TreeNode.h
1048
%%PORTDOCS%%share/examples/mico/siegel/central/depot.dat
1049
%%PORTDOCS%%share/examples/mico/siegel/central/depot_server.cc
1050
%%PORTDOCS%%share/examples/mico/siegel/idl/Central.idl
1051
%%PORTDOCS%%share/examples/mico/siegel/idl/Makefile
1052
%%PORTDOCS%%share/examples/mico/siegel/idl/POS.idl
1053
%%PORTDOCS%%share/examples/mico/siegel/idl/Store.idl
1054
%%PORTDOCS%%share/examples/mico/siegel/pos/InputMediaImpl.cc
1055
%%PORTDOCS%%share/examples/mico/siegel/pos/InputMediaImpl.h
1056
%%PORTDOCS%%share/examples/mico/siegel/pos/Makefile
1057
%%PORTDOCS%%share/examples/mico/siegel/pos/OutputMediaImpl.cc
1058
%%PORTDOCS%%share/examples/mico/siegel/pos/OutputMediaImpl.h
1059
%%PORTDOCS%%share/examples/mico/siegel/pos/POSTerminalImpl.cc
1060
%%PORTDOCS%%share/examples/mico/siegel/pos/POSTerminalImpl.h
1061
%%PORTDOCS%%share/examples/mico/siegel/pos/POS_Client.cc
1062
%%PORTDOCS%%share/examples/mico/siegel/pos/POS_Server.cc
1063
%%PORTDOCS%%share/examples/mico/siegel/primer_utils/Makefile
1064
%%PORTDOCS%%share/examples/mico/siegel/primer_utils/NsPublisher.cc
1065
%%PORTDOCS%%share/examples/mico/siegel/primer_utils/NsPublisher.h
1066
%%PORTDOCS%%share/examples/mico/siegel/store/Makefile
1067
%%PORTDOCS%%share/examples/mico/siegel/store/StoreAccessImpl.cc
1068
%%PORTDOCS%%share/examples/mico/siegel/store/StoreAccessImpl.h
1069
%%PORTDOCS%%share/examples/mico/siegel/store/StoreImpl.cc
1070
%%PORTDOCS%%share/examples/mico/siegel/store/StoreImpl.h
1071
%%PORTDOCS%%share/examples/mico/siegel/store/TaxImpl.cc
1072
%%PORTDOCS%%share/examples/mico/siegel/store/TaxImpl.h
1073
%%PORTDOCS%%share/examples/mico/siegel/store/store_server.cc
1074
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/ssl/Makefile
1075
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/ssl/c_cert.pem
1076
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/ssl/c_key.pem
1077
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/ssl/client.cc
1078
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/ssl/hello.idl
1079
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/ssl/s_cert.pem
1080
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/ssl/s_key.pem
1081
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/ssl/server.cc
1082
%%PORTDOCS%%%%MICO_SSL%%share/examples/mico/ssl/ssl
1083
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/ssl
1084
%%PORTDOCS%%@dirrm share/examples/mico/siegel/store
1085
%%PORTDOCS%%@dirrm share/examples/mico/siegel/primer_utils
1086
%%PORTDOCS%%@dirrm share/examples/mico/siegel/pos
1087
%%PORTDOCS%%@dirrm share/examples/mico/siegel/idl
1088
%%PORTDOCS%%@dirrm share/examples/mico/siegel/central
1089
%%PORTDOCS%%@dirrm share/examples/mico/siegel
1090
%%PORTDOCS%%@dirrm share/examples/mico/shlib
1091
%%PORTDOCS%%@dirrm share/examples/mico/services/trader
1092
%%PORTDOCS%%@dirrm share/examples/mico/services/stream-sound
1093
%%PORTDOCS%%@dirrm share/examples/mico/services/stream-bench
1094
%%PORTDOCS%%@dirrm share/examples/mico/services/relship
1095
%%PORTDOCS%%@dirrm share/examples/mico/services/property-daemon
1096
%%PORTDOCS%%@dirrm share/examples/mico/services/naming-lb
1097
%%PORTDOCS%%@dirrm share/examples/mico/services/naming
1098
%%PORTDOCS%%@dirrm share/examples/mico/services/events
1099
%%PORTDOCS%%@dirrm share/examples/mico/services
1100
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/security/tutorial
1101
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/security/l2
1102
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/security/l1
1103
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/security/audit-unaware
1104
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/security/audit-book
1105
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/security/audit-aware
1106
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/security/acl-unaware-ca-check
1107
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/security/acl-unaware
1108
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/security/acl-aware
1109
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/security
1110
%%PORTDOCS%%@dirrm share/examples/mico/redlich/Hello-4
1111
%%PORTDOCS%%@dirrm share/examples/mico/redlich/Hello-3
1112
%%PORTDOCS%%@dirrm share/examples/mico/redlich/Hello-2
1113
%%PORTDOCS%%@dirrm share/examples/mico/redlich/Hello-1
1114
%%PORTDOCS%%@dirrm share/examples/mico/redlich/Calc-4
1115
%%PORTDOCS%%@dirrm share/examples/mico/redlich/Calc-3
1116
%%PORTDOCS%%@dirrm share/examples/mico/redlich/Calc-2
1117
%%PORTDOCS%%@dirrm share/examples/mico/redlich/Calc-1
1118
%%PORTDOCS%%@dirrm share/examples/mico/redlich
1119
%%PORTDOCS%%@dirrm share/examples/mico/random
1120
%%PORTDOCS%%@dirrm share/examples/mico/poa/inherit
1121
%%PORTDOCS%%@dirrm share/examples/mico/poa/hello-2
1122
%%PORTDOCS%%@dirrm share/examples/mico/poa/hello-1
1123
%%PORTDOCS%%@dirrm share/examples/mico/poa/account-3
1124
%%PORTDOCS%%@dirrm share/examples/mico/poa/account-2
1125
%%PORTDOCS%%@dirrm share/examples/mico/poa/account-1
1126
%%PORTDOCS%%@dirrm share/examples/mico/poa
1127
%%PORTDOCS%%@dirrm share/examples/mico/pi/poa2
1128
%%PORTDOCS%%@dirrm share/examples/mico/pi/poa
1129
%%PORTDOCS%%@dirrm share/examples/mico/pi/dii
1130
%%PORTDOCS%%@dirrm share/examples/mico/pi/current
1131
%%PORTDOCS%%@dirrm share/examples/mico/pi
1132
%%PORTDOCS%%@dirrm share/examples/mico/obv/tricky
1133
%%PORTDOCS%%@dirrm share/examples/mico/obv/tree
1134
%%PORTDOCS%%@dirrm share/examples/mico/obv/date
1135
%%PORTDOCS%%@dirrm share/examples/mico/obv/custom
1136
%%PORTDOCS%%@dirrm share/examples/mico/obv/abstract
1137
%%PORTDOCS%%@dirrm share/examples/mico/obv
1138
%%PORTDOCS%%@dirrm share/examples/mico/mt/prodcons-1
1139
%%PORTDOCS%%@dirrm share/examples/mico/mt/callback
1140
%%PORTDOCS%%@dirrm share/examples/mico/mt
1141
%%PORTDOCS%%@dirrm share/examples/mico/mcast
1142
%%PORTDOCS%%@dirrm share/examples/mico/interop/visibroker
1143
%%PORTDOCS%%@dirrm share/examples/mico/interop/orbix
1144
%%PORTDOCS%%@dirrm share/examples/mico/interop/jdk
1145
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/jdk1.4-Throwable
1146
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples/corba
1147
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/examples
1148
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb/META-INF
1149
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/corba-friendly-ejb
1150
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/jdk1.4-Throwable
1151
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/examples
1152
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb/META-INF
1153
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/converter-ejb
1154
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/jdk1.4-Throwable
1155
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/examples
1156
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb/META-INF
1157
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x/cart-ejb
1158
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.4.x
1159
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples/corba
1160
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/examples
1161
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb/META-INF
1162
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.3.x/corba-friendly-ejb
1163
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.3.x/converter-ejb/examples
1164
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.3.x/converter-ejb/META-INF
1165
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.3.x/converter-ejb
1166
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/examples
1167
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb/META-INF
1168
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.3.x/cart-ejb
1169
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss/jdk1.3.x
1170
%%PORTDOCS%%@dirrm share/examples/mico/interop/jboss
1171
%%PORTDOCS%%@dirrm share/examples/mico/interop/jacorb
1172
%%PORTDOCS%%@dirrm share/examples/mico/interop
1173
%%PORTDOCS%%@dirrm share/examples/mico/interceptor
1174
%%PORTDOCS%%@dirrm share/examples/mico/henning
1175
%%PORTDOCS%%@dirrm share/examples/mico/generic
1176
%%PORTDOCS%%@dirrm share/examples/mico/dynany
1177
%%PORTDOCS%%%%MICO_X11%%@dirrm share/examples/mico/dispatcher/x11
1178
%%PORTDOCS%%%%MICO_QT%%@dirrm share/examples/mico/dispatcher/qtmico
1179
%%PORTDOCS%%%%MICO_GTK%%@dirrm share/examples/mico/dispatcher/gtkmico
1180
%%PORTDOCS%%@dirrm share/examples/mico/dispatcher
1181
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/csiv2/tls-identity-1
1182
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/csiv2/tls-hello-2
1183
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/csiv2/tls-hello-1
1184
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/csiv2/interop/adiron
1185
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/csiv2/interop
1186
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/csiv2/identity-1
1187
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/csiv2/hello-1
1188
%%PORTDOCS%%%%MICO_SSL%%@dirrm share/examples/mico/csiv2
1189
%%PORTDOCS%%@dirrm share/examples/mico/codesets
1190
%%PORTDOCS%%@dirrm share/examples/mico/ccm/philo
1191
%%PORTDOCS%%@dirrm share/examples/mico/ccm/hello2
1192
%%PORTDOCS%%@dirrm share/examples/mico/ccm/hello
1193
%%PORTDOCS%%@dirrm share/examples/mico/ccm/events
1194
%%PORTDOCS%%@dirrm share/examples/mico/ccm
1195
%%PORTDOCS%%@dirrm share/examples/mico/boa/activate
1196
%%PORTDOCS%%@dirrm share/examples/mico/boa/account4
1197
%%PORTDOCS%%@dirrm share/examples/mico/boa/account3
1198
%%PORTDOCS%%@dirrm share/examples/mico/boa/account2
1199
%%PORTDOCS%%@dirrm share/examples/mico/boa/account
1200
%%PORTDOCS%%@dirrm share/examples/mico/boa
1201
%%PORTDOCS%%@dirrm share/examples/mico/bench
1202
%%PORTDOCS%%@dirrm share/examples/mico
1203
%%PORTDOCS%%@dirrm share/doc/mico/html
1204
%%PORTDOCS%%@dirrm share/doc/mico
823
@dirrm include/mico/transport
1205
@dirrm include/mico/transport
824
@dirrm include/mico/security
1206
@dirrm include/mico/security
825
@dirrm include/mico/os-thread
1207
@dirrm include/mico/os-thread

Return to bug 53988