Re-add this port marked BROKEN and commenting out USE_QT_VER and related
relating to Qt1. When someone has time they can test with Qt2 and fix this. Requested by: sobomax
This commit is contained in:
parent
66bcd1ef6c
commit
03125086c0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=57898
12 changed files with 966 additions and 0 deletions
75
devel/mico/Makefile
Normal file
75
devel/mico/Makefile
Normal file
|
@ -0,0 +1,75 @@
|
|||
# New ports collection makefile for: mico
|
||||
# Date created: 11 July 1998
|
||||
# Whom: Marc G. Fournier <scrappy@freebsd.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= mico
|
||||
PORTVERSION= 2.3.1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://diamant-atm.vsb.cs.uni-frankfurt.de/~mico/
|
||||
|
||||
MAINTAINER= scrappy@freebsd.org
|
||||
|
||||
LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82
|
||||
|
||||
WRKSRC= ${WRKDIR}/mico
|
||||
|
||||
MICOVER= `${ECHO_CMD} ${DISTNAME} | ${SED} 's/mico-//'`
|
||||
|
||||
.if defined(QT2)
|
||||
USE_QT_VER= 2
|
||||
MAKE_ENV= QT_INCLUDES="${X11BASE}/include/qt2" \
|
||||
QTVER="2"
|
||||
CONFIGURE_ENV= QTVER="2"
|
||||
.else
|
||||
#USE_QT_VER= 1
|
||||
#MAKE_ENV= QT_INCLUDES="${X11BASE}/include/X11/qt" \
|
||||
# QTVER=""
|
||||
#CONFIGURE_ENV= QTVER=""
|
||||
.endif
|
||||
|
||||
BROKEN= "Needs someone to test with Qt2 support as Qt1 is gone."
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_NEWGCC= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GTK= yes
|
||||
USE_AUTOCONF= yes
|
||||
CONFIGURE_ARGS= --with-qt --with-gtk --with-tcl --disable-mini-stl \
|
||||
--enable-static --enable-shared
|
||||
|
||||
PLIST_SUB= MICOVER="${MICOVER}"
|
||||
|
||||
MAN1= idl.1 imr.1 nsadmin.1
|
||||
MAN5= micorc.5
|
||||
MAN8= ird.8 micod.8 nsd.8
|
||||
|
||||
post-install:
|
||||
${LN} -sf ${PREFIX}/lib/libmico${MICOVER}.so.1 ${PREFIX}/lib/libmico.${MICOVER}.so
|
||||
${LN} -sf ${PREFIX}/lib/libmicoaux${MICOVER}.so.1 ${PREFIX}/lib/libmicoaux.${MICOVER}.so
|
||||
${LN} -sf ${PREFIX}/lib/libmicocoss${MICOVER}.so.1 ${PREFIX}/lib/libmicocoss.${MICOVER}.so
|
||||
${LN} -sf ${PREFIX}/lib/libmicogtk${MICOVER}.so.1 ${PREFIX}/lib/libmicogtk.${MICOVER}.so
|
||||
${LN} -sf ${PREFIX}/lib/libmicoqt${MICOVER}.so.1 ${PREFIX}/lib/libmicoqt.${MICOVER}.so
|
||||
${LN} -sf ${PREFIX}/lib/libmicotcl${MICOVER}.so.1 ${PREFIX}/lib/libmicotcl.${MICOVER}.so
|
||||
${LN} -sf ${PREFIX}/lib/libmicox${MICOVER}.so.1 ${PREFIX}/lib/libmicox.${MICOVER}.so
|
||||
@strip ${PREFIX}/bin/containmentd
|
||||
@strip ${PREFIX}/bin/eventd
|
||||
@strip ${PREFIX}/bin/idl
|
||||
@strip ${PREFIX}/bin/imr
|
||||
@strip ${PREFIX}/bin/iordump
|
||||
@strip ${PREFIX}/bin/ird
|
||||
@strip ${PREFIX}/bin/mico-cpp
|
||||
@strip ${PREFIX}/bin/micod
|
||||
@strip ${PREFIX}/bin/noded
|
||||
@strip ${PREFIX}/bin/nsadmin
|
||||
@strip ${PREFIX}/bin/nsd
|
||||
@strip ${PREFIX}/bin/propertyd
|
||||
@strip ${PREFIX}/bin/proxyd
|
||||
@strip ${PREFIX}/bin/randomd
|
||||
@strip ${PREFIX}/bin/referenced
|
||||
@strip ${PREFIX}/bin/timed
|
||||
@strip ${PREFIX}/bin/traderd
|
||||
@strip ${PREFIX}/bin/traversald
|
||||
|
||||
.include <bsd.port.mk>
|
1
devel/mico/distinfo
Normal file
1
devel/mico/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (mico-2.3.1.tar.gz) = 24bafbeec3299ab2ac38150914ee16cc
|
34
devel/mico/files/patch-ak
Normal file
34
devel/mico/files/patch-ak
Normal file
|
@ -0,0 +1,34 @@
|
|||
--- configure.in.orig Tue Dec 7 00:36:14 1999
|
||||
+++ configure.in Mon Jan 10 18:07:54 2000
|
||||
@@ -170,7 +170,7 @@
|
||||
# extra dirs
|
||||
#
|
||||
|
||||
-wi_EXTRA_DIRS(no, /usr/local /local /user/local /usr/share /opt /opt/local $QTDIR $GTKDIR $TCLDIR $SSLDIR)
|
||||
+wi_EXTRA_DIRS(no, /usr/local /local /user/local /usr/share /opt /opt/local /usr/X11R6 $QTDIR $GTKDIR $TCLDIR $SSLDIR, tcl8.2 )
|
||||
|
||||
#
|
||||
# misc
|
||||
@@ -320,7 +320,12 @@
|
||||
CONF_OBJ_SIZE_LIMIT=yes
|
||||
;;
|
||||
*bsd*)
|
||||
- CONF_SOEXT=so.1.0
|
||||
+ if test "X$PORTOBJFORMAT" = "Xelf"; then
|
||||
+ CONF_SHARED_CC="$CXX -shared -Wl,-x "
|
||||
+ CONF_SOEXT=so.1
|
||||
+ else
|
||||
+ CONF_SOEXT=so.1.0
|
||||
+ fi
|
||||
;;
|
||||
*cygwin32*)
|
||||
have_cdk=yes;
|
||||
@@ -600,7 +605,7 @@
|
||||
|
||||
if test X"$QTDIR" != X; then
|
||||
HAVE_QT=yes
|
||||
- AC_PATH_PROG(MOC, moc, no)
|
||||
+ AC_PATH_PROG(MOC, moc"$QTVER", no)
|
||||
if test X"$MOC" = Xno; then
|
||||
AC_MSG_WARN(cannot find moc. QT parts disabled.)
|
||||
HAVE_QT=no
|
168
devel/mico/files/patch-am
Normal file
168
devel/mico/files/patch-am
Normal file
|
@ -0,0 +1,168 @@
|
|||
--- MakeVars.in.orig Wed May 12 18:19:51 1999
|
||||
+++ MakeVars.in Wed May 12 18:20:40 1999
|
||||
@@ -25,7 +25,7 @@
|
||||
exec_prefix = @exec_prefix@
|
||||
SRCDIR = @ABSSRCDIR@
|
||||
INSTDIR = $(exec_prefix)
|
||||
-SHARED_INSTDIR = $(prefix)
|
||||
+SHARED_INSTDIR = $(prefix)/share
|
||||
|
||||
|
||||
HAVE_REPO = @HAVE_REPO@
|
||||
--- demo/MakeVars.orig Wed May 12 18:32:24 1999
|
||||
+++ demo/MakeVars Wed May 12 18:32:47 1999
|
||||
@@ -78,14 +78,14 @@
|
||||
endif
|
||||
|
||||
install:
|
||||
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/$(INSTALL_DIR)
|
||||
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/$(INSTALL_DIR)
|
||||
test -z "$(INSTALL_SRCS)" || \
|
||||
eval 'for i in $(INSTALL_SRCS); do \
|
||||
- $(ISRCCMD) $$i $(INSTDIR)/doc/mico/examples/$(INSTALL_DIR); \
|
||||
+ $(ISRCCMD) $$i $(SHARED_INSTDIR)/doc/mico/examples/$(INSTALL_DIR); \
|
||||
done'
|
||||
test -z "$(INSTALL_SCRIPTS)" || \
|
||||
eval 'for i in $(INSTALL_SCRIPTS); do \
|
||||
- $(ISCRIPTCMD) $$i $(INSTDIR)/doc/mico/examples/$(INSTALL_DIR); \
|
||||
+ $(ISCRIPTCMD) $$i $(SHARED_INSTDIR)/doc/mico/examples/$(INSTALL_DIR); \
|
||||
done'
|
||||
|
||||
ifeq (.depend, $(wildcard .depend))
|
||||
--- demo/Makefile.orig Wed May 12 18:29:55 1999
|
||||
+++ demo/Makefile Wed May 12 18:30:12 1999
|
||||
@@ -64,12 +64,12 @@
|
||||
for i in $(DIRS); do $(MAKE) -C $$i clean || exit 1; done
|
||||
|
||||
install:
|
||||
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples
|
||||
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples
|
||||
sed -e s/@MICO_VERSION@/$(VERSION)/g \
|
||||
< MakeVars.install > MakeVars.install.ver
|
||||
- $(ISRCCMD) MakeVars.install.ver $(INSTDIR)/doc/mico/examples/MakeVars
|
||||
+ $(ISRCCMD) MakeVars.install.ver $(SHARED_INSTDIR)/doc/mico/examples/MakeVars
|
||||
rm -f MakeVars.install.ver
|
||||
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples
|
||||
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples
|
||||
for i in $(INST_DIRS); do $(MAKE) -C $$i install || exit 1; done
|
||||
|
||||
install-cd: install
|
||||
--- demo/interop/Makefile.orig Wed May 12 18:30:42 1999
|
||||
+++ demo/interop/Makefile Wed May 12 18:31:17 1999
|
||||
@@ -30,7 +30,7 @@
|
||||
for i in $(DIRS); do $(MAKE) -C $$i clean || exit 1; done
|
||||
|
||||
install:
|
||||
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/interop
|
||||
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/interop
|
||||
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/interop
|
||||
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/interop
|
||||
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/interop
|
||||
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/interop
|
||||
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done
|
||||
--- demo/poa/Makefile.orig Wed May 12 18:33:14 1999
|
||||
+++ demo/poa/Makefile Wed May 12 18:33:28 1999
|
||||
@@ -13,7 +13,7 @@
|
||||
rm -f *.o core *~ .depend
|
||||
|
||||
install:
|
||||
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/poa
|
||||
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/poa
|
||||
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/poa
|
||||
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/poa
|
||||
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/poa
|
||||
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/poa
|
||||
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done
|
||||
--- demo/redlich/Makefile.orig Wed May 12 18:33:38 1999
|
||||
+++ demo/redlich/Makefile Wed May 12 18:33:52 1999
|
||||
@@ -33,7 +33,7 @@
|
||||
for i in $(DIRS); do $(MAKE) -C $$i clean || exit 1; done
|
||||
|
||||
install:
|
||||
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/redlich
|
||||
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/redlich
|
||||
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/redlich
|
||||
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/redlich
|
||||
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/redlich
|
||||
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/redlich
|
||||
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done
|
||||
--- man/Makefile.orig Wed May 12 18:27:23 1999
|
||||
+++ man/Makefile Wed May 12 18:27:40 1999
|
||||
@@ -26,9 +26,9 @@
|
||||
|
||||
install:
|
||||
for i in $(DIRS); do \
|
||||
- $(IDIRCMD) $(SHARED_INSTDIR)/man/$$i; \
|
||||
+ $(IDIRCMD) $(prefix)/man/$$i; \
|
||||
for j in $$i/*.[1-9]; do $(IMANCMD) $$j \
|
||||
- $(SHARED_INSTDIR)/man/$$i/; done; \
|
||||
+ $(prefix)/man/$$i/; done; \
|
||||
done
|
||||
|
||||
install-cd: install
|
||||
--- demo/boa/Makefile.orig Mon Sep 27 22:52:48 1999
|
||||
+++ demo/boa/Makefile Mon Sep 27 22:53:43 1999
|
||||
@@ -31,7 +31,7 @@
|
||||
for i in $(DIRS); do $(MAKE) -C $$i clean || exit 1; done
|
||||
|
||||
install:
|
||||
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/boa
|
||||
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/boa
|
||||
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/boa
|
||||
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/boa
|
||||
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/boa
|
||||
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/boa
|
||||
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done
|
||||
--- demo/dispatcher/Makefile.orig Mon Sep 27 22:54:58 1999
|
||||
+++ demo/dispatcher/Makefile Mon Sep 27 22:55:23 1999
|
||||
@@ -27,8 +27,8 @@
|
||||
rm -f *.o core *~ .depend
|
||||
|
||||
install:
|
||||
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/dispatcher
|
||||
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/dispatcher
|
||||
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/dispatcher
|
||||
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/dispatcher
|
||||
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/dispatcher
|
||||
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/dispatcher
|
||||
test -z "$(DIRS)" || \
|
||||
eval 'for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done'
|
||||
--- demo/obv/Makefile.orig Mon Sep 27 22:56:17 1999
|
||||
+++ demo/obv/Makefile Mon Sep 27 22:56:39 1999
|
||||
@@ -13,7 +13,7 @@
|
||||
rm -f *.o core *~ .depend
|
||||
|
||||
install:
|
||||
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/obv
|
||||
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/obv
|
||||
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/obv
|
||||
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/obv
|
||||
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/obv
|
||||
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/obv
|
||||
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done
|
||||
--- demo/services/Makefile.orig Mon Sep 27 22:57:19 1999
|
||||
+++ demo/services/Makefile Mon Sep 27 22:57:43 1999
|
||||
@@ -13,7 +13,7 @@
|
||||
rm -f *.o core *~ .depend
|
||||
|
||||
install:
|
||||
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/services
|
||||
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/services
|
||||
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/services
|
||||
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/services
|
||||
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/services
|
||||
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/services
|
||||
for i in $(DIRS) stream-sound; do $(MAKE) -C $$i install || exit 1; done
|
||||
--- demo/siegel/Makefile.orig Mon Jan 10 23:43:52 2000
|
||||
+++ demo/siegel/Makefile Mon Jan 10 23:44:19 2000
|
||||
@@ -33,7 +33,7 @@
|
||||
for i in $(DIRS); do $(MAKE) -C $$i clean || exit 1; done
|
||||
|
||||
install:
|
||||
- $(IDIRCMD) $(INSTDIR)/doc/mico/examples/siegel
|
||||
- $(ISRCCMD) Makefile $(INSTDIR)/doc/mico/examples/siegel
|
||||
- $(ISRCCMD) README $(INSTDIR)/doc/mico/examples/siegel
|
||||
+ $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico/examples/siegel
|
||||
+ $(ISRCCMD) Makefile $(SHARED_INSTDIR)/doc/mico/examples/siegel
|
||||
+ $(ISRCCMD) README $(SHARED_INSTDIR)/doc/mico/examples/siegel
|
||||
for i in $(DIRS); do $(MAKE) -C $$i install || exit 1; done
|
20
devel/mico/files/patch-an
Normal file
20
devel/mico/files/patch-an
Normal file
|
@ -0,0 +1,20 @@
|
|||
--- auxdir/Makefile.orig Tue Jul 20 15:57:27 1999
|
||||
+++ auxdir/Makefile Mon Jan 10 17:51:58 2000
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
LDLIBS = -lmico$(VERSION) $(CONFLIBS)
|
||||
LDFLAGS := -L../orb $(LDFLAGS)
|
||||
-CXXFLAGS := -I. -I../include $(CXXFLAGS) $(X_CFLAGS)
|
||||
+CXXFLAGS := -I. -I../include -I$(QT_INCLUDES) $(CXXFLAGS) $(X_CFLAGS)
|
||||
|
||||
AUX_SRCS=dynany_impl.cc
|
||||
STATIC_AUX_OBJS = $(AUX_SRCS:.cc=.o)
|
||||
@@ -119,7 +119,7 @@
|
||||
endif
|
||||
rm -f $@
|
||||
$(LDSO) -o libmicoqt$(VERSION) $(SHARED_QT_OBJS) \
|
||||
- $(PURE_LDFLAGS) -lqt -lX11 -L../libs -lmico$(VERSION)
|
||||
+ $(PURE_LDFLAGS) -lqt$(QTVER) -lX11 -L../libs -lmico$(VERSION)
|
||||
$(IDIRCMD) ../libs
|
||||
cd ../libs; rm -f $@; ln -f -s ../auxdir/$@ .
|
||||
|
19
devel/mico/files/patch-ao
Normal file
19
devel/mico/files/patch-ao
Normal file
|
@ -0,0 +1,19 @@
|
|||
--- admin/mico-shld.def.in.orig Mon Jul 26 20:44:44 1999
|
||||
+++ admin/mico-shld.def.in Mon Sep 27 23:32:57 1999
|
||||
@@ -50,10 +50,15 @@
|
||||
outfile=` echo "$outfile" | sed -e 's/\.o$//' `'.@SOEXT@'
|
||||
|
||||
ldcmd="@SHARED_CC@ @PICFLAGS@ @LDSOFLAGS@ @DLFLAGS@ $libdirs @LDFLAGS@ -o $outfile \
|
||||
- $args" # @LIBS@
|
||||
+-Wl,-soname,$outfile $args" # @LIBS@
|
||||
|
||||
echo "$ldcmd"
|
||||
eval "$ldcmd" || exit
|
||||
+
|
||||
+symlink=` echo "$outfile" | sed 's/\.[1234567890]$//' `
|
||||
+
|
||||
+lncmd="ln -s $outfile $symlink"
|
||||
+eval "$lncmd" || exit
|
||||
|
||||
# for HP-UX
|
||||
chmod 555 "$outfile"
|
11
devel/mico/files/patch-ap
Normal file
11
devel/mico/files/patch-ap
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- coss/time/Makefile.orig Mon Sep 27 00:12:40 1999
|
||||
+++ coss/time/Makefile Mon Sep 27 00:12:55 1999
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
include ../../MakeVars
|
||||
|
||||
-LDLIBS = -lmicocoss$(VERSION) -lmico$(VERSION) $(CONFLIBS)
|
||||
+LDLIBS = -lmicocoss$(VERSION) -lmico$(VERSION) $(CONFLIBS) -lcompat
|
||||
LDFLAGS := -L.. -L.. -L../../orb $(LDFLAGS)
|
||||
CXXFLAGS := -I. -I../../include $(CXXFLAGS) $(EHFLAGS)
|
||||
IDLFLAGS := -I../../include --poa --no-boa --relative-paths
|
10
devel/mico/files/patch-aq
Normal file
10
devel/mico/files/patch-aq
Normal file
|
@ -0,0 +1,10 @@
|
|||
--- Makefile.orig Fri Dec 3 14:35:16 1999
|
||||
+++ Makefile Fri Dec 3 14:36:14 1999
|
||||
@@ -62,7 +62,6 @@
|
||||
$(IDIRCMD) $(SHARED_INSTDIR)/doc/mico; \
|
||||
$(IMANCMD) doc/doc.ps $(SHARED_INSTDIR)/doc/mico/manual.ps; \
|
||||
fi
|
||||
- -ldconfig
|
||||
|
||||
install-cd:
|
||||
for i in $(INSTALLDIRS); do $(MAKE) -C $$i install-cd || exit 1; done
|
10
devel/mico/files/patch-ar
Normal file
10
devel/mico/files/patch-ar
Normal file
|
@ -0,0 +1,10 @@
|
|||
--- aclocal.m4.orig Sun Nov 28 00:34:22 1999
|
||||
+++ aclocal.m4 Sun Nov 28 00:34:47 1999
|
||||
@@ -684,6 +684,7 @@
|
||||
AC_TRY_RUN([
|
||||
#include <gtk/gtk.h>
|
||||
#include <stdio.h>
|
||||
+#include <stdlib.h>
|
||||
|
||||
int
|
||||
main ()
|
1
devel/mico/pkg-comment
Normal file
1
devel/mico/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A CORBA 2.0 implementation which goal is freely available
|
4
devel/mico/pkg-descr
Normal file
4
devel/mico/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
a CORBA 2.0 implementation which goal is freely available
|
||||
|
||||
WWW: http://diamant.vsb.cs.uni-frankfurt.de/~mico/
|
||||
http://www.mico.org
|
613
devel/mico/pkg-plist
Normal file
613
devel/mico/pkg-plist
Normal file
|
@ -0,0 +1,613 @@
|
|||
bin/containmentd
|
||||
bin/eventd
|
||||
bin/idl
|
||||
bin/imr
|
||||
bin/iordump
|
||||
bin/ird
|
||||
bin/mico-ar
|
||||
bin/mico-c++
|
||||
bin/mico-cpp
|
||||
bin/mico-ld
|
||||
bin/mico-shc++
|
||||
bin/mico-shld
|
||||
bin/micod
|
||||
bin/noded
|
||||
bin/nsadmin
|
||||
bin/nsd
|
||||
bin/propertyd
|
||||
bin/proxyd
|
||||
bin/randomd
|
||||
bin/referenced
|
||||
bin/timed
|
||||
bin/traderd
|
||||
bin/traversald
|
||||
include/CORBA-SMALL.h
|
||||
include/CORBA.h
|
||||
include/mico/CosContainment.h
|
||||
include/mico/CosContainment.idl
|
||||
include/mico/CosContainment_impl.h
|
||||
include/mico/CosEventChannelAdmin.h
|
||||
include/mico/CosEventChannelAdmin.idl
|
||||
include/mico/CosEventComm.h
|
||||
include/mico/CosEventComm.idl
|
||||
include/mico/CosGraphs.h
|
||||
include/mico/CosGraphs.idl
|
||||
include/mico/CosGraphsExtension.h
|
||||
include/mico/CosGraphsExtension.idl
|
||||
include/mico/CosNaming.h
|
||||
include/mico/CosNaming.idl
|
||||
include/mico/CosObjectIdentity.h
|
||||
include/mico/CosObjectIdentity.idl
|
||||
include/mico/CosReference.h
|
||||
include/mico/CosReference.idl
|
||||
include/mico/CosReference_impl.h
|
||||
include/mico/CosRelationships.h
|
||||
include/mico/CosRelationships.idl
|
||||
include/mico/CosTime.h
|
||||
include/mico/CosTime.idl
|
||||
include/mico/CosTrading.h
|
||||
include/mico/CosTrading.idl
|
||||
include/mico/CosTradingRepos.h
|
||||
include/mico/CosTradingRepos.idl
|
||||
include/mico/EdgeIterator_impl.h
|
||||
include/mico/GenericCriteriaFactory_impl.h
|
||||
include/mico/GraphsRole_impl.h
|
||||
include/mico/IdentifiableObject_impl.h
|
||||
include/mico/InterfaceDefsHelper.h
|
||||
include/mico/NamedRoleTypesHelper.h
|
||||
include/mico/NodeFactory_impl.h
|
||||
include/mico/Node_impl.h
|
||||
include/mico/PropertyService.h
|
||||
include/mico/PropertyService.idl
|
||||
include/mico/PropertyService_impl.h
|
||||
include/mico/RandomGenerator.h
|
||||
include/mico/RandomGenerator.idl
|
||||
include/mico/RandomGenerator_impl.h
|
||||
include/mico/RelationshipFactory_impl.h
|
||||
include/mico/RelationshipIterator_impl.h
|
||||
include/mico/Relationship_impl.h
|
||||
include/mico/RoleFactory_impl.h
|
||||
include/mico/Role_impl.h
|
||||
include/mico/TraversalCriteria_impl.h
|
||||
include/mico/TraversalFactory_impl.h
|
||||
include/mico/Traversal_impl.h
|
||||
include/mico/address.h
|
||||
include/mico/address_impl.h
|
||||
include/mico/any.h
|
||||
include/mico/array.h
|
||||
include/mico/assert.h
|
||||
include/mico/basic.h
|
||||
include/mico/basic_seq.h
|
||||
include/mico/basic_seq.idl
|
||||
include/mico/boa.h
|
||||
include/mico/boa_impl.h
|
||||
include/mico/buffer.h
|
||||
include/mico/code_set_registry.h
|
||||
include/mico/codec.h
|
||||
include/mico/codec_impl.h
|
||||
include/mico/codeset.h
|
||||
include/mico/codeset_impl.h
|
||||
include/mico/config-win32.h
|
||||
include/mico/config.h
|
||||
include/mico/config.h.in
|
||||
include/mico/conv_frame.idl
|
||||
include/mico/current.h
|
||||
include/mico/current.idl
|
||||
include/mico/dii.h
|
||||
include/mico/dispatch.h
|
||||
include/mico/dsi.h
|
||||
include/mico/dynany.h
|
||||
include/mico/dynany.idl
|
||||
include/mico/dynany_impl.h
|
||||
include/mico/except.h
|
||||
include/mico/fixed.h
|
||||
include/mico/fltkmico.h
|
||||
include/mico/gtkmico.h
|
||||
include/mico/impl.h
|
||||
include/mico/imr.h
|
||||
include/mico/imr.idl
|
||||
include/mico/imr_impl.h
|
||||
include/mico/intercept.h
|
||||
include/mico/intercept.idl
|
||||
include/mico/iop.h
|
||||
include/mico/ioptypes.h
|
||||
include/mico/ioptypes.idl
|
||||
include/mico/ior.h
|
||||
include/mico/ior_impl.h
|
||||
include/mico/ir.h
|
||||
include/mico/ir.idl
|
||||
include/mico/ir_base.h
|
||||
include/mico/ir_base.idl
|
||||
include/mico/ir_fwd.h
|
||||
include/mico/ir_impl.h
|
||||
include/mico/lmath.h
|
||||
include/mico/magic.h
|
||||
include/mico/memtrace.h
|
||||
include/mico/native.h
|
||||
include/mico/object.h
|
||||
include/mico/operators.h
|
||||
include/mico/orb.h
|
||||
include/mico/orb.idl
|
||||
include/mico/orb_excepts.h
|
||||
include/mico/orb_excepts.idl
|
||||
include/mico/orb_fwd.h
|
||||
include/mico/orb_impl.h
|
||||
include/mico/os-math.h
|
||||
include/mico/os-misc.h
|
||||
include/mico/os-net.h
|
||||
include/mico/poa.h
|
||||
include/mico/poa.idl
|
||||
include/mico/poa_base.h
|
||||
include/mico/poa_impl.h
|
||||
include/mico/poa_stubs.h
|
||||
include/mico/policy.h
|
||||
include/mico/policy.idl
|
||||
include/mico/policy2.h
|
||||
include/mico/policy2.idl
|
||||
include/mico/policy_impl.h
|
||||
include/mico/process.h
|
||||
include/mico/process_impl.h
|
||||
include/mico/qtmico.h
|
||||
include/mico/random.h
|
||||
include/mico/random.idl
|
||||
include/mico/rtti.h
|
||||
include/mico/sequence.h
|
||||
include/mico/sequence_special.h
|
||||
include/mico/service_info.h
|
||||
include/mico/service_info.idl
|
||||
include/mico/shlib.h
|
||||
include/mico/shlib_impl.h
|
||||
include/mico/ssl.h
|
||||
include/mico/ssliop.h
|
||||
include/mico/ssliop.idl
|
||||
include/mico/static-dispatch.h
|
||||
include/mico/static.h
|
||||
include/mico/stream.h
|
||||
include/mico/stream.idl
|
||||
include/mico/stream_impl.h
|
||||
include/mico/string.h
|
||||
include/mico/sysexc.h
|
||||
include/mico/tcconst.h
|
||||
include/mico/tckind.h
|
||||
include/mico/tckind.idl
|
||||
include/mico/tclmico.h
|
||||
include/mico/template_impl.h
|
||||
include/mico/throw.h
|
||||
include/mico/transport.h
|
||||
include/mico/transport_impl.h
|
||||
include/mico/typecode.h
|
||||
include/mico/types.h
|
||||
include/mico/util.h
|
||||
include/mico/value.h
|
||||
include/mico/valuetype.h
|
||||
include/mico/valuetype.idl
|
||||
include/mico/valuetype_impl.h
|
||||
include/mico/var.h
|
||||
include/mico/version.h
|
||||
include/mico/x11.h
|
||||
include/ministl/algo.h
|
||||
include/ministl/algorithm
|
||||
include/ministl/bool.h
|
||||
include/ministl/bstring.h
|
||||
include/ministl/defalloc.h
|
||||
include/ministl/function
|
||||
include/ministl/function.h
|
||||
include/ministl/list
|
||||
include/ministl/list.h
|
||||
include/ministl/map
|
||||
include/ministl/map.h
|
||||
include/ministl/ministl.h
|
||||
include/ministl/pair
|
||||
include/ministl/pair.h
|
||||
include/ministl/set
|
||||
include/ministl/set.h
|
||||
include/ministl/simplevec.h
|
||||
include/ministl/string
|
||||
include/ministl/vector
|
||||
include/ministl/vector.h
|
||||
lib/libmico.%%MICOVER%%.so
|
||||
lib/libmico%%MICOVER%%.a
|
||||
lib/libmico%%MICOVER%%.so.1
|
||||
lib/libmicoaux.%%MICOVER%%.so
|
||||
lib/libmicoaux%%MICOVER%%.a
|
||||
lib/libmicoaux%%MICOVER%%.so.1
|
||||
lib/libmicocoss.%%MICOVER%%.so
|
||||
lib/libmicocoss%%MICOVER%%.a
|
||||
lib/libmicocoss%%MICOVER%%.so.1
|
||||
lib/libmicogtk.%%MICOVER%%.so
|
||||
lib/libmicogtk%%MICOVER%%.a
|
||||
lib/libmicogtk%%MICOVER%%.so.1
|
||||
lib/libmicoqt.%%MICOVER%%.so
|
||||
lib/libmicoqt%%MICOVER%%.a
|
||||
lib/libmicoqt%%MICOVER%%.so.1
|
||||
lib/libmicotcl.%%MICOVER%%.so
|
||||
lib/libmicotcl%%MICOVER%%.a
|
||||
lib/libmicotcl%%MICOVER%%.so.1
|
||||
lib/libmicox.%%MICOVER%%.so
|
||||
lib/libmicox%%MICOVER%%.a
|
||||
lib/libmicox%%MICOVER%%.so.1
|
||||
lib/mico-setup.csh
|
||||
lib/mico-setup.sh
|
||||
share/doc/mico/examples/MakeVars
|
||||
share/doc/mico/examples/README
|
||||
share/doc/mico/examples/bench/Makefile
|
||||
share/doc/mico/examples/bench/bench
|
||||
share/doc/mico/examples/bench/bench.idl
|
||||
share/doc/mico/examples/bench/bench_impl.h
|
||||
share/doc/mico/examples/bench/client.cc
|
||||
share/doc/mico/examples/bench/server.cc
|
||||
share/doc/mico/examples/boa/Makefile
|
||||
share/doc/mico/examples/boa/README
|
||||
share/doc/mico/examples/boa/account/Makefile
|
||||
share/doc/mico/examples/boa/account/account.idl
|
||||
share/doc/mico/examples/boa/account/main.cc
|
||||
share/doc/mico/examples/boa/account2/Makefile
|
||||
share/doc/mico/examples/boa/account2/account
|
||||
share/doc/mico/examples/boa/account2/account.idl
|
||||
share/doc/mico/examples/boa/account2/client.cc
|
||||
share/doc/mico/examples/boa/account2/server.cc
|
||||
share/doc/mico/examples/boa/account3/Makefile
|
||||
share/doc/mico/examples/boa/account3/account
|
||||
share/doc/mico/examples/boa/account3/account.idl
|
||||
share/doc/mico/examples/boa/account3/client.cc
|
||||
share/doc/mico/examples/boa/account3/server.cc
|
||||
share/doc/mico/examples/boa/account4/Makefile
|
||||
share/doc/mico/examples/boa/account4/account
|
||||
share/doc/mico/examples/boa/account4/account.idl
|
||||
share/doc/mico/examples/boa/account4/client.cc
|
||||
share/doc/mico/examples/boa/account4/server.cc
|
||||
share/doc/mico/examples/boa/activate/Makefile
|
||||
share/doc/mico/examples/boa/activate/client.cc
|
||||
share/doc/mico/examples/boa/activate/hello-permethod
|
||||
share/doc/mico/examples/boa/activate/hello-shared
|
||||
share/doc/mico/examples/boa/activate/hello-unshared
|
||||
share/doc/mico/examples/boa/activate/hello.idl
|
||||
share/doc/mico/examples/boa/activate/server.cc
|
||||
share/doc/mico/examples/codesets/Makefile
|
||||
share/doc/mico/examples/codesets/client.cc
|
||||
share/doc/mico/examples/codesets/hello.idl
|
||||
share/doc/mico/examples/codesets/runit
|
||||
share/doc/mico/examples/codesets/server.cc
|
||||
share/doc/mico/examples/dispatcher/Makefile
|
||||
share/doc/mico/examples/dispatcher/README
|
||||
share/doc/mico/examples/dispatcher/gtkmico/Makefile
|
||||
share/doc/mico/examples/dispatcher/gtkmico/README
|
||||
share/doc/mico/examples/dispatcher/gtkmico/client.cc
|
||||
share/doc/mico/examples/dispatcher/gtkmico/gtkhello
|
||||
share/doc/mico/examples/dispatcher/gtkmico/hello.idl
|
||||
share/doc/mico/examples/dispatcher/gtkmico/server.cc
|
||||
share/doc/mico/examples/dispatcher/qtmico/Makefile
|
||||
share/doc/mico/examples/dispatcher/qtmico/README
|
||||
share/doc/mico/examples/dispatcher/qtmico/client.cc
|
||||
share/doc/mico/examples/dispatcher/qtmico/hello.idl
|
||||
share/doc/mico/examples/dispatcher/qtmico/qthello1
|
||||
share/doc/mico/examples/dispatcher/qtmico/qthello2
|
||||
share/doc/mico/examples/dispatcher/qtmico/server.cc
|
||||
share/doc/mico/examples/dispatcher/x11/Makefile
|
||||
share/doc/mico/examples/dispatcher/x11/client.cc
|
||||
share/doc/mico/examples/dispatcher/x11/hello.idl
|
||||
share/doc/mico/examples/dispatcher/x11/server.cc
|
||||
share/doc/mico/examples/dispatcher/x11/xhello
|
||||
share/doc/mico/examples/dynany/Makefile
|
||||
share/doc/mico/examples/dynany/dynany.cc
|
||||
share/doc/mico/examples/dynany/dynanytest.cc
|
||||
share/doc/mico/examples/dynany/test.idl
|
||||
share/doc/mico/examples/henning/README
|
||||
share/doc/mico/examples/henning/diffs
|
||||
share/doc/mico/examples/interceptor/Makefile
|
||||
share/doc/mico/examples/interceptor/client.cc
|
||||
share/doc/mico/examples/interceptor/hello.idl
|
||||
share/doc/mico/examples/interceptor/runit
|
||||
share/doc/mico/examples/interceptor/server.cc
|
||||
share/doc/mico/examples/interop/Makefile
|
||||
share/doc/mico/examples/interop/README
|
||||
share/doc/mico/examples/interop/jacorb/Account.idl
|
||||
share/doc/mico/examples/interop/jacorb/Client.java
|
||||
share/doc/mico/examples/interop/jacorb/ClientApplet.html.in
|
||||
share/doc/mico/examples/interop/jacorb/ClientApplet.java
|
||||
share/doc/mico/examples/interop/jacorb/Makefile
|
||||
share/doc/mico/examples/interop/jacorb/README
|
||||
share/doc/mico/examples/interop/jacorb/Server.java
|
||||
share/doc/mico/examples/interop/jacorb/account
|
||||
share/doc/mico/examples/interop/jacorb/client.cc
|
||||
share/doc/mico/examples/interop/jacorb/run_applet
|
||||
share/doc/mico/examples/interop/jacorb/server.cc
|
||||
share/doc/mico/examples/interop/jdk/Account.idl
|
||||
share/doc/mico/examples/interop/jdk/Client.java
|
||||
share/doc/mico/examples/interop/jdk/ClientApplet.html.in
|
||||
share/doc/mico/examples/interop/jdk/ClientApplet.java
|
||||
share/doc/mico/examples/interop/jdk/Makefile
|
||||
share/doc/mico/examples/interop/jdk/README
|
||||
share/doc/mico/examples/interop/jdk/account
|
||||
share/doc/mico/examples/interop/jdk/main.cc
|
||||
share/doc/mico/examples/interop/jdk/run_applet
|
||||
share/doc/mico/examples/interop/orbix/Makefile
|
||||
share/doc/mico/examples/interop/orbix/README
|
||||
share/doc/mico/examples/interop/orbix/grid.idl
|
||||
share/doc/mico/examples/interop/orbix/main.cc
|
||||
share/doc/mico/examples/interop/visibroker/Account.idl
|
||||
share/doc/mico/examples/interop/visibroker/Client.java
|
||||
share/doc/mico/examples/interop/visibroker/ClientApplet.html.in
|
||||
share/doc/mico/examples/interop/visibroker/ClientApplet.java
|
||||
share/doc/mico/examples/interop/visibroker/Makefile
|
||||
share/doc/mico/examples/interop/visibroker/README
|
||||
share/doc/mico/examples/interop/visibroker/account
|
||||
share/doc/mico/examples/interop/visibroker/main.cc
|
||||
share/doc/mico/examples/interop/visibroker/run_applet
|
||||
share/doc/mico/examples/mcast/Makefile
|
||||
share/doc/mico/examples/mcast/client.cc
|
||||
share/doc/mico/examples/mcast/hello.idl
|
||||
share/doc/mico/examples/mcast/runit
|
||||
share/doc/mico/examples/mcast/server.cc
|
||||
share/doc/mico/examples/obv/Makefile
|
||||
share/doc/mico/examples/obv/README
|
||||
share/doc/mico/examples/obv/abstract/Makefile
|
||||
share/doc/mico/examples/obv/abstract/README
|
||||
share/doc/mico/examples/obv/abstract/abstract
|
||||
share/doc/mico/examples/obv/abstract/abstract.idl
|
||||
share/doc/mico/examples/obv/abstract/abstract_impl.h
|
||||
share/doc/mico/examples/obv/abstract/client.cc
|
||||
share/doc/mico/examples/obv/abstract/server.cc
|
||||
share/doc/mico/examples/obv/custom/Makefile
|
||||
share/doc/mico/examples/obv/custom/README
|
||||
share/doc/mico/examples/obv/custom/custom
|
||||
share/doc/mico/examples/obv/custom/custom.idl
|
||||
share/doc/mico/examples/obv/custom/custom_impl.cc
|
||||
share/doc/mico/examples/obv/custom/custom_impl.h
|
||||
share/doc/mico/examples/obv/custom/test.cc
|
||||
share/doc/mico/examples/obv/date/Makefile
|
||||
share/doc/mico/examples/obv/date/calendar.idl
|
||||
share/doc/mico/examples/obv/date/client.cc
|
||||
share/doc/mico/examples/obv/date/date
|
||||
share/doc/mico/examples/obv/date/date.idl
|
||||
share/doc/mico/examples/obv/date/date_impl.cc
|
||||
share/doc/mico/examples/obv/date/date_impl.h
|
||||
share/doc/mico/examples/obv/date/server.cc
|
||||
share/doc/mico/examples/obv/tree/Makefile
|
||||
share/doc/mico/examples/obv/tree/client.cc
|
||||
share/doc/mico/examples/obv/tree/server.cc
|
||||
share/doc/mico/examples/obv/tree/tree
|
||||
share/doc/mico/examples/obv/tree/tree.idl
|
||||
share/doc/mico/examples/obv/tree/tree_impl.cc
|
||||
share/doc/mico/examples/obv/tree/tree_impl.h
|
||||
share/doc/mico/examples/obv/tricky/Makefile
|
||||
share/doc/mico/examples/obv/tricky/client.cc
|
||||
share/doc/mico/examples/obv/tricky/server.cc
|
||||
share/doc/mico/examples/obv/tricky/tricky
|
||||
share/doc/mico/examples/obv/tricky/tricky.idl
|
||||
share/doc/mico/examples/obv/tricky/tricky_impl.cc
|
||||
share/doc/mico/examples/obv/tricky/tricky_impl.h
|
||||
share/doc/mico/examples/poa/Makefile
|
||||
share/doc/mico/examples/poa/README
|
||||
share/doc/mico/examples/poa/account-1/Makefile
|
||||
share/doc/mico/examples/poa/account-1/account
|
||||
share/doc/mico/examples/poa/account-1/account.idl
|
||||
share/doc/mico/examples/poa/account-1/client.cc
|
||||
share/doc/mico/examples/poa/account-1/server.cc
|
||||
share/doc/mico/examples/poa/account-2/Makefile
|
||||
share/doc/mico/examples/poa/account-2/account
|
||||
share/doc/mico/examples/poa/account-2/account.idl
|
||||
share/doc/mico/examples/poa/account-2/client.cc
|
||||
share/doc/mico/examples/poa/account-2/server.cc
|
||||
share/doc/mico/examples/poa/account-3/Makefile
|
||||
share/doc/mico/examples/poa/account-3/account
|
||||
share/doc/mico/examples/poa/account-3/account.idl
|
||||
share/doc/mico/examples/poa/account-3/client.cc
|
||||
share/doc/mico/examples/poa/account-3/server.cc
|
||||
share/doc/mico/examples/poa/hello-1/Makefile
|
||||
share/doc/mico/examples/poa/hello-1/client.cc
|
||||
share/doc/mico/examples/poa/hello-1/hello
|
||||
share/doc/mico/examples/poa/hello-1/hello.idl
|
||||
share/doc/mico/examples/poa/hello-1/server.cc
|
||||
share/doc/mico/examples/poa/hello-2/Makefile
|
||||
share/doc/mico/examples/poa/hello-2/client.cc
|
||||
share/doc/mico/examples/poa/hello-2/hello
|
||||
share/doc/mico/examples/poa/hello-2/hello.idl
|
||||
share/doc/mico/examples/poa/hello-2/server.cc
|
||||
share/doc/mico/examples/poa/inherit/Makefile
|
||||
share/doc/mico/examples/poa/inherit/client.cc
|
||||
share/doc/mico/examples/poa/inherit/inherit
|
||||
share/doc/mico/examples/poa/inherit/inherit.idl
|
||||
share/doc/mico/examples/poa/inherit/server.cc
|
||||
share/doc/mico/examples/random/Makefile
|
||||
share/doc/mico/examples/random/client.cc
|
||||
share/doc/mico/examples/random/random.idl
|
||||
share/doc/mico/examples/redlich/Calc-1/Makefile
|
||||
share/doc/mico/examples/redlich/Calc-1/calc.idl
|
||||
share/doc/mico/examples/redlich/Calc-1/client.cc
|
||||
share/doc/mico/examples/redlich/Calc-1/server.cc
|
||||
share/doc/mico/examples/redlich/Calc-2/Makefile
|
||||
share/doc/mico/examples/redlich/Calc-2/calc.idl
|
||||
share/doc/mico/examples/redlich/Calc-2/client.cc
|
||||
share/doc/mico/examples/redlich/Calc-2/server.cc
|
||||
share/doc/mico/examples/redlich/Calc-3/Makefile
|
||||
share/doc/mico/examples/redlich/Calc-3/calc.idl
|
||||
share/doc/mico/examples/redlich/Calc-3/client.cc
|
||||
share/doc/mico/examples/redlich/Calc-3/server.cc
|
||||
share/doc/mico/examples/redlich/Calc-4/Makefile
|
||||
share/doc/mico/examples/redlich/Calc-4/calc.idl
|
||||
share/doc/mico/examples/redlich/Calc-4/client.cc
|
||||
share/doc/mico/examples/redlich/Calc-4/server.cc
|
||||
share/doc/mico/examples/redlich/Hello-1/Makefile
|
||||
share/doc/mico/examples/redlich/Hello-1/client.cc
|
||||
share/doc/mico/examples/redlich/Hello-1/server.cc
|
||||
share/doc/mico/examples/redlich/Hello-1/tty.idl
|
||||
share/doc/mico/examples/redlich/Hello-2/Makefile
|
||||
share/doc/mico/examples/redlich/Hello-2/client.cc
|
||||
share/doc/mico/examples/redlich/Hello-2/server.cc
|
||||
share/doc/mico/examples/redlich/Hello-2/tty.idl
|
||||
share/doc/mico/examples/redlich/Hello-3/Makefile
|
||||
share/doc/mico/examples/redlich/Hello-3/client.cc
|
||||
share/doc/mico/examples/redlich/Hello-3/server.cc
|
||||
share/doc/mico/examples/redlich/Hello-3/tty.idl
|
||||
share/doc/mico/examples/redlich/Hello-3/ttyplus.idl
|
||||
share/doc/mico/examples/redlich/Hello-4/Makefile
|
||||
share/doc/mico/examples/redlich/Hello-4/client.cc
|
||||
share/doc/mico/examples/redlich/Hello-4/server.cc
|
||||
share/doc/mico/examples/redlich/Hello-4/tty.idl
|
||||
share/doc/mico/examples/redlich/Hello-4/ttyplus.idl
|
||||
share/doc/mico/examples/redlich/Makefile
|
||||
share/doc/mico/examples/redlich/README
|
||||
share/doc/mico/examples/services/Makefile
|
||||
share/doc/mico/examples/services/README
|
||||
share/doc/mico/examples/services/events/Makefile
|
||||
share/doc/mico/examples/services/events/client.cc
|
||||
share/doc/mico/examples/services/events/client2.cc
|
||||
share/doc/mico/examples/services/events/runit
|
||||
share/doc/mico/examples/services/events/server.cc
|
||||
share/doc/mico/examples/services/events/server2.cc
|
||||
share/doc/mico/examples/services/events/server3.cc
|
||||
share/doc/mico/examples/services/naming/Makefile
|
||||
share/doc/mico/examples/services/naming/account.idl
|
||||
share/doc/mico/examples/services/naming/account_test
|
||||
share/doc/mico/examples/services/naming/client.cc
|
||||
share/doc/mico/examples/services/naming/server.cc
|
||||
share/doc/mico/examples/services/property-daemon/Makefile
|
||||
share/doc/mico/examples/services/property-daemon/README
|
||||
share/doc/mico/examples/services/property-daemon/bank.idl
|
||||
share/doc/mico/examples/services/property-daemon/get_properties.cc
|
||||
share/doc/mico/examples/services/property-daemon/set_properties.cc
|
||||
share/doc/mico/examples/services/property-daemon/start_demo
|
||||
share/doc/mico/examples/services/relship/Documents.idl
|
||||
share/doc/mico/examples/services/relship/DocumentsServer.cc
|
||||
share/doc/mico/examples/services/relship/Documents_impl.cc
|
||||
share/doc/mico/examples/services/relship/Documents_impl.h
|
||||
share/doc/mico/examples/services/relship/Makefile
|
||||
share/doc/mico/examples/services/relship/README
|
||||
share/doc/mico/examples/services/relship/Test.idl
|
||||
share/doc/mico/examples/services/relship/TestServer.cc
|
||||
share/doc/mico/examples/services/relship/Test_impl.cc
|
||||
share/doc/mico/examples/services/relship/Test_impl.h
|
||||
share/doc/mico/examples/services/relship/daemons-start
|
||||
share/doc/mico/examples/services/relship/daemons-stop
|
||||
share/doc/mico/examples/services/relship/rundemo
|
||||
share/doc/mico/examples/services/relship/servers-start
|
||||
share/doc/mico/examples/services/relship/simple-test.cc
|
||||
share/doc/mico/examples/services/relship/stop-servers
|
||||
share/doc/mico/examples/services/relship/test
|
||||
share/doc/mico/examples/services/stream-bench/Makefile
|
||||
share/doc/mico/examples/services/stream-bench/bench
|
||||
share/doc/mico/examples/services/stream-bench/req.idl
|
||||
share/doc/mico/examples/services/stream-bench/req_client.cc
|
||||
share/doc/mico/examples/services/stream-bench/req_server.cc
|
||||
share/doc/mico/examples/services/stream-bench/stream_client.cc
|
||||
share/doc/mico/examples/services/stream-bench/stream_server.cc
|
||||
share/doc/mico/examples/services/stream-sound/Makefile
|
||||
share/doc/mico/examples/services/stream-sound/client.cc
|
||||
share/doc/mico/examples/services/stream-sound/server.cc
|
||||
share/doc/mico/examples/services/stream-sound/sound.h
|
||||
share/doc/mico/examples/services/trader/Makefile
|
||||
share/doc/mico/examples/services/trader/demo.idl
|
||||
share/doc/mico/examples/services/trader/main.cc
|
||||
share/doc/mico/examples/services/trader/run
|
||||
share/doc/mico/examples/shlib/Makefile
|
||||
share/doc/mico/examples/shlib/client.cc
|
||||
share/doc/mico/examples/shlib/hello
|
||||
share/doc/mico/examples/shlib/hello.idl
|
||||
share/doc/mico/examples/shlib/server.cc
|
||||
share/doc/mico/examples/siegel/Makefile
|
||||
share/doc/mico/examples/siegel/README
|
||||
share/doc/mico/examples/siegel/central/DepotData.cc
|
||||
share/doc/mico/examples/siegel/central/DepotData.h
|
||||
share/doc/mico/examples/siegel/central/DepotImpl.cc
|
||||
share/doc/mico/examples/siegel/central/DepotImpl.h
|
||||
share/doc/mico/examples/siegel/central/Makefile
|
||||
share/doc/mico/examples/siegel/central/TreeNode.h
|
||||
share/doc/mico/examples/siegel/central/depot.dat
|
||||
share/doc/mico/examples/siegel/central/depot_server.cc
|
||||
share/doc/mico/examples/siegel/idl/Central.idl
|
||||
share/doc/mico/examples/siegel/idl/Makefile
|
||||
share/doc/mico/examples/siegel/idl/POS.idl
|
||||
share/doc/mico/examples/siegel/idl/Store.idl
|
||||
share/doc/mico/examples/siegel/pos/InputMediaImpl.cc
|
||||
share/doc/mico/examples/siegel/pos/InputMediaImpl.h
|
||||
share/doc/mico/examples/siegel/pos/Makefile
|
||||
share/doc/mico/examples/siegel/pos/OutputMediaImpl.cc
|
||||
share/doc/mico/examples/siegel/pos/OutputMediaImpl.h
|
||||
share/doc/mico/examples/siegel/pos/POSTerminalImpl.cc
|
||||
share/doc/mico/examples/siegel/pos/POSTerminalImpl.h
|
||||
share/doc/mico/examples/siegel/pos/POS_Client.cc
|
||||
share/doc/mico/examples/siegel/pos/POS_Server.cc
|
||||
share/doc/mico/examples/siegel/primer_utils/Makefile
|
||||
share/doc/mico/examples/siegel/primer_utils/NsPublisher.cc
|
||||
share/doc/mico/examples/siegel/primer_utils/NsPublisher.h
|
||||
share/doc/mico/examples/siegel/store/Makefile
|
||||
share/doc/mico/examples/siegel/store/StoreAccessImpl.cc
|
||||
share/doc/mico/examples/siegel/store/StoreAccessImpl.h
|
||||
share/doc/mico/examples/siegel/store/StoreImpl.cc
|
||||
share/doc/mico/examples/siegel/store/StoreImpl.h
|
||||
share/doc/mico/examples/siegel/store/TaxImpl.cc
|
||||
share/doc/mico/examples/siegel/store/TaxImpl.h
|
||||
share/doc/mico/examples/siegel/store/store_server.cc
|
||||
share/doc/mico/examples/ssl/Makefile
|
||||
share/doc/mico/examples/ssl/cert.pem
|
||||
share/doc/mico/examples/ssl/client.cc
|
||||
share/doc/mico/examples/ssl/hello.idl
|
||||
share/doc/mico/examples/ssl/key.pem
|
||||
share/doc/mico/examples/ssl/server.cc
|
||||
share/doc/mico/examples/ssl/ssl
|
||||
share/doc/mico/manual.ps
|
||||
@dirrm share/doc/mico/examples/ssl
|
||||
@dirrm share/doc/mico/examples/siegel/store
|
||||
@dirrm share/doc/mico/examples/siegel/primer_utils
|
||||
@dirrm share/doc/mico/examples/siegel/pos
|
||||
@dirrm share/doc/mico/examples/siegel/idl
|
||||
@dirrm share/doc/mico/examples/siegel/central
|
||||
@dirrm share/doc/mico/examples/siegel
|
||||
@dirrm share/doc/mico/examples/shlib
|
||||
@dirrm share/doc/mico/examples/services/trader
|
||||
@dirrm share/doc/mico/examples/services/stream-sound
|
||||
@dirrm share/doc/mico/examples/services/stream-bench
|
||||
@dirrm share/doc/mico/examples/services/relship
|
||||
@dirrm share/doc/mico/examples/services/property-daemon
|
||||
@dirrm share/doc/mico/examples/services/naming
|
||||
@dirrm share/doc/mico/examples/services/events
|
||||
@dirrm share/doc/mico/examples/services
|
||||
@dirrm share/doc/mico/examples/redlich/Hello-4
|
||||
@dirrm share/doc/mico/examples/redlich/Hello-3
|
||||
@dirrm share/doc/mico/examples/redlich/Hello-2
|
||||
@dirrm share/doc/mico/examples/redlich/Hello-1
|
||||
@dirrm share/doc/mico/examples/redlich/Calc-4
|
||||
@dirrm share/doc/mico/examples/redlich/Calc-3
|
||||
@dirrm share/doc/mico/examples/redlich/Calc-2
|
||||
@dirrm share/doc/mico/examples/redlich/Calc-1
|
||||
@dirrm share/doc/mico/examples/redlich
|
||||
@dirrm share/doc/mico/examples/random
|
||||
@dirrm share/doc/mico/examples/poa/inherit
|
||||
@dirrm share/doc/mico/examples/poa/hello-2
|
||||
@dirrm share/doc/mico/examples/poa/hello-1
|
||||
@dirrm share/doc/mico/examples/poa/account-3
|
||||
@dirrm share/doc/mico/examples/poa/account-2
|
||||
@dirrm share/doc/mico/examples/poa/account-1
|
||||
@dirrm share/doc/mico/examples/poa
|
||||
@dirrm share/doc/mico/examples/obv/tricky
|
||||
@dirrm share/doc/mico/examples/obv/tree
|
||||
@dirrm share/doc/mico/examples/obv/date
|
||||
@dirrm share/doc/mico/examples/obv/custom
|
||||
@dirrm share/doc/mico/examples/obv/abstract
|
||||
@dirrm share/doc/mico/examples/obv
|
||||
@dirrm share/doc/mico/examples/mcast
|
||||
@dirrm share/doc/mico/examples/interop/visibroker
|
||||
@dirrm share/doc/mico/examples/interop/orbix
|
||||
@dirrm share/doc/mico/examples/interop/jdk
|
||||
@dirrm share/doc/mico/examples/interop/jacorb
|
||||
@dirrm share/doc/mico/examples/interop
|
||||
@dirrm share/doc/mico/examples/interceptor
|
||||
@dirrm share/doc/mico/examples/henning
|
||||
@dirrm share/doc/mico/examples/dynany
|
||||
@dirrm share/doc/mico/examples/dispatcher/x11
|
||||
@dirrm share/doc/mico/examples/dispatcher/qtmico
|
||||
@dirrm share/doc/mico/examples/dispatcher/gtkmico
|
||||
@dirrm share/doc/mico/examples/dispatcher
|
||||
@dirrm share/doc/mico/examples/codesets
|
||||
@dirrm share/doc/mico/examples/boa/activate
|
||||
@dirrm share/doc/mico/examples/boa/account4
|
||||
@dirrm share/doc/mico/examples/boa/account3
|
||||
@dirrm share/doc/mico/examples/boa/account2
|
||||
@dirrm share/doc/mico/examples/boa/account
|
||||
@dirrm share/doc/mico/examples/boa
|
||||
@dirrm share/doc/mico/examples/bench
|
||||
@dirrm share/doc/mico/examples
|
||||
@dirrm share/doc/mico
|
||||
@dirrm include/ministl
|
||||
@dirrm include/mico
|
Loading…
Reference in a new issue