diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2005-12-31 02:37:28 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2005-12-31 02:37:28 +0000 |
commit | acf9ebb2a8a6dcd7b63c14f3b000a3a89d798568 (patch) | |
tree | 0c5940eecc73b232ee8ee119ec278f16129262c7 /www | |
parent | b7a89029144454654ff69cc8536e549d20353d97 (diff) | |
download | freebsd-ports-acf9ebb2a8a6dcd7b63c14f3b000a3a89d798568.zip |
De-support 6-stable(600102 and later) by ELF symbol versioning.
Diffstat (limited to 'www')
-rw-r--r-- | www/linuxpluginwrapper/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/www/linuxpluginwrapper/Makefile b/www/linuxpluginwrapper/Makefile index da772b77cd48..2dedfd6e0847 100644 --- a/www/linuxpluginwrapper/Makefile +++ b/www/linuxpluginwrapper/Makefile @@ -18,8 +18,9 @@ COMMENT= A wrapper allowing use of linux-plugins with native applications .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 700009 -IGNORE= doesn't support ELF Symbol versioning, yet. +.if ${OSVERSION} >= 700009 || \ + (${OSVERSION} < 700000 && ${OSVERSION} >= 600102) +IGNORE= doesn't support ELF symbol versioning, yet. .endif # I will remove WITH_PLUGINS knob. |