Unbreak on amd64 by disabling debug

PR:		ports/162929
Submitted by:	crees
Reviewed by:	"Surkov Andrey" <nsand@sura.ru>
Approved by:	maintainer timeout (marius@nuenneri.ch, 17 days)
This commit is contained in:
Chris Rees 2011-12-14 19:16:18 +00:00
parent 3585221856
commit 5d864734b5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=287388
2 changed files with 25 additions and 4 deletions

View file

@ -45,10 +45,6 @@ MAN1= mumble.1
BROKEN= does not compile on FreeBSD 7.x
.endif
.if ${ARCH} == "amd64" && ${OSVERSION} >= 900000
BROKEN= Does not compile on FreeBSD 9.X
.endif
.if defined(WITHOUT_DBUS)
CONFIG+= no-dbus
.else

View file

@ -0,0 +1,25 @@
$FreeBSD$
Disable debug; runs into cryptic errors on 9+/amd64
--- plugins/plugins.pri.orig 2011-02-19 21:35:16.000000000 +0000
+++ plugins/plugins.pri 2011-11-28 20:27:31.374646598 +0000
@@ -1,16 +1,11 @@
include(../compiler.pri)
TEMPLATE = lib
-CONFIG += plugin debug_and_release warn_on
+CONFIG += plugin warn_on
CONFIG -= qt
DIST *= mumble_plugin.h
-CONFIG(debug, debug|release) {
- CONFIG += console
- DESTDIR = ../../debug/plugins
-}
-
-CONFIG(release, debug|release) {
+CONFIG(release, release) {
DESTDIR = ../../release/plugins
}