diff options
author | bapt <bapt@FreeBSD.org> | 2013-08-02 13:30:02 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-08-02 13:30:02 +0800 |
commit | 5dd25c5ba8812bdfa07d377ede161fcab5a0d32e (patch) | |
tree | 8b120bd727d638db4f4d9681f039da255ac63c02 /devel/poco | |
parent | 24afc35cce2f931e89c634bfd6fc81a78e5b8dbf (diff) | |
download | freebsd-ports-gnome-5dd25c5ba8812bdfa07d377ede161fcab5a0d32e.tar.gz freebsd-ports-gnome-5dd25c5ba8812bdfa07d377ede161fcab5a0d32e.tar.zst freebsd-ports-gnome-5dd25c5ba8812bdfa07d377ede161fcab5a0d32e.zip |
Fix build without gcc
Diffstat (limited to 'devel/poco')
-rw-r--r-- | devel/poco/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/devel/poco/Makefile b/devel/poco/Makefile index aac9195c6093..95d0a978bea8 100644 --- a/devel/poco/Makefile +++ b/devel/poco/Makefile @@ -16,6 +16,7 @@ OPTIONS_DEFINE= TEST SAMPLES SAMPLES_DESC= Build sample programs CONFIGURE_ARGS= --config=FreeBSD +USES= gmake .include <bsd.port.options.mk> @@ -28,8 +29,10 @@ CONFIGURE_ARGS+= --no-samples .endif GNU_CONFIGURE= yes -USE_GMAKE= yes USE_BZIP2= yes USE_LDCONFIG= yes +post-patch: + @${REINPLACE_CMD} -e "s/ =/ ?=/g" ${WRKSRC}/build/config/FreeBSD + .include <bsd.port.mk> |