Return-Path: Delivered-To: apmail-apr-dev-archive@www.apache.org Received: (qmail 27660 invoked from network); 3 Aug 2009 21:53:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Aug 2009 21:53:17 -0000 Received: (qmail 44873 invoked by uid 500); 3 Aug 2009 21:53:22 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 44773 invoked by uid 500); 3 Aug 2009 21:53:21 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 44760 invoked by uid 99); 3 Aug 2009 21:53:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Aug 2009 21:53:21 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of bojan@rexursive.com designates 150.101.121.179 as permitted sender) Received: from [150.101.121.179] (HELO beauty.rexursive.com) (150.101.121.179) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Aug 2009 21:53:13 +0000 Received: from [10.1.120.24] (shrek.rexursive.com [10.1.120.24]) by beauty.rexursive.com (Postfix) with ESMTP id 1E3058C297 for ; Tue, 4 Aug 2009 07:52:52 +1000 (EST) Subject: PR 47590 From: Bojan Smojver To: APR Development List Content-Type: multipart/mixed; boundary="=-D5zRJ+oJmn1D+Vhk0FhM" Date: Tue, 04 Aug 2009 07:52:51 +1000 Message-Id: <1249336371.22379.30.camel@shrek.rexursive.com> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 (2.26.3-1.fc11) X-Virus-Checked: Checked by ClamAV on apache.org --=-D5zRJ+oJmn1D+Vhk0FhM Content-Type: text/plain Content-Transfer-Encoding: 7bit I didn't get any feedback yet from the bug reporter here: https://issues.apache.org/bugzilla/show_bug.cgi?id=47590 But I'm guessing it's a trivial fix along the lines of what we've seen before, where we pass in default environment, so that the child runs OK when compiled with the Intel compiler. That trivial patch is attached. Bill, I see you are cleaning things up, I'm guessing for a release. Do you mind if I commit this? -- Bojan --=-D5zRJ+oJmn1D+Vhk0FhM Content-Disposition: attachment; filename="apr-test_cmd_env2.patch" Content-Type: text/x-patch; name="apr-test_cmd_env2.patch"; charset="UTF-8" Content-Transfer-Encoding: 7bit Index: test/testpipe.c =================================================================== --- test/testpipe.c (revision 800210) +++ test/testpipe.c (working copy) @@ -146,6 +146,9 @@ APR_CHILD_BLOCK); ABTS_INT_EQUAL(tc, APR_SUCCESS, rv); + rv = apr_procattr_cmdtype_set(procattr, APR_PROGRAM_ENV); + APR_ASSERT_SUCCESS(tc, "Couldn't set copy environment", rv); + rv = apr_procattr_error_check_set(procattr, 1); ABTS_INT_EQUAL(tc, APR_SUCCESS, rv); --=-D5zRJ+oJmn1D+Vhk0FhM--