diff options
author | deischen <deischen@FreeBSD.org> | 2004-01-24 01:26:30 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2004-01-24 01:26:30 +0000 |
commit | 1da464a7d37ca5674ea77e9a99a1981a24716d74 (patch) | |
tree | a24c7bd60de8c1934d89f781e897b636753b981a | |
parent | 122b0220cda41d2c186895c649a0cab6dba93fdf (diff) | |
download | FreeBSD-ports-1da464a7d37ca5674ea77e9a99a1981a24716d74.zip FreeBSD-ports-1da464a7d37ca5674ea77e9a99a1981a24716d74.tar.gz |
Back out last change to make PTHREAD_LIBS and PTHREAD_CFLAGS conditional
as I didn't get explicit permission from portmgr.
Suggested by: adamw
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index d0a3283..1e272d1 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1848,8 +1848,8 @@ MAKE_ENV+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} MOTIFLIB= PTHREAD_CFLAGS= -D_THREAD_SAFE PTHREAD_LIBS= -pthread .else -PTHREAD_CFLAGS?= -PTHREAD_LIBS?= -lc_r +PTHREAD_CFLAGS= -D_THREAD_SAFE +PTHREAD_LIBS= -lc_r .endif .if exists(/usr/bin/fetch) |