|
1 | 1 | # -*-makefile-*-
|
2 |
| -# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.182 2004/05/11 21:57:14 momjian Exp $ |
| 2 | +# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.183 2004/05/13 23:05:54 momjian Exp $ |
3 | 3 |
|
4 | 4 | #------------------------------------------------------------------------------
|
5 | 5 | # All PostgreSQL makefiles include this file and use the variables it sets,
|
@@ -177,6 +177,12 @@ ifeq ($(GCC), yes)
|
177 | 177 | CFLAGS += -Wall -Wmissing-prototypes -Wmissing-declarations
|
178 | 178 | endif
|
179 | 179 |
|
| 180 | +# Unixware needs threads for everything that uses libpq |
| 181 | +ifeq ($(PORTNAME),unixware) |
| 182 | +CFLAGS += "$PTHREAD_CFLAGS" |
| 183 | +endif |
| 184 | + |
| 185 | + |
180 | 186 | # Kind-of compilers
|
181 | 187 |
|
182 | 188 | YACC = @YACC@
|
|