You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)" <ma...@hp.com> on 2001/11/08 23:56:49 UTC

RE: new tarballs

The libtool problem was not because of the version (atleast on HPUX)..
mktemp was failing on HPUX and hence all those errors :-(..

********************
mkdir: cannot create directory `/libtool-26424': Permission denied
libtool: install: error: cannot create temporary directory `/libtool-26424'
********************

Interestingly, the mktemp stuff is missing in libtool 1.3.4 (freebsd port),
and hence everything was cool..
The following patch seems to fix the problem - any comments / suggestions
?..

$ diff -u libtool.ORG libtool
--- libtool.ORG Thu Nov  8 14:49:13 2001
+++ libtool     Thu Nov  8 14:40:03 2001
@@ -4647,11 +4647,11 @@
            if test "$finalize" = yes && test -z "$run"; then
              tmpdir="/tmp"
              test -n "$TMPDIR" && tmpdir="$TMPDIR"
-              tmpdir=`mktemp -d $tmpdir/libtool-XXXXXX 2> /dev/null`
-              if test $? = 0 ; then :
-              else
+              #tmpdir=`mktemp -d $tmpdir/libtool-XXXXXX 2> /dev/null`
+              #if test $? = 0 ; then :
+              #else
                 tmpdir="$tmpdir/libtool-$$"
-              fi
+              #fi
              if $mkdir -p "$tmpdir" && chmod 700 "$tmpdir"; then :
              else
                $echo "$modename: error: cannot create temporary directory
\`$tmpdir'" 1>&2


Thx
-Madhu



-----Original Message-----
From: Greg Ames [mailto:gregames@remulak.net]
Sent: Thursday, November 08, 2001 1:02 PM
To: Chuck Murcko; Madhu Mathihalli; Cliff Woolley
Subject: new tarballs


Gentlemen,

I'm attaching the 2_0_28 tarball I just rolled.  Could you please see if
builds OK on your platform before we make them public, since we had
trouble with 2_0_27?  This was created on my ThinkPad (Mandrake Linux
8.0) which now has libtool 1.4.2. (Cliff:  I'm hoping you'll check it on
BSD/OS.)

I don't expect anybody to spend a lot of time stress testing at this
point, since it hasn't even been installed on daedalus yet.  I just want
to know if it will build and maybe serve a page.

Let me know if you prefer a .Z tarball to the .gz .

Thanks in advance,
Greg

Re: new tarballs

Posted by Greg Ames <gr...@remulak.net>.
"William A. Rowe, Jr." wrote:

> Greg, please note that a second patch was just committed to assure that our
> final r->finfo is never an APR_LNK result, but resolves the symlink target.

yep, saw it.

Greg

Re: new tarballs

Posted by "William A. Rowe, Jr." <wr...@covalent.net>.
From: "Greg Ames" <gr...@remulak.net>
Sent: Friday, November 09, 2001 10:57 AM
> 
> I'm in the middle of testing OtherBill's patch to reduce the number of
> stats.  If it passes and he blesses it, I'd like to include this in
> 2_0_28.  Let's see how that goes before I create new tarballs.

Greg, please note that a second patch was just committed to assure that our
final r->finfo is never an APR_LNK result, but resolves the symlink target.

Bill



Re: new tarballs

Posted by Greg Ames <gr...@remulak.net>.
"MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)" wrote:
> 
> The libtool problem was not because of the version (atleast on HPUX)..
> mktemp was failing on HPUX and hence all those errors :-(..
> 
> ********************
> mkdir: cannot create directory `/libtool-26424': Permission denied
> libtool: install: error: cannot create temporary directory `/libtool-26424'
> ********************
> 
> Interestingly, the mktemp stuff is missing in libtool 1.3.4 (freebsd port),
> and hence everything was cool..
> The following patch seems to fix the problem - any comments / suggestions
> ?..

Madhu,

I'll send you a tarball rolled on daedalus later.  Chuck Murcko said
that my tarball rolled with libtool 1.4.2 did not build properly on Mac
OS 10.1.  So there is nothing stopping us from using daedalus's libtool
for rolling, which should work for HP-UX.

I'm in the middle of testing OtherBill's patch to reduce the number of
stats.  If it passes and he blesses it, I'd like to include this in
2_0_28.  Let's see how that goes before I create new tarballs.

As far as a long term solution for libtool on HP-UX, I think you should
post your patch to the libtool mailing list.  Unfortunately, I can't
tell you where it is or know anyone who has contacts there.

Greg

Re: new tarballs

Posted by Justin Erenkrantz <je...@ebuilt.com>.
On Thu, Nov 08, 2001 at 05:56:49PM -0500, MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote:
> The libtool problem was not because of the version (atleast on HPUX)..
> mktemp was failing on HPUX and hence all those errors :-(..

Are you seeing this with the 2.0.28 tarball that Greg sent you?
It seems that he said he used libtool 1.4.2 when running buildconf.
Didn't you say the problem went away with 1.4.2 after you reran 
buildconf?

> ********************
> mkdir: cannot create directory `/libtool-26424': Permission denied
> libtool: install: error: cannot create temporary directory `/libtool-26424'
> ********************
> 
> Interestingly, the mktemp stuff is missing in libtool 1.3.4 (freebsd port),
> and hence everything was cool..
> The following patch seems to fix the problem - any comments / suggestions
> ?..

libtool is generated for each machine, so we'd have to introduce a
patch for the .m4 files that generate libtool (i.e. we don't
distribute libtool per se - we distribute the files that build a 
customized libtool).

I think we have to use 1.4.2 at the very least to get OS 10.1 
building, so using 1.3.4 really isn't an option, IMHO.  -- justin