diff options
author | wen <wen@FreeBSD.org> | 2012-05-31 09:29:23 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2012-05-31 09:29:23 +0800 |
commit | a7e1557ba248a32e72318b482b655095c3d60e2f (patch) | |
tree | 99ad976cbb3f74e9d36a40eae26209ea6659a96c | |
parent | 07746bddc02fb057317bcd5137e746de8239edd1 (diff) | |
download | freebsd-ports-gnome-a7e1557ba248a32e72318b482b655095c3d60e2f.tar.gz freebsd-ports-gnome-a7e1557ba248a32e72318b482b655095c3d60e2f.tar.zst freebsd-ports-gnome-a7e1557ba248a32e72318b482b655095c3d60e2f.zip |
- Mark BROKEN when ${OSVERSION} < 800000
Reported by: pav@
-rw-r--r-- | databases/spatialite/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/databases/spatialite/Makefile b/databases/spatialite/Makefile index ad3b724f3fa6..81d7b6403558 100644 --- a/databases/spatialite/Makefile +++ b/databases/spatialite/Makefile @@ -34,4 +34,11 @@ post-patch: @${REINPLACE_CMD} -e 's|-ldl| |' ${WRKSRC}/src/Makefile.am @${REINPLACE_CMD} -e 's|-ldl| |' ${WRKSRC}/src/Makefile.in @${REINPLACE_CMD} -e 's|-ldl| |' ${WRKSRC}/configure -.include <bsd.port.mk> + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 800000 +BROKEN= does not build +.endif + +.include <bsd.port.post.mk> |