Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 17389 invoked by uid 500); 8 Nov 2001 22:57:09 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 17378 invoked from network); 8 Nov 2001 22:57:09 -0000 Message-ID: From: "MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)" To: "'dev@httpd.apache.org'" Subject: RE: new tarballs Date: Thu, 8 Nov 2001 17:56:49 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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