diff options
author | tron <tron@pkgsrc.org> | 2005-08-10 06:57:07 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2005-08-10 06:57:07 +0000 |
commit | de4d389b36db8538180b1ce8d6b97f63474c02ad (patch) | |
tree | 357d27296565262791280c817088dc5a1f4c82d0 /benchmarks | |
parent | 45285f2371f9624b84088908c5add51dda866121 (diff) | |
download | pkgsrc-de4d389b36db8538180b1ce8d6b97f63474c02ad.tar.gz |
Use "PTHREAD_LIBS" in build phase to make sure that this builds on
platforms without a "-pthread" option supported by the compiler.
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/netio/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/netio/Makefile b/benchmarks/netio/Makefile index 4855389f4c0..45572397b59 100644 --- a/benchmarks/netio/Makefile +++ b/benchmarks/netio/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2005/08/09 22:47:09 tron Exp $ +# $NetBSD: Makefile,v 1.12 2005/08/10 06:57:07 tron Exp $ DISTNAME= netio123 PKGNAME= netio-1.23 @@ -16,7 +16,7 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews WRKSRC= ${WRKDIR} MAKE_FLAGS+= CC="${CC}" CFLAGS="-DUNIX ${PTHREAD_CFLAGS} ${CFLAGS}" \ LFLAGS="${PTHREAD_LDFLAGS} ${LDFLAGS}" \ - LIBS="${LIBS}" O=.o OUT=-o X= + LIBS="${PTHREAD_LIBS} ${LIBS}" O=.o OUT=-o X= .include "../../mk/bsd.prefs.mk" |