[Bug 800351] [NEW] regression with gcc-4.x

2011-06-21 Thread orbitcowboy
Public bug reported:

Binary package hint: acovea

compiling with gcc-4.x leads to a regression.:


libacovea-5.1.1$ make
Making all in libacovea
make[1]: Entering directory `/home/oem/Downloads/libacovea-5.1.1/libacovea'
if /bin/bash ../libtool --tag=CXX --mode=compile g++ -I. -I. -I. -I. -I.. 
-DACOVEA_VERSION=\5.1.1\ 
-DACOVEA_CONFIG_DIR=\/usr/local/share/libacovea/config/\ 
-DACOVEA_BENCHMARK_DIR=\/usr/local/share/libacovea/benchmarks/\-g -O2 
-MT acovea.lo -MD -MP -MF .deps/acovea.Tpo -c -o acovea.lo acovea.cpp; \
then mv -f .deps/acovea.Tpo .deps/acovea.Plo; else rm -f 
.deps/acovea.Tpo; exit 1; fi
mkdir .libs
 g++ -I. -I. -I. -I. -I.. -DACOVEA_VERSION=\5.1.1\ 
-DACOVEA_CONFIG_DIR=\/usr/local/share/libacovea/config/\ 
-DACOVEA_BENCHMARK_DIR=\/usr/local/share/libacovea/benchmarks/\ -g -O2 -MT 
acovea.lo -MD -MP -MF .deps/acovea.Tpo -c acovea.cpp  -fPIC -DPIC -o 
.libs/acovea.o
In file included from acovea.cpp:36:0:
acovea.h:422:5: warning: 'typedef' was ignored in this declaration [enabled by 
default]
acovea.h:630:5: warning: 'typedef' was ignored in this declaration [enabled by 
default]
acovea.h:636:5: warning: 'typedef' was ignored in this declaration [enabled by 
default]
acovea.cpp: In function 'double run_test(const 
std::vectorstd::basic_stringchar , std::string, libevocosm::listener, 
acovea::optimization_mode)':
acovea.cpp:1214:42: error: no matching function for call to 'stat::stat(const 
char*, stat*)'
acovea.cpp:1214:42: note: candidates are:
/usr/include/bits/stat.h:46:8: note: stat::stat()
/usr/include/bits/stat.h:46:8: note:   candidate expects 0 arguments, 2 provided
/usr/include/bits/stat.h:46:8: note: stat::stat(const stat)
/usr/include/bits/stat.h:46:8: note:   candidate expects 1 argument, 2 provided
acovea.cpp:1221:23: warning: deprecated conversion from string constant to 
'char*' [-Wwrite-strings]
make[1]: *** [acovea.lo] Error 1
make[1]: Leaving directory `/home/oem/Downloads/libacovea-5.1.1/libacovea'
make: *** [all-recursive] Error 1

The solution to solve this, there is a missing #include sys/stat.h.
Please add this include in file libacovea/acovea.cpp and the problem is
solved.

Best regards

Martin

** Affects: acovea (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/800351

Title:
  regression with gcc-4.x

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/acovea/+bug/800351/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 800351] Re: regression with gcc-4.x

2011-06-21 Thread orbitcowboy
this issue is already fixed here:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=625078


** Bug watch added: Debian Bug tracker #625078
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=625078

** Changed in: acovea (Ubuntu)
   Status: New = Opinion

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/800351

Title:
  regression with gcc-4.x

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/acovea/+bug/800351/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 695507] [NEW] [cppcheck] buffer access out of bounds

2010-12-29 Thread orbitcowboy
Public bug reported:

Binary package hint: zsnes

