Re: pgAdmin3_REL-1_0_0_PATCHES

From: Hiroshi Saito <saito(at)inetrt(dot)skcapi(dot)co(dot)jp>
To: pgadmin(at)pse-consulting(dot)de
Cc: pgadmin-hackers(at)postgresql(dot)org
Subject: Re: pgAdmin3_REL-1_0_0_PATCHES
Date: 2004-01-31 00:32:06
Message-ID: 20040131093206.46b4d01c.saito@inetrt.skcapi.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Hi Andreas.

From: "Andreas Pflug" <pgadmin(at)pse-consulting(dot)de>

> Hi Hiroshi,
> typo is fixed (MSVC won't complain...)
Oh,windows is generous.(I say a complaint.):-)

>
> There really should be a localeconv(), could you check locale.h for it?

Ah...
I tend to overlook a fundamental thing.

However....
In file included from db/keywords.c:15:
./src/include/postgres.h:24:23: warning: no newline at end of file
In file included from db/keywords.c:21:
./src/include/parser/parse.h:711: warning: type defaults to `int' in declaration of `yylval'
utils/misc.cpp: In function `double StrToDouble(const wxString&)':
utils/misc.cpp:185: `localeconv' undeclared (first use this function)
utils/misc.cpp:185: (Each undeclared identifier is reported only once for each
function it appears in.)
gmake[2]: *** [misc.o] Error 1
gmake[1]: *** [all-recursive] Error 1

I want to put this in.

--- src/utils/misc.cpp.org Sat Jan 31 09:24:22 2004
+++ src/utils/misc.cpp Sat Jan 31 09:24:54 2004
@@ -22,6 +22,7 @@

// Standard headers
#include <stdlib.h>
+#include <locale.h>

// App headers
#include "misc.h"

>
> Regards,
> Andreas

Thank you.:-)

regards,
Hiroshi Saito

Browse pgadmin-hackers by date

  From Date Subject
Next Message Jean-Michel POURE 2004-02-03 10:02:41 pgAdmin web site issues
Previous Message Andreas Pflug 2004-01-30 22:24:15 Re: pgAdmin3_REL-1_0_0_PATCHES