diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-06 18:34:37 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-06 18:34:37 +0000 |
commit | 23dad2b5554e624ff2f98d189b1e0c29485bf586 (patch) | |
tree | 0bc5df01870d95b2cbb4c6d93ba3c603823a1aff /mail/thunderbird | |
parent | c35077fee69a444f37aef105506c7a04e403edad (diff) | |
download | ports-23dad2b5554e624ff2f98d189b1e0c29485bf586.tar.gz ports-23dad2b5554e624ff2f98d189b1e0c29485bf586.zip |
Use ${PTHREAD_LIBS} instead of hardcoded -pthread and -lc_r in a few places.
This should help the KSE and libthr people use these applications (plus it
lets them build on -CURRENT).
Notes
Notes:
svn path=/head/; revision=88641
Diffstat (limited to 'mail/thunderbird')
-rw-r--r-- | mail/thunderbird/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index 39b6266a7b38..ea21d8b77ad0 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -103,6 +103,13 @@ post-extract:: post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ ${WRKSRC}/build/unix/run-mozilla.sh + @${REINPLACE_CMD} -e 's|-lc_r|${PTHREAD_LIBS}|g' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \ + ${WRKSRC}/nsprpub/config/FreeBSD.mk \ + ${WRKSRC}/security/coreconf/FreeBSD.mk \ + ${WRKSRC}/directory/c-sdk/config/FreeBSD.mk \ + ${WRKSRC}/js/src/Makefile.in pre-install: ${RM} -fr ${LOCAL_PREFIX} |