From: | Magnus Hagander <magnus(at)hagander(dot)net> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | pgsql-committers(at)postgresql(dot)org |
Subject: | Re: pgsql: Add support for matching wildcard server certificates to the new |
Date: | 2008-11-24 13:43:09 |
Message-ID: | 492AAF6D.3000408@hagander.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers pgsql-hackers |
Tom Lane wrote:
> mha(at)postgresql(dot)org (Magnus Hagander) writes:
>> Add support for matching wildcard server certificates to the new SSL code.
>> This uses the function fnmatch() which is not available on all platforms
>> (notably Windows), so import the implementation from NetBSD into src/port.
>
> This has broken buildfarm member grebe ...
Grr.
Seems it doesn't define FNM_CASEFOLD. I guess it's not supported on AIX.
An easy fix would be a simple
#ifndef FNM_CASEFOLD
#define 0
#endif
that'll basically turn of the functionality. The other option is to have
autoconf substitute our own local version of fnmatch when this happens.
How would one go about to do that in autoconf asks the autoconf n00b?
//Magnus
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2008-11-24 13:49:55 | Re: pgsql: Add support for matching wildcard server certificates to the new |
Previous Message | Tom Lane | 2008-11-24 13:37:30 | Re: pgsql: Add support for matching wildcard server certificates to the new |
From | Date | Subject | |
---|---|---|---|
Next Message | Dave Page | 2008-11-24 13:47:54 | Re: blatantly a bug in the documentation |
Previous Message | Hitoshi Harada | 2008-11-24 13:41:43 | Re: Windowing Function Patch Review -> Standard Conformance |