Appropriate wxLongLong method?

From: "Hiroshi Saito" <saito(at)inetrt(dot)skcapi(dot)co(dot)jp>
To: <pgadmin-hackers(at)postgresql(dot)org>
Subject: Appropriate wxLongLong method?
Date: 2005-09-08 13:02:23
Message-ID: 0a7401c5b475$8dbc2c20$01324d80@hiroshi5jz7dqj
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Hi Andreas.

Now, am only I strange?

base/base.cpp: In function `wxString NumToStr(wxLongLongNative)':
base/base.cpp:130: cannot pass objects of non-POD type `class wxLongLong'
through `...'
gmake[2]: *** [base.o] error 1
gmake[1]: *** [all-recursive] error 1
gmake: *** [all] error 2

--- src/base/base.cpp.orig Thu Sep 8 21:37:15 2005
+++ src/base/base.cpp Thu Sep 8 21:37:15 2005
@@ -30,7 +30,7 @@
#define atolonglong(str) strtoll(str, (char **)NULL, 10)
#else
#ifdef __FreeBSD__
-#define atolonglong(str) strtoll(str, (char **)NULL, 10)
+#define atolonglong(str) strtoll(str, NULL, 10)
#else
#define atolonglong atoll
#endif

It was required for me. Probably, #undef atolonglong may also be necessity.
However, Should not the origin of the wxLongLong method of wxWidget be changed?

Regards,
Hiroshi Saito

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message blacknoz 2005-09-09 07:52:10 Re: Pgadmin III connection error
Previous Message Dave Page 2005-09-08 11:40:46 Re: is anyone paying any attention to this email list?