diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-07-02 17:03:49 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-07-02 17:03:49 +0000 |
commit | 6f873419a6179af58c1952a77ac34b683612a176 (patch) | |
tree | cccae2d0c4b9edc6c7dbe626a243061b61dbf97d | |
parent | a9de3e5849644db6f0d5a681a959173576c12177 (diff) | |
download | freebsd-ports-6f873419a6179af58c1952a77ac34b683612a176.zip |
- Unbreak on -current by switching back to static linked version.
This is due to our version bump on threading libraries.
PR: ports/114149
Submitted by: Ulrich Spoerlein <uspoerlein at gmail.com>
Approved by: Arjan van Leeuwen <freebsd-maintainer at opera.com> (maintainer)
-rw-r--r-- | www/opera/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/opera/Makefile b/www/opera/Makefile index e326c07ccd84..4cdcadad3b33 100644 --- a/www/opera/Makefile +++ b/www/opera/Makefile @@ -58,7 +58,9 @@ QT_PRESENT= off .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 600000 +.if ${OSVERSION} >= 700040 +OPERA_TYPE= 1 +.elif ${OSVERSION} >= 600000 OPERA_TYPE= 4 .elif ${OSVERSION} >= 500000 OPERA_TYPE= 3 |