From: | "Jim C(dot) Nasby" <jnasby(at)pervasive(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Michael Glaesemann <grzm(at)myrealbox(dot)com>, pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: Long-time 7.4 contrib failure Mac OS X 10.3.8 |
Date: | 2005-11-16 06:06:20 |
Message-ID: | 20051116060620.GO44860@pervasive.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Tue, Nov 15, 2005 at 11:53:11PM -0500, Tom Lane wrote:
> Michael Glaesemann <grzm(at)myrealbox(dot)com> writes:
> > On Nov 15, 2005, at 23:19 , Tom Lane wrote:
> >> Apparently you don't get to have --enable-nls either :-(
>
> > And we've got green! :)
> > http://pgbuildfarm.org/cgi-bin/show_log.pl?nm=wallaroo&dt=2005-11-15%
> > 2022:55:15
> > Thanks, Tom, for taking the time to look at this and explaining it a
> > bit to me.
>
> [ looks at buildfarm... ] It looks like you dropped the extra options
> on all of wallaroo's branches, which is not good. They should work in
> 8.0 and later, and you should test 'em where they're claimed to work.
>
> I'm pretty sure you can have per-branch configure options in buildfarm,
> but I don't recall how. Whack Andrew Dunstan about it if you can't see
> how from the documentation...
You can. Sample from by mac:
if ($branch eq 'HEAD')
{
push(@{$conf{config_opts}},"--enable-depend");
}
if ($branch !~ /^REL7/) {
push(@{$conf{config_opts}},
qw(
--with-openssl
)
);
}
if ($branch !~ /^REL7_[23]/) {
push(@{$conf{config_opts}},"--enable-nls");
}
There's also some way you can pull an item out of an array, which could make
that --with-openssl bit cleaner...
--
Jim C. Nasby, Sr. Engineering Consultant jnasby(at)pervasive(dot)com
Pervasive Software http://pervasive.com work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461
From | Date | Subject | |
---|---|---|---|
Next Message | Jim C. Nasby | 2005-11-16 06:08:19 | Re: MERGE vs REPLACE |
Previous Message | Christopher Kings-Lynne | 2005-11-16 05:27:29 | Re: MERGE vs REPLACE |