On Mon, Jan 19, 2015 at 5:59 PM, Peter Geoghegan <p...@heroku.com> wrote:
> On Mon, Jan 19, 2015 at 5:33 PM, Alvaro Herrera
> <alvhe...@2ndquadrant.com> wrote:
>> You did notice that bowerbird isn't building, right?
>> http://buildfarm.postgresql.org/cgi-bin/show_log.pl?nm=bowerbird&dt=2015-01-19%2023%3A54%3A46
>
> Yeah. Looks like strxfrm_l() isn't available on the animal, for whatever 
> reason.

I think that the attached patch should at least fix that much. Maybe
the problem on the other animal is also explained by the lack of this,
since there could also be a MinGW-ish strxfrm_l(), I suppose.

-- 
Peter Geoghegan
diff --git a/src/include/port/win32.h b/src/include/port/win32.h
index 550c3ec..4cb51ec 100644
--- a/src/include/port/win32.h
+++ b/src/include/port/win32.h
@@ -341,6 +341,7 @@ typedef int pid_t;
 #define isspace_l _isspace_l
 #define iswspace_l _iswspace_l
 #define strcoll_l _strcoll_l
+#define strxfrm_l _strxfrm_l
 #define wcscoll_l _wcscoll_l
 #define wcstombs_l _wcstombs_l
 #define mbstowcs_l _mbstowcs_l
-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to