From kde-bugs-dist Thu Jul 31 22:38:46 2003 From: George Staikos Date: Thu, 31 Jul 2003 22:38:46 +0000 To: kde-bugs-dist Subject: [Bug 61796] Compile problem on Solaris 2.6 - arts uses fabsf which X-MARC-Message: https://marc.info/?l=kde-bugs-dist&m=105969120327322 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. http://bugs.kde.org/show_bug.cgi?id=61796 staikos@kde.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From staikos@kde.org 2003-08-01 00:38 ------- Subject: ARTS_1_1_BRANCH: arts/soundserver CVS commit by staikos: no fabsf() in non-C99 environments This should be forward ported. CCMAIL: 61796-done@bugs.kde.org M +1 -1 artsd.cc 1.43.2.3 --- arts/soundserver/artsd.cc #1.43.2.2:1.43.2.3 @@ -292,5 +292,5 @@ int main(int argc, char **argv) AudioManager audioManager; - if (fabsf(cfgVolume) > 1e-10) + if (fabs(cfgVolume) > 1e-10) server.outVolume().scaleFactor(cfgVolume);