diff options
author | tg <tg@FreeBSD.org> | 2001-08-28 19:34:59 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2001-08-28 19:34:59 +0800 |
commit | e07c2ca63b482b3172d45131de57ceab6be8c10b (patch) | |
tree | a7a5ae34aa8fd2dceafb920fc182e7b92213e811 /math/vtk/Makefile | |
parent | ce4491043271898e722438907cfe3f9d00a85cb5 (diff) | |
download | freebsd-ports-gnome-e07c2ca63b482b3172d45131de57ceab6be8c10b.tar.gz freebsd-ports-gnome-e07c2ca63b482b3172d45131de57ceab6be8c10b.tar.zst freebsd-ports-gnome-e07c2ca63b482b3172d45131de57ceab6be8c10b.zip |
Use ${PTHREAD_CFLAGS} and ${PTHREAD_LIBS} when building.
Diffstat (limited to 'math/vtk/Makefile')
-rw-r--r-- | math/vtk/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/vtk/Makefile b/math/vtk/Makefile index 77191d851530..157de5d1f8a0 100644 --- a/math/vtk/Makefile +++ b/math/vtk/Makefile @@ -35,7 +35,9 @@ PLIST= ${PKGDIR}/pkg-plist.with_patented .endif post-patch: - ${PERL} -pi -e "s|%%PYTHON_INCLUDEDIR%%|${PYTHON_INCLUDEDIR}|g" \ + ${PERL} -pi -e "s|%%PYTHON_INCLUDEDIR%%|${PYTHON_INCLUDEDIR}|g; \ + s|%%PTHREAD_CFLAGS%%|${PTHREAD_CFLAGS}|g; \ + s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g" \ ${WRKSRC}/user.make post-install: |