Re: CVS tip compiler error with --enable-thread-safety - Mailing list pgsql-hackers

From Shridhar Daithankar
Subject Re: CVS tip compiler error with --enable-thread-safety
Date
Msg-id 200405312131.53305.shridhar@frodo.hserus.net
Whole thread Raw
In response to Re: CVS tip compiler error with --enable-thread-safety  (Bruce Momjian <pgman@candle.pha.pa.us>)
Responses Re: CVS tip compiler error with --enable-thread-safety  (Bruce Momjian <pgman@candle.pha.pa.us>)
List pgsql-hackers
On Sunday 30 May 2004 19:37, Bruce Momjian wrote:
> > The relevant configure messages read
> > -------------
> > checking whether pthreads work without any flags... no
> > checking whether pthreads work with -Kthread... no
> > checking whether pthreads work with -kthread... no
> > checking for the pthreads library -llthread... no
> > checking whether pthreads work with -pthread... yes
> > -------------
> >
> > Here is relevant portion of src/Makefile.global
> >
> > -------------
> > PTHREAD_CFLAGS        = -pthread -D_REENTRANT -D_THREAD_SAFE
> > -D_POSIX_PTHREAD_SEMANTICS
> > PTHREAD_LIBS        =
> > LIBS = -lz -lreadline -ltermcap -lcrypt -lresolv -lnsl -ldl -lm
> > -------------
> >
> > It worked after I manually added -lpthread to LIBS and did a make
> > clean;make
>
> OK, I have applied the following patch which should fix it.  Turns out I
> wasn't using the thread libs as part of library creation.

I updated anoncvs, the patch in src/port/Makefile is there but initdb still 
fails to compile.

I suspect this is because in Makefile.global PTHREAD_LIBS is still blank. I 
need to add -lpthread these to get stuff working. However I could not figure 
out what create PTHREAD_LIBS in Makefile.global.

Is there something else I should try?
Shridhar


pgsql-hackers by date:

Previous
From: Darko Prenosil
Date:
Subject: Re: yet another contrib module
Next
From: Bruce Momjian
Date:
Subject: Re: CVS tip compiler error with --enable-thread-safety