during a check with the static code analysis tool cppcheck
(http://sourceforge.net/apps/mediawiki/cppcheck/index.php?title=Main_Page)
the tool discovered a severe error in the sources  of
zsnes_1.510.tar.gz. Here is the report of cppcheck:

./src/initc.c:2764 [error] - Array 'SPCRAM[65472]' index 65535 out of
bounds

Take a look at the source (here is reduced sample to show what is going
on):

#include iostream

int main()
{
int i;
int SPCRAM[65472];
//std::cout  0x40  std::endl;
//std::cout  0xFFC0  std::endl;
for(i = 0;i0x40;i++)
{
  SPCRAM[0xFFC0+i] = 0;
}
}

The buffer SPCRAM is accessed out bounds.

Best regards from the cppheck-team.

** Affects: zsnes (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/695507

Title:
  [cppcheck] buffer access out of bounds

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 72798] Re: Nedit bug attributed to lesstif

2010-12-07 Thread orbitcowboy
Just to let you know, i solved the problem by following steps:

Buliding nedit from source, using libmotifdev:

- Download the latest snapshot of nedit from http://www.nedit.org/
- apt-get install libmotif-dev
- tar -xpvzf nedit-snapshot.tar.gz 
- cd nedit/
- make linux

Now i have version:

5.6 [Under Development] HEAD
Dec 7, 2010

 Built on: Linux, Pentium Pro, GNU C
 Built at: Dec  7 2010, 09:54:25
   With Motif: 2.2.3 [@(#)Motif Version 2.2.3]
Running Motif: 2.2 [unknown]
   Server: The X.Org Foundation 1090
   Visual: 24-bit TrueColor (ID 0x21, Default)
   Locale: de_DE.utf8

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/72798

Title:
  Nedit bug attributed to lesstif

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 40367] Re: ggcov: Incorrect library version dependency

2010-04-13 Thread orbitcowboy
on lucid, current beta
i get the same. This means the bug is not fixed yet.

Best regards

Martin

-- 
ggcov: Incorrect library version dependency
https://bugs.launchpad.net/bugs/40367
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 373643] Re: kprof crashes after intrepid - jaunty upgrade

2009-05-21 Thread orbitcowboy
Hello,

on my system, it is the same. After upgrading from intrepid to jaunty,
kprof crashes on startup:

kprof 
QSettings: failed to open file '/etc/qt3/qt_plugins_3.3rc'
kbuildsycoca running...
QSettings: failed to open file '/etc/qt3/qt_plugins_3.3rc'
*** stack smashing detected ***: kprof terminated
=== Backtrace: =
/lib/tls/i686/cmov/libc.so.6(__fortify_fail+0x48)[0xb6340da8]
/lib/tls/i686/cmov/libc.so.6(__fortify_fail+0x0)[0xb6340d60]
kprof[0x8056a4a]
kprof[0x8070bf3]
/lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xe5)[0xb6259775]
kprof(_ZN11KMainWindow10setCaptionERK7QStringb+0x75)[0x80555d1]
=== Memory map: 
08048000-08076000 r-xp  08:01 5636180/usr/bin/kprof
08076000-08078000 rw-p 0002e000 08:01 5636180/usr/bin/kprof
0943-09494000 rw-p 0943 00:00 0  [heap]
b602f000-b604d000 r-xp  08:01 589836 
/usr/lib/kde3/plugins/styles/plastik.so
b604d000-b604e000 r--p 0001d000 08:01 589836 
/usr/lib/kde3/plugins/styles/plastik.so
b604e000-b604f000 rw-p 0001e000 08:01 589836 
/usr/lib/kde3/plugins/styles/plastik.so
b604f000-b605 r--p  08:01 6048839
/usr/share/locale-langpack/en_GB/LC_MESSAGES/libc.mo
b605-b6056000 r--s  08:01 13929509   
/var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-x86.cache-2
b6056000-b6059000 r--s  08:01 13929508   
/var/cache/fontconfig/e383d7ea5fbe662a33d9b44caf393297-x86.cache-2
b6059000-b605d000 r--s  08:01 13929495   
/var/cache/fontconfig/921a30a17f0be15c70ac14043cb7a739-x86.cache-2
b605d000-b605f000 r--s  08:01 13929507   
/var/cache/fontconfig/c69f04ab05004e31a6d5e715764f16d8-x86.cache-2
b605f000-b6062000 r--s  08:01 13926903   
/var/cache/fontconfig/6eb3985aa4124903f6ff08ba781cd364-x86.cache-2
b6062000-b6063000 r--s  08:01 13929497   
/var/cache/fontconfig/4c73fe0c47614734b17d736dbde7580a-x86.cache-2
b6063000-b6066000 r--s  08:01 13929499   
/var/cache/fontconfig/a755afe4a08bf5b97852ceb7400b47bc-x86.cache-2
b6066000-b606d000 r--s  08:01 13929506   
/var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-x86.cache-2
b606d000-b607 r--s  08:01 13929503   
/var/cache/fontconfig/de156ccd2eddbdc19d37a45b8b2aac9c-x86.cache-2
b607-b6078000 r--s  08:01 13929502   
/var/cache/fontconfig/e3de0de479f42330eadf588a55fb5bf4-x86.cache-2
b6078000-b6083000 r--s  08:01 13926902   
/var/cache/fontconfig/0f34bcd4b6ee430af32735b75db7f02b-x86.cache-2
b6083000-b6085000 r--s  08:01 13926910   
/var/cache/fontconfig/ddd4086aec35a5275babba44bb759c3c-x86.cache-2
b6085000-b6086000 r--s  08:01 13929504   
/var/cache/fontconfig/4794a0821666d79190d59a36cb4f44b5-x86.cache-2
b6086000-b60a8000 r--s  08:01 13927475   
/var/cache/fontconfig/365b55f210c0a22e9a19e35191240f32-x86.cache-2
b60a8000-b60ab000 r--s  08:01 13926962   
/var/cache/fontconfig/de9486f0b47a4d768a594cb4198cb1c6-x86.cache-2
b60ab000-b60b2000 r--s  08:01 13929494   
/var/cache/fontconfig/d52a8644073d54c13679302ca1180695-x86.cache-2
b60b2000-b60b8000 r--s  08:01 13926907   
/var/cache/fontconfig/089dead882dea3570ffc31a9898cfb69-x86.cache-2
b60b8000-b60c r--s  08:01 13926958   
/var/cache/fontconfig/e13b20fdb08344e0e664864cc2ede53d-x86.cache-2
b60c-b60ff000 r--p  08:01 5701916
/usr/lib/locale/en_GB.utf8/LC_CTYPE
b60ff000-b61ea000 r--p  08:01 5701709
/usr/lib/locale/en_GB.utf8/LC_COLLATE
b61ea000-b61ee000 rw-p b61ea000 00:00 0 
b61ee000-b61f2000 r-xp  08:01 5639145/usr/lib/libXdmcp.so.6.0.0
b61f2000-b61f3000 rw-p 3000 08:01 5639145/usr/lib/libXdmcp.so.6.0.0
b61f3000-b61f6000 r-xp  08:01 5439526/lib/libuuid.so.1.2
b61f6000-b61f7000 r--p 2000 08:01 5439526/lib/libuuid.so.1.2
b61f7000-b61f8000 rw-p 3000 08:01 5439526/lib/libuuid.so.1.2
b61f8000-b621 r-xp  08:01 5636213/usr/lib/libxcb.so.1.1.0
b621-b6211000 r--p 00017000 08:01 5636213/usr/lib/libxcb.so.1.1.0
b6211000-b6212000 rw-p 00018000 08:01 5636213/usr/lib/libxcb.so.1.1.0
b6212000-b6214000 r-xp  08:01 5639523/usr/lib/libXau.so.6.0.0
b6214000-b6215000 r--p 1000 08:01 5639523/usr/lib/libXau.so.6.0.0
b6215000-b6216000 rw-p 2000 08:01 5639523/usr/lib/libXau.so.6.0.0
b6216000-b621a000 r-xp  08:01 5637428/usr/lib/libXfixes.so.3.1.0
b621a000-b621b000 rw-p 3000 08:01 5637428/usr/lib/libXfixes.so.3.1.0
b621b000-b621c000 rw-p b621b000 00:00 0 
b621c000-b624 r-xp  08:01 5636356/usr/lib/libexpat.so.1.5.2
b624-b6242000 r--p 00023000 08:01 5636356/usr/lib/libexpat.so.1.5.2
b6242000-b6243000 rw-p 00025000 08:01 5636356/usr/lib/libexpat.so.1.5.2
b6243000-b639f000 r-xp  08:01 5473235/lib/tls/i686/cmov/libc-2.9.so
b639f000-b63a ---p 0015c000 08:01 5473235/lib/tls/i686/cmov/libc-2.9.so
b63a-b63a2000 r--p 0015c000 08:01 5473235/lib/tls/i686/cmov/libc-2.9.so

