[omniORB] omniORB 4.0.1 soon
Thomas Lockhart
lockhart@fourpalms.org
Mon Dec 9 15:05:02 2002
This is a multi-part message in MIME format.
--------------000606030602030507060608
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
> I intend to release omniORB 4.0.1 and omniORBpy 2.1 soon. If you have
> any pending bugs or patches, please post them in the next few days,
> otherwise they'll miss the release.
Here are patches required to build omniORBpy-2.0 as an RPM. It may be
that the issues are already taken care of; I haven't checked CVS.
The first portion of the patch allows use of DESTDIR to install into a
temporary tree as is typical for RPM building. omniORB already does this
but omniORBpy does (did?) not.
The other portion of the patch deals with assumptions about the location
of IDL files for an already-installed omniORB (afaict they need to be in
/usr/share/idl not in /usr/idl). Perhaps this should be configurable for
omniORBpy?
- Tom
--------------000606030602030507060608
Content-Type: text/plain;
name="omniORBpy.patches"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="omniORBpy.patches"
diff -cr omniORBpy-2.0.orig/mk/beforeauto.mk.in omniORBpy-2.0/mk/beforeauto.mk.in
*** omniORBpy-2.0.orig/mk/beforeauto.mk.in 2002-09-06 21:34:26.000000000 +0000
--- omniORBpy-2.0/mk/beforeauto.mk.in 2002-10-05 13:52:49.000000000 +0000
***************
*** 43,49 ****
# Directories for installation
#
! prefix := @prefix@
exec_prefix := @exec_prefix@
INSTALLTARGET := 1
INSTALLINCDIR := @includedir@
--- 43,49 ----
# Directories for installation
#
! prefix := $(DESTDIR)@prefix@
exec_prefix := @exec_prefix@
INSTALLTARGET := 1
INSTALLINCDIR := @includedir@
***************
*** 275,281 ****
# files.
vpath %.idl $(IMPORT_TREES:%=%/idl) \
! $(OMNIORB_ROOT)/idl/omniORB $(DATADIR)/idl/omniORB
IMPORT_IDLFLAGS += -I. $(patsubst %,-I%,$(VPATH)) \
$(patsubst %,-I%/idl,$(IMPORT_TREES))
--- 275,281 ----
# files.
vpath %.idl $(IMPORT_TREES:%=%/idl) \
! $(OMNIORB_ROOT)/share/idl/omniORB $(DATADIR)/idl/omniORB
IMPORT_IDLFLAGS += -I. $(patsubst %,-I%,$(VPATH)) \
$(patsubst %,-I%/idl,$(IMPORT_TREES))
Only in omniORBpy-2.0/mk: beforeauto.mk.in.orig
--------------000606030602030507060608--