Re: [HACKERS] threads stuff/UnixWare

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: [HACKERS] threads stuff/UnixWare
Дата
Msg-id 200405132306.i4DN6FI07190@candle.pha.pa.us
обсуждение исходный текст
Ответы Re: [HACKERS] threads stuff/UnixWare  (Larry Rosenman <ler@lerctr.org>)
Re: [HACKERS] threads stuff/UnixWare  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-patches
Larry Rosenman wrote:
> > Really?  You are configuring with --enable-thread-safety?  I just
> > updated your template in CVS, and it is attached.  However, any old CVS
> > should work fine.
> Nope, initdb is where we still die:

Patch applied:

Force thread flags for all Unixware builds if threading is requested.

This is required because once you link with a library that uses threads,
all references to that library have to use thread flags.

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
Index: src/Makefile.global.in
===================================================================
RCS file: /cvsroot/pgsql-server/src/Makefile.global.in,v
retrieving revision 1.182
diff -c -c -r1.182 Makefile.global.in
*** src/Makefile.global.in    11 May 2004 21:57:14 -0000    1.182
--- src/Makefile.global.in    13 May 2004 23:03:12 -0000
***************
*** 177,182 ****
--- 177,188 ----
    CFLAGS += -Wall -Wmissing-prototypes -Wmissing-declarations
  endif

+ # Unixware needs threads for everything that uses libpq
+ ifeq ($(PORTNAME),unixware)
+   CFLAGS += "$PTHREAD_CFLAGS"
+ endif
+
+
  # Kind-of compilers

  YACC = @YACC@

В списке pgsql-patches по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: mingw configure failure detection
Следующее
От: Larry Rosenman
Дата:
Сообщение: Re: [HACKERS] threads stuff/UnixWare