[Bug 366835] Re: in 9.04 for AMD64, nedit will not copy to clipboard

2009-05-12 Thread orbitcowboy
Hi Brian,
i needed to install the following packages to compile nedit from source:

libmotif-dev, libmotif3,libxp-dev

then,

tar -xpvzf nedit_5.6~cvs20081118.orig.tar.gz
cd nedit-5.6/makefiles/
make linux

...

that worked fine :-)

Now, hopefully the copy  paste bug is  gone on my fresh installed
jaunty.

Best regards

Ettl Martin

-- 
in 9.04 for AMD64, nedit will not copy to clipboard
https://bugs.launchpad.net/bugs/366835
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 318336] [NEW] firefox crashed

2009-01-17 Thread orbitcowboy
Public bug reported:

Binary package hint: firefox-3.0

i opened the following site: http://www.scinexx.de/dossier-detail-9-9.html
then firefox chrased

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 8.10
Package: firefox-3.0 3.0.5+nobinonly-0ubuntu0.8.10.1
ProcEnviron:
 
PATH=/home/username/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: firefox-3.0
Uname: Linux 2.6.27-9-generic i686

** Affects: firefox-3.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
firefox crashed
https://bugs.launchpad.net/bugs/318336
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 318336] Re: firefox crashed

2009-01-17 Thread orbitcowboy

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/21300354/Dependencies.txt

** Attachment added: ExtensionSummary.txt
   http://launchpadlibrarian.net/21300355/ExtensionSummary.txt

** Attachment added: profiles.ini.txt
   http://launchpadlibrarian.net/21300357/profiles.ini.txt

-- 
firefox crashed
https://bugs.launchpad.net/bugs/318336
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 302855] [NEW] scrolling up and down with nedit needs 100% cpu load with activated compitz

2008-11-27 Thread orbitcowboy
Public bug reported:

Binary package hint: nedit

Hi @all,

i am running intrepid on my dell latitude D630 notebook since a time. I found a 
bug in the nedit package.
If i have enabled the compitz (graphic) feature and scroll down/up an a file 
opened with nedit my cpu-usage goes to 100%.
If i disable compitz, the cpu-usage is ~2%, or so. This means, it happens only 
with activated compitz.

Can you help me, fix this?

Regards

Orbitcowboy

** Affects: nedit (Ubuntu)
 Importance: Undecided
 Status: New

-- 
scrolling up and down with nedit needs 100% cpu load with activated compitz
https://bugs.launchpad.net/bugs/302855
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 239466] Re: Gnuplot crashes

2008-11-21 Thread orbitcowboy
Thank you 'fensterplatz' it works as you suggested.

Regards

Orbitcowboy

-- 
Gnuplot crashes
https://bugs.launchpad.net/bugs/239466
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 289098] Re: VMWare keyboard mapping made incorrect on recent Ubuntu Intrepid 8.10 Updates -dated Fri Oct 24 2008

2008-11-18 Thread orbitcowboy
I had the same problem on Ubuntu 8.10 with vmware-player 2.5.0
build-118166 and WindowsXP as guest system. Thanks for your help. I
followed the instructions by http://communities.vmware.com/thread/177133
and it worked.

Regards

Orbitcowboy

-- 
VMWare keyboard mapping made incorrect on recent Ubuntu Intrepid 8.10 Updates  
-dated Fri Oct 24 2008
https://bugs.launchpad.net/bugs/289098
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 295100] Re: dell latitude d630 intrepid ibex needs 5 minutes to boot

2008-11-07 Thread orbitcowboy
** Description changed:

- After updating from Hardy my machine needs 5 minutes to boot. 
+ After updating from Hardy to Intrepid, my machine needs 5 minutes to boot. 
  By inspecting the 'dmesg' it is waiting at the message 'configuring network 
interfaces'
  
- See dmsg.txt and lscpi.txt
+ See dmsg.txt and lspci.txt

-- 
dell latitude d630 intrepid ibex needs 5 minutes to boot
https://bugs.launchpad.net/bugs/295100
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 295100] [NEW] dell latitude d630 intrepid ibex needs 5 minutes to boot

2008-11-07 Thread orbitcowboy
Public bug reported:

After updating from Hardy my machine needs 5 minutes to boot. 
By inspecting the 'dmesg' it is waiting at the message 'configuring network 
interfaces'

See dmsg.txt and lscpi.txt

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
dell latitude d630 intrepid ibex needs 5 minutes to boot
https://bugs.launchpad.net/bugs/295100
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 295100] Re: dell latitude d630 intrepid ibex needs 5 minutes to boot

2008-11-07 Thread orbitcowboy

** Attachment added: dmesg and lscpi output
   http://launchpadlibrarian.net/19454871/dmsg.txt

-- 
dell latitude d630 intrepid ibex needs 5 minutes to boot
https://bugs.launchpad.net/bugs/295100
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 130559] Re: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03) - no sound

2007-10-16 Thread orbitcowboy
Hey @all,

 Thanks to the post of-- Roger E Critchlow Jr  wrote on 2007-10-07:
(permalink)..

My sound works fine with Gusty on my new Dell Latitude D630 and Kernel
2.6.22.14-generic

uname -a:
 2.6.22-14-generic #1 SMP Sun Oct 14 23:05:12 GMT 2007 i686 GNU/Linux

Regards

orbitcowboy

-- 
 Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03) - no sound
https://bugs.launchpad.net/bugs/130559
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs