mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 15:51:51 -04:00
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:
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
|
@ -45,10 +45,6 @@ MAN1= mumble.1
|
||||||
BROKEN= does not compile on FreeBSD 7.x
|
BROKEN= does not compile on FreeBSD 7.x
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${ARCH} == "amd64" && ${OSVERSION} >= 900000
|
|
||||||
BROKEN= Does not compile on FreeBSD 9.X
|
|
||||||
.endif
|
|
||||||
|
|
||||||
.if defined(WITHOUT_DBUS)
|
.if defined(WITHOUT_DBUS)
|
||||||
CONFIG+= no-dbus
|
CONFIG+= no-dbus
|
||||||
.else
|
.else
|
||||||
|
|
25
audio/mumble/files/patch-plugins-plugins.pri
Normal file
25
audio/mumble/files/patch-plugins-plugins.pri
Normal 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
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue