Upgrade to 2.3.6, from maintainer
This commit is contained in:
parent
57276efab6
commit
49a24609b5
@ -1,10 +1,10 @@
|
||||
# $OpenBSD: Makefile,v 1.2 2001/09/28 06:02:13 pvalchev Exp $
|
||||
# $OpenBSD: Makefile,v 1.3 2001/11/10 16:56:32 shell Exp $
|
||||
|
||||
COMMENT= "free and complete CORBA-compliant implementation"
|
||||
|
||||
DISTNAME= mico-2.3.5
|
||||
DISTNAME= mico-2.3.6
|
||||
CATEGORIES= devel
|
||||
NEED_VERSION= 1.417
|
||||
NEED_VERSION= 1.482
|
||||
|
||||
HOMEPAGE= http://www.mico.org/
|
||||
MASTER_SITES= ${HOMEPAGE}
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (mico-2.3.5.tar.gz) = 3cf3812cadb3a64bca943ba232497e78
|
||||
RMD160 (mico-2.3.5.tar.gz) = 0f7e118d029efbf402c36edabd4f9c5019f90255
|
||||
SHA1 (mico-2.3.5.tar.gz) = cb165f98fdda493f3acc49ed81499f34e183f95d
|
||||
MD5 (mico-2.3.6.tar.gz) = 3bef81f6b8edebe838d097f4d922b774
|
||||
RMD160 (mico-2.3.6.tar.gz) = 5fd59ec0c8b9a1b45f1d4b5f089b04ad0e0bfb18
|
||||
SHA1 (mico-2.3.6.tar.gz) = 85d92583d6f42c0a560784b80347e1e63ef5e0af
|
||||
|
@ -1,10 +1,13 @@
|
||||
--- MakeVars.in.orig Fri Mar 24 11:48:51 2000
|
||||
+++ MakeVars.in Wed Jun 27 02:21:12 2001
|
||||
@@ -25,7 +25,7 @@ prefix = @prefix@
|
||||
$OpenBSD: patch-MakeVars_in,v 1.2 2001/11/10 16:56:33 shell Exp $
|
||||
--- MakeVars.in.orig Wed Oct 24 22:12:40 2001
|
||||
+++ MakeVars.in Wed Oct 24 22:12:30 2001
|
||||
@@ -24,8 +24,8 @@
|
||||
prefix = @prefix@
|
||||
exec_prefix = @exec_prefix@
|
||||
SRCDIR = @ABSSRCDIR@
|
||||
INSTDIR = $(exec_prefix)
|
||||
-SHARED_INSTDIR = $(prefix)
|
||||
-INSTDIR = @ABSEXECDIR@
|
||||
-SHARED_INSTDIR = @ABSSHRDDIR@
|
||||
+INSTDIR = $(exec_prefix)
|
||||
+SHARED_INSTDIR = $(prefix)/share
|
||||
|
||||
|
||||
|
@ -1,26 +1,12 @@
|
||||
$OpenBSD: patch-coss_time_TimeService_help_cc,v 1.1.1.1 2001/06/28 19:59:07 shell Exp $
|
||||
--- coss/time/TimeService_help.cc.orig Wed Mar 21 01:48:35 2001
|
||||
+++ coss/time/TimeService_help.cc Wed Mar 21 02:22:53 2001
|
||||
@@ -27,7 +27,7 @@
|
||||
#include <mico/CosNaming.h>
|
||||
#include <mico/util.h>
|
||||
#include <time.h>
|
||||
-#include <sys/timeb.h>
|
||||
+#include <sys/time.h>
|
||||
|
||||
//
|
||||
//Helper functions, mainly wrappers around the time function
|
||||
@@ -60,10 +60,10 @@ TimeBase::TimeT getInaccuracy()
|
||||
TimeBase::TimeT getTimezone()
|
||||
{
|
||||
//obtain timezone
|
||||
- timeb timestruct;
|
||||
- ftime(×truct);
|
||||
+ struct timezone tzone;
|
||||
+ gettimeofday(NULL, &tzone);
|
||||
|
||||
- TimeBase::TdfT displacementV = timestruct.timezone;
|
||||
+ TimeBase::TdfT displacementV = tzone.tz_minuteswest;
|
||||
|
||||
return displacementV;
|
||||
}
|
||||
$OpenBSD: patch-coss_time_TimeService_help_cc,v 1.2 2001/11/10 16:56:33 shell Exp $
|
||||
--- coss/time/TimeService_help.cc.orig Fri Oct 26 11:21:07 2001
|
||||
+++ coss/time/TimeService_help.cc Fri Oct 26 11:20:47 2001
|
||||
@@ -70,7 +70,7 @@ TimeBase::TimeT getTimezone()
|
||||
struct timezone tz;
|
||||
int r = gettimeofday (&tv, &tz);
|
||||
assert (r == 0);
|
||||
- TimeBase::TdfT displacementV = timezone.tz_minuteswest;
|
||||
+ TimeBase::TdfT displacementV = tz.tz_minuteswest;
|
||||
#else
|
||||
// where do we get the timezone from?
|
||||
assert (0);
|
||||
|
@ -1,3 +1,4 @@
|
||||
$OpenBSD: patch-demo_MakeVars,v 1.2 2001/11/10 16:56:33 shell Exp $
|
||||
--- demo/MakeVars.orig Thu Jun 28 02:22:00 2001
|
||||
+++ demo/MakeVars Thu Jun 28 02:43:34 2001
|
||||
@@ -78,14 +78,14 @@ COS_DEPS = $(DIR_PREFIX)../../coss/l
|
||||
|
@ -1,3 +1,4 @@
|
||||
$OpenBSD: patch-demo_Makefile,v 1.2 2001/11/10 16:56:33 shell Exp $
|
||||
--- demo/Makefile.orig Thu Jun 28 02:04:25 2001
|
||||
+++ demo/Makefile Thu Jun 28 02:44:24 2001
|
||||
@@ -45,12 +45,12 @@ clean:
|
||||
|
@ -1,3 +1,4 @@
|
||||
$OpenBSD: patch-demo_boa_Makefile,v 1.2 2001/11/10 16:56:33 shell Exp $
|
||||
--- demo/boa/Makefile.orig Thu Jun 28 02:48:21 2001
|
||||
+++ demo/boa/Makefile Thu Jun 28 02:48:48 2001
|
||||
@@ -31,7 +31,7 @@ clean:
|
||||
|
@ -1,6 +1,7 @@
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2001/06/28 19:59:06 shell Exp $
|
||||
lib/libmico2.3.5.so.1.0
|
||||
lib/libmicoaux2.3.5.so.1.0
|
||||
lib/libmicocoss2.3.5.so.1.0
|
||||
lib/libmicox2.3.5.so.1.0
|
||||
DYNLIBDIR(%B)
|
||||
@comment $OpenBSD: PFRAG.shared,v 1.2 2001/11/10 16:56:33 shell Exp $
|
||||
lib/libmico2.3.6.so.1.0
|
||||
lib/libmicoaux2.3.6.so.1.0
|
||||
lib/libmicocoss2.3.6.so.1.0
|
||||
lib/libmicoir2.3.6.so.1.0
|
||||
lib/libmicox2.3.6.so.1.0
|
||||
DYNLIBDIR(%D/lib)
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2001/06/28 19:59:06 shell Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.2 2001/11/10 16:56:33 shell Exp $
|
||||
bin/containmentd
|
||||
bin/eventd
|
||||
bin/idl
|
||||
@ -22,6 +22,9 @@ bin/traderd
|
||||
bin/traversald
|
||||
include/CORBA-SMALL.h
|
||||
include/CORBA.h
|
||||
include/mico/CCM.h
|
||||
include/mico/CCM.idl
|
||||
include/mico/CCMContainer.h
|
||||
include/mico/CompoundExternalization_impl.h
|
||||
include/mico/CosCompoundLifeCycle.idl
|
||||
include/mico/CosContainment.h
|
||||
@ -113,6 +116,7 @@ include/mico/codec.h
|
||||
include/mico/codec_impl.h
|
||||
include/mico/codeset.h
|
||||
include/mico/codeset_impl.h
|
||||
include/mico/config-ppc.h
|
||||
include/mico/config-win32.h
|
||||
include/mico/config.h
|
||||
include/mico/config.h.in
|
||||
@ -120,7 +124,6 @@ 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
|
||||
@ -132,7 +135,6 @@ 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
|
||||
@ -142,10 +144,11 @@ include/mico/ior.h
|
||||
include/mico/ior_impl.h
|
||||
include/mico/ir.h
|
||||
include/mico/ir.idl
|
||||
include/mico/ir3.h
|
||||
include/mico/ir3.idl
|
||||
include/mico/ir_base.h
|
||||
include/mico/ir_base.idl
|
||||
include/mico/ir_fwd.h
|
||||
include/mico/ir_impl.h
|
||||
include/mico/ir_creator.h
|
||||
include/mico/lmath.h
|
||||
include/mico/magic.h
|
||||
include/mico/memtrace.h
|
||||
@ -187,7 +190,6 @@ 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
|
||||
@ -232,10 +234,11 @@ include/ministl/simplevec.h
|
||||
include/ministl/string
|
||||
include/ministl/vector
|
||||
include/ministl/vector.h
|
||||
lib/libmico2.3.5.a
|
||||
lib/libmicoaux2.3.5.a
|
||||
lib/libmicocoss2.3.5.a
|
||||
lib/libmicox2.3.5.a
|
||||
lib/libmico2.3.6.a
|
||||
lib/libmicoaux2.3.6.a
|
||||
lib/libmicocoss2.3.6.a
|
||||
lib/libmicoir2.3.6.a
|
||||
lib/libmicox2.3.6.a
|
||||
lib/mico-setup.csh
|
||||
lib/mico-setup.sh
|
||||
man/man1/idl.1
|
||||
@ -560,10 +563,12 @@ 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/c_cert.pem
|
||||
share/doc/mico/examples/ssl/c_key.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/s_cert.pem
|
||||
share/doc/mico/examples/ssl/s_key.pem
|
||||
share/doc/mico/examples/ssl/server.cc
|
||||
share/doc/mico/examples/ssl/ssl
|
||||
share/doc/mico/manual.ps
|
||||
|
Loading…
Reference in New Issue
Block a user