diff options
author | Yen-Ming Lee <leeym@FreeBSD.org> | 2003-06-17 11:42:21 +0000 |
---|---|---|
committer | Yen-Ming Lee <leeym@FreeBSD.org> | 2003-06-17 11:42:21 +0000 |
commit | 4c01ca94231e76e5d69f0d6b359a2fda2b723159 (patch) | |
tree | 422d8e7b1eaf9421372089b2ee713ae666706875 /devel/libstatgrab | |
parent | 442de8175bb370e3a24dd8b7aa494ef24d5c99cc (diff) |
libstatgrab doesn't compile on FreeBSD 5.x. This is a problem with the
package rather than the port. The next release will hopefully fix this.
Pointed out by: kris
PR: 53385
Submitted by: Tim Bishop <tim@bishnet.net>
Notes
Notes:
svn path=/head/; revision=83145
Diffstat (limited to 'devel/libstatgrab')
-rw-r--r-- | devel/libstatgrab/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/devel/libstatgrab/Makefile b/devel/libstatgrab/Makefile index 3f7d782b1939..990d7009befb 100644 --- a/devel/libstatgrab/Makefile +++ b/devel/libstatgrab/Makefile @@ -19,4 +19,12 @@ GNU_CONFIGURE= yes INSTALLS_SHLIB= yes USE_LIBTOOL= yes -.include <bsd.port.mk> +ONLY_FOR_ARCHS= i386 + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500000 +IGNORE= "does not currently support FreeBSD 5.x" +.endif + +.include <bsd.port.post.mk> |