diff options
author | marcus <marcus@FreeBSD.org> | 2002-08-15 00:26:10 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-08-15 00:26:10 +0800 |
commit | 66873e6f25d39b0ccfc8d1784e9edadc349b854b (patch) | |
tree | d59d06b779d87d35ff1e8daddb9a052e245f8160 | |
parent | 75f07c5f38d721c4d9f56e3a7ff3c61ca77ef268 (diff) | |
download | freebsd-ports-gnome-66873e6f25d39b0ccfc8d1784e9edadc349b854b.tar.gz freebsd-ports-gnome-66873e6f25d39b0ccfc8d1784e9edadc349b854b.tar.zst freebsd-ports-gnome-66873e6f25d39b0ccfc8d1784e9edadc349b854b.zip |
s/-pthread/${PTHREAD_LIBS}/
-rw-r--r-- | databases/gnomedb2/Makefile | 2 | ||||
-rw-r--r-- | databases/libgda2/Makefile | 2 | ||||
-rw-r--r-- | databases/libgda3/Makefile | 2 | ||||
-rw-r--r-- | databases/libgnomedb/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/databases/gnomedb2/Makefile b/databases/gnomedb2/Makefile index bf8d1dc59577..d4603dc0bf11 100644 --- a/databases/gnomedb2/Makefile +++ b/databases/gnomedb2/Makefile @@ -31,7 +31,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} post-patch: - @${REINPLACE_CMD} -e 's|-lpthread|-pthread|g ; \ + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure .include <bsd.port.mk> diff --git a/databases/libgda2/Makefile b/databases/libgda2/Makefile index 73e600b2ff6c..601eefda5ad2 100644 --- a/databases/libgda2/Makefile +++ b/databases/libgda2/Makefile @@ -57,7 +57,7 @@ pre-extract: .endif post-patch: - @${REINPLACE_CMD} -e 's|-lpthread|-pthread|g ; \ + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure .include <bsd.port.mk> diff --git a/databases/libgda3/Makefile b/databases/libgda3/Makefile index 73e600b2ff6c..601eefda5ad2 100644 --- a/databases/libgda3/Makefile +++ b/databases/libgda3/Makefile @@ -57,7 +57,7 @@ pre-extract: .endif post-patch: - @${REINPLACE_CMD} -e 's|-lpthread|-pthread|g ; \ + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure .include <bsd.port.mk> diff --git a/databases/libgnomedb/Makefile b/databases/libgnomedb/Makefile index d2ff6069be73..66319694bf98 100644 --- a/databases/libgnomedb/Makefile +++ b/databases/libgnomedb/Makefile @@ -30,7 +30,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} post-patch: - @${REINPLACE_CMD} -e 's|-lpthread|-pthread|g ; \ + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure .include <bsd.port.mk> |