Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 04 May 2015 09:39:01 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 199919] games/wxlauncher: fails to build with WX3=on JOYSTICK=off
Message-ID:  <bug-199919-13-IcM1ta2dwX@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-199919-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-199919-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199919

--- Comment #1 from Jan Beich <jbeich@FreeBSD.org> ---
wxLogDebug() is no longer a nop in non-debug build according to c++ -E output:

  // wxgtk-2.8
  bool JoyMan::Initialize() {
   if ( JoyMan::IsInitialized() ) {
    wxLogNop();

    return true;
   }
  ...

  // wxgtk-3.0
  JoyMan::Initialize() {
   if ( JoyMan::IsInitialized() ) {
    for ( bool wxlogcheck68 = false; !wxlogcheck68 &&
wxLog::IsLevelEnabled(wxLOG_Debug, wxLOG_COMPONENT); wxlogcheck68 = true )
wxLogger(wxLOG_Debug,
"/wrkdirs/usr/ports/games/wxlauncher/work/wxLauncher-wxlauncher-7ee46df/code/apis/JoystickManager.cpp",
68, __FUNCTION__, wxLOG_COMPONENT).Log(L"JoyMan already initialized with %d
joysticks",
     joysticks.Count());
    return true;
   }
  ...

-- 
You are receiving this mail because:
You are the assignee for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-199919-13-IcM1ta2dwX>