[omniORB] configuring omniORB
Thomas Lockhart
lockhart@fourpalms.org
Thu Feb 27 18:27:01 2003
This is a multi-part message in MIME format.
--------------060002020103030005070700
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
The recent post from John Van Horne reminded me that in building RPMs
for omniORB I had lost or put in some odd place omkdepend and
omkdirhier. There is a "mkdirhier" shipped with X11 which is available
on my Linux box and which works just as well.
In my upcoming patches for omniORBpy I propose to look for both
omkdirhier and mkdirhier (in that order) using AC_PATH_PROGS(). The
patch for configure.ac is included (and would not I think damage
anything else even if we don't apply additional ones for the upcoming
2.1 release).
Patch included fyi or to be applied now...
- Tom
--------------060002020103030005070700
Content-Type: text/plain;
name="configure.ac.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="configure.ac.patch"
*** ../omniORBpy-2.0.orig/configure.ac 2002-09-06 21:34:25.000000000 +0000
--- configure.ac 2003-02-25 14:02:40.000000000 +0000
***************
*** 19,24 ****
--- 19,28 ----
AC_PROG_MAKE_SET
AM_PATH_PYTHON
+ AC_PATH_PROG(OMKDEPEND, omkdepend, omkdepend,
+ $PATH:$OMNIORB_ROOT/bin:/usr/local/bin:/usr/bin)
+ AC_PATH_PROGS(MKDIRHIER, omkdirhier mkdirhier, omkdirhier,
+ ./bin/scripts:$PATH:$OMNIORB_ROOT/bin:/usr/local/bin:/usr/bin)
AC_LANG(C++)
--------------060002020103030005070700--