Unix Technical Forum

PthreadGC2 of MinGW is not linked.

This is a discussion on PthreadGC2 of MinGW is not linked. within the pgsql Hackers forums, part of the PostgreSQL category; --> Hi Magnus. configure was changed the cvs head. Is this what you intended it?_? I think necessary to recover ...


Go Back   Unix Technical Forum > Database Server Software > PostgreSQL > pgsql Hackers

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-12-2008, 08:08 AM
Hiroshi Saito
 
Posts: n/a
Default PthreadGC2 of MinGW is not linked.

Hi Magnus.

configure was changed the cvs head.
Is this what you intended it?_?

I think necessary to recover it.

*** configure.orig Tue Apr 3 17:51:06 2007
--- configure Tue Apr 3 17:52:21 2007
***************
*** 16732,16739 ****
# For each platform, we need to know about any special compile and link
# libraries, and whether the normal C function names are thread-safe.
# See the comment at the top of src/port/thread.c for more information.
! # WIN32 doesn't need the pthread tests; it always uses threads
! if test "$enable_thread_safety" = yes -a "$PORTNAME" != "win32"; then


--- 16732,16738 ----
# For each platform, we need to know about any special compile and link
# libraries, and whether the normal C function names are thread-safe.
# See the comment at the top of src/port/thread.c for more information.
! if test "$enable_thread_safety" = yes; then

Am I misunderstanding it?

Regards,
Hiroshi Saito


---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-12-2008, 08:08 AM
Magnus Hagander
 
Posts: n/a
Default Re: PthreadGC2 of MinGW is not linked.

On Tue, Apr 03, 2007 at 06:06:16PM +0900, Hiroshi Saito wrote:
> Hi Magnus.
>
> configure was changed the cvs head.
> Is this what you intended it?_?
>
> I think necessary to recover it.
>
> *** configure.orig Tue Apr 3 17:51:06 2007
> --- configure Tue Apr 3 17:52:21 2007
> ***************
> *** 16732,16739 ****
> # For each platform, we need to know about any special compile and link
> # libraries, and whether the normal C function names are thread-safe.
> # See the comment at the top of src/port/thread.c for more information.
> ! # WIN32 doesn't need the pthread tests; it always uses threads
> ! if test "$enable_thread_safety" = yes -a "$PORTNAME" != "win32"; then
>
>
> --- 16732,16738 ----
> # For each platform, we need to know about any special compile and link
> # libraries, and whether the normal C function names are thread-safe.
> # See the comment at the top of src/port/thread.c for more information.
> ! if test "$enable_thread_safety" = yes; then
>
> Am I misunderstanding it?


That is intended. With the changes that was put in to ecpg, pthreads is no
longer required. We use the native threading on Windows instead.

Also, enable_thread_safety is now the default for windows :-)

//Magnus


---------------------------(end of broadcast)---------------------------
TIP 7: You can help support the PostgreSQL project by donating at

http://www.postgresql.org/about/donate

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-12-2008, 08:08 AM
Hiroshi Saito
 
Posts: n/a
Default Re: PthreadGC2 of MinGW is not linked.

Hi.

>> Am I misunderstanding it?

>
> That is intended. With the changes that was put in to ecpg, pthreads is no
> longer required. We use the native threading on Windows instead.
>
> Also, enable_thread_safety is now the default for windows :-)


Ooops, Isn't pthreadGC2 necessary?
Slony-I is still used...Ahh, I have not confirmed it yet.
I was too busy and did not catch up with you....
I start the work at once. Thanks!

Regards,
Hiroshi Saito



---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 04-12-2008, 08:08 AM
Magnus Hagander
 
Posts: n/a
Default Re: PthreadGC2 of MinGW is not linked.

On Tue, Apr 03, 2007 at 06:16:26PM +0900, Hiroshi Saito wrote:
> Hi.
>
> >>Am I misunderstanding it?

> >
> >That is intended. With the changes that was put in to ecpg, pthreads is no
> >longer required. We use the native threading on Windows instead.
> >
> >Also, enable_thread_safety is now the default for windows :-)

>
> Ooops, Isn't pthreadGC2 necessary?


Not any more.

> Slony-I is still used...Ahh, I have not confirmed it yet.


Slony uses it, yes. It would probably be worthwhile to fix that one as
well, but I haven't looked at how much work that would be.

//Magnus


---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 04-12-2008, 08:08 AM
Dave Page
 
Posts: n/a
Default Re: PthreadGC2 of MinGW is not linked.

Magnus Hagander wrote:
> On Tue, Apr 03, 2007 at 06:16:26PM +0900, Hiroshi Saito wrote:
>> Slony-I is still used...Ahh, I have not confirmed it yet.

>
> Slony uses it, yes. It would probably be worthwhile to fix that one as
> well, but I haven't looked at how much work that would be.


And to port the build system to msbuild...

:-)

/D

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 04-12-2008, 08:08 AM
Hiroshi Saito
 
Posts: n/a
Default Re: PthreadGC2 of MinGW is not linked.

From: "Dave Page" <dpage@postgresql.org>

> Magnus Hagander wrote:
>> On Tue, Apr 03, 2007 at 06:16:26PM +0900, Hiroshi Saito wrote:
>>> Slony-I is still used...Ahh, I have not confirmed it yet.

>>
>> Slony uses it, yes. It would probably be worthwhile to fix that one as
>> well, but I haven't looked at how much work that would be.

>
> And to port the build system to msbuild...
>
> :-)


Ugaa, Probably, I expected for fear of it. :-)
Furthermore, PostGIS is required. For the time being, it is necessary
to fight with the nightmare. I was able to give good environment.
It will be desired. surely :-)

Regards,
Hiroshi Saito


---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?

http://archives.postgresql.org

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 03:11 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com