Date: Sat, 4 Jun 2005 00:05:18 EST-10EDT,10,-1,0,7200,3,-1,0,7200,3600 Subject: [UnixOS2_Archive] No. 560 ************************************************** Friday 03 June 2005 Number 560 ************************************************** Subjects for today 1 Re: Cleaning up my dev environment (aka want to build mod_jk) : Dave Yeo" **= Email 1 ==========================** Date: Thu, 02 Jun 2005 21:16:15 -0800 From: "Dave Yeo" Subject: Re: Cleaning up my dev environment (aka want to build mod_jk) On Tue, 31 May 2005 22:08:48 -0700, Steven Levine wrote: >Thanks for the info. > >After posting, I went back and thought things through a bit and concluded >that I should just start fixing things and forget about using autoconf for >a bit. I sorta know about CONFIG_SITE and the various override options. >I just have not used this stuff enough to connect the failures to the >fixes automatically. > >IAC, after adding sufficient overrides, configure completed. There are >some issues, but it worked well enough to allow make to compile a good bit >of code. The libtool that shipped with mod_jk seemed to work correctly >once I corrected a couple of missing SED definitions. Yes there are often a couple of manual fixes needed. /e:/emx/bin/install.exe was one common one here which IIRC I fixed by changeing INSTALL to plain old install.exe and often needing to change ln -s to cp. Ocassionally make install fails due to no ln -s, I finally built a working ln with libc06 though it needs more work eg wildcard support. > >I stopped at the point where the compiles failed looking for PROT_OPEN in >a piece of code that implements a shared memory interface. I'll have to >figure out what to do about this. Can you use SHM? (configure --help should say) > >I do have some other annoying problems to figure out. For example, while >running under sh.exe, something is stuffing in a /c when I invoke at >script with a bare > > t.sh > >The workaround is to use: > > sh t.sh Yes there are quite a few issues like this that become second nature after a while and are hard to remember. Sometimes its worth trying different shells > >Thanks, > >Steven Dave