diff options
author | joerg <joerg@FreeBSD.org> | 2004-05-03 03:54:00 +0800 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 2004-05-03 03:54:00 +0800 |
commit | e10fc2c21fb4f53d08ba75894c9d6f2c0f2976a3 (patch) | |
tree | 959fd6836e28c39f06a1b166dd588f283ed320a0 | |
parent | 515faf8fc9f9ec5795c9e8cb8810918013f9ca45 (diff) | |
download | freebsd-ports-gnome-e10fc2c21fb4f53d08ba75894c9d6f2c0f2976a3.tar.gz freebsd-ports-gnome-e10fc2c21fb4f53d08ba75894c9d6f2c0f2976a3.tar.zst freebsd-ports-gnome-e10fc2c21fb4f53d08ba75894c9d6f2c0f2976a3.zip |
It seems that the standalone libbfd cannot be compiled on FreeBSD 4.x.
I don't care much, it's intented for developers only who could now be
expected to use FreeBSD 5.x.
-rw-r--r-- | devel/libbfd/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/libbfd/Makefile b/devel/libbfd/Makefile index 8ce67ce92692..49ecfc3c09d4 100644 --- a/devel/libbfd/Makefile +++ b/devel/libbfd/Makefile @@ -27,4 +27,10 @@ USE_LIBTOOL= yes INFO= bfd -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + +.include <bsd.port.post.mk> |