From jscops at ...11... Tue Jul 1 07:31:28 2008 From: jscops at ...11... (Jacky) Date: Tue, 1 Jul 2008 07:31:28 +0200 Subject: [Gambas-user] Date difficulties In-Reply-To: <200806281437.51860.rterry@...1822...> References: <200806281437.51860.rterry@...1822...> Message-ID: <200807010731.28352.jscops@...11...> Le Saturday 28 June 2008 06:37:51 richard terry, vous avez ?crit?: > Something I've never come to terms with which should be simple. > > I have a class containing items including a date eg as a simple example > which dosn't exist and I don't use but will serve the purpose of the > request: > > cOrder > > part as string > date as date > > In a form I may have this sort of code > > Dim order as new cOrder > > and on the form, some textboxes e.g > txtPart > txtDate > > When I type into the box I want the contents to end up in the class: > > order.part = txtPart.text > order.date = txtDate.text > > The program complains about invalid date. > > I.e all I want is a simple exmple of how to use a textbox to put a date in > the correct format. > > Hope that's not too ambiguous. > > Thanks in advance. > > Richard Hello Terry txtDate.txt = "01.01.2008" (this is a french date format : dd.mm.yyyy) order.date = Date(Right$(txtDate.txt, 4), Mid$(txtDate.txt, 4,2), Left$(txtDate.txt, 2)) I hope is that you want. Jacky From serge.bouc at ...402... Tue Jul 1 18:56:31 2008 From: serge.bouc at ...402... (serge bouc) Date: Tue, 01 Jul 2008 18:56:31 +0200 Subject: [Gambas-user] Documentation ? Message-ID: <486A61BF.9000106@...402...> Hello Gambas, Some years ago, I wrote a program using Gambas 1, to produce some pictures in hyperbolic geometry. I recently tried to restart this program. In between, I had updated my system to Mandriva 2008, and even if Gambas 1 is still included in the distribution, it just does'nt work (no fonts available...) So I installed Gambas2, and after "some" work, I more or less succeeded to have my program running. For this I had to convert a lot of things (e.g. the "Array" function is no longer a function..., and I had to guess almost by my own by what it has been replaced. This is OK anyway, much nicer now). I still have a couple of problems remaining, that I could probably solve easily if I could find Gambas documentation. I mean *not* http://gambasdoc.org/help/, which may certainly help experts... in some cases. :-( One of the concrete problems I have is : - How to change the color of the text in a button ? The assignment button.foreground=my_nice_color_kivabien used to work in Gambas 1, but its only effect now seems to turn the color to black, independently of the value in input. I am sure I'm missing something here, but what ? Thanks in advance for any help. Best regards. Serge. From steven at ...1652... Thu Jul 3 13:32:27 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Thu, 03 Jul 2008 13:32:27 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 Message-ID: <1215084747.19393.8.camel@...1936...> Hi, I just installed gambas 2.7 (as per instructions on the site from the repository on suse for suse 11 (freshly installed also). I got a signal 11 exeption closing a modal form. It's called as this : PUBLIC SUB photo_DblClick() ' Add/replace the image photo DIM Mpath AS String DIM sData AS String IF rsD THEN fileselector.Tag = FALSE fileselector.ShowModal FOR EACH MPath IN MGlobal.F_Ch photo.Picture = CreatePic(MPath, 320, 0) ' and we write it in the database (if there's one) IF rsD.Available THEN sData = File.Load(MPath) rsD!photo = sData rsD.Update END IF NEXT END IF END Then, in the form i do this : PUBLIC SUB cancel_Click() ME.close END The signal occors, just at/after the ME.close. I donnot get back into the original routine. This worked just fine before (2.0). Steven From jedsoftware at ...626... Fri Jul 4 22:36:09 2008 From: jedsoftware at ...626... (John Dizaro) Date: Fri, 4 Jul 2008 17:36:09 -0300 Subject: [Gambas-user] problem with bold in gridview Message-ID: <11c2d5210807041336m72f1fe0akad9a518f2ca7df9a@...627...> I am using gambas 2.6 debian GTK How do i use bold in gridview in a cell when i try: DV_t07_carro[LINHA, 10].Font = Font["Bold"] or DV_t07_carro[LINHA, 10].Font .Bold = True it does not works Thanks for help me -- John Evan Dizaro Software - Fone: (41) 3333-0303 Fone: (41) 9244-4603 Rua: Alferes Poli Curitiba - PR - Brasil From gambas at ...1... Fri Jul 4 22:42:38 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 4 Jul 2008 22:42:38 +0200 Subject: [Gambas-user] Font in datechooser In-Reply-To: References: Message-ID: <200807042242.38206.gambas@...1...> On dimanche 29 juin 2008, Peter Mathijssen wrote: > Hi, > > When i use datechooser_activate () i want the day i doubleclicked on to get > bold. Is this possible? > > Peter No, only the current day is displayed in bold. But you can easily take the datechooser source code and adapt it to display the date you want in bold. Regards, -- Benoit Minisini From gambas at ...1... Fri Jul 4 22:46:24 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 4 Jul 2008 22:46:24 +0200 Subject: [Gambas-user] Weird Press Enter > formatting error in IDE In-Reply-To: <200806302149.02513.rterry@...1822...> References: <200806302149.02513.rterry@...1822...> Message-ID: <200807042246.24816.gambas@...1...> On lundi 30 juin 2008, richard terry wrote: > Version 1440. > > This should be reproducable. > > I'd typed in the function name and started writing a comment: > > Public Function Letter_Validate_Contents() as Boolean > 'Checks that there is adequate content in a letter > 'if there is returns a true flag > '------------------------------------------------- > end > > But I usually segregate my comments by putting a line top and bottom, so I > clicked on the editor after the word Boolean, thing the action > would insert a blank line. > > What it did was shift the whole of my subroutine contents **After** the > 'end' keyword of the subroutine, as per the followin piccies. > > If you look at piccie number 1 you can see the cursor flash captured after > the word Boolean, and in piccie number 2, the result, with the cursor 2 > lines down (I only hit one action. > > Regards > > > Richard This bevahiour is not weird: you must type the END keyword first (like in your mail, unlike in your screenshots), otherwise the IDE will insert it automatically. Regards, -- Benoit Minisini From gambas at ...1... Fri Jul 4 22:49:15 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 4 Jul 2008 22:49:15 +0200 Subject: [Gambas-user] gstlibs on gambas! In-Reply-To: <5757f8300806261450j108c9e36t68acaffeb0b2d2cf@...627...> References: <5757f8300806261450j108c9e36t68acaffeb0b2d2cf@...627...> Message-ID: <200807042249.15524.gambas@...1...> On jeudi 26 juin 2008, Pietro Di Costanzo wrote: > Hi to all! > After spending much time understanding the extern and pointers > functionality under gambas i've made a little app based on the gstreamer > libraries. > > The application can play audio/video files (with the video embedded in the > application), play-pause-stop them and has seeking functionality too. > To make all things work i've created some components based on the gstreamer > library (using the pygst structure) and a little simple gui based on them. > The code is very rudimentary for now, i've just implemented the functions > needed to make the things work, but with some time and your help i'm sure > we can write a complete gstreamer backend for gambas! > So if someone is interested in developing the class or an app based on this > class, please let me know! Great idea, but I cannot open your attachment... And it is a better idea to use library directly in C/C++. What I do usually is writing the basic library access in C/C++, and the high-level component interface in Gambas. For example, I did that in Gambas 3 gb.desktop component, and I will do that in gb.web to optimize the HTML quoting function. Regards, -- Benoit Minisini From gambas at ...1... Fri Jul 4 22:50:24 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 4 Jul 2008 22:50:24 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <1215084747.19393.8.camel@...1936...> References: <1215084747.19393.8.camel@...1936...> Message-ID: <200807042250.24086.gambas@...1...> On jeudi 03 juillet 2008, Steven Lobbezoo wrote: > Hi, > > I just installed gambas 2.7 (as per instructions on the site from the > repository on suse for suse 11 (freshly installed also). > > I got a signal 11 exeption closing a modal form. It's called as this : > > PUBLIC SUB photo_DblClick() > ' Add/replace the image photo > DIM Mpath AS String > DIM sData AS String > > IF rsD THEN > fileselector.Tag = FALSE > fileselector.ShowModal > FOR EACH MPath IN MGlobal.F_Ch > photo.Picture = CreatePic(MPath, 320, 0) > ' and we write it in the database (if there's one) > IF rsD.Available THEN > sData = File.Load(MPath) > rsD!photo = sData > rsD.Update > END IF > NEXT > END IF > END > > > Then, in the form i do this : > PUBLIC SUB cancel_Click() > ME.close > END > > > The signal occors, just at/after the ME.close. > I donnot get back into the original routine. > This worked just fine before (2.0). > > > Steven > Can you isolate this bug in a small project? -- Benoit Minisini From jedsoftware at ...626... Fri Jul 4 22:56:09 2008 From: jedsoftware at ...626... (John Dizaro) Date: Fri, 4 Jul 2008 17:56:09 -0300 Subject: [Gambas-user] problem with bold in gridview Message-ID: <11c2d5210807041356s4124fe54qcf787a7c9c9dd643@...627...> I am using gambas 2.6 debian GTK How do i use bold in gridview in a cell when i try: DV_t07_carro[LINHA, 10].Font = Font["Bold"] or DV_t07_carro[LINHA, 10].Font .Bold = True it does not works Thanks for help me -- John Evan Dizaro Software - Fone: (41) 3333-0303 Fone: (41) 9244-4603 Rua: Alferes Poli Curitiba - PR - Brasil From steven at ...1652... Sat Jul 5 10:40:24 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Sat, 05 Jul 2008 10:40:24 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <200807042250.24086.gambas@...1...> References: <1215084747.19393.8.camel@...1936...> <200807042250.24086.gambas@...1...> Message-ID: <1215247224.3590.14.camel@...1936...> Yes, here it is attached. Steven Le vendredi 04 juillet 2008 ? 22:50 +0200, Benoit Minisini a ?crit : > On jeudi 03 juillet 2008, Steven Lobbezoo wrote: > > Hi, > > > > I just installed gambas 2.7 (as per instructions on the site from the > > repository on suse for suse 11 (freshly installed also). > > > > I got a signal 11 exeption closing a modal form. It's called as this : > > > > PUBLIC SUB photo_DblClick() > > ' Add/replace the image photo > > DIM Mpath AS String > > DIM sData AS String > > > > IF rsD THEN > > fileselector.Tag = FALSE > > fileselector.ShowModal > > FOR EACH MPath IN MGlobal.F_Ch > > photo.Picture = CreatePic(MPath, 320, 0) > > ' and we write it in the database (if there's one) > > IF rsD.Available THEN > > sData = File.Load(MPath) > > rsD!photo = sData > > rsD.Update > > END IF > > NEXT > > END IF > > END > > > > > > Then, in the form i do this : > > PUBLIC SUB cancel_Click() > > ME.close > > END > > > > > > The signal occors, just at/after the ME.close. > > I donnot get back into the original routine. > > This worked just fine before (2.0). > > > > > > Steven > > > > Can you isolate this bug in a small project? > -------------- next part -------------- ' Gambas class file PUBLIC SUB Form_Resize() FileChooser1.Move(2, 2, ME.ClientW - 4, ME.ClientH - 60) Panel1.Move(2, ME.ClientH - 58, ME.ClientW - 4, ME.ClientH - 4) ok.Move(Panel1.width - 100, ok.Y) cancel.Move(Panel1.width - 210, ok.Y) END PUBLIC SUB cancel_Click() MGlobal.F_Ch.Clear ME.close END PUBLIC SUB ok_Click() DIM msg AS String ' we write the array of selected filenames to the main module Mglobal.F_Ch = NEW String[] FOR EACH msg IN FileChooser1.SelectedPaths Mglobal.F_Ch.Add(msg) NEXT MGlobal.FPath = FileChooser1.Dir ME.close END PUBLIC SUB Form_Open() DIM tmp AS String ' we add some marks if we can IF Exist("/home/partage") THEN tmp = "/home/partage" ELSE IF Exist(User.Home & "/partage") THEN tmp = User.Home & "/partage" END IF FileChooser1.Dir = MGlobal.FPath IF tmp THEN FileChooser1.Bookmarks = [[tmp, "Partage", "icon:/16/language"], ["/home", "R?pertoire base", "icon:/16/directory"]] ELSE FileChooser1.Bookmarks = [["/tmp", "Temporary directory"], ["/home", "R?pertoire base", "icon:/16/directory"]] END IF END -------------- next part -------------- # Gambas Form File 2.0 { Form Form MoveScaled(0,0,84,53) Font = Font["Italic"] Background = Color.Background Foreground = Color.Foreground Text = ("Revimmo - selection de fichiers") Icon = Picture["icon:/16/watch"] { FileChooser1 FileChooser MoveScaled(1,1,82,43) Font = Font["Tahoma,Italic,10"] Background = Color.Background Foreground = Color.Foreground Multi = True Filter = [("*.png;*.jpg;*.jpeg;*.bmp;*.gif;*.xpm"), ("Images, photo's"), ("*.pdf"), ("Adobe "), ("*.*"), ("Tous les fichiers")] ShowDetailed = True } { Panel1 Panel MoveScaled(1,45,82,8) { ok ToolButton MoveScaled(68,3,13,3) Font = Font["Tahoma,Italic,10"] Text = (" Allez-y") Picture = Picture["icon:/16/color"] Border = True } { cancel ToolButton MoveScaled(53,3,13,3) Font = Font["Tahoma,Italic,10"] Text = (" Annuler") Picture = Picture["icon:/16/cancel"] Border = True } { TextLabel1 TextLabel MoveScaled(0,0,50,7) Font = Font["Tahoma,Italic,8"] Foreground = &H800000& Text = ("Vous pouvez choisir plusieurs\nfichiers en m\xC3\xAAme temps, en\nappuient sur le taste \"Ctrl\" et\nselectionner les fichiers avec \nle souris, ou en m\xC3\xAAme fa\xC3\xA7on\nselectionner une liste avec le\ntaste \"Maj\" et le souris.") } } } -------------- next part -------------- ' Gambas class file PUBLIC SUB _new() END PUBLIC SUB Form_Open() END PUBLIC SUB Button1_Click() DIM Mpath AS String fileselector.ShowModal FOR EACH MPath IN MGlobal.F_Ch Message.Info(Mpath) NEXT END -------------- next part -------------- # Gambas Form File 2.0 { Form Form MoveScaled(0,0,50,50) Text = ("") { Button1 Button MoveScaled(12,12,17,5) Text = ("Button1") } } -------------- next part -------------- ' Gambas module file PUBLIC F_Ch AS NEW String[] PUBLIC FPath AS String = USER.Home ' the last path of the fileselector, remember this From sillyseb at ...67... Sat Jul 5 10:43:09 2008 From: sillyseb at ...67... (Seb Brown) Date: Sat, 5 Jul 2008 08:43:09 +0000 Subject: [Gambas-user] Gambas2-2.7.0 on Fedora 9 64bit Message-ID: Hello Board, having had my 1st programming experiences on an Amstrad CPC6128 with Locomotive BASIC back in the early 90ies, I have recently been trying to get back into programming. I have been trying to get familiar with the current languages such as C++ and/or Java ... it's not the object-oriented approach that bugs me, it's the syntax (C++ is simply horrible to read)! So, I was happy to read about Gambas just the other day as I was looking for object oriented BASIC-alternatives for Linux. Enough blurb, here's the problem: I can't get it to start :o( I am Using Fedora 9 x86_64bit (Kernel 2.6.25.9-76.fc9.x86_64, Gnome 2.22.2) on a Samsung Laptop with an Intel 64 bit Processor. The version of Gambas is 2.7.0-1.fc9 (x86_64) which I installed via package manager from the Fedora repository. When I try to launch Gambas from the start menu, I get the message 'starting Gambas' in the task bar, but then it silently fails. Typing Gambas2 in the console gives me this error: ERROR: #2: Cannot load class 'Project': Unable to load class file I would be very happy about any hints on how to get things working! Thanks in advance, Seb. _________________________________________________________________ Use video conversation to talk face-to-face with Windows Live Messenger. http://www.windowslive.com/messenger/connect_your_way.html?ocid=TXT_TAGLM_WL_Refresh_messenger_video_072008 From gambas at ...1... Sat Jul 5 12:14:38 2008 From: gambas at ...1... (Benoit Minisini) Date: Sat, 5 Jul 2008 12:14:38 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <1215247224.3590.14.camel@...1936...> References: <1215084747.19393.8.camel@...1936...> <200807042250.24086.gambas@...1...> <1215247224.3590.14.camel@...1936...> Message-ID: <200807051214.38612.gambas@...1...> On samedi 05 juillet 2008, Steven Lobbezoo wrote: > Yes, here it is attached. > > Steven > Can you use the "make source archive" IDE menu entry to make a source package of the project, and send it me? -- Benoit Minisini From steven at ...1652... Sat Jul 5 12:20:03 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Sat, 05 Jul 2008 12:20:03 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <200807051214.38612.gambas@...1...> References: <1215084747.19393.8.camel@...1936...> <200807042250.24086.gambas@...1...> <1215247224.3590.14.camel@...1936...> <200807051214.38612.gambas@...1...> Message-ID: <1215253203.11965.1.camel@...1936...> I'm affraid not. If I do that, gambas just quits immidiatly. No errors, no messages, no archive. Steven Le samedi 05 juillet 2008 ? 12:14 +0200, Benoit Minisini a ?crit : > On samedi 05 juillet 2008, Steven Lobbezoo wrote: > > Yes, here it is attached. > > > > Steven > > > > Can you use the "make source archive" IDE menu entry to make a source package > of the project, and send it me? > From gambas at ...1... Sat Jul 5 12:26:43 2008 From: gambas at ...1... (Benoit Minisini) Date: Sat, 5 Jul 2008 12:26:43 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <1215253203.11965.1.camel@...1936...> References: <1215084747.19393.8.camel@...1936...> <200807051214.38612.gambas@...1...> <1215253203.11965.1.camel@...1936...> Message-ID: <200807051226.43590.gambas@...1...> On samedi 05 juillet 2008, Steven Lobbezoo wrote: > I'm affraid not. > If I do that, gambas just quits immidiatly. > No errors, no messages, no archive. > > Steven > ????? You should have at least a segmentation fault! Anyway, I need at least the ".project" file to recreate your project on my computer. Regards, -- Benoit Minisini From steven at ...1652... Sat Jul 5 13:57:50 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Sat, 05 Jul 2008 13:57:50 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <200807051226.43590.gambas@...1...> References: <1215084747.19393.8.camel@...1936...> <200807051214.38612.gambas@...1...> <1215253203.11965.1.camel@...1936...> <200807051226.43590.gambas@...1...> Message-ID: <1215259070.11965.2.camel@...1936...> Ok, I just packed the directory with all it's files It's attached Regards, Le samedi 05 juillet 2008 ? 12:26 +0200, Benoit Minisini a ?crit : > On samedi 05 juillet 2008, Steven Lobbezoo wrote: > > I'm affraid not. > > If I do that, gambas just quits immidiatly. > > No errors, no messages, no archive. > > > > Steven > > > > ????? > > You should have at least a segmentation fault! > > Anyway, I need at least the ".project" file to recreate your project on my > computer. > > Regards, > -------------- next part -------------- A non-text attachment was scrubbed... Name: test_gambas.tar.gz Type: application/x-compressed-tar Size: 11156 bytes Desc: not available URL: From gambas at ...1... Sat Jul 5 15:31:32 2008 From: gambas at ...1... (Benoit Minisini) Date: Sat, 5 Jul 2008 15:31:32 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <1215259070.11965.2.camel@...1936...> References: <1215084747.19393.8.camel@...1936...> <200807051226.43590.gambas@...1...> <1215259070.11965.2.camel@...1936...> Message-ID: <200807051531.32985.gambas@...1...> On samedi 05 juillet 2008, Steven Lobbezoo wrote: > Ok, I just packed the directory with all it's files > It's attached > > Regards, > It works without crashing at all there... Strange! Please run your project in gdb (cd /path/to/my/project ; gdb gbx2 ; run -p) and send me the backtrace of the crash (bt command). Regards, -- Benoit Minisini From steven at ...1652... Sat Jul 5 15:48:01 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Sat, 05 Jul 2008 15:48:01 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <200807051531.32985.gambas@...1...> References: <1215084747.19393.8.camel@...1936...> <200807051226.43590.gambas@...1...> <1215259070.11965.2.camel@...1936...> <200807051531.32985.gambas@...1...> Message-ID: <1215265681.4697.3.camel@...1936...> Is this what you want ? GNU gdb 6.8 Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "i586-suse-linux"... (no debugging symbols found) (gdb) run -p Starting program: /usr/bin/gbx2 -p (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) ---Type to continue, or q to quit--- (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) (no debugging symbols found) [Thread debugging using libthread_db enabled] Error while reading shared library symbols: Cannot find new threads: generic error (no debugging symbols found) Cannot find new threads: generic error (gdb) (gdb) bt #0 0xb8088ae1 in _dl_debug_state () from /lib/ld-linux.so.2 #1 0xb808c0f2 in ?? () from /lib/ld-linux.so.2 #2 0xb8087e26 in ?? () from /lib/ld-linux.so.2 #3 0xb808ba2c in ?? () from /lib/ld-linux.so.2 #4 0xb8027c0f in ?? () from /lib/libdl.so.2 #5 0xb8087e26 in ?? () from /lib/ld-linux.so.2 #6 0xb80280dc in ?? () from /lib/libdl.so.2 #7 0xb8027b41 in dlopen () from /lib/libdl.so.2 #8 0xb78ee657 in g_module_open () from /usr/lib/libgmodule-2.0.so.0 #9 0xb7bf58f4 in ?? () from /usr/lib/libgtk-x11-2.0.so.0 #10 0xb7bf5dce in ?? () from /usr/lib/libgtk-x11-2.0.so.0 #11 0xb7bdcb30 in ?? () from /usr/lib/libgtk-x11-2.0.so.0 #12 0xb7880055 in g_option_context_parse () from /usr/lib/libglib-2.0.so.0 #13 0xb7bdc792 in gtk_parse_args () from /usr/lib/libgtk-x11-2.0.so.0 #14 0xb7bdc814 in gtk_init_check () from /usr/lib/libgtk-x11-2.0.so.0 #15 0xb7bdc854 in gtk_init () from /usr/lib/libgtk-x11-2.0.so.0 #16 0xb7e907ed in ?? () from /usr/lib/gambas2/gb.gtk.so #17 0xb7e8f343 in ?? () from /usr/lib/gambas2/gb.gtk.so #18 0x080621a5 in ?? () #19 0xb7ef35f5 in __libc_start_main () from /lib/libc.so.6 #20 0x0804ac81 in ?? () (gdb) Steven Le samedi 05 juillet 2008 ? 15:31 +0200, Benoit Minisini a ?crit : > On samedi 05 juillet 2008, Steven Lobbezoo wrote: > > Ok, I just packed the directory with all it's files > > It's attached > > > > Regards, > > > > It works without crashing at all there... Strange! > > Please run your project in gdb (cd /path/to/my/project ; gdb gbx2 ; run -p) > and send me the backtrace of the crash (bt command). > > Regards, > From gambas at ...1... Sat Jul 5 17:32:47 2008 From: gambas at ...1... (Benoit Minisini) Date: Sat, 5 Jul 2008 17:32:47 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <1215265681.4697.3.camel@...1936...> References: <1215084747.19393.8.camel@...1936...> <200807051531.32985.gambas@...1...> <1215265681.4697.3.camel@...1936...> Message-ID: <200807051732.47767.gambas@...1...> On samedi 05 juillet 2008, Steven Lobbezoo wrote: > Is this what you want ? > > GNU gdb 6.8 > Copyright (C) 2008 Free Software Foundation, Inc. > License GPLv3+: GNU GPL version 3 or later > > This is free software: you are free to change and redistribute it. > There is NO WARRANTY, to the extent permitted by law. Type "show > copying" > and "show warranty" for details. > This GDB was configured as "i586-suse-linux"... > (no debugging symbols found) > (gdb) run -p > Starting program: /usr/bin/gbx2 -p > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > ---Type to continue, or q to quit--- > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > (no debugging symbols found) > [Thread debugging using libthread_db enabled] > Error while reading shared library symbols: > Cannot find new threads: generic error > (no debugging symbols found) > Cannot find new threads: generic error > (gdb) > (gdb) bt > #0 0xb8088ae1 in _dl_debug_state () from /lib/ld-linux.so.2 > #1 0xb808c0f2 in ?? () from /lib/ld-linux.so.2 > #2 0xb8087e26 in ?? () from /lib/ld-linux.so.2 > #3 0xb808ba2c in ?? () from /lib/ld-linux.so.2 > #4 0xb8027c0f in ?? () from /lib/libdl.so.2 > #5 0xb8087e26 in ?? () from /lib/ld-linux.so.2 > #6 0xb80280dc in ?? () from /lib/libdl.so.2 > #7 0xb8027b41 in dlopen () from /lib/libdl.so.2 > #8 0xb78ee657 in g_module_open () from /usr/lib/libgmodule-2.0.so.0 > #9 0xb7bf58f4 in ?? () from /usr/lib/libgtk-x11-2.0.so.0 > #10 0xb7bf5dce in ?? () from /usr/lib/libgtk-x11-2.0.so.0 > #11 0xb7bdcb30 in ?? () from /usr/lib/libgtk-x11-2.0.so.0 > #12 0xb7880055 in g_option_context_parse () > from /usr/lib/libglib-2.0.so.0 > #13 0xb7bdc792 in gtk_parse_args () from /usr/lib/libgtk-x11-2.0.so.0 > #14 0xb7bdc814 in gtk_init_check () from /usr/lib/libgtk-x11-2.0.so.0 > #15 0xb7bdc854 in gtk_init () from /usr/lib/libgtk-x11-2.0.so.0 > #16 0xb7e907ed in ?? () from /usr/lib/gambas2/gb.gtk.so > #17 0xb7e8f343 in ?? () from /usr/lib/gambas2/gb.gtk.so > #18 0x080621a5 in ?? () > #19 0xb7ef35f5 in __libc_start_main () from /lib/libc.so.6 > #20 0x0804ac81 in ?? () > (gdb) > > > > Steven > Not really, as you don't have any crash. Another way of finding the problem is running your project with valgrind, this way: $ cd /path/to/my/project $ valgrind --tool=memcheck --num-callers=50 gbx2 -p And send me the full output of valgrind. At the moment, I think there is something weird on your system, or in the way Gambas was packaged... Regards, -- Benoit Minisini From steven at ...1652... Sat Jul 5 18:17:47 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Sat, 05 Jul 2008 18:17:47 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <200807051732.47767.gambas@...1...> References: <1215084747.19393.8.camel@...1936...> <200807051531.32985.gambas@...1...> <1215265681.4697.3.camel@...1936...> <200807051732.47767.gambas@...1...> Message-ID: <1215274667.4697.9.camel@...1936...> Ok, here it is : ==16860== Memcheck, a memory error detector. ==16860== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. ==16860== Using LibVEX rev 1804, a library for dynamic binary translation. ==16860== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==16860== Using valgrind-3.3.0, a dynamic binary instrumentation framework. ==16860== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. ==16860== For more details, rerun with: -v ==16860== ==16873== Syscall param rt_sigaction(act->sa_mask) points to uninitialised byte(s) ==16873== at 0x40007D2: (within /lib/ld-2.8.so) ==16873== by 0x52D63B7: google_breakpad::ExceptionHandler::TeardownHandler(int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16873== by 0x52D63F6: google_breakpad::ExceptionHandler::TeardownAllHandler() (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16873== by 0x52D67FE: google_breakpad::ExceptionHandler::~ExceptionHandler() (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16873== by 0x40AF8F0: exit (in /lib/libc-2.8.so) ==16873== by 0x8069603: (within /usr/bin/gbx2) ==16873== by 0x8069691: (within /usr/bin/gbx2) ==16873== by 0x805AC6E: (within /usr/bin/gbx2) ==16873== by 0x8050C00: (within /usr/bin/gbx2) ==16873== by 0x804F0EA: (within /usr/bin/gbx2) ==16873== by 0x804F3C0: (within /usr/bin/gbx2) ==16873== by 0x805DFDF: (within /usr/bin/gbx2) ==16873== by 0x46400F6: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16873== by 0x4640178: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16873== by 0x804E537: (within /usr/bin/gbx2) ==16873== by 0x804EDDD: (within /usr/bin/gbx2) ==16873== by 0x804F470: (within /usr/bin/gbx2) ==16873== by 0x804FD86: (within /usr/bin/gbx2) ==16873== by 0x8050D1C: (within /usr/bin/gbx2) ==16873== by 0x804F0EA: (within /usr/bin/gbx2) ==16873== by 0x804F3C0: (within /usr/bin/gbx2) ==16873== by 0x804F779: (within /usr/bin/gbx2) ==16873== by 0x8063095: (within /usr/bin/gbx2) ==16873== by 0x80525BE: (within /usr/bin/gbx2) ==16873== by 0x804E5CA: (within /usr/bin/gbx2) ==16873== by 0x8050086: (within /usr/bin/gbx2) ==16873== by 0x8050D3A: (within /usr/bin/gbx2) ==16873== by 0x804F0EA: (within /usr/bin/gbx2) ==16873== by 0x804F3C0: (within /usr/bin/gbx2) ==16873== by 0x805E08A: (within /usr/bin/gbx2) ==16873== by 0x805E54A: (within /usr/bin/gbx2) ==16873== by 0x4644886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16873== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16873== by 0x4627C45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16873== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16873== by 0x4B80C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16873== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16873== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16873== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16873== by 0x4704C89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16873== by 0x4705E47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16873== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16873== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16873== by 0x4B80C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16873== by 0x4B94A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16873== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16873== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16873== by 0x4704D29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16873== by 0x4704D62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16873== by 0x47E5DF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16873== Address 0xbe993fbc is on thread 1's stack ==16873== ==16873== ERROR SUMMARY: 5 errors from 1 contexts (suppressed: 78 from 2) ==16873== malloc/free: in use at exit: 866,790 bytes in 10,235 blocks. ==16873== malloc/free: 49,179 allocs, 38,944 frees, 8,084,483 bytes allocated. ==16873== For counts of detected errors, rerun with: -v ==16873== searching for pointers to 10,235 not-freed blocks. ==16873== checked 1,108,212 bytes. ==16873== ==16873== LEAK SUMMARY: ==16873== definitely lost: 58,613 bytes in 1,992 blocks. ==16873== possibly lost: 83,504 bytes in 140 blocks. ==16873== still reachable: 724,673 bytes in 8,103 blocks. ==16873== suppressed: 0 bytes in 0 blocks. ==16873== Rerun with --leak-check=full to see details of leaked memory. ==16860== Conditional jump or move depends on uninitialised value(s) ==16860== at 0x8062BC1: (within /usr/bin/gbx2) ==16860== by 0x8068F3B: (within /usr/bin/gbx2) ==16860== by 0x8068FE1: (within /usr/bin/gbx2) ==16860== by 0x8069028: (within /usr/bin/gbx2) ==16860== by 0x805AC8A: (within /usr/bin/gbx2) ==16860== by 0x8050C00: (within /usr/bin/gbx2) ==16860== by 0x804F0EA: (within /usr/bin/gbx2) ==16860== by 0x804F3C0: (within /usr/bin/gbx2) ==16860== by 0x805DFDF: (within /usr/bin/gbx2) ==16860== by 0x46400F6: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4640178: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x804E537: (within /usr/bin/gbx2) ==16860== by 0x804EDDD: (within /usr/bin/gbx2) ==16860== by 0x804F470: (within /usr/bin/gbx2) ==16860== by 0x804FD86: (within /usr/bin/gbx2) ==16860== by 0x8050D1C: (within /usr/bin/gbx2) ==16860== by 0x804F0EA: (within /usr/bin/gbx2) ==16860== by 0x804F3C0: (within /usr/bin/gbx2) ==16860== by 0x804F779: (within /usr/bin/gbx2) ==16860== by 0x8063095: (within /usr/bin/gbx2) ==16860== by 0x80525BE: (within /usr/bin/gbx2) ==16860== by 0x804E5CA: (within /usr/bin/gbx2) ==16860== by 0x8050086: (within /usr/bin/gbx2) ==16860== by 0x8050D3A: (within /usr/bin/gbx2) ==16860== by 0x804F0EA: (within /usr/bin/gbx2) ==16860== by 0x804F3C0: (within /usr/bin/gbx2) ==16860== by 0x805E08A: (within /usr/bin/gbx2) ==16860== by 0x805E54A: (within /usr/bin/gbx2) ==16860== by 0x4644886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4627C45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4704C89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4705E47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B94A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4704D29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4704D62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47E5DF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B94E7E: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== ==16860== Conditional jump or move depends on uninitialised value(s) ==16860== at 0x8062BC1: (within /usr/bin/gbx2) ==16860== by 0x8062EB0: (within /usr/bin/gbx2) ==16860== by 0x80653AB: (within /usr/bin/gbx2) ==16860== by 0x804E537: (within /usr/bin/gbx2) ==16860== by 0x804EDDD: (within /usr/bin/gbx2) ==16860== by 0x80511CC: (within /usr/bin/gbx2) ==16860== by 0x804F0EA: (within /usr/bin/gbx2) ==16860== by 0x804F3C0: (within /usr/bin/gbx2) ==16860== by 0x804F490: (within /usr/bin/gbx2) ==16860== by 0x804F7B2: (within /usr/bin/gbx2) ==16860== by 0x804FB40: (within /usr/bin/gbx2) ==16860== by 0x805157C: (within /usr/bin/gbx2) ==16860== by 0x804F0EA: (within /usr/bin/gbx2) ==16860== by 0x804F3C0: (within /usr/bin/gbx2) ==16860== by 0x804F779: (within /usr/bin/gbx2) ==16860== by 0x8063095: (within /usr/bin/gbx2) ==16860== by 0x80525BE: (within /usr/bin/gbx2) ==16860== by 0x804E5CA: (within /usr/bin/gbx2) ==16860== by 0x8050086: (within /usr/bin/gbx2) ==16860== by 0x8050D3A: (within /usr/bin/gbx2) ==16860== by 0x804F0EA: (within /usr/bin/gbx2) ==16860== by 0x804F3C0: (within /usr/bin/gbx2) ==16860== by 0x805E08A: (within /usr/bin/gbx2) ==16860== by 0x805E54A: (within /usr/bin/gbx2) ==16860== by 0x4644886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4627C45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4704C89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4705E47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B94A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4704D29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4704D62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47E5DF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B94E7E: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9650B: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x490EB6D: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47DEA5B: gtk_propagate_event (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== ==16860== Conditional jump or move depends on uninitialised value(s) ==16860== at 0x8062D9F: (within /usr/bin/gbx2) ==16860== by 0x805250D: (within /usr/bin/gbx2) ==16860== by 0x4642FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4624BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4625AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4635F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4629F33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x480780D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47D1F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4741E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x480780D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4741E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x490A41A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x480780D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4846474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4741E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x484829F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== ==16860== Use of uninitialised value of size 4 ==16860== at 0x8062DA3: (within /usr/bin/gbx2) ==16860== by 0x805250D: (within /usr/bin/gbx2) ==16860== by 0x4642FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4624BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4625AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4635F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4629F33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x480780D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47D1F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4741E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x480780D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4741E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x490A41A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x480780D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4846474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4741E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x484829F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== ==16860== Invalid read of size 1 ==16860== at 0x805250D: (within /usr/bin/gbx2) ==16860== by 0x4642FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4624BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4625AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4635F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4629F33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x480780D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47D1F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4741E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x480780D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4741E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x490A41A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B80B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B9667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B96AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x480780D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4846474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4741E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x484829F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16860== Address 0x6ae95a2c is not stack'd, malloc'd or (recently) free'd ==16860== ==16860== Syscall param rt_sigaction(act->sa_mask) points to uninitialised byte(s) ==16860== at 0x40007D2: (within /lib/ld-2.8.so) ==16860== Address 0x43abf60 is on thread 1's stack ==16860== ==16860== Syscall param clone(parent_tidptr) contains uninitialised byte(s) ==16860== at 0x414FDB8: clone (in /lib/libc-2.8.so) ==16894== ==16894== Thread 2: ==16894== Syscall param write(buf) points to uninitialised byte(s) ==16894== at 0x40007D2: (within /lib/ld-2.8.so) ==16894== by 0x52D97F3: google_breakpad::UntypedMDRVA::Copy(unsigned, void const*, unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7EC9: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D898F: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D9167: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBAAF: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DB47B: google_breakpad::LinuxThread::IterateProcSelfTask(int, google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DB508: google_breakpad::LinuxThread::ListThreads(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7A87: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0xbe98e058 is on thread 1's stack ==16894== ==16894== Conditional jump or move depends on uninitialised value(s) ==16894== at 0x52D9834: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D77AC: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D88B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== ==16894== Conditional jump or move depends on uninitialised value(s) ==16894== at 0x52D77AF: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D88B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== ==16894== Conditional jump or move depends on uninitialised value(s) ==16894== at 0x52D9768: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D781C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D88B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== ==16894== Syscall param lseek(fd) contains uninitialised byte(s) ==16894== at 0x40007D2: (within /lib/ld-2.8.so) ==16894== by 0x52D781C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D88B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== ==16894== Syscall param lseek(offset) contains uninitialised byte(s) ==16894== at 0x40007D2: (within /lib/ld-2.8.so) ==16894== by 0x52D781C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D88B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== ==16894== Conditional jump or move depends on uninitialised value(s) ==16894== at 0x52D9798: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D781C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D88B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== ==16894== Syscall param write(fd) contains uninitialised byte(s) ==16894== at 0x40007D2: (within /lib/ld-2.8.so) ==16894== by 0x52D781C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D88B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== ==16894== Conditional jump or move depends on uninitialised value(s) ==16894== at 0x52D9768: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D77DC: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D88B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D88EB: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf14 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9E38: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D9C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D8873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf10 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D9E61: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D9C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D8873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf10 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D981B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D9E61: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D9C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D8873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf14 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D9E61: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D9C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D8873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf0c is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D9EB5: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D9C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D8873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52DBD0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf14 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D76AE: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf14 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D83B4: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf10 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D83F2: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf10 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D981B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D83F2: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf14 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D83F2: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf0c is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D842B: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf14 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D8AEE: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf04 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D735A: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf10 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7398: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf10 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D981B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7398: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf14 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7398: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf0c is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D73F9: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf14 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D7260: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf10 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7294: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf10 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D981B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7294: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf14 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D98BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7294: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf0c is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D9765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D72C1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf14 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52D7D53: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x43aaf08 is on thread 1's stack ==16894== ==16894== Invalid read of size 4 ==16894== at 0x52DB57C: google_breakpad::LinuxThread::ResumeAllThreads() const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D5D: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16894== Address 0x0 is not stack'd, malloc'd or (recently) free'd ==16894== ==16894== Process terminating with default action of signal 11 (SIGSEGV) ==16894== Access not within mapped region at address 0x0 ==16894== at 0x52DB57C: google_breakpad::LinuxThread::ResumeAllThreads() const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x52D7D5D: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) ==16860== ==16860== ERROR SUMMARY: 41 errors from 41 contexts (suppressed: 92 from 2) ==16860== malloc/free: in use at exit: 3,059,246 bytes in 21,796 blocks. ==16860== malloc/free: 190,663 allocs, 168,867 frees, 43,589,168 bytes allocated. ==16860== For counts of detected errors, rerun with: -v ==16860== searching for pointers to 21,796 not-freed blocks. ==16860== checked 2,083,572 bytes. ==16860== ==16860== LEAK SUMMARY: ==16860== definitely lost: 181,782 bytes in 6,407 blocks. ==16860== possibly lost: 261,955 bytes in 429 blocks. ==16860== still reachable: 2,615,509 bytes in 14,960 blocks. ==16860== suppressed: 0 bytes in 0 blocks. ==16860== Rerun with --leak-check=full to see details of leaked memory. Processus arr?t? Hope this helps Regards, Steven Le samedi 05 juillet 2008 ? 17:32 +0200, Benoit Minisini a ?crit : > $ cd /path/to/my/project > $ valgrind --tool=memcheck --num-callers=50 gbx2 -p > > And send me the full output of valgrind. > > At the moment, I think there is something weird on your system, or in the way > Gambas was packaged... > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From jeffreyjohnson at ...1747... Sun Jul 6 01:17:36 2008 From: jeffreyjohnson at ...1747... (Jeff Johnson) Date: Sat, 5 Jul 2008 18:17:36 -0500 Subject: [Gambas-user] Path for open file write Message-ID: <200807051817.36992.jeffreyjohnson@...1747...> I know this has probably been replied to many times. This works hFile = OPEN "wxaprs.ini" FOR INPUT This works hFile = OPEN "./wxaprs.ini" FOR INPUT This fails with access forbidden DIM hFile1 AS File hFile1 = OPEN "./wxaprs.ini" FOR OUTPUT CREATE This fails with access forbidden DIM hFile1 AS File hFile1 = OPEN "wxaprs.ini" FOR OUTPUT CREATE This works DIM hFile1 AS File hFile1 = OPEN "/home/jeffjohnson/aprs/wxaprs.ini" FOR OUTPUT CREATE I need to either determine the full working path so I can make it hFile1 = OPEN $Path & "wxaprs.ini" FOR OUTPUT CREATE or the correct way to create a file Any ideas of where I fell off the trolley? From jeffreyjohnson at ...1747... Sun Jul 6 03:12:02 2008 From: jeffreyjohnson at ...1747... (Jeff Johnson) Date: Sat, 5 Jul 2008 20:12:02 -0500 Subject: [Gambas-user] Path for open file write Message-ID: <200807052012.02338.jeffreyjohnson@...1747...> I know this has probably been replied to many times. This works hFile = OPEN "wxaprs.ini" FOR INPUT This works hFile = OPEN "./wxaprs.ini" FOR INPUT This fails with access forbidden DIM hFile1 AS File hFile1 = OPEN "./wxaprs.ini" FOR OUTPUT CREATE This fails with access forbidden DIM hFile1 AS File hFile1 = OPEN "wxaprs.ini" FOR OUTPUT CREATE This works DIM hFile1 AS File hFile1 = OPEN "/home/jeffjohnson/aprs/wxaprs.ini" FOR OUTPUT CREATE I need to either determine the full working path so I can make it hFile1 = OPEN $Path & "wxaprs.ini" FOR OUTPUT CREATE or the correct way to create a file Any ideas of where I fell off the trolley? From charles at ...1784... Sun Jul 6 17:31:21 2008 From: charles at ...1784... (charlesg) Date: Sun, 6 Jul 2008 08:31:21 -0700 (PDT) Subject: [Gambas-user] PostgreSQL on another machine from Gambas Message-ID: <18303169.post@...1379...> Hello all, I would be grateful for some help although I realise this is not really a Gambas problem. I have set up PostgreSQL on 2 machines, one called Scott the other Hardwired using the instructions in http://hocuspokus.net/2008/05/13/install-postgresql-on-ubuntu-804/. I have set up test databases on both and can successfully connect on both using: '----------------------- With conn .type = "postgresql" .host = "localhost" .user = "postgres" .Password = "fred" .Name = "test" End With Try conn.Open '---------------------- What I want to do now is connect from Scott to the database on Hardwired. When I change .host="localhost" to .host="hardwired" the error is Fatal:missing or erroneous pg_hba.conf file. Is this referring to the pg_hba.conf on Scott (the user) or Hardwired (the 'server')? I have tried chmod a+r on both to no effect. I can 'ping hardwired' from scott. The active lines in pg_hba.conf (as per above instructions) are: local all postgres ident sameuser local all all md5 host all all 127.0.0.1/32 md5 host all all ::1/128 md5 host all all 192.168.1.0 255.255.255.0 md5 Any ideas? -- View this message in context: http://www.nabble.com/PostgreSQL-on-another-machine-from-Gambas-tp18303169p18303169.html Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Sun Jul 6 20:23:46 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 6 Jul 2008 20:23:46 +0200 Subject: [Gambas-user] Path for open file write In-Reply-To: <200807052012.02338.jeffreyjohnson@...1747...> References: <200807052012.02338.jeffreyjohnson@...1747...> Message-ID: <200807062023.46284.gambas@...1...> On dimanche 06 juillet 2008, Jeff Johnson wrote: > I know this has probably been replied to many times. > > This works > hFile = OPEN "wxaprs.ini" FOR INPUT > > This works > hFile = OPEN "./wxaprs.ini" FOR INPUT > > > This fails with access forbidden > DIM hFile1 AS File > hFile1 = OPEN "./wxaprs.ini" FOR OUTPUT CREATE > > This fails with access forbidden > DIM hFile1 AS File > hFile1 = OPEN "wxaprs.ini" FOR OUTPUT CREATE > Relatives paths are paths to files located inside the project, and so are read-only. > This works > DIM hFile1 AS File > hFile1 = OPEN "/home/jeffjohnson/aprs/wxaprs.ini" FOR OUTPUT CREATE ...But when you use an absolute path, nothing is checked. But then your code does not work once the program is compiled into an executable. > > I need to either determine the full working path so I can make it > hFile1 = OPEN $Path & "wxaprs.ini" FOR OUTPUT CREATE > > or the correct way to create a file > > Any ideas of where I fell off the trolley? > You can't create file inside the project at execution time. You need to store your file inside the user home directory. You can use the Settings class, that creates a settings file like in Windows in a standard path inside the user home directory. Or you can create your own file, as an hidden file (beginning with a dot), or as a file stored inside an hidden directory. Now the standard is defined by freedesktop.org: a configuration file is stored in ~/.config/. The Settings class stored its own configuration file in ~/.config/gambas[3]/.conf Regards, -- Benoit Minisini From gambas at ...1... Sun Jul 6 20:30:29 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 6 Jul 2008 20:30:29 +0200 Subject: [Gambas-user] problem with bold in gridview In-Reply-To: <11c2d5210807041336m72f1fe0akad9a518f2ca7df9a@...627...> References: <11c2d5210807041336m72f1fe0akad9a518f2ca7df9a@...627...> Message-ID: <200807062030.29389.gambas@...1...> On vendredi 04 juillet 2008, John Dizaro wrote: > I am using gambas 2.6 debian GTK > > How do i use bold in gridview in a cell > when i try: > DV_t07_carro[LINHA, 10].Font = Font["Bold"] > or > DV_t07_carro[LINHA, 10].Font .Bold = True > > it does not works > > Thanks for help me I confirm this is a bug in the GTK+ component. I'm working on it, but it will take a little time to solve! -- Benoit Minisini From jeffreyjohnson at ...1747... Sun Jul 6 22:08:31 2008 From: jeffreyjohnson at ...1747... (Jeff Johnson) Date: Sun, 6 Jul 2008 15:08:31 -0500 Subject: [Gambas-user] Path for open file write In-Reply-To: <200807062023.46284.gambas@...1...> References: <200807052012.02338.jeffreyjohnson@...1747...> <200807062023.46284.gambas@...1...> Message-ID: <200807061508.31650.jeffreyjohnson@...1747...> My program also recreates html pages as the program runs, so am I correct in thinking that I will not be able to do that either. I am converting a hamradio program from VB, and will also need to do my logging. So my thinking since everything is RO then I am out of luck on it? On Sunday 06 July 2008 13:23:46 Benoit Minisini wrote: > On dimanche 06 juillet 2008, Jeff Johnson wrote: > > I know this has probably been replied to many times. > > > > This works > > hFile = OPEN "wxaprs.ini" FOR INPUT > > > > This works > > hFile = OPEN "./wxaprs.ini" FOR INPUT > > > > > > This fails with access forbidden > > DIM hFile1 AS File > > hFile1 = OPEN "./wxaprs.ini" FOR OUTPUT CREATE > > > > This fails with access forbidden > > DIM hFile1 AS File > > hFile1 = OPEN "wxaprs.ini" FOR OUTPUT CREATE > > Relatives paths are paths to files located inside the project, and so are > read-only. > > > This works > > DIM hFile1 AS File > > hFile1 = OPEN "/home/jeffjohnson/aprs/wxaprs.ini" FOR OUTPUT CREATE > > ...But when you use an absolute path, nothing is checked. But then your > code does not work once the program is compiled into an executable. > > > I need to either determine the full working path so I can make it > > hFile1 = OPEN $Path & "wxaprs.ini" FOR OUTPUT CREATE > > > > or the correct way to create a file > > > > Any ideas of where I fell off the trolley? > > You can't create file inside the project at execution time. You need to > store your file inside the user home directory. > > You can use the Settings class, that creates a settings file like in > Windows in a standard path inside the user home directory. > > Or you can create your own file, as an hidden file (beginning with a dot), > or as a file stored inside an hidden directory. > > Now the standard is defined by freedesktop.org: a configuration file is > stored in ~/.config/. The Settings class stored its own > configuration file in ~/.config/gambas[3]/.conf > > Regards, From gambas at ...1... Sun Jul 6 22:21:36 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 6 Jul 2008 22:21:36 +0200 Subject: [Gambas-user] Path for open file write In-Reply-To: <200807061508.31650.jeffreyjohnson@...1747...> References: <200807052012.02338.jeffreyjohnson@...1747...> <200807062023.46284.gambas@...1...> <200807061508.31650.jeffreyjohnson@...1747...> Message-ID: <200807062221.36064.gambas@...1...> On dimanche 06 juillet 2008, Jeff Johnson wrote: > My program also recreates html pages as the program runs, so am I correct > in thinking that I will not be able to do that either. I am converting a > hamradio program from VB, and will also need to do my logging. So my > thinking since everything is RO then I am out of luck on it? > Only your project is read-only. If the pages you create are temporary, i.e. they disappear when the program ends, then you can use the process temporary directory created by the interpreter (Temp$ function). If the pages you create are persistent, then you must store them inside the user home directory, or in another directory specified by him. If you are doing a program that is run by root or another priviledged user, you should store your logs in /var/log. Regards, -- Benoit Minisini From jeffreyjohnson at ...1747... Sun Jul 6 22:51:21 2008 From: jeffreyjohnson at ...1747... (Jeff Johnson) Date: Sun, 6 Jul 2008 15:51:21 -0500 Subject: [Gambas-user] Path for open file write In-Reply-To: <200807062221.36064.gambas@...1...> References: <200807052012.02338.jeffreyjohnson@...1747...> <200807061508.31650.jeffreyjohnson@...1747...> <200807062221.36064.gambas@...1...> Message-ID: <200807061551.21618.jeffreyjohnson@...1747...> Pharm out... That is what I needed to know.. Thanks a bundle On Sunday 06 July 2008 15:21:36 Benoit Minisini wrote: > On dimanche 06 juillet 2008, Jeff Johnson wrote: > > My program also recreates html pages as the program runs, so am I correct > > in thinking that I will not be able to do that either. I am converting a > > hamradio program from VB, and will also need to do my logging. So my > > thinking since everything is RO then I am out of luck on it? > > Only your project is read-only. > > If the pages you create are temporary, i.e. they disappear when the program > ends, then you can use the process temporary directory created by the > interpreter (Temp$ function). > > If the pages you create are persistent, then you must store them inside the > user home directory, or in another directory specified by him. > > If you are doing a program that is run by root or another priviledged user, > you should store your logs in /var/log. > > Regards, From jeffreyjohnson at ...1747... Sun Jul 6 22:51:21 2008 From: jeffreyjohnson at ...1747... (Jeff Johnson) Date: Sun, 6 Jul 2008 15:51:21 -0500 Subject: [Gambas-user] Path for open file write In-Reply-To: <200807062221.36064.gambas@...1...> References: <200807052012.02338.jeffreyjohnson@...1747...> <200807061508.31650.jeffreyjohnson@...1747...> <200807062221.36064.gambas@...1...> Message-ID: <200807061551.21618.jeffreyjohnson@...1747...> Pharm out... That is what I needed to know.. Thanks a bundle On Sunday 06 July 2008 15:21:36 Benoit Minisini wrote: > On dimanche 06 juillet 2008, Jeff Johnson wrote: > > My program also recreates html pages as the program runs, so am I correct > > in thinking that I will not be able to do that either. I am converting a > > hamradio program from VB, and will also need to do my logging. So my > > thinking since everything is RO then I am out of luck on it? > > Only your project is read-only. > > If the pages you create are temporary, i.e. they disappear when the program > ends, then you can use the process temporary directory created by the > interpreter (Temp$ function). > > If the pages you create are persistent, then you must store them inside the > user home directory, or in another directory specified by him. > > If you are doing a program that is run by root or another priviledged user, > you should store your logs in /var/log. > > Regards, From leonardo at ...1237... Mon Jul 7 15:52:47 2008 From: leonardo at ...1237... (Leonardo Miliani) Date: Mon, 07 Jul 2008 15:52:47 +0200 Subject: [Gambas-user] Gambas2-2.7.0 on Fedora 9 64bit In-Reply-To: References: Message-ID: <48721FAF.5030300@...1237...> Seb Brown ha scritto: > Hello Board, > having had my 1st programming experiences on an Amstrad CPC6128 with Locomotive BASIC back in the early 90ies, I have recently been trying to get back into programming. I have been trying to get familiar with the current languages such as C++ and/or Java ... it's not the object-oriented approach that bugs me, it's the syntax (C++ is simply horrible to read)! So, I was happy to read about Gambas just the other day as I was looking for object oriented BASIC-alternatives for Linux. > Enough blurb, here's the problem: I can't get it to start :o( > I am Using Fedora 9 x86_64bit (Kernel 2.6.25.9-76.fc9.x86_64, Gnome 2.22.2) on a Samsung Laptop with an Intel 64 bit Processor. The version of Gambas is 2.7.0-1.fc9 (x86_64) which I installed via package manager from the Fedora repository. > When I try to launch Gambas from the start menu, I get the message 'starting Gambas' in the task bar, but then it silently fails. > Typing Gambas2 in the console gives me this error: ERROR: #2: Cannot load class 'Project': Unable to load class file > I would be very happy about any hints on how to get things working! > Thanks in advance, > Seb. > _________________________________________________________________ > Use video conversation to talk face-to-face with Windows Live Messenger. > http://www.windowslive.com/messenger/connect_your_way.html?ocid=TXT_TAGLM_WL_Refresh_messenger_video_072008 > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > This is a common bug that affects several systems. I suggest you to compile Gambas directly from the source code (it's not so difficult). At this page: http://gambasdoc.org/help/readme?view you can find the list of all the dependencies. -- Ciao. Leo. Web: www.leonardomiliani.com E-mail: leonardo at ...1237... Scegli software opensource - Choose opensource software Co-fondatore di Gambas-it.org Il sito di riferimento della comunit? italiana degli utenti di Gambas www.gambas-it.org From leonardo at ...1237... Mon Jul 7 15:55:52 2008 From: leonardo at ...1237... (Leonardo Miliani) Date: Mon, 07 Jul 2008 15:55:52 +0200 Subject: [Gambas-user] PostgreSQL on another machine from Gambas In-Reply-To: <18303169.post@...1379...> References: <18303169.post@...1379...> Message-ID: <48722068.8070908@...1237...> charlesg ha scritto: > Hello all, > > I would be grateful for some help although I realise this is not really a > Gambas problem. > > I have set up PostgreSQL on 2 machines, one called Scott the other Hardwired > using the instructions in > http://hocuspokus.net/2008/05/13/install-postgresql-on-ubuntu-804/. > > I have set up test databases on both and can successfully connect on both > using: > '----------------------- > With conn > .type = "postgresql" > .host = "localhost" > .user = "postgres" > .Password = "fred" > .Name = "test" > End With > Try conn.Open > '---------------------- > What I want to do now is connect from Scott to the database on Hardwired. > When I change > .host="localhost" to .host="hardwired" the error is > Fatal:missing or erroneous pg_hba.conf file. > Is this referring to the pg_hba.conf on Scott (the user) or Hardwired (the > 'server')? I have tried chmod a+r on both to no effect. > > I can 'ping hardwired' from scott. > > The active lines in pg_hba.conf (as per above instructions) are: > local all postgres ident sameuser > local all all md5 > host all all 127.0.0.1/32 md5 > host all all ::1/128 md5 > host all all 192.168.1.0 255.255.255.0 md5 > > Any ideas? Check if the server accept connections from anywhere... I.E., in MySql, the server configuration file blocks by default all the connections that don't come from localhost.... maybe this is your case. -- Ciao. Leo. Web: www.leonardomiliani.com E-mail: leonardo at ...1237... Scegli software opensource - Choose opensource software Co-fondatore di Gambas-it.org Il sito di riferimento della comunit? italiana degli utenti di Gambas www.gambas-it.org From gambas at ...1... Tue Jul 8 14:49:33 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 8 Jul 2008 14:49:33 +0200 Subject: [Gambas-user] problem with bold in gridview In-Reply-To: <200807062030.29389.gambas@...1...> References: <11c2d5210807041336m72f1fe0akad9a518f2ca7df9a@...627...> <200807062030.29389.gambas@...1...> Message-ID: <200807081449.33451.gambas@...1...> On dimanche 06 juillet 2008, Benoit Minisini wrote: > On vendredi 04 juillet 2008, John Dizaro wrote: > > I am using gambas 2.6 debian GTK > > > > How do i use bold in gridview in a cell > > when i try: > > DV_t07_carro[LINHA, 10].Font = Font["Bold"] > > or > > DV_t07_carro[LINHA, 10].Font .Bold = True > > > > it does not works > > > > Thanks for help me > > I confirm this is a bug in the GTK+ component. I'm working on it, but it > will take a little time to solve! That bug, and many others related to font support, should be solved in revision #1441. Regards, -- Benoit Minisini From lonsdale663 at ...1073... Tue Jul 8 20:35:20 2008 From: lonsdale663 at ...1073... (NEKey) Date: Tue, 8 Jul 2008 11:35:20 -0700 (PDT) Subject: [Gambas-user] Simple Newbie Question - Opening initial Data Form Message-ID: <18346058.post@...1379...> Very simple question from a new user - please be patient ! The main form is calculating positions, time and distances. I have a sub-form where the start position (initial data) is entered. The main form class file has this; PUBLIC SUB AddData_Click() AddDataForm.Show END which opens the initial position data entry form correctly. The class file for the data entry form has this PUBLIC SUB DataDone_Click() END which closes the form when the data has been entered. My question is ; where does the handling process for the initial data input go? (The routines that check the data is valid and have the right number of digits/decimal places/etc.) In the main form class file or the data entry class file ? If in the data entry class file, what is the "header" to the chunk of code. The bit that starts PUBLIC SUB.... (if the data has been entered then accept and check it) The routine will then accept data from the valueboxes and check it. END Thanks. -- View this message in context: http://www.nabble.com/Simple-Newbie-Question---Opening-initial-Data-Form-tp18346058p18346058.html Sent from the gambas-user mailing list archive at Nabble.com. From m0e.lnx at ...626... Tue Jul 8 21:02:16 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Tue, 8 Jul 2008 14:02:16 -0500 Subject: [Gambas-user] Changing a treview item's picture property Message-ID: <1f1e8c1b0807081202l261b9b1cg889a918def64676a@...627...> Here is my problem I have a tree view I've populated it with my contents, I know how the keys work and all. I have set picture properties for the items in this treeview. Here is what I want to do I have 3 pictures that these items can have Pic1 is for an item that has not yet been clicked on Pic2 is for the item that the user is currently in Pic3 is for an item that has already been clicked I can define Pic1 to be the default pic when the items are added to the treeview. I can make it change to Pic2 when the user clicks on the item But here is the problem I can't find a way to make the last item use Pic3. Can anyone suggest anything? From jaap_cramer at ...67... Tue Jul 8 21:10:32 2008 From: jaap_cramer at ...67... (Jaap Cramer) Date: Tue, 08 Jul 2008 21:10:32 +0200 Subject: [Gambas-user] Changing a treview item's picture property In-Reply-To: <1f1e8c1b0807081202l261b9b1cg889a918def64676a@...627...> References: <1f1e8c1b0807081202l261b9b1cg889a918def64676a@...627...> Message-ID: All entries have at startup pic1. I think when you call the _change of _activate event you set the picture to pic2. I think you should remember the key of the item clicked in a global variable. At the end you replace it with the current Key. This way you remember the previous item clicked. You set the previous key to pic 3 sub tree_click() set pic2 ? 'first time PreviousKey will be "" if PreviousKey exist then set previousKey to pic3 PreviousKey=currentKey end On Tue, 2008-07-08 at 14:02 -0500, M0E Lnx wrote: > Here is my problem > > I have a tree view I've populated it with my contents, I know how the > keys work and all. > I have set picture properties for the items in this treeview. > > > Here is what I want to do > I have 3 pictures that these items can have > Pic1 is for an item that has not yet been clicked on > Pic2 is for the item that the user is currently in > Pic3 is for an item that has already been clicked > > I can define Pic1 to be the default pic when the items are added to > the treeview. > I can make it change to Pic2 when the user clicks on the item > > But here is the problem > I can't find a way to make the last item use Pic3. > > Can anyone suggest anything? > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From m0e.lnx at ...626... Tue Jul 8 21:20:47 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Tue, 8 Jul 2008 14:20:47 -0500 Subject: [Gambas-user] Changing a treview item's picture property In-Reply-To: References: <1f1e8c1b0807081202l261b9b1cg889a918def64676a@...627...> Message-ID: <1f1e8c1b0807081220q17f6f797s7701bc073071ccaf@...627...> Thanks, that worked except, I used the treeview's mouse_up event to set the Previous key and the click event to set the pictures for future reference PUBLIC SUB treeview1_mouse_up() sLastKey = treeview1.current.key END Thanks for the push On Tue, Jul 8, 2008 at 2:10 PM, Jaap Cramer wrote: > All entries have at startup pic1. > I think when you call the _change of _activate event you set the picture > to pic2. > I think you should remember the key of the item clicked in a global > variable. At the end you replace it with the current Key. This way you > remember the previous item clicked. You set the previous key to pic 3 > > sub tree_click() > set pic2 > ? 'first time PreviousKey will be "" > if PreviousKey exist then set previousKey to pic3 > PreviousKey=currentKey > end > > On Tue, 2008-07-08 at 14:02 -0500, M0E Lnx wrote: >> Here is my problem >> >> I have a tree view I've populated it with my contents, I know how the >> keys work and all. >> I have set picture properties for the items in this treeview. >> >> >> Here is what I want to do >> I have 3 pictures that these items can have >> Pic1 is for an item that has not yet been clicked on >> Pic2 is for the item that the user is currently in >> Pic3 is for an item that has already been clicked >> >> I can define Pic1 to be the default pic when the items are added to >> the treeview. >> I can make it change to Pic2 when the user clicks on the item >> >> But here is the problem >> I can't find a way to make the last item use Pic3. >> >> Can anyone suggest anything? >> >> ------------------------------------------------------------------------- >> Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! >> Studies have shown that voting for your favorite open source project, >> along with a healthy diet, reduces your potential for chronic lameness >> and boredom. Vote Now at http://www.sourceforge.net/community/cca08 >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From charles at ...1784... Tue Jul 8 21:32:37 2008 From: charles at ...1784... (charlesg) Date: Tue, 8 Jul 2008 12:32:37 -0700 (PDT) Subject: [Gambas-user] PostgreSQL on another machine from Gambas In-Reply-To: <48722068.8070908@...1237...> References: <18303169.post@...1379...> <48722068.8070908@...1237...> Message-ID: <18347219.post@...1379...> Leonardo, Thanks for your reply. The last line in the pg_hba.conf should make the 'server' accept requests from the range 192.168.1.0 to 192.168.1.255. I have just found a solution by adding a connection to the other server with pgAdmin3. Sometimes the obvious solutions are difficult to find (says he wistfully)! Gambas is happy, I am happy. Thanks again -- View this message in context: http://www.nabble.com/PostgreSQL-on-another-machine-from-Gambas-tp18303169p18347219.html Sent from the gambas-user mailing list archive at Nabble.com. From rterry at ...1822... Thu Jul 3 14:23:24 2008 From: rterry at ...1822... (richard terry) Date: Thu, 3 Jul 2008 22:23:24 +1000 Subject: [Gambas-user] Database example freezes (1440) Message-ID: <200807032223.24250.rterry@...1822...> I was using the database as a part of a wizard to create my database last night and noticed that if I type anything other than localhost (eg something nonsensicle like 'adlkfjldjaldkjf' as the host, then the example freezes up. Regards Richard From rterry at ...1822... Sun Jul 6 04:47:53 2008 From: rterry at ...1822... (richard terry) Date: Sun, 6 Jul 2008 12:47:53 +1000 Subject: [Gambas-user] Disabling back/forward buttons on the wizard Message-ID: <200807061247.53091.rterry@...1822...> Is it possible disable these buttons, so that the user cannot more forward until the progammer decides there's enough informaton collected to proceed? Regards Richard From rterry at ...1822... Tue Jul 8 07:36:48 2008 From: rterry at ...1822... (richard terry) Date: Tue, 8 Jul 2008 15:36:48 +1000 Subject: [Gambas-user] Setting up passwords for program users Message-ID: <200807081536.48668.rterry@...1822...> I wondered if anyone had experience/code/examples of how to create/save encrypted passwords in a database? Thanks in advance. Richard From rterry at ...1822... Mon Jul 7 09:47:49 2008 From: rterry at ...1822... (richard terry) Date: Mon, 7 Jul 2008 17:47:49 +1000 Subject: [Gambas-user] Compiling stand alone program question Message-ID: <200807071747.49568.rterry@...1822...> My question is is it possible/could it be made possible, to compile one form into a stand alone program, without compiling the whole project. Within my complex program, I've a number of effectively stand-alone programs, which, could run independantly of the whole program and would be useful to have them do so (eg. my drug browser for product information), but they also are very useful running as a form stuck to the main program. However, as when one compiles gambas, one seems to need to compile the 'whole lot' At the moment, to compile part of my program as stand-alone, I have to create a new project and I guess import the files via making a symbolic link to the original program. Perhaps I'm missing something, but any comments/advice appreciated. Thanks Richard From leonardo at ...1237... Wed Jul 9 00:27:38 2008 From: leonardo at ...1237... (Leonardo Miliani) Date: Wed, 09 Jul 2008 00:27:38 +0200 Subject: [Gambas-user] Setting up passwords for program users In-Reply-To: <200807081536.48668.rterry@...1822...> References: <200807081536.48668.rterry@...1822...> Message-ID: <4873E9DA.9000807@...1237...> richard terry ha scritto: > I wondered if anyone had experience/code/examples of how to create/save > encrypted passwords in a database? > > Thanks in advance. > > Richard > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > The only and secure way to store a password in a file/db is to use an hash algorithm and stores only the hash of your password. I used SHA256 and/or MD5 (I prefer the first one, more robust). So: 1) ask you user to enter a password 2) create the hash of that password with SHA or MD5 3) store the hash 4) when the user logs in again, you compare the hash of the entered password with the hash of the stored one: if they are identical, the user has entered the original password Why use an hash? Because an hash is a cryptographic function that generates a check sum from which it is (or it should be) impossible to calculate the datas that have been generated it. -- Ciao. Leo. Web: www.leonardomiliani.com E-mail: leonardo at ...1237... Scegli software opensource - Choose opensource software Co-fondatore di Gambas-it.org Il sito di riferimento della comunit? italiana degli utenti di Gambas www.gambas-it.org From rterry at ...1822... Wed Jul 9 01:00:28 2008 From: rterry at ...1822... (richard terry) Date: Wed, 9 Jul 2008 09:00:28 +1000 Subject: [Gambas-user] Bug in directory resave in IDE (1441) Message-ID: <200807090900.28680.rterry@...1822...> I had added a new text file to a directory in my project tree, entered some text, then noticed I'd made a spelling mistake in the directory name: I renamed a directory in my project tree. The busy cursor didn't decrement to normal cusor. Went to close gambas - came up with the save files dialog, said ok, but error message popped up as shown. Returning to the directory tree the contents of my new file had disappeared. No way could I quit gambas - had to kill it with the skull and crossbones. Screen dump of error included. Richard -------------- next part -------------- A non-text attachment was scrubbed... Name: directory_rename_error.png Type: image/png Size: 89111 bytes Desc: not available URL: From rterry at ...1822... Sun Jul 6 04:46:48 2008 From: rterry at ...1822... (richard terry) Date: Sun, 6 Jul 2008 12:46:48 +1000 Subject: [Gambas-user] Workspace - is it possible to disable the close button? Message-ID: <200807061246.48709.rterry@...1822...> I've embedded a form into a wizard, but I don't want the user to be able to close the form embeddedon the workspace, so I wondered if it was possible to disable the close button. Regards Richard From rterry at ...1822... Wed Jul 9 00:47:17 2008 From: rterry at ...1822... (richard terry) Date: Wed, 9 Jul 2008 08:47:17 +1000 Subject: [Gambas-user] Setting up passwords for program users In-Reply-To: <4873E9DA.9000807@...1237...> References: <200807081536.48668.rterry@...1822...> <4873E9DA.9000807@...1237...> Message-ID: <200807090847.17625.rterry@...1822...> On Wed, 9 Jul 2008 08:27:38 am Leonardo Miliani wrote: > richard terry ha scritto: > > I wondered if anyone had experience/code/examples of how to create/save > > encrypted passwords in a database? > > > > Thanks in advance. > > > > Richard Thanks, I searched the web ++ before a C++ programming mate of mine said "check your language, they all come with encryption stuff, so I noticed gb.crypt which says: Crypt.MD5 (gb.crypt) Syntax STATIC FUNCTION MD5 ( Password AS String [ , Prefix AS String ] ) AS String Crypts the string Password with the MD5 algorithm by using Prefix as prefix. Prefix must have a size of 8 characters, among: 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz./ If Prefix is not specified, it is randomized. So I'd assume I could use this, with your logic below as the implementation? Thanks for your info. > > ------------------------------------------------------------------------- > > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > > Studies have shown that voting for your favorite open source project, > > along with a healthy diet, reduces your potential for chronic lameness > > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > The only and secure way to store a password in a file/db is to use an > hash algorithm and stores only the hash of your password. > I used SHA256 and/or MD5 (I prefer the first one, more robust). > So: > > 1) ask you user to enter a password > 2) create the hash of that password with SHA or MD5 > 3) store the hash > 4) when the user logs in again, you compare the hash of the entered > password with the hash of the stored one: if they are identical, the > user has entered the original password > > Why use an hash? Because an hash is a cryptographic function that > generates a check sum from which it is (or it should be) impossible to > calculate the datas that have been generated it. From gambas at ...1... Wed Jul 9 01:24:02 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 9 Jul 2008 01:24:02 +0200 Subject: [Gambas-user] Workspace - is it possible to disable the close button? In-Reply-To: <200807061246.48709.rterry@...1822...> References: <200807061246.48709.rterry@...1822...> Message-ID: <200807090124.02664.gambas@...1...> On dimanche 06 juillet 2008, richard terry wrote: > I've embedded a form into a wizard, but I don't want the user to be able to > close the form embeddedon the workspace, so I wondered if it was possible > to disable the close button. > > Regards > > Richard > No. But why using a workspace then? -- Benoit Minisini From gambas at ...1... Wed Jul 9 01:26:19 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 9 Jul 2008 01:26:19 +0200 Subject: [Gambas-user] Disabling back/forward buttons on the wizard In-Reply-To: <200807061247.53091.rterry@...1822...> References: <200807061247.53091.rterry@...1822...> Message-ID: <200807090126.19218.gambas@...1...> On dimanche 06 juillet 2008, richard terry wrote: > Is it possible disable these buttons, so that the user cannot more forward > until the progammer decides there's enough informaton collected to proceed? > > Regards > > Richard > At the moment no. But you can stop the BeforeChange event when you want to prevent the user to go to a specified step. Regards, -- Benoit Minisini From rterry at ...1822... Wed Jul 9 01:13:45 2008 From: rterry at ...1822... (richard terry) Date: Wed, 9 Jul 2008 09:13:45 +1000 Subject: [Gambas-user] Bug in directory rename in IDE (1441) (oops previous spelling error) In-Reply-To: <200807090900.28680.rterry@...1822...> References: <200807090900.28680.rterry@...1822...> Message-ID: <200807090913.45090.rterry@...1822...> On Wed, 9 Jul 2008 09:00:28 am richard terry wrote: Sorry, mis-spelt the header, so content is ambiguous, so here it is again. > I had added a new text file to a directory in my project tree, entered some > text, then noticed I'd made a spelling mistake in the directory name: > > I renamed a directory in my project tree. > > The busy cursor didn't decrement to normal cusor. > > Went to close gambas - came up with the save files dialog, said ok, but > error message popped up as shown. > > Returning to the directory tree the contents of my new file had > disappeared. > > No way could I quit gambas - had to kill it with the skull and crossbones. > > Screen dump of error included. > > > Richard -------------- next part -------------- A non-text attachment was scrubbed... Name: directory_rename_error.png Type: image/png Size: 89111 bytes Desc: not available URL: From steven at ...1652... Wed Jul 9 11:48:58 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 09 Jul 2008 11:48:58 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <1215274667.4697.9.camel@...1936...> References: <1215084747.19393.8.camel@...1936...> <200807051531.32985.gambas@...1...> <1215265681.4697.3.camel@...1936...> <200807051732.47767.gambas@...1...> <1215274667.4697.9.camel@...1936...> Message-ID: <1215596938.4972.236.camel@...1936...> Benoit, Did this help in any way ? Can I supplie other information ? Thanks, Steven Le samedi 05 juillet 2008 ? 18:17 +0200, Steven Lobbezoo a ?crit : > Ok, here it is : > ==16860== Memcheck, a memory error detector. > ==16860== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et > al. > ==16860== Using LibVEX rev 1804, a library for dynamic binary > translation. > ==16860== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > ==16860== Using valgrind-3.3.0, a dynamic binary instrumentation > framework. > ==16860== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et > al. > ==16860== For more details, rerun with: -v > ==16860== > ==16873== Syscall param rt_sigaction(act->sa_mask) points to > uninitialised byte(s) > ==16873== at 0x40007D2: (within /lib/ld-2.8.so) > ==16873== by 0x52D63B7: > google_breakpad::ExceptionHandler::TeardownHandler(int) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16873== by 0x52D63F6: > google_breakpad::ExceptionHandler::TeardownAllHandler() > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16873== by 0x52D67FE: > google_breakpad::ExceptionHandler::~ExceptionHandler() > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16873== by 0x40AF8F0: exit (in /lib/libc-2.8.so) > ==16873== by 0x8069603: (within /usr/bin/gbx2) > ==16873== by 0x8069691: (within /usr/bin/gbx2) > ==16873== by 0x805AC6E: (within /usr/bin/gbx2) > ==16873== by 0x8050C00: (within /usr/bin/gbx2) > ==16873== by 0x804F0EA: (within /usr/bin/gbx2) > ==16873== by 0x804F3C0: (within /usr/bin/gbx2) > ==16873== by 0x805DFDF: (within /usr/bin/gbx2) > ==16873== by 0x46400F6: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16873== by 0x4640178: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16873== by 0x804E537: (within /usr/bin/gbx2) > ==16873== by 0x804EDDD: (within /usr/bin/gbx2) > ==16873== by 0x804F470: (within /usr/bin/gbx2) > ==16873== by 0x804FD86: (within /usr/bin/gbx2) > ==16873== by 0x8050D1C: (within /usr/bin/gbx2) > ==16873== by 0x804F0EA: (within /usr/bin/gbx2) > ==16873== by 0x804F3C0: (within /usr/bin/gbx2) > ==16873== by 0x804F779: (within /usr/bin/gbx2) > ==16873== by 0x8063095: (within /usr/bin/gbx2) > ==16873== by 0x80525BE: (within /usr/bin/gbx2) > ==16873== by 0x804E5CA: (within /usr/bin/gbx2) > ==16873== by 0x8050086: (within /usr/bin/gbx2) > ==16873== by 0x8050D3A: (within /usr/bin/gbx2) > ==16873== by 0x804F0EA: (within /usr/bin/gbx2) > ==16873== by 0x804F3C0: (within /usr/bin/gbx2) > ==16873== by 0x805E08A: (within /usr/bin/gbx2) > ==16873== by 0x805E54A: (within /usr/bin/gbx2) > ==16873== by 0x4644886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16873== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16873== by 0x4627C45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16873== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16873== by 0x4B80C3A: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16873== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16873== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16873== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16873== by 0x4704C89: gtk_button_clicked > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16873== by 0x4705E47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16873== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16873== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16873== by 0x4B80C3A: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16873== by 0x4B94A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16873== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16873== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16873== by 0x4704D29: gtk_button_released > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16873== by 0x4704D62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16873== by 0x47E5DF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16873== Address 0xbe993fbc is on thread 1's stack > ==16873== > ==16873== ERROR SUMMARY: 5 errors from 1 contexts (suppressed: 78 from > 2) > ==16873== malloc/free: in use at exit: 866,790 bytes in 10,235 blocks. > ==16873== malloc/free: 49,179 allocs, 38,944 frees, 8,084,483 bytes > allocated. > ==16873== For counts of detected errors, rerun with: -v > ==16873== searching for pointers to 10,235 not-freed blocks. > ==16873== checked 1,108,212 bytes. > ==16873== > ==16873== LEAK SUMMARY: > ==16873== definitely lost: 58,613 bytes in 1,992 blocks. > ==16873== possibly lost: 83,504 bytes in 140 blocks. > ==16873== still reachable: 724,673 bytes in 8,103 blocks. > ==16873== suppressed: 0 bytes in 0 blocks. > ==16873== Rerun with --leak-check=full to see details of leaked memory. > ==16860== Conditional jump or move depends on uninitialised value(s) > ==16860== at 0x8062BC1: (within /usr/bin/gbx2) > ==16860== by 0x8068F3B: (within /usr/bin/gbx2) > ==16860== by 0x8068FE1: (within /usr/bin/gbx2) > ==16860== by 0x8069028: (within /usr/bin/gbx2) > ==16860== by 0x805AC8A: (within /usr/bin/gbx2) > ==16860== by 0x8050C00: (within /usr/bin/gbx2) > ==16860== by 0x804F0EA: (within /usr/bin/gbx2) > ==16860== by 0x804F3C0: (within /usr/bin/gbx2) > ==16860== by 0x805DFDF: (within /usr/bin/gbx2) > ==16860== by 0x46400F6: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4640178: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x804E537: (within /usr/bin/gbx2) > ==16860== by 0x804EDDD: (within /usr/bin/gbx2) > ==16860== by 0x804F470: (within /usr/bin/gbx2) > ==16860== by 0x804FD86: (within /usr/bin/gbx2) > ==16860== by 0x8050D1C: (within /usr/bin/gbx2) > ==16860== by 0x804F0EA: (within /usr/bin/gbx2) > ==16860== by 0x804F3C0: (within /usr/bin/gbx2) > ==16860== by 0x804F779: (within /usr/bin/gbx2) > ==16860== by 0x8063095: (within /usr/bin/gbx2) > ==16860== by 0x80525BE: (within /usr/bin/gbx2) > ==16860== by 0x804E5CA: (within /usr/bin/gbx2) > ==16860== by 0x8050086: (within /usr/bin/gbx2) > ==16860== by 0x8050D3A: (within /usr/bin/gbx2) > ==16860== by 0x804F0EA: (within /usr/bin/gbx2) > ==16860== by 0x804F3C0: (within /usr/bin/gbx2) > ==16860== by 0x805E08A: (within /usr/bin/gbx2) > ==16860== by 0x805E54A: (within /usr/bin/gbx2) > ==16860== by 0x4644886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4627C45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80C3A: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4704C89: gtk_button_clicked > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4705E47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80C3A: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B94A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4704D29: gtk_button_released > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4704D62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47E5DF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80C3A: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B94E7E: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== > ==16860== Conditional jump or move depends on uninitialised value(s) > ==16860== at 0x8062BC1: (within /usr/bin/gbx2) > ==16860== by 0x8062EB0: (within /usr/bin/gbx2) > ==16860== by 0x80653AB: (within /usr/bin/gbx2) > ==16860== by 0x804E537: (within /usr/bin/gbx2) > ==16860== by 0x804EDDD: (within /usr/bin/gbx2) > ==16860== by 0x80511CC: (within /usr/bin/gbx2) > ==16860== by 0x804F0EA: (within /usr/bin/gbx2) > ==16860== by 0x804F3C0: (within /usr/bin/gbx2) > ==16860== by 0x804F490: (within /usr/bin/gbx2) > ==16860== by 0x804F7B2: (within /usr/bin/gbx2) > ==16860== by 0x804FB40: (within /usr/bin/gbx2) > ==16860== by 0x805157C: (within /usr/bin/gbx2) > ==16860== by 0x804F0EA: (within /usr/bin/gbx2) > ==16860== by 0x804F3C0: (within /usr/bin/gbx2) > ==16860== by 0x804F779: (within /usr/bin/gbx2) > ==16860== by 0x8063095: (within /usr/bin/gbx2) > ==16860== by 0x80525BE: (within /usr/bin/gbx2) > ==16860== by 0x804E5CA: (within /usr/bin/gbx2) > ==16860== by 0x8050086: (within /usr/bin/gbx2) > ==16860== by 0x8050D3A: (within /usr/bin/gbx2) > ==16860== by 0x804F0EA: (within /usr/bin/gbx2) > ==16860== by 0x804F3C0: (within /usr/bin/gbx2) > ==16860== by 0x805E08A: (within /usr/bin/gbx2) > ==16860== by 0x805E54A: (within /usr/bin/gbx2) > ==16860== by 0x4644886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4627C45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80C3A: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4704C89: gtk_button_clicked > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4705E47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80C3A: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B94A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4704D29: gtk_button_released > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4704D62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47E5DF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80C3A: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B94E7E: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9650B: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x490EB6D: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47DEA5B: gtk_propagate_event > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== > ==16860== Conditional jump or move depends on uninitialised value(s) > ==16860== at 0x8062D9F: (within /usr/bin/gbx2) > ==16860== by 0x805250D: (within /usr/bin/gbx2) > ==16860== by 0x4642FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4624BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4625AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4635F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4629F33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80C3A: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8324E: g_object_run_dispose > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x480780D: gtk_object_destroy > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47D1F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4741E35: gtk_container_foreach > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80B67: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8324E: g_object_run_dispose > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x480780D: gtk_object_destroy > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4741E35: gtk_container_foreach > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x490A41A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80B67: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8324E: g_object_run_dispose > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x480780D: gtk_object_destroy > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4846474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4741E35: gtk_container_foreach > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x484829F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== > ==16860== Use of uninitialised value of size 4 > ==16860== at 0x8062DA3: (within /usr/bin/gbx2) > ==16860== by 0x805250D: (within /usr/bin/gbx2) > ==16860== by 0x4642FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4624BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4625AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4635F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4629F33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80C3A: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8324E: g_object_run_dispose > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x480780D: gtk_object_destroy > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47D1F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4741E35: gtk_container_foreach > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80B67: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8324E: g_object_run_dispose > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x480780D: gtk_object_destroy > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4741E35: gtk_container_foreach > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x490A41A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80B67: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8324E: g_object_run_dispose > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x480780D: gtk_object_destroy > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4846474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4741E35: gtk_container_foreach > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x484829F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== > ==16860== Invalid read of size 1 > ==16860== at 0x805250D: (within /usr/bin/gbx2) > ==16860== by 0x4642FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4622BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4624BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4625AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4635F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4629F33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80C3A: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B951C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8324E: g_object_run_dispose > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x480780D: gtk_object_destroy > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47D1F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4741E35: gtk_container_foreach > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80B67: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8324E: g_object_run_dispose > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x480780D: gtk_object_destroy > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4741E35: gtk_container_foreach > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x490A41A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B80B67: g_closure_invoke > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B955B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B9667D: g_signal_emit_valist > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B96AE5: g_signal_emit > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4807B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4917120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8324E: g_object_run_dispose > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x480780D: gtk_object_destroy > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x46F9EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4846474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4741E35: gtk_container_foreach > (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x47426EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x484829F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) > ==16860== by 0x4B8E2A3: g_cclosure_marshal_VOID__VOID > (in /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== by 0x4B7F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) > ==16860== Address 0x6ae95a2c is not stack'd, malloc'd or (recently) > free'd > ==16860== > ==16860== Syscall param rt_sigaction(act->sa_mask) points to > uninitialised byte(s) > ==16860== at 0x40007D2: (within /lib/ld-2.8.so) > ==16860== Address 0x43abf60 is on thread 1's stack > ==16860== > ==16860== Syscall param clone(parent_tidptr) contains uninitialised > byte(s) > ==16860== at 0x414FDB8: clone (in /lib/libc-2.8.so) > ==16894== > ==16894== Thread 2: > ==16894== Syscall param write(buf) points to uninitialised byte(s) > ==16894== at 0x40007D2: (within /lib/ld-2.8.so) > ==16894== by 0x52D97F3: google_breakpad::UntypedMDRVA::Copy(unsigned, > void const*, unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7EC9: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D898F: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D9167: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBAAF: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DB47B: > google_breakpad::LinuxThread::IterateProcSelfTask(int, > google_breakpad::CallbackParam*) const > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DB508: > google_breakpad::LinuxThread::ListThreads(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7A87: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0xbe98e058 is on thread 1's stack > ==16894== > ==16894== Conditional jump or move depends on uninitialised value(s) > ==16894== at 0x52D9834: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D77AC: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D88B1: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== > ==16894== Conditional jump or move depends on uninitialised value(s) > ==16894== at 0x52D77AF: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D88B1: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== > ==16894== Conditional jump or move depends on uninitialised value(s) > ==16894== at 0x52D9768: > google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D781C: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D88B1: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== > ==16894== Syscall param lseek(fd) contains uninitialised byte(s) > ==16894== at 0x40007D2: (within /lib/ld-2.8.so) > ==16894== by 0x52D781C: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D88B1: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== > ==16894== Syscall param lseek(offset) contains uninitialised byte(s) > ==16894== at 0x40007D2: (within /lib/ld-2.8.so) > ==16894== by 0x52D781C: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D88B1: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== > ==16894== Conditional jump or move depends on uninitialised value(s) > ==16894== at 0x52D9798: > google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D781C: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D88B1: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== > ==16894== Syscall param write(fd) contains uninitialised byte(s) > ==16894== at 0x40007D2: (within /lib/ld-2.8.so) > ==16894== by 0x52D781C: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D88B1: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== > ==16894== Conditional jump or move depends on uninitialised value(s) > ==16894== at 0x52D9768: > google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D77DC: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D88B1: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9765: > google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D88EB: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf14 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9E38: bool > google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, > unsigned, MDLocationDescriptor*) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D9C51: > google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, > MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D8873: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf10 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9818: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D9E61: bool > google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, > unsigned, MDLocationDescriptor*) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D9C51: > google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, > MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D8873: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf10 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D981B: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D9E61: bool > google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, > unsigned, MDLocationDescriptor*) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D9C51: > google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, > MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D8873: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf14 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9867: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D9E61: bool > google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, > unsigned, MDLocationDescriptor*) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D9C51: > google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, > MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D8873: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf0c is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9765: > google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D9EB5: bool > google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, > unsigned, MDLocationDescriptor*) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D9C51: > google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, > MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D8873: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52DBD0B: > google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7677: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf14 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9765: > google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D76AE: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf14 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D83B4: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf10 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9818: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D83F2: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf10 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D981B: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D83F2: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf14 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9867: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D83F2: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf0c is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9765: > google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D842B: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf14 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D8AEE: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf04 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D735A: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf10 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9818: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7398: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf10 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D981B: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7398: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf14 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9867: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7398: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf0c is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9765: > google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D73F9: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf14 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D7260: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf10 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9818: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7294: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf10 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D981B: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7294: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf14 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9867: > google_breakpad::MinidumpFileWriter::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D98BD: > google_breakpad::UntypedMDRVA::Allocate(unsigned) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7294: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf0c is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D9765: > google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D72C1: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D18: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf14 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52D7D53: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x43aaf08 is on thread 1's stack > ==16894== > ==16894== Invalid read of size 4 > ==16894== at 0x52DB57C: > google_breakpad::LinuxThread::ResumeAllThreads() const > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D5D: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16894== Address 0x0 is not stack'd, malloc'd or (recently) free'd > ==16894== > ==16894== Process terminating with default action of signal 11 (SIGSEGV) > ==16894== Access not within mapped region at address 0x0 > ==16894== at 0x52DB57C: > google_breakpad::LinuxThread::ResumeAllThreads() const > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x52D7D5D: > (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==16894== by 0x414FDCD: clone (in /lib/libc-2.8.so) > ==16860== > ==16860== ERROR SUMMARY: 41 errors from 41 contexts (suppressed: 92 from > 2) > ==16860== malloc/free: in use at exit: 3,059,246 bytes in 21,796 blocks. > ==16860== malloc/free: 190,663 allocs, 168,867 frees, 43,589,168 bytes > allocated. > ==16860== For counts of detected errors, rerun with: -v > ==16860== searching for pointers to 21,796 not-freed blocks. > ==16860== checked 2,083,572 bytes. > ==16860== > ==16860== LEAK SUMMARY: > ==16860== definitely lost: 181,782 bytes in 6,407 blocks. > ==16860== possibly lost: 261,955 bytes in 429 blocks. > ==16860== still reachable: 2,615,509 bytes in 14,960 blocks. > ==16860== suppressed: 0 bytes in 0 blocks. > ==16860== Rerun with --leak-check=full to see details of leaked memory. > Processus arr?t? > > Hope this helps > Regards, > Steven > > > Le samedi 05 juillet 2008 ? 17:32 +0200, Benoit Minisini a ?crit : > > > $ cd /path/to/my/project > > $ valgrind --tool=memcheck --num-callers=50 gbx2 -p > > > > And send me the full output of valgrind. > > > > At the moment, I think there is something weird on your system, or in the way > > Gambas was packaged... > > > > Regards, > > > > -- > > Benoit Minisini > > > > ------------------------------------------------------------------------- > > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > > Studies have shown that voting for your favorite open source project, > > along with a healthy diet, reduces your potential for chronic lameness > > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Wed Jul 9 11:58:31 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 9 Jul 2008 11:58:31 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <1215596938.4972.236.camel@...1936...> References: <1215084747.19393.8.camel@...1936...> <1215274667.4697.9.camel@...1936...> <1215596938.4972.236.camel@...1936...> Message-ID: <200807091158.32020.gambas@...1...> On mercredi 09 juillet 2008, Steven Lobbezoo wrote: > Benoit, > > Did this help in any way ? > Can I supplie other information ? > > Thanks, > Steven > Not really, but it confirms that your system is weird: what is that google_breakpad and libgnomebreakpad library? I suggest you compile Gambas from sources and run valgrind again, so that I can get the exact location of the first error detected by valgrind. Regards, -- Benoit Minisini From steven at ...1652... Wed Jul 9 13:40:22 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 09 Jul 2008 13:40:22 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <200807091158.32020.gambas@...1...> References: <1215084747.19393.8.camel@...1936...> <1215274667.4697.9.camel@...1936...> <1215596938.4972.236.camel@...1936...> <200807091158.32020.gambas@...1...> Message-ID: <1215603622.11807.13.camel@...1936...> Ok, i did that, it compiled with any errors. B.t.w. : I just have a brand new suse 11 installation, in stalled gnome 2.23 and KDE 4.0 Nothing special. Here is the output of valgrind : ==11731== Memcheck, a memory error detector. ==11731== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. ==11731== Using LibVEX rev 1804, a library for dynamic binary translation. ==11731== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==11731== Using valgrind-3.3.0, a dynamic binary instrumentation framework. ==11731== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. ==11731== For more details, rerun with: -v ==11731== ==11741== Syscall param rt_sigaction(act->sa_mask) points to uninitialised byte(s) ==11741== at 0x40007D2: (within /lib/ld-2.8.so) ==11741== by 0x52D03B7: google_breakpad::ExceptionHandler::TeardownHandler(int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==11741== by 0x52D03F6: google_breakpad::ExceptionHandler::TeardownAllHandler() (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==11741== by 0x52D07FE: google_breakpad::ExceptionHandler::~ExceptionHandler() (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==11741== by 0x40A98F0: exit (in /lib/libc-2.8.so) ==11741== by 0x8069363: run_process (gbx_c_process.c:503) ==11741== by 0x80693F1: CPROCESS_create (gbx_c_process.c:622) ==11741== by 0x805A9CE: SUBR_exec (gbx_subr_misc.c:161) ==11741== by 0x8050960: EXEC_loop (gbx_exec_loop.c:476) ==11741== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==11741== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==11741== by 0x805DD3F: GB_Call (gbx_api.c:750) ==11741== by 0x46390F6: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11741== by 0x4639178: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11741== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==11741== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==11741== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==11741== by 0x804FAE6: EXEC_push_array (gbx_exec_push.c:455) ==11741== by 0x8050A7C: EXEC_loop (gbx_exec_loop.c:532) ==11741== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==11741== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==11741== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) ==11741== by 0x8062DF5: OBJECT_create (gbx_object.c:330) ==11741== by 0x805231E: CLASS_auto_create (gbx_class.c:983) ==11741== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) ==11741== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) ==11741== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) ==11741== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==11741== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==11741== by 0x805DDEA: raise_event (gbx_api.c:489) ==11741== by 0x805E2AA: GB_Raise (gbx_api.c:588) ==11741== by 0x463D886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11741== by 0x461BBE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11741== by 0x4620C45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11741== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11741== by 0x4B7AC3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11741== by 0x4B8F1C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11741== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11741== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11741== by 0x46FEC89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11741== by 0x46FFE47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11741== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11741== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11741== by 0x4B7AC3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11741== by 0x4B8EA3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11741== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11741== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11741== by 0x46FED29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11741== by 0x46FED62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11741== by 0x47DFDF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11741== Address 0xbe8c7f9c is on thread 1's stack ==11741== ==11741== ERROR SUMMARY: 5 errors from 1 contexts (suppressed: 63 from 2) ==11741== malloc/free: in use at exit: 866,642 bytes in 10,224 blocks. ==11741== malloc/free: 49,190 allocs, 38,966 frees, 8,080,496 bytes allocated. ==11741== For counts of detected errors, rerun with: -v ==11741== searching for pointers to 10,224 not-freed blocks. ==11741== checked 1,100,132 bytes. ==11741== ==11741== LEAK SUMMARY: ==11741== definitely lost: 58,457 bytes in 1,981 blocks. ==11741== possibly lost: 83,504 bytes in 140 blocks. ==11741== still reachable: 724,681 bytes in 8,103 blocks. ==11741== suppressed: 0 bytes in 0 blocks. ==11741== Rerun with --leak-check=full to see details of leaked memory. ==11731== Conditional jump or move depends on uninitialised value(s) ==11731== at 0x8062921: OBJECT_detach (gbx_object.c:121) ==11731== by 0x8068C9B: stop_process (gbx_c_process.c:210) ==11731== by 0x8068D41: callback_child (gbx_c_process.c:540) ==11731== by 0x8068D88: CPROCESS_wait_for (gbx_c_process.c:672) ==11731== by 0x805A9EA: SUBR_exec (gbx_subr_misc.c:168) ==11731== by 0x8050960: EXEC_loop (gbx_exec_loop.c:476) ==11731== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==11731== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==11731== by 0x805DD3F: GB_Call (gbx_api.c:750) ==11731== by 0x46390F6: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x4639178: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==11731== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==11731== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==11731== by 0x804FAE6: EXEC_push_array (gbx_exec_push.c:455) ==11731== by 0x8050A7C: EXEC_loop (gbx_exec_loop.c:532) ==11731== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==11731== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==11731== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) ==11731== by 0x8062DF5: OBJECT_create (gbx_object.c:330) ==11731== by 0x805231E: CLASS_auto_create (gbx_class.c:983) ==11731== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) ==11731== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) ==11731== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) ==11731== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==11731== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==11731== by 0x805DDEA: raise_event (gbx_api.c:489) ==11731== by 0x805E2AA: GB_Raise (gbx_api.c:588) ==11731== by 0x463D886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x461BBE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x4620C45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AC3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8F1C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x46FEC89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x46FFE47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AC3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8EA3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x46FED29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x46FED62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x47DFDF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AC3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8EE7E: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== ==11731== Conditional jump or move depends on uninitialised value(s) ==11731== at 0x8062921: OBJECT_detach (gbx_object.c:121) ==11731== by 0x8062C10: OBJECT_attach (gbx_object.c:167) ==11731== by 0x806510B: object_attach (gbx_c_class.c:657) ==11731== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==11731== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==11731== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==11731== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==11731== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==11731== by 0x804F1F0: EXEC_spec (gbx_exec.c:1231) ==11731== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) ==11731== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) ==11731== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==11731== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==11731== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==11731== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) ==11731== by 0x8062DF5: OBJECT_create (gbx_object.c:330) ==11731== by 0x805231E: CLASS_auto_create (gbx_class.c:983) ==11731== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) ==11731== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) ==11731== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) ==11731== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==11731== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==11731== by 0x805DDEA: raise_event (gbx_api.c:489) ==11731== by 0x805E2AA: GB_Raise (gbx_api.c:588) ==11731== by 0x463D886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x461BBE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x4620C45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AC3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8F1C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x46FEC89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x46FFE47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AC3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8EA3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x46FED29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x46FED62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x47DFDF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AC3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8EE7E: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9050B: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4908B6D: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x47D8A5B: gtk_propagate_event (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== ==11731== Conditional jump or move depends on uninitialised value(s) ==11731== at 0x8062AFF: OBJECT_free (gbx_object.c:140) ==11731== by 0x805226D: CLASS_free (gbx_class.c:608) ==11731== by 0x463BFC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x461BBE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x461DBF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x461EAD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x462EF4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x4622F33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AC3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8F1C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4801B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4911120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B7D24E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x480180D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x47CBF70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473BE35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473C6EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AB67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8F5B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4801B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4911120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B7D24E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x480180D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x46F3EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473BE35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473C6EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x490441A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AB67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8F5B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4801B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4911120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B7D24E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x480180D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x46F3EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4840474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473BE35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473C6EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x484229F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== ==11731== Use of uninitialised value of size 4 ==11731== at 0x8062B03: OBJECT_free (gbx_object.c:140) ==11731== by 0x805226D: CLASS_free (gbx_class.c:608) ==11731== by 0x463BFC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x461BBE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x461DBF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x461EAD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x462EF4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x4622F33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AC3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8F1C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4801B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4911120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B7D24E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x480180D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x47CBF70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473BE35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473C6EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AB67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8F5B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4801B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4911120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B7D24E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x480180D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x46F3EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473BE35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473C6EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x490441A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AB67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8F5B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4801B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4911120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B7D24E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x480180D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x46F3EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4840474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473BE35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473C6EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x484229F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== ==11731== Invalid read of size 1 ==11731== at 0x805226D: CLASS_free (gbx_class.c:608) ==11731== by 0x463BFC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x461BBE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x461DBF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x461EAD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x462EF4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x4622F33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AC3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8F1C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4801B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4911120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B7D24E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x480180D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x47CBF70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473BE35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473C6EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AB67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8F5B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4801B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4911120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B7D24E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x480180D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x46F3EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473BE35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473C6EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x490441A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B7AB67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B8F5B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B9067D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B90AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4801B20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4911120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B7D24E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x480180D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x46F3EAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4840474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473BE35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x473C6EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x484229F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==11731== by 0x4B882A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== by 0x4B79388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==11731== Address 0x6ae8b46c is not stack'd, malloc'd or (recently) free'd ==11731== ==11731== Syscall param rt_sigaction(act->sa_mask) points to uninitialised byte(s) ==11731== at 0x40007D2: (within /lib/ld-2.8.so) ==11731== Address 0x43a2df0 is on thread 1's stack /usr/lib/test_gambas: No such file or directory. ==11731== ==11731== ERROR SUMMARY: 6 errors from 6 contexts (suppressed: 77 from 2) ==11731== malloc/free: in use at exit: 3,063,053 bytes in 21,822 blocks. ==11731== malloc/free: 181,893 allocs, 160,071 frees, 45,501,806 bytes allocated. ==11731== For counts of detected errors, rerun with: -v ==11731== searching for pointers to 21,822 not-freed blocks. ==11731== checked 2,079,000 bytes. ==11731== ==11731== LEAK SUMMARY: ==11731== definitely lost: 179,789 bytes in 6,404 blocks. ==11731== possibly lost: 260,883 bytes in 430 blocks. ==11731== still reachable: 2,622,381 bytes in 14,988 blocks. ==11731== suppressed: 0 bytes in 0 blocks. ==11731== Rerun with --leak-check=full to see details of leaked memory. Hope this helps, Regards, Steven Le mercredi 09 juillet 2008 ? 11:58 +0200, Benoit Minisini a ?crit : > On mercredi 09 juillet 2008, Steven Lobbezoo wrote: > > Benoit, > > > > Did this help in any way ? > > Can I supplie other information ? > > > > Thanks, > > Steven > > > > Not really, but it confirms that your system is weird: what is that > google_breakpad and libgnomebreakpad library? > > I suggest you compile Gambas from sources and run valgrind again, so that I > can get the exact location of the first error detected by valgrind. > > Regards, > From steven at ...1652... Wed Jul 9 13:46:12 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 09 Jul 2008 13:46:12 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <1215603622.11807.13.camel@...1936...> References: <1215084747.19393.8.camel@...1936...> <1215274667.4697.9.camel@...1936...> <1215596938.4972.236.camel@...1936...> <200807091158.32020.gambas@...1...> <1215603622.11807.13.camel@...1936...> Message-ID: <1215603972.11807.15.camel@...1936...> Le mercredi 09 juillet 2008 ? 13:40 +0200, Steven Lobbezoo a ?crit : > Ok, i did that, it compiled with any errors. > B.t.w. : I just have a brand new suse 11 installation, in stalled gnome > 2.23 and KDE 4.0 > Nothing special. > Sorry about the typo : Compiled without any errors. From ronstk at ...239... Wed Jul 9 14:12:04 2008 From: ronstk at ...239... (Ron Onstenk) Date: Wed, 9 Jul 2008 14:12:04 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <1215603622.11807.13.camel@...1936...> References: <1215084747.19393.8.camel@...1936...> <200807091158.32020.gambas@...1...> <1215603622.11807.13.camel@...1936...> Message-ID: <200807091412.05305.ronstk@...239...> On Wednesday 09 July 2008, Steven Lobbezoo wrote: > Ok, i did that, it compiled with any errors. > B.t.w. : I just have a brand new suse 11 installation, in stalled gnome > 2.23 and KDE 4.0 > Nothing special. > > Here is the output of valgrind : > ==11731== Memcheck, a memory error detector. > ==11731== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et > al. > ==11731== Using LibVEX rev 1804, a library for dynamic binary > translation. > ==11731== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > ==11731== Using valgrind-3.3.0, a dynamic binary instrumentation > framework. > ==11731== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et > al. > ==11731== For more details, rerun with: -v > ==11731== > ==11741== Syscall param rt_sigaction(act->sa_mask) points to > uninitialised byte(s) > ==11741== at 0x40007D2: (within /lib/ld-2.8.so) > ==11741== by 0x52D03B7: > google_breakpad::ExceptionHandler::TeardownHandler(int) > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==11741== by 0x52D03F6: > google_breakpad::ExceptionHandler::TeardownAllHandler() > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > ==11741== by 0x52D07FE: > google_breakpad::ExceptionHandler::~ExceptionHandler() > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) google_breakpad and libgnomebreakpad are parts of 'bug-buddy' [bash] [jack at ...1937... ~]$ locate libgnomebreakpad /usr/lib/gtk-2.0/modules/libgnomebreakpad.so [jack at ...1937... ~]$ pacman -Qo /usr/lib/gtk-2.0/modules/libgnomebreakpad.so /usr/lib/gtk-2.0/modules/libgnomebreakpad.so is owned by bug-buddy 2.20.1-1 [/bash] Someone on LinuxQuestions: I just created a link to the file it needed in the epsxe directory with "ln -s /usr/lib//libgnomebreakpoint.so . " and solved the problem http://www.linuxquestions.org/questions/showthread.php?p=3080387#post3080387 The main idea is that in /opt/lib32/usr/lib/gtk-2.0/modules/ and /usr/lib/gtk-2.0/modules/ the same file is accessable by symlinking. Ron_1st From gambas at ...1938... Wed Jul 9 14:17:01 2008 From: gambas at ...1938... (gambas at ...1938...) Date: Wed, 9 Jul 2008 14:17:01 +0200 Subject: [Gambas-user] Version 2.7 / Problem with OPEN??? Message-ID: <200807091417.02056.gambas@...1938...> Hello List! Like all other people new to this list, I have to say: Gambas rocks!! :-) The last six years I was a perl fellow...this changed in may 2008! ;-) Here is my problem: Docu says: Unlike other Basic dialects, Gambas will never delete a file when it is opened by the WRITE keyword for instance. ....... To avoid this, open the file including the CREATE keyword. When I do this: LOGFILE = OPEN FilePath FOR CREATE WRITE Compiling my console program, gives me the following error message: Unexpected WRITE! When I do this: LOGFILE = OPEN FilePath FOR WRITE CREATE All went fine!! Is this a bug or a feature???? :-) Greetz Stevie From gambas at ...1... Wed Jul 9 14:26:05 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 9 Jul 2008 14:26:05 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <1215603972.11807.15.camel@...1936...> References: <1215084747.19393.8.camel@...1936...> <1215603622.11807.13.camel@...1936...> <1215603972.11807.15.camel@...1936...> Message-ID: <200807091426.05164.gambas@...1...> On mercredi 09 juillet 2008, Steven Lobbezoo wrote: > Le mercredi 09 juillet 2008 ? 13:40 +0200, Steven Lobbezoo a ?crit : > > Ok, i did that, it compiled with any errors. > > B.t.w. : I just have a brand new suse 11 installation, in stalled gnome > > 2.23 and KDE 4.0 > > Nothing special. > > Sorry about the typo : Compiled without any errors. I forgot to ask: do you run on a 64 bits system? -- Benoit Minisini From gambas at ...1... Wed Jul 9 14:27:24 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 9 Jul 2008 14:27:24 +0200 Subject: [Gambas-user] Version 2.7 / Problem with OPEN??? In-Reply-To: <200807091417.02056.gambas@...1938...> References: <200807091417.02056.gambas@...1938...> Message-ID: <200807091427.24760.gambas@...1...> On mercredi 09 juillet 2008, gambas at ...1938... wrote: > Hello List! > > Like all other people new to this list, I have to say: Gambas rocks!! :-) > The last six years I was a perl fellow...this changed in may 2008! ;-) > > Here is my problem: > Docu says: > Unlike other Basic dialects, Gambas will never delete a file when it is > opened by the WRITE keyword for instance. ....... To avoid this, open the > file including the CREATE keyword. > > When I do this: > LOGFILE = OPEN FilePath FOR CREATE WRITE > > Compiling my console program, gives me the following error message: > Unexpected WRITE! > > When I do this: > LOGFILE = OPEN FilePath FOR WRITE CREATE > > All went fine!! > > Is this a bug or a feature???? :-) > > Greetz > Stevie > This is just the syntax. The CREATE keyword must come after the WRITE keyword. See the documentation of OPEN on the wiki. Regards, -- Benoit Minisini From steven at ...1652... Wed Jul 9 14:33:40 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 09 Jul 2008 14:33:40 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <200807091426.05164.gambas@...1...> References: <1215084747.19393.8.camel@...1936...> <1215603622.11807.13.camel@...1936...> <1215603972.11807.15.camel@...1936...> <200807091426.05164.gambas@...1...> Message-ID: <1215606820.11807.19.camel@...1936...> No no, just plain old 32 bits. Le mercredi 09 juillet 2008 ? 14:26 +0200, Benoit Minisini a ?crit : > On mercredi 09 juillet 2008, Steven Lobbezoo wrote: > > Le mercredi 09 juillet 2008 ? 13:40 +0200, Steven Lobbezoo a ?crit : > > > Ok, i did that, it compiled with any errors. > > > B.t.w. : I just have a brand new suse 11 installation, in stalled gnome > > > 2.23 and KDE 4.0 > > > Nothing special. > > > > Sorry about the typo : Compiled without any errors. > > I forgot to ask: do you run on a 64 bits system? > From steven at ...1652... Wed Jul 9 15:40:32 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 09 Jul 2008 15:40:32 +0200 Subject: [Gambas-user] problem sig 11 with 2.7 In-Reply-To: <200807091412.05305.ronstk@...239...> References: <1215084747.19393.8.camel@...1936...> <200807091158.32020.gambas@...1...> <1215603622.11807.13.camel@...1936...> <200807091412.05305.ronstk@...239...> Message-ID: <1215610832.11807.35.camel@...1936...> Hi, I'm on a suse 11.0 system. ?/opt/lib32 does not exist there. So, i don't know where to link to ?/usr/lib/gtk-2.0/modules/libgnomebreakpad.so (which does exists !) regards, Steven Le mercredi 09 juillet 2008 ? 14:12 +0200, Ron Onstenk a ?crit : > On Wednesday 09 July 2008, Steven Lobbezoo wrote: > > Ok, i did that, it compiled with any errors. > > B.t.w. : I just have a brand new suse 11 installation, in stalled gnome > > 2.23 and KDE 4.0 > > Nothing special. > > > > Here is the output of valgrind : > > ==11731== Memcheck, a memory error detector. > > ==11731== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et > > al. > > ==11731== Using LibVEX rev 1804, a library for dynamic binary > > translation. > > ==11731== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > > ==11731== Using valgrind-3.3.0, a dynamic binary instrumentation > > framework. > > ==11731== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et > > al. > > ==11731== For more details, rerun with: -v > > ==11731== > > ==11741== Syscall param rt_sigaction(act->sa_mask) points to > > uninitialised byte(s) > > ==11741== at 0x40007D2: (within /lib/ld-2.8.so) > > ==11741== by 0x52D03B7: > > google_breakpad::ExceptionHandler::TeardownHandler(int) > > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > > ==11741== by 0x52D03F6: > > google_breakpad::ExceptionHandler::TeardownAllHandler() > > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > > ==11741== by 0x52D07FE: > > google_breakpad::ExceptionHandler::~ExceptionHandler() > > (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) > > google_breakpad and libgnomebreakpad are parts of 'bug-buddy' > > [bash] > [jack at ...1937... ~]$ locate libgnomebreakpad > /usr/lib/gtk-2.0/modules/libgnomebreakpad.so > > [jack at ...1937... ~]$ pacman -Qo /usr/lib/gtk-2.0/modules/libgnomebreakpad.so > /usr/lib/gtk-2.0/modules/libgnomebreakpad.so is owned by bug-buddy 2.20.1-1 > [/bash] > > Someone on LinuxQuestions: > I just created a link to the file it needed in the epsxe directory > with "ln -s /usr/lib//libgnomebreakpoint.so . " > > and solved the problem > http://www.linuxquestions.org/questions/showthread.php?p=3080387#post3080387 > > The main idea is that in /opt/lib32/usr/lib/gtk-2.0/modules/ and /usr/lib/gtk-2.0/modules/ > the same file is accessable by symlinking. > > Ron_1st > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From m0e.lnx at ...626... Wed Jul 9 19:16:43 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Wed, 9 Jul 2008 12:16:43 -0500 Subject: [Gambas-user] Aligning text in a text area Message-ID: <1f1e8c1b0807091016u641fa8e2lbbed8c4a4fdf384e@...627...> Is there a way to set the align = align.center property to the text displayed inside a text area? From gambas at ...1938... Wed Jul 9 22:35:05 2008 From: gambas at ...1938... (gambas at ...1938...) Date: Wed, 9 Jul 2008 22:35:05 +0200 Subject: [Gambas-user] READ-Event on #File.in ??? Message-ID: <200807092235.05887.gambas@...1938...> Hi everybody!!! Is it possible to get a READ-Event on #File.in? Background is: The external process, which is spawning my program, is a little bit flaky regarding its timings. It pushes it's data randomly via STDOUT into my prog. When I use the "WHILE NOT Eof(File.In)"-Example taken from the online help, I always get disconnected from the external process, after the WEND...but I have to send some data back, too! ;-) To bring some light into the dark: At first, i have to read the whole message block (terminated by an empty line), after that, I'm able to send my onw data back to the process. If I didn't misunderstand the concepts of READ-Event, it sit's on the stream and every time data arrives, it reads the incoming data automagically :-) TIA Stevie From gambas at ...1... Wed Jul 9 22:39:11 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 9 Jul 2008 22:39:11 +0200 Subject: [Gambas-user] READ-Event on #File.in ??? In-Reply-To: <200807092235.05887.gambas@...1938...> References: <200807092235.05887.gambas@...1938...> Message-ID: <200807092239.11427.gambas@...1...> On mercredi 09 juillet 2008, gambas at ...1938... wrote: > Hi everybody!!! > > Is it possible to get a READ-Event on #File.in? > > Background is: The external process, which is spawning my program, is a > little bit flaky regarding its timings. It pushes it's data randomly via > STDOUT into my prog. > When I use the "WHILE NOT Eof(File.In)"-Example taken from the online help, > I always get disconnected from the external process, after the WEND...but I > have to send some data back, too! ;-) > To bring some light into the dark: At first, i have to read the whole > message block (terminated by an empty line), after that, I'm able to send > my onw data back to the process. > > If I didn't misunderstand the concepts of READ-Event, it sit's on the > stream and every time data arrives, it reads the incoming data > automagically :-) > > TIA > Stevie > If you declare a STATIC PUBLIC SUB named Application_Read() in your startup class, then you will get what you want: the File.In stream is watched, and the Application_Read() function is called as soon as there is something to read on the standard input. Regards, -- Benoit Minisini From serge.bouc at ...402... Wed Jul 9 22:57:55 2008 From: serge.bouc at ...402... (serge bouc) Date: Wed, 09 Jul 2008 22:57:55 +0200 Subject: [Gambas-user] Background/Foreground Message-ID: <48752653.1040602@...402...> Hello Gambas, Pardon me for asking again this question : b is a button, with text. "b.background=my_color" works fine : b is now surrounded with "my_color" "b.foreground=my_color" turns text on b to black, whatever my-color. What am I missing ? Thanks for any help. Serge. gambas2/Mandriva 2008/kde 3.5 From m0e.lnx at ...626... Wed Jul 9 23:05:37 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Wed, 9 Jul 2008 16:05:37 -0500 Subject: [Gambas-user] Background/Foreground In-Reply-To: <48752653.1040602@...402...> References: <48752653.1040602@...402...> Message-ID: <1f1e8c1b0807091405j327d1eb6j73b35b8f194330d5@...627...> instead of using the background and foreground, try using the Backcolor and Forecolor properties b.backcolor = color.selected b.forecolor = color.black On Wed, Jul 9, 2008 at 3:57 PM, serge bouc wrote: > Hello Gambas, > > Pardon me for asking again this question : > > b is a button, with text. > "b.background=my_color" works fine : b is now surrounded with "my_color" > "b.foreground=my_color" turns text on b to black, whatever my-color. > > What am I missing ? > > Thanks for any help. > Serge. > > gambas2/Mandriva 2008/kde 3.5 > > > > > > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Wed Jul 9 23:09:18 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 9 Jul 2008 23:09:18 +0200 Subject: [Gambas-user] Background/Foreground In-Reply-To: <1f1e8c1b0807091405j327d1eb6j73b35b8f194330d5@...627...> References: <48752653.1040602@...402...> <1f1e8c1b0807091405j327d1eb6j73b35b8f194330d5@...627...> Message-ID: <200807092309.18732.gambas@...1...> On mercredi 09 juillet 2008, M0E Lnx wrote: > instead of using the background and foreground, try using the > Backcolor and Forecolor properties > > b.backcolor = color.selected > b.forecolor = color.black > > On Wed, Jul 9, 2008 at 3:57 PM, serge bouc wrote: > > Hello Gambas, > > > > Pardon me for asking again this question : > > > > b is a button, with text. > > "b.background=my_color" works fine : b is now surrounded with > > "my_color" "b.foreground=my_color" turns text on b to black, whatever > > my-color. > > > > What am I missing ? > > > > Thanks for any help. > > Serge. > > > > gambas2/Mandriva 2008/kde 3.5 > > > > I use Plastik, and setting the background or the foreground color of a button works as expected. So I think it is a problem in the widget style you use. Which style do you use? -- Benoit Minisini From m0e.lnx at ...626... Wed Jul 9 23:20:24 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Wed, 9 Jul 2008 16:20:24 -0500 Subject: [Gambas-user] Embedding another application Message-ID: <1f1e8c1b0807091420r4f52554du71fb88076a14a89b@...627...> Hi again, Another small annoyance in my endeavours to use the embedder object I am trying to embed an application into my form using the embedder object. The embedding works fine (thanks to the bugfixes :=] ) but here is the little annoyance To be more specific, I'm trying to embed gparted into my form. As you may or may not know, gparted takes a few seconds to load. This is because it scans the system for drives and stuff, so there is a delay from the fime the SHELL command is executed and the time the application really shows up on the desktop This is a problem for me (at least now) because my embedder is looking for the application, and sometimes it times out so I need help ... I need a way to make my sub WAIT just enough to let gparted load I can't use the WAIT argument on the SHELL like, because then it'll never get embedded any ideas how I might accomplish this? From gambas at ...1... Wed Jul 9 23:26:25 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 9 Jul 2008 23:26:25 +0200 Subject: [Gambas-user] Embedding another application In-Reply-To: <1f1e8c1b0807091420r4f52554du71fb88076a14a89b@...627...> References: <1f1e8c1b0807091420r4f52554du71fb88076a14a89b@...627...> Message-ID: <200807092326.25943.gambas@...1...> On mercredi 09 juillet 2008, M0E Lnx wrote: > Hi again, Another small annoyance in my endeavours to use the embedder > object > > I am trying to embed an application into my form using the embedder object. > The embedding works fine (thanks to the bugfixes :=] ) but here is the > little annoyance > > To be more specific, I'm trying to embed gparted into my form. > As you may or may not know, gparted takes a few seconds to load. This > is because it scans the system for drives and stuff, so there is a > delay from the fime the SHELL command is executed and the time the > application really shows up on the desktop > > This is a problem for me (at least now) because my embedder is looking > for the application, and sometimes it times out > > so I need help ... I need a way to make my sub WAIT just enough to let > gparted load > I can't use the WAIT argument on the SHELL like, because then it'll > never get embedded > > any ideas how I might accomplish this? > Just wait with the WAIT instruction. Then check that the window of gparted is on the screen with Desktop.Find() If it is not, wait again. Check that gparted didn't die with the Process_Kill event. Regards, -- Benoit Minisini From m0e.lnx at ...626... Wed Jul 9 23:50:31 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Wed, 9 Jul 2008 16:50:31 -0500 Subject: [Gambas-user] Embedding another application In-Reply-To: <200807092326.25943.gambas@...1...> References: <1f1e8c1b0807091420r4f52554du71fb88076a14a89b@...627...> <200807092326.25943.gambas@...1...> Message-ID: <1f1e8c1b0807091450g60116bf9h1da5c5b040e805e8@...627...> Thanks.. I figued something like that needed to be done shortly after asking. Here is what I did DIM sTitle AS String DIM aHandle AS NEW Pointer[] DIM iHandle AS Integer DIM i AS Integer = 0 FrmDiskPart.tlBanner.Text = "

Loading gparted .... Please wait

" SHELL "sudo /usr/sbin/gparted" WAIT 3 sTitle = "GParted" IF Left(sTitle, 2) = "0x" THEN iHandle = Val("&" & Mid$(sTitle, 3)) ELSE IF Left(sTitle) = "&" THEN iHandle = Val(sTitle) ELSE aHandle = Desktop.Find(sTitle) IF aHandle.Count = 0 THEN REPEAT WAIT aHandle = Desktop.Find(sTitle) INC i UNTIL i = 3 OR aHandle.Count > 0 IF aHandle.Count = 0 THEN Message("Cannot find GParted.") RETURN END IF ELSE IF aHandle.Count >= 2 THEN Message("Several windows found. I take the first one!") ENDIF iHandle = aHandle[0] ENDIF 'TRY embEmbedder.Embed(iHandle) TRY FrmDiskPart.EmbGPARTED.Embed(iHandle) IF ERROR THEN Message.Warning(Error.Text) I took a lot of this code from the embedder example... but it works fine... thank you On Wed, Jul 9, 2008 at 4:26 PM, Benoit Minisini wrote: > On mercredi 09 juillet 2008, M0E Lnx wrote: >> Hi again, Another small annoyance in my endeavours to use the embedder >> object >> >> I am trying to embed an application into my form using the embedder object. >> The embedding works fine (thanks to the bugfixes :=] ) but here is the >> little annoyance >> >> To be more specific, I'm trying to embed gparted into my form. >> As you may or may not know, gparted takes a few seconds to load. This >> is because it scans the system for drives and stuff, so there is a >> delay from the fime the SHELL command is executed and the time the >> application really shows up on the desktop >> >> This is a problem for me (at least now) because my embedder is looking >> for the application, and sometimes it times out >> >> so I need help ... I need a way to make my sub WAIT just enough to let >> gparted load >> I can't use the WAIT argument on the SHELL like, because then it'll >> never get embedded >> >> any ideas how I might accomplish this? >> > > Just wait with the WAIT instruction. > > Then check that the window of gparted is on the screen with Desktop.Find() > > If it is not, wait again. > > Check that gparted didn't die with the Process_Kill event. > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! > Studies have shown that voting for your favorite open source project, > along with a healthy diet, reduces your potential for chronic lameness > and boredom. Vote Now at http://www.sourceforge.net/community/cca08 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Wed Jul 9 23:55:59 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 9 Jul 2008 23:55:59 +0200 Subject: [Gambas-user] Compiling stand alone program question In-Reply-To: <200807071747.49568.rterry@...1822...> References: <200807071747.49568.rterry@...1822...> Message-ID: <200807092355.59770.gambas@...1...> On lundi 07 juillet 2008, richard terry wrote: > My question is is it possible/could it be made possible, to compile one > form into a stand alone program, without compiling the whole project. > > Within my complex program, I've a number of effectively stand-alone > programs, which, could run independantly of the whole program and would be > useful to have them do so (eg. my drug browser for product information), > but they also are very useful running as a form stuck to the main program. > > However, as when one compiles gambas, one seems to need to compile the > 'whole lot' > > At the moment, to compile part of my program as stand-alone, I have to > create a new project and I guess import the files via making a symbolic > link to the original program. > > Perhaps I'm missing something, but any comments/advice appreciated. > > Thanks > > Richard > It's not possible. But you can run your program with different names (use symbolic links), and use Application.Args[0] at program startup to choose to run the full program, or only a specific form. As the interpreter only loads what it needs from the executable, it will not make a big difference with having multiple small executables. Regards, -- Benoit Minisini From gambas at ...1... Thu Jul 10 00:45:16 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 10 Jul 2008 00:45:16 +0200 Subject: [Gambas-user] Bug in directory rename in IDE (1441) (oops previous spelling error) In-Reply-To: <200807090913.45090.rterry@...1822...> References: <200807090900.28680.rterry@...1822...> <200807090913.45090.rterry@...1822...> Message-ID: <200807100045.16500.gambas@...1...> On mercredi 09 juillet 2008, richard terry wrote: > On Wed, 9 Jul 2008 09:00:28 am richard terry wrote: > > Sorry, mis-spelt the header, so content is ambiguous, so here it is again. > > > I had added a new text file to a directory in my project tree, entered > > some text, then noticed I'd made a spelling mistake in the directory > > name: > > > > I renamed a directory in my project tree. > > > > The busy cursor didn't decrement to normal cusor. > > > > Went to close gambas - came up with the save files dialog, said ok, but > > error message popped up as shown. > > > > Returning to the directory tree the contents of my new file had > > disappeared. > > > > No way could I quit gambas - had to kill it with the skull and > > crossbones. > > > > Screen dump of error included. > > > > > > Richard This should be fixed in revision #1442. Regards, -- Benoit Minisini From serge.bouc at ...402... Thu Jul 10 01:09:14 2008 From: serge.bouc at ...402... (serge bouc) Date: Thu, 10 Jul 2008 01:09:14 +0200 Subject: [Gambas-user] Background/Foreground (M0E Lnx) In-Reply-To: References: Message-ID: <4875451A.7080808@...402...> > gambas-user-request at lists.sourceforge.net a ?crit : > Message: 3 Date: Wed, 9 Jul 2008 16:05:37 -0500 From: "M0E Lnx" > Subject: Re: [Gambas-user] Background/Foreground > To: "mailing list for gambas users" > Message-ID: > <1f1e8c1b0807091405j327d1eb6j73b35b8f194330d5 at ...627...> > Content-Type: text/plain; charset=ISO-8859-1 instead of using the > background and foreground, try using the Backcolor and Forecolor > properties b.backcolor = color.selected b.forecolor = color.black On > Wed, Jul 9, 2008 at 3:57 PM, serge bouc wrote: >> > Hello Gambas, >> > >> > Pardon me for asking again this question : >> > >> > b is a button, with text. >> > "b.background=my_color" works fine : b is now surrounded with "my_color" >> > "b.foreground=my_color" turns text on b to black, whatever my-color. >> > >> > What am I missing ? >> > >> > Thanks for any help. >> > Serge. >> > >> > gambas2/Mandriva 2008/kde 3.5 Thanks for your answer. I am not sure I unsterstand right : I have tried b.backcolor=my_color It works fine as well. But b.forecolor=my_color again turns text color to black, whatever my_color... Same thing with b.forecolor=color.Red. (it works fine with color.Black instead... ;-) ) I'm not surprised : I remember reading in gambas documentation that "forecolor" is a synonymous for "foreground". Serge. From serge.bouc at ...402... Thu Jul 10 01:15:40 2008 From: serge.bouc at ...402... (serge bouc) Date: Thu, 10 Jul 2008 01:15:40 +0200 Subject: [Gambas-user] Re : Background/Foreground (Benoit Minisini) In-Reply-To: References: Message-ID: <4875469C.5010107@...402...> gambas-user-request at lists.sourceforge.net a ?crit : > Message: 4 > Date: Wed, 9 Jul 2008 23:09:18 +0200 > From: Benoit Minisini > Subject: Re: [Gambas-user] Background/Foreground > To: mailing list for gambas users > Message-ID: <200807092309.18732.gambas at ...1...> > Content-Type: text/plain; charset="iso-8859-1" > > On mercredi 09 juillet 2008, M0E Lnx wrote: > >> > instead of using the background and foreground, try using the >> > Backcolor and Forecolor properties >> > >> > b.backcolor = color.selected >> > b.forecolor = color.black >> > >> > On Wed, Jul 9, 2008 at 3:57 PM, serge bouc wrote: >> >>> > > Hello Gambas, >>> > > >>> > > Pardon me for asking again this question : >>> > > >>> > > b is a button, with text. >>> > > "b.background=my_color" works fine : b is now surrounded with >>> > > "my_color" "b.foreground=my_color" turns text on b to black, whatever >>> > > my-color. >>> > > >>> > > What am I missing ? >>> > > >>> > > Thanks for any help. >>> > > Serge. >>> > > >>> > > gambas2/Mandriva 2008/kde 3.5 >>> > > >>> > > >>> > I use Plastik, and setting the background or the foreground color of a > button works as expected. So I think it is a problem in the widget > style you use. Which style do you use? > -- Benoit Minisini > Thanks for your answer. I confess I never heard of Plastik ... What is this ? As for the widget style, I am far from an expert. I use the QT component, but I am not sure that's what you mean by "widget style" ? Serge. From gambas at ...1... Thu Jul 10 10:11:20 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 10 Jul 2008 10:11:20 +0200 Subject: [Gambas-user] Database example freezes (1440) In-Reply-To: <200807032223.24250.rterry@...1822...> References: <200807032223.24250.rterry@...1822...> Message-ID: <200807101011.21091.gambas@...1...> On jeudi 03 juillet 2008, richard terry wrote: > I was using the database as a part of a wizard to create my database last > night and noticed that if I type anything other than localhost (eg > something nonsensicle like 'adlkfjldjaldkjf' as the host, then the example > freezes up. > > Regards > > Richard > You should have a connection error. Did you have an internet connection up when you tried that? Can you show your code? -- Benoit Minisini From ron at ...1740... Thu Jul 10 14:47:20 2008 From: ron at ...1740... (Ron) Date: Thu, 10 Jul 2008 14:47:20 +0200 Subject: [Gambas-user] Draw.Begin signal 11 Message-ID: <487604D8.6080703@...1740...> When writing some code to display an image blob I got across a signal 11 bug. The code below crashes on the line Draw.Image... I didn't specify the correct DrawingArea , it should be 'DrawingArea1' I guess it should report an error than it couldn't find the DrawingArea specified instead. If you need a backtrace I can try to get one. Regards, Ron_2nd PRIVATE SUB ShowCapture(iId AS Integer) DIM pPicture as Picture DIM rResult AS Result DIM sTempFile AS String = Temp() & ".jpg" rResult = Main.hDB.Exec("SELECT id,stamp,image FROM capture_camera" & iCam & " WHERE id =" & iId) IF rResult.Count = 0 THEN RETURN File.Save(sTempFile, rResult!image.Data) pPicture = Picture.Load(sTempFile) Draw.Begin(DrawingArea) '<---- wrong area filled in, should be DrawingArea1 Draw.Image(pPicture.Image, 0, 0) '< ---------------------- SIGNAL #11 here Draw.End END From gambas at ...1... Thu Jul 10 15:40:56 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 10 Jul 2008 15:40:56 +0200 Subject: [Gambas-user] Draw.Begin signal 11 In-Reply-To: <487604D8.6080703@...1740...> References: <487604D8.6080703@...1740...> Message-ID: <200807101540.56494.gambas@...1...> On jeudi 10 juillet 2008, Ron wrote: > When writing some code to display an image blob I got across a signal 11 > bug. > > The code below crashes on the line > Draw.Image... > > I didn't specify the correct DrawingArea , it should be 'DrawingArea1' > > I guess it should report an error than it couldn't find the DrawingArea > specified instead. > > If you need a backtrace I can try to get one. > > Regards, > Ron_2nd > > PRIVATE SUB ShowCapture(iId AS Integer) > > DIM pPicture as Picture > DIM rResult AS Result > DIM sTempFile AS String = Temp() & ".jpg" > > rResult = Main.hDB.Exec("SELECT id,stamp,image FROM capture_camera" & > iCam & " WHERE id =" & iId) > IF rResult.Count = 0 THEN RETURN > > File.Save(sTempFile, rResult!image.Data) > > pPicture = Picture.Load(sTempFile) > Draw.Begin(DrawingArea) '<---- wrong area filled in, should be > DrawingArea1 > Draw.Image(pPicture.Image, 0, 0) '< ---------------------- SIGNAL #11 > here Draw.End > > END > Which version of Gambas do you use? Do you use gb.qt or gb.gtk? -- Benoit Minisini From ron at ...1740... Thu Jul 10 15:58:58 2008 From: ron at ...1740... (Ron) Date: Thu, 10 Jul 2008 15:58:58 +0200 Subject: [Gambas-user] Draw.Begin signal 11 In-Reply-To: <200807101540.56494.gambas@...1...> References: <487604D8.6080703@...1740...> <200807101540.56494.gambas@...1...> Message-ID: <487615A2.1010803@...1740...> Benoit Minisini schreef: > On jeudi 10 juillet 2008, Ron wrote: > >> When writing some code to display an image blob I got across a signal 11 >> bug. >> >> The code below crashes on the line >> Draw.Image... >> >> I didn't specify the correct DrawingArea , it should be 'DrawingArea1' >> >> I guess it should report an error than it couldn't find the DrawingArea >> specified instead. >> >> If you need a backtrace I can try to get one. >> >> Regards, >> Ron_2nd >> >> PRIVATE SUB ShowCapture(iId AS Integer) >> >> DIM pPicture as Picture >> DIM rResult AS Result >> DIM sTempFile AS String = Temp() & ".jpg" >> >> rResult = Main.hDB.Exec("SELECT id,stamp,image FROM capture_camera" & >> iCam & " WHERE id =" & iId) >> IF rResult.Count = 0 THEN RETURN >> >> File.Save(sTempFile, rResult!image.Data) >> >> pPicture = Picture.Load(sTempFile) >> Draw.Begin(DrawingArea) '<---- wrong area filled in, should be >> DrawingArea1 >> Draw.Image(pPicture.Image, 0, 0) '< ---------------------- SIGNAL #11 >> here Draw.End >> >> END >> >> > > Which version of Gambas do you use? Do you use gb.qt or gb.gtk? > > Benoit, I use Gambas 2.7 rev 1433, with gb.qt Debian 4.0 and 2 liters of coffee ;-) Regards. From gambas at ...1... Thu Jul 10 18:50:35 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 10 Jul 2008 18:50:35 +0200 Subject: [Gambas-user] Draw.Begin signal 11 In-Reply-To: <487615A2.1010803@...1740...> References: <487604D8.6080703@...1740...> <200807101540.56494.gambas@...1...> <487615A2.1010803@...1740...> Message-ID: <200807101850.36087.gambas@...1...> On jeudi 10 juillet 2008, Ron wrote: > Benoit Minisini schreef: > > On jeudi 10 juillet 2008, Ron wrote: > >> When writing some code to display an image blob I got across a signal 11 > >> bug. > >> > >> The code below crashes on the line > >> Draw.Image... > >> > >> I didn't specify the correct DrawingArea , it should be 'DrawingArea1' > >> > >> I guess it should report an error than it couldn't find the DrawingArea > >> specified instead. > >> > >> If you need a backtrace I can try to get one. > >> > >> Regards, > >> Ron_2nd > >> > >> PRIVATE SUB ShowCapture(iId AS Integer) > >> > >> DIM pPicture as Picture > >> DIM rResult AS Result > >> DIM sTempFile AS String = Temp() & ".jpg" > >> > >> rResult = Main.hDB.Exec("SELECT id,stamp,image FROM capture_camera" & > >> iCam & " WHERE id =" & iId) > >> IF rResult.Count = 0 THEN RETURN > >> > >> File.Save(sTempFile, rResult!image.Data) > >> > >> pPicture = Picture.Load(sTempFile) > >> Draw.Begin(DrawingArea) '<---- wrong area filled in, should be > >> DrawingArea1 > >> Draw.Image(pPicture.Image, 0, 0) '< ---------------------- SIGNAL #11 > >> here Draw.End > >> > >> END > > > > Which version of Gambas do you use? Do you use gb.qt or gb.gtk? > > Benoit, > > I use Gambas 2.7 rev 1433, with gb.qt > Debian 4.0 and 2 liters of coffee ;-) > > Regards. > OK, fixed in revision #1444. Regards, -- Benoit Minisini From gambas at ...1938... Thu Jul 10 19:05:47 2008 From: gambas at ...1938... (gambas at ...1938...) Date: Thu, 10 Jul 2008 19:05:47 +0200 Subject: [Gambas-user] READ-Event on #File.in ??? Message-ID: <200807101905.47785.gambas@...1938...> > If you declare a STATIC PUBLIC SUB named Application_Read() in your startup > class, then you will get what you want: the File.In stream is watched, and > the Application_Read() function is called as soon as there is something to > read on the standard input. Hi Benoit, sorry, I couldn't find any further docu regarding Apllication_READ(). ..nothing via "F1", nothing in the wiki. It's seem's to be one of the hidden secrets! ;-) How do I get access on the data?? How must Application_Read() should look like??? I'm pretty new to this OO-Stuff....so I depend on docu or examples! ....sorry!! Greetz Stevie From ron at ...1740... Thu Jul 10 19:50:15 2008 From: ron at ...1740... (Ron) Date: Thu, 10 Jul 2008 19:50:15 +0200 Subject: [Gambas-user] READ-Event on #File.in ??? In-Reply-To: <200807101905.47785.gambas@...1938...> References: <200807101905.47785.gambas@...1938...> Message-ID: <48764BD7.2050506@...1740...> gambas at ...1938... schreef: >> If you declare a STATIC PUBLIC SUB named Application_Read() in your startup >> class, then you will get what you want: the File.In stream is watched, and >> the Application_Read() function is called as soon as there is something to >> read on the standard input. >> > > Hi Benoit, > > sorry, I couldn't find any further docu regarding > Apllication_READ(). ..nothing via "F1", nothing in the wiki. It's seem's to > be one of the hidden secrets! ;-) > How do I get access on the data?? How must Application_Read() should look > like??? > I'm pretty new to this OO-Stuff....so I depend on docu or examples! > ....sorry!! > > Greetz > Stevie > > > Can you get it triggered? I have tried to get it running too, but my Application_Read() routine never gets called, so I gave for that moment. I'm not sure how it works either, sorry. If someone knows, please put your example code here: http://www.gambasdoc.org/help/comp/gb/application/.read?en Regards, Ron_2nd From gambas at ...1... Thu Jul 10 19:52:27 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 10 Jul 2008 19:52:27 +0200 Subject: [Gambas-user] READ-Event on #File.in ??? In-Reply-To: <48764BD7.2050506@...1740...> References: <200807101905.47785.gambas@...1938...> <48764BD7.2050506@...1740...> Message-ID: <200807101952.27057.gambas@...1...> On jeudi 10 juillet 2008, Ron wrote: > gambas at ...1938... schreef: > >> If you declare a STATIC PUBLIC SUB named Application_Read() in your > >> startup class, then you will get what you want: the File.In stream is > >> watched, and the Application_Read() function is called as soon as there > >> is something to read on the standard input. > > > > Hi Benoit, > > > > sorry, I couldn't find any further docu regarding > > Apllication_READ(). ..nothing via "F1", nothing in the wiki. It's seem's > > to be one of the hidden secrets! ;-) > > How do I get access on the data?? How must Application_Read() should look > > like??? > > I'm pretty new to this OO-Stuff....so I depend on docu or examples! > > ....sorry!! > > > > Greetz > > Stevie > > Can you get it triggered? > > I have tried to get it running too, but my Application_Read() routine > never gets called, so I gave for that moment. > I'm not sure how it works either, sorry. > > If someone knows, please put your example code here: > http://www.gambasdoc.org/help/comp/gb/application/.read?en > > Regards, > Ron_2nd > It worked when I implemented it, but now there is a bug that I'm currently trying to fix. Stay tune... -- Benoit Minisini From gambas at ...1... Thu Jul 10 21:30:57 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 10 Jul 2008 21:30:57 +0200 Subject: [Gambas-user] READ-Event on #File.in ??? In-Reply-To: <200807101952.27057.gambas@...1...> References: <200807101905.47785.gambas@...1938...> <48764BD7.2050506@...1740...> <200807101952.27057.gambas@...1...> Message-ID: <200807102130.57228.gambas@...1...> On jeudi 10 juillet 2008, Benoit Minisini wrote: > On jeudi 10 juillet 2008, Ron wrote: > > gambas at ...1938... schreef: > > >> If you declare a STATIC PUBLIC SUB named Application_Read() in your > > >> startup class, then you will get what you want: the File.In stream is > > >> watched, and the Application_Read() function is called as soon as > > >> there is something to read on the standard input. > > > > > > Hi Benoit, > > > > > > sorry, I couldn't find any further docu regarding > > > Apllication_READ(). ..nothing via "F1", nothing in the wiki. It's > > > seem's to be one of the hidden secrets! ;-) > > > How do I get access on the data?? How must Application_Read() should > > > look like??? > > > I'm pretty new to this OO-Stuff....so I depend on docu or examples! > > > ....sorry!! > > > > > > Greetz > > > Stevie > > > > Can you get it triggered? > > > > I have tried to get it running too, but my Application_Read() routine > > never gets called, so I gave for that moment. > > I'm not sure how it works either, sorry. > > > > If someone knows, please put your example code here: > > http://www.gambasdoc.org/help/comp/gb/application/.read?en > > > > Regards, > > Ron_2nd > > It worked when I implemented it, but now there is a bug that I'm currently > trying to fix. Stay tune... OK, a stupid bug was fixed in revision #1445. -- Benoit Minisini From gambas at ...1... Thu Jul 10 21:32:27 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 10 Jul 2008 21:32:27 +0200 Subject: [Gambas-user] READ-Event on #File.in ??? In-Reply-To: <200807101905.47785.gambas@...1938...> References: <200807101905.47785.gambas@...1938...> Message-ID: <200807102132.27345.gambas@...1...> On jeudi 10 juillet 2008, gambas at ...1938... wrote: > > If you declare a STATIC PUBLIC SUB named Application_Read() in your > > startup class, then you will get what you want: the File.In stream is > > watched, and the Application_Read() function is called as soon as there > > is something to read on the standard input. > > Hi Benoit, > > sorry, I couldn't find any further docu regarding > Apllication_READ(). ..nothing via "F1", nothing in the wiki. It's seem's > to be one of the hidden secrets! ;-) The Application_Read global event handler is documented in the Application class documentation page. But you won't get more information than I wrote you. > How do I get access on the data?? How must Application_Read() should look > like??? > I'm pretty new to this OO-Stuff....so I depend on docu or examples! > ....sorry!! > > Greetz > Stevie > You must understand how watched file objects work. A file is an object of class "File" that will raise events when it is watched: the Read event when there is something to read on that File object, the Write event when there is something to write. As the standard input is a special case, I defined the "Application_Read" static public method as the global "Read" event handler for the standard input, provided that this method is defined in the startup class. Here is a little example that write on a file the standard input. But you must upgrade to revision #1445 to be sure that it will work! ' Gambas module PRIVATE $hOut AS File PUBLIC SUB Main() $hOut = OPEN "~/output.txt" FOR WRITE CREATE END PUBLIC SUB Application_Read() DIM sData AS String READ sData, -256 IF Len(sData) = 0 THEN ' Means that the input was closed CLOSE #File.In CLOSE #$hOut ELSE WRITE #$hOut, sData, Len(sData) ENDIF END Regards, -- Benoit Minisini From Karl.Reinl at ...9... Thu Jul 10 22:13:55 2008 From: Karl.Reinl at ...9... (Charlie Reinl) Date: Thu, 10 Jul 2008 22:13:55 +0200 Subject: [Gambas-user] looking for a gambas-1.1x Source Package Message-ID: <1215720836.6338.6.camel@...40...> Hallo, today I switched from Ubuntu 6.06 LTS to Ubuntu 8.04 LTS . and lost the gambas-1.1x package. Is there a chance to find one ? -- Amicalment Charlie From Karl.Reinl at ...9... Thu Jul 10 22:52:35 2008 From: Karl.Reinl at ...9... (Charlie Reinl) Date: Thu, 10 Jul 2008 22:52:35 +0200 Subject: [Gambas-user] switched from Ubuntu 6.06 LTS to Ubuntu 8.04 LTS Message-ID: <1215723155.6338.19.camel@...40...> Hallo Benoit, I switched from Ubuntu 6.06 LTS to Ubuntu 8.04 LTS with a 'apt-get dist-upgrade' after I dit 'apt-get install ....' like it is said on the shrine. Result : gambas2 works fine. (After the apt-get and also after recompilation) But gambas3 did/do not : configure run, just said : THESE COMPONENTS ARE DISABLED: - gb.db.firebird - gb.net.curl - gb.qte make failed, I attached you the output. Thanks for help -- Amicalment Charlie -------------- next part -------------- A non-text attachment was scrubbed... Name: svn-make.log Type: text/x-log Size: 1763 bytes Desc: not available URL: From ariefbayu at ...626... Fri Jul 11 11:29:43 2008 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Fri, 11 Jul 2008 16:29:43 +0700 Subject: [Gambas-user] WebBrowser Reload Event Message-ID: <976ad9050807110229n3c288c47ifd8bee6ef2c981f9@...627...> Dear all, I would like to know how do I catch a reload event on web browser component? I want to show some "loading" status when loading a web and remove it once the web is loaded. TIA. -- Arief Bayu Purwanto About : http://about.freelancer.web.id/ Blog : http://bayu.freelancer.web.id/ From ariefbayu at ...626... Fri Jul 11 12:09:11 2008 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Fri, 11 Jul 2008 17:09:11 +0700 Subject: [Gambas-user] Using TrayIcon from gb.qt not shown in Gnome environment Message-ID: <976ad9050807110309u325dd784x140d4effc1c0e435@...627...> Dear all, I've a page with WebBrowser component in it which make me unable to use gb.gui. Because of it too I have to use gb.qt's TrayIcon component. But, I'm unable to make it shown on tray icon, I did see some flicker like there's some Icon shown but it's too fast and it's disappear. I'm using gambas 3 but forgot which revision that's currently running. I'll update this post once I'm using the latest revision. TIA. -- Arief Bayu Purwanto About : http://about.freelancer.web.id/ Blog : http://bayu.freelancer.web.id/ From steven at ...1652... Fri Jul 11 12:49:47 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Fri, 11 Jul 2008 12:49:47 +0200 Subject: [Gambas-user] Draw.Begin signal 11 In-Reply-To: <200807101850.36087.gambas@...1...> References: <487604D8.6080703@...1740...> <200807101540.56494.gambas@...1...> <487615A2.1010803@...1740...> <200807101850.36087.gambas@...1...> Message-ID: <1215773387.5489.123.camel@...1936...> Sorry Benoit, but my signal 11 ??? Maybe the same area ? Thanks, Steven Le jeudi 10 juillet 2008 ? 18:50 +0200, Benoit Minisini a ?crit : > On jeudi 10 juillet 2008, Ron wrote: > > Benoit Minisini schreef: > > > On jeudi 10 juillet 2008, Ron wrote: > > >> When writing some code to display an image blob I got across a signal 11 > > >> bug. > > >> > > >> The code below crashes on the line > > >> Draw.Image... > > >> > > >> I didn't specify the correct DrawingArea , it should be 'DrawingArea1' > > >> > > >> I guess it should report an error than it couldn't find the DrawingArea > > >> specified instead. > > >> > > >> If you need a backtrace I can try to get one. > > >> > > >> Regards, > > >> Ron_2nd > > >> > > >> PRIVATE SUB ShowCapture(iId AS Integer) > > >> > > >> DIM pPicture as Picture > > >> DIM rResult AS Result > > >> DIM sTempFile AS String = Temp() & ".jpg" > > >> > > >> rResult = Main.hDB.Exec("SELECT id,stamp,image FROM capture_camera" & > > >> iCam & " WHERE id =" & iId) > > >> IF rResult.Count = 0 THEN RETURN > > >> > > >> File.Save(sTempFile, rResult!image.Data) > > >> > > >> pPicture = Picture.Load(sTempFile) > > >> Draw.Begin(DrawingArea) '<---- wrong area filled in, should be > > >> DrawingArea1 > > >> Draw.Image(pPicture.Image, 0, 0) '< ---------------------- SIGNAL #11 > > >> here Draw.End > > >> > > >> END > > > > > > Which version of Gambas do you use? Do you use gb.qt or gb.gtk? > > > > Benoit, > > > > I use Gambas 2.7 rev 1433, with gb.qt > > Debian 4.0 and 2 liters of coffee ;-) > > > > Regards. > > > > OK, fixed in revision #1444. > > Regards, > From m0e.lnx at ...626... Mon Jul 14 15:45:49 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Mon, 14 Jul 2008 08:45:49 -0500 Subject: [Gambas-user] balloon help needed (maybe a bug?) Message-ID: <1f1e8c1b0807140645r58fa993ewbe86d4bdbc62adbd@...627...> I'm trying to add a balloon message to my application, but I'm having a little problem The balloon seems flash before my eyes for just a split second and then vanishes I've tried setting the Balloon.Delay property to an extemely high value (like 500000) and it makes no difference at all Could this be a bug? or am I doing something wrong? missing something? Thanks From m0e.lnx at ...626... Mon Jul 14 15:49:07 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Mon, 14 Jul 2008 08:49:07 -0500 Subject: [Gambas-user] balloon help needed (maybe a bug?) In-Reply-To: <1f1e8c1b0807140645r58fa993ewbe86d4bdbc62adbd@...627...> References: <1f1e8c1b0807140645r58fa993ewbe86d4bdbc62adbd@...627...> Message-ID: <1f1e8c1b0807140649s1e623ea1yf22b19dcb5240e09@...627...> Almost forgot to mention... Using Gambas2-2.7 gb.gtk component used in my application gb.qt has been disabled. On 7/14/08, M0E Lnx wrote: > I'm trying to add a balloon message to my application, but I'm having > a little problem > > The balloon seems flash before my eyes for just a split second and then vanishes > > I've tried setting the Balloon.Delay property to an extemely high > value (like 500000) and it makes no difference at all > > Could this be a bug? or am I doing something wrong? missing something? > > Thanks > From ariefbayu at ...626... Mon Jul 14 15:51:23 2008 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Mon, 14 Jul 2008 20:51:23 +0700 Subject: [Gambas-user] Feature Request Message-ID: <976ad9050807140651t203644a9q910240759600bb68@...627...> Dear all, I have a small feature request for gambas 3 development. Benoit, Can you add an information about current revision installed on About page on gambas IDE. Something similar to geany's about page. I attach it for reference. -- Arief Bayu Purwanto About : http://about.freelancer.web.id/ Blog : http://bayu.freelancer.web.id/ -------------- next part -------------- A non-text attachment was scrubbed... Name: screenshot1.png Type: image/png Size: 30722 bytes Desc: not available URL: From ariefbayu at ...626... Tue Jul 15 03:22:31 2008 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Tue, 15 Jul 2008 08:22:31 +0700 Subject: [Gambas-user] Using TrayIcon from gb.qt not shown in Gnome environment In-Reply-To: <976ad9050807110309u325dd784x140d4effc1c0e435@...627...> References: <976ad9050807110309u325dd784x140d4effc1c0e435@...627...> Message-ID: <976ad9050807141822m2cab5718yd762dde46f40961@...627...> Hello, On 7/11/08, Arief Bayu Purwanto wrote: > I'll update this post once I'm using the latest revision. > As a follow up, I did see an icon in system tray, but it's too small to be usable. I attach the picture. -- Arief Bayu Purwanto About : http://about.freelancer.web.id/ Blog : http://bayu.freelancer.web.id/ -------------- next part -------------- A non-text attachment was scrubbed... Name: screenshot1.png Type: image/png Size: 10890 bytes Desc: not available URL: From nxgtrturbo at ...626... Tue Jul 15 07:38:19 2008 From: nxgtrturbo at ...626... (Nx GT-R BOY) Date: Mon, 14 Jul 2008 22:38:19 -0700 Subject: [Gambas-user] Sendmail tool and Gambas2 Message-ID: <688afe140807142238o799c2563he8a29ee0057931d1@...627...> Hi, As part of my development in Gambas2 I am making a feature in my software that remains people a to-do list daily via email. So far I am working with sendmail, but If you know a better alternative would be appreciated. At shell I do: sendmail some at ...1939... From: some2 at ...1939... Subject: To-do list remind Remember to pickup some things at 2:00pm CTRL+D I cant find a way to use sendmail in a single line, I think must be all in different lines, so, How do I execute this from gambas (different lines?)?, Do you think that write in real time a script and then call it from gambas could be the best (optimum?) option? And the most important thing, How do I send a CTRL+D to the shell, without it, the mail wont be send. Thanks in advance. -- Gambas2 ERP&CRM Arpi http://systemarpi.googlepages.com/ From ariefbayu at ...626... Tue Jul 15 09:44:22 2008 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Tue, 15 Jul 2008 14:44:22 +0700 Subject: [Gambas-user] Fresh Install Gambas2 Launch Error Message-ID: <976ad9050807150044w4be8b71eh9e10edc0221ef6af@...627...> Dear all, I'm downloading the latest SVN[1] rev.1449. I've compile it and when I want to run it, it give me error #27[2]. Any idea what should I do? [1] https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/branches/2.0 [2]ERROR: #27: Cannot load component '/usr/local/lib/gambas2/gb.qt.so': /usr/local/lib/gambas2/gb.qt.so: undefined symbol: _ZTV12MyPictureBox -- Arief Bayu Purwanto About : http://about.freelancer.web.id/ Blog : http://bayu.freelancer.web.id/ From gambas at ...1... Tue Jul 15 11:48:16 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 15 Jul 2008 11:48:16 +0200 Subject: [Gambas-user] Fresh Install Gambas2 Launch Error In-Reply-To: <976ad9050807150044w4be8b71eh9e10edc0221ef6af@...627...> References: <976ad9050807150044w4be8b71eh9e10edc0221ef6af@...627...> Message-ID: <200807151148.16540.gambas@...1...> On mardi 15 juillet 2008, Arief Bayu Purwanto wrote: > Dear all, > > I'm downloading the latest SVN[1] rev.1449. > > I've compile it and when I want to run it, it give me error #27[2]. > > Any idea what should I do? > > [1] https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/branches/2.0 > [2]ERROR: #27: Cannot load component '/usr/local/lib/gambas2/gb.qt.so': > /usr/local/lib/gambas2/gb.qt.so: undefined symbol: _ZTV12MyPictureBox I think your compilation / installation has failed, and you didn't notice. Can you send the output of "./configure", "make" and "make install"? -- Benoit Minisini From gambas at ...1... Tue Jul 15 11:50:36 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 15 Jul 2008 11:50:36 +0200 Subject: [Gambas-user] WebBrowser Reload Event In-Reply-To: <976ad9050807110229n3c288c47ifd8bee6ef2c981f9@...627...> References: <976ad9050807110229n3c288c47ifd8bee6ef2c981f9@...627...> Message-ID: <200807151150.36766.gambas@...1...> On vendredi 11 juillet 2008, Arief Bayu Purwanto wrote: > Dear all, > > I would like to know how do I catch a reload event on web browser > component? I want to show some "loading" status when loading a web and > remove it once the web is loaded. > > TIA. Did you try the "Change" event? -- Benoit Minisini From mike.crean at ...1940... Tue Jul 15 13:34:11 2008 From: mike.crean at ...1940... (Mike) Date: Tue, 15 Jul 2008 19:34:11 +0800 Subject: [Gambas-user] project transfer Message-ID: <20080715113412.02A6A2BEFC9@...1941...> How do I transfer a gambas2 project from my pc to my notebook From steven at ...1652... Tue Jul 15 13:55:37 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 15 Jul 2008 13:55:37 +0200 Subject: [Gambas-user] project transfer In-Reply-To: <20080715113412.02A6A2BEFC9@...1941...> References: <20080715113412.02A6A2BEFC9@...1941...> Message-ID: <1216122938.3752.309.camel@...1936...> If you have already installed gambas on your notebook: Just copy the directory tree with your project. Steven Le mardi 15 juillet 2008 ? 19:34 +0800, Mike a ?crit : > How do I transfer a gambas2 project from my pc to my notebook > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Tue Jul 15 13:56:19 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 15 Jul 2008 13:56:19 +0200 Subject: [Gambas-user] project transfer In-Reply-To: <20080715113412.02A6A2BEFC9@...1941...> References: <20080715113412.02A6A2BEFC9@...1941...> Message-ID: <200807151356.19986.gambas@...1...> On mardi 15 juillet 2008, Mike wrote: > How do I transfer a gambas2 project from my pc to my notebook > Just copy the directory of the project. -- Benoit Minisini From gambas at ...1... Tue Jul 15 13:58:57 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 15 Jul 2008 13:58:57 +0200 Subject: [Gambas-user] Aligning text in a text area In-Reply-To: <1f1e8c1b0807091016u641fa8e2lbbed8c4a4fdf384e@...627...> References: <1f1e8c1b0807091016u641fa8e2lbbed8c4a4fdf384e@...627...> Message-ID: <200807151358.57664.gambas@...1...> On mercredi 09 juillet 2008, M0E Lnx wrote: > Is there a way to set the align = align.center property to the text > displayed inside a text area? > No, the TextArea has no Alignment property. Why do you need that? -- Benoit Minisini From steven at ...1652... Tue Jul 15 16:10:38 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 15 Jul 2008 16:10:38 +0200 Subject: [Gambas-user] Fonts, sizes and colors Message-ID: <1216131038.3752.329.camel@...1936...> Hi, Has anyone available a class /forms to set fonts, fontsizes and colors for an application ? I know Fabien Bodard has done something like this in his Laurux program, but the fonts donnot work properly. I just thought, before inventing the wheel ;-) Steven From jscops at ...11... Tue Jul 15 16:30:12 2008 From: jscops at ...11... (Jacky) Date: Tue, 15 Jul 2008 16:30:12 +0200 Subject: [Gambas-user] Fonts, sizes and colors In-Reply-To: <1216131038.3752.329.camel@...1936...> References: <1216131038.3752.329.camel@...1936...> Message-ID: <200807151630.12971.jscops@...11...> Le Tuesday 15 July 2008 16:10:38 Steven Lobbezoo, vous avez ?crit?: > Hi, > > Has anyone available a class /forms to set fonts, fontsizes and colors > for an application ? > I know Fabien Bodard has done something like this in his Laurux > program, but the fonts donnot > work properly. > > I just thought, before inventing the wheel ;-) > > Steven Hello steven The Fabien Bodard program work very well. Go to Parametres ==> Couleurs ==> produits ==> stock?s. Put that you want in the police ( bold or italic for example. ) and now go to Facturation ==> Tables ==> Articles. Select a line, activate the "Stock?" button, clic the "Enregistrer" button and look at the top. That is that you want, no ? :+) Jacky From steven at ...1652... Tue Jul 15 16:46:29 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 15 Jul 2008 16:46:29 +0200 Subject: [Gambas-user] Fonts, sizes and colors In-Reply-To: <200807151630.12971.jscops@...11...> References: <1216131038.3752.329.camel@...1936...> <200807151630.12971.jscops@...11...> Message-ID: <1216133189.3752.337.camel@...1936...> Hi Jacky, Yes, ... No, i want to change it for the whole app. All forms, menus textboxes etc. (and to save it for the next time). Steven Le mardi 15 juillet 2008 ? 16:30 +0200, Jacky a ?crit : > Le Tuesday 15 July 2008 16:10:38 Steven Lobbezoo, vous avez ?crit : > > Hi, > > > > Has anyone available a class /forms to set fonts, fontsizes and colors > > for an application ? > > I know Fabien Bodard has done something like this in his Laurux > > program, but the fonts donnot > > work properly. > > > > I just thought, before inventing the wheel ;-) > > > > Steven > > Hello steven > > The Fabien Bodard program work very well. Go to Parametres ==> Couleurs ==> > produits ==> stock?s. Put that you want in the police ( bold or italic for > example. ) and now go to Facturation ==> Tables ==> Articles. Select a line, > activate the "Stock?" button, clic the "Enregistrer" button and look at the > top. That is that you want, no ? :+) > > Jacky > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From jscops at ...11... Tue Jul 15 16:47:22 2008 From: jscops at ...11... (Jacky) Date: Tue, 15 Jul 2008 16:47:22 +0200 Subject: [Gambas-user] Fonts, sizes and colors In-Reply-To: <1216133189.3752.337.camel@...1936...> References: <1216131038.3752.329.camel@...1936...> <200807151630.12971.jscops@...11...> <1216133189.3752.337.camel@...1936...> Message-ID: <200807151647.22747.jscops@...11...> Le Tuesday 15 July 2008 16:46:29 Steven Lobbezoo, vous avez ?crit?: > Hi Jacky, > > Yes, ... No, i want to change it for the whole app. All forms, menus > textboxes etc. > (and to save it for the next time). Excuse me. I has badly understood your question. For the whole appli, i d'ont know. Jacky From gambas at ...1... Tue Jul 15 16:57:57 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 15 Jul 2008 16:57:57 +0200 Subject: [Gambas-user] Fonts, sizes and colors In-Reply-To: <1216133189.3752.337.camel@...1936...> References: <1216131038.3752.329.camel@...1936...> <200807151630.12971.jscops@...11...> <1216133189.3752.337.camel@...1936...> Message-ID: <200807151657.57320.gambas@...1...> On mardi 15 juillet 2008, Steven Lobbezoo wrote: > Hi Jacky, > > Yes, ... No, i want to change it for the whole app. All forms, menus > textboxes etc. > (and to save it for the next time). > > Steven > For the font, just read and write the Application.Font property. For colors, there is no other way than doing it by hand. Regards, -- Benoit Minisini From gambas at ...1... Tue Jul 15 16:59:23 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 15 Jul 2008 16:59:23 +0200 Subject: [Gambas-user] Fonts, sizes and colors In-Reply-To: <1216133189.3752.337.camel@...1936...> References: <1216131038.3752.329.camel@...1936...> <200807151630.12971.jscops@...11...> <1216133189.3752.337.camel@...1936...> Message-ID: <200807151659.23079.gambas@...1...> On mardi 15 juillet 2008, Steven Lobbezoo wrote: > Hi Jacky, > > Yes, ... No, i want to change it for the whole app. All forms, menus > textboxes etc. > (and to save it for the next time). > > Steven > Note that changing the default font and the default colors of applications are a bad thing. These settings are decided by the user of the desktop, not the application developer! :-) -- Benoit Minisini From steven at ...1652... Tue Jul 15 17:02:03 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 15 Jul 2008 17:02:03 +0200 Subject: [Gambas-user] Fonts, sizes and colors In-Reply-To: <200807151659.23079.gambas@...1...> References: <1216131038.3752.329.camel@...1936...> <200807151630.12971.jscops@...11...> <1216133189.3752.337.camel@...1936...> <200807151659.23079.gambas@...1...> Message-ID: <1216134123.3752.347.camel@...1936...> You're absolutely right of course. I just want them to have the option, because some complained that characters where to massive, others wanted special fonts, whatever... All for the freedom for our dear users ;-)) Steven Le mardi 15 juillet 2008 ? 16:59 +0200, Benoit Minisini a ?crit : > On mardi 15 juillet 2008, Steven Lobbezoo wrote: > > Hi Jacky, > > > > Yes, ... No, i want to change it for the whole app. All forms, menus > > textboxes etc. > > (and to save it for the next time). > > > > Steven > > > > Note that changing the default font and the default colors of applications are > a bad thing. These settings are decided by the user of the desktop, not the > application developer! :-) > From m0e.lnx at ...626... Tue Jul 15 22:12:11 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Tue, 15 Jul 2008 15:12:11 -0500 Subject: [Gambas-user] Aligning text in a text area In-Reply-To: <200807151358.57664.gambas@...1...> References: <1f1e8c1b0807091016u641fa8e2lbbed8c4a4fdf384e@...627...> <200807151358.57664.gambas@...1...> Message-ID: <1f1e8c1b0807151312h2849e53k86c321d9e3541b2@...627...> Well, I'm using a text area to display a text file. ( a copy of the GPL to be exact) and in my form, the text area is just as wide as the form itself... leaving of couse about 8 pixels on either side for a nice border effect. But the text shows up as left-aligned... I'd like to make it look center-aligned if possible. On Tue, Jul 15, 2008 at 6:58 AM, Benoit Minisini wrote: > On mercredi 09 juillet 2008, M0E Lnx wrote: >> Is there a way to set the align = align.center property to the text >> displayed inside a text area? >> > > No, the TextArea has no Alignment property. Why do you need that? > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Tue Jul 15 22:26:32 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 15 Jul 2008 22:26:32 +0200 Subject: [Gambas-user] Aligning text in a text area In-Reply-To: <1f1e8c1b0807151312h2849e53k86c321d9e3541b2@...627...> References: <1f1e8c1b0807091016u641fa8e2lbbed8c4a4fdf384e@...627...> <200807151358.57664.gambas@...1...> <1f1e8c1b0807151312h2849e53k86c321d9e3541b2@...627...> Message-ID: <200807152226.32855.gambas@...1...> On mardi 15 juillet 2008, M0E Lnx wrote: > Well, I'm using a text area to display a text file. ( a copy of the > GPL to be exact) and in my form, the text area is just as wide as the > form itself... leaving of couse about 8 pixels on either side for a > nice border effect. > > But the text shows up as left-aligned... I'd like to make it look > center-aligned if possible. > If you don't need to edit the text, do not use a TextArea, but a TextLabel or a read-only TextEdit (if you use gb.qt). Regards, -- Benoit Minisini From m0e.lnx at ...626... Tue Jul 15 22:29:38 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Tue, 15 Jul 2008 15:29:38 -0500 Subject: [Gambas-user] Aligning text in a text area In-Reply-To: <200807152226.32855.gambas@...1...> References: <1f1e8c1b0807091016u641fa8e2lbbed8c4a4fdf384e@...627...> <200807151358.57664.gambas@...1...> <1f1e8c1b0807151312h2849e53k86c321d9e3541b2@...627...> <200807152226.32855.gambas@...1...> Message-ID: <1f1e8c1b0807151329s4431e1a3kcae581a31ea1f0a1@...627...> I have to use gb.gtk on this one... strickly gtk. I guess a text label inside a scrollview will do On Tue, Jul 15, 2008 at 3:26 PM, Benoit Minisini wrote: > On mardi 15 juillet 2008, M0E Lnx wrote: >> Well, I'm using a text area to display a text file. ( a copy of the >> GPL to be exact) and in my form, the text area is just as wide as the >> form itself... leaving of couse about 8 pixels on either side for a >> nice border effect. >> >> But the text shows up as left-aligned... I'd like to make it look >> center-aligned if possible. >> > > If you don't need to edit the text, do not use a TextArea, but a TextLabel or > a read-only TextEdit (if you use gb.qt). > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From ron at ...1740... Wed Jul 16 09:51:35 2008 From: ron at ...1740... (Ron) Date: Wed, 16 Jul 2008 09:51:35 +0200 Subject: [Gambas-user] Draw.Text orientation Message-ID: <487DA887.50903@...1740...> Hi, Must be simple, but I don't see it yet... I want to print text in a drawarea vertically instead of horizontally. Someone has a pointer as how to do that? I see no parameter like 'orientation' in Draw.Text which does it for me... and have no clue as how to do it myself... Regards, Ron_2nd From gambas at ...1... Wed Jul 16 12:07:56 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 16 Jul 2008 12:07:56 +0200 Subject: [Gambas-user] Draw.Text orientation In-Reply-To: <487DA887.50903@...1740...> References: <487DA887.50903@...1740...> Message-ID: <200807161207.56694.gambas@...1...> On mercredi 16 juillet 2008, Ron wrote: > Hi, > > Must be simple, but I don't see it yet... > > I want to print text in a drawarea vertically instead of horizontally. > Someone has a pointer as how to do that? > > I see no parameter like 'orientation' in Draw.Text which does it for me... > and have no clue as how to do it myself... > > Regards, > Ron_2nd > It is not yet possible, you have to do that by hand: you must draw the text in a picture, convert the picture to an image, rotate the image, and draw the image into the drawing area. Regards, -- Benoit Minisini From _root at ...324... Wed Jul 16 11:45:17 2008 From: _root at ...324... (Fox) Date: Wed, 16 Jul 2008 11:45:17 +0200 Subject: [Gambas-user] ComboBox with autocomplete? In-Reply-To: <48523363.6060104@...221...> References: <48523363.6060104@...221...> Message-ID: <487DC32D.9080803@...324...> Rolf-Werner Eilert wrote: > Does the ComboBox have an autocomplete function (partially taking the > next best fitting item from the list and proposing it)? If yes, how can > I activate it? > > I don't know :( In the old version (1.9.92 ) it works I search also in changelogs but i didn't find nothing about. Maybe somebody knows how to enable? thanks in advance -- Email.it, the professional e-mail, gratis per te: http://www.email.it/f Sponsor: Last Minute a Riccione. Scopri le offerte su vacanzedivertenti.it * Buona Vacanza! Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=8107&d=16-7 From gambas at ...1... Wed Jul 16 12:16:37 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 16 Jul 2008 12:16:37 +0200 Subject: [Gambas-user] ComboBox with autocomplete? In-Reply-To: <487DC32D.9080803@...324...> References: <48523363.6060104@...221...> <487DC32D.9080803@...324...> Message-ID: <200807161216.37969.gambas@...1...> On mercredi 16 juillet 2008, Fox wrote: > Rolf-Werner Eilert wrote: > > Does the ComboBox have an autocomplete function (partially taking the > > next best fitting item from the list and proposing it)? If yes, how can > > I activate it? > > I don't know :( > In the old version (1.9.92 ) it works > I search also in changelogs but i didn't find nothing about. > > Maybe somebody knows how to enable? > > thanks in advance > > ComboBox never had any autocomplete function. This must be implemented "by hand". If someone does that in a clean way, it would be welcome and put in a component! Regards, -- Benoit Minisini From gambas at ...1... Wed Jul 16 14:21:04 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 16 Jul 2008 14:21:04 +0200 Subject: [Gambas-user] Documentation ? In-Reply-To: <486A61BF.9000106@...402...> References: <486A61BF.9000106@...402...> Message-ID: <200807161421.04042.gambas@...1...> On mardi 01 juillet 2008, serge bouc wrote: > Hello Gambas, > > Some years ago, I wrote a program using Gambas 1, > to produce some pictures in hyperbolic geometry. I recently > tried to restart this program. In between, I had updated my > system to Mandriva 2008, and even if Gambas 1 is still included > in the distribution, it just does'nt work (no fonts available...) No fonts??? > > So I installed Gambas2, and after "some" work, I more or less > succeeded to have my program running. > > For this I had to convert a lot of things (e.g. the "Array" function > is no longer a function..., and I had to guess almost by my own by what > it has been replaced. This is OK anyway, much nicer now). I still have > a couple of problems remaining, that I could probably solve easily if I > could > find Gambas documentation. > > I mean *not* http://gambasdoc.org/help/, > which may certainly help experts... in some cases. :-( > > One of the concrete problems I have is : > > - How to change the color of the text in a button ? The assignment > button.foreground=my_nice_color_kivabien > used to work in Gambas 1, but its only effect now seems to turn > the color to black, independently of the value in input. > I am sure I'm missing something here, but what ? It depends on the KDE widget theme you are using. I use Plastik, and setting the foreground or the background color of a button works as expected. Which theme do you use? -- Benoit Minisini From _root at ...324... Wed Jul 16 13:33:23 2008 From: _root at ...324... (Fox) Date: Wed, 16 Jul 2008 13:33:23 +0200 Subject: [Gambas-user] ComboBox with autocomplete? In-Reply-To: <200807161216.37969.gambas@...1...> References: <48523363.6060104@...221...> <487DC32D.9080803@...324...> <200807161216.37969.gambas@...1...> Message-ID: <487DDC83.8080205@...324...> Benoit Minisini wrote: > > > ComboBox never had any autocomplete function. This must be implemented "by > hand". If someone does that in a clean way, it would be welcome and put in a > component! > > *hum...* well... I assure you about that... or maybe I give a wrong mean to "autocomplete function" I have a combobox filled with customer names. (taked from a mysql query, ordered by name) I click to open the list If I start to write it bring me to correct destination or near it. In the old version it works. In the new no. Seems that it doesn't listen any key event. I try to play with "sorted" and "readonly" but withous success. I know it because i have my laptop in debian sid and the work server in etch. Christian -- Email.it, the professional e-mail, gratis per te: http://www.email.it/f Sponsor: Cerchi un hotel a Riccione, Rimini o Misano Adriatico ? Visita il sito rivieraparkhotels.it. * Gli alberghi dei parchi divertimento Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=8096&d=16-7 From gambas at ...1... Wed Jul 16 14:34:23 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 16 Jul 2008 14:34:23 +0200 Subject: [Gambas-user] ComboBox with autocomplete? In-Reply-To: <487DDC83.8080205@...324...> References: <48523363.6060104@...221...> <200807161216.37969.gambas@...1...> <487DDC83.8080205@...324...> Message-ID: <200807161434.23692.gambas@...1...> On mercredi 16 juillet 2008, Fox wrote: > Benoit Minisini wrote: > > ComboBox never had any autocomplete function. This must be implemented > > "by hand". If someone does that in a clean way, it would be welcome and > > put in a component! > > *hum...* > well... I assure you about that... or maybe I give a wrong mean to > "autocomplete function" > I have a combobox filled with customer names. (taked from a mysql query, > ordered by name) > I click to open the list > If I start to write it bring me to correct destination or near it. > > In the old version it works. > In the new no. Seems that it doesn't listen any key event. > I try to play with "sorted" and "readonly" but withous success. > I know it because i have my laptop in debian sid and the work server in > etch. > > Christian > OK, this is not what I name "autocomplete"! Do you use gb.qt or gb.gtk? In gb.qt, the combobox didn't change, so I would find strange that its behaviour is not the same anymore. -- Benoit Minisini From diego at ...1942... Wed Jul 16 16:14:15 2008 From: diego at ...1942... (=?ISO-8859-1?Q?Diego_Fern=E1ndez?=) Date: Wed, 16 Jul 2008 08:14:15 -0600 Subject: [Gambas-user] program ended with Signal #6 In-Reply-To: <487DA887.50903@...1740...> References: <487DA887.50903@...1740...> Message-ID: <487E0237.1070309@...1942...> hi, Yesterday i update Gambas 3, from revision 1440 to revision 1450, and now every time i close a running app it ends with a signal #6, the app runs just fines, it sends the error ONLY when it is closed. I am using ubuntu 8.04. I did the update on 3 diferent pcs, and i get the error in the 3 of them. Theres the error from the console from gambas. If anything else is needed please let me know. *** glibc detected *** Navegador: free(): invalid pointer: 0x08078664 *** ======= Backtrace: ========= /lib/tls/i686/cmov/libc.so.6[0xb75f7a85] /lib/tls/i686/cmov/libc.so.6(cfree+0x90)[0xb75fb4f0] Navegador[0x805897a] Navegador[0x8069c03] Navegador[0x804ee90] Navegador[0x804f8a4] Navegador[0x8050761] Navegador[0x80508ce] Navegador[0x8054778] Navegador[0x8069cd0] Navegador[0x8064a38] Navegador[0x806508b] /lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xe0)[0xb75a2450] Navegador[0x804ad81] ======= Memory map: ======== 08048000-08074000 r-xp 00000000 08:01 270994 /usr/local/bin/gbx3 08074000-08079000 rw-p 0002b000 08:01 270994 /usr/local/bin/gbx3 08079000-0829c000 rw-p 08079000 00:00 0 [heap] b6400000-b6421000 rw-p b6400000 00:00 0 b6421000-b6500000 ---p b6421000 00:00 0 b6575000-b6579000 r-xp 00000000 08:01 213419 /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-jpeg.so b6579000-b657a000 rw-p 00003000 08:01 213419 /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-jpeg.so b657a000-b65da000 rw-s 00000000 00:09 402129014 /SYSV00000000 (deleted) b65da000-b65db000 r--p 00000000 08:01 172154 /tmp/gambas.1000/14266/tr/es/LC_MESSAGES/gb.form.mo b65db000-b65df000 r-xp 00000000 08:01 213428 /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so b65df000-b65e0000 rw-p 00003000 08:01 213428 /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so b65e0000-b66e4000 rw-p b65e0000 00:00 0 b66e4000-b66e6000 r-xp 00000000 08:01 221607 /usr/lib/pango/1.6.0/modules/pango-basic-fc.so b66e6000-b66e7000 rw-p 00001000 08:01 221607 /usr/lib/pango/1.6.0/modules/pango-basic-fc.so b66e7000-b66f1000 r--p 00000000 08:01 435297 /usr/share/locale-langpack/es/LC_MESSAGES/glib20.mo b66f1000-b6782000 r--p 00000000 08:01 319622 /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf b6782000-b6788000 r--s 00000000 08:01 993051 /var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-x86.cache-2 b6788000-b678b000 r--s 00000000 08:01 993722 /var/cache/fontconfig/e383d7ea5fbe662a33d9b44caf393297-x86.cache-2 b678b000-b678c000 r--s 00000000 08:01 993719 /var/cache/fontconfig/c69f04ab05004e31a6d5e715764f16d8-x86.cache-2 b678c000-b678d000 r--s 00000000 08:01 993677 /var/cache/fontconfig/4c73fe0c47614734b17d736dbde7580a-x86.cache-2 b678d000-b6790000 r--s 00000000 08:01 993676 /var/cache/fontconfig/a755afe4a08bf5b97852ceb7400b47bc-x86.cache-2 b6790000-b6797000 r--s 00000000 08:01 993656 /var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-x86.cache-2 b6797000-b679a000 r--s 00000000 08:01 993537 /var/cache/fontconfig/de156ccd2eddbdc19d37a45b8b2aac9c-x86.cache-2 b679a000-b67a2000 r--s 00000000 08:01 993536 /var/cache/fontconfig/e3de0de479f42330eadf588a55fb5bf4-x86.cache-2 b67a2000-b67aa000 r--s 00000000 08:01 993327 /var/cache/fontconfig/0f34bcd4b6ee430af32735b75db7f02b-x86.cache-2 b67aa000-b67cc000 r--s 00000000 08:01 993325 /var/cache/fontconfig/365b55f210c0a22e9a19e35191240f32-x86.cache-2 b67cc000-b67cf000 r--s 00000000 08:01 993324 /var/cache/fontconfig/de9486f0b47a4d768a594cb4198cb1c6-x86.cache-2 b67cf000-b67d6000 r--s 00000000 08:01 993283 /var/cache/fontconfig/d52a8644073d54c13679302ca1180695-x86.cache-2 b67d6000-b67dc000 r--s 00000000 08:01 991309 /var/cache/fontconfig/089dead882dea3570ffc31a9898cfb69-x86.cache-2 b67dc000-b67de000 r--s 00000000 08:01 991299 /var/cache/fontconfig/e13b20fdb08344e0e664864cc2ede53d-x86.cache-2 b67de000-b67fe000 r--p 00000000 08:01 436172 /usr/share/locale-langpack/es/LC_MESSAGES/libc.mo b67fe000-b680f000 r-xp 00000000 08:01 213385 /usr/lib/gtk-2.0/2.10.0/engines/libubuntulooks.so b680f000-b6810000 rw-p 00011000 08:01 213385 /usr/lib/gtk-2.0/2.10.0/engines/libubuntulooks.so b6810000-b6834000 r--p 00000000 08:01 435293 /usr/share/locale-langpack/es/LC_MESSAGES/gtk20-properties.mo b6834000-b6845000 r--p 00000000 08:01 435292 /usr/share/locale-langpack/es/LC_MESSAGES/gtk20.mo b6845000-b6884000 r--p 00000000 08:01 214218 /usr/lib/locale/es_CR.utf8/LC_CTYPE b6884000-b6885000 r--p 00000000 08:01 213972 /usr/lib/locale/es_CR.utf8/LC_NUMERIC b6885000-b6886000 r--p 00000000 08:01 213975 /usr/lib/locale/es_CR.utf8/LC_TIME b6886000-b6967000 r--p 00000000 08:01 213966 /usr/lib/locale/es_CR.utf8/LC_COLLATE b6967000-b6968000 r--p 00000000 08:01 213970 /usr/lib/locale/es_CR.utf8/LC_MONETARY b6968000-b6969000 r--p 00000000 08:01 222859 /usr/lib/locale/es_CR.utf8/LC_MESSAGES/SYS_LC_MESSAGES b6969000-b696a000 r--p 00000000 08:01 213973 /usr/lib/locale/es_CR.utf8/LC_PAPER b696a000-b696b000 r--p 00000000 08:01 213971 /usr/lib/locale/es_CR.utf8/LC_NAME b696b000-b696c000 r--p 00000000 08:01 213965 /usr/lib/locale/es_CR.utf8/LC_ADDRESS b696c000-b696d000 r--p 00000000 08:01 213974 /usr/lib/locale/es_CR.utf8/LC_TELEPHONE b696d000-b696e000 r--p 00000000 08:01 213969 /usr/lib/locale/es_CR.utf8/LC_MEASUREMENT b696e000-b6975000 r--s 00000000 08:01 197542 /usr/lib/gconv/gconv-modules.cache b6975000-b6a7c000 r--p 00000000 08:01 527920 /usr/local/lib/gambas3/gb.form.gambas b6a7c000-b6aa2000 r-xp 00000000 08:01 182211 /usr/lib/libpcre.so.3.12.1 b6aa2000-b6aa3000 rw-p 00026000 08:01 182211 /usr/lib/libpcre.so.3.12.1 b6aa3000-b6aba000 r-xp 00000000 08:01 123005 /lib/libselinux.so.1 b6aba000-b6abc000 rw-p 00016000 08:01 123005 /lib/libselinux.so.1 b6abc000-b6ae4000 r-xp 00000000 08:01 182221 /usr/lib/libpixman-1.so.0.10.0 b6ae4000-b6ae5000 rw-p 00027000 08:01 182221 /usr/lib/libpixman-1.so.0.10.0 b6ae5000-b6b0b000 r-xp 00000000 08:01 182197 /usr/lib/libpangoft2-1.0.so.0.2000.1 b6b0b000-b6b0c000 rw-p 00026000 08:01 182197 /usr/lib/libpangoft2-1.0.so.0.2000.1 b6b0c000-b6b0e000 r-xp 00000000 08:01 181561 /usr/lib/libXdamage.so.1.1.0 b6b0e000-b6b0f000 rw-p 00001000 08:01 181561 /usr/lib/libXdamage.so.1.1.0 b6b0f000-b6b11000 r-xp 00000000 08:01 181557 /usr/lib/libXcomposite.so.1.0.0 b6b11000-b6b12000 rw-p 00001000 08:01 181557 /usr/lib/libXcomposite.so.1.0.0 b6b12000-b6bc2000 r-xp 00000000 08:01 183485 /usr/lib/libglib-2.0.so.0.1600.3 b6bc2000-b6bc3000 rw-p 000b0000 08:01 183485 /usr/lib/libglib-2.0.so.0.1600.3 b6bc3000-b6bfe000 r-xp 00000000 08:01 183826 /usr/lib/libgobject-2.0.so.0.1600.3 b6bfe000-b6bff000 rw-p 0003b000 08:01 183826 /usr/lib/libgobject-2.0.so.0.1600.3 b6bff000-b6c5f000 r-xp 00000000 08:01 183547 /usr/lib/libcairo.so.2.17.3 b6c5f000-b6c61000 rw-p 0005f000 08:01 183547 /usr/lib/libcairo.so.2.17.3 b6c61000-b6c9c000 r-xp 00000000 08:01 182193 /usr/lib/libpango-1.0.so.0.2000.1 b6c9c000-b6c9e000 rw-p 0003a000 08:01 182193 /usr/lib/libpango-1.0.so.0.2000.1 b6c9e000-b6cb5000 r-xp 00000000 08:01 182922 /usr/lib/libgdk_pixbuf-2.0.so.0.1200.9 b6cb5000-b6cb6000 rw-p 00016000 08:01 182922 /usr/lib/libgdk_pixbuf-2.0.so.0.1200.9 b6cb6000-b6cce000 r-xp 00000000 08:01 181630 /usr/lib/libatk-1.0.so.0.2209.1 b6cce000-b6cd0000 rw-p 00018000 08:01 181630 /usr/lib/libatk-1.0.so.0.2209.1 b6cd0000-b6d51000 r-xp 00000000 08:01 181996 /usr/lib/libgdk-x11-2.0.so.0.1200.9 b6d51000-b6d54000 rw-p 00080000 08:01 181996 /usr/lib/libgdk-x11-2.0.so.0.1200.9 b6d54000-b70c4000 r-xp 00000000 08:01 183114 /usr/lib/libgtk-x11-2.0.so.0.1200.9 b70c4000-b70ca000 rw-p 00370000 08:01 183114 /usr/lib/libgtk-x11-2.0.so.0.1200.9 b70ca000-b70cb000 rw-p b70ca000 00:00 0 b70cb000-b70cc000 r--s 00000000 08:01 993326 /var/cache/fontconfig/4794a0821666d79190d59a36cb4f44b5-x86.cache-2 b70cc000-b70cd000 r--p 00000000 08:01 213968 /usr/lib/locale/es_CR.utf8/LC_IDENTIFICATION b70cd000-b70d5000 r-xp 00000000 08:01 527606 /usr/local/lib/gambas3/gb.eval.so.0.0.0 b70d5000-b70d7000 rw-p 00007000 08:01 527606 /usr/local/lib/gambas3/gb.eval.so.0.0.0 b70d7000-b70d8000 rw-p b70d7000 00:00 0 b70d8000-b70dc000 r--p 00000000 08:01 527806 /usr/local/lib/gambas3/gb.gtk.gambas b70dc000-b70e0000 r-xp 00000000 08:01 527637 /usr/local/lib/gambas3/gb.draw.so.0.0.0 b70e0000-b70e1000 rw-p 00004000 08:01 527637 /usr/local/lib/gambas3/gb.draw.so.0.0.0 b70e1000-b7141000 r-xp 00000000 08:01 527802 /usr/local/lib/gambas3/gb.gtk.so.0.0.0 b7141000-b714f000 rw-p 00060000 08:01 527802 /usr/local/lib/gambas3/gb.gtk.so.0.0.0 b714f000-b7158000 r-xp 00000000 08:01 140688 /lib/tls/i686/cmov/libnss_files-2.7.so b7158000-b715a000 rw-p 00008000 08:01 140688 /lib/tls/i686/cmov/libnss_files-2.7.so b715a000-b7162000 r-xp 00000000 08:01 140692 /lib/tls/i686/cmov/libnss_nis-2.7.so b7162000-b7164000 rw-p 00007000 08:01 140692 /lib/tls/i686/cmov/libnss_nis-2.7.so b7164000-b7178000 r-xp 00000000 08:01 140682 /lib/tls/i686/cmov/libnsl-2.7.so b7178000-b717a000 rw-p 00013000 08:01 140682 /lib/tls/i686/cmov/libnsl-2.7.so b717a000-b717c000 rw-p b717a000 00:00 0 b717c000-b7183000 r-xp 00000000 08:01 140684 /lib/tls/i686/cmov/libnss_compat-2.7.so b7183000-b7185000 rw-p 00006000 08:01 140684 /lib/tls/i686/cmov/libnss_compat-2.7.so b7185000-b7187000 rw-p b7185000 00:00 0 b7187000-b718b000 r-xp 00000000 08:01 181563 /usr/lib/libXdmcp.so.6.0.0 b718b000-b718c000 rw-p 00003000 08:01 181563 /usr/lib/libXdmcp.so.6.0.0 b718c000-b718d000 rw-p b718c000 00:00 0 b718d000-b71a4000 r-xp 00000000 08:01 182393 /usr/lib/libxcb.so.1.0.0 b71a4000-b71a5000 rw-p 00016000 08:01 182393 /usr/lib/libxcb.so.1.0.0 b71a5000-b71a6000 r-xp 00000000 08:01 182391 /usr/lib/libxcb-xlib.so.0.0.0 b71a6000-b71a7000 rw-p 00000000 08:01 182391 /usr/lib/libxcb-xlib.so.0.0.0 b71a7000-b71a9000 r-xp 00000000 08:01 181552 /usr/lib/libXau.so.6.0.0 b71a9000-b71aa000 rw-p 00001000 08:01 181552 /usr/lib/libXau.so.6.0.0 b71aa000-b71ae000 r-xp 00000000 08:01 181569 /usr/lib/libXfixes.so.3.1.0 b71ae000-b71af000 rw-p 00003000 08:01 181569 /usr/lib/libXfixes.so.3.1.0 b71af000-b71ce000 r-xp 00000000 08:01 181789 /usr/lib/libexpat.so.1.5.2 b71ce000-b71d0000 rw-p 0001e000 08:01 181789 /usr/lib/libexpat.so.1.5.2 b71d0000-b71d1000 rw-p b71d0000 00:00 0 b71d1000-b71db000 r-xp 00000000 08:01 122944 /lib/libgcc_s.so.1 b71db000-b71dc000 rw-p 0000a000 08:01 122944 /lib/libgcc_s.so.1 b71dc000-b72c4000 r-xp 00000000 08:01 182330 /usr/lib/libstdc++.so.6.0.9 b72c4000-b72c7000 r--p 000e8000 08:01 182330 /usr/lib/libstdc++.so.6.0.9 b72c7000-b72c9000 rw-p 000eb000 08:01 182330 /usr/lib/libstdc++.so.6.0.9 b72c9000-b72cf000 rw-p b72c9000 00:00 0 b72cf000-b72e3000 r-xp 00000000 08:01 140697 /lib/tls/i686/cmov/libpthread-2.7.so b72e3000-b72e5000 rw-p 00013000 08:01 140697 /lib/tls/i686/cmov/libpthread-2.7.so b72e5000-b72e7000 rw-p b72e5000 00:00 0 b72e7000-b72fc000 r-xp 00000000 08:01 181516 /usr/lib/libICE.so.6.3.0 b72fc000-b72fd000 rw-p 00014000 08:01 181516 /usr/lib/libICE.so.6.3.0 b72fd000-b72ff000 rw-p b72fd000 00:00 0 b72ff000-b7306000 r-xp 00000000 08:01 181540 /usr/lib/libSM.so.6.0.0 b7306000-b7307000 rw-p 00006000 08:01 181540 /usr/lib/libSM.so.6.0.0 b7307000-b7308000 rw-p b7307000 00:00 0 b7308000-b73ec000 r-xp 00000000 08:01 181546 /usr/lib/libX11.so.6.2.0 b73ec000-b73ef000 rw-p 000e4000 08:01 181546 /usr/lib/libX11.so.6.2.0 b73ef000-b73fc000 r-xp 00000000 08:01 181567 /usr/lib/libXext.so.6.4.0 b73fc000-b73fd000 rw-p 0000d000 08:01 181567 /usr/lib/libXext.so.6.4.0 b73fd000-b7469000 r-xp 00000000 08:01 181805 /usr/lib/libfreetype.so.6.3.16 b7469000-b746d000 rw-p 0006b000 08:01 181805 /usr/lib/libfreetype.so.6.3.16 b746d000-b747e000 r-xp 00000000 08:01 181573 /usr/lib/libXft.so.2.1.2 b747e000-b747f000 rw-p 00010000 08:01 181573 /usr/lib/libXft.so.2.1.2 b747f000-b7481000 r-xp 00000000 08:01 181577 /usr/lib/libXinerama.so.1.0.0 b7481000-b7482000 rw-p 00001000 08:01 181577 /usr/lib/libXinerama.so.1.0.0 b7482000-b748a000 r-xp 00000000 08:01 181559 /usr/lib/libXcursor.so.1.0.2 b748a000-b748b000 rw-p 00007000 08:01 181559 /usr/lib/libXcursor.so.1.0.2 b748b000-b748c000 rw-p b748b000 00:00 0 b748c000-b7491000 r-xp 00000000 08:01 181587 /usr/lib/libXrandr.so.2.1.0 b7491000-b7492000 rw-p 00005000 08:01 181587 /usr/lib/libXrandr.so.2.1.0 b7492000-b7499000 r-xp 00000000 08:01 181589 /usr/lib/libXrender.so.1.3.0 b7499000-b749a000 rw-p 00007000 08:01 181589 /usr/lib/libXrender.so.1.3.0 b749a000-b74a1000 r-xp 00000000 08:01 181575 /usr/lib/libXi.so.6.0.0 b74a1000-b74a2000 rw-p 00006000 08:01 181575 /usr/lib/libXi.so.6.0.0 b74a2000-b74b6000 r-xp 00000000 08:01 182405 /usr/lib/libz.so.1.2.3.3 b74b6000-b74b7000 rw-p 00013000 08:01 182405 /usr/lib/libz.so.1.2.3.3 b74b7000-b74d9000 r-xp 00000000 08:01 182225 /usr/lib/libpng12.so.0.15.0 b74d9000-b74da000 rw-p 00022000 08:01 182225 /usr/lib/libpng12.so.0.15.0 b74da000-b74f9000 r-xp 00000000 08:01 182082 /usr/lib/libjpeg.so.62.0.0 b74f9000-b74fa000 rw-p 0001e000 08:01 182082 /usr/lib/libjpeg.so.62.0.0 b74fa000-b74fb000 rw-p b74fa000 00:00 0 b74fb000-b7548000 r-xp 00000000 08:01 181593 /usr/lib/libXt.so.6.0.0 b7548000-b754c000 rw-p 0004c000 08:01 181593 /usr/lib/libXt.so.6.0.0 b754c000-b7561000 r-xp 00000000 08:01 182926 /usr/lib/libaudio.so.2.4 b7561000-b7562000 rw-p 00015000 08:01 182926 /usr/lib/libaudio.so.2.4 b7562000-b758b000 r-xp 00000000 08:01 181797 /usr/lib/libfontconfig.so.1.3.0 b758b000-b758c000 rw-p 00029000 08:01 181797 /usr/lib/libfontconfig.so.1.3.0 b758c000-b76d5000 r-xp 00000000 08:01 140671 /lib/tls/i686/cmov/libc-2.7.so b76d5000-b76d6000 r--p 00149000 08:01 140671 /lib/tls/i686/cmov/libc-2.7.so b76d6000-b76d8000 rw-p 0014a000 08:01 140671 /lib/tls/i686/cmov/libc-2.7.so b76d8000-b76db000 rw-p b76d8000 00:00 0 b76db000-b76e0000 r-xp 00000000 08:01 181795 /usr/lib/libffi.so.4.0.1 b76e0000-b76e1000 rw-p 00005000 08:01 181795 /usr/lib/libffi.so.4.0.1 b76e1000-b76e3000 r-xp 00000000 08:01 140677 /lib/tls/i686/cmov/libdl-2.7.so b76e3000-b76e5000 rw-p 00001000 08:01 140677 /lib/tls/i686/cmov/libdl-2.7.so b76e5000-b76e6000 rw-p b76e5000 00:00 0 b76e6000-b7709000 r-xp 00000000 08:01 140679 /lib/tls/i686/cmov/libm-2.7.so b7709000-b770b000 rw-p 00023000 08:01 140679 /lib/tls/i686/cmov/libm-2.7.so b770b000-b7ee1000 r-xp 00000000 08:01 182983 /usr/lib/libqt-mt.so.3.3.8 b7ee1000-b7f27000 rw-p 007d5000 08:01 182983 /usr/lib/libqt-mt.so.3.3.8 b7f27000-b7f2b000 rw-p b7f27000 00:00 0 b7f2b000-b7f2e000 r-xp 00000000 08:01 183532 /usr/lib/libgmodule-2.0.so.0.1600.3 b7f2e000-b7f2f000 rw-p 00002000 08:01 183532 /usr/lib/libgmodule-2.0.so.0.1600.3 b7f2f000-b7f37000 r-xp 00000000 08:01 182195 /usr/lib/libpangocairo-1.0.so.0.2000.1 b7f37000-b7f38000 rw-p 00008000 08:01 182195 /usr/lib/libpangocairo-1.0.so.0.2000.1 b7f38000-b7f39000 r-xp 00000000 08:01 527642 /usr/local/lib/gambas3/gb.gui.so.0.0.0 b7f39000-b7f3a000 rw-p 00000000 08:01 527642 /usr/local/lib/gambas3/gb.gui.so.0.0.0 b7f3a000-b7f3c000 rw-p b7f3a000 00:00 0 b7f3c000-b7f40000 r-xp 00000000 08:01 527600 /usr/local/lib/gambas3/gb.debug.so.0.0.0 b7f40000-b7f41000 rw-p 00003000 08:01 527600 /usr/local/lib/gambas3/gb.debug.so.0.0.0 b7f41000-b7f43000 rw-p b7f41000 00:00 0 b7f43000-b7f44000 r-xp b7f43000 00:00 0 [vdso] b7f44000-b7f5e000 r-xp 00000000 08:01 122899 /lib/ld-2.7.so b7f5e000-b7f60000 rw-p 00019000 08:01 122899 /lib/ld-2.7.so bfc0b000-bfc20000 rw-p bffeb000 00:00 0 [stack] From gambas at ...1... Wed Jul 16 16:16:27 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 16 Jul 2008 16:16:27 +0200 Subject: [Gambas-user] program ended with Signal #6 In-Reply-To: <487E0237.1070309@...1942...> References: <487DA887.50903@...1740...> <487E0237.1070309@...1942...> Message-ID: <200807161616.27567.gambas@...1...> On mercredi 16 juillet 2008, Diego Fern?ndez wrote: > hi, > > Yesterday i update Gambas 3, from revision 1440 to revision 1450, and > now every time i close a running app it ends with a signal #6, the app > runs just fines, it sends the error ONLY when it is closed. > > I am using ubuntu 8.04. I did the update on 3 diferent pcs, and i get > the error in the 3 of them. Theres the error from the console from > gambas. If anything else is needed please let me know. > Just upgrade to revision 1452. :-) -- Benoit Minisini From _root at ...324... Wed Jul 16 16:09:45 2008 From: _root at ...324... (Fox) Date: Wed, 16 Jul 2008 16:09:45 +0200 Subject: [Gambas-user] ComboBox with autocomplete? In-Reply-To: <200807161434.23692.gambas@...1...> References: <48523363.6060104@...221...> <200807161216.37969.gambas@...1...> <487DDC83.8080205@...324...> <200807161434.23692.gambas@...1...> Message-ID: <487E0129.7040404@...324...> Benoit Minisini wrote: > OK, this is not what I name "autocomplete"! > my fault, sorry :) > Do you use gb.qt or gb.gtk? In gb.qt, the combobox didn't change, so I would > find strange that its behaviour is not the same anymore. > > I use gb.qt, but the funny thing is that: software writed from my laptop (debian sid 64 - gambas 2.6) software compiled on the server debian etch - gambas 1.9.90 give me "help" when I write in combobox software compiled on my laptop don't do nothing if I write on the pull-down menu maybe is only a my issue. ^^ -- Email.it, the professional e-mail, gratis per te: http://www.email.it/f Sponsor: Offerte Luglio a Riccione. Prenota ora su vacanzedivertenti.it Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=8106&d=16-7 From diego at ...1942... Wed Jul 16 17:08:42 2008 From: diego at ...1942... (=?ISO-8859-1?Q?Diego_Fern=E1ndez?=) Date: Wed, 16 Jul 2008 09:08:42 -0600 Subject: [Gambas-user] program ended with Signal #6 In-Reply-To: <200807161616.27567.gambas@...1...> References: <487DA887.50903@...1740...> <487E0237.1070309@...1942...> <200807161616.27567.gambas@...1...> Message-ID: <487E0EFA.9080606@...1942...> Thanks, that totally solved it. Benoit Minisini escribi?: > On mercredi 16 juillet 2008, Diego Fern?ndez wrote: > >> hi, >> >> Yesterday i update Gambas 3, from revision 1440 to revision 1450, and >> now every time i close a running app it ends with a signal #6, the app >> runs just fines, it sends the error ONLY when it is closed. >> >> I am using ubuntu 8.04. I did the update on 3 diferent pcs, and i get >> the error in the 3 of them. Theres the error from the console from >> gambas. If anything else is needed please let me know. >> >> > > Just upgrade to revision 1452. :-) > > From serge.bouc at ...402... Wed Jul 16 22:13:33 2008 From: serge.bouc at ...402... (serge bouc) Date: Wed, 16 Jul 2008 22:13:33 +0200 Subject: [Gambas-user] Background/Foreground (Benoit Minisini) Message-ID: <487E566D.1080406@...402...> > >> > >> > On Wed, Jul 9, 2008 at 3:57 PM, serge bouc wrote: >> >>> > > Hello Gambas, >>> > > >>> > > Pardon me for asking again this question : >>> > > >>> > > b is a button, with text. >>> > > "b.background=my_color" works fine : b is now surrounded with >>> > > "my_color" "b.foreground=my_color" turns text on b to black, whatever >>> > > my-color. >>> > > >>> > > What am I missing ? >>> > > >>> > > Thanks for any help. >>> > > Serge. >>> > > >>> > > gambas2/Mandriva 2008/kde 3.5 >>> > > >>> > > >>> > > I use Plastik, and setting the background or the foreground color of a button > works as expected. So I think it is a problem in the widget style you use. > Which style do you use? > > -- Benoit Minisini I am using Mandriva widget style. I have tried Plastik, and the problem is exactly the same : no way to change the color of text in a button, except to black. This is strange, since at startup, the text color is as specified in the form editor. But whenever I try to change it by "b.background=my_color" the color turns to black. Could this be a conversion problem, since my program (class+form) was initially written for Gambas 1, and then converted to Gambas 2 ? I made no changes in the form, since it works, apart from this problem. -- Serge Bouc From gambas at ...1... Wed Jul 16 23:55:48 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 16 Jul 2008 23:55:48 +0200 Subject: [Gambas-user] Background/Foreground (Benoit Minisini) In-Reply-To: <487E566D.1080406@...402...> References: <487E566D.1080406@...402...> Message-ID: <200807162355.48449.gambas@...1...> On mercredi 16 juillet 2008, serge bouc wrote: > >> > On Wed, Jul 9, 2008 at 3:57 PM, serge bouc wrote: > >>> > > Hello Gambas, > >>> > > > >>> > > Pardon me for asking again this question : > >>> > > > >>> > > b is a button, with text. > >>> > > "b.background=my_color" works fine : b is now surrounded with > >>> > > "my_color" "b.foreground=my_color" turns text on b to black, > >>> > > whatever my-color. > >>> > > > >>> > > What am I missing ? > >>> > > > >>> > > Thanks for any help. > >>> > > Serge. > >>> > > > >>> > > gambas2/Mandriva 2008/kde 3.5 > > > > I use Plastik, and setting the background or the foreground color of a > > button works as expected. So I think it is a problem in the widget style > > you use. Which style do you use? > > > > -- Benoit Minisini > > I am using Mandriva widget style. I have tried Plastik, and the problem > is exactly the same : no way to change the color of text in a button, > except to black. > This is strange, since at startup, the text color is as specified in the > form editor. > But whenever I try to change it by > > "b.background=my_color" > > the color turns to black. > > Could this be a conversion problem, since my program (class+form) was > initially written for Gambas 1, and then converted to Gambas 2 ? I made no > changes in the form, since it works, apart from this problem. > > -- > Serge Bouc > Can you show me the detailed source code? -- Benoit Minisini From gambas at ...1... Thu Jul 17 00:04:37 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 17 Jul 2008 00:04:37 +0200 Subject: [Gambas-user] Using TrayIcon from gb.qt not shown in Gnome environment In-Reply-To: <976ad9050807141822m2cab5718yd762dde46f40961@...627...> References: <976ad9050807110309u325dd784x140d4effc1c0e435@...627...> <976ad9050807141822m2cab5718yd762dde46f40961@...627...> Message-ID: <200807170004.37122.gambas@...1...> On mardi 15 juillet 2008, Arief Bayu Purwanto wrote: > Hello, > > On 7/11/08, Arief Bayu Purwanto wrote: > > I'll update this post once I'm using the latest revision. > > As a follow up, I did see an icon in system tray, but it's too small to be > usable. > I attach the picture. Yes! I finally succeeded in fixing this problem, after reading the source code of KDE system tray, GNOME system tray and GTK+ XEmbed implementation, until I found what GTK+ did that KDE/Qt didn't. Unfortunately, sourceforge subversion server seems to be broken at the moment, my commits fail. So you have to be patient... Regards, -- Benoit Minisini From jbskaggs at ...1871... Thu Jul 17 00:40:08 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Wed, 16 Jul 2008 15:40:08 -0700 (PDT) Subject: [Gambas-user] Dirchooser keep from expanding Message-ID: <18498182.post@...1379...> On DirChooser ver 2.5 how do I keep it from expanding? I only want the user to be able to choose from the directories in the path but not their subdirectories how can I do this? JB -- View this message in context: http://www.nabble.com/Dirchooser-keep-from-expanding-tp18498182p18498182.html Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Thu Jul 17 02:17:08 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 17 Jul 2008 02:17:08 +0200 Subject: [Gambas-user] Using TrayIcon from gb.qt not shown in Gnome environment In-Reply-To: <200807170004.37122.gambas@...1...> References: <976ad9050807110309u325dd784x140d4effc1c0e435@...627...> <976ad9050807141822m2cab5718yd762dde46f40961@...627...> <200807170004.37122.gambas@...1...> Message-ID: <200807170217.08912.gambas@...1...> On jeudi 17 juillet 2008, Benoit Minisini wrote: > On mardi 15 juillet 2008, Arief Bayu Purwanto wrote: > > Hello, > > > > On 7/11/08, Arief Bayu Purwanto wrote: > > > I'll update this post once I'm using the latest revision. > > > > As a follow up, I did see an icon in system tray, but it's too small to > > be usable. > > I attach the picture. > > Yes! I finally succeeded in fixing this problem, after reading the source > code of KDE system tray, GNOME system tray and GTK+ XEmbed implementation, > until I found what GTK+ did that KDE/Qt didn't. > > Unfortunately, sourceforge subversion server seems to be broken at the > moment, my commits fail. So you have to be patient... > > Regards, OK, this was fixed in revision #1454. -- Benoit Minisini From gambas at ...1... Thu Jul 17 02:20:34 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 17 Jul 2008 02:20:34 +0200 Subject: [Gambas-user] Sendmail tool and Gambas2 In-Reply-To: <688afe140807142238o799c2563he8a29ee0057931d1@...627...> References: <688afe140807142238o799c2563he8a29ee0057931d1@...627...> Message-ID: <200807170220.34033.gambas@...1...> On mardi 15 juillet 2008, Nx GT-R BOY wrote: > Hi, As part of my development in Gambas2 I am making a feature in my > software that remains people a to-do list daily via email. > > So far I am working with sendmail, but If you know a better alternative > would be appreciated. > > At shell I do: > sendmail some at ...1939... > From: some2 at ...1939... > Subject: To-do list remind > Remember to pickup some things at 2:00pm > CTRL+D > > I cant find a way to use sendmail in a single line, I think must be all in > different lines, so, How do I execute this from gambas (different lines?)?, > Do you think that write in real time a script and then call it from gambas > could be the best (optimum?) option? > > And the most important thing, How do I send a CTRL+D to the shell, without > it, the mail wont be send. > > Thanks in advance. First, run sendmail from your program: hProcess = SHELL "sendmail" FOR INPUT OUTPUT Then, to send something to sendmail, just PRINT to it: PRINT #hProcess, "First Line" PRINT #hProcess, "Second Line" ... To send what is usually named "CTRL+D", just close the stream. CLOSE #hProcess Regards, -- Benoit Minisini From ariefbayu at ...626... Thu Jul 17 05:48:44 2008 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Thu, 17 Jul 2008 10:48:44 +0700 Subject: [Gambas-user] Using TrayIcon from gb.qt not shown in Gnome environment In-Reply-To: <200807170217.08912.gambas@...1...> References: <976ad9050807110309u325dd784x140d4effc1c0e435@...627...> <976ad9050807141822m2cab5718yd762dde46f40961@...627...> <200807170004.37122.gambas@...1...> <200807170217.08912.gambas@...1...> Message-ID: <976ad9050807162048k4dce6674i83db5dfab36c3794@...627...> On 7/17/08, Benoit Minisini wrote: > > > OK, this was fixed in revision #1454. Ow YEAH!!! work like a charm!!! Thank you Benoit. -- Arief Bayu Purwanto About : http://about.freelancer.web.id/ Blog : http://bayu.freelancer.web.id/ From _root at ...324... Thu Jul 17 07:24:31 2008 From: _root at ...324... (Fox) Date: Thu, 17 Jul 2008 07:24:31 +0200 Subject: [Gambas-user] Sendmail tool and Gambas2 In-Reply-To: <688afe140807142238o799c2563he8a29ee0057931d1@...627...> References: <688afe140807142238o799c2563he8a29ee0057931d1@...627...> Message-ID: <487ED78F.1030206@...324...> Nx GT-R BOY wrote: > Hi, As part of my development in Gambas2 I am making a feature in my > software that remains people a to-do list daily via email. > > So far I am working with sendmail, but If you know a better alternative > would be appreciated. > > I use "sendEmail" is simple and fast, it works in shell and it can send directly to server. Example: From a window: Fmail.call_me(ME.Name) Fmail: PUBLIC from_software AS String PUBLIC SUB call_me(mecall AS String) from_software = Application.Name & "-" & mecall ME.Show END mailfrom = "-f " & who & "@mydomain.com" obj = "-u 'Software bug report' " mailserver = " -s mailserverIP " mailto = " -t sysadmin at ...1943..." msg = "-m 'Report sent from: " & who & " - day " & mydate & "\n Software: " & from_software & " \n" & bug & "' " mycommand = "sendEmail " & mailfrom & mailto & obj & msg & mailserver SHELL mycommand Message.Info("Report sent") Christian -- Email.it, the professional e-mail, gratis per te: http://www.email.it/f Sponsor: Vasco ? tornato! Sul tuo cellulare Il mondo che vorrei Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=7749&d=17-7 From serge.bouc at ...402... Thu Jul 17 11:31:47 2008 From: serge.bouc at ...402... (serge bouc) Date: Thu, 17 Jul 2008 11:31:47 +0200 Subject: [Gambas-user] Background/Foreground Message-ID: <487F1183.6050104@...402...> > > On mercredi 16 juillet 2008, serge bouc wrote: > >>>>> > >> > On Wed, Jul 9, 2008 at 3:57 PM, serge bouc wrote: >>>>> >>>>>>> > >>> > > Hello Gambas, >>>>>>> > >>> > > >>>>>>> > >>> > > Pardon me for asking again this question : >>>>>>> > >>> > > >>>>>>> > >>> > > b is a button, with text. >>>>>>> > >>> > > "b.background=my_color" works fine : b is now surrounded with >>>>>>> > >>> > > "my_color" "b.foreground=my_color" turns text on b to black, >>>>>>> > >>> > > whatever my-color. >>>>>>> > >>> > > >>>>>>> > >>> > > What am I missing ? >>>>>>> > >>> > > >>>>>>> > >>> > > Thanks for any help. >>>>>>> > >>> > > Serge. >>>>>>> > >>> > > >>>>>>> > >>> > > gambas2/Mandriva 2008/kde 3.5 >>>>>>> >>> > > >>> > > I use Plastik, and setting the background or the foreground color of a >>> > > button works as expected. So I think it is a problem in the widget style >>> > > you use. Which style do you use? >>> > > >>> > > -- Benoit Minisini >>> >> > >> > I am using Mandriva widget style. I have tried Plastik, and the problem >> > is exactly the same : no way to change the color of text in a button, >> > except to black. >> > This is strange, since at startup, the text color is as specified in the >> > form editor. >> > But whenever I try to change it by >> > >> > "b.foreground=my_color" >> > >> > the color turns to black. >> > >> > Could this be a conversion problem, since my program (class+form) was >> > initially written for Gambas 1, and then converted to Gambas 2 ? I made no >> > changes in the form, since it works, apart from this problem. >> > >> > -- >> > Serge Bouc >> > >> > > Can you show me the detailed source code? > > -- Benoit Minisini ' Here it is : ' ' and are static integers ' ' is the name of the button ' ' + is the way I found to force redraw ' of my picture. The assignment works fine, but ' does not. ' Removing these two lines has no effect on the button color problem. ' PUBLIC SUB Fond_Click() IF Dialog.SelectColor() = FALSE THEN couleurf = Dialog.Color Fond.Foreground = couleurf ar_plan = couleurf init = FALSE Form_Activate() ENDIF END ' Best regards -- Serge Bouc From gambas at ...1... Thu Jul 17 12:35:06 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 17 Jul 2008 12:35:06 +0200 Subject: [Gambas-user] Feature Request In-Reply-To: <976ad9050807140651t203644a9q910240759600bb68@...627...> References: <976ad9050807140651t203644a9q910240759600bb68@...627...> Message-ID: <200807171235.06377.gambas@...1...> On lundi 14 juillet 2008, Arief Bayu Purwanto wrote: > Dear all, > > I have a small feature request for gambas 3 development. Benoit, Can you > add an information about current revision installed on About page on gambas > IDE. Something similar to geany's about page. > I attach it for reference. Done in revision 1455/1456. Regards, -- Benoit Minisini From ron at ...1740... Thu Jul 17 15:06:22 2008 From: ron at ...1740... (Ron) Date: Thu, 17 Jul 2008 15:06:22 +0200 Subject: [Gambas-user] Datacontrol boxes different height In-Reply-To: <200806191816.54872.gambas@...1...> References: <485A5826.2040301@...1740...> <485A5B0F.9090800@...1740...> <200806191816.54872.gambas@...1...> Message-ID: <487F43CE.7050107@...1740...> Benoit Minisini schreef: > On jeudi 19 juin 2008, Ron wrote: > >>> Hi, >>> >>> a default textbox is 24 pixels heigh. >>> >>> a default datacontrol box is 128 pixels heigh, if you resize it to 24 px >>> with your mouse, the contents doesn't fit properly, >>> you get a scrollbar when you put some text (one line) in it. >>> >>> you have to manually enter 25 px before it fits correctly. >>> >>> >>> Regards, >>> Ron >>> >> Note. >> I forgot to add, this is when the database field name, is type string, >> unlimited. >> >> > > OK, it is fixed in revision #1416. > > Note that the default size is not in pixels internally, but in multiple of > Desktop.Scale. > > Regards, > Benoit, It seems this annoyance/bug popped up again in rev #1445 (or a rev close to it), or maybe was only partially fixed. A default height datacontrol field (24), linked to a _mysql text unlimited length field_ gives a scrollbar on the right. (even with no text in the field) You have to make it non default height 25 to let this scrollbar dissapear. Gambas 2.7, gb.qt. Regards, Ron_2nd From ron at ...1740... Thu Jul 17 15:14:27 2008 From: ron at ...1740... (Ron) Date: Thu, 17 Jul 2008 15:14:27 +0200 Subject: [Gambas-user] Rename of a datacontrol field not 100% correct Message-ID: <487F45B3.7030600@...1740...> Bug report: If you rename a datacontrol field (change the name from lets say DataControl1 to DataControl11) The nametext inside the control field in editor mode doesn't change, which is quite confusing later. Gambas 2.7 rev 1445 gb.qt Regards, Ron_2nd From david_villalobos_c at ...43... Thu Jul 17 15:34:10 2008 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Thu, 17 Jul 2008 06:34:10 -0700 (PDT) Subject: [Gambas-user] Dinamic Arrays in Gambas Message-ID: <640206.73064.qm@...1716...> Hi all, How can I get a dinamic array with more than one dimension. I my program I need to create at execution time a dinamic array, in example: 1 - I will ask the user how many rows. 2 - I will ask the user how many columns. 3 - With this info I need to create an array. I know there is String[], Integer[], but how can I get more dimensions. Best regards David From gambas at ...1... Thu Jul 17 21:52:31 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 17 Jul 2008 21:52:31 +0200 Subject: [Gambas-user] Rename of a datacontrol field not 100% correct In-Reply-To: <487F45B3.7030600@...1740...> References: <487F45B3.7030600@...1740...> Message-ID: <200807172152.32457.gambas@...1...> On jeudi 17 juillet 2008, Ron wrote: > Bug report: > > If you rename a datacontrol field (change the name from lets say > DataControl1 to DataControl11) > The nametext inside the control field in editor mode doesn't change, > which is quite confusing later. > > Gambas 2.7 rev 1445 > gb.qt > > Regards, > Ron_2nd > It should be fixed in revision 1460. Regards, -- Benoit Minisini From rospolosco at ...152... Thu Jul 17 21:54:33 2008 From: rospolosco at ...152... (Stefano Palmeri) Date: Thu, 17 Jul 2008 21:54:33 +0200 Subject: [Gambas-user] Dinamic Arrays in Gambas In-Reply-To: <640206.73064.qm@...1716...> References: <640206.73064.qm@...1716...> Message-ID: <200807172154.33723.rospolosco@...152...> Il gioved? 17 luglio 2008 15:34:10 David Villalobos Cambronero ha scritto: > Hi all, > > How can I get a dinamic array with more than one dimension. > > I my program I need to create at execution time a dinamic array, in > example: > > 1 - I will ask the user how many rows. > 2 - I will ask the user how many columns. > 3 - With this info I need to create an array. > > I know there is String[], Integer[], but how can I get more dimensions. > > Best regards > > David > This a bidimensional 10x10 array of strings. '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' DIM arsMyStrings AS String[] arsMyStrings = NEW String[10, 10] arsMyStrings[0, 0] = "hello" PRINT arsMyStrings[0, 0] '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Bye, Stefano > > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge Build the coolest Linux based applications with Moblin SDK & win > great prizes Grand prize is a trip for two to an Open Source event anywhere > in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Thu Jul 17 21:59:41 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 17 Jul 2008 21:59:41 +0200 Subject: [Gambas-user] Datacontrol boxes different height In-Reply-To: <487F43CE.7050107@...1740...> References: <485A5826.2040301@...1740...> <200806191816.54872.gambas@...1...> <487F43CE.7050107@...1740...> Message-ID: <200807172159.41183.gambas@...1...> On jeudi 17 juillet 2008, Ron wrote: > Benoit Minisini schreef: > > On jeudi 19 juin 2008, Ron wrote: > >>> Hi, > >>> > >>> a default textbox is 24 pixels heigh. > >>> > >>> a default datacontrol box is 128 pixels heigh, if you resize it to 24 > >>> px with your mouse, the contents doesn't fit properly, > >>> you get a scrollbar when you put some text (one line) in it. > >>> > >>> you have to manually enter 25 px before it fits correctly. > >>> > >>> > >>> Regards, > >>> Ron > >> > >> Note. > >> I forgot to add, this is when the database field name, is type string, > >> unlimited. > > > > OK, it is fixed in revision #1416. > > > > Note that the default size is not in pixels internally, but in multiple > > of Desktop.Scale. > > > > Regards, > > Benoit, > > It seems this annoyance/bug popped up again in rev #1445 (or a rev close > to it), or maybe was only partially fixed. > > A default height datacontrol field (24), linked to a _mysql text > unlimited length field_ gives a scrollbar on the right. > (even with no text in the field) > You have to make it non default height 25 to let this scrollbar dissapear. > > Gambas 2.7, gb.qt. > > Regards, > Ron_2nd > Unlimited text fields are edited with a TextArea widget with a vertical scrollbar. The scrollbar is displayed because a one line TextArea is higher than a one line TextBox in QT. So this is not really a bug... Regards, -- Benoit Minisini From ron at ...1740... Thu Jul 17 23:15:51 2008 From: ron at ...1740... (Ron) Date: Thu, 17 Jul 2008 23:15:51 +0200 Subject: [Gambas-user] Datacontrol boxes different height In-Reply-To: <200807172159.41183.gambas@...1...> References: <485A5826.2040301@...1740...> <200806191816.54872.gambas@...1...> <487F43CE.7050107@...1740...> <200807172159.41183.gambas@...1...> Message-ID: <487FB687.7000202@...1740...> Benoit Minisini schreef: > On jeudi 17 juillet 2008, Ron wrote: > >> Benoit Minisini schreef: >> >>> On jeudi 19 juin 2008, Ron wrote: >>> >>>>> Hi, >>>>> >>>>> a default textbox is 24 pixels heigh. >>>>> >>>>> a default datacontrol box is 128 pixels heigh, if you resize it to 24 >>>>> px with your mouse, the contents doesn't fit properly, >>>>> you get a scrollbar when you put some text (one line) in it. >>>>> >>>>> you have to manually enter 25 px before it fits correctly. >>>>> >>>>> >>>>> Regards, >>>>> Ron >>>>> >>>> Note. >>>> I forgot to add, this is when the database field name, is type string, >>>> unlimited. >>>> >>> OK, it is fixed in revision #1416. >>> >>> Note that the default size is not in pixels internally, but in multiple >>> of Desktop.Scale. >>> >>> Regards, >>> >> Benoit, >> >> It seems this annoyance/bug popped up again in rev #1445 (or a rev close >> to it), or maybe was only partially fixed. >> >> A default height datacontrol field (24), linked to a _mysql text >> unlimited length field_ gives a scrollbar on the right. >> (even with no text in the field) >> You have to make it non default height 25 to let this scrollbar dissapear. >> >> Gambas 2.7, gb.qt. >> >> Regards, >> Ron_2nd >> >> > > Unlimited text fields are edited with a TextArea widget with a vertical > scrollbar. The scrollbar is displayed because a one line TextArea is higher > than a one line TextBox in QT. So this is not really a bug... > > Regards Benoit, I guess you are right, it's also a bit silly to have only one line input, when you can have unlimited text length, not very user friendly. BTW: Here you can find some screenshots of the project I have been working on for the past month, in case you are interested what people build with Gambas. ;-) DomotiGa Screenshots Regards, Ron_2nd From ron at ...1740... Thu Jul 17 23:24:59 2008 From: ron at ...1740... (Ron) Date: Thu, 17 Jul 2008 23:24:59 +0200 Subject: [Gambas-user] Feature Request In-Reply-To: <200807171235.06377.gambas@...1...> References: <976ad9050807140651t203644a9q910240759600bb68@...627...> <200807171235.06377.gambas@...1...> Message-ID: <487FB8AB.2020301@...1740...> Benoit Minisini schreef: > On lundi 14 juillet 2008, Arief Bayu Purwanto wrote: > >> Dear all, >> >> I have a small feature request for gambas 3 development. Benoit, Can you >> add an information about current revision installed on About page on gambas >> IDE. Something similar to geany's about page. >> I attach it for reference. >> > > Done in revision 1455/1456. > > Regards, > A suggestion, maybe also handy to store the revision in Application.Revision so it can be displayed in logfiles and other (debug) output. My 2ct's.. Regards, Ron_2nd From gambas at ...1... Thu Jul 17 23:29:23 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 17 Jul 2008 23:29:23 +0200 Subject: [Gambas-user] Feature Request In-Reply-To: <487FB8AB.2020301@...1740...> References: <976ad9050807140651t203644a9q910240759600bb68@...627...> <200807171235.06377.gambas@...1...> <487FB8AB.2020301@...1740...> Message-ID: <200807172329.23784.gambas@...1...> On jeudi 17 juillet 2008, Ron wrote: > Benoit Minisini schreef: > > On lundi 14 juillet 2008, Arief Bayu Purwanto wrote: > >> Dear all, > >> > >> I have a small feature request for gambas 3 development. Benoit, Can you > >> add an information about current revision installed on About page on > >> gambas IDE. Something similar to geany's about page. > >> I attach it for reference. > > > > Done in revision 1455/1456. > > > > Regards, > > A suggestion, maybe also handy to store the revision in > Application.Revision so it can be displayed in logfiles and other > (debug) output. > > My 2ct's.. > > Regards, > Ron_2nd > There is actually no concept of application revision. Each file has its own revision. The revision displayed in the about box is the revision of the Gambas IDE project directory. This revision is more or less accurate, it depends on the state of your local repository. Regards, -- Benoit Minisini From david_villalobos_c at ...43... Fri Jul 18 01:04:26 2008 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Thu, 17 Jul 2008 16:04:26 -0700 (PDT) Subject: [Gambas-user] Dinamic Arrays in Gambas Message-ID: <804399.61179.qm@...1781...> Ohhh that's great... --- David ----- Original Message ---- From: Stefano Palmeri To: mailing list for gambas users Sent: Thursday, July 17, 2008 1:54:33 PM Subject: Re: [Gambas-user] Dinamic Arrays in Gambas Il gioved? 17 luglio 2008 15:34:10 David Villalobos Cambronero ha scritto: > Hi all, > > How can I get a dinamic array with more than one dimension. > > I my program I need to create at execution time a dinamic array, in > example: > > 1 - I will ask the user how many rows. > 2 - I will ask the user how many columns. > 3 - With this info I need to create an array. > > I know there is String[], Integer[], but how can I get more dimensions. > > Best regards > > David > This a bidimensional 10x10 array of strings. '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' DIM arsMyStrings AS String[] arsMyStrings = NEW String[10, 10] arsMyStrings[0, 0] = "hello" PRINT arsMyStrings[0, 0] '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Bye, Stefano > > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge Build the coolest Linux based applications with Moblin SDK & win > great prizes Grand prize is a trip for two to an Open Source event anywhere > in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Fri Jul 18 01:52:20 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 18 Jul 2008 01:52:20 +0200 Subject: [Gambas-user] balloon help needed (maybe a bug?) In-Reply-To: <1f1e8c1b0807140649s1e623ea1yf22b19dcb5240e09@...627...> References: <1f1e8c1b0807140645r58fa993ewbe86d4bdbc62adbd@...627...> <1f1e8c1b0807140649s1e623ea1yf22b19dcb5240e09@...627...> Message-ID: <200807180152.20636.gambas@...1...> On lundi 14 juillet 2008, M0E Lnx wrote: > Almost forgot to mention... > > Using Gambas2-2.7 > gb.gtk component used in my application > > gb.qt has been disabled. > > On 7/14/08, M0E Lnx wrote: > > I'm trying to add a balloon message to my application, but I'm having > > a little problem > > > > The balloon seems flash before my eyes for just a split second and then > > vanishes > > > > I've tried setting the Balloon.Delay property to an extemely high > > value (like 500000) and it makes no difference at all > > > > Could this be a bug? or am I doing something wrong? missing something? > > > > Thanks That is a bug for sure... Can you provide me some code of what you are doing? A full project being the better as usual. Regards, -- Benoit Minisini From m0e.lnx at ...626... Fri Jul 18 08:39:03 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Fri, 18 Jul 2008 01:39:03 -0500 Subject: [Gambas-user] balloon help needed (maybe a bug?) In-Reply-To: <200807180152.20636.gambas@...1...> References: <1f1e8c1b0807140645r58fa993ewbe86d4bdbc62adbd@...627...> <1f1e8c1b0807140649s1e623ea1yf22b19dcb5240e09@...627...> <200807180152.20636.gambas@...1...> Message-ID: <1f1e8c1b0807172339w7307859bn96189bb9dcb61648@...627...> Actually, I dont know how, but it seems to work now. Have not changed anything, except, I run a binary off my project instead of running the code from the IDE I'll let you know if the problem emerges again. On Thu, Jul 17, 2008 at 6:52 PM, Benoit Minisini wrote: > On lundi 14 juillet 2008, M0E Lnx wrote: >> Almost forgot to mention... >> >> Using Gambas2-2.7 >> gb.gtk component used in my application >> >> gb.qt has been disabled. >> >> On 7/14/08, M0E Lnx wrote: >> > I'm trying to add a balloon message to my application, but I'm having >> > a little problem >> > >> > The balloon seems flash before my eyes for just a split second and then >> > vanishes >> > >> > I've tried setting the Balloon.Delay property to an extemely high >> > value (like 500000) and it makes no difference at all >> > >> > Could this be a bug? or am I doing something wrong? missing something? >> > >> > Thanks > > That is a bug for sure... Can you provide me some code of what you are doing? > A full project being the better as usual. > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Fri Jul 18 11:10:55 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 18 Jul 2008 11:10:55 +0200 Subject: [Gambas-user] TexEdit controls not visually being renamed in IDE (2.99 Build 1319) In-Reply-To: <200804200915.31355.rterry@...1822...> References: <200804200915.31355.rterry@...1822...> Message-ID: <200807181110.55717.gambas@...1...> On dimanche 20 avril 2008, richard terry wrote: > I've just noticed that if I add a text edit control to a form and rename > it, then the name on the control in IDE mode dosn't update. > > ie: > 1) Add a textedit to a blank form > name showing in the control in IDE is > textedit1. > > 2) Rename this in the properties window to teWhatever > > 3) Add another textedit control to the form. > name showing in the control > in IDE is textedit1. > > Now the IDE shows two texedit controls ostensibly with the same name as > indicated by the IDE. > > Dosn't affect the functionality, just misleading to the user. > > Regards > > Richard T > Finally fixed in revision #1463! Regards, -- Benoit Minisini From m0e.lnx at ...626... Fri Jul 18 17:53:28 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Fri, 18 Jul 2008 10:53:28 -0500 Subject: [Gambas-user] Feature Request In-Reply-To: <200807172329.23784.gambas@...1...> References: <976ad9050807140651t203644a9q910240759600bb68@...627...> <200807171235.06377.gambas@...1...> <487FB8AB.2020301@...1740...> <200807172329.23784.gambas@...1...> Message-ID: <1f1e8c1b0807180853j3b383c29rde3d3f713e8b83ce@...627...> While we're at it, If I can add something here.. In the project properties window, the components tab. It's kind of hard to read the text description of each component when you click on it because the background turns black... Can that be adjusted? On 7/17/08, Benoit Minisini wrote: > On jeudi 17 juillet 2008, Ron wrote: >> Benoit Minisini schreef: >> > On lundi 14 juillet 2008, Arief Bayu Purwanto wrote: >> >> Dear all, >> >> >> >> I have a small feature request for gambas 3 development. Benoit, Can >> >> you >> >> add an information about current revision installed on About page on >> >> gambas IDE. Something similar to geany's about page. >> >> I attach it for reference. >> > >> > Done in revision 1455/1456. >> > >> > Regards, >> >> A suggestion, maybe also handy to store the revision in >> Application.Revision so it can be displayed in logfiles and other >> (debug) output. >> >> My 2ct's.. >> >> Regards, >> Ron_2nd >> > > There is actually no concept of application revision. Each file has its own > revision. > > The revision displayed in the about box is the revision of the Gambas IDE > project directory. This revision is more or less accurate, it depends on the > state of your local repository. > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From m0e.lnx at ...626... Fri Jul 18 17:51:21 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Fri, 18 Jul 2008 10:51:21 -0500 Subject: [Gambas-user] Minimum requirements for the embedder object Message-ID: <1f1e8c1b0807180851l7944d3b9w38844aca29ce3d76@...627...> As I continue my quest working with the embedder object, I've come accross another issue which raises the question on the subject line of this email. Does the embedder object require a window manager or desktop environment to be running on the system? (I this may be linked to gb.desktop since I'm using Desktop.Find(handle)) The problem here is that my application works on a full blown linux system, but I'm actually writing a linux installer using gambas, so I need the to know exactly what needs to be in the system for the embedder to work. Any pointers are welcome. Thanks in advance From gambas at ...1... Fri Jul 18 19:43:42 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 18 Jul 2008 19:43:42 +0200 Subject: [Gambas-user] Feature Request In-Reply-To: <1f1e8c1b0807180853j3b383c29rde3d3f713e8b83ce@...627...> References: <976ad9050807140651t203644a9q910240759600bb68@...627...> <200807172329.23784.gambas@...1...> <1f1e8c1b0807180853j3b383c29rde3d3f713e8b83ce@...627...> Message-ID: <200807181943.43075.gambas@...1...> On vendredi 18 juillet 2008, M0E Lnx wrote: > While we're at it, If I can add something here.. > In the project properties window, the components tab. It's kind of > hard to read the text description of each component when you click on > it because the background turns black... Can that be adjusted? > The background turns to the selected background color, and the foreground to the selected foreground color. Like in any ListBox. So it should be readable. And it is only adjustable in the KDE control panel or with the qtconfig program. Do you have a screenshot? -- Benoit Minisini From gambas at ...1... Fri Jul 18 19:45:11 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 18 Jul 2008 19:45:11 +0200 Subject: [Gambas-user] Minimum requirements for the embedder object In-Reply-To: <1f1e8c1b0807180851l7944d3b9w38844aca29ce3d76@...627...> References: <1f1e8c1b0807180851l7944d3b9w38844aca29ce3d76@...627...> Message-ID: <200807181945.11130.gambas@...1...> On vendredi 18 juillet 2008, M0E Lnx wrote: > As I continue my quest working with the embedder object, I've come > accross another issue which raises the question on the subject line of > this email. Does the embedder object require a window manager or > desktop environment to be running on the system? (I this may be linked > to gb.desktop since I'm using Desktop.Find(handle)) > > The problem here is that my application works on a full blown linux > system, but I'm actually writing a linux installer using gambas, so I > need the to know exactly what needs to be in the system for the > embedder to work. > > Any pointers are welcome. Thanks in advance > Only X-Window is required. If you want more information about how the Embedder works, read the specifications of the XEmbed protocol at freedesktop.org. http://standards.freedesktop.org/xembed-spec/xembed-spec-0.5.html Regards, -- Benoit Minisini From jbskaggs at ...1871... Sat Jul 19 07:11:06 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Fri, 18 Jul 2008 22:11:06 -0700 (PDT) Subject: [Gambas-user] Adding headers and footers to printing Message-ID: <18541412.post@...1379...> I switched my program to qt from gtk to add printer capabilities beyond just LPR. Could somebody give me an example how to add headers (page numbers) etc? I have the printing module working just fine I just need to understand how to add the header. JB Skaggs -- View this message in context: http://www.nabble.com/Adding-headers-and-footers-to-printing-tp18541412p18541412.html Sent from the gambas-user mailing list archive at Nabble.com. From jscops at ...11... Sat Jul 19 10:19:24 2008 From: jscops at ...11... (Jacky) Date: Sat, 19 Jul 2008 10:19:24 +0200 Subject: [Gambas-user] Adding headers and footers to printing In-Reply-To: <18541412.post@...1379...> References: <18541412.post@...1379...> Message-ID: <200807191019.24671.jscops@...11...> Le Saturday 19 July 2008 07:11:06 jbskaggs, vous avez ?crit?: > I switched my program to qt from gtk to add printer capabilities beyond > just LPR. > > Could somebody give me an example how to add headers (page numbers) etc? > > I have the printing module working just fine I just need to understand how > to add the header. > > JB Skaggs Hi, Here is a simple example which show you how to add headers, footers, logo and lines. Warning. This program work with kprinter ( you need kdeprint libraries in your system ) Jacky -------------- next part -------------- A non-text attachment was scrubbed... Name: Print_ex-0.0.1.tar.gz Type: application/x-tgz Size: 12961 bytes Desc: not available URL: From jscops at ...11... Sat Jul 19 10:56:53 2008 From: jscops at ...11... (Jacky) Date: Sat, 19 Jul 2008 10:56:53 +0200 Subject: [Gambas-user] Adding headers and footers to printing In-Reply-To: <18541412.post@...1379...> References: <18541412.post@...1379...> Message-ID: <200807191056.53417.jscops@...11...> Le Saturday 19 July 2008 07:11:06 jbskaggs, vous avez ?crit?: > I switched my program to qt from gtk to add printer capabilities beyond > just LPR. > > Could somebody give me an example how to add headers (page numbers) etc? > > I have the printing module working just fine I just need to understand how > to add the header. > > JB Skaggs Now you can choose the number of copies. Jacky From jscops at ...11... Sat Jul 19 11:22:51 2008 From: jscops at ...11... (Jacky) Date: Sat, 19 Jul 2008 11:22:51 +0200 Subject: [Gambas-user] Adding headers and footers to printing In-Reply-To: <200807191056.53417.jscops@...11...> References: <18541412.post@...1379...> <200807191056.53417.jscops@...11...> Message-ID: <200807191122.51640.jscops@...11...> Le Saturday 19 July 2008 10:56:53 Jacky, vous avez ?crit?: > Le Saturday 19 July 2008 07:11:06 jbskaggs, vous avez ?crit?: > > I switched my program to qt from gtk to add printer capabilities beyond > > just LPR. > > > > Could somebody give me an example how to add headers (page numbers) etc? > > > > I have the printing module working just fine I just need to understand > > how to add the header. > > > > JB Skaggs > > Now you can choose the number of copies. Oups !!! -------------- next part -------------- A non-text attachment was scrubbed... Name: Print_ex-0.0.2.tar.gz Type: application/x-tgz Size: 13167 bytes Desc: not available URL: From jscops at ...11... Sat Jul 19 13:42:23 2008 From: jscops at ...11... (Jacky) Date: Sat, 19 Jul 2008 13:42:23 +0200 Subject: [Gambas-user] Adding headers and footers to printing In-Reply-To: <18541412.post@...1379...> References: <18541412.post@...1379...> Message-ID: <200807191342.23212.jscops@...11...> Le Saturday 19 July 2008 07:11:06 jbskaggs, vous avez ?crit?: > I switched my program to qt from gtk to add printer capabilities beyond > just LPR. > > Could somebody give me an example how to add headers (page numbers) etc? > > I have the printing module working just fine I just need to understand how > to add the header. > > JB Skaggs Hi, It's still me. in this version you can see or print your result and there is a line in the bottom of page. I think this is the last. Jacky -------------- next part -------------- A non-text attachment was scrubbed... Name: Print_ex-0.0.3.tar.gz Type: application/x-tgz Size: 22622 bytes Desc: not available URL: From epileg at ...626... Sat Jul 19 21:06:31 2008 From: epileg at ...626... (=?ISO-8859-1?Q?Ep=EDleg?=) Date: Sat, 19 Jul 2008 21:06:31 +0200 Subject: [Gambas-user] Feature Request In-Reply-To: <200807171235.06377.gambas@...1...> References: <976ad9050807140651t203644a9q910240759600bb68@...627...> <200807171235.06377.gambas@...1...> Message-ID: <48823B37.6090103@...626...> En/na Benoit Minisini ha escrit: > On lundi 14 juillet 2008, Arief Bayu Purwanto wrote: >> Dear all, >> >> I have a small feature request for gambas 3 development. Benoit, Can you >> add an information about current revision installed on About page on gambas >> IDE. Something similar to geany's about page. >> I attach it for reference. > > Done in revision 1455/1456. > > Regards, > I can't see this feature with the trunk rev. 1473 installed on my system. Where is it? Regards, Ep?leg. From rterry at ...1822... Thu Jul 17 23:51:59 2008 From: rterry at ...1822... (richard terry) Date: Fri, 18 Jul 2008 07:51:59 +1000 Subject: [Gambas-user] Postgresql date question Message-ID: <200807180751.59260.rterry@...1822...> Hi to postgres users of gambas. I'm passing some information to postges, which gets the data from date type eg date1 as date data2 as date (N the postgres database the default on the date field is null) my problem is that postgres baulks when I"ve not put a date into one of the gambas date variables with the message: "invalid syntax for type date '00:00:00'" my sql is far more complex but reduced to the date part reads something like this insert into mytable (date1, date2) values ('01/01/2008','00:00:00') I wondered if anyone could volunteer a solution Regards Richard From kari.laine at ...1400... Sat Jul 19 23:37:47 2008 From: kari.laine at ...1400... (Kari Laine) Date: Sun, 20 Jul 2008 00:37:47 +0300 Subject: [Gambas-user] howto disable optimization? Message-ID: <48825EAB.6070703@...1400...> Hi, could someone tell me how to turn of all the optimization in compiling Gambas. The optimization plays games when stepping through for example gbc3. I tried to give CFLAGS=-O0 to configure but somehow the option -Os is still used. Thank you for any help Best Regards Kari Laine From gambas at ...1... Sat Jul 19 23:41:08 2008 From: gambas at ...1... (Benoit Minisini) Date: Sat, 19 Jul 2008 23:41:08 +0200 Subject: [Gambas-user] howto disable optimization? In-Reply-To: <48825EAB.6070703@...1400...> References: <48825EAB.6070703@...1400...> Message-ID: <200807192341.08273.gambas@...1...> On samedi 19 juillet 2008, Kari Laine wrote: > Hi, > > could someone tell me how to turn of all the optimization in compiling > Gambas. The optimization plays games when stepping through for example > gbc3. I tried to give CFLAGS=-O0 to configure but somehow the option -Os > is still used. > > Thank you for any help > Best Regards > Kari Laine > ./configure --disable-optimization What problem do you have with optimization? Can you give some details? Which version of gcc do you use? -- Benoit Minisini From kari.laine at ...1400... Sun Jul 20 00:09:03 2008 From: kari.laine at ...1400... (Kari Laine) Date: Sun, 20 Jul 2008 01:09:03 +0300 Subject: [Gambas-user] howto disable optimization? In-Reply-To: <200807192341.08273.gambas@...1...> References: <48825EAB.6070703@...1400...> <200807192341.08273.gambas@...1...> Message-ID: <488265FF.7080109@...1400...> Benoit Minisini wrote: > On samedi 19 juillet 2008, Kari Laine wrote: > >> Hi, >> >> could someone tell me how to turn of all the optimization in compiling >> Gambas. The optimization plays games when stepping through for example >> gbc3. I tried to give CFLAGS=-O0 to configure but somehow the option -Os >> is still used. >> >> Thank you for any help >> Best Regards >> Kari Laine >> >> > > ./configure --disable-optimization > > What problem do you have with optimization? Can you give some details? Which > version of gcc do you use? > > I don't have any "user" problem with Gambas using optimization - sorry not to be clear. On my long quest to learn how Gambas works I step through parts of it using DDD and (I think) that because of optimization DDD shows order of steps in it illogical order. Sorry not to be me clear originally. I try --disable-optimization now. Thanks. Best Regards Kari Laine From pinozollo at ...626... Sun Jul 20 00:30:20 2008 From: pinozollo at ...626... (Pino Zollo) Date: Sat, 19 Jul 2008 18:30:20 -0400 Subject: [Gambas-user] Postgresql date question In-Reply-To: <200807180751.59260.rterry@...1822...> References: <200807180751.59260.rterry@...1822...> Message-ID: <200807191830.22318.pinozollo@...626...> Alle 17:51, gioved? 17 luglio 2008, richard terry ha scritto: > insert into mytable (date1, date2) values > > ('01/01/2008','00:00:00') What about insert into mytable (date1, date2) values ('01/01/2008', NULL) Maybe you want the type timestamp ...which is the set of a date and a time. Good luck Pino From jbskaggs at ...1871... Sun Jul 20 03:10:47 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Sat, 19 Jul 2008 18:10:47 -0700 (PDT) Subject: [Gambas-user] I finished my basic module. Message-ID: <18550419.post@...1379...> Well I finished my basic module of my first serious Gambas Project and posted it to qtapps and freshmeat for usage and beta testing. I am hoping people like it. It is a program for writing novels. Even though there are a lot of features I need to add I have finished my first major release. if anyone is interested they can see the program and source code at http://www.wwmkr.com. Would love anybodies comments. JB -- View this message in context: http://www.nabble.com/I-finished-my-basic-module.-tp18550419p18550419.html Sent from the gambas-user mailing list archive at Nabble.com. From jbskaggs at ...1871... Sun Jul 20 07:28:08 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Sat, 19 Jul 2008 22:28:08 -0700 (PDT) Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 Message-ID: <18551527.post@...1379...> Help! My program was running fine then suddenly and unexpectedly it started this: It does it at seemingly random times. The only difference I have done was to switch from GTK to QT for printing purposes. http://www.nabble.com/file/p18551527/bugScreenshot.png What does this mean? JB -- View this message in context: http://www.nabble.com/-29-invalid-object.-ValueBox.Warning.Timer.410-tp18551527p18551527.html Sent from the gambas-user mailing list archive at Nabble.com. From jbskaggs at ...1871... Sun Jul 20 07:55:12 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Sat, 19 Jul 2008 22:55:12 -0700 (PDT) Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 In-Reply-To: <18551527.post@...1379...> References: <18551527.post@...1379...> Message-ID: <18551626.post@...1379...> Okay it has caused my computer to reboot. I ran the program in terminal and here is what it showed: ValueBox.WarningTimer.410: #29: Invalid object 0: ValueBox.WarningTimer.410 1: ValueBox.TextBox_LostFocus.375 Mutex destroy failure: Device or resource busy skaggs at ...1876...:~$ Any idea what this means? jbskaggs wrote: > > Help! My program was running fine then suddenly and unexpectedly it > started this: It does it at seemingly random times. The only difference > I have done was to switch from GTK to QT for printing purposes. > > http://www.nabble.com/file/p18551527/bugScreenshot.png > > What does this mean? > > JB > -- View this message in context: http://www.nabble.com/-29-invalid-object.-ValueBox.Warning.Timer.410-tp18551527p18551626.html Sent from the gambas-user mailing list archive at Nabble.com. From jbskaggs at ...1871... Sun Jul 20 07:56:39 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Sat, 19 Jul 2008 22:56:39 -0700 (PDT) Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 In-Reply-To: <18551527.post@...1379...> References: <18551527.post@...1379...> Message-ID: <18551627.post@...1379...> Okay it has caused my computer to reboot. I ran the program in terminal and here is what it showed: ValueBox.WarningTimer.410: #29: Invalid object 0: ValueBox.WarningTimer.410 1: ValueBox.TextBox_LostFocus.375 Mutex destroy failure: Device or resource busy skaggs at ...1876...:~$ Any idea what this means? jbskaggs wrote: > > Help! My program was running fine then suddenly and unexpectedly it > started this: It does it at seemingly random times. The only difference > I have done was to switch from GTK to QT for printing purposes. > > http://www.nabble.com/file/p18551527/bugScreenshot.png > > What does this mean? > > JB > -- View this message in context: http://www.nabble.com/-29-invalid-object.-ValueBox.Warning.Timer.410-tp18551527p18551627.html Sent from the gambas-user mailing list archive at Nabble.com. From jbskaggs at ...1871... Sun Jul 20 09:14:05 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Sun, 20 Jul 2008 00:14:05 -0700 (PDT) Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 In-Reply-To: <18551527.post@...1379...> References: <18551527.post@...1379...> Message-ID: <18551996.post@...1379...> I think I understand what I did. When I switched from gtk to qt I did not recreate all the controls. I mistakenly thought I could just switch compnent library and the IDE would know the difference. So now I am back to using GTK and having to restart on my printing problems or recreate all my controls in qt. I feel like an idiot. JB jbskaggs wrote: > > Help! My program was running fine then suddenly and unexpectedly it > started this: It does it at seemingly random times. The only difference > I have done was to switch from GTK to QT for printing purposes. > > http://www.nabble.com/file/p18551527/bugScreenshot.png > > What does this mean? > > JB > -- View this message in context: http://www.nabble.com/-29-invalid-object.-ValueBox.Warning.Timer.410-tp18551527p18551996.html Sent from the gambas-user mailing list archive at Nabble.com. From rolf.frogs at ...221... Sun Jul 20 10:27:12 2008 From: rolf.frogs at ...221... (Rolf Schmidt) Date: Sun, 20 Jul 2008 10:27:12 +0200 Subject: [Gambas-user] Postgresql date question In-Reply-To: <200807180751.59260.rterry@...1822...> References: <200807180751.59260.rterry@...1822...> Message-ID: <200807201027.16486.rolf.frogs@...221...> Hi Richard > Hi to postgres users of gambas. > > I'm passing some information to postges, which gets the data from date type > > eg date1 as date > data2 as date > > (N the postgres database the default on the date field is null) > > my problem is that postgres baulks when I"ve not put a date into one of the > gambas date variables with the message: > > "invalid syntax for type date '00:00:00'" > > my sql is far more complex but reduced to the date part reads something > like this > > insert into mytable (date1, date2) values > > ('01/01/2008','00:00:00') > > I wondered if anyone could volunteer a solution You can use an insert trigger, which checks, if date to be insertet is invalid and set a wanted default i.e. 1.1.1970 or what ever you like. So you will get always a valid date or you even can insert NULL if you insist on an empty date. HTH Rolf -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part. URL: From gambas at ...1... Sun Jul 20 10:29:06 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 20 Jul 2008 10:29:06 +0200 Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 In-Reply-To: <18551527.post@...1379...> References: <18551527.post@...1379...> Message-ID: <200807201029.06597.gambas@...1...> On dimanche 20 juillet 2008, jbskaggs wrote: > Help! My program was running fine then suddenly and unexpectedly it started > this: It does it at seemingly random times. The only difference I have > done was to switch from GTK to QT for printing purposes. > > http://www.nabble.com/file/p18551527/bugScreenshot.png > > What does this mean? > > JB This is a bug I just have fixed. You will get the fix in the 2.8 version. You should have it with GTK+ too, that's strange... Regards, -- Benoit Minisini From gambas at ...1... Sun Jul 20 10:29:54 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 20 Jul 2008 10:29:54 +0200 Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 In-Reply-To: <18551626.post@...1379...> References: <18551527.post@...1379...> <18551626.post@...1379...> Message-ID: <200807201029.54585.gambas@...1...> On dimanche 20 juillet 2008, jbskaggs wrote: > Okay it has caused my computer to reboot. I guess not. You are not using Windows. :-) -- Benoit Minisini From epileg at ...626... Sun Jul 20 13:14:43 2008 From: epileg at ...626... (=?ISO-8859-1?Q?Ep=EDleg?=) Date: Sun, 20 Jul 2008 13:14:43 +0200 Subject: [Gambas-user] Feature Request In-Reply-To: <200807171235.06377.gambas@...1...> References: <976ad9050807140651t203644a9q910240759600bb68@...627...> <200807171235.06377.gambas@...1...> Message-ID: <48831E23.2010006@...626...> En/na Benoit Minisini ha escrit: > On lundi 14 juillet 2008, Arief Bayu Purwanto wrote: >> Dear all, >> >> I have a small feature request for gambas 3 development. Benoit, Can you >> add an information about current revision installed on About page on gambas >> IDE. Something similar to geany's about page. >> I attach it for reference. > > Done in revision 1455/1456. > > Regards, > Hello again, There is not shown the svn revision on About and Welcome dialogs in gambas3 IDE (r1477) on my Ubuntu 8.04, but if I open the gambas3 IDE source and run/compile it, the revision is shown! I do '$ ./reconf-all ; ./configure -C ; make' to compile the trunk. Regards, Ep?leg. P.D. Attaches four captures. two from the original IDE (*_1.png) and the others two captures from the gambas3 IDE executed source (*_2.png). -------------- next part -------------- A non-text attachment was scrubbed... Name: About Gambas..._1.png Type: image/png Size: 48990 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: About Gambas..._2.png Type: image/png Size: 51518 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Welcome to Gambas 3_1.png Type: image/png Size: 40405 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Welcome to Gambas 3_2.png Type: image/png Size: 41729 bytes Desc: not available URL: From jbskaggs at ...1871... Sun Jul 20 22:13:30 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Sun, 20 Jul 2008 13:13:30 -0700 (PDT) Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 In-Reply-To: <200807201029.06597.gambas@...1...> References: <18551527.post@...1379...> <200807201029.06597.gambas@...1...> Message-ID: <18558176.post@...1379...> So the error was not caused because I just switched my component library without changing the actual controls on the form? For example I drew a text area in gb.gtk then switched to gb.qt but did not recreate this textarea control I just left the textarea I created in GTK. Is that what caused the crash? Becuase I don't get it in GTK. Where can I find more about this bug? JB Benoit Minisini wrote: > > On dimanche 20 juillet 2008, jbskaggs wrote: >> Help! My program was running fine then suddenly and unexpectedly it >> started >> this: It does it at seemingly random times. The only difference I have >> done was to switch from GTK to QT for printing purposes. >> >> http://www.nabble.com/file/p18551527/bugScreenshot.png >> >> What does this mean? >> >> JB > > This is a bug I just have fixed. You will get the fix in the 2.8 version. > > You should have it with GTK+ too, that's strange... > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the > world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > -- View this message in context: http://www.nabble.com/-29-invalid-object.-ValueBox.Warning.Timer.410-tp18551527p18558176.html Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Sun Jul 20 22:18:07 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 20 Jul 2008 22:18:07 +0200 Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 In-Reply-To: <18558176.post@...1379...> References: <18551527.post@...1379...> <200807201029.06597.gambas@...1...> <18558176.post@...1379...> Message-ID: <200807202218.07270.gambas@...1...> On dimanche 20 juillet 2008, jbskaggs wrote: > So the error was not caused because I just switched my component library > without changing the actual controls on the form? > > For example I drew a text area in gb.gtk then switched to gb.qt but did > not recreate this textarea control I just left the textarea I created in > GTK. Is that what caused the crash? Becuase I don't get it in GTK. > You can switch between gb.qt and gb.gtk without having to change anything in your project, provided that you don't use the gb.xxx.ext components. Otherwise, if you find a different behaviour between gb.qt and gb.gtk, then this is most of the time a bug. You didn't get a crash with gb.gtk because I think that the LostFocus event is not raised the same way in gb.qt and gb.gtk. This can be called a bug. > Where can I find more about this bug? > What do you want to know? The bug is fixed in revision #1473. Regards, -- Benoit Minisini From jbskaggs at ...1871... Sun Jul 20 22:48:04 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Sun, 20 Jul 2008 13:48:04 -0700 (PDT) Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 In-Reply-To: <200807202218.07270.gambas@...1...> References: <18551527.post@...1379...> <200807201029.06597.gambas@...1...> <18558176.post@...1379...> <200807202218.07270.gambas@...1...> Message-ID: <18558578.post@...1379...> Okay so in my case the bug is called by the gb.qt.ext printer component? That is the only .ext component I have. How long before 2.8 comes out? I am wondering if I should find a work around for the printer until the 2.8 comes out. Unfortunately I released this program for beta. JB Benoit Minisini wrote: > > On dimanche 20 juillet 2008, jbskaggs wrote: >> So the error was not caused because I just switched my component library >> without changing the actual controls on the form? >> >> For example I drew a text area in gb.gtk then switched to gb.qt but did >> not recreate this textarea control I just left the textarea I created in >> GTK. Is that what caused the crash? Becuase I don't get it in GTK. >> > > You can switch between gb.qt and gb.gtk without having to change anything > in > your project, provided that you don't use the gb.xxx.ext components. > > Otherwise, if you find a different behaviour between gb.qt and gb.gtk, > then > this is most of the time a bug. > > You didn't get a crash with gb.gtk because I think that the LostFocus > event is > not raised the same way in gb.qt and gb.gtk. This can be called a bug. > >> Where can I find more about this bug? >> > > What do you want to know? The bug is fixed in revision #1473. > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the > world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > -- View this message in context: http://www.nabble.com/-29-invalid-object.-ValueBox.Warning.Timer.410-tp18551527p18558578.html Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Sun Jul 20 22:51:09 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 20 Jul 2008 22:51:09 +0200 Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 In-Reply-To: <18558578.post@...1379...> References: <18551527.post@...1379...> <200807202218.07270.gambas@...1...> <18558578.post@...1379...> Message-ID: <200807202251.09875.gambas@...1...> On dimanche 20 juillet 2008, jbskaggs wrote: > Okay so in my case the bug is called by the gb.qt.ext printer component? > That is the only .ext component I have. > > How long before 2.8 comes out? > > I am wondering if I should find a work around for the printer until the 2.8 > comes out. > > Unfortunately I released this program for beta. > > JB > A workaround is to be sure that the focus is not on a ValueBox when its window is closed. Regards, -- Benoit Minisini From gambas at ...1... Sun Jul 20 22:52:44 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 20 Jul 2008 22:52:44 +0200 Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 In-Reply-To: <200807202251.09875.gambas@...1...> References: <18551527.post@...1379...> <18558578.post@...1379...> <200807202251.09875.gambas@...1...> Message-ID: <200807202252.44471.gambas@...1...> On dimanche 20 juillet 2008, Benoit Minisini wrote: > On dimanche 20 juillet 2008, jbskaggs wrote: > > Okay so in my case the bug is called by the gb.qt.ext printer component? > > That is the only .ext component I have. > > > > How long before 2.8 comes out? > > > > I am wondering if I should find a work around for the printer until the > > 2.8 comes out. > > > > Unfortunately I released this program for beta. > > > > JB > > A workaround is to be sure that the focus is not on a ValueBox when its > window is closed. > > Regards, More precisely, you must do something like that in the Form_Close event handler: AControlThatIsNotAValueBox.SetFocus WAIT ' Mandatory, to be sure that The ValueBox receives its GotFocus event before the form is closed. Tell me if it works. Regards, -- Benoit Minisini From rterry at ...1946... Mon Jul 21 02:23:00 2008 From: rterry at ...1946... (richard terry) Date: Mon, 21 Jul 2008 10:23:00 +1000 Subject: [Gambas-user] Postgresql date question In-Reply-To: <200807191830.22318.pinozollo@...626...> References: <200807180751.59260.rterry@...1822...> <200807191830.22318.pinozollo@...626...> Message-ID: <200807211023.00745.rterry@...1946...> On Sun, 20 Jul 2008 08:30:20 am Pino Zollo wrote: > Alle 17:51, gioved? 17 luglio 2008, richard terry ha scritto: > > insert into mytable (date1, date2) values > > > > ('01/01/2008','00:00:00') > > What about > insert into mytable (date1, date2) values ('01/01/2008', NULL) Yes, of course, that works in the pgadmin window but not in gambas as I couldnt find a way to get the NULL in easily, maybe you can explain how you do it. However I have found that this works, but it is not very elegant when it comes to a table with 6 -7 date fields (I'm doing a work-cover form which has a multitutde of different dates eg fit_preinjury_from, unfit_from, unfit_to, suitableduties_from, suitableduties_to, fit_premanantly modified duties_from, review_date, review_treatmentdate (NSW govt Workcover requirements!!!!) any one of which could be null. Anway, comments welcome. Public Sub Temp() '--------------------------------------------------------------------------- 'temporary routine to play with dates ' gvar is a global variable in my program as a connection ' ModDBConnect is where I keep db access routines '--------------------------------------------------------------------------- Dim date1 As Date Dim date2 As Date Dim sql as string date2 = Val("10/02/2008") 'put real date here sql = "insert into clin_workcover.temp (date1, date2) VALUES(" If IsNull(date1) Then sql = sql & gvar.$hConn.Subst("&1", Null) End If sql = sql & ",'" & date2 & "')" Print sql $Result = modDBConnect.exec_query(sql) End > > Maybe you want the type timestamp ...which is the set of a date and a time. > > Good luck > Pino > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge Build the coolest Linux based applications with Moblin SDK & win > great prizes Grand prize is a trip for two to an Open Source event anywhere > in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From jbskaggs at ...1871... Mon Jul 21 07:03:27 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Sun, 20 Jul 2008 22:03:27 -0700 (PDT) Subject: [Gambas-user] [29]invalid object. ValueBox.Warning.Timer.410 In-Reply-To: <200807202252.44471.gambas@...1...> References: <18551527.post@...1379...> <200807201029.06597.gambas@...1...> <18558176.post@...1379...> <200807202218.07270.gambas@...1...> <18558578.post@...1379...> <200807202251.09875.gambas@...1...> <200807202252.44471.gambas@...1...> Message-ID: <18562240.post@...1379...> Okay the work around fixes the warning.timer message. But sporadically when I click on a Textarea it reboots my computer. (more specifically Ubuntu) This doesn't happen with any other software and never started until this error message started. Anyideas? JB Benoit Minisini wrote: > > On dimanche 20 juillet 2008, Benoit Minisini wrote: >> On dimanche 20 juillet 2008, jbskaggs wrote: >> > Okay so in my case the bug is called by the gb.qt.ext printer >> component? >> > That is the only .ext component I have. >> > >> > How long before 2.8 comes out? >> > >> > I am wondering if I should find a work around for the printer until the >> > 2.8 comes out. >> > >> > Unfortunately I released this program for beta. >> > >> > JB >> >> A workaround is to be sure that the focus is not on a ValueBox when its >> window is closed. >> >> Regards, > > More precisely, you must do something like that in the Form_Close event > handler: > > AControlThatIsNotAValueBox.SetFocus > WAIT ' Mandatory, to be sure that The ValueBox receives its GotFocus event > before the form is closed. > > Tell me if it works. > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the > world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > -- View this message in context: http://www.nabble.com/-29-invalid-object.-ValueBox.Warning.Timer.410-tp18551527p18562240.html Sent from the gambas-user mailing list archive at Nabble.com. From john36 at ...1947... Mon Jul 21 23:53:16 2008 From: john36 at ...1947... (John K) Date: Tue, 22 Jul 2008 07:53:16 +1000 Subject: [Gambas-user] Using DataSource et al Message-ID: <4885054C.8000505@...1947...> Hi, I'm new to Gambas so maybe I'm trying to run before I can walk. I'm in the process of writing an application which uses sqlite as its database. I've managed to create the database and add data to its tables but now I want to read out the data using datasource, datacontrol & databrowser. I've scanned the Forum without any luck and have bought "A Beginners Guide to Gambas" but this doesn't cover this subject in any detail. Does anyone know where I can find a simple example, (maybe using Name, Registration Number & Date of Birth) which demonstrates the use of these tools or can help me in any other way? Thanks ........ From gambas at ...1... Tue Jul 22 01:14:26 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 22 Jul 2008 01:14:26 +0200 Subject: [Gambas-user] Using DataSource et al In-Reply-To: <4885054C.8000505@...1947...> References: <4885054C.8000505@...1947...> Message-ID: <200807220114.26375.gambas@...1...> On lundi 21 juillet 2008, John K wrote: > Hi, > I'm new to Gambas so maybe I'm trying to run before I can walk. I'm in > the process of writing an application which uses sqlite as its database. > I've managed to create the database and add data to its tables but now > I want to read out the data using datasource, datacontrol & databrowser. > I've scanned the Forum without any luck and have bought "A Beginners > Guide to Gambas" but this doesn't cover this subject in any detail. > Does anyone know where I can find a simple example, (maybe using Name, > Registration Number & Date of Birth) which demonstrates the use of these > tools or can help me in any other way? > Thanks ........ > The Database example has a form that uses these controls. Regards, -- Benoit Minisini From rterry at ...1946... Tue Jul 22 01:34:48 2008 From: rterry at ...1946... (richard terry) Date: Tue, 22 Jul 2008 09:34:48 +1000 Subject: [Gambas-user] Using DataSource et al In-Reply-To: <4885054C.8000505@...1947...> References: <4885054C.8000505@...1947...> Message-ID: <200807220934.48224.rterry@...1946...> On Tue, 22 Jul 2008 07:53:16 am John K wrote: > Hi, > I'm new to Gambas so maybe I'm trying to run before I can walk. I'm in > the process of writing an application which uses sqlite as its database. > I've managed to create the database and add data to its tables but now > I want to read out the data using datasource, datacontrol & databrowser. > I've scanned the Forum without any luck and have bought "A Beginners > Guide to Gambas" but this doesn't cover this subject in any detail. > Does anyone know where I can find a simple example, (maybe using Name, > Registration Number & Date of Birth) which demonstrates the use of these > tools or can help me in any other way? > Thanks ........ You can also not use the data controls and do the whole thing manually, which I do. (last env was python, so I got used to doing it) Maybe Benoit can criticise this if wrong, but what I do is: Set up a global connection variable as I have dozens of forms accessing the database. Do the connection to the database (like in the data example in gambas Pass the queries to the database This example is called from a textbox on a form which wants to get a list of person's occupations, so I pass the textbox and a listview to the routine. The occupations are pulled from postgres and populate the listview. You'll wonder why I make the listview's tag a textbox - its because my forms have dozens of textboxes, all using the listview, when the user selects from a popped up list, I use the tag to set other information. I think the data controls built into gambas would do all this for ?you, but manually: Public Function occupation_get(tb As textbox, lv As listview) ? ? ?'----------------------------------------------------------------- ? ?'Retrieves a list of occupations from common.lu_occupations, load ? ?'them into a listbox whose key is pk_occupation ? ?'returns loaded listbox ? ?'----------------------------------------------------------------- ? ?sql = " SELECT * from common.lu_occupations WHERE occupation ILIKE '" ? ?sql = sql & Trim(tb.text) & "%' LIMIT 20" ? ?$Result = modDBConnect.exec_query(sql) ? ?lv.clear ? ?If $Result.count Then ? ? ? lv.tag = tb ? ? ? For Each $Result ? ? ? ? ? ? ?lv.Add($Result!pk, $Result!occupation) ? ? ? Next ? ? ? lv.Raise ? ? ? lv.Visible = True ? ?Else ? ? ? lv.Visible = False ? ?End If ? End Not sure if this helps, is confusing, but let me know Richard > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge Build the coolest Linux based applications with Moblin SDK & win > great prizes Grand prize is a trip for two to an Open Source event anywhere > in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From steven at ...1652... Tue Jul 22 10:38:18 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 22 Jul 2008 10:38:18 +0200 Subject: [Gambas-user] Again signal 11 Message-ID: <1216715898.3595.34.camel@...1936...> Hi, I never came around to solving the sig 11 problem. Since I have the same on an example project, I thought I run valgrind in it, maybe this helps: valgrind --tool=memcheck --num-callers=50 gbx2 -p ==2353== Memcheck, a memory error detector. ==2353== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. ==2353== Using LibVEX rev 1804, a library for dynamic binary translation. ==2353== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==2353== Using valgrind-3.3.0, a dynamic binary instrumentation framework. ==2353== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. ==2353== For more details, rerun with: -v ==2353== ==2353== Warning: set address range perms: large range 134184960 (defined) ==2353== Invalid read of size 4 ==2353== at 0x4016247: (within /lib/ld-2.8.so) ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) ==2353== by 0x400DE25: (within /lib/ld-2.8.so) ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x7A46DFF: _mesa_initialize_context (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x7A472FC: _mesa_create_context (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x79B5B12: radeonInitContext (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79BC951: r300CreateContext (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4039CEF: (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) ==2353== by 0x4039D8D: (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x806206B: main (gbx.c:357) ==2353== Address 0x76821cc is 44 bytes inside a block of size 46 alloc'd ==2353== at 0x4024D5E: malloc (in /usr/lib/valgrind/x86-linux/vgpreload_memcheck.so) ==2353== by 0x400DF47: (within /lib/ld-2.8.so) ==2353== by 0x4008B1D: (within /lib/ld-2.8.so) ==2353== by 0x4012026: (within /lib/ld-2.8.so) ==2353== by 0x400DE25: (within /lib/ld-2.8.so) ==2353== by 0x4011A2B: (within /lib/ld-2.8.so) ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) ==2353== by 0x400DE25: (within /lib/ld-2.8.so) ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x7A46DFF: _mesa_initialize_context (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x7A472FC: _mesa_create_context (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x79B5B12: radeonInitContext (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79BC951: r300CreateContext (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4039CEF: (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) ==2353== by 0x4039D8D: (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x806206B: main (gbx.c:357) ==2353== ==2353== Conditional jump or move depends on uninitialised value(s) ==2353== at 0x4016251: (within /lib/ld-2.8.so) ==2353== by 0x4011BEE: (within /lib/ld-2.8.so) ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) ==2353== by 0x400DE25: (within /lib/ld-2.8.so) ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x7A46DFF: _mesa_initialize_context (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x7A472FC: _mesa_create_context (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x79B5B12: radeonInitContext (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79BC951: r300CreateContext (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4039CEF: (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) ==2353== by 0x4039D8D: (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x806206B: main (gbx.c:357) ==2353== ==2353== Conditional jump or move depends on uninitialised value(s) ==2353== at 0x401625C: (within /lib/ld-2.8.so) ==2353== by 0x4011BEE: (within /lib/ld-2.8.so) ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) ==2353== by 0x400DE25: (within /lib/ld-2.8.so) ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x7A46DFF: _mesa_initialize_context (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x7A472FC: _mesa_create_context (in /usr/lib/libmesa_private.so.1.0) ==2353== by 0x79B5B12: radeonInitContext (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79BC951: r300CreateContext (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4039CEF: (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) ==2353== by 0x4039D8D: (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x806206B: main (gbx.c:357) ==2353== ==2353== Conditional jump or move depends on uninitialised value(s) ==2353== at 0x79B60D2: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x79B65BF: radeonCopyBuffer (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79B5A5F: radeonSwapBuffers (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79AFE75: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x52D7900: glXSwapBuffers (in /usr/lib/libGL.so.1.2) ==2353== by 0x4D0AE1E: QGLContext::swapBuffers() const (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D07F03: QGLWidget::swapBuffers() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D08553: QGLWidget::glDraw() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D07FA4: QGLWidget::paintEvent(QPaintEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4AD5472: QWidget::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A3637C: QApplication::notify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x49C1418: QETWidget::translatePaintEvent(_XEvent const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49CB509: QApplication::x11ProcessEvent(_XEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A4DBA5: QEventLoop::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A35A5E: QApplication::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x8062080: main (gbx.c:360) ==2353== ==2353== Syscall param ioctl(generic) points to uninitialised byte(s) ==2353== at 0x40007D2: (within /lib/ld-2.8.so) ==2353== by 0x79AFB0C: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x79AFD40: driWaitForVBlank (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79B6611: radeonCopyBuffer (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79B5A5F: radeonSwapBuffers (in /usr/lib/dri/r300_dri.so) ==2353== by 0x79AFE75: (within /usr/lib/dri/r300_dri.so) ==2353== by 0x52D7900: glXSwapBuffers (in /usr/lib/libGL.so.1.2) ==2353== by 0x4D0AE1E: QGLContext::swapBuffers() const (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D07F03: QGLWidget::swapBuffers() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D08553: QGLWidget::glDraw() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4D07FA4: QGLWidget::paintEvent(QPaintEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4AD5472: QWidget::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A3637C: QApplication::notify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x49C1418: QETWidget::translatePaintEvent(_XEvent const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49CB509: QApplication::x11ProcessEvent(_XEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A4DBA5: QEventLoop::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A35A5E: QApplication::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x8062080: main (gbx.c:360) ==2353== Address 0xbeef66c4 is on thread 1's stack ==2353== Warning: noted but unhandled ioctl 0x6447 with no size/direction hints ==2353== This could cause spurious value errors to appear. ==2353== See README_MISSING_SYSCALL_OR_IOCTL for guidance on writing a proper wrapper. ==2353== Warning: noted but unhandled ioctl 0x6447 with no size/direction hints ==2353== This could cause spurious value errors to appear. ==2353== See README_MISSING_SYSCALL_OR_IOCTL for guidance on writing a proper wrapper. ==2840== ==2840== ERROR SUMMARY: 10 errors from 5 contexts (suppressed: 177 from 4) ==2840== malloc/free: in use at exit: 12,988,194 bytes in 11,647 blocks. ==2840== malloc/free: 64,060 allocs, 52,413 frees, 20,796,745 bytes allocated. ==2840== For counts of detected errors, rerun with: -v ==2840== searching for pointers to 11,647 not-freed blocks. ==2840== checked 6,700,252 bytes. ==2840== ==2840== LEAK SUMMARY: ==2840== definitely lost: 4,749 bytes in 129 blocks. ==2840== possibly lost: 5,776 bytes in 105 blocks. ==2840== still reachable: 12,977,669 bytes in 11,413 blocks. ==2840== suppressed: 0 bytes in 0 blocks. ==2840== Rerun with --leak-check=full to see details of leaked memory. ==2353== ==2353== Conditional jump or move depends on uninitialised value(s) ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) ==2353== by 0x8068C9B: stop_process (gbx_c_process.c:210) ==2353== by 0x8068D41: callback_child (gbx_c_process.c:540) ==2353== by 0x8068D88: CPROCESS_wait_for (gbx_c_process.c:672) ==2353== by 0x805A9EA: SUBR_exec (gbx_subr_misc.c:168) ==2353== by 0x8050960: EXEC_loop (gbx_exec_loop.c:476) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x805DD3F: GB_Call (gbx_api.c:750) ==2353== by 0x465054C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x465060B: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==2353== by 0x804FAE6: EXEC_push_array (gbx_exec_push.c:455) ==2353== by 0x8050A7C: EXEC_loop (gbx_exec_loop.c:532) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x804F1F0: EXEC_spec (gbx_exec.c:1231) ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4E057EB: QButton::clicked() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4AD5336: QWidget::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== ==2353== Conditional jump or move depends on uninitialised value(s) ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) ==2353== by 0x8062C10: OBJECT_attach (gbx_object.c:167) ==2353== by 0x806510B: object_attach (gbx_c_class.c:657) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x804F1F0: EXEC_spec (gbx_exec.c:1231) ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4E057EB: QButton::clicked() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4AD5336: QWidget::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49CC8BF: QETWidget::translateMouseEvent(_XEvent const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49CBB5C: QApplication::x11ProcessEvent(_XEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A4DBA5: QEventLoop::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A35A5E: QApplication::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x8062080: main (gbx.c:360) ==2353== Warning: noted but unhandled ioctl 0x6447 with no size/direction hints ==2353== This could cause spurious value errors to appear. ==2353== See README_MISSING_SYSCALL_OR_IOCTL for guidance on writing a proper wrapper. ==2353== ==2353== Conditional jump or move depends on uninitialised value(s) ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) ==2353== by 0x4635145: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4E057EB: QButton::clicked() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4AD5336: QWidget::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49CC8BF: QETWidget::translateMouseEvent(_XEvent const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49CBB5C: QApplication::x11ProcessEvent(_XEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A4DBA5: QEventLoop::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A35A5E: QApplication::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x8062080: main (gbx.c:360) ==2353== ==2353== Conditional jump or move depends on uninitialised value(s) ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) ==2353== by 0x4635145: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4E057EB: QButton::clicked() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4AD5336: QWidget::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49CC8BF: QETWidget::translateMouseEvent(_XEvent const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49CBB5C: QApplication::x11ProcessEvent(_XEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A4DBA5: QEventLoop::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A35A5E: QApplication::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x8062080: main (gbx.c:360) ==2353== ==2353== Conditional jump or move depends on uninitialised value(s) ==2353== at 0x8062AFF: OBJECT_free (gbx_object.c:140) ==2353== by 0x805226D: CLASS_free (gbx_class.c:608) ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4DFC9E8: QObject::destroyed() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9DDA1: QObject::~QObject() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4AD5146: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B61B02: QLabel::~QLabel() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4BBA40C: QScrollView::~QScrollView() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== ==2353== Use of uninitialised value of size 4 ==2353== at 0x8062B03: OBJECT_free (gbx_object.c:140) ==2353== by 0x805226D: CLASS_free (gbx_class.c:608) ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4DFC9E8: QObject::destroyed() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9DDA1: QObject::~QObject() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4AD5146: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B61B02: QLabel::~QLabel() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4BBA40C: QScrollView::~QScrollView() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== ==2353== Invalid read of size 1 ==2353== at 0x805226D: CLASS_free (gbx_class.c:608) ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4DFC9E8: QObject::destroyed() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9DDA1: QObject::~QObject() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4AD5146: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B61B02: QLabel::~QLabel() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4BBA40C: QScrollView::~QScrollView() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==2353== Address 0x6cda2864 is not stack'd, malloc'd or (recently) free'd ==2353== ==2353== Process terminating with default action of signal 11 (SIGSEGV) ==2353== Access not within mapped region at address 0x6CDA2864 ==2353== at 0x805226D: CLASS_free (gbx_class.c:608) ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4DFC9E8: QObject::destroyed() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4A9DDA1: QObject::~QObject() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4AD5146: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B61B02: QLabel::~QLabel() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4BBA40C: QScrollView::~QScrollView() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==2353== ==2353== ERROR SUMMARY: 20 errors from 12 contexts (suppressed: 180 from 4) ==2353== malloc/free: in use at exit: 13,276,614 bytes in 17,744 blocks. ==2353== malloc/free: 106,756 allocs, 89,012 frees, 39,667,968 bytes allocated. ==2353== For counts of detected errors, rerun with: -v ==2353== searching for pointers to 17,744 not-freed blocks. ==2353== checked 32,119,236 bytes. ==2353== ==2353== LEAK SUMMARY: ==2353== definitely lost: 8,949 bytes in 264 blocks. ==2353== possibly lost: 14,649 bytes in 338 blocks. ==2353== still reachable: 13,253,016 bytes in 17,142 blocks. ==2353== suppressed: 0 bytes in 0 blocks. ==2353== Rerun with --leak-check=full to see details of leaked memory. Processus arr?t? steven at ...1948...:~/gambas2-2.7.0/examples/examples/OpenGL/PDFPresentation> Allso : I have an image in a form, each time I write a new one in it (if it's smaller) you can still see the previous image behind it. Regards, Steven From gambas at ...1... Tue Jul 22 12:48:31 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 22 Jul 2008 12:48:31 +0200 Subject: [Gambas-user] Again signal 11 In-Reply-To: <1216715898.3595.34.camel@...1936...> References: <1216715898.3595.34.camel@...1936...> Message-ID: <200807221248.31605.gambas@...1...> On mardi 22 juillet 2008, Steven Lobbezoo wrote: > Hi, > > I never came around to solving the sig 11 problem. > Since I have the same on an example project, I thought I run valgrind in > it, maybe this helps: > > valgrind --tool=memcheck --num-callers=50 gbx2 -p > ==2353== Memcheck, a memory error detector. > ==2353== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. > ==2353== Using LibVEX rev 1804, a library for dynamic binary > translation. > ==2353== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > ==2353== Using valgrind-3.3.0, a dynamic binary instrumentation > framework. > ==2353== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. > ==2353== For more details, rerun with: -v > ==2353== > ==2353== Warning: set address range perms: large range 134184960 > (defined) > ==2353== Invalid read of size 4 > ==2353== at 0x4016247: (within /lib/ld-2.8.so) > ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) > ==2353== by 0x400DE25: (within /lib/ld-2.8.so) > ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) > ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) > ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x7A46DFF: _mesa_initialize_context > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x7A472FC: _mesa_create_context > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x79B5B12: radeonInitContext > (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79BC951: r300CreateContext > (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) > ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) > ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext > const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, > QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4039CEF: > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > ==2353== by 0x4039D8D: > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x806206B: main (gbx.c:357) > ==2353== Address 0x76821cc is 44 bytes inside a block of size 46 > alloc'd > ==2353== at 0x4024D5E: malloc > (in /usr/lib/valgrind/x86-linux/vgpreload_memcheck.so) > ==2353== by 0x400DF47: (within /lib/ld-2.8.so) > ==2353== by 0x4008B1D: (within /lib/ld-2.8.so) > ==2353== by 0x4012026: (within /lib/ld-2.8.so) > ==2353== by 0x400DE25: (within /lib/ld-2.8.so) > ==2353== by 0x4011A2B: (within /lib/ld-2.8.so) > ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) > ==2353== by 0x400DE25: (within /lib/ld-2.8.so) > ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) > ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) > ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x7A46DFF: _mesa_initialize_context > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x7A472FC: _mesa_create_context > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x79B5B12: radeonInitContext > (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79BC951: r300CreateContext > (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) > ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) > ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext > const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, > QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4039CEF: > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > ==2353== by 0x4039D8D: > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x806206B: main (gbx.c:357) > ==2353== > ==2353== Conditional jump or move depends on uninitialised value(s) > ==2353== at 0x4016251: (within /lib/ld-2.8.so) > ==2353== by 0x4011BEE: (within /lib/ld-2.8.so) > ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) > ==2353== by 0x400DE25: (within /lib/ld-2.8.so) > ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) > ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) > ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x7A46DFF: _mesa_initialize_context > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x7A472FC: _mesa_create_context > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x79B5B12: radeonInitContext > (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79BC951: r300CreateContext > (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) > ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) > ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext > const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, > QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4039CEF: > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > ==2353== by 0x4039D8D: > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x806206B: main (gbx.c:357) > ==2353== > ==2353== Conditional jump or move depends on uninitialised value(s) > ==2353== at 0x401625C: (within /lib/ld-2.8.so) > ==2353== by 0x4011BEE: (within /lib/ld-2.8.so) > ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) > ==2353== by 0x400DE25: (within /lib/ld-2.8.so) > ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) > ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) > ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x7A46DFF: _mesa_initialize_context > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x7A472FC: _mesa_create_context > (in /usr/lib/libmesa_private.so.1.0) > ==2353== by 0x79B5B12: radeonInitContext > (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79BC951: r300CreateContext > (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) > ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) > ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext > const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, > QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4039CEF: > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > ==2353== by 0x4039D8D: > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x806206B: main (gbx.c:357) > ==2353== > ==2353== Conditional jump or move depends on uninitialised value(s) > ==2353== at 0x79B60D2: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B65BF: radeonCopyBuffer (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B5A5F: radeonSwapBuffers > (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79AFE75: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x52D7900: glXSwapBuffers (in /usr/lib/libGL.so.1.2) > ==2353== by 0x4D0AE1E: QGLContext::swapBuffers() const > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D07F03: QGLWidget::swapBuffers() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D08553: QGLWidget::glDraw() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D07FA4: QGLWidget::paintEvent(QPaintEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4AD5472: QWidget::event(QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A3637C: QApplication::notify(QObject*, QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x49C1418: QETWidget::translatePaintEvent(_XEvent const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49CB509: QApplication::x11ProcessEvent(_XEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A4DBA5: QEventLoop::exec() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A35A5E: QApplication::exec() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x8062080: main (gbx.c:360) > ==2353== > ==2353== Syscall param ioctl(generic) points to uninitialised byte(s) > ==2353== at 0x40007D2: (within /lib/ld-2.8.so) > ==2353== by 0x79AFB0C: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x79AFD40: driWaitForVBlank (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B6611: radeonCopyBuffer (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79B5A5F: radeonSwapBuffers > (in /usr/lib/dri/r300_dri.so) > ==2353== by 0x79AFE75: (within /usr/lib/dri/r300_dri.so) > ==2353== by 0x52D7900: glXSwapBuffers (in /usr/lib/libGL.so.1.2) > ==2353== by 0x4D0AE1E: QGLContext::swapBuffers() const > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D07F03: QGLWidget::swapBuffers() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D08553: QGLWidget::glDraw() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4D07FA4: QGLWidget::paintEvent(QPaintEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4AD5472: QWidget::event(QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A3637C: QApplication::notify(QObject*, QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x49C1418: QETWidget::translatePaintEvent(_XEvent const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49CB509: QApplication::x11ProcessEvent(_XEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A4DBA5: QEventLoop::exec() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A35A5E: QApplication::exec() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x8062080: main (gbx.c:360) > ==2353== Address 0xbeef66c4 is on thread 1's stack > ==2353== Warning: noted but unhandled ioctl 0x6447 with no > size/direction hints > ==2353== This could cause spurious value errors to appear. > ==2353== See README_MISSING_SYSCALL_OR_IOCTL for guidance on writing > a proper wrapper. > ==2353== Warning: noted but unhandled ioctl 0x6447 with no > size/direction hints > ==2353== This could cause spurious value errors to appear. > ==2353== See README_MISSING_SYSCALL_OR_IOCTL for guidance on writing > a proper wrapper. > ==2840== > ==2840== ERROR SUMMARY: 10 errors from 5 contexts (suppressed: 177 from > 4) > ==2840== malloc/free: in use at exit: 12,988,194 bytes in 11,647 blocks. > ==2840== malloc/free: 64,060 allocs, 52,413 frees, 20,796,745 bytes > allocated. > ==2840== For counts of detected errors, rerun with: -v > ==2840== searching for pointers to 11,647 not-freed blocks. > ==2840== checked 6,700,252 bytes. > ==2840== > ==2840== LEAK SUMMARY: > ==2840== definitely lost: 4,749 bytes in 129 blocks. > ==2840== possibly lost: 5,776 bytes in 105 blocks. > ==2840== still reachable: 12,977,669 bytes in 11,413 blocks. > ==2840== suppressed: 0 bytes in 0 blocks. > ==2840== Rerun with --leak-check=full to see details of leaked memory. > ==2353== > ==2353== Conditional jump or move depends on uninitialised value(s) > ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) > ==2353== by 0x8068C9B: stop_process (gbx_c_process.c:210) > ==2353== by 0x8068D41: callback_child (gbx_c_process.c:540) > ==2353== by 0x8068D88: CPROCESS_wait_for (gbx_c_process.c:672) > ==2353== by 0x805A9EA: SUBR_exec (gbx_subr_misc.c:168) > ==2353== by 0x8050960: EXEC_loop (gbx_exec_loop.c:476) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x805DD3F: GB_Call (gbx_api.c:750) > ==2353== by 0x465054C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x465060B: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > ==2353== by 0x804FAE6: EXEC_push_array (gbx_exec_push.c:455) > ==2353== by 0x8050A7C: EXEC_loop (gbx_exec_loop.c:532) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x804F1F0: EXEC_spec (gbx_exec.c:1231) > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) > ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) > ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4E057EB: QButton::clicked() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4AD5336: QWidget::event(QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, > QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== > ==2353== Conditional jump or move depends on uninitialised value(s) > ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) > ==2353== by 0x8062C10: OBJECT_attach (gbx_object.c:167) > ==2353== by 0x806510B: object_attach (gbx_c_class.c:657) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x804F1F0: EXEC_spec (gbx_exec.c:1231) > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) > ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) > ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4E057EB: QButton::clicked() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4AD5336: QWidget::event(QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, > QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49CC8BF: QETWidget::translateMouseEvent(_XEvent const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49CBB5C: QApplication::x11ProcessEvent(_XEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A4DBA5: QEventLoop::exec() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A35A5E: QApplication::exec() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x8062080: main (gbx.c:360) > ==2353== Warning: noted but unhandled ioctl 0x6447 with no > size/direction hints > ==2353== This could cause spurious value errors to appear. > ==2353== See README_MISSING_SYSCALL_OR_IOCTL for guidance on writing > a proper wrapper. > ==2353== > ==2353== Conditional jump or move depends on uninitialised value(s) > ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) > ==2353== by 0x4635145: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) > ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) > ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4E057EB: QButton::clicked() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4AD5336: QWidget::event(QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, > QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49CC8BF: QETWidget::translateMouseEvent(_XEvent const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49CBB5C: QApplication::x11ProcessEvent(_XEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A4DBA5: QEventLoop::exec() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A35A5E: QApplication::exec() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x8062080: main (gbx.c:360) > ==2353== > ==2353== Conditional jump or move depends on uninitialised value(s) > ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) > ==2353== by 0x4635145: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) > ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) > ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4E057EB: QButton::clicked() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4AD5336: QWidget::event(QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, > QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49CC8BF: QETWidget::translateMouseEvent(_XEvent const*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49CBB5C: QApplication::x11ProcessEvent(_XEvent*) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A4DBA5: QEventLoop::exec() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A35A5E: QApplication::exec() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x8062080: main (gbx.c:360) > ==2353== > ==2353== Conditional jump or move depends on uninitialised value(s) > ==2353== at 0x8062AFF: OBJECT_free (gbx_object.c:140) > ==2353== by 0x805226D: CLASS_free (gbx_class.c:608) > ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4DFC9E8: QObject::destroyed() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9DDA1: QObject::~QObject() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4AD5146: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B61B02: QLabel::~QLabel() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4BBA40C: QScrollView::~QScrollView() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== > ==2353== Use of uninitialised value of size 4 > ==2353== at 0x8062B03: OBJECT_free (gbx_object.c:140) > ==2353== by 0x805226D: CLASS_free (gbx_class.c:608) > ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4DFC9E8: QObject::destroyed() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9DDA1: QObject::~QObject() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4AD5146: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B61B02: QLabel::~QLabel() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4BBA40C: QScrollView::~QScrollView() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== > ==2353== Invalid read of size 1 > ==2353== at 0x805226D: CLASS_free (gbx_class.c:608) > ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4DFC9E8: QObject::destroyed() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9DDA1: QObject::~QObject() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4AD5146: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B61B02: QLabel::~QLabel() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4BBA40C: QScrollView::~QScrollView() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) > ==2353== Address 0x6cda2864 is not stack'd, malloc'd or (recently) > free'd > ==2353== > ==2353== Process terminating with default action of signal 11 (SIGSEGV) > ==2353== Access not within mapped region at address 0x6CDA2864 > ==2353== at 0x805226D: CLASS_free (gbx_class.c:608) > ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4DFC9E8: QObject::destroyed() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4A9DDA1: QObject::~QObject() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4AD5146: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B61B02: QLabel::~QLabel() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4BBA40C: QScrollView::~QScrollView() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4AD50C6: QWidget::~QWidget() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) > ==2353== > ==2353== ERROR SUMMARY: 20 errors from 12 contexts (suppressed: 180 from > 4) > ==2353== malloc/free: in use at exit: 13,276,614 bytes in 17,744 blocks. > ==2353== malloc/free: 106,756 allocs, 89,012 frees, 39,667,968 bytes > allocated. > ==2353== For counts of detected errors, rerun with: -v > ==2353== searching for pointers to 17,744 not-freed blocks. > ==2353== checked 32,119,236 bytes. > ==2353== > ==2353== LEAK SUMMARY: > ==2353== definitely lost: 8,949 bytes in 264 blocks. > ==2353== possibly lost: 14,649 bytes in 338 blocks. > ==2353== still reachable: 13,253,016 bytes in 17,142 blocks. > ==2353== suppressed: 0 bytes in 0 blocks. > ==2353== Rerun with --leak-check=full to see details of leaked memory. > Processus arr?t? > steven at ...1948...:~/gambas2-2.7.0/examples/examples/OpenGL/PDFPresentatio >n> > > > Allso : I have an image in a form, each time I write a new one in it (if > it's smaller) you can still see the previous image behind it. > > Regards, > Steven > I have just committed a fix for a 64 bits Gambas bug that you see only if you compiled it with gcc 4.3. This is the case if you use the last OpenSuSE for example. Actually the problem seems to be in gcc 4.1, because he should have never created a correct program. Are you concerned? -- Benoit Minisini From steven at ...1652... Tue Jul 22 16:01:30 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 22 Jul 2008 16:01:30 +0200 Subject: [Gambas-user] Again signal 11 In-Reply-To: <200807221248.31605.gambas@...1...> References: <1216715898.3595.34.camel@...1936...> <200807221248.31605.gambas@...1...> Message-ID: <1216735290.3953.9.camel@...1936...> I don't know. I have gcc 4.3-39.1 (i586) installed on Suse 11.0 (latest) But I dont have a 64 bit environment. Steven Le mardi 22 juillet 2008 ? 12:48 +0200, Benoit Minisini a ?crit : > On mardi 22 juillet 2008, Steven Lobbezoo wrote: > > Hi, > > > > I never came around to solving the sig 11 problem. > > Since I have the same on an example project, I thought I run valgrind in > > it, maybe this helps: > > > > valgrind --tool=memcheck --num-callers=50 gbx2 -p > > ==2353== Memcheck, a memory error detector. > > ==2353== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. > > ==2353== Using LibVEX rev 1804, a library for dynamic binary > > translation. > > ==2353== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > > ==2353== Using valgrind-3.3.0, a dynamic binary instrumentation > > framework. > > ==2353== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. > > ==2353== For more details, rerun with: -v > > ==2353== > > ==2353== Warning: set address range perms: large range 134184960 > > (defined) > > ==2353== Invalid read of size 4 > > ==2353== at 0x4016247: (within /lib/ld-2.8.so) > > ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) > > ==2353== by 0x400DE25: (within /lib/ld-2.8.so) > > ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) > > ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) > > ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x7A46DFF: _mesa_initialize_context > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x7A472FC: _mesa_create_context > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x79B5B12: radeonInitContext > > (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79BC951: r300CreateContext > > (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) > > ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) > > ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext > > const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, > > QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4039CEF: > > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > > ==2353== by 0x4039D8D: > > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x806206B: main (gbx.c:357) > > ==2353== Address 0x76821cc is 44 bytes inside a block of size 46 > > alloc'd > > ==2353== at 0x4024D5E: malloc > > (in /usr/lib/valgrind/x86-linux/vgpreload_memcheck.so) > > ==2353== by 0x400DF47: (within /lib/ld-2.8.so) > > ==2353== by 0x4008B1D: (within /lib/ld-2.8.so) > > ==2353== by 0x4012026: (within /lib/ld-2.8.so) > > ==2353== by 0x400DE25: (within /lib/ld-2.8.so) > > ==2353== by 0x4011A2B: (within /lib/ld-2.8.so) > > ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) > > ==2353== by 0x400DE25: (within /lib/ld-2.8.so) > > ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) > > ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) > > ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x7A46DFF: _mesa_initialize_context > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x7A472FC: _mesa_create_context > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x79B5B12: radeonInitContext > > (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79BC951: r300CreateContext > > (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) > > ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) > > ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext > > const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, > > QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4039CEF: > > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > > ==2353== by 0x4039D8D: > > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x806206B: main (gbx.c:357) > > ==2353== > > ==2353== Conditional jump or move depends on uninitialised value(s) > > ==2353== at 0x4016251: (within /lib/ld-2.8.so) > > ==2353== by 0x4011BEE: (within /lib/ld-2.8.so) > > ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) > > ==2353== by 0x400DE25: (within /lib/ld-2.8.so) > > ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) > > ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) > > ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x7A46DFF: _mesa_initialize_context > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x7A472FC: _mesa_create_context > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x79B5B12: radeonInitContext > > (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79BC951: r300CreateContext > > (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) > > ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) > > ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext > > const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, > > QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4039CEF: > > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > > ==2353== by 0x4039D8D: > > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x806206B: main (gbx.c:357) > > ==2353== > > ==2353== Conditional jump or move depends on uninitialised value(s) > > ==2353== at 0x401625C: (within /lib/ld-2.8.so) > > ==2353== by 0x4011BEE: (within /lib/ld-2.8.so) > > ==2353== by 0x407B8BB: (within /lib/libdl-2.8.so) > > ==2353== by 0x400DE25: (within /lib/ld-2.8.so) > > ==2353== by 0x407B0DB: (within /lib/libdl-2.8.so) > > ==2353== by 0x407B93E: dlopen (in /lib/libdl-2.8.so) > > ==2353== by 0x7AB25AD: _mesa_init_texture_s3tc > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x7A46DFF: _mesa_initialize_context > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x7A472FC: _mesa_create_context > > (in /usr/lib/libmesa_private.so.1.0) > > ==2353== by 0x79B5B12: radeonInitContext > > (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79BC951: r300CreateContext > > (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B451D: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B0580: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x52D7EF3: (within /usr/lib/libGL.so.1.2) > > ==2353== by 0x52D835D: glXCreateContext (in /usr/lib/libGL.so.1.2) > > ==2353== by 0x4D0E19C: QGLContext::chooseContext(QGLContext const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D07E58: QGLContext::create(QGLContext const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D0BE93: QGLWidget::setContext(QGLContext*, QGLContext > > const*, bool) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D0DE26: QGLWidget::init(QGLContext*, QGLWidget const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D09534: QGLWidget::QGLWidget(QWidget*, char const*, > > QGLWidget const*, unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4039CEF: > > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > > ==2353== by 0x4039D8D: > > (within /usr/lib/gambas2/gb.qt.opengl.so.0.0.0) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x806206B: main (gbx.c:357) > > ==2353== > > ==2353== Conditional jump or move depends on uninitialised value(s) > > ==2353== at 0x79B60D2: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B65BF: radeonCopyBuffer (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B5A5F: radeonSwapBuffers > > (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79AFE75: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x52D7900: glXSwapBuffers (in /usr/lib/libGL.so.1.2) > > ==2353== by 0x4D0AE1E: QGLContext::swapBuffers() const > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D07F03: QGLWidget::swapBuffers() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D08553: QGLWidget::glDraw() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D07FA4: QGLWidget::paintEvent(QPaintEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4AD5472: QWidget::event(QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A3637C: QApplication::notify(QObject*, QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x49C1418: QETWidget::translatePaintEvent(_XEvent const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49CB509: QApplication::x11ProcessEvent(_XEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A4DBA5: QEventLoop::exec() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A35A5E: QApplication::exec() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x8062080: main (gbx.c:360) > > ==2353== > > ==2353== Syscall param ioctl(generic) points to uninitialised byte(s) > > ==2353== at 0x40007D2: (within /lib/ld-2.8.so) > > ==2353== by 0x79AFB0C: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79AFD40: driWaitForVBlank (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B6611: radeonCopyBuffer (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79B5A5F: radeonSwapBuffers > > (in /usr/lib/dri/r300_dri.so) > > ==2353== by 0x79AFE75: (within /usr/lib/dri/r300_dri.so) > > ==2353== by 0x52D7900: glXSwapBuffers (in /usr/lib/libGL.so.1.2) > > ==2353== by 0x4D0AE1E: QGLContext::swapBuffers() const > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D07F03: QGLWidget::swapBuffers() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D08553: QGLWidget::glDraw() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4D07FA4: QGLWidget::paintEvent(QPaintEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4AD5472: QWidget::event(QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A3637C: QApplication::notify(QObject*, QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x49C1418: QETWidget::translatePaintEvent(_XEvent const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49CB509: QApplication::x11ProcessEvent(_XEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A4DBA5: QEventLoop::exec() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A35A5E: QApplication::exec() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x8062080: main (gbx.c:360) > > ==2353== Address 0xbeef66c4 is on thread 1's stack > > ==2353== Warning: noted but unhandled ioctl 0x6447 with no > > size/direction hints > > ==2353== This could cause spurious value errors to appear. > > ==2353== See README_MISSING_SYSCALL_OR_IOCTL for guidance on writing > > a proper wrapper. > > ==2353== Warning: noted but unhandled ioctl 0x6447 with no > > size/direction hints > > ==2353== This could cause spurious value errors to appear. > > ==2353== See README_MISSING_SYSCALL_OR_IOCTL for guidance on writing > > a proper wrapper. > > ==2840== > > ==2840== ERROR SUMMARY: 10 errors from 5 contexts (suppressed: 177 from > > 4) > > ==2840== malloc/free: in use at exit: 12,988,194 bytes in 11,647 blocks. > > ==2840== malloc/free: 64,060 allocs, 52,413 frees, 20,796,745 bytes > > allocated. > > ==2840== For counts of detected errors, rerun with: -v > > ==2840== searching for pointers to 11,647 not-freed blocks. > > ==2840== checked 6,700,252 bytes. > > ==2840== > > ==2840== LEAK SUMMARY: > > ==2840== definitely lost: 4,749 bytes in 129 blocks. > > ==2840== possibly lost: 5,776 bytes in 105 blocks. > > ==2840== still reachable: 12,977,669 bytes in 11,413 blocks. > > ==2840== suppressed: 0 bytes in 0 blocks. > > ==2840== Rerun with --leak-check=full to see details of leaked memory. > > ==2353== > > ==2353== Conditional jump or move depends on uninitialised value(s) > > ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) > > ==2353== by 0x8068C9B: stop_process (gbx_c_process.c:210) > > ==2353== by 0x8068D41: callback_child (gbx_c_process.c:540) > > ==2353== by 0x8068D88: CPROCESS_wait_for (gbx_c_process.c:672) > > ==2353== by 0x805A9EA: SUBR_exec (gbx_subr_misc.c:168) > > ==2353== by 0x8050960: EXEC_loop (gbx_exec_loop.c:476) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x805DD3F: GB_Call (gbx_api.c:750) > > ==2353== by 0x465054C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x465060B: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > > ==2353== by 0x804FAE6: EXEC_push_array (gbx_exec_push.c:455) > > ==2353== by 0x8050A7C: EXEC_loop (gbx_exec_loop.c:532) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x804F1F0: EXEC_spec (gbx_exec.c:1231) > > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) > > ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) > > ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, > > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4E057EB: QButton::clicked() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4AD5336: QWidget::event(QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, > > QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== > > ==2353== Conditional jump or move depends on uninitialised value(s) > > ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) > > ==2353== by 0x8062C10: OBJECT_attach (gbx_object.c:167) > > ==2353== by 0x806510B: object_attach (gbx_c_class.c:657) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x804F1F0: EXEC_spec (gbx_exec.c:1231) > > ==2353== by 0x804F512: EXEC_special_inheritance (gbx_exec.c:1324) > > ==2353== by 0x804F8A0: EXEC_new (gbx_exec.c:1438) > > ==2353== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x804F4D9: EXEC_special_inheritance (gbx_exec.c:1310) > > ==2353== by 0x8062DF5: OBJECT_create (gbx_object.c:330) > > ==2353== by 0x805231E: CLASS_auto_create (gbx_class.c:983) > > ==2353== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) > > ==2353== by 0x804FDE6: EXEC_push_unknown (gbx_exec_push.c:187) > > ==2353== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) > > ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) > > ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, > > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4E057EB: QButton::clicked() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4AD5336: QWidget::event(QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, > > QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49CC8BF: QETWidget::translateMouseEvent(_XEvent const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49CBB5C: QApplication::x11ProcessEvent(_XEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A4DBA5: QEventLoop::exec() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A35A5E: QApplication::exec() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x8062080: main (gbx.c:360) > > ==2353== Warning: noted but unhandled ioctl 0x6447 with no > > size/direction hints > > ==2353== This could cause spurious value errors to appear. > > ==2353== See README_MISSING_SYSCALL_OR_IOCTL for guidance on writing > > a proper wrapper. > > ==2353== > > ==2353== Conditional jump or move depends on uninitialised value(s) > > ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) > > ==2353== by 0x4635145: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) > > ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) > > ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, > > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4E057EB: QButton::clicked() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4AD5336: QWidget::event(QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, > > QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49CC8BF: QETWidget::translateMouseEvent(_XEvent const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49CBB5C: QApplication::x11ProcessEvent(_XEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A4DBA5: QEventLoop::exec() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A35A5E: QApplication::exec() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x8062080: main (gbx.c:360) > > ==2353== > > ==2353== Conditional jump or move depends on uninitialised value(s) > > ==2353== at 0x8062921: OBJECT_detach (gbx_object.c:121) > > ==2353== by 0x4635145: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) > > ==2353== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==2353== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==2353== by 0x805DDEA: raise_event (gbx_api.c:489) > > ==2353== by 0x805E2AA: GB_Raise (gbx_api.c:588) > > ==2353== by 0x4637BCC: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x46374C0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A9A799: QObject::activate_signal(QConnectionList*, > > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4E057EB: QButton::clicked() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4AD5336: QWidget::event(QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A353CC: QApplication::internalNotify(QObject*, > > QEvent*) (in/usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462CAB2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, > > QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49CC8BF: QETWidget::translateMouseEvent(_XEvent const*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49CBB5C: QApplication::x11ProcessEvent(_XEvent*) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x49DFD03: QEventLoop::processEvents(unsigned) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A4DBA5: QEventLoop::exec() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A35A5E: QApplication::exec() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x8062080: main (gbx.c:360) > > ==2353== > > ==2353== Conditional jump or move depends on uninitialised value(s) > > ==2353== at 0x8062AFF: OBJECT_free (gbx_object.c:140) > > ==2353== by 0x805226D: CLASS_free (gbx_class.c:608) > > ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, > > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4DFC9E8: QObject::destroyed() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9DDA1: QObject::~QObject() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4AD5146: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B61B02: QLabel::~QLabel() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4BBA40C: QScrollView::~QScrollView() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== > > ==2353== Use of uninitialised value of size 4 > > ==2353== at 0x8062B03: OBJECT_free (gbx_object.c:140) > > ==2353== by 0x805226D: CLASS_free (gbx_class.c:608) > > ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, > > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4DFC9E8: QObject::destroyed() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9DDA1: QObject::~QObject() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4AD5146: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B61B02: QLabel::~QLabel() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4BBA40C: QScrollView::~QScrollView() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== > > ==2353== Invalid read of size 1 > > ==2353== at 0x805226D: CLASS_free (gbx_class.c:608) > > ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, > > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4DFC9E8: QObject::destroyed() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9DDA1: QObject::~QObject() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4AD5146: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B61B02: QLabel::~QLabel() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4BBA40C: QScrollView::~QScrollView() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) > > ==2353== Address 0x6cda2864 is not stack'd, malloc'd or (recently) > > free'd > > ==2353== > > ==2353== Process terminating with default action of signal 11 (SIGSEGV) > > ==2353== Access not within mapped region at address 0x6CDA2864 > > ==2353== at 0x805226D: CLASS_free (gbx_class.c:608) > > ==2353== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, > > QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9CCDA: QObject::activate_signal(int) > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4DFC9E8: QObject::destroyed() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4A9DDA1: QObject::~QObject() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4AD5146: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B61B02: QLabel::~QLabel() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4BBA40C: QScrollView::~QScrollView() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4AD50C6: QWidget::~QWidget() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4B9BBB2: QMainWindow::~QMainWindow() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x4A4DD0F: QEventLoop::enterLoop() > > (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) > > ==2353== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==2353== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==2353== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==2353== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) > > ==2353== > > ==2353== ERROR SUMMARY: 20 errors from 12 contexts (suppressed: 180 from > > 4) > > ==2353== malloc/free: in use at exit: 13,276,614 bytes in 17,744 blocks. > > ==2353== malloc/free: 106,756 allocs, 89,012 frees, 39,667,968 bytes > > allocated. > > ==2353== For counts of detected errors, rerun with: -v > > ==2353== searching for pointers to 17,744 not-freed blocks. > > ==2353== checked 32,119,236 bytes. > > ==2353== > > ==2353== LEAK SUMMARY: > > ==2353== definitely lost: 8,949 bytes in 264 blocks. > > ==2353== possibly lost: 14,649 bytes in 338 blocks. > > ==2353== still reachable: 13,253,016 bytes in 17,142 blocks. > > ==2353== suppressed: 0 bytes in 0 blocks. > > ==2353== Rerun with --leak-check=full to see details of leaked memory. > > Processus arr?t? > > steven at ...1948...:~/gambas2-2.7.0/examples/examples/OpenGL/PDFPresentatio > >n> > > > > > > Allso : I have an image in a form, each time I write a new one in it (if > > it's smaller) you can still see the previous image behind it. > > > > Regards, > > Steven > > > > I have just committed a fix for a 64 bits Gambas bug that you see only if you > compiled it with gcc 4.3. This is the case if you use the last OpenSuSE for > example. > > Actually the problem seems to be in gcc 4.1, because he should have never > created a correct program. > > Are you concerned? > From gambas at ...1... Tue Jul 22 16:20:15 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 22 Jul 2008 16:20:15 +0200 Subject: [Gambas-user] Again signal 11 In-Reply-To: <1216735290.3953.9.camel@...1936...> References: <1216715898.3595.34.camel@...1936...> <200807221248.31605.gambas@...1...> <1216735290.3953.9.camel@...1936...> Message-ID: <200807221620.15141.gambas@...1...> On mardi 22 juillet 2008, Steven Lobbezoo wrote: > I don't know. > I have gcc 4.3-39.1 (i586) installed on Suse 11.0 (latest) > But I dont have a 64 bit environment. > > Steven > I said that because you got some of the valgrind errors got on the last 64 bits OpenSuse. I notice that gdb and valgrind have both a very strange behaviour on OpenSuse! Maybe you could try the 64 bits fix. Who knows? -- Benoit Minisini From overhill at ...152... Tue Jul 22 19:20:05 2008 From: overhill at ...152... (overhill at ...152...) Date: Tue, 22 Jul 2008 19:20:05 +0200 (CEST) Subject: [Gambas-user] ODBC Problem Message-ID: <23854656.1216747205130.JavaMail.root@...1949...> Hi Benoit, first of all i want to tank you for your job and for give us the possibility to have good time programming :-) Obviously I'm not writing only for greeting, but for a problem too. Sorry for this :-) I've installed succesfully ODBC for iSeries on my AMD64 system with Ubuntu 8.4, and I've checked that it work fine under "sql". I've tried to create a little project for create a connection to an iSeries and the connection itslef working, but when I try to exec a SQL command, I receive the #11 error. I use Gambas version 2.7, the las stable, and I'd compiled with gcc 4.2 (using a 64 bit system I tink it's better working on compiled program... don't you think?) I' hope those few things are enough for you for give me some help. Oh, last think: I'm sure that if an English Teacher read this mail, she (every English Teacher are female... :-) ) my vote could be a "F", but I hope you can understand what I wrote. Bye and tanks again Overhill ____________________________________________________________________ Saldi Estivi Offerte di prodotti in saldo a prezzi estremamente vantaggiosi. Approfitta della grande comodit? di fare acquisti da casa tua, senza nemmeno uscire, rimanere imbottigliato nel traffico e perdere tempo prezioso. http://shopping.tiscali.it/ From ron at ...1740... Wed Jul 23 21:47:15 2008 From: ron at ...1740... (Ron) Date: Wed, 23 Jul 2008 21:47:15 +0200 Subject: [Gambas-user] gb.pcre help anyone? Message-ID: <48878AC3.9030505@...1740...> Hi, In my quest to parse a string to get some values from it, I ended up with way to much string functions. So I want to parse it a bit more efficient with gb.pcre... so far so good, but I 'm stumped as how to use it. Very sparse docs found on gambasdoc.org, but can anybody give an example? Let say I have this: Temp #01[4D0000004FC78A26]=24.31C And want to get the address (between the brackets) and the temp with the use of gb.pcre... Maybe a competition; who can get those values with the least amount of Gambas code...? ;-) Regards, Ron_2nd From gambas at ...1... Wed Jul 23 22:00:10 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 23 Jul 2008 22:00:10 +0200 Subject: [Gambas-user] gb.pcre help anyone? In-Reply-To: <48878AC3.9030505@...1740...> References: <48878AC3.9030505@...1740...> Message-ID: <200807232200.10434.gambas@...1...> On mercredi 23 juillet 2008, Ron wrote: > Hi, > > In my quest to parse a string to get some values from it, I ended up > with way to much string functions. > > So I want to parse it a bit more efficient with gb.pcre... so far so > good, but I 'm stumped as how to use it. > Very sparse docs found on gambasdoc.org, but can anybody give an example? > > Let say I have this: > Temp #01[4D0000004FC78A26]=24.31C > > And want to get the address (between the brackets) and the temp with the > use of gb.pcre... > > Maybe a competition; who can get those values with the least amount of > Gambas code...? ;-) > > Regards, > Ron_2nd > You don't need gb.pcre for simple extraction. You can use the built-in Scan() function: DIM sStr AS String = "Temp #01[4D0000004FC78A26]=24.31C" DIM aScan AS String[] aScan = Scan(sStr, "*[[]*]=*") PRINT "Address: "; aScan[1] PRINT "Temp: "; aScan[2] Regards, -- Benoit Minisini From ron at ...1740... Wed Jul 23 22:04:13 2008 From: ron at ...1740... (Ron) Date: Wed, 23 Jul 2008 22:04:13 +0200 Subject: [Gambas-user] gb.pcre help anyone? In-Reply-To: <200807232200.10434.gambas@...1...> References: <48878AC3.9030505@...1740...> <200807232200.10434.gambas@...1...> Message-ID: <48878EBD.5060102@...1740...> Benoit Minisini schreef: > On mercredi 23 juillet 2008, Ron wrote: > >> Hi, >> >> In my quest to parse a string to get some values from it, I ended up >> with way to much string functions. >> >> So I want to parse it a bit more efficient with gb.pcre... so far so >> good, but I 'm stumped as how to use it. >> Very sparse docs found on gambasdoc.org, but can anybody give an example? >> >> Let say I have this: >> Temp #01[4D0000004FC78A26]=24.31C >> >> And want to get the address (between the brackets) and the temp with the >> use of gb.pcre... >> >> Maybe a competition; who can get those values with the least amount of >> Gambas code...? ;-) >> >> Regards, >> Ron_2nd >> >> > > You don't need gb.pcre for simple extraction. You can use the built-in Scan() > function: > > DIM sStr AS String = "Temp #01[4D0000004FC78A26]=24.31C" > DIM aScan AS String[] > aScan = Scan(sStr, "*[[]*]=*") > PRINT "Address: "; aScan[1] > PRINT "Temp: "; aScan[2] > Ok! even better, you are right... I love Gambas more and more! Thanks, Ron_2nd From m0e.lnx at ...626... Thu Jul 24 00:02:20 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Wed, 23 Jul 2008 17:02:20 -0500 Subject: [Gambas-user] Problem parsing a "<" character to the Linux Shell Message-ID: <1f1e8c1b0807231502r43720a93i7ae8a198accba162@...627...> I'm writing an application that uses a shell like to perform some tasks. I need to parse something like "lzmadec < " & sPath to the shell. The problem is, it seems that gambas is only parsing "lzmadec" and ignores everything starting at the "<" to the end of the line. I tried escaping the "<" like "\<" but it doesn't work... says bad string conversion... Any suggestions? is this a bug? feature that I dont know about yet? How do I parse the "<" to the shell? From Gambas at ...1950... Thu Jul 24 01:42:55 2008 From: Gambas at ...1950... (Caveat) Date: Thu, 24 Jul 2008 01:42:55 +0200 Subject: [Gambas-user] Problem parsing a "<" character to the Linux Shell In-Reply-To: <1f1e8c1b0807231502r43720a93i7ae8a198accba162@...627...> References: <1f1e8c1b0807231502r43720a93i7ae8a198accba162@...627...> Message-ID: <1216856575.14811.5.camel@...1951...> Have you tried Chr$(60)? Chr$(33) = ! Chr$(34) = " Chr$(35) = # Chr$(36) = $ Chr$(37) = % Chr$(38) = & Chr$(39) = ' Chr$(40) = ( Chr$(41) = ) Chr$(42) = * Chr$(43) = + Chr$(44) = , Chr$(45) = - Chr$(46) = . Chr$(47) = / Chr$(48) = 0 Chr$(49) = 1 Chr$(50) = 2 Chr$(51) = 3 Chr$(52) = 4 Chr$(53) = 5 Chr$(54) = 6 Chr$(55) = 7 Chr$(56) = 8 Chr$(57) = 9 Chr$(58) = : Chr$(59) = ; Chr$(60) = < Chr$(61) = = Chr$(62) = > Chr$(63) = ? Chr$(64) = @ Chr$(65) = A Chr$(66) = B Chr$(67) = C Chr$(68) = D Chr$(69) = E Chr$(70) = F Chr$(71) = G Chr$(72) = H Chr$(73) = I Chr$(74) = J Chr$(75) = K Chr$(76) = L Chr$(77) = M Chr$(78) = N Chr$(79) = O Chr$(80) = P Chr$(81) = Q Chr$(82) = R Chr$(83) = S Chr$(84) = T Chr$(85) = U Chr$(86) = V Chr$(87) = W Chr$(88) = X Chr$(89) = Y Chr$(90) = Z Chr$(91) = [ Chr$(92) = \ Chr$(93) = ] Chr$(94) = ^ Chr$(95) = _ Chr$(96) = ` Chr$(97) = a Chr$(98) = b Chr$(99) = c Chr$(100) = d Chr$(101) = e Chr$(102) = f Chr$(103) = g Chr$(104) = h Chr$(105) = i Chr$(106) = j Chr$(107) = k Chr$(108) = l Chr$(109) = m Chr$(110) = n Chr$(111) = o Chr$(112) = p Chr$(113) = q Chr$(114) = r Chr$(115) = s Chr$(116) = t Chr$(117) = u Chr$(118) = v Chr$(119) = w Chr$(120) = x On Wed, 2008-07-23 at 17:02 -0500, M0E Lnx wrote: > I'm writing an application that uses a shell like to perform some tasks. > > I need to parse something like "lzmadec < " & sPath to the shell. The > problem is, > it seems that gambas is only parsing "lzmadec" and ignores everything > starting at the "<" to the end of the line. > > I tried escaping the "<" like "\<" but it doesn't work... says bad > string conversion... > > Any suggestions? is this a bug? feature that I dont know about yet? > How do I parse the "<" to the shell? > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From m0e.lnx at ...626... Thu Jul 24 05:10:11 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Wed, 23 Jul 2008 22:10:11 -0500 Subject: [Gambas-user] Problem parsing a "<" character to the Linux Shell In-Reply-To: <1216856575.14811.5.camel@...1951...> References: <1f1e8c1b0807231502r43720a93i7ae8a198accba162@...627...> <1216856575.14811.5.camel@...1951...> Message-ID: <1f1e8c1b0807232010he0d8f65n385b0d89c32c91b9@...627...> I just tried that, and I get the same results. I dont know what the problem is.. sCMD = "lzmadec " & chr(60) & space(1) & sFilePath for degbuggind, I print sCMD and all I get is "lzmadec". I can print sFilePath and I know for a fact is has a value. On 7/23/08, Caveat wrote: > Have you tried Chr$(60)? > > Chr$(33) = ! Chr$(34) = " Chr$(35) = # Chr$(36) = $ > Chr$(37) = % Chr$(38) = & Chr$(39) = ' Chr$(40) = ( > Chr$(41) = ) Chr$(42) = * Chr$(43) = + Chr$(44) = , > Chr$(45) = - Chr$(46) = . Chr$(47) = / Chr$(48) = 0 > Chr$(49) = 1 Chr$(50) = 2 Chr$(51) = 3 Chr$(52) = 4 > Chr$(53) = 5 Chr$(54) = 6 Chr$(55) = 7 Chr$(56) = 8 > Chr$(57) = 9 Chr$(58) = : Chr$(59) = ; Chr$(60) = < > Chr$(61) = = Chr$(62) = > Chr$(63) = ? Chr$(64) = @ > Chr$(65) = A Chr$(66) = B Chr$(67) = C Chr$(68) = D > Chr$(69) = E Chr$(70) = F Chr$(71) = G Chr$(72) = H > Chr$(73) = I Chr$(74) = J Chr$(75) = K Chr$(76) = L > Chr$(77) = M Chr$(78) = N Chr$(79) = O Chr$(80) = P > Chr$(81) = Q Chr$(82) = R Chr$(83) = S Chr$(84) = T > Chr$(85) = U Chr$(86) = V Chr$(87) = W Chr$(88) = X > Chr$(89) = Y Chr$(90) = Z Chr$(91) = [ Chr$(92) = \ > Chr$(93) = ] Chr$(94) = ^ Chr$(95) = _ Chr$(96) = ` > Chr$(97) = a Chr$(98) = b Chr$(99) = c Chr$(100) = d > Chr$(101) = e Chr$(102) = f Chr$(103) = g Chr$(104) = h > Chr$(105) = i Chr$(106) = j Chr$(107) = k Chr$(108) = l > Chr$(109) = m Chr$(110) = n Chr$(111) = o Chr$(112) = p > Chr$(113) = q Chr$(114) = r Chr$(115) = s Chr$(116) = t > Chr$(117) = u Chr$(118) = v Chr$(119) = w Chr$(120) = x > > On Wed, 2008-07-23 at 17:02 -0500, M0E Lnx wrote: >> I'm writing an application that uses a shell like to perform some tasks. >> >> I need to parse something like "lzmadec < " & sPath to the shell. The >> problem is, >> it seems that gambas is only parsing "lzmadec" and ignores everything >> starting at the "<" to the end of the line. >> >> I tried escaping the "<" like "\<" but it doesn't work... says bad >> string conversion... >> >> Any suggestions? is this a bug? feature that I dont know about yet? >> How do I parse the "<" to the shell? >> >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's >> challenge >> Build the coolest Linux based applications with Moblin SDK & win great >> prizes >> Grand prize is a trip for two to an Open Source event anywhere in the >> world >> http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From wdahn at ...1000... Thu Jul 24 05:28:42 2008 From: wdahn at ...1000... (Werner) Date: Thu, 24 Jul 2008 11:28:42 +0800 Subject: [Gambas-user] Problem parsing a "<" character to the Linux Shell In-Reply-To: <1f1e8c1b0807232010he0d8f65n385b0d89c32c91b9@...627...> References: <1f1e8c1b0807231502r43720a93i7ae8a198accba162@...627...> <1216856575.14811.5.camel@...1951...> <1f1e8c1b0807232010he0d8f65n385b0d89c32c91b9@...627...> Message-ID: <4887F6EA.9000900@...1000...> M0E Lnx wrote: > I just tried that, and I get the same results. I dont know what the problem is.. > > sCMD = "lzmadec " & chr(60) & space(1) & sFilePath > > for degbuggind, I print sCMD and all I get is "lzmadec". I can print > sFilePath and I know for a fact is has a value. > How about this: EXEC [ "lzmadec" , "<" , sPath ] From gambas at ...1... Thu Jul 24 12:54:46 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 24 Jul 2008 12:54:46 +0200 Subject: [Gambas-user] ODBC Problem In-Reply-To: <23854656.1216747205130.JavaMail.root@...1949...> References: <23854656.1216747205130.JavaMail.root@...1949...> Message-ID: <200807241254.46470.gambas@...1...> On mardi 22 juillet 2008, overhill at ...152... wrote: > Hi Benoit, > > first of all i want to tank you for your job and for give us the > possibility to have good time programming :-) > > Obviously I'm not writing only for greeting, but for a problem too. > Sorry for this :-) > > I've installed succesfully ODBC for iSeries on my AMD64 system with > Ubuntu 8.4, and I've checked that it work fine under "sql". > I've tried to create a little project for create a connection to an > iSeries and the connection itslef working, but when I try to exec a SQL > command, I receive the #11 error. > I use Gambas version 2.7, the las stable, and I'd compiled with gcc > 4.2 (using a 64 bit system I tink it's better working on compiled > program... don't you think?) > I' hope those few things are enough for you for give me some help. > > Oh, last think: I'm sure that if an English Teacher read this mail, > she (every English Teacher are female... :-) ) my vote could be a "F", > but I hope you can understand what I wrote. > > Bye and tanks again > > Overhill > Can you try to compile the latest 2.x version from the svn repository? I recently fixed a bug in th 64 bits version of gambas that seems to not be visible until gcc 4.1. Regards, -- Benoit Minisini From m0e.lnx at ...626... Thu Jul 24 14:30:39 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Thu, 24 Jul 2008 07:30:39 -0500 Subject: [Gambas-user] Problem parsing a "<" character to the Linux Shell In-Reply-To: <4887F6EA.9000900@...1000...> References: <1f1e8c1b0807231502r43720a93i7ae8a198accba162@...627...> <1216856575.14811.5.camel@...1951...> <1f1e8c1b0807232010he0d8f65n385b0d89c32c91b9@...627...> <4887F6EA.9000900@...1000...> Message-ID: <1f1e8c1b0807240530p5924efc1v5305bfa8b5c3c00@...627...> Ok... after some more testing, I think I may have miss-stated the facts here. Print sCMD does print the entire string. Now I'm leaning towards believing this is yet another bug in the gtk component message.info(sCMD) is what only shows the shortened string. Does not happen when using gb.qt. Only gb.gtk Can soneone else verify this?? On Wed, Jul 23, 2008 at 10:28 PM, Werner wrote: > M0E Lnx wrote: >> I just tried that, and I get the same results. I dont know what the problem is.. >> >> sCMD = "lzmadec " & chr(60) & space(1) & sFilePath >> >> for degbuggind, I print sCMD and all I get is "lzmadec". I can print >> sFilePath and I know for a fact is has a value. >> > How about this: > > EXEC [ "lzmadec" , "<" , sPath ] > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Thu Jul 24 14:35:12 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 24 Jul 2008 14:35:12 +0200 Subject: [Gambas-user] Problem parsing a "<" character to the Linux Shell In-Reply-To: <1f1e8c1b0807240530p5924efc1v5305bfa8b5c3c00@...627...> References: <1f1e8c1b0807231502r43720a93i7ae8a198accba162@...627...> <4887F6EA.9000900@...1000...> <1f1e8c1b0807240530p5924efc1v5305bfa8b5c3c00@...627...> Message-ID: <200807241435.12727.gambas@...1...> On jeudi 24 juillet 2008, M0E Lnx wrote: > Ok... after some more testing, I think I may have miss-stated the facts > here. > > Print sCMD does print the entire string. Now I'm leaning towards > believing this is yet another bug in the gtk component > message.info(sCMD) is what only shows the shortened string. > > Does not happen when using gb.qt. Only gb.gtk > > Can soneone else verify this?? > I think the gb.gtk message box always take your string as HTML (and so interpret your '<' as a markup start), whereas the Qt library tries to guess if the message string is HTML or plain text. As I can't remove this guess routine from Qt, maybe I should implement something like that in gb.gtk. Weird... Regards, -- Benoit Minisini From m0e.lnx at ...626... Thu Jul 24 14:37:43 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Thu, 24 Jul 2008 07:37:43 -0500 Subject: [Gambas-user] Problem parsing a "<" character to the Linux Shell In-Reply-To: <200807241435.12727.gambas@...1...> References: <1f1e8c1b0807231502r43720a93i7ae8a198accba162@...627...> <4887F6EA.9000900@...1000...> <1f1e8c1b0807240530p5924efc1v5305bfa8b5c3c00@...627...> <200807241435.12727.gambas@...1...> Message-ID: <1f1e8c1b0807240537i21d5dc1ah8368fe692e6a37d6@...627...> makes sense... I bet implementing it the same routine for gb.gtk would work. On Thu, Jul 24, 2008 at 7:35 AM, Benoit Minisini wrote: > On jeudi 24 juillet 2008, M0E Lnx wrote: >> Ok... after some more testing, I think I may have miss-stated the facts >> here. >> >> Print sCMD does print the entire string. Now I'm leaning towards >> believing this is yet another bug in the gtk component >> message.info(sCMD) is what only shows the shortened string. >> >> Does not happen when using gb.qt. Only gb.gtk >> >> Can soneone else verify this?? >> > > I think the gb.gtk message box always take your string as HTML (and so > interpret your '<' as a markup start), whereas the Qt library tries to guess > if the message string is HTML or plain text. > > As I can't remove this guess routine from Qt, maybe I should implement > something like that in gb.gtk. Weird... > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From jbskaggs at ...1871... Thu Jul 24 19:22:32 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Thu, 24 Jul 2008 10:22:32 -0700 (PDT) Subject: [Gambas-user] How do I get my latest program version while program is running? Message-ID: <18636651.post@...1379...> I want to be able to have my program automatically lookup the latest version of my program. How can I do that? Is there a file or setting can call that is made when you make the installation package? JB -- View this message in context: http://www.nabble.com/How-do-I-get-my-latest-program-version-while-program-is-running--tp18636651p18636651.html Sent from the gambas-user mailing list archive at Nabble.com. From jaap_cramer at ...67... Thu Jul 24 19:26:05 2008 From: jaap_cramer at ...67... (Jaap Cramer) Date: Thu, 24 Jul 2008 19:26:05 +0200 Subject: [Gambas-user] How do I get my latest program version while program is running? In-Reply-To: <18636651.post@...1379...> References: <18636651.post@...1379...> Message-ID: I belive you can use Application.Version (a string) to be displayed in form.caption on Form_open of _load On Thu, 2008-07-24 at 10:22 -0700, jbskaggs wrote: > I want to be able to have my program automatically lookup the latest version > of my program. How can I do that? > > Is there a file or setting can call that is made when you make the > installation package? > > JB From rterry at ...1946... Thu Jul 24 23:41:14 2008 From: rterry at ...1946... (richard terry) Date: Fri, 25 Jul 2008 07:41:14 +1000 Subject: [Gambas-user] Signal 6 error Message-ID: <200807250741.14739.rterry@...1946...> Build 1480, typing in the search box in the console > signal 6 error, see the piccie. -------------- next part -------------- A non-text attachment was scrubbed... Name: console_bug.png Type: image/png Size: 15109 bytes Desc: not available URL: From gambas at ...1... Thu Jul 24 23:48:59 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 24 Jul 2008 23:48:59 +0200 Subject: [Gambas-user] Signal 6 error In-Reply-To: <200807250741.14739.rterry@...1946...> References: <200807250741.14739.rterry@...1946...> Message-ID: <200807242348.59718.gambas@...1...> On jeudi 24 juillet 2008, richard terry wrote: > Build 1480, typing in the search box in the console > signal 6 error, see > the piccie. This is not a "signal 6". [6] is just the error message number. Signals are an operating system thing. Anyway, I fixed the bug, but couldn't commit it because sourceforge subversion seems to be down. Regards, -- Benoit Minisini From rterry at ...1946... Fri Jul 25 06:31:30 2008 From: rterry at ...1946... (richard terry) Date: Fri, 25 Jul 2008 14:31:30 +1000 Subject: [Gambas-user] Auto-sizing of columns in column view Message-ID: <200807251431.30820.rterry@...1946...> I often use column view, and they seemed to auto-size the columns, but for some reason in recent time, this ability seems to have been lost for all new column views I put on forms, although the old forms still seem to retain this property. If I Cut and paste one from an old form to a new one, the new one dosn't work. I wondered if I'm missing property or something, or how to go about finding out what is wrong (build 1480). Regards Richard From francescoxavierkm at ...43... Fri Jul 25 13:51:01 2008 From: francescoxavierkm at ...43... (Francesco Cisco) Date: Fri, 25 Jul 2008 04:51:01 -0700 (PDT) Subject: [Gambas-user] create button at runtime Message-ID: <399027.60825.qm@...1952...> how to create buttons at runtime? From jscops at ...11... Fri Jul 25 14:04:57 2008 From: jscops at ...11... (Jacky) Date: Fri, 25 Jul 2008 14:04:57 +0200 Subject: [Gambas-user] Null objet avec gb.net.smtp Message-ID: <200807251404.57314.jscops@...11...> Bonjour Benoit, J'ai un message "Null object" avec gb.net.smtp sur la phrase ci-dessous Smtp.To.Add("jscops at ...11...") Smtp est auparavant initialis? par "DIM Smtp AS NEW SmtpClient" Y'a quelquechose de chang? dans la syntaxe ? Car cela fonctionnait comme ca avant, il me semble ? Et la doc donne la m?me syntaxe aussi. Mandiva 2008.1 Gambas 2.7 Merci. jacky From m0e.lnx at ...626... Fri Jul 25 14:13:13 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Fri, 25 Jul 2008 07:13:13 -0500 Subject: [Gambas-user] create button at runtime In-Reply-To: <399027.60825.qm@...1952...> References: <399027.60825.qm@...1952...> Message-ID: <1f1e8c1b0807250513t7fb64c7s4282b9be7a338aa6@...627...> http://gambasdoc.org/help/comp/gb.qt/button/_new?show DIM hButton as button hButton = new button(Your_Form_Here) With hButton .X = 4 .Y = 4 .Text = "Button" .height = 27 .width = 80 END WITH On Fri, Jul 25, 2008 at 6:51 AM, Francesco Cisco wrote: > how to create buttons at runtime? > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From steven at ...1652... Fri Jul 25 14:14:53 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Fri, 25 Jul 2008 14:14:53 +0200 Subject: [Gambas-user] Sig 11 Message-ID: <1216988093.3554.11.camel@...1936...> Hi, As for weeks now, I get a signal 11 returning from : fileselector.ShowDialog I tried to compile the latest trunk (2.7), but i get : Making all in ext make[5]: entrant dans le r?pertoire ? /home/steven/2.0/gb.qt/src/ext ? /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I/usr/lib/qt3/include/ -I -D_REENTRANT -I../../share -I../../src/share -pipe -Wall -fno-exceptions -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -fno-omit-frame-pointer -MT CDial_moc.lo -MD -MP -MF .deps/CDial_moc.Tpo -c -o CDial_moc.lo CDial_moc.cpp g++ -DHAVE_CONFIG_H -I. -I../.. -I/usr/lib/qt3/include/ -I -D_REENTRANT -I../../share -I../../src/share -pipe -Wall -fno-exceptions -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -fno-omit-frame-pointer -MT CDial_moc.lo -MD -MP -MF .deps/CDial_moc.Tpo -c CDial_moc.cpp -fPIC -DPIC -o .libs/CDial_moc.o CDial_moc.cpp:12:2: error: #error "The header file 'CDial.h' doesn't include ." CDial_moc.cpp:20: error: expected constructor, destructor, or type conversion before 'static' CDial_moc.cpp:40: error: 'const QMetaObject CDial::staticMetaObject' is not a static member of 'class CDial' CDial_moc.cpp:40: error: variable 'const QMetaObject CDial::staticMetaObject' has initializer but incomplete type CDial_moc.cpp:42: error: 'qt_meta_data_CDial' was not declared in this scope CDial_moc.cpp:45: error: prototype for 'const QMetaObject* CDial::metaObject() const' does not match any in class 'CDial' CDial.h:51: error: candidate is: virtual QMetaObject* CDial::metaObject() const CDial_moc.cpp:50: error: no 'void* CDial::qt_metacast(const char*)' member function declared in class 'CDial' CDial_moc.cpp:58: error: 'int CDial::qt_metacall' is not a static member of 'class CDial' CDial_moc.cpp:58: error: incomplete type 'QMetaObject' used in nested name specifier CDial_moc.cpp:58: error: expected primary-expression before 'int' CDial_moc.cpp:58: error: expected primary-expression before 'void' CDial_moc.cpp:58: error: initializer expression list treated as compound expression CDial_moc.cpp:59: error: expected ',' or ';' before '{' token make[5]: *** [CDial_moc.lo] Erreur 1 make[5]: quittant le r?pertoire ? /home/steven/2.0/gb.qt/src/ext ? make[4]: *** [all-recursive] Erreur 1 make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.qt/src ? make[3]: *** [all-recursive] Erreur 1 make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.qt ? make[2]: *** [all] Erreur 2 make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.qt ? make[1]: *** [all-recursive] Erreur 1 make[1]: quittant le r?pertoire ? /home/steven/2.0 ? make: *** [all] Erreur 2 So, nu luck also (although .configure -C does exactly as expected, and does not complain). Steven From emil at ...1913... Fri Jul 25 14:41:03 2008 From: emil at ...1913... (Emil Tchekov) Date: Fri, 25 Jul 2008 14:41:03 +0200 Subject: [Gambas-user] Null objet avec gb.net.smtp In-Reply-To: <200807251404.57314.jscops@...11...> Message-ID: Please use English only, (so everyone can understand), and since it is the official language of this mailing list. Thank you very much in advance! kind regards Emil -----Urspr?ngliche Nachricht----- Von: gambas-user-bounces at lists.sourceforge.net [mailto:gambas-user-bounces at lists.sourceforge.net]Im Auftrag von Jacky Gesendet: Freitag, 25. Juli 2008 14:05 An: mailing list for gambas users Betreff: [Gambas-user] Null objet avec gb.net.smtp Bonjour Benoit, J'ai un message "Null object" avec gb.net.smtp sur la phrase ci-dessous Smtp.To.Add("jscops at ...11...") Smtp est auparavant initialis? par "DIM Smtp AS NEW SmtpClient" Y'a quelquechose de chang? dans la syntaxe ? Car cela fonctionnait comme ca avant, il me semble ? Et la doc donne la m?me syntaxe aussi. Mandiva 2008.1 Gambas 2.7 Merci. jacky ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From jscops at ...11... Fri Jul 25 14:50:54 2008 From: jscops at ...11... (Jacky) Date: Fri, 25 Jul 2008 14:50:54 +0200 Subject: [Gambas-user] Null objet avec gb.net.smtp In-Reply-To: References: Message-ID: <200807251450.54618.jscops@...11...> Le Friday 25 July 2008 14:41:03 Emil Tchekov, vous avez ?crit?: > Please use English only, (so everyone can understand), and since it is the > official language of this mailing list. > > Thank you very much in advance! > > kind regards > > Emil I am sincerely sorry Emil, It's an error of me. Jacky From francescokm at ...626... Fri Jul 25 16:40:05 2008 From: francescokm at ...626... (Francesco Xavier Kolly Mally) Date: Fri, 25 Jul 2008 21:40:05 +0700 Subject: [Gambas-user] Fwd: create button at runtime In-Reply-To: <1f1e8c1b0807250513t7fb64c7s4282b9be7a338aa6@...627...> References: <399027.60825.qm@...1952...> <1f1e8c1b0807250513t7fb64c7s4282b9be7a338aa6@...627...> Message-ID: <367b4cf70807250740o694a388enfc1df70bb2ba4aeb@...627...> http://gambasdoc.org/help/comp/gb.qt/button/_new?show DIM hButton as button hButton = new button(Your_Form_Here) With hButton .X = 4 .Y = 4 .Text = "Button" .height = 27 .width = 80 END WITH I found this Error message= gb.gui: unable to load 'gb.gtk' component where can i download gb.gtk ? I use mandriva 2007 Should I uninstall gambas to clear all configure and re-configure? Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Fri Jul 25 18:51:11 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 25 Jul 2008 18:51:11 +0200 Subject: [Gambas-user] Fwd: create button at runtime In-Reply-To: <367b4cf70807250740o694a388enfc1df70bb2ba4aeb@...627...> References: <399027.60825.qm@...1952...> <1f1e8c1b0807250513t7fb64c7s4282b9be7a338aa6@...627...> <367b4cf70807250740o694a388enfc1df70bb2ba4aeb@...627...> Message-ID: <200807251851.11632.gambas@...1...> On vendredi 25 juillet 2008, Francesco Xavier Kolly Mally wrote: > http://gambasdoc.org/help/comp/gb.qt/button/_new?show > > DIM hButton as button > > hButton = new button(Your_Form_Here) > With hButton > .X = 4 > .Y = 4 > .Text = "Button" > .height = 27 > .width = 80 > END WITH > > I found this Error message= gb.gui: unable to load 'gb.gtk' component > where can i download gb.gtk ? I use mandriva 2007 > Should I uninstall gambas to clear all configure and re-configure? gb.gui uses gb.gtk if you don't have a KDE desktop. If you compiled gambas from sources, you must install the GTK+ development packages to have the gb.gtk component. See the wiki documentation page on how to compile and install Gambas on Mandriva. Regards, -- Benoit Minisini From gambas at ...1... Fri Jul 25 18:52:48 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 25 Jul 2008 18:52:48 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <1216988093.3554.11.camel@...1936...> References: <1216988093.3554.11.camel@...1936...> Message-ID: <200807251852.48996.gambas@...1...> On vendredi 25 juillet 2008, Steven Lobbezoo wrote: > Hi, > > As for weeks now, I get a signal 11 returning from : > fileselector.ShowDialog > > I tried to compile the latest trunk (2.7), but i get : > Making all in ext > make[5]: entrant dans le r?pertoire ? /home/steven/2.0/gb.qt/src/ext ? > /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. > -I../.. -I/usr/lib/qt3/include/ -I -D_REENTRANT -I../../share > -I../../src/share -pipe -Wall -fno-exceptions -Wno-unused-value > -fsigned-char -fvisibility=hidden -g -Os -fno-omit-frame-pointer -MT > CDial_moc.lo -MD -MP -MF .deps/CDial_moc.Tpo -c -o CDial_moc.lo > CDial_moc.cpp > g++ -DHAVE_CONFIG_H -I. -I../.. -I/usr/lib/qt3/include/ -I -D_REENTRANT > -I../../share -I../../src/share -pipe -Wall -fno-exceptions > -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os > -fno-omit-frame-pointer -MT CDial_moc.lo -MD -MP -MF .deps/CDial_moc.Tpo > -c CDial_moc.cpp -fPIC -DPIC -o .libs/CDial_moc.o > CDial_moc.cpp:12:2: error: #error "The header file 'CDial.h' doesn't > include ." > CDial_moc.cpp:20: error: expected constructor, destructor, or type > conversion before 'static' > CDial_moc.cpp:40: error: 'const QMetaObject CDial::staticMetaObject' is > not a static member of 'class CDial' > CDial_moc.cpp:40: error: variable 'const QMetaObject > CDial::staticMetaObject' has initializer but incomplete type > CDial_moc.cpp:42: error: 'qt_meta_data_CDial' was not declared in this > scope > CDial_moc.cpp:45: error: prototype for 'const QMetaObject* > CDial::metaObject() const' does not match any in class 'CDial' > CDial.h:51: error: candidate is: virtual QMetaObject* > CDial::metaObject() const > CDial_moc.cpp:50: error: no 'void* CDial::qt_metacast(const char*)' > member function declared in class 'CDial' > CDial_moc.cpp:58: error: 'int CDial::qt_metacall' is not a static member > of 'class CDial' > CDial_moc.cpp:58: error: incomplete type 'QMetaObject' used in nested > name specifier > CDial_moc.cpp:58: error: expected primary-expression before 'int' > CDial_moc.cpp:58: error: expected primary-expression before 'void' > CDial_moc.cpp:58: error: initializer expression list treated as compound > expression > CDial_moc.cpp:59: error: expected ',' or ';' before '{' token > make[5]: *** [CDial_moc.lo] Erreur 1 > make[5]: quittant le r?pertoire ? /home/steven/2.0/gb.qt/src/ext ? > make[4]: *** [all-recursive] Erreur 1 > make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.qt/src ? > make[3]: *** [all-recursive] Erreur 1 > make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.qt ? > make[2]: *** [all] Erreur 2 > make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.qt ? > make[1]: *** [all-recursive] Erreur 1 > make[1]: quittant le r?pertoire ? /home/steven/2.0 ? > make: *** [all] Erreur 2 > > So, nu luck also (although .configure -C does exactly as expected, and > does not complain). > > Steven > Apparently, you get that when having a both QT3 and QT4 development packages installed. Can you check that, and send me the full output of "./configure" so that I try to fix the problem? Regards, -- Benoit Minisini From gambas at ...1... Fri Jul 25 19:12:12 2008 From: gambas at ...1... (Benoit Minisini) Date: Fri, 25 Jul 2008 19:12:12 +0200 Subject: [Gambas-user] Auto-sizing of columns in column view In-Reply-To: <200807251431.30820.rterry@...1946...> References: <200807251431.30820.rterry@...1946...> Message-ID: <200807251912.12106.gambas@...1...> On vendredi 25 juillet 2008, richard terry wrote: > I often use column view, and they seemed to auto-size the columns, but for > some reason in recent time, this ability seems to have been lost for all > new column views I put on forms, although the old forms still seem to > retain this property. > > If I Cut and paste one from an old form to a new one, the new one dosn't > work. > > I wondered if I'm missing property or something, or how to go about finding > out what is wrong (build 1480). > > Regards > > Richard > Can you provide some code, and showing me what it should do? With a screenshot, it is the fastest to understand. Regards, -- Benoit Minisini From jbskaggs at ...1871... Fri Jul 25 22:31:03 2008 From: jbskaggs at ...1871... (jbskaggs) Date: Fri, 25 Jul 2008 13:31:03 -0700 (PDT) Subject: [Gambas-user] could somebody write how to make a package for Gentoo? Message-ID: <18658903.post@...1379...> Could somebody write how to create a distribution package of my application for the gentoo version of linux? I dont have Gentoo but I have requests on how to install my program on gentoo. I'd assume the easiest way would be for them to install Gambas 2.5 and compile my Source code. But is there a more professional way? Mind you I am a newbie. JB -- View this message in context: http://www.nabble.com/could-somebody-write-how-to-make-a-package-for-Gentoo--tp18658903p18658903.html Sent from the gambas-user mailing list archive at Nabble.com. From steven at ...1652... Sat Jul 26 11:11:24 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Sat, 26 Jul 2008 11:11:24 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807251852.48996.gambas@...1...> References: <1216988093.3554.11.camel@...1936...> <200807251852.48996.gambas@...1...> Message-ID: <1217063484.5411.12.camel@...1936...> Hi Benoit, Correct, I have QT3 and QT4 installed. I did the following : ./reconf-all gb.qte.am:3: `%'-style pattern rules are a GNU make extension src/Makefile.am:3: `gb.qte.am' included from here gb.qte.am:3: `%'-style pattern rules are a GNU make extension src/ext/Makefile.am:3: `gb.qte.am' included from here Then : steven at ...1948...:~/2.0> ./configure -C > temp.txt configure: WARNING: *** foreign function interface is disabled configure: WARNING: *** ODBC driver is disabled configure: WARNING: *** PostgreSQL driver is disabled configure: WARNING: *** SQLite 2 driver is disabled configure: WARNING: *** firebird driver is disabled configure: WARNING: *** QT/Embedded component is disabled configure: WARNING: *** CORBA component is disabled The temp.txt is attached ! Then : make > temp2.txt CDial_moc.cpp:12:2: error: #error "The header file 'CDial.h' doesn't include ." CDial_moc.cpp:20: error: expected constructor, destructor, or type conversion before 'static' CDial_moc.cpp:40: error: 'const QMetaObject CDial::staticMetaObject' is not a static member of 'class CDial' CDial_moc.cpp:40: error: variable 'const QMetaObject CDial::staticMetaObject' has initializer but incomplete type CDial_moc.cpp:42: error: 'qt_meta_data_CDial' was not declared in this scope CDial_moc.cpp:45: error: prototype for 'const QMetaObject* CDial::metaObject() const' does not match any in class 'CDial' CDial.h:51: error: candidate is: virtual QMetaObject* CDial::metaObject() const CDial_moc.cpp:50: error: no 'void* CDial::qt_metacast(const char*)' member function declared in class 'CDial' CDial_moc.cpp:58: error: 'int CDial::qt_metacall' is not a static member of 'class CDial' CDial_moc.cpp:58: error: incomplete type 'QMetaObject' used in nested name specifier CDial_moc.cpp:58: error: expected primary-expression before 'int' CDial_moc.cpp:58: error: expected primary-expression before 'void' CDial_moc.cpp:58: error: initializer expression list treated as compound expression CDial_moc.cpp:59: error: expected ',' or ';' before '{' token make[5]: *** [CDial_moc.lo] Erreur 1 make[4]: *** [all-recursive] Erreur 1 make[3]: *** [all-recursive] Erreur 1 make[2]: *** [all] Erreur 2 make[1]: *** [all-recursive] Erreur 1 make: *** [all] Erreur 2 /~/2.0> The temp2.txt file is also attached. Hope this helps Steven Le vendredi 25 juillet 2008 ? 18:52 +0200, Benoit Minisini a ?crit : > Apparently, you get that when having a both QT3 and QT4 development packages > installed. Can you check that, and send me the full output of "./configure" > so that I try to fix the problem? > > Regards, > -------------- next part -------------- configure: loading cache config.cache checking whether to enable maintainer-specific portions of Makefiles... no checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged === configuring in main (/home/steven/2.0/main) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking whether gcc and cc understand -c and -o together... (cached) yes checking for external internationalization library headers... (cached) /usr/include/ checking for external internationalization library libraries... (cached) no configure: This library may be located inside the system C library, so let's go on... checking for optional external charset conversion library headers... (cached) /usr/include/ checking for optional external charset conversion library libraries... (cached) no configure: This library may be located inside the system C library, so let's go on... checking for foreign function interface component with pkg-config... no configure: Cannot find libffi support with pkg-config checking for foreign function interface headers... (cached) no checking for foreign function interface libraries... (cached) no checking for xdg-mime... (cached) xdg-mime configure: creating ./config.status config.status: creating Makefile config.status: creating share/Makefile config.status: creating gbc/Makefile config.status: creating gbx/Makefile config.status: creating lib/Makefile config.status: creating lib/debug/Makefile config.status: creating lib/eval/Makefile config.status: creating lib/db/Makefile config.status: creating lib/vb/Makefile config.status: creating lib/compress/Makefile config.status: creating lib/option/Makefile config.status: creating lib/draw/Makefile config.status: creating lib/gui/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in libltdl (/home/steven/2.0/main/libltdl) configure: running /bin/sh ./configure '--prefix=/usr/local' '--enable-ltdl-convenience' --cache-file=../../config.cache --srcdir=. configure: loading cache ../../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking for style of include used by make... GNU checking dependency style of gcc... (cached) gcc3 checking for an ANSI C-conforming const... (cached) yes checking for inline... (cached) inline checking build system type... (cached) i686-pc-linux-gnu checking host system type... (cached) i686-pc-linux-gnu checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking whether ln -s works... yes checking how to recognise dependent libraries... (cached) pass_all checking how to run the C preprocessor... (cached) gcc -E checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for dirent.h that defines DIR... (cached) yes checking for library containing opendir... (cached) none required checking which extension is used for loadable modules... (cached) .so checking which variable specifies run-time library path... (cached) LD_LIBRARY_PATH checking for the default library search path... (cached) /lib /usr/lib /usr/X11R6/lib/Xaw3d /usr/X11R6/lib /usr/lib/Xaw3d /usr/i386-suse-linux/lib /usr/local/lib /opt/kde3/lib /usr/lib/graphviz /usr/lib/graphviz/sharp /usr/lib/graphviz/java /usr/lib/graphviz/perl /usr/lib/graphviz/php /usr/lib/graphviz/ocaml /usr/lib/graphviz/python /usr/lib/graphviz/lua /usr/lib/graphviz/tcl /usr/lib/graphviz/guile /usr/lib/graphviz/ruby checking for objdir... (cached) .libs checking whether libtool supports -dlopen/-dlpreopen... (cached) yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen in -ldl... (cached) yes checking for dlerror... (cached) yes checking for _ prefix in compiled symbols... (cached) no checking whether deplibs are loaded by dlopen... (cached) yes checking for argz.h... (cached) yes checking for error_t... (cached) yes checking for argz_append... (cached) yes checking for argz_create_sep... (cached) yes checking for argz_insert... (cached) yes checking for argz_next... (cached) yes checking for argz_stringify... (cached) yes checking for assert.h... (cached) yes checking for ctype.h... (cached) yes checking for errno.h... (cached) yes checking for malloc.h... (cached) yes checking for memory.h... (cached) yes checking for stdlib.h... (cached) yes checking for stdio.h... (cached) yes checking for unistd.h... (cached) yes checking for dl.h... (cached) no checking for sys/dl.h... (cached) no checking for dld.h... (cached) no checking for mach-o/dyld.h... (cached) no checking for string.h... (cached) yes checking for strchr... (cached) yes checking for strrchr... (cached) yes checking for memcpy... (cached) yes checking for memmove... (cached) yes checking for strcmp... (cached) yes checking for closedir... (cached) yes checking for opendir... (cached) yes checking for readdir... (cached) yes configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.compress.bzlib2 (/home/steven/2.0/gb.compress.bzlib2) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for bzlib2 compression headers... (cached) /usr/include/ checking for bzlib2 compression libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.compress.zlib (/home/steven/2.0/gb.compress.zlib) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for zlib compression headers... (cached) /usr/include/ checking for zlib compression libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.db.mysql (/home/steven/2.0/gb.db.mysql) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for MySQL driver headers... (cached) /usr/include/mysql/ checking for MySQL driver libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.db.odbc (/home/steven/2.0/gb.db.odbc) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for ODBC driver headers... (cached) no checking for ODBC driver libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.db.postgresql (/home/steven/2.0/gb.db.postgresql) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for PostgreSQL driver headers... (cached) no checking for PostgreSQL driver libraries... (cached) no configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.db.sqlite2 (/home/steven/2.0/gb.db.sqlite2) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for SQLite 2 driver headers... (cached) no checking for SQLite 2 driver libraries... (cached) no configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.db.sqlite3 (/home/steven/2.0/gb.db.sqlite3) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for SQLite 3 driver headers... (cached) /usr/include/ checking for SQLite 3 driver libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.db.firebird (/home/steven/2.0/gb.db.firebird) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for firebird driver headers... (cached) checking for firebird driver libraries... (cached) no configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.gtk (/home/steven/2.0/gb.gtk) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for X... (cached) libraries , headers checking for gethostbyname... (cached) yes checking for connect... (cached) yes checking for remove... (cached) yes checking for shmat... (cached) yes checking for IceConnectionNumber in -lICE... (cached) yes checking for GTK+ toolkit component with pkg-config... OK configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/ext/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.gtk.svg (/home/steven/2.0/gb.gtk.svg) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for X... (cached) libraries , headers checking for gethostbyname... (cached) yes checking for connect... (cached) yes checking for remove... (cached) yes checking for shmat... (cached) yes checking for IceConnectionNumber in -lICE... (cached) yes checking for GTK+ component component with pkg-config... OK checking for SVG loader for GTK+ component with pkg-config... OK configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.pdf (/home/steven/2.0/gb.pdf) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for Poppler PDF library component with pkg-config... OK configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.net (/home/steven/2.0/gb.net) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for Networking component headers... (cached) checking for Networking component libraries... (cached) configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.net.curl (/home/steven/2.0/gb.net.curl) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for Advanced networking component component with pkg-config... OK configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.net.smtp (/home/steven/2.0/gb.net.smtp) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for STMP client component with pkg-config... OK configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.pcre (/home/steven/2.0/gb.pcre) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for Perl Compatible Regular Expression component headers... (cached) /usr/include/ checking for Perl Compatible Regular Expression component libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.qt (/home/steven/2.0/gb.qt) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for X... (cached) libraries , headers checking for gethostbyname... (cached) yes checking for connect... (cached) yes checking for remove... (cached) yes checking for shmat... (cached) yes checking for IceConnectionNumber in -lICE... (cached) yes checking for QT meta-object compiler... (cached) /usr/bin/ checking for QT component headers... (cached) /usr/include/ /usr/lib/qt3/include/ checking for QT component libraries... (cached) /usr/lib/qt3/lib/ checking for QT OpenGL component headers... (cached) /usr/include/GL/ checking for QT OpenGL component libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/share/Makefile config.status: creating src/ext/Makefile config.status: creating src/opengl/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.qte (/home/steven/2.0/gb.qte) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for QT meta-object compiler... (cached) /usr/bin/ checking for QT/Embedded component headers... (cached) /usr/lib/qt3/include/ checking for QT/Embedded component libraries... (cached) no configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/share/Makefile config.status: creating src/ext/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.qt.kde (/home/steven/2.0/gb.qt.kde) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for X... (cached) libraries , headers checking for gethostbyname... (cached) yes checking for connect... (cached) yes checking for remove... (cached) yes checking for shmat... (cached) yes checking for IceConnectionNumber in -lICE... (cached) yes checking for QT meta-object compiler... (cached) /usr/bin/ checking for QT component headers... (cached) /usr/include/ /usr/lib/qt3/include/ checking for QT component libraries... (cached) /usr/lib/qt3/lib/ checking for KDE 3.x component headers... (cached) /opt/kde3/include/ checking for KDE 3.x component libraries... (cached) /opt/kde3/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/html/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.sdl (/home/steven/2.0/gb.sdl) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for X... (cached) libraries , headers checking for gethostbyname... (cached) yes checking for connect... (cached) yes checking for remove... (cached) yes checking for shmat... (cached) yes checking for IceConnectionNumber in -lICE... (cached) yes checking for sdl-config... (cached) /usr/bin/sdl-config checking for SDL - version >= 1.2.8... yes checking for XcursorLibraryLoadCursor in -lXcursor... (cached) yes checking for XftListFonts in -lXft... (cached) yes checking for SDL headers... (cached) /usr/include/SDL/ checking for SDL libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.sdl.sound (/home/steven/2.0/gb.sdl.sound) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for sdl-config... (cached) /usr/bin/sdl-config checking for SDL - version >= 1.2.8... yes checking for SDL sound headers... (cached) /usr/include/SDL/ checking for SDL sound libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.xml (/home/steven/2.0/gb.xml) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for XML parser component component with pkg-config... OK checking for XSLT/XML parser component component with pkg-config... OK configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/xslt/Makefile config.status: creating src/rpc/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.v4l (/home/steven/2.0/gb.v4l) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for Video For Linux component headers... (cached) /usr/include/ checking for Video For Linux component libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.crypt (/home/steven/2.0/gb.crypt) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for DES/MD5 crypt component headers... (cached) /usr/include/ checking for DES/MD5 crypt component libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.opengl (/home/steven/2.0/gb.opengl) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for X... (cached) libraries , headers checking for gethostbyname... (cached) yes checking for connect... (cached) yes checking for remove... (cached) yes checking for shmat... (cached) yes checking for IceConnectionNumber in -lICE... (cached) yes checking for GL/glx.h... (cached) yes checking for openGL headers... (cached) /usr/include/GL/ checking for openGL libraries... (cached) /usr/lib/ configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.corba (/home/steven/2.0/gb.corba) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for CORBA component headers... (cached) no checking for CORBA component libraries... (cached) no configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.image (/home/steven/2.0/gb.image) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for Image processing component headers... (cached) checking for Image processing component libraries... (cached) configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in gb.desktop (/home/steven/2.0/gb.desktop) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/grep -E checking for ld used by gcc... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking for /usr/i586-suse-linux/bin/ld option to reload object files... (cached) -r checking for BSD-compatible nm... (cached) /usr/bin/nm -B checking how to recognize dependent libraries... (cached) pass_all checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for dlfcn.h... (cached) yes checking how to run the C++ preprocessor... (cached) g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... (cached) no checking whether accepts -g... (cached) no checking the maximum length of command line arguments... (cached) 1572864 checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for objdir... (cached) .libs checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking for strip... (cached) strip checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for shl_load... (cached) no checking for shl_load in -ldld... (cached) no checking for dlopen... (cached) no checking for dlopen in -ldl... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... (cached) /usr/i586-suse-linux/bin/ld checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking for X... (cached) libraries , headers checking for gethostbyname... (cached) yes checking for connect... (cached) yes checking for remove... (cached) yes checking for shmat... (cached) yes checking for IceConnectionNumber in -lICE... (cached) yes checking for XTestQueryExtension in -lXtst... (cached) yes checking for Desktop-neutral routines headers... (cached) checking for Desktop-neutral routines libraries... (cached) configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands === configuring in comp (/home/steven/2.0/comp) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged === configuring in app (/home/steven/2.0/app) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for xdg-mime... (cached) xdg-mime configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged === configuring in examples (/home/steven/2.0/examples) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged === configuring in help (/home/steven/2.0/help) configure: running /bin/sh ./configure '--prefix=/usr/local' --cache-file=../config.cache --srcdir=. configure: loading cache ../config.cache checking for a BSD-compatible install... (cached) /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) gawk checking whether make sets $(MAKE)... (cached) yes checking build system type... (cached) i686-pc-linux-gnu checking for style of include used by make... GNU checking whether to enable maintainer-specific portions of Makefiles... no checking host system type... (cached) i686-pc-linux-gnu checking for gcc... (cached) gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... (cached) o checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking how to run the C preprocessor... (cached) gcc -E checking for g++... (cached) g++ checking whether we are using the GNU C++ compiler... (cached) yes checking whether g++ accepts -g... (cached) yes checking dependency style of g++... (cached) gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for setenv... (cached) yes checking for unsetenv... (cached) yes checking for getdomainname... (cached) yes checking for getpt... (cached) yes checking for ccache... no checking for main in -lm... (cached) yes checking for main in -lz... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes checking target system... LINUX checking which extension is used for shared libraries... .so checking for threading compiler options... -D_REENTRANT checking for threading linker options... -lpthread checking for mathematic libraries... -lm checking for external gettext library... checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden configure: creating ./config.status config.status: creating Makefile config.status: creating help/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands ************************************************************ THESE COMPONENTS ARE DISABLED: - gb.corba - gb.db.firebird - gb.db.odbc - gb.db.postgresql - gb.db.sqlite2 - gb.qte ************************************************************ -------------- next part -------------- make all-recursive make[1]: entrant dans le r?pertoire ? /home/steven/2.0 ? Making all in main make[2]: entrant dans le r?pertoire ? /home/steven/2.0/main ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/main ? Making all in libltdl make[4]: entrant dans le r?pertoire ? /home/steven/2.0/main/libltdl ? make all-am make[5]: entrant dans le r?pertoire ? /home/steven/2.0/main/libltdl ? /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -g -O2 -c -o ltdl.lo ltdl.c gcc -DHAVE_CONFIG_H -I. -g -O2 -c ltdl.c -fPIC -DPIC -o .libs/ltdl.o gcc -DHAVE_CONFIG_H -I. -g -O2 -c ltdl.c -o ltdl.o >/dev/null 2>&1 /bin/sh ./libtool --tag=CC --mode=link gcc -g -O2 -o libltdlc.la ltdl.lo -ldl rm -fr .libs/libltdlc.a .libs/libltdlc.la ar cru .libs/libltdlc.a .libs/ltdl.o ranlib .libs/libltdlc.a creating libltdlc.la (cd .libs && rm -f libltdlc.la && ln -s ../libltdlc.la libltdlc.la) make[5]: quittant le r?pertoire ? /home/steven/2.0/main/libltdl ? make[4]: quittant le r?pertoire ? /home/steven/2.0/main/libltdl ? Making all in gbx make[4]: entrant dans le r?pertoire ? /home/steven/2.0/main/gbx ? make[4]: Rien ? faire pour ? all ?. make[4]: quittant le r?pertoire ? /home/steven/2.0/main/gbx ? Making all in gbc make[4]: entrant dans le r?pertoire ? /home/steven/2.0/main/gbc ? make[4]: Rien ? faire pour ? all ?. make[4]: quittant le r?pertoire ? /home/steven/2.0/main/gbc ? Making all in lib make[4]: entrant dans le r?pertoire ? /home/steven/2.0/main/lib ? Making all in debug make[5]: entrant dans le r?pertoire ? /home/steven/2.0/main/lib/debug ? make[5]: Rien ? faire pour ? all ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/main/lib/debug ? Making all in eval make[5]: entrant dans le r?pertoire ? /home/steven/2.0/main/lib/eval ? make[5]: Rien ? faire pour ? all ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/main/lib/eval ? Making all in db make[5]: entrant dans le r?pertoire ? /home/steven/2.0/main/lib/db ? make[5]: Rien ? faire pour ? all ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/main/lib/db ? Making all in compress make[5]: entrant dans le r?pertoire ? /home/steven/2.0/main/lib/compress ? make[5]: Rien ? faire pour ? all ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/main/lib/compress ? Making all in vb make[5]: entrant dans le r?pertoire ? /home/steven/2.0/main/lib/vb ? make[5]: Rien ? faire pour ? all ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/main/lib/vb ? Making all in option make[5]: entrant dans le r?pertoire ? /home/steven/2.0/main/lib/option ? make[5]: Rien ? faire pour ? all ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/main/lib/option ? Making all in draw make[5]: entrant dans le r?pertoire ? /home/steven/2.0/main/lib/draw ? make[5]: Rien ? faire pour ? all ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/main/lib/draw ? Making all in gui make[5]: entrant dans le r?pertoire ? /home/steven/2.0/main/lib/gui ? make[5]: Rien ? faire pour ? all ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/main/lib/gui ? make[5]: entrant dans le r?pertoire ? /home/steven/2.0/main/lib ? make[5]: Rien ? faire pour ? all-am ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/main/lib ? make[4]: quittant le r?pertoire ? /home/steven/2.0/main/lib ? Making all in share make[4]: entrant dans le r?pertoire ? /home/steven/2.0/main/share ? make[4]: Rien ? faire pour ? all ?. make[4]: quittant le r?pertoire ? /home/steven/2.0/main/share ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/main ? make[4]: quittant le r?pertoire ? /home/steven/2.0/main ? make[3]: quittant le r?pertoire ? /home/steven/2.0/main ? make[2]: quittant le r?pertoire ? /home/steven/2.0/main ? Making all in gb.compress.bzlib2 make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.compress.bzlib2 ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.compress.bzlib2 ? Making all in src make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.compress.bzlib2/src ? make[4]: Rien ? faire pour ? all ?. make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.compress.bzlib2/src ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.compress.bzlib2 ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.compress.bzlib2 ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.compress.bzlib2 ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.compress.bzlib2 ? Making all in gb.compress.zlib make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.compress.zlib ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.compress.zlib ? Making all in src make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.compress.zlib/src ? make[4]: Rien ? faire pour ? all ?. make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.compress.zlib/src ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.compress.zlib ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.compress.zlib ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.compress.zlib ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.compress.zlib ? Making all in gb.db.mysql make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.mysql ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.mysql ? Making all in src make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.mysql/src ? make[4]: Rien ? faire pour ? all ?. make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.db.mysql/src ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.mysql ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.db.mysql ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.db.mysql ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.db.mysql ? Making all in gb.db.odbc make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.odbc ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.odbc ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.odbc ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.db.odbc ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.db.odbc ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.db.odbc ? Making all in gb.db.postgresql make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.postgresql ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.postgresql ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.postgresql ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.db.postgresql ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.db.postgresql ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.db.postgresql ? Making all in gb.db.sqlite3 make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.sqlite3 ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.sqlite3 ? Making all in src make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.sqlite3/src ? make[4]: Rien ? faire pour ? all ?. make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.db.sqlite3/src ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.sqlite3 ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.db.sqlite3 ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.db.sqlite3 ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.db.sqlite3 ? Making all in gb.db.sqlite2 make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.sqlite2 ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.sqlite2 ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.sqlite2 ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.db.sqlite2 ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.db.sqlite2 ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.db.sqlite2 ? Making all in gb.db.firebird make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.firebird ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.firebird ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.db.firebird ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.db.firebird ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.db.firebird ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.db.firebird ? Making all in gb.gtk make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.gtk ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.gtk ? Making all in src make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.gtk/src ? Making all in ext make[5]: entrant dans le r?pertoire ? /home/steven/2.0/gb.gtk/src/ext ? make[5]: Rien ? faire pour ? all ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/gb.gtk/src/ext ? make[5]: entrant dans le r?pertoire ? /home/steven/2.0/gb.gtk/src ? make[5]: Rien ? faire pour ? all-am ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/gb.gtk/src ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.gtk/src ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.gtk ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.gtk ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.gtk ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.gtk ? Making all in gb.net make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net ? Making all in src make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net/src ? make[4]: Rien ? faire pour ? all ?. make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.net/src ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.net ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.net ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.net ? Making all in gb.net.curl make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net.curl ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net.curl ? Making all in src make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net.curl/src ? make[4]: Rien ? faire pour ? all ?. make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.net.curl/src ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net.curl ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.net.curl ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.net.curl ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.net.curl ? Making all in gb.net.smtp make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net.smtp ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net.smtp ? Making all in src make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net.smtp/src ? make[4]: Rien ? faire pour ? all ?. make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.net.smtp/src ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.net.smtp ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.net.smtp ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.net.smtp ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.net.smtp ? Making all in gb.pcre make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.pcre ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.pcre ? Making all in src make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.pcre/src ? make[4]: Rien ? faire pour ? all ?. make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.pcre/src ? make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.pcre ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.pcre ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.pcre ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.pcre ? Making all in gb.qt make[2]: entrant dans le r?pertoire ? /home/steven/2.0/gb.qt ? make all-recursive make[3]: entrant dans le r?pertoire ? /home/steven/2.0/gb.qt ? Making all in src make[4]: entrant dans le r?pertoire ? /home/steven/2.0/gb.qt/src ? Making all in share make[5]: entrant dans le r?pertoire ? /home/steven/2.0/gb.qt/src/share ? make[5]: Rien ? faire pour ? all ?. make[5]: quittant le r?pertoire ? /home/steven/2.0/gb.qt/src/share ? Making all in ext make[5]: entrant dans le r?pertoire ? /home/steven/2.0/gb.qt/src/ext ? /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I/usr/lib/qt3/include/ -I -D_REENTRANT -I../../share -I../../src/share -pipe -Wall -fno-exceptions -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -fno-omit-frame-pointer -MT CDial_moc.lo -MD -MP -MF .deps/CDial_moc.Tpo -c -o CDial_moc.lo CDial_moc.cpp g++ -DHAVE_CONFIG_H -I. -I../.. -I/usr/lib/qt3/include/ -I -D_REENTRANT -I../../share -I../../src/share -pipe -Wall -fno-exceptions -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -fno-omit-frame-pointer -MT CDial_moc.lo -MD -MP -MF .deps/CDial_moc.Tpo -c CDial_moc.cpp -fPIC -DPIC -o .libs/CDial_moc.o make[5]: quittant le r?pertoire ? /home/steven/2.0/gb.qt/src/ext ? make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.qt/src ? make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.qt ? make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.qt ? make[1]: quittant le r?pertoire ? /home/steven/2.0 ? From gambas at ...1... Sat Jul 26 14:32:49 2008 From: gambas at ...1... (Benoit Minisini) Date: Sat, 26 Jul 2008 14:32:49 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <1217063484.5411.12.camel@...1936...> References: <1216988093.3554.11.camel@...1936...> <200807251852.48996.gambas@...1...> <1217063484.5411.12.camel@...1936...> Message-ID: <200807261432.49359.gambas@...1...> On samedi 26 juillet 2008, Steven Lobbezoo wrote: > Hi Benoit, > > Correct, I have QT3 and QT4 installed. > > I did the following : > ./reconf-all > gb.qte.am:3: `%'-style pattern rules are a GNU make extension > src/Makefile.am:3: `gb.qte.am' included from here > gb.qte.am:3: `%'-style pattern rules are a GNU make extension > src/ext/Makefile.am:3: `gb.qte.am' included from here > > Then : > steven at ...1948...:~/2.0> ./configure -C > temp.txt > configure: WARNING: *** foreign function interface is disabled > configure: WARNING: *** ODBC driver is disabled > configure: WARNING: *** PostgreSQL driver is disabled > configure: WARNING: *** SQLite 2 driver is disabled > configure: WARNING: *** firebird driver is disabled > configure: WARNING: *** QT/Embedded component is disabled > configure: WARNING: *** CORBA component is disabled > > The temp.txt is attached ! > > Then : > make > temp2.txt > CDial_moc.cpp:12:2: error: #error "The header file 'CDial.h' doesn't > include ." > CDial_moc.cpp:20: error: expected constructor, destructor, or type > conversion before 'static' > CDial_moc.cpp:40: error: 'const QMetaObject CDial::staticMetaObject' is > not a static member of 'class CDial' > CDial_moc.cpp:40: error: variable 'const QMetaObject > CDial::staticMetaObject' has initializer but incomplete type > CDial_moc.cpp:42: error: 'qt_meta_data_CDial' was not declared in this > scope > CDial_moc.cpp:45: error: prototype for 'const QMetaObject* > CDial::metaObject() const' does not match any in class 'CDial' > CDial.h:51: error: candidate is: virtual QMetaObject* > CDial::metaObject() const > CDial_moc.cpp:50: error: no 'void* CDial::qt_metacast(const char*)' > member function declared in class 'CDial' > CDial_moc.cpp:58: error: 'int CDial::qt_metacall' is not a static member > of 'class CDial' > CDial_moc.cpp:58: error: incomplete type 'QMetaObject' used in nested > name specifier > CDial_moc.cpp:58: error: expected primary-expression before 'int' > CDial_moc.cpp:58: error: expected primary-expression before 'void' > CDial_moc.cpp:58: error: initializer expression list treated as compound > expression > CDial_moc.cpp:59: error: expected ',' or ';' before '{' token > make[5]: *** [CDial_moc.lo] Erreur 1 > make[4]: *** [all-recursive] Erreur 1 > make[3]: *** [all-recursive] Erreur 1 > make[2]: *** [all] Erreur 2 > make[1]: *** [all-recursive] Erreur 1 > make: *** [all] Erreur 2 > /~/2.0> > > The temp2.txt file is also attached. > > Hope this helps > > Steven > As a temporary workaround, you can define the QTDIR environment variable so that it points at QT installation directory. For example, if QT3 is installed in /usr/lib/qt3, as in Mandriva, do: $ QTDIR=/usr/lib/qt3 ./configure I will modify the configure script so that it always look in "qt3" and "qt" directories, and no any directory whose name begins with "qt". Regards, -- Benoit Minisini From steven at ...1652... Sat Jul 26 16:12:04 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Sat, 26 Jul 2008 16:12:04 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807261432.49359.gambas@...1...> References: <1216988093.3554.11.camel@...1936...> <200807251852.48996.gambas@...1...> <1217063484.5411.12.camel@...1936...> <200807261432.49359.gambas@...1...> Message-ID: <1217081524.5411.27.camel@...1936...> I tried that, h?las to no avail. the result is : Making all in ext make[5]: entrant dans le r?pertoire ? /home/steven/2.0/gb.qt/src/ext ? /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../.. -I/usr/lib/qt3/include/ -I -D_REENTRANT -I../../share -I../../src/share -pipe -Wall -fno-exceptions -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -fno-omit-frame-pointer -MT CDial_moc.lo -MD -MP -MF .deps/CDial_moc.Tpo -c -o CDial_moc.lo CDial_moc.cpp g++ -DHAVE_CONFIG_H -I. -I../.. -I/usr/lib/qt3/include/ -I -D_REENTRANT -I../../share -I../../src/share -pipe -Wall -fno-exceptions -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os -fno-omit-frame-pointer -MT CDial_moc.lo -MD -MP -MF .deps/CDial_moc.Tpo -c CDial_moc.cpp -fPIC -DPIC -o .libs/CDial_moc.o CDial_moc.cpp:12:2: error: #error "The header file 'CDial.h' doesn't include ." CDial_moc.cpp:20: error: expected constructor, destructor, or type conversion before 'static' CDial_moc.cpp:40: error: 'const QMetaObject CDial::staticMetaObject' is not a static member of 'class CDial' CDial_moc.cpp:40: error: variable 'const QMetaObject CDial::staticMetaObject' has initializer but incomplete type CDial_moc.cpp:42: error: 'qt_meta_data_CDial' was not declared in this scope CDial_moc.cpp:45: error: prototype for 'const QMetaObject* CDial::metaObject() const' does not match any in class 'CDial' CDial.h:51: error: candidate is: virtual QMetaObject* CDial::metaObject() const CDial_moc.cpp:50: error: no 'void* CDial::qt_metacast(const char*)' member function declared in class 'CDial' CDial_moc.cpp:58: error: 'int CDial::qt_metacall' is not a static member of 'class CDial' CDial_moc.cpp:58: error: incomplete type 'QMetaObject' used in nested name specifier CDial_moc.cpp:58: error: expected primary-expression before 'int' CDial_moc.cpp:58: error: expected primary-expression before 'void' CDial_moc.cpp:58: error: initializer expression list treated as compound expression CDial_moc.cpp:59: error: expected ',' or ';' before '{' token make[5]: *** [CDial_moc.lo] Erreur 1 make[5]: quittant le r?pertoire ? /home/steven/2.0/gb.qt/src/ext ? make[4]: *** [all-recursive] Erreur 1 make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.qt/src ? make[3]: *** [all-recursive] Erreur 1 make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.qt ? make[2]: *** [all] Erreur 2 make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.qt ? make[1]: *** [all-recursive] Erreur 1 make[1]: quittant le r?pertoire ? /home/steven/2.0 ? make: *** [all] Erreur 2 So, same error. I did ./reconf-all before running ?$ QTDIR=/usr/lib/qt3 ./configure I'll try to completely redo the whole (rm -R 2.0 loading from trunk, etc.), if that changes anything i'll send a new message. Regards, Steven Le samedi 26 juillet 2008 ? 14:32 +0200, Benoit Minisini a ?crit : > On samedi 26 juillet 2008, Steven Lobbezoo wrote: > > Hi Benoit, > > > > Correct, I have QT3 and QT4 installed. > > > > I did the following : > > ./reconf-all > > gb.qte.am:3: `%'-style pattern rules are a GNU make extension > > src/Makefile.am:3: `gb.qte.am' included from here > > gb.qte.am:3: `%'-style pattern rules are a GNU make extension > > src/ext/Makefile.am:3: `gb.qte.am' included from here > > > > Then : > > steven at ...1948...:~/2.0> ./configure -C > temp.txt > > configure: WARNING: *** foreign function interface is disabled > > configure: WARNING: *** ODBC driver is disabled > > configure: WARNING: *** PostgreSQL driver is disabled > > configure: WARNING: *** SQLite 2 driver is disabled > > configure: WARNING: *** firebird driver is disabled > > configure: WARNING: *** QT/Embedded component is disabled > > configure: WARNING: *** CORBA component is disabled > > > > The temp.txt is attached ! > > > > Then : > > make > temp2.txt > > CDial_moc.cpp:12:2: error: #error "The header file 'CDial.h' doesn't > > include ." > > CDial_moc.cpp:20: error: expected constructor, destructor, or type > > conversion before 'static' > > CDial_moc.cpp:40: error: 'const QMetaObject CDial::staticMetaObject' is > > not a static member of 'class CDial' > > CDial_moc.cpp:40: error: variable 'const QMetaObject > > CDial::staticMetaObject' has initializer but incomplete type > > CDial_moc.cpp:42: error: 'qt_meta_data_CDial' was not declared in this > > scope > > CDial_moc.cpp:45: error: prototype for 'const QMetaObject* > > CDial::metaObject() const' does not match any in class 'CDial' > > CDial.h:51: error: candidate is: virtual QMetaObject* > > CDial::metaObject() const > > CDial_moc.cpp:50: error: no 'void* CDial::qt_metacast(const char*)' > > member function declared in class 'CDial' > > CDial_moc.cpp:58: error: 'int CDial::qt_metacall' is not a static member > > of 'class CDial' > > CDial_moc.cpp:58: error: incomplete type 'QMetaObject' used in nested > > name specifier > > CDial_moc.cpp:58: error: expected primary-expression before 'int' > > CDial_moc.cpp:58: error: expected primary-expression before 'void' > > CDial_moc.cpp:58: error: initializer expression list treated as compound > > expression > > CDial_moc.cpp:59: error: expected ',' or ';' before '{' token > > make[5]: *** [CDial_moc.lo] Erreur 1 > > make[4]: *** [all-recursive] Erreur 1 > > make[3]: *** [all-recursive] Erreur 1 > > make[2]: *** [all] Erreur 2 > > make[1]: *** [all-recursive] Erreur 1 > > make: *** [all] Erreur 2 > > /~/2.0> > > > > The temp2.txt file is also attached. > > > > Hope this helps > > > > Steven > > > > As a temporary workaround, you can define the QTDIR environment variable so > that it points at QT installation directory. > > For example, if QT3 is installed in /usr/lib/qt3, as in Mandriva, do: > > $ QTDIR=/usr/lib/qt3 ./configure > > I will modify the configure script so that it always look in "qt3" and "qt" > directories, and no any directory whose name begins with "qt". > > Regards, > From gambas at ...1... Sat Jul 26 16:20:40 2008 From: gambas at ...1... (Benoit Minisini) Date: Sat, 26 Jul 2008 16:20:40 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <1217081524.5411.27.camel@...1936...> References: <1216988093.3554.11.camel@...1936...> <200807261432.49359.gambas@...1...> <1217081524.5411.27.camel@...1936...> Message-ID: <200807261620.40030.gambas@...1...> On samedi 26 juillet 2008, Steven Lobbezoo wrote: > I tried that, h?las to no avail. > > the result is : > Making all in ext > make[5]: entrant dans le r?pertoire ? /home/steven/2.0/gb.qt/src/ext ? > /bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. > -I../.. -I/usr/lib/qt3/include/ -I -D_REENTRANT -I../../share > -I../../src/share -pipe -Wall -fno-exceptions -Wno-unused-value > -fsigned-char -fvisibility=hidden -g -Os -fno-omit-frame-pointer -MT > CDial_moc.lo -MD -MP -MF .deps/CDial_moc.Tpo -c -o CDial_moc.lo > CDial_moc.cpp > g++ -DHAVE_CONFIG_H -I. -I../.. -I/usr/lib/qt3/include/ -I -D_REENTRANT > -I../../share -I../../src/share -pipe -Wall -fno-exceptions > -Wno-unused-value -fsigned-char -fvisibility=hidden -g -Os > -fno-omit-frame-pointer -MT CDial_moc.lo -MD -MP -MF .deps/CDial_moc.Tpo > -c CDial_moc.cpp -fPIC -DPIC -o .libs/CDial_moc.o > CDial_moc.cpp:12:2: error: #error "The header file 'CDial.h' doesn't > include ." > CDial_moc.cpp:20: error: expected constructor, destructor, or type > conversion before 'static' > CDial_moc.cpp:40: error: 'const QMetaObject CDial::staticMetaObject' is > not a static member of 'class CDial' > CDial_moc.cpp:40: error: variable 'const QMetaObject > CDial::staticMetaObject' has initializer but incomplete type > CDial_moc.cpp:42: error: 'qt_meta_data_CDial' was not declared in this > scope > CDial_moc.cpp:45: error: prototype for 'const QMetaObject* > CDial::metaObject() const' does not match any in class 'CDial' > CDial.h:51: error: candidate is: virtual QMetaObject* > CDial::metaObject() const > CDial_moc.cpp:50: error: no 'void* CDial::qt_metacast(const char*)' > member function declared in class 'CDial' > CDial_moc.cpp:58: error: 'int CDial::qt_metacall' is not a static member > of 'class CDial' > CDial_moc.cpp:58: error: incomplete type 'QMetaObject' used in nested > name specifier > CDial_moc.cpp:58: error: expected primary-expression before 'int' > CDial_moc.cpp:58: error: expected primary-expression before 'void' > CDial_moc.cpp:58: error: initializer expression list treated as compound > expression > CDial_moc.cpp:59: error: expected ',' or ';' before '{' token > make[5]: *** [CDial_moc.lo] Erreur 1 > make[5]: quittant le r?pertoire ? /home/steven/2.0/gb.qt/src/ext ? > make[4]: *** [all-recursive] Erreur 1 > make[4]: quittant le r?pertoire ? /home/steven/2.0/gb.qt/src ? > make[3]: *** [all-recursive] Erreur 1 > make[3]: quittant le r?pertoire ? /home/steven/2.0/gb.qt ? > make[2]: *** [all] Erreur 2 > make[2]: quittant le r?pertoire ? /home/steven/2.0/gb.qt ? > make[1]: *** [all-recursive] Erreur 1 > make[1]: quittant le r?pertoire ? /home/steven/2.0 ? > make: *** [all] Erreur 2 > > So, same error. I did ./reconf-all before running ?$ > QTDIR=/usr/lib/qt3 ./configure > I'll try to completely redo the whole (rm -R 2.0 loading from trunk, > etc.), if that changes > anything i'll send a new message. > > Regards, > Steven > Did you check the output of './configure', and the path it detected for moc? -- Benoit Minisini From gambas at ...1... Sat Jul 26 16:35:41 2008 From: gambas at ...1... (Benoit Minisini) Date: Sat, 26 Jul 2008 16:35:41 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807261620.40030.gambas@...1...> References: <1216988093.3554.11.camel@...1936...> <1217081524.5411.27.camel@...1936...> <200807261620.40030.gambas@...1...> Message-ID: <200807261635.41963.gambas@...1...> On samedi 26 juillet 2008, Benoit Minisini wrote: > > Did you check the output of './configure', and the path it detected for > moc? I have committed a fix to the svn repository, so you could checkout the last 2.x version and try to compile it. It should fix your problem, unless there is another error somewhere! Regards, -- Benoit Minisini From steven at ...1652... Sat Jul 26 16:47:32 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Sat, 26 Jul 2008 16:47:32 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807261635.41963.gambas@...1...> References: <1216988093.3554.11.camel@...1936...> <1217081524.5411.27.camel@...1936...> <200807261620.40030.gambas@...1...> <200807261635.41963.gambas@...1...> Message-ID: <1217083652.5411.30.camel@...1936...> I'll do that, just to be sure : svn checkout https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/branches/2.0 is the right command is it ? Regards, Steven Le samedi 26 juillet 2008 ? 16:35 +0200, Benoit Minisini a ?crit : > On samedi 26 juillet 2008, Benoit Minisini wrote: > > > > Did you check the output of './configure', and the path it detected for > > moc? > > I have committed a fix to the svn repository, so you could checkout the last > 2.x version and try to compile it. It should fix your problem, unless there > is another error somewhere! > > Regards, > From gambas at ...1... Sat Jul 26 16:54:35 2008 From: gambas at ...1... (Benoit Minisini) Date: Sat, 26 Jul 2008 16:54:35 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <1217083652.5411.30.camel@...1936...> References: <1216988093.3554.11.camel@...1936...> <200807261635.41963.gambas@...1...> <1217083652.5411.30.camel@...1936...> Message-ID: <200807261654.35939.gambas@...1...> On samedi 26 juillet 2008, Steven Lobbezoo wrote: > I'll do that, just to be sure : > svn checkout > https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/branches/2.0 > is the right command is it ? > > Regards, > Steven > It is! -- Benoit Minisini From steven at ...1652... Sat Jul 26 17:35:54 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Sat, 26 Jul 2008 17:35:54 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807261654.35939.gambas@...1...> References: <1216988093.3554.11.camel@...1936...> <200807261635.41963.gambas@...1...> <1217083652.5411.30.camel@...1936...> <200807261654.35939.gambas@...1...> Message-ID: <1217086554.5411.34.camel@...1936...> Ok, that worked, I compiled and all went ok ........ However... The signal 11 is still there. Regards, Steven Le samedi 26 juillet 2008 ? 16:54 +0200, Benoit Minisini a ?crit : > On samedi 26 juillet 2008, Steven Lobbezoo wrote: > > I'll do that, just to be sure : > > svn checkout > > https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/branches/2.0 > > is the right command is it ? > > > > Regards, > > Steven > > > > It is! > From gambas at ...1... Sat Jul 26 18:46:31 2008 From: gambas at ...1... (Benoit Minisini) Date: Sat, 26 Jul 2008 18:46:31 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <1217086554.5411.34.camel@...1936...> References: <1216988093.3554.11.camel@...1936...> <200807261654.35939.gambas@...1...> <1217086554.5411.34.camel@...1936...> Message-ID: <200807261846.31911.gambas@...1...> On samedi 26 juillet 2008, Steven Lobbezoo wrote: > Ok, that worked, I compiled and all went ok ........ > However... The signal 11 is still there. > Regards, > > Steven > Please provide me the backtrace information as explained on the troubleshooting page of the web site. Thanks in advance. Regards, -- Benoit Minisini From steven at ...1652... Sun Jul 27 13:55:39 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Sun, 27 Jul 2008 13:55:39 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807261846.31911.gambas@...1...> References: <1216988093.3554.11.camel@...1936...> <200807261654.35939.gambas@...1...> <1217086554.5411.34.camel@...1936...> <200807261846.31911.gambas@...1...> Message-ID: <1217159739.5908.21.camel@...1936...> Ok, here is it, but i suppose i'm missing some files for gdb steven at ...1948...:~/request_dev> gbc2 -agt OK steven at ...1948...:~/request_dev> gdb gbx2 GNU gdb 6.8 Copyright (C) 2008 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "i586-suse-linux"... (gdb) set args -p (gdb) run Starting program: /usr/local/bin/gbx2 -p [Thread debugging using libthread_db enabled] Error while reading shared library symbols: Cannot find new threads: generic error Cannot find new threads: generic error (gdb) Steven Le samedi 26 juillet 2008 ? 18:46 +0200, Benoit Minisini a ?crit : > On samedi 26 juillet 2008, Steven Lobbezoo wrote: > > Ok, that worked, I compiled and all went ok ........ > > However... The signal 11 is still there. > > Regards, > > > > Steven > > > > Please provide me the backtrace information as explained on the > troubleshooting page of the web site. > > Thanks in advance. > > Regards, > From john36 at ...1947... Sun Jul 27 13:51:56 2008 From: john36 at ...1947... (John K) Date: Sun, 27 Jul 2008 21:51:56 +1000 Subject: [Gambas-user] Using DataSource et al In-Reply-To: <200807220114.26375.gambas@...1...> References: <4885054C.8000505@...1947...> <200807220114.26375.gambas@...1...> Message-ID: <488C615C.1090906@...1947...> Hi Benoit, After a few nights dissecting the example and quite a few cups of coffee I finally managed to figure out how DataSource works. I still don't know why, but that will come latter. Thanks for your help, Regards, John K. Benoit Minisini wrote: > On lundi 21 juillet 2008, John K wrote: > >> Hi, >> I'm new to Gambas so maybe I'm trying to run before I can walk. I'm in >> the process of writing an application which uses sqlite as its database. >> I've managed to create the database and add data to its tables but now >> I want to read out the data using datasource, datacontrol & databrowser. >> I've scanned the Forum without any luck and have bought "A Beginners >> Guide to Gambas" but this doesn't cover this subject in any detail. >> Does anyone know where I can find a simple example, (maybe using Name, >> Registration Number & Date of Birth) which demonstrates the use of these >> tools or can help me in any other way? >> Thanks ........ >> >> > > The Database example has a form that uses these controls. > > Regards, > > From john36 at ...1947... Sun Jul 27 13:56:19 2008 From: john36 at ...1947... (John K) Date: Sun, 27 Jul 2008 21:56:19 +1000 Subject: [Gambas-user] Using DataSource et al In-Reply-To: <200807220934.48224.rterry@...1946...> References: <4885054C.8000505@...1947...> <200807220934.48224.rterry@...1946...> Message-ID: <488C6263.1040108@...1947...> Hi Richard, At long last I've managed to figure out how DataSource works. Thanks for suggesting another method. I'll keep it in mind for when I get more adventurous. Regards, John K. richard terry wrote: > On Tue, 22 Jul 2008 07:53:16 am John K wrote: > >> Hi, >> I'm new to Gambas so maybe I'm trying to run before I can walk. I'm in >> the process of writing an application which uses sqlite as its database. >> I've managed to create the database and add data to its tables but now >> I want to read out the data using datasource, datacontrol & databrowser. >> I've scanned the Forum without any luck and have bought "A Beginners >> Guide to Gambas" but this doesn't cover this subject in any detail. >> Does anyone know where I can find a simple example, (maybe using Name, >> Registration Number & Date of Birth) which demonstrates the use of these >> tools or can help me in any other way? >> Thanks ........ >> > > You can also not use the data controls and do the whole thing manually, which > I do. (last env was python, so I got used to doing it) > > Maybe Benoit can criticise this if wrong, but what I do is: > > Set up a global connection variable as I have dozens of forms accessing the > database. Do the connection to the database (like in the data example in > gambas Pass the queries to the database > > This example is called from a textbox on a form which wants to get a list of > person's occupations, so I pass the textbox and a listview to the routine. > The occupations are pulled from postgres and populate the listview. You'll > wonder why I make the listview's tag a textbox - its because my forms have > dozens of textboxes, all using the listview, when the user selects from a > popped up list, I use the tag to set other information. > > I think the data controls built into gambas would do all this for you, but > manually: > > Public Function occupation_get(tb As textbox, lv As listview) > > '----------------------------------------------------------------- > 'Retrieves a list of occupations from common.lu_occupations, load > 'them into a listbox whose key is pk_occupation > 'returns loaded listbox > '----------------------------------------------------------------- > sql = " SELECT * from common.lu_occupations WHERE occupation ILIKE '" > sql = sql & Trim(tb.text) & "%' LIMIT 20" > $Result = modDBConnect.exec_query(sql) > lv.clear > If $Result.count Then > lv.tag = tb > For Each $Result > lv.Add($Result!pk, $Result!occupation) > Next > lv.Raise > lv.Visible = True > Else > lv.Visible = False > End If > End > > Not sure if this helps, is confusing, but let me know > > > Richard > >> ------------------------------------------------------------------------- >> This SF.Net email is sponsored by the Moblin Your Move Developer's >> challenge Build the coolest Linux based applications with Moblin SDK & win >> great prizes Grand prize is a trip for two to an Open Source event anywhere >> in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > ______________________________________________________________________ > This mail has been virus scanned and spam scanned by Australia On Line > see http://www.australiaonline.net.au/spamscanning > > Report this email as spam... > http://reportspam.australiaonline.net.au/servlet/mail/john36/1216683372.24130_0.mailscanner2.ozonline.com.au/reportspam > > From gambas at ...1... Sun Jul 27 17:26:10 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 27 Jul 2008 17:26:10 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <1217159739.5908.21.camel@...1936...> References: <1216988093.3554.11.camel@...1936...> <200807261846.31911.gambas@...1...> <1217159739.5908.21.camel@...1936...> Message-ID: <200807271726.10659.gambas@...1...> On dimanche 27 juillet 2008, Steven Lobbezoo wrote: > Ok, here is it, but i suppose i'm missing some files for gdb > > steven at ...1948...:~/request_dev> gbc2 -agt > OK > steven at ...1948...:~/request_dev> gdb gbx2 > GNU gdb 6.8 > Copyright (C) 2008 Free Software Foundation, Inc. > License GPLv3+: GNU GPL version 3 or later > > This is free software: you are free to change and redistribute it. > There is NO WARRANTY, to the extent permitted by law. Type "show > copying" > and "show warranty" for details. > This GDB was configured as "i586-suse-linux"... > (gdb) set args -p > (gdb) run > Starting program: /usr/local/bin/gbx2 -p > [Thread debugging using libthread_db enabled] > Error while reading shared library symbols: > Cannot find new threads: generic error > Cannot find new threads: generic error > (gdb) > > Steven > Apparently there are big problems on OpenSuse, because gdb cannot succeed in debugging gambas. Another people having problems with OpenSuse x86_64 cannot use gdb too. Can you install valgrind and run gambas in it: steven at ...1948...:~/request_dev> gbc2 -agt OK steven at ...1948...:~/request_dev> valgrind --tool=memcheck --num-callers=50 gbx2 -p Regards, -- Benoit Minisini From lordheavym at ...626... Sun Jul 27 17:49:03 2008 From: lordheavym at ...626... (Laurent Carlier) Date: Sun, 27 Jul 2008 17:49:03 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807271726.10659.gambas@...1...> References: <1216988093.3554.11.camel@...1936...> <1217159739.5908.21.camel@...1936...> <200807271726.10659.gambas@...1...> Message-ID: <200807271749.03647.lordheavym@...626...> Le Sunday 27 July 2008 17:26:10 Benoit Minisini, vous avez ?crit : > On dimanche 27 juillet 2008, Steven Lobbezoo wrote: > > Ok, here is it, but i suppose i'm missing some files for gdb > > > > steven at ...1948...:~/request_dev> gbc2 -agt > > OK > > steven at ...1948...:~/request_dev> gdb gbx2 > > GNU gdb 6.8 > > Copyright (C) 2008 Free Software Foundation, Inc. > > License GPLv3+: GNU GPL version 3 or later > > > > This is free software: you are free to change and redistribute it. > > There is NO WARRANTY, to the extent permitted by law. Type "show > > copying" > > and "show warranty" for details. > > This GDB was configured as "i586-suse-linux"... > > (gdb) set args -p > > (gdb) run > > Starting program: /usr/local/bin/gbx2 -p > > [Thread debugging using libthread_db enabled] > > Error while reading shared library symbols: > > Cannot find new threads: generic error > > Cannot find new threads: generic error > > (gdb) > > > > Steven > > Apparently there are big problems on OpenSuse, because gdb cannot succeed > in debugging gambas. Another people having problems with OpenSuse x86_64 > cannot use gdb too. > > Can you install valgrind and run gambas in it: > > steven at ...1948...:~/request_dev> gbc2 -agt > OK > steven at ...1948...:~/request_dev> valgrind --tool=memcheck > --num-callers=50 gbx2 -p > > Regards, Perhaps it should be cleaner to put moc detection macro into gb.qt/m4 dir ? like with gb.sdl component does. ++ From gambas at ...1... Sun Jul 27 18:00:13 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 27 Jul 2008 18:00:13 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807271749.03647.lordheavym@...626...> References: <1216988093.3554.11.camel@...1936...> <200807271726.10659.gambas@...1...> <200807271749.03647.lordheavym@...626...> Message-ID: <200807271800.13872.gambas@...1...> On dimanche 27 juillet 2008, Laurent Carlier wrote: > Perhaps it should be cleaner to put moc detection macro into gb.qt/m4 dir ? > like with gb.sdl component does. > > ++ > What is the difference between putting the macro inside m4 and inside acinclude.m4? -- Benoit Minisini From lordheavym at ...626... Sun Jul 27 18:15:43 2008 From: lordheavym at ...626... (Laurent Carlier) Date: Sun, 27 Jul 2008 18:15:43 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807271800.13872.gambas@...1...> References: <1216988093.3554.11.camel@...1936...> <200807271749.03647.lordheavym@...626...> <200807271800.13872.gambas@...1...> Message-ID: <200807271815.43880.lordheavym@...626...> Le Sunday 27 July 2008 18:00:13 Benoit Minisini, vous avez ?crit : > On dimanche 27 juillet 2008, Laurent Carlier wrote: > > Perhaps it should be cleaner to put moc detection macro into gb.qt/m4 dir > > ? like with gb.sdl component does. > > > > ++ > > What is the difference between putting the macro inside m4 and inside > acinclude.m4? All stuff related to a component go to the component. moc is related to qt so should go to gb.qt component ? So acinclude.m4 can be cleanest and more generic ? It's the major reason that of the existance of gbsdl.m4, it's sdl so must go to sdl. ++ From steven at ...1652... Sun Jul 27 20:40:53 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Sun, 27 Jul 2008 20:40:53 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807271726.10659.gambas@...1...> References: <1216988093.3554.11.camel@...1936...> <200807261846.31911.gambas@...1...> <1217159739.5908.21.camel@...1936...> <200807271726.10659.gambas@...1...> Message-ID: <1217184053.7116.4.camel@...1936...> Hi, I did as you requested (no pun intended ;-) ) The output of valgrind is here : steven at ...1948...:~/request_dev> valgrind --tool=memcheck --num-callers=50 gbx2 -p ==7566== Memcheck, a memory error detector. ==7566== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward etal. ==7566== Using LibVEX rev 1804, a library for dynamic binary translation. ==7566== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==7566== Using valgrind-3.3.0, a dynamic binary instrumentation framework. ==7566== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward etal. ==7566== For more details, rerun with: -v ==7566== ==7575== ==7575== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 140 from 2) ==7575== malloc/free: in use at exit: 1,120,546 bytes in 15,402 blocks. ==7575== malloc/free: 73,176 allocs, 57,774 frees, 6,751,684 bytes allocated. ==7575== For counts of detected errors, rerun with: -v ==7575== searching for pointers to 15,402 not-freed blocks. ==7575== checked 1,805,028 bytes. ==7575== ==7575== LEAK SUMMARY: ==7575== definitely lost: 64,475 bytes in 1,459 blocks. ==7575== possibly lost: 27,252 bytes in 689 blocks. ==7575== still reachable: 1,028,819 bytes in 13,254 blocks. ==7575== suppressed: 0 bytes in 0 blocks. ==7575== Rerun with --leak-check=full to see details of leaked memory. ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x8062A47: OBJECT_detach (gbx_object.c:121) ==7566== by 0x8068DDB: stop_process (gbx_c_process.c:210) ==7566== by 0x8068E81: callback_child (gbx_c_process.c:540) ==7566== by 0x8068EC8: CPROCESS_wait_for (gbx_c_process.c:672) ==7566== by 0x805AAAE: SUBR_exec (gbx_subr_misc.c:168) ==7566== by 0x8050960: EXEC_loop (gbx_exec_loop.c:476) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x805DE03: GB_Call (gbx_api.c:761) ==7566== by 0x465054C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x465060B: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==7566== by 0x804FAEA: EXEC_push_array (gbx_exec_push.c:455) ==7566== by 0x8050A7C: EXEC_loop (gbx_exec_loop.c:532) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x401620C: (within /lib/ld-2.8.so) ==7566== by 0x41825E3: (within /lib/libc-2.8.so) ==7566== by 0x41829A9: _dl_sym (in /lib/libc-2.8.so) ==7566== by 0x407ADE7: (within /lib/libdl-2.8.so) ==7566== by 0x400DE25: (within /lib/ld-2.8.so) ==7566== by 0x407B0DB: (within /lib/libdl-2.8.so) ==7566== by 0x407AD72: dlsym (in /lib/libdl-2.8.so) ==7566== by 0x61D6C68: (within /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61D5A06: lt_dlsym (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x606CE7E: KLibWrapPrivate::KLibWrapPrivate(KLibrary*, lt_dlhandle_struct*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61590B4: KLibLoader::library(char const*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x6DBC421: KParts::Plugin::loadPlugin(QObject*, char const*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1C0C: KParts::Plugin::loadPlugins(QObject*, KXMLGUIClient*, KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1DE3: KParts::PartBase::loadPlugins(QObject*, KXMLGUIClient*, KInstance*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC2AC4: KParts::PartBase::setInstance(KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6A56B8F: KHTMLPart::KHTMLPart(QWidget*, char const*, QObject*, char const*, KHTMLPart::GUIProfile) (in /opt/kde3/lib/libkhtml.so.4.2.0) ==7566== by 0x5F78D80: (within /usr/lib/gambas2/gb.qt.kde.html.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==7566== by 0x804F515: EXEC_special_inheritance (gbx_exec.c:1324) ==7566== by 0x804F8A3: EXEC_new (gbx_exec.c:1438) ==7566== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x4016217: (within /lib/ld-2.8.so) ==7566== by 0x41825E3: (within /lib/libc-2.8.so) ==7566== by 0x41829A9: _dl_sym (in /lib/libc-2.8.so) ==7566== by 0x407ADE7: (within /lib/libdl-2.8.so) ==7566== by 0x400DE25: (within /lib/ld-2.8.so) ==7566== by 0x407B0DB: (within /lib/libdl-2.8.so) ==7566== by 0x407AD72: dlsym (in /lib/libdl-2.8.so) ==7566== by 0x61D6C68: (within /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61D5A06: lt_dlsym (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x606CE7E: KLibWrapPrivate::KLibWrapPrivate(KLibrary*, lt_dlhandle_struct*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61590B4: KLibLoader::library(char const*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x6DBC421: KParts::Plugin::loadPlugin(QObject*, char const*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1C0C: KParts::Plugin::loadPlugins(QObject*, KXMLGUIClient*, KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1DE3: KParts::PartBase::loadPlugins(QObject*, KXMLGUIClient*, KInstance*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC2AC4: KParts::PartBase::setInstance(KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6A56B8F: KHTMLPart::KHTMLPart(QWidget*, char const*, QObject*, char const*, KHTMLPart::GUIProfile) (in /opt/kde3/lib/libkhtml.so.4.2.0) ==7566== by 0x5F78D80: (within /usr/lib/gambas2/gb.qt.kde.html.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==7566== by 0x804F515: EXEC_special_inheritance (gbx_exec.c:1324) ==7566== by 0x804F8A3: EXEC_new (gbx_exec.c:1438) ==7566== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x4016251: (within /lib/ld-2.8.so) ==7566== by 0x41825E3: (within /lib/libc-2.8.so) ==7566== by 0x41829A9: _dl_sym (in /lib/libc-2.8.so) ==7566== by 0x407ADE7: (within /lib/libdl-2.8.so) ==7566== by 0x400DE25: (within /lib/ld-2.8.so) ==7566== by 0x407B0DB: (within /lib/libdl-2.8.so) ==7566== by 0x407AD72: dlsym (in /lib/libdl-2.8.so) ==7566== by 0x61D6C68: (within /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61D5A06: lt_dlsym (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x606CEAC: KLibWrapPrivate::KLibWrapPrivate(KLibrary*, lt_dlhandle_struct*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61590B4: KLibLoader::library(char const*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x6DBC421: KParts::Plugin::loadPlugin(QObject*, char const*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1C0C: KParts::Plugin::loadPlugins(QObject*, KXMLGUIClient*, KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1DE3: KParts::PartBase::loadPlugins(QObject*, KXMLGUIClient*, KInstance*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC2AC4: KParts::PartBase::setInstance(KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6A56B8F: KHTMLPart::KHTMLPart(QWidget*, char const*, QObject*, char const*, KHTMLPart::GUIProfile) (in /opt/kde3/lib/libkhtml.so.4.2.0) ==7566== by 0x5F78D80: (within /usr/lib/gambas2/gb.qt.kde.html.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==7566== by 0x804F515: EXEC_special_inheritance (gbx_exec.c:1324) ==7566== by 0x804F8A3: EXEC_new (gbx_exec.c:1438) ==7566== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x401625C: (within /lib/ld-2.8.so) ==7566== by 0x41825E3: (within /lib/libc-2.8.so) ==7566== by 0x41829A9: _dl_sym (in /lib/libc-2.8.so) ==7566== by 0x407ADE7: (within /lib/libdl-2.8.so) ==7566== by 0x400DE25: (within /lib/ld-2.8.so) ==7566== by 0x407B0DB: (within /lib/libdl-2.8.so) ==7566== by 0x407AD72: dlsym (in /lib/libdl-2.8.so) ==7566== by 0x61D6C68: (within /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61D5A06: lt_dlsym (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x606CEAC: KLibWrapPrivate::KLibWrapPrivate(KLibrary*, lt_dlhandle_struct*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61590B4: KLibLoader::library(char const*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x6DBC421: KParts::Plugin::loadPlugin(QObject*, char const*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1C0C: KParts::Plugin::loadPlugins(QObject*, KXMLGUIClient*, KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1DE3: KParts::PartBase::loadPlugins(QObject*, KXMLGUIClient*, KInstance*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC2AC4: KParts::PartBase::setInstance(KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6A56B8F: KHTMLPart::KHTMLPart(QWidget*, char const*, QObject*, char const*, KHTMLPart::GUIProfile) (in /opt/kde3/lib/libkhtml.so.4.2.0) ==7566== by 0x5F78D80: (within /usr/lib/gambas2/gb.qt.kde.html.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==7566== by 0x804F515: EXEC_special_inheritance (gbx_exec.c:1324) ==7566== by 0x804F8A3: EXEC_new (gbx_exec.c:1438) ==7566== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x401623A: (within /lib/ld-2.8.so) ==7566== by 0x41825E3: (within /lib/libc-2.8.so) ==7566== by 0x41829A9: _dl_sym (in /lib/libc-2.8.so) ==7566== by 0x407ADE7: (within /lib/libdl-2.8.so) ==7566== by 0x400DE25: (within /lib/ld-2.8.so) ==7566== by 0x407B0DB: (within /lib/libdl-2.8.so) ==7566== by 0x407AD72: dlsym (in /lib/libdl-2.8.so) ==7566== by 0x61D6C68: (within /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61D5A06: lt_dlsym (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61317BE: KLibrary::symbol(char const*) const (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x6159250: KLibrary::factory() (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x6DBC436: KParts::Plugin::loadPlugin(QObject*, char const*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1C0C: KParts::Plugin::loadPlugins(QObject*, KXMLGUIClient*, KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1DE3: KParts::PartBase::loadPlugins(QObject*, KXMLGUIClient*, KInstance*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC2AC4: KParts::PartBase::setInstance(KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6A56B8F: KHTMLPart::KHTMLPart(QWidget*, char const*, QObject*, char const*, KHTMLPart::GUIProfile) (in /opt/kde3/lib/libkhtml.so.4.2.0) ==7566== by 0x5F78D80: (within /usr/lib/gambas2/gb.qt.kde.html.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==7566== by 0x804F515: EXEC_special_inheritance (gbx_exec.c:1324) ==7566== by 0x804F8A3: EXEC_new (gbx_exec.c:1438) ==7566== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x4016245: (within /lib/ld-2.8.so) ==7566== by 0x41825E3: (within /lib/libc-2.8.so) ==7566== by 0x41829A9: _dl_sym (in /lib/libc-2.8.so) ==7566== by 0x407ADE7: (within /lib/libdl-2.8.so) ==7566== by 0x400DE25: (within /lib/ld-2.8.so) ==7566== by 0x407B0DB: (within /lib/libdl-2.8.so) ==7566== by 0x407AD72: dlsym (in /lib/libdl-2.8.so) ==7566== by 0x61D6C68: (within /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61D5A06: lt_dlsym (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x606CEAC: KLibWrapPrivate::KLibWrapPrivate(KLibrary*, lt_dlhandle_struct*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61590B4: KLibLoader::library(char const*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x6DBC421: KParts::Plugin::loadPlugin(QObject*, char const*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1C0C: KParts::Plugin::loadPlugins(QObject*, KXMLGUIClient*, KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1DE3: KParts::PartBase::loadPlugins(QObject*, KXMLGUIClient*, KInstance*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC2AC4: KParts::PartBase::setInstance(KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6A56B8F: KHTMLPart::KHTMLPart(QWidget*, char const*, QObject*, char const*, KHTMLPart::GUIProfile) (in /opt/kde3/lib/libkhtml.so.4.2.0) ==7566== by 0x5F78D80: (within /usr/lib/gambas2/gb.qt.kde.html.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==7566== by 0x804F515: EXEC_special_inheritance (gbx_exec.c:1324) ==7566== by 0x804F8A3: EXEC_new (gbx_exec.c:1438) ==7566== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x4016223: (within /lib/ld-2.8.so) ==7566== by 0x41825E3: (within /lib/libc-2.8.so) ==7566== by 0x41829A9: _dl_sym (in /lib/libc-2.8.so) ==7566== by 0x407ADE7: (within /lib/libdl-2.8.so) ==7566== by 0x400DE25: (within /lib/ld-2.8.so) ==7566== by 0x407B0DB: (within /lib/libdl-2.8.so) ==7566== by 0x407AD72: dlsym (in /lib/libdl-2.8.so) ==7566== by 0x61D6C68: (within /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61D5A06: lt_dlsym (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61317BE: KLibrary::symbol(char const*) const (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x6159250: KLibrary::factory() (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x6DBC436: KParts::Plugin::loadPlugin(QObject*, char const*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1C0C: KParts::Plugin::loadPlugins(QObject*, KXMLGUIClient*, KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1DE3: KParts::PartBase::loadPlugins(QObject*, KXMLGUIClient*, KInstance*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC2AC4: KParts::PartBase::setInstance(KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6A56B8F: KHTMLPart::KHTMLPart(QWidget*, char const*, QObject*, char const*, KHTMLPart::GUIProfile) (in /opt/kde3/lib/libkhtml.so.4.2.0) ==7566== by 0x5F78D80: (within /usr/lib/gambas2/gb.qt.kde.html.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==7566== by 0x804F515: EXEC_special_inheritance (gbx_exec.c:1324) ==7566== by 0x804F8A3: EXEC_new (gbx_exec.c:1438) ==7566== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x401622E: (within /lib/ld-2.8.so) ==7566== by 0x41825E3: (within /lib/libc-2.8.so) ==7566== by 0x41829A9: _dl_sym (in /lib/libc-2.8.so) ==7566== by 0x407ADE7: (within /lib/libdl-2.8.so) ==7566== by 0x400DE25: (within /lib/ld-2.8.so) ==7566== by 0x407B0DB: (within /lib/libdl-2.8.so) ==7566== by 0x407AD72: dlsym (in /lib/libdl-2.8.so) ==7566== by 0x61D6C68: (within /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61D5A06: lt_dlsym (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x606CEAC: KLibWrapPrivate::KLibWrapPrivate(KLibrary*, lt_dlhandle_struct*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x61590B4: KLibLoader::library(char const*) (in /opt/kde3/lib/libkdecore.so.4.2.0) ==7566== by 0x6DBC421: KParts::Plugin::loadPlugin(QObject*, char const*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1C0C: KParts::Plugin::loadPlugins(QObject*, KXMLGUIClient*, KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC1DE3: KParts::PartBase::loadPlugins(QObject*, KXMLGUIClient*, KInstance*) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6DC2AC4: KParts::PartBase::setInstance(KInstance*, bool) (in /opt/kde3/lib/libkparts.so.2.1.0) ==7566== by 0x6A56B8F: KHTMLPart::KHTMLPart(QWidget*, char const*, QObject*, char const*, KHTMLPart::GUIProfile) (in /opt/kde3/lib/libkhtml.so.4.2.0) ==7566== by 0x5F78D80: (within /usr/lib/gambas2/gb.qt.kde.html.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) ==7566== by 0x804F515: EXEC_special_inheritance (gbx_exec.c:1324) ==7566== by 0x804F8A3: EXEC_new (gbx_exec.c:1438) ==7566== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x8062A47: OBJECT_detach (gbx_object.c:121) ==7566== by 0x4635145: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x805DEAE: raise_event (gbx_api.c:489) ==7566== by 0x805E39D: GB_Raise (gbx_api.c:593) ==7566== by 0x4633C36: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46347E1: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A9A852: QObject::activate_filters(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9A8BA: QObject::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4AD51FB: QWidget::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B96791: QMainWindow::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A353CC: QApplication::internalNotify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A3637C: QApplication::notify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x5F6C74E: (within /usr/lib/gambas2/gb.qt.kde.so.0.0.0) ==7566== by 0x4AD45AA: QWidget::show() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B966D4: QMainWindow::show() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4636C10: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x8062A47: OBJECT_detach (gbx_object.c:121) ==7566== by 0x4631FEF: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A9A799: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4DFC9E8: QObject::destroyed() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9DDA1: QObject::~QObject() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4AD5146: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B61B02: QLabel::~QLabel() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x805DEAE: raise_event (gbx_api.c:489) ==7566== by 0x805E39D: GB_Raise (gbx_api.c:593) ==7566== by 0x4633C36: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46347E1: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A9A852: QObject::activate_filters(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9A8BA: QObject::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4AD51FB: QWidget::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B96791: QMainWindow::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A353CC: QApplication::internalNotify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A3637C: QApplication::notify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x5F6C74E: (within /usr/lib/gambas2/gb.qt.kde.so.0.0.0) ==7566== by 0x4AD45AA: QWidget::show() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B966D4: QMainWindow::show() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4636C10: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x8062A47: OBJECT_detach (gbx_object.c:121) ==7566== by 0x4631FEF: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4DFC9E8: QObject::destroyed() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9DDA1: QObject::~QObject() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4AD5146: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B35516: QButton::~QButton() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4BB1C0B: QPushButton::~QPushButton() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4638688: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x805DEAE: raise_event (gbx_api.c:489) ==7566== by 0x805E39D: GB_Raise (gbx_api.c:593) ==7566== by 0x4633C36: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46347E1: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A9A852: QObject::activate_filters(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9A8BA: QObject::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4AD51FB: QWidget::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B96791: QMainWindow::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A353CC: QApplication::internalNotify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A3637C: QApplication::notify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x5F6C74E: (within /usr/lib/gambas2/gb.qt.kde.so.0.0.0) ==7566== by 0x4AD45AA: QWidget::show() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B966D4: QMainWindow::show() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4636C10: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8062194: main (gbx.c:352) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x8062A47: OBJECT_detach (gbx_object.c:121) ==7566== by 0x8062D36: OBJECT_attach (gbx_object.c:167) ==7566== by 0x806525F: object_attach (gbx_c_class.c:657) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x804F1F0: EXEC_spec (gbx_exec.c:1231) ==7566== by 0x804F515: EXEC_special_inheritance (gbx_exec.c:1324) ==7566== by 0x804F8A3: EXEC_new (gbx_exec.c:1438) ==7566== by 0x80512DC: EXEC_loop (gbx_exec_loop.c:879) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) ==7566== by 0x804E32A: EXEC_auto_create (gbx_exec.c:1529) ==7566== by 0x804FDEA: EXEC_push_unknown (gbx_exec_push.c:187) ==7566== by 0x8050A9A: EXEC_loop (gbx_exec_loop.c:539) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x805DEAE: raise_event (gbx_api.c:489) ==7566== by 0x805E39D: GB_Raise (gbx_api.c:593) ==7566== by 0x4637D3B: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46374D6: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A9A799: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4E057EB: QButton::clicked() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4AD5336: QWidget::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A353CC: QApplication::internalNotify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x5F6C74E: (within /usr/lib/gambas2/gb.qt.kde.so.0.0.0) ==7566== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x49CC8BF: QETWidget::translateMouseEvent(_XEvent const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x49CBB5C: QApplication::x11ProcessEvent(_XEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x49DFD03: QEventLoop::processEvents(unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A4DBA5: QEventLoop::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A35A5E: QApplication::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x80621C5: main (gbx.c:362) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x8062A47: OBJECT_detach (gbx_object.c:121) ==7566== by 0x4635145: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) ==7566== by 0x805DEAE: raise_event (gbx_api.c:489) ==7566== by 0x805E39D: GB_Raise (gbx_api.c:593) ==7566== by 0x4637D3B: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46374D6: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A9A799: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4E057EB: QButton::clicked() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B3592F: QButton::mouseReleaseEvent(QMouseEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4AD5336: QWidget::event(QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A353CC: QApplication::internalNotify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A365D5: QApplication::notify(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x5F6C74E: (within /usr/lib/gambas2/gb.qt.kde.so.0.0.0) ==7566== by 0x49CFA9D: QApplication::sendSpontaneousEvent(QObject*, QEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x49CC8BF: QETWidget::translateMouseEvent(_XEvent const*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x49CBB5C: QApplication::x11ProcessEvent(_XEvent*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x49DFD03: QEventLoop::processEvents(unsigned) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x462CC0C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A4DBA5: QEventLoop::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A35A5E: QApplication::exec() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x462C837: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x80621C5: main (gbx.c:362) ==7566== ==7566== Conditional jump or move depends on uninitialised value(s) ==7566== at 0x8062C25: OBJECT_free (gbx_object.c:140) ==7566== by 0x80522C9: CLASS_free (gbx_class.c:611) ==7566== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4DFC9E8: QObject::destroyed() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9DDA1: QObject::~QObject() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4AD5146: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B61B02: QLabel::~QLabel() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4BBA40C: QScrollView::~QScrollView() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== ==7566== Use of uninitialised value of size 4 ==7566== at 0x8062C29: OBJECT_free (gbx_object.c:140) ==7566== by 0x80522C9: CLASS_free (gbx_class.c:611) ==7566== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4DFC9E8: QObject::destroyed() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9DDA1: QObject::~QObject() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4AD5146: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B61B02: QLabel::~QLabel() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4BBA40C: QScrollView::~QScrollView() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== ==7566== Invalid read of size 1 ==7566== at 0x80522C9: CLASS_free (gbx_class.c:611) ==7566== by 0x4632024: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4630046: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A9A71C: QObject::activate_signal(QConnectionList*, QUObject*) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9CCDA: QObject::activate_signal(int) (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4DFC9E8: QObject::destroyed() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4A9DDA1: QObject::~QObject() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4AD5146: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B61B02: QLabel::~QLabel() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463FB05: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x465692E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4BBC5B4: QViewportWidget::~QViewportWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4BBA40C: QScrollView::~QScrollView() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x46568E5: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4639170: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4AD50C6: QWidget::~QWidget() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4B9BBB2: QMainWindow::~QMainWindow() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x463518E: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x462CC47: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x4A4DD0F: QEventLoop::enterLoop() (in /usr/lib/qt3/lib/libqt-mt.so.3.3.8) ==7566== by 0x4636922: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x46369A0: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) ==7566== by 0x8050F2C: EXEC_loop (gbx_exec_loop.c:1042) ==7566== Address 0x6b5d7c3c is not stack'd, malloc'd or (recently) free'd ==7566== ==7566== Use of uninitialised value of size 4 ==7566== at 0x80522D3: CLASS_free (gbx_class.c:612) vex x86->IR: unhandled instruction bytes: 0x62 0x4 0xE0 0xE9 vex x86->IR: unhandled instruction bytes: 0x67 0x4 0x20 0xD8 ==7566== valgrind: Unrecognised instruction at address 0x4681FA2. ==7566== Your program just tried to execute an instruction that Valgrind ==7566== did not recognise. There are two possible reasons for this. ==7566== 1. Your program has a bug and erroneously jumped to a non-code ==7566== location. If you are running Memcheck and you just saw a ==7566== warning about a bad jump, it's probably your program's fault. ==7566== 2. The instruction is legitimate but Valgrind doesn't handle it, ==7566== i.e. it's Valgrind's fault. If you think this is the case or ==7566== you are not sure, please let us know and we'll try to fix it. ==7566== Either way, Valgrind will now raise a SIGILL signal which will ==7566== probably kill your program. ==7566== ==7566== Process terminating with default action of signal 4 (SIGILL) ==7566== Illegal opcode at address 0x4681FA2 ==7566== at 0x4681FA2: (within /usr/lib/gambas2/gb.qt.so.0.0.0) ==7566== ==7566== ERROR SUMMARY: 63 errors from 18 contexts (suppressed: 282 from 5) ==7566== malloc/free: in use at exit: 14,474,346 bytes in 104,228 blocks. ==7566== malloc/free: 656,884 allocs, 552,656 frees, 103,603,806 bytes allocated. ==7566== For counts of detected errors, rerun with: -v ==7566== searching for pointers to 104,228 not-freed blocks. ==7566== checked 14,716,692 bytes. ==7566== ==7566== LEAK SUMMARY: ==7566== definitely lost: 104,955 bytes in 2,766 blocks. ==7566== possibly lost: 47,018 bytes in 1,483 blocks. ==7566== still reachable: 14,322,373 bytes in 99,979 blocks. ==7566== suppressed: 0 bytes in 0 blocks. ==7566== Rerun with --leak-check=full to see details of leaked memory. Instruction non permise steven at ...1948...:~/request_dev> Le dimanche 27 juillet 2008 ? 17:26 +0200, Benoit Minisini a ?crit : > On dimanche 27 juillet 2008, Steven Lobbezoo wrote: > > Ok, here is it, but i suppose i'm missing some files for gdb > > > > steven at ...1948...:~/request_dev> gbc2 -agt > > OK > > steven at ...1948...:~/request_dev> gdb gbx2 > > GNU gdb 6.8 > > Copyright (C) 2008 Free Software Foundation, Inc. > > License GPLv3+: GNU GPL version 3 or later > > > > This is free software: you are free to change and redistribute it. > > There is NO WARRANTY, to the extent permitted by law. Type "show > > copying" > > and "show warranty" for details. > > This GDB was configured as "i586-suse-linux"... > > (gdb) set args -p > > (gdb) run > > Starting program: /usr/local/bin/gbx2 -p > > [Thread debugging using libthread_db enabled] > > Error while reading shared library symbols: > > Cannot find new threads: generic error > > Cannot find new threads: generic error > > (gdb) > > > > Steven > > > > Apparently there are big problems on OpenSuse, because gdb cannot succeed in > debugging gambas. Another people having problems with OpenSuse x86_64 cannot > use gdb too. > > Can you install valgrind and run gambas in it: > > steven at ...1948...:~/request_dev> gbc2 -agt > OK > steven at ...1948...:~/request_dev> valgrind --tool=memcheck --num-callers=50 > gbx2 -p > > Regards, > From gambas at ...1... Sun Jul 27 21:23:34 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 27 Jul 2008 21:23:34 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <1217184053.7116.4.camel@...1936...> References: <1216988093.3554.11.camel@...1936...> <200807271726.10659.gambas@...1...> <1217184053.7116.4.camel@...1936...> Message-ID: <200807272123.34886.gambas@...1...> On dimanche 27 juillet 2008, Steven Lobbezoo wrote: > Hi, > > I did as you requested (no pun intended ;-) ) > The output of valgrind is here : > steven at ...1948...:~/request_dev> valgrind --tool=memcheck > --num-callers=50 gbx2 -p > ==7566== Memcheck, a memory error detector. > ==7566== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward etal. > ==7566== Using LibVEX rev 1804, a library for dynamic binary > translation. > ==7566== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > ==7566== Using valgrind-3.3.0, a dynamic binary instrumentation > framework. > ==7566== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward etal. > ==7566== For more details, rerun with: -v > ==7566== > ==7575== > ==7575== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 140 from > 2) > ==7575== malloc/free: in use at exit: 1,120,546 bytes in 15,402 blocks. > ==7575== malloc/free: 73,176 allocs, 57,774 frees, 6,751,684 bytes > allocated. > ==7575== For counts of detected errors, rerun with: -v > ==7575== searching for pointers to 15,402 not-freed blocks. > ==7575== checked 1,805,028 bytes. > ==7575== > ==7575== LEAK SUMMARY: > ==7575== definitely lost: 64,475 bytes in 1,459 blocks. > ==7575== possibly lost: 27,252 bytes in 689 blocks. > ==7575== still reachable: 1,028,819 bytes in 13,254 blocks. > ==7575== suppressed: 0 bytes in 0 blocks. > ==7575== Rerun with --leak-check=full to see details of leaked memory. > ==7566== Conditional jump or move depends on uninitialised value(s) > ==7566== at 0x8062A47: OBJECT_detach (gbx_object.c:121) > ==7566== by 0x8068DDB: stop_process (gbx_c_process.c:210) > ==7566== by 0x8068E81: callback_child (gbx_c_process.c:540) > ==7566== by 0x8068EC8: CPROCESS_wait_for (gbx_c_process.c:672) > ==7566== by 0x805AAAE: SUBR_exec (gbx_subr_misc.c:168) > ==7566== by 0x8050960: EXEC_loop (gbx_exec_loop.c:476) > ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==7566== by 0x805DE03: GB_Call (gbx_api.c:761) > ==7566== by 0x465054C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==7566== by 0x465060B: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > ==7566== by 0x804FAEA: EXEC_push_array (gbx_exec_push.c:455) > ==7566== by 0x8050A7C: EXEC_loop (gbx_exec_loop.c:532) > ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) > ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) > ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) > ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > ==7566== by 0x8062194: main (gbx.c:352) > ==7566== After having installed gcc 4.3.0 on my Mandriva and just recompile the interpreter, I get the same error as you and many others having gcc 4.3. These errors do not appear if the interpreter is compiled without optimizations, so I guess than gcc 4.3 optimizes the code differently than gcc 4.2, and that these optimizations now break the code! I continue my investigations... -- Benoit Minisini From lordheavym at ...626... Sun Jul 27 22:26:42 2008 From: lordheavym at ...626... (Laurent Carlier) Date: Sun, 27 Jul 2008 22:26:42 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807272123.34886.gambas@...1...> References: <1216988093.3554.11.camel@...1936...> <1217184053.7116.4.camel@...1936...> <200807272123.34886.gambas@...1...> Message-ID: <200807272226.43463.lordheavym@...626...> Le Sunday 27 July 2008 21:23:34 Benoit Minisini, vous avez ?crit : > On dimanche 27 juillet 2008, Steven Lobbezoo wrote: > > Hi, > > > > I did as you requested (no pun intended ;-) ) > > The output of valgrind is here : > > steven at ...1948...:~/request_dev> valgrind --tool=memcheck > > --num-callers=50 gbx2 -p > > ==7566== Memcheck, a memory error detector. > > ==7566== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward etal. > > ==7566== Using LibVEX rev 1804, a library for dynamic binary > > translation. > > ==7566== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > > ==7566== Using valgrind-3.3.0, a dynamic binary instrumentation > > framework. > > ==7566== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward etal. > > ==7566== For more details, rerun with: -v > > ==7566== > > ==7575== > > ==7575== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 140 from > > 2) > > ==7575== malloc/free: in use at exit: 1,120,546 bytes in 15,402 blocks. > > ==7575== malloc/free: 73,176 allocs, 57,774 frees, 6,751,684 bytes > > allocated. > > ==7575== For counts of detected errors, rerun with: -v > > ==7575== searching for pointers to 15,402 not-freed blocks. > > ==7575== checked 1,805,028 bytes. > > ==7575== > > ==7575== LEAK SUMMARY: > > ==7575== definitely lost: 64,475 bytes in 1,459 blocks. > > ==7575== possibly lost: 27,252 bytes in 689 blocks. > > ==7575== still reachable: 1,028,819 bytes in 13,254 blocks. > > ==7575== suppressed: 0 bytes in 0 blocks. > > ==7575== Rerun with --leak-check=full to see details of leaked memory. > > ==7566== Conditional jump or move depends on uninitialised value(s) > > ==7566== at 0x8062A47: OBJECT_detach (gbx_object.c:121) > > ==7566== by 0x8068DDB: stop_process (gbx_c_process.c:210) > > ==7566== by 0x8068E81: callback_child (gbx_c_process.c:540) > > ==7566== by 0x8068EC8: CPROCESS_wait_for (gbx_c_process.c:672) > > ==7566== by 0x805AAAE: SUBR_exec (gbx_subr_misc.c:168) > > ==7566== by 0x8050960: EXEC_loop (gbx_exec_loop.c:476) > > ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==7566== by 0x805DE03: GB_Call (gbx_api.c:761) > > ==7566== by 0x465054C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==7566== by 0x465060B: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > > ==7566== by 0x804FAEA: EXEC_push_array (gbx_exec_push.c:455) > > ==7566== by 0x8050A7C: EXEC_loop (gbx_exec_loop.c:532) > > ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) > > ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) > > ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) > > ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > ==7566== by 0x8062194: main (gbx.c:352) > > ==7566== > > After having installed gcc 4.3.0 on my Mandriva and just recompile the > interpreter, I get the same error as you and many others having gcc 4.3. > These errors do not appear if the interpreter is compiled without > optimizations, so I guess than gcc 4.3 optimizes the code differently than > gcc 4.2, and that these optimizations now break the code! > > I continue my investigations... All my gambas 2/3 is build with gcc 4.3 without too much complains: lordh at ...57...:~/Desktop/gbSVN/gambas/trunk$ gcc -v Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Debian 4.3.1-8' --with- bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable- languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with- system-zlib --libexecdir=/usr/lib --without-included-gettext --enable- threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 -- program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc- gc --enable-mpfr --enable-cld --enable-checking=release --build=x86_64-linux- gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.3.1 (Debian 4.3.1-8) From gambas at ...1... Sun Jul 27 22:34:48 2008 From: gambas at ...1... (Benoit Minisini) Date: Sun, 27 Jul 2008 22:34:48 +0200 Subject: [Gambas-user] Sig 11 In-Reply-To: <200807272226.43463.lordheavym@...626...> References: <1216988093.3554.11.camel@...1936...> <200807272123.34886.gambas@...1...> <200807272226.43463.lordheavym@...626...> Message-ID: <200807272234.49022.gambas@...1...> On dimanche 27 juillet 2008, Laurent Carlier wrote: > Le Sunday 27 July 2008 21:23:34 Benoit Minisini, vous avez ?crit : > > On dimanche 27 juillet 2008, Steven Lobbezoo wrote: > > > Hi, > > > > > > I did as you requested (no pun intended ;-) ) > > > The output of valgrind is here : > > > steven at ...1948...:~/request_dev> valgrind --tool=memcheck > > > --num-callers=50 gbx2 -p > > > ==7566== Memcheck, a memory error detector. > > > ==7566== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward etal. > > > ==7566== Using LibVEX rev 1804, a library for dynamic binary > > > translation. > > > ==7566== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > > > ==7566== Using valgrind-3.3.0, a dynamic binary instrumentation > > > framework. > > > ==7566== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward etal. > > > ==7566== For more details, rerun with: -v > > > ==7566== > > > ==7575== > > > ==7575== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 140 from > > > 2) > > > ==7575== malloc/free: in use at exit: 1,120,546 bytes in 15,402 blocks. > > > ==7575== malloc/free: 73,176 allocs, 57,774 frees, 6,751,684 bytes > > > allocated. > > > ==7575== For counts of detected errors, rerun with: -v > > > ==7575== searching for pointers to 15,402 not-freed blocks. > > > ==7575== checked 1,805,028 bytes. > > > ==7575== > > > ==7575== LEAK SUMMARY: > > > ==7575== definitely lost: 64,475 bytes in 1,459 blocks. > > > ==7575== possibly lost: 27,252 bytes in 689 blocks. > > > ==7575== still reachable: 1,028,819 bytes in 13,254 blocks. > > > ==7575== suppressed: 0 bytes in 0 blocks. > > > ==7575== Rerun with --leak-check=full to see details of leaked memory. > > > ==7566== Conditional jump or move depends on uninitialised value(s) > > > ==7566== at 0x8062A47: OBJECT_detach (gbx_object.c:121) > > > ==7566== by 0x8068DDB: stop_process (gbx_c_process.c:210) > > > ==7566== by 0x8068E81: callback_child (gbx_c_process.c:540) > > > ==7566== by 0x8068EC8: CPROCESS_wait_for (gbx_c_process.c:672) > > > ==7566== by 0x805AAAE: SUBR_exec (gbx_subr_misc.c:168) > > > ==7566== by 0x8050960: EXEC_loop (gbx_exec_loop.c:476) > > > ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > > ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > > ==7566== by 0x805DE03: GB_Call (gbx_api.c:761) > > > ==7566== by 0x465054C: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > > ==7566== by 0x465060B: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > > ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > > ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > > ==7566== by 0x804F1D0: EXEC_spec (gbx_exec.c:1224) > > > ==7566== by 0x804FAEA: EXEC_push_array (gbx_exec_push.c:455) > > > ==7566== by 0x8050A7C: EXEC_loop (gbx_exec_loop.c:532) > > > ==7566== by 0x804EE4A: EXEC_function_loop (gbx_exec.c:702) > > > ==7566== by 0x804F120: EXEC_function_real (gbx_exec.c:689) > > > ==7566== by 0x804F4DC: EXEC_special_inheritance (gbx_exec.c:1310) > > > ==7566== by 0x8062F1B: OBJECT_create (gbx_object.c:330) > > > ==7566== by 0x805237A: CLASS_auto_create (gbx_class.c:1014) > > > ==7566== by 0x4636DB7: (within /usr/lib/gambas2/gb.qt.so.0.0.0) > > > ==7566== by 0x804E297: EXEC_call_native (gbx_exec.c:841) > > > ==7566== by 0x804EB3D: EXEC_native (gbx_exec.c:959) > > > ==7566== by 0x8062194: main (gbx.c:352) > > > ==7566== > > > > After having installed gcc 4.3.0 on my Mandriva and just recompile the > > interpreter, I get the same error as you and many others having gcc 4.3. > > These errors do not appear if the interpreter is compiled without > > optimizations, so I guess than gcc 4.3 optimizes the code differently > > than gcc 4.2, and that these optimizations now break the code! > > > > I continue my investigations... > > All my gambas 2/3 is build with gcc 4.3 without too much complains: > lordh at ...57...:~/Desktop/gbSVN/gambas/trunk$ gcc -v > Using built-in specs. > Target: x86_64-linux-gnu > Configured with: ../src/configure -v --with-pkgversion='Debian 4.3.1-8' > --with- bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable- > languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with- > system-zlib --libexecdir=/usr/lib --without-included-gettext --enable- > threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 -- > program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug > --enable-objc- gc --enable-mpfr --enable-cld --enable-checking=release > --build=x86_64-linux- gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu > Thread model: posix > gcc version 4.3.1 (Debian 4.3.1-8) > On Mandriva (gcc 4.3.0), it compiles, but with new warnings on strict aliasing breaks. I think that the badly compiled code comes from that. I am searching... -- Benoit Minisini From gambas at ...1... Mon Jul 28 01:22:41 2008 From: gambas at ...1... (Benoit Minisini) Date: Mon, 28 Jul 2008 01:22:41 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 Message-ID: <200807280122.41575.gambas@...1...> Hi, I finally succeeded in fixing Gambas for gcc 4.3, and therefore OpenSuse 11. For all people being in that case, please compile the latest version of Gambas 2.x (revision >= 1486), and tell me if everything is ok. The fixes have not been yet ported to Gambas 3. Regards, -- Benoit Minisini From smiefert at ...784... Mon Jul 28 08:31:05 2008 From: smiefert at ...784... (Stefan Miefert) Date: Mon, 28 Jul 2008 08:31:05 +0200 Subject: [Gambas-user] Multidimensionally Collection/Arrays Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA596@...1899...> Hello, how can i set and get a multidimensionally collection I can call like this mycollection['dimension1']['dimension2'] Thanks for any help From steven at ...1652... Mon Jul 28 09:15:52 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Mon, 28 Jul 2008 09:15:52 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807280122.41575.gambas@...1...> References: <200807280122.41575.gambas@...1...> Message-ID: <1217229352.3398.7.camel@...1936...> Hi, I'm afraid not. still got the same signal 11 sorry, Steven Le lundi 28 juillet 2008 ? 01:22 +0200, Benoit Minisini a ?crit : > Hi, > > I finally succeeded in fixing Gambas for gcc 4.3, and therefore OpenSuse 11. > > For all people being in that case, please compile the latest version of Gambas > 2.x (revision >= 1486), and tell me if everything is ok. > > The fixes have not been yet ported to Gambas 3. > > Regards, > From gambas at ...1... Mon Jul 28 10:19:39 2008 From: gambas at ...1... (Benoit Minisini) Date: Mon, 28 Jul 2008 10:19:39 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217229352.3398.7.camel@...1936...> References: <200807280122.41575.gambas@...1...> <1217229352.3398.7.camel@...1936...> Message-ID: <200807281019.39649.gambas@...1...> On lundi 28 juillet 2008, Steven Lobbezoo wrote: > Hi, > > I'm afraid not. > still got the same signal 11 > sorry, > > Steven > Can you send me a little project that crashes at the same place as yours? -- Benoit Minisini From steven at ...1652... Mon Jul 28 10:34:03 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Mon, 28 Jul 2008 10:34:03 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807281019.39649.gambas@...1...> References: <200807280122.41575.gambas@...1...> <1217229352.3398.7.camel@...1936...> <200807281019.39649.gambas@...1...> Message-ID: <1217234043.3398.11.camel@...1936...> It is attached. However: the problem changed a bit. With this project, I only get the sig 11 if i run it from the ide, if i run the .gambas file directly, all is ok ! Steven Le lundi 28 juillet 2008 ? 10:19 +0200, Benoit Minisini a ?crit : > On lundi 28 juillet 2008, Steven Lobbezoo wrote: > > Hi, > > > > I'm afraid not. > > still got the same signal 11 > > sorry, > > > > Steven > > > > Can you send me a little project that crashes at the same place as yours? > -------------- next part -------------- A non-text attachment was scrubbed... Name: test_gambas.tar.gz Type: application/x-compressed-tar Size: 11156 bytes Desc: not available URL: From rospolosco at ...152... Mon Jul 28 10:39:17 2008 From: rospolosco at ...152... (Stefano Palmeri) Date: Mon, 28 Jul 2008 10:39:17 +0200 Subject: [Gambas-user] Multidimensionally Collection/Arrays In-Reply-To: <8D42310D957CFB46AA11921A711D4D1601FB2CA596@...1899...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA596@...1899...> Message-ID: <200807281039.18184.rospolosco@...152...> Il luned? 28 luglio 2008 08:31:05 Stefan Miefert ha scritto: > Hello, > > how can i set and get a multidimensionally collection I can call like this > > mycollection['dimension1']['dimension2'] > > Thanks for any help > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge Build the coolest Linux based applications with Moblin SDK & win > great prizes Grand prize is a trip for two to an Open Source event anywhere > in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user I don't think you can create a multidimensional Collection. Instead, you can create a multidimensional array. This a bidimensional 10x10 array of strings. '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' DIM arsMyStrings AS String[] arsMyStrings = NEW String[10, 10] arsMyStrings[0, 0] = "hello" PRINT arsMyStrings[0, 0] '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Bye, Stefano From wdahn at ...1000... Mon Jul 28 10:58:14 2008 From: wdahn at ...1000... (Werner) Date: Mon, 28 Jul 2008 16:58:14 +0800 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807280122.41575.gambas@...1...> References: <200807280122.41575.gambas@...1...> Message-ID: <488D8A26.1040101@...1000...> Benoit Minisini wrote: > Hi, > > I finally succeeded in fixing Gambas for gcc 4.3, and therefore OpenSuse 11. > > For all people being in that case, please compile the latest version of Gambas > 2.x (revision >= 1486), and tell me if everything is ok. > > The fixes have not been yet ported to Gambas 3. > > Regards, > > I have installed svn1486 on 64 bit SuSE 11.0. There are also a few qt4 libraries installed. The initial impression is very good. I can select and run a project. Yippie! Thanks and Best Regards Werner From steven at ...1652... Mon Jul 28 11:17:54 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Mon, 28 Jul 2008 11:17:54 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217234043.3398.11.camel@...1936...> References: <200807280122.41575.gambas@...1...> <1217229352.3398.7.camel@...1936...> <200807281019.39649.gambas@...1...> <1217234043.3398.11.camel@...1936...> Message-ID: <1217236674.3398.14.camel@...1936...> Furthermore, i tested this with my real apps: They produce a sig 11 in the ide direct they just quit immediately, without any message. Steven Le lundi 28 juillet 2008 ? 10:34 +0200, Steven Lobbezoo a ?crit : > It is attached. > However: the problem changed a bit. > With this project, I only get the sig 11 if i run it from the ide, if i > run the .gambas file > directly, all is ok ! > > Steven > > > > Le lundi 28 juillet 2008 ? 10:19 +0200, Benoit Minisini a ?crit : > > > On lundi 28 juillet 2008, Steven Lobbezoo wrote: > > > Hi, > > > > > > I'm afraid not. > > > still got the same signal 11 > > > sorry, > > > > > > Steven > > > > > > > Can you send me a little project that crashes at the same place as yours? > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From smiefert at ...784... Mon Jul 28 12:58:59 2008 From: smiefert at ...784... (Stefan Miefert) Date: Mon, 28 Jul 2008 12:58:59 +0200 Subject: [Gambas-user] Multidimensionally Collection/Arrays In-Reply-To: <200807281039.18184.rospolosco@...152...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA596@...1899...> <200807281039.18184.rospolosco@...152...> Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA5AA@...1899...> HEllo, i need a dynamic array and, if possible, I need text values for the index. All Isee in documentations, thi sisnt possible on arrays. I come from php an the array in php handle this all and very easy:) Is their and way to do this in gambas? > I don't think you can create a multidimensional Collection. > Instead, you can create a multidimensional array. From smiefert at ...784... Mon Jul 28 13:11:26 2008 From: smiefert at ...784... (Stefan Miefert) Date: Mon, 28 Jul 2008 13:11:26 +0200 Subject: [Gambas-user] Multidimensionally Collection/Arrays In-Reply-To: <200807281039.18184.rospolosco@...152...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA596@...1899...> <200807281039.18184.rospolosco@...152...> Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA5AB@...1899...> Hello, and how can i use this Array as a public var? > DIM arsMyStrings AS String[] From gambas at ...1938... Mon Jul 28 13:39:17 2008 From: gambas at ...1938... (gambas at ...1938...) Date: Mon, 28 Jul 2008 13:39:17 +0200 Subject: [Gambas-user] Multidimensionally Collection/Arrays In-Reply-To: <8D42310D957CFB46AA11921A711D4D1601FB2CA5AB@...1899...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA596@...1899...> <200807281039.18184.rospolosco@...152...> <8D42310D957CFB46AA11921A711D4D1601FB2CA5AB@...1899...> Message-ID: <200807281339.17558.gambas@...1938...> Perhaps an array with collections as it's elements is usefull for you???? DIM list AS NEW Variant[] DIM col AS NEW Collection IF list.count < n+1 THEN list.Resize(n+1) ENDIF IF list[n]=NULL then col = NEW Collection list[n] = col ENDIF list[n][key] = value Am Montag, 28. Juli 2008 13:11:26 schrieb Stefan Miefert: > Hello, > > and how can i use this Array as a public var? > > > DIM arsMyStrings AS String[] > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge Build the coolest Linux based applications with Moblin SDK & win > great prizes Grand prize is a trip for two to an Open Source event anywhere > in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From steven at ...1652... Mon Jul 28 13:37:18 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Mon, 28 Jul 2008 13:37:18 +0200 Subject: [Gambas-user] Multidimensionally Collection/Arrays In-Reply-To: <8D42310D957CFB46AA11921A711D4D1601FB2CA5AB@...1899...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA596@...1899...> <200807281039.18184.rospolosco@...152...> <8D42310D957CFB46AA11921A711D4D1601FB2CA5AB@...1899...> Message-ID: <1217245038.3398.18.camel@...1936...> ?arsMyStrings AS String[] outside of functions. Steven Le lundi 28 juillet 2008 ? 13:11 +0200, Stefan Miefert a ?crit : > Hello, > > and how can i use this Array as a public var? > > > > DIM arsMyStrings AS String[] > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From wdahn at ...1000... Mon Jul 28 13:46:55 2008 From: wdahn at ...1000... (Werner) Date: Mon, 28 Jul 2008 19:46:55 +0800 Subject: [Gambas-user] Multidimensionally Collection/Arrays In-Reply-To: <8D42310D957CFB46AA11921A711D4D1601FB2CA5AB@...1899...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA596@...1899...> <200807281039.18184.rospolosco@...152...> <8D42310D957CFB46AA11921A711D4D1601FB2CA5AB@...1899...> Message-ID: <488DB1AF.7090602@...1000...> Stefan Miefert wrote: > Hello, > > and how can i use this Array as a public var? > > > >> DIM arsMyStrings AS String[] >> > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > Is that what you want? ' above the first routine PUBLIC Names AS NEW Collection public Sub myRoutine() 'wherever you want to put it Names.Add(["Anna", "Louise", "Theresa", "Geraldine"], "female") Names.Add(["Klaus", "Paul", "George"], "male") Names.Add(["Schultz", "Miller", "Perez", "Ballack", "Hempel"], "Surnames") END Instead of using implicit arrays, you could also generalize it as a collection of objects. Regards Werner From smiefert at ...784... Mon Jul 28 14:00:52 2008 From: smiefert at ...784... (Stefan Miefert) Date: Mon, 28 Jul 2008 14:00:52 +0200 Subject: [Gambas-user] Multidimensionally Collection/Arrays In-Reply-To: <1217245038.3398.18.camel@...1936...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA596@...1899...> <200807281039.18184.rospolosco@...152...> <8D42310D957CFB46AA11921A711D4D1601FB2CA5AB@...1899...> <1217245038.3398.18.camel@...1936...> Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA5BD@...1899...> Hello, but how cani add some fields after the definition? >arsMyStrings AS String[] > >outside of functions. From m0e.lnx at ...626... Mon Jul 28 15:10:16 2008 From: m0e.lnx at ...626... (M0E Lnx) Date: Mon, 28 Jul 2008 08:10:16 -0500 Subject: [Gambas-user] could somebody write how to make a package for Gentoo? In-Reply-To: <18658903.post@...1379...> References: <18658903.post@...1379...> Message-ID: <1f1e8c1b0807280610i393a4b2fod1c3f8ed367d39b9@...627...> I dont think you could "package" gambas for gentoo per say... If you got gentoo users that want to run yoru gambas application, you can have them install gambas manually. Gentoo doesn't do packages AFAIK. On Fri, Jul 25, 2008 at 3:31 PM, jbskaggs wrote: > > Could somebody write how to create a distribution package of my application > for the gentoo version of linux? > > I dont have Gentoo but I have requests on how to install my program on > gentoo. > > I'd assume the easiest way would be for them to install Gambas 2.5 and > compile my Source code. > > But is there a more professional way? Mind you I am a newbie. > > JB > > > -- > View this message in context: http://www.nabble.com/could-somebody-write-how-to-make-a-package-for-Gentoo--tp18658903p18658903.html > Sent from the gambas-user mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From ariefbayu at ...626... Mon Jul 28 15:10:51 2008 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Mon, 28 Jul 2008 20:10:51 +0700 Subject: [Gambas-user] Gambas JSON Component Message-ID: <976ad9050807280610i576e2980rf320a457bea93448@...627...> Hello, I would like to ask, is there someone who has a gambas JSON component? -- Arief Bayu Purwanto About : http://about.freelancer.web.id/ Blog : http://bayu.freelancer.web.id/ From smiefert at ...784... Mon Jul 28 16:53:12 2008 From: smiefert at ...784... (Stefan Miefert) Date: Mon, 28 Jul 2008 16:53:12 +0200 Subject: [Gambas-user] Initialize Collections Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA5CE@...1899...> I can ssetup an array like STRtest as string[] = ["a","b","c"] Can I do the same incollections + pecifie the indexname /number ? From smiefert at ...784... Tue Jul 29 08:26:08 2008 From: smiefert at ...784... (Stefan Miefert) Date: Tue, 29 Jul 2008 08:26:08 +0200 Subject: [Gambas-user] Initialize Collections In-Reply-To: <8D42310D957CFB46AA11921A711D4D1601FB2CA5CE@...1899...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA5CE@...1899...> Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA5D6@...1899...> No idea? I need it in a modul to steup the main configs > I can ssetup an array like > > STRtest as string[] = ["a","b","c"] > > Can I do the same incollections + pecifie the indexname /number ? From gambas at ...1... Tue Jul 29 11:46:27 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 29 Jul 2008 11:46:27 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217236674.3398.14.camel@...1936...> References: <200807280122.41575.gambas@...1...> <1217234043.3398.11.camel@...1936...> <1217236674.3398.14.camel@...1936...> Message-ID: <200807291146.27910.gambas@...1...> On lundi 28 juillet 2008, Steven Lobbezoo wrote: > Furthermore, i tested this with my real apps: > They produce a sig 11 in the ide > direct they just quit immediately, without any message. > > Steven > I recompiled gambas entirely with gcc 4.3 and tested the application you sent me. Everything seems to work correctly... -- Benoit Minisini From steven at ...1652... Tue Jul 29 13:21:38 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 29 Jul 2008 13:21:38 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807291146.27910.gambas@...1...> References: <200807280122.41575.gambas@...1...> <1217234043.3398.11.camel@...1936...> <1217236674.3398.14.camel@...1936...> <200807291146.27910.gambas@...1...> Message-ID: <1217330498.3842.35.camel@...1936...> Will this get delivered ? Or should i send it in pieces Steven ?Your mail to 'Gambas-user' with the subject Re: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 Is being held until the list moderator can review it for approval. The reason it is being held: Message body is too big: 372165 bytes with a limit of 256 KB From steven at ...1652... Tue Jul 29 13:29:59 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 29 Jul 2008 13:29:59 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807291146.27910.gambas@...1...> References: <200807280122.41575.gambas@...1...> <1217234043.3398.11.camel@...1936...> <1217236674.3398.14.camel@...1936...> <200807291146.27910.gambas@...1...> Message-ID: <1217330999.3842.38.camel@...1936...> Well, got my answer (not very nice ;-) ) : ?Your request to the Gambas-user mailing list Posting of your message titled "Re: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3" has been rejected by the list moderator. The moderator gave the following reason for rejecting your request: "No reason given" Any questions or comments should be directed to the list administrator at: gambas-user-owner at lists.sourceforge.net So I attach part I here -------------- next part -------------- System: Linux 2.6.25.11-0.1-pae #1 SMP 2008-07-13 20:48:28 +0200 i686 X Vendor: The X.Org Foundation X Vendor Release: 10400090 Selinux: No Accessibility: Disabled GTK+ Theme: Mist Icon Theme: Mist Memory status: size: 0 vsize: 0 resident: 0 share: 0 rss: 0 rss_rlim: 0 CPU usage: start_time: 0 rtime: 0 utime: 0 stime: 0 cutime:0 cstime: 0 timeout: 0 it_real_value: 0 frequency: 0 ----------- .xsession-errors (205 sec old) --------------------- SKYPE --> PING (sync reply) SKYPE PING (sync reply) SKYPE PING (sync reply) SKYPE PING (sync reply) SKYPE PING (sync reply) SKYPE PING (sync reply) SKYPE PING (sync reply) SKYPE PING (sync reply) SKYPE References: <200807280122.41575.gambas@...1...> <200807291146.27910.gambas@...1...> <1217330498.3842.35.camel@...1936...> Message-ID: <200807291334.03476.gambas@...1...> On mardi 29 juillet 2008, Steven Lobbezoo wrote: > Will this get delivered ? > Or should i send it in pieces > > Steven > > > ?Your mail to 'Gambas-user' with the subject > > Re: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 > > Is being held until the list moderator can review it for approval. > > The reason it is being held: > > Message body is too big: 372165 bytes with a limit of 256 KB > There are more than 500 people that have subscribed to this list. Think that your 360K message is sent 500 times, and 500 x 360 = 18Mb of traffic just for one mail! -- Benoit Minisini From steven at ...1652... Tue Jul 29 13:30:20 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 29 Jul 2008 13:30:20 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807291146.27910.gambas@...1...> References: <200807280122.41575.gambas@...1...> <1217234043.3398.11.camel@...1936...> <1217236674.3398.14.camel@...1936...> <200807291146.27910.gambas@...1...> Message-ID: <1217331020.3842.40.camel@...1936...> and part II -------------- next part -------------- module[100] MDRawModule base_of_image = 0xb750f000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x10bc0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 41 cv_record.rva = 0x10bf8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libXext.so.6.4.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 28ce1837-08c5-5796-2b64-d01c9f18ddf7 (cv_record).age = 0 (cv_record).pdb_file_name = "libXext.so.6.4.0" (misc_record) = (null) (debug_file) = "libXext.so.6.4.0" (debug_identifier) = "28CE183708C557962B64D01C9F18DDF70" (version) = "" module[101] MDRawModule base_of_image = 0xb7510000 size_of_image = 0x25000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x10c28 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 47 cv_record.rva = 0x10c70 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libfontconfig.so.1.2.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = b3f204eb-fc6d-aa4a-e6f7-8ffae3e5e7e7 (cv_record).age = 0 (cv_record).pdb_file_name = "libfontconfig.so.1.2.0" (misc_record) = (null) (debug_file) = "libfontconfig.so.1.2.0" (debug_identifier) = "B3F204EBFC6DAA4AE6F78FFAE3E5E7E70" (version) = "" module[102] MDRawModule base_of_image = 0xb7535000 size_of_image = 0x8000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x10ca0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 47 cv_record.rva = 0x10ce8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libfontconfig.so.1.2.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = b3f204eb-fc6d-aa4a-e6f7-8ffae3e5e7e7 (cv_record).age = 0 (cv_record).pdb_file_name = "libfontconfig.so.1.2.0" (misc_record) = (null) (debug_file) = "libfontconfig.so.1.2.0" (debug_identifier) = "B3F204EBFC6DAA4AE6F78FFAE3E5E7E70" (version) = "" module[103] MDRawModule base_of_image = 0xb753d000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x10d18 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 47 cv_record.rva = 0x10d60 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libfontconfig.so.1.2.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = b3f204eb-fc6d-aa4a-e6f7-8ffae3e5e7e7 (cv_record).age = 0 (cv_record).pdb_file_name = "libfontconfig.so.1.2.0" (misc_record) = (null) (debug_file) = "libfontconfig.so.1.2.0" (debug_identifier) = "B3F204EBFC6DAA4AE6F78FFAE3E5E7E70" (version) = "" module[104] MDRawModule base_of_image = 0xb753e000 size_of_image = 0x4000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x10d90 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 43 cv_record.rva = 0x10dd0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libXfixes.so.3.1.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 3f42984c-a63a-0196-fa7c-a1c7c50bc962 (cv_record).age = 0 (cv_record).pdb_file_name = "libXfixes.so.3.1.0" (misc_record) = (null) (debug_file) = "libXfixes.so.3.1.0" (debug_identifier) = "3F42984CA63A0196FA7CA1C7C50BC9620" (version) = "" module[105] MDRawModule base_of_image = 0xb7542000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x10e00 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 43 cv_record.rva = 0x10e40 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libXfixes.so.3.1.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 3f42984c-a63a-0196-fa7c-a1c7c50bc962 (cv_record).age = 0 (cv_record).pdb_file_name = "libXfixes.so.3.1.0" (misc_record) = (null) (debug_file) = "libXfixes.so.3.1.0" (debug_identifier) = "3F42984CA63A0196FA7CA1C7C50BC9620" (version) = "" module[106] MDRawModule base_of_image = 0xb7543000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x10e70 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 43 cv_record.rva = 0x10eb0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libXfixes.so.3.1.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 3f42984c-a63a-0196-fa7c-a1c7c50bc962 (cv_record).age = 0 (cv_record).pdb_file_name = "libXfixes.so.3.1.0" (misc_record) = (null) (debug_file) = "libXfixes.so.3.1.0" (debug_identifier) = "3F42984CA63A0196FA7CA1C7C50BC9620" (version) = "" module[107] MDRawModule base_of_image = 0xb7544000 size_of_image = 0x2000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x10ee0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 44 cv_record.rva = 0x10f20 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libXdamage.so.1.1.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a78bc053-9d97-01e6-b1e4-55a6702859a3 (cv_record).age = 0 (cv_record).pdb_file_name = "libXdamage.so.1.1.0" (misc_record) = (null) (debug_file) = "libXdamage.so.1.1.0" (debug_identifier) = "A78BC0539D9701E6B1E455A6702859A30" (version) = "" module[108] MDRawModule base_of_image = 0xb7546000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x10f50 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 44 cv_record.rva = 0x10f90 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libXdamage.so.1.1.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a78bc053-9d97-01e6-b1e4-55a6702859a3 (cv_record).age = 0 (cv_record).pdb_file_name = "libXdamage.so.1.1.0" (misc_record) = (null) (debug_file) = "libXdamage.so.1.1.0" (debug_identifier) = "A78BC0539D9701E6B1E455A6702859A30" (version) = "" module[109] MDRawModule base_of_image = 0xb7547000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x10fc0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 44 cv_record.rva = 0x11000 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libXdamage.so.1.1.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a78bc053-9d97-01e6-b1e4-55a6702859a3 (cv_record).age = 0 (cv_record).pdb_file_name = "libXdamage.so.1.1.0" (misc_record) = (null) (debug_file) = "libXdamage.so.1.1.0" (debug_identifier) = "A78BC0539D9701E6B1E455A6702859A30" (version) = "" module[110] MDRawModule base_of_image = 0xb7548000 size_of_image = 0x2000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11030 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 47 cv_record.rva = 0x11078 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libXcomposite.so.1.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = b88b81cb-42cc-0897-8049-89d96f2dd6cb (cv_record).age = 0 (cv_record).pdb_file_name = "libXcomposite.so.1.0.0" (misc_record) = (null) (debug_file) = "libXcomposite.so.1.0.0" (debug_identifier) = "B88B81CB42CC0897804989D96F2DD6CB0" (version) = "" module[111] MDRawModule base_of_image = 0xb754a000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x110a8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 47 cv_record.rva = 0x110f0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libXcomposite.so.1.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = b88b81cb-42cc-0897-8049-89d96f2dd6cb (cv_record).age = 0 (cv_record).pdb_file_name = "libXcomposite.so.1.0.0" (misc_record) = (null) (debug_file) = "libXcomposite.so.1.0.0" (debug_identifier) = "B88B81CB42CC0897804989D96F2DD6CB0" (version) = "" module[112] MDRawModule base_of_image = 0xb754b000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11120 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 47 cv_record.rva = 0x11168 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libXcomposite.so.1.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = b88b81cb-42cc-0897-8049-89d96f2dd6cb (cv_record).age = 0 (cv_record).pdb_file_name = "libXcomposite.so.1.0.0" (misc_record) = (null) (debug_file) = "libXcomposite.so.1.0.0" (debug_identifier) = "B88B81CB42CC0897804989D96F2DD6CB0" (version) = "" module[113] MDRawModule base_of_image = 0xb754c000 size_of_image = 0x11d000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11198 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x111d0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libX11.so.6.2.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = cc702bc9-b792-f581-d6a1-48b241164617 (cv_record).age = 0 (cv_record).pdb_file_name = "libX11.so.6.2.0" (misc_record) = (null) (debug_file) = "libX11.so.6.2.0" (debug_identifier) = "CC702BC9B792F581D6A148B2411646170" (version) = "" module[114] MDRawModule base_of_image = 0xb7669000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x111f8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x11230 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libX11.so.6.2.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = cc702bc9-b792-f581-d6a1-48b241164617 (cv_record).age = 0 (cv_record).pdb_file_name = "libX11.so.6.2.0" (misc_record) = (null) (debug_file) = "libX11.so.6.2.0" (debug_identifier) = "CC702BC9B792F581D6A148B2411646170" (version) = "" module[115] MDRawModule base_of_image = 0xb766a000 size_of_image = 0x3000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11258 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x11290 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libX11.so.6.2.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = cc702bc9-b792-f581-d6a1-48b241164617 (cv_record).age = 0 (cv_record).pdb_file_name = "libX11.so.6.2.0" (misc_record) = (null) (debug_file) = "libX11.so.6.2.0" (debug_identifier) = "CC702BC9B792F581D6A148B2411646170" (version) = "" module[116] MDRawModule base_of_image = 0xb766d000 size_of_image = 0xc000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x112b8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 38 cv_record.rva = 0x112e8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libgcc_s.so.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = cc0de58f-c2c0-d796-8aaf-b2b465bf2645 (cv_record).age = 0 (cv_record).pdb_file_name = "libgcc_s.so.1" (misc_record) = (null) (debug_file) = "libgcc_s.so.1" (debug_identifier) = "CC0DE58FC2C0D7968AAFB2B465BF26450" (version) = "" module[117] MDRawModule base_of_image = 0xb7679000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11310 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 38 cv_record.rva = 0x11340 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libgcc_s.so.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = cc0de58f-c2c0-d796-8aaf-b2b465bf2645 (cv_record).age = 0 (cv_record).pdb_file_name = "libgcc_s.so.1" (misc_record) = (null) (debug_file) = "libgcc_s.so.1" (debug_identifier) = "CC0DE58FC2C0D7968AAFB2B465BF26450" (version) = "" module[118] MDRawModule base_of_image = 0xb767a000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11368 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 38 cv_record.rva = 0x11398 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libgcc_s.so.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = cc0de58f-c2c0-d796-8aaf-b2b465bf2645 (cv_record).age = 0 (cv_record).pdb_file_name = "libgcc_s.so.1" (misc_record) = (null) (debug_file) = "libgcc_s.so.1" (debug_identifier) = "CC0DE58FC2C0D7968AAFB2B465BF26450" (version) = "" module[119] MDRawModule base_of_image = 0xb767b000 size_of_image = 0xe5000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x113c0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 44 cv_record.rva = 0x11400 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libstdc++.so.6.0.10" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = ed75caef-1278-2784-b9b8-be68b271b7d9 (cv_record).age = 0 (cv_record).pdb_file_name = "libstdc++.so.6.0.10" (misc_record) = (null) (debug_file) = "libstdc++.so.6.0.10" (debug_identifier) = "ED75CAEF12782784B9B8BE68B271B7D90" (version) = "" module[120] MDRawModule base_of_image = 0xb7760000 size_of_image = 0x4000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11430 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 44 cv_record.rva = 0x11470 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libstdc++.so.6.0.10" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = ed75caef-1278-2784-b9b8-be68b271b7d9 (cv_record).age = 0 (cv_record).pdb_file_name = "libstdc++.so.6.0.10" (misc_record) = (null) (debug_file) = "libstdc++.so.6.0.10" (debug_identifier) = "ED75CAEF12782784B9B8BE68B271B7D90" (version) = "" module[121] MDRawModule base_of_image = 0xb7764000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x114a0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 44 cv_record.rva = 0x114e0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libstdc++.so.6.0.10" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = ed75caef-1278-2784-b9b8-be68b271b7d9 (cv_record).age = 0 (cv_record).pdb_file_name = "libstdc++.so.6.0.10" (misc_record) = (null) (debug_file) = "libstdc++.so.6.0.10" (debug_identifier) = "ED75CAEF12782784B9B8BE68B271B7D90" (version) = "" module[122] MDRawModule base_of_image = 0xb776b000 size_of_image = 0xb3000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11510 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 48 cv_record.rva = 0x11558 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libglib-2.0.so.0.1600.3" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = bc076733-deee-a5f5-0418-41e784b9a411 (cv_record).age = 0 (cv_record).pdb_file_name = "libglib-2.0.so.0.1600.3" (misc_record) = (null) (debug_file) = "libglib-2.0.so.0.1600.3" (debug_identifier) = "BC076733DEEEA5F5041841E784B9A4110" (version) = "" module[123] MDRawModule base_of_image = 0xb781e000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11588 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 48 cv_record.rva = 0x115d0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libglib-2.0.so.0.1600.3" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = bc076733-deee-a5f5-0418-41e784b9a411 (cv_record).age = 0 (cv_record).pdb_file_name = "libglib-2.0.so.0.1600.3" (misc_record) = (null) (debug_file) = "libglib-2.0.so.0.1600.3" (debug_identifier) = "BC076733DEEEA5F5041841E784B9A4110" (version) = "" module[124] MDRawModule base_of_image = 0xb781f000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11600 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 48 cv_record.rva = 0x11648 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libglib-2.0.so.0.1600.3" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = bc076733-deee-a5f5-0418-41e784b9a411 (cv_record).age = 0 (cv_record).pdb_file_name = "libglib-2.0.so.0.1600.3" (misc_record) = (null) (debug_file) = "libglib-2.0.so.0.1600.3" (debug_identifier) = "BC076733DEEEA5F5041841E784B9A4110" (version) = "" module[125] MDRawModule base_of_image = 0xb7820000 size_of_image = 0x39000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11678 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x116c8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgobject-2.0.so.0.1600.3" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 0e1e8ccf-7a82-e6b8-d9e7-8af2e27e1cab (cv_record).age = 0 (cv_record).pdb_file_name = "libgobject-2.0.so.0.1600.3" (misc_record) = (null) (debug_file) = "libgobject-2.0.so.0.1600.3" (debug_identifier) = "0E1E8CCF7A82E6B8D9E78AF2E27E1CAB0" (version) = "" module[126] MDRawModule base_of_image = 0xb7859000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11700 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x11750 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgobject-2.0.so.0.1600.3" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 0e1e8ccf-7a82-e6b8-d9e7-8af2e27e1cab (cv_record).age = 0 (cv_record).pdb_file_name = "libgobject-2.0.so.0.1600.3" (misc_record) = (null) (debug_file) = "libgobject-2.0.so.0.1600.3" (debug_identifier) = "0E1E8CCF7A82E6B8D9E78AF2E27E1CAB0" (version) = "" module[127] MDRawModule base_of_image = 0xb785a000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11788 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x117d8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgobject-2.0.so.0.1600.3" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 0e1e8ccf-7a82-e6b8-d9e7-8af2e27e1cab (cv_record).age = 0 (cv_record).pdb_file_name = "libgobject-2.0.so.0.1600.3" (misc_record) = (null) (debug_file) = "libgobject-2.0.so.0.1600.3" (debug_identifier) = "0E1E8CCF7A82E6B8D9E78AF2E27E1CAB0" (version) = "" module[128] MDRawModule base_of_image = 0xb785b000 size_of_image = 0x80000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11810 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 43 cv_record.rva = 0x11850 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libcairo.so.2.11.7" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = e1ffdbf3-88f9-e0cf-adb4-b364baca32c3 (cv_record).age = 0 (cv_record).pdb_file_name = "libcairo.so.2.11.7" (misc_record) = (null) (debug_file) = "libcairo.so.2.11.7" (debug_identifier) = "E1FFDBF388F9E0CFADB4B364BACA32C30" (version) = "" module[129] MDRawModule base_of_image = 0xb78db000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11880 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 43 cv_record.rva = 0x118c0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libcairo.so.2.11.7" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = e1ffdbf3-88f9-e0cf-adb4-b364baca32c3 (cv_record).age = 0 (cv_record).pdb_file_name = "libcairo.so.2.11.7" (misc_record) = (null) (debug_file) = "libcairo.so.2.11.7" (debug_identifier) = "E1FFDBF388F9E0CFADB4B364BACA32C30" (version) = "" module[130] MDRawModule base_of_image = 0xb78dc000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x118f0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 43 cv_record.rva = 0x11930 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libcairo.so.2.11.7" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = e1ffdbf3-88f9-e0cf-adb4-b364baca32c3 (cv_record).age = 0 (cv_record).pdb_file_name = "libcairo.so.2.11.7" (misc_record) = (null) (debug_file) = "libcairo.so.2.11.7" (debug_identifier) = "E1FFDBF388F9E0CFADB4B364BACA32C30" (version) = "" module[131] MDRawModule base_of_image = 0xb78dd000 size_of_image = 0x3c000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11960 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 49 cv_record.rva = 0x119a8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libpango-1.0.so.0.2000.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 5e95c940-5bfd-7d48-244d-6a18413bd2ce (cv_record).age = 0 (cv_record).pdb_file_name = "libpango-1.0.so.0.2000.1" (misc_record) = (null) (debug_file) = "libpango-1.0.so.0.2000.1" (debug_identifier) = "5E95C9405BFD7D48244D6A18413BD2CE0" (version) = "" module[132] MDRawModule base_of_image = 0xb7919000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x119e0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 49 cv_record.rva = 0x11a28 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libpango-1.0.so.0.2000.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 5e95c940-5bfd-7d48-244d-6a18413bd2ce (cv_record).age = 0 (cv_record).pdb_file_name = "libpango-1.0.so.0.2000.1" (misc_record) = (null) (debug_file) = "libpango-1.0.so.0.2000.1" (debug_identifier) = "5E95C9405BFD7D48244D6A18413BD2CE0" (version) = "" module[133] MDRawModule base_of_image = 0xb791a000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11a60 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 49 cv_record.rva = 0x11aa8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libpango-1.0.so.0.2000.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 5e95c940-5bfd-7d48-244d-6a18413bd2ce (cv_record).age = 0 (cv_record).pdb_file_name = "libpango-1.0.so.0.2000.1" (misc_record) = (null) (debug_file) = "libpango-1.0.so.0.2000.1" (debug_identifier) = "5E95C9405BFD7D48244D6A18413BD2CE0" (version) = "" module[134] MDRawModule base_of_image = 0xb791b000 size_of_image = 0x8000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11ae0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 54 cv_record.rva = 0x11b38 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libpangocairo-1.0.so.0.2000.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 1152d139-a0ba-ffcf-3354-bfac6084b0ed (cv_record).age = 0 (cv_record).pdb_file_name = "libpangocairo-1.0.so.0.2000.1" (misc_record) = (null) (debug_file) = "libpangocairo-1.0.so.0.2000.1" (debug_identifier) = "1152D139A0BAFFCF3354BFAC6084B0ED0" (version) = "" module[135] MDRawModule base_of_image = 0xb7923000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11b70 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 54 cv_record.rva = 0x11bc8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libpangocairo-1.0.so.0.2000.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 1152d139-a0ba-ffcf-3354-bfac6084b0ed (cv_record).age = 0 (cv_record).pdb_file_name = "libpangocairo-1.0.so.0.2000.1" (misc_record) = (null) (debug_file) = "libpangocairo-1.0.so.0.2000.1" (debug_identifier) = "1152D139A0BAFFCF3354BFAC6084B0ED0" (version) = "" module[136] MDRawModule base_of_image = 0xb7924000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11c00 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 54 cv_record.rva = 0x11c58 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libpangocairo-1.0.so.0.2000.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 1152d139-a0ba-ffcf-3354-bfac6084b0ed (cv_record).age = 0 (cv_record).pdb_file_name = "libpangocairo-1.0.so.0.2000.1" (misc_record) = (null) (debug_file) = "libpangocairo-1.0.so.0.2000.1" (debug_identifier) = "1152D139A0BAFFCF3354BFAC6084B0ED0" (version) = "" module[137] MDRawModule base_of_image = 0xb7925000 size_of_image = 0x17000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11c90 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 54 cv_record.rva = 0x11ce8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgdk_pixbuf-2.0.so.0.1200.9" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a1cbe17b-9435-e825-868c-3a2708db3c4b (cv_record).age = 0 (cv_record).pdb_file_name = "libgdk_pixbuf-2.0.so.0.1200.9" (misc_record) = (null) (debug_file) = "libgdk_pixbuf-2.0.so.0.1200.9" (debug_identifier) = "A1CBE17B9435E825868C3A2708DB3C4B0" (version) = "" module[138] MDRawModule base_of_image = 0xb793c000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11d20 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 54 cv_record.rva = 0x11d78 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgdk_pixbuf-2.0.so.0.1200.9" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a1cbe17b-9435-e825-868c-3a2708db3c4b (cv_record).age = 0 (cv_record).pdb_file_name = "libgdk_pixbuf-2.0.so.0.1200.9" (misc_record) = (null) (debug_file) = "libgdk_pixbuf-2.0.so.0.1200.9" (debug_identifier) = "A1CBE17B9435E825868C3A2708DB3C4B0" (version) = "" module[139] MDRawModule base_of_image = 0xb793d000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11db0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 54 cv_record.rva = 0x11e08 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgdk_pixbuf-2.0.so.0.1200.9" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a1cbe17b-9435-e825-868c-3a2708db3c4b (cv_record).age = 0 (cv_record).pdb_file_name = "libgdk_pixbuf-2.0.so.0.1200.9" (misc_record) = (null) (debug_file) = "libgdk_pixbuf-2.0.so.0.1200.9" (debug_identifier) = "A1CBE17B9435E825868C3A2708DB3C4B0" (version) = "" module[140] MDRawModule base_of_image = 0xb793e000 size_of_image = 0x84000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11e40 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x11e90 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgdk-x11-2.0.so.0.1200.9" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 07fe0e4f-21eb-edcc-7a12-f359fb5ecd55 (cv_record).age = 0 (cv_record).pdb_file_name = "libgdk-x11-2.0.so.0.1200.9" (misc_record) = (null) (debug_file) = "libgdk-x11-2.0.so.0.1200.9" (debug_identifier) = "07FE0E4F21EBEDCC7A12F359FB5ECD550" (version) = "" module[141] MDRawModule base_of_image = 0xb79c2000 size_of_image = 0x2000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11ec8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x11f18 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgdk-x11-2.0.so.0.1200.9" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 07fe0e4f-21eb-edcc-7a12-f359fb5ecd55 (cv_record).age = 0 (cv_record).pdb_file_name = "libgdk-x11-2.0.so.0.1200.9" (misc_record) = (null) (debug_file) = "libgdk-x11-2.0.so.0.1200.9" (debug_identifier) = "07FE0E4F21EBEDCC7A12F359FB5ECD550" (version) = "" module[142] MDRawModule base_of_image = 0xb79c4000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11f50 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x11fa0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgdk-x11-2.0.so.0.1200.9" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 07fe0e4f-21eb-edcc-7a12-f359fb5ecd55 (cv_record).age = 0 (cv_record).pdb_file_name = "libgdk-x11-2.0.so.0.1200.9" (misc_record) = (null) (debug_file) = "libgdk-x11-2.0.so.0.1200.9" (debug_identifier) = "07FE0E4F21EBEDCC7A12F359FB5ECD550" (version) = "" module[143] MDRawModule base_of_image = 0xb79c5000 size_of_image = 0x380000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x11fd8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x12028 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgtk-x11-2.0.so.0.1200.9" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 31f56118-ac81-fd1f-865b-938f99034842 (cv_record).age = 0 (cv_record).pdb_file_name = "libgtk-x11-2.0.so.0.1200.9" (misc_record) = (null) (debug_file) = "libgtk-x11-2.0.so.0.1200.9" (debug_identifier) = "31F56118AC81FD1F865B938F990348420" (version) = "" module[144] MDRawModule base_of_image = 0xb7d45000 size_of_image = 0x4000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12060 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x120b0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgtk-x11-2.0.so.0.1200.9" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 31f56118-ac81-fd1f-865b-938f99034842 (cv_record).age = 0 (cv_record).pdb_file_name = "libgtk-x11-2.0.so.0.1200.9" (misc_record) = (null) (debug_file) = "libgtk-x11-2.0.so.0.1200.9" (debug_identifier) = "31F56118AC81FD1F865B938F990348420" (version) = "" module[145] MDRawModule base_of_image = 0xb7d49000 size_of_image = 0x2000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x120e8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x12138 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgtk-x11-2.0.so.0.1200.9" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 31f56118-ac81-fd1f-865b-938f99034842 (cv_record).age = 0 (cv_record).pdb_file_name = "libgtk-x11-2.0.so.0.1200.9" (misc_record) = (null) (debug_file) = "libgtk-x11-2.0.so.0.1200.9" (debug_identifier) = "31F56118AC81FD1F865B938F990348420" (version) = "" module[146] MDRawModule base_of_image = 0xb7d4c000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12170 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 35 cv_record.rva = 0x121e0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/tmp/gambas.1000/20650/tr/fr/LC_MESSAGES/gb.form.mo" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "gb.form.mo" (misc_record) = (null) (debug_file) = "gb.form.mo" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[147] MDRawModule base_of_image = 0xb7d4d000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12208 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 69 cv_record.rva = 0x12298 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/var/cache/fontconfig/b6bbb9f898b73777cfe763014a8c08d3-x86.cache-2" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "b6bbb9f898b73777cfe763014a8c08d3-x86.cache-2" (misc_record) = (null) (debug_file) = "b6bbb9f898b73777cfe763014a8c08d3-x86.cache-2" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[148] MDRawModule base_of_image = 0xb7d4e000 size_of_image = 0x5000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x122e0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 69 cv_record.rva = 0x12370 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/var/cache/fontconfig/d62e99ef547d1d24cdb1bd22ec1a2976-x86.cache-2" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "d62e99ef547d1d24cdb1bd22ec1a2976-x86.cache-2" (misc_record) = (null) (debug_file) = "d62e99ef547d1d24cdb1bd22ec1a2976-x86.cache-2" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[149] MDRawModule base_of_image = 0xb7d53000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x123b8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 36 cv_record.rva = 0x12410 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/locale/fr_FR.utf8/LC_MONETARY" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "LC_MONETARY" (misc_record) = (null) (debug_file) = "LC_MONETARY" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[150] MDRawModule base_of_image = 0xb7d54000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12438 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x124b0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/locale/fr_FR.utf8/LC_MESSAGES/SYS_LC_MESSAGES" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "SYS_LC_MESSAGES" (misc_record) = (null) (debug_file) = "SYS_LC_MESSAGES" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[151] MDRawModule base_of_image = 0xb7d55000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x124d8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 33 cv_record.rva = 0x12528 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/locale/fr_FR.utf8/LC_PAPER" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "LC_PAPER" (misc_record) = (null) (debug_file) = "LC_PAPER" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[152] MDRawModule base_of_image = 0xb7d56000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12550 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 32 cv_record.rva = 0x125a0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/locale/fr_FR.utf8/LC_NAME" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "LC_NAME" (misc_record) = (null) (debug_file) = "LC_NAME" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[153] MDRawModule base_of_image = 0xb7d57000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x125c0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 35 cv_record.rva = 0x12610 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/locale/fr_FR.utf8/LC_ADDRESS" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "LC_ADDRESS" (misc_record) = (null) (debug_file) = "LC_ADDRESS" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[154] MDRawModule base_of_image = 0xb7d58000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12638 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 37 cv_record.rva = 0x12690 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/locale/fr_FR.utf8/LC_TELEPHONE" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "LC_TELEPHONE" (misc_record) = (null) (debug_file) = "LC_TELEPHONE" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[155] MDRawModule base_of_image = 0xb7d59000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x126b8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 39 cv_record.rva = 0x12710 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/locale/fr_FR.utf8/LC_MEASUREMENT" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "LC_MEASUREMENT" (misc_record) = (null) (debug_file) = "LC_MEASUREMENT" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[156] MDRawModule base_of_image = 0xb7d5a000 size_of_image = 0x7000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12738 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 44 cv_record.rva = 0x12788 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gconv/gconv-modules.cache" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "gconv-modules.cache" (misc_record) = (null) (debug_file) = "gconv-modules.cache" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[157] MDRawModule base_of_image = 0xb7d61000 size_of_image = 0x8000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x127b8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 41 cv_record.rva = 0x12800 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.eval.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 5282dfe9-4a33-dd6b-b42d-6c9f6722a34f (cv_record).age = 0 (cv_record).pdb_file_name = "gb.eval.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.eval.so.0.0.0" (debug_identifier) = "5282DFE94A33DD6BB42D6C9F6722A34F0" (version) = "" module[158] MDRawModule base_of_image = 0xb7d69000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12830 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 41 cv_record.rva = 0x12878 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.eval.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 5282dfe9-4a33-dd6b-b42d-6c9f6722a34f (cv_record).age = 0 (cv_record).pdb_file_name = "gb.eval.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.eval.so.0.0.0" (debug_identifier) = "5282DFE94A33DD6BB42D6C9F6722A34F0" (version) = "" module[159] MDRawModule base_of_image = 0xb7d6a000 size_of_image = 0x2000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x128a8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 41 cv_record.rva = 0x128f0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.eval.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 5282dfe9-4a33-dd6b-b42d-6c9f6722a34f (cv_record).age = 0 (cv_record).pdb_file_name = "gb.eval.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.eval.so.0.0.0" (debug_identifier) = "5282DFE94A33DD6BB42D6C9F6722A34F0" (version) = "" module[160] MDRawModule base_of_image = 0xb7d6d000 size_of_image = 0x4000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12920 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 38 cv_record.rva = 0x12968 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.gtk.gambas" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "gb.gtk.gambas" (misc_record) = (null) (debug_file) = "gb.gtk.gambas" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[161] MDRawModule base_of_image = 0xb7d71000 size_of_image = 0x4000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12990 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 41 cv_record.rva = 0x129d8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.draw.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 75691791-3565-4050-33b2-30960b412983 (cv_record).age = 0 (cv_record).pdb_file_name = "gb.draw.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.draw.so.0.0.0" (debug_identifier) = "756917913565405033B230960B4129830" (version) = "" module[162] MDRawModule base_of_image = 0xb7d75000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12a08 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 41 cv_record.rva = 0x12a50 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.draw.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 75691791-3565-4050-33b2-30960b412983 (cv_record).age = 0 (cv_record).pdb_file_name = "gb.draw.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.draw.so.0.0.0" (debug_identifier) = "756917913565405033B230960B4129830" (version) = "" module[163] MDRawModule base_of_image = 0xb7d76000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12a80 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 41 cv_record.rva = 0x12ac8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.draw.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 75691791-3565-4050-33b2-30960b412983 (cv_record).age = 0 (cv_record).pdb_file_name = "gb.draw.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.draw.so.0.0.0" (debug_identifier) = "756917913565405033B230960B4129830" (version) = "" module[164] MDRawModule base_of_image = 0xb7d77000 size_of_image = 0x5e000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12af8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x12b40 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.gtk.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = fd3a533f-563b-1356-398a-e8a3417c81de (cv_record).age = 0 (cv_record).pdb_file_name = "gb.gtk.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.gtk.so.0.0.0" (debug_identifier) = "FD3A533F563B1356398AE8A3417C81DE0" (version) = "" module[165] MDRawModule base_of_image = 0xb7dd5000 size_of_image = 0x2000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12b68 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x12bb0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.gtk.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = fd3a533f-563b-1356-398a-e8a3417c81de (cv_record).age = 0 (cv_record).pdb_file_name = "gb.gtk.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.gtk.so.0.0.0" (debug_identifier) = "FD3A533F563B1356398AE8A3417C81DE0" (version) = "" module[166] MDRawModule base_of_image = 0xb7dd7000 size_of_image = 0xc000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12bd8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x12c20 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.gtk.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = fd3a533f-563b-1356-398a-e8a3417c81de (cv_record).age = 0 (cv_record).pdb_file_name = "gb.gtk.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.gtk.so.0.0.0" (debug_identifier) = "FD3A533F563B1356398AE8A3417C81DE0" (version) = "" module[167] MDRawModule base_of_image = 0xb7de3000 size_of_image = 0x9000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12c48 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 44 cv_record.rva = 0x12c80 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnss_files-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 39c1eb8f-7324-a650-49d5-80c39e027f69 (cv_record).age = 0 (cv_record).pdb_file_name = "libnss_files-2.8.so" (misc_record) = (null) (debug_file) = "libnss_files-2.8.so" (debug_identifier) = "39C1EB8F7324A65049D580C39E027F690" (version) = "" module[168] MDRawModule base_of_image = 0xb7dec000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12cb0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 44 cv_record.rva = 0x12ce8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnss_files-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 39c1eb8f-7324-a650-49d5-80c39e027f69 (cv_record).age = 0 (cv_record).pdb_file_name = "libnss_files-2.8.so" (misc_record) = (null) (debug_file) = "libnss_files-2.8.so" (debug_identifier) = "39C1EB8F7324A65049D580C39E027F690" (version) = "" module[169] MDRawModule base_of_image = 0xb7ded000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12d18 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 44 cv_record.rva = 0x12d50 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnss_files-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 39c1eb8f-7324-a650-49d5-80c39e027f69 (cv_record).age = 0 (cv_record).pdb_file_name = "libnss_files-2.8.so" (misc_record) = (null) (debug_file) = "libnss_files-2.8.so" (debug_identifier) = "39C1EB8F7324A65049D580C39E027F690" (version) = "" module[170] MDRawModule base_of_image = 0xb7dee000 size_of_image = 0x8000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12d80 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 42 cv_record.rva = 0x12db8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnss_nis-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = d4a19359-3d0d-5b48-9288-b2f6c27efdc6 (cv_record).age = 0 (cv_record).pdb_file_name = "libnss_nis-2.8.so" (misc_record) = (null) (debug_file) = "libnss_nis-2.8.so" (debug_identifier) = "D4A193593D0D5B489288B2F6C27EFDC60" (version) = "" module[171] MDRawModule base_of_image = 0xb7df6000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12de8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 42 cv_record.rva = 0x12e20 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnss_nis-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = d4a19359-3d0d-5b48-9288-b2f6c27efdc6 (cv_record).age = 0 (cv_record).pdb_file_name = "libnss_nis-2.8.so" (misc_record) = (null) (debug_file) = "libnss_nis-2.8.so" (debug_identifier) = "D4A193593D0D5B489288B2F6C27EFDC60" (version) = "" module[172] MDRawModule base_of_image = 0xb7df7000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12e50 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 42 cv_record.rva = 0x12e88 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnss_nis-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = d4a19359-3d0d-5b48-9288-b2f6c27efdc6 (cv_record).age = 0 (cv_record).pdb_file_name = "libnss_nis-2.8.so" (misc_record) = (null) (debug_file) = "libnss_nis-2.8.so" (debug_identifier) = "D4A193593D0D5B489288B2F6C27EFDC60" (version) = "" module[173] MDRawModule base_of_image = 0xb7df8000 size_of_image = 0x13000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12eb8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 38 cv_record.rva = 0x12ee8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnsl-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = dad6223a-b781-ebe2-6cc5-da28eabff659 (cv_record).age = 0 (cv_record).pdb_file_name = "libnsl-2.8.so" (misc_record) = (null) (debug_file) = "libnsl-2.8.so" (debug_identifier) = "DAD6223AB781EBE26CC5DA28EABFF6590" (version) = "" module[174] MDRawModule base_of_image = 0xb7e0b000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12f10 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 38 cv_record.rva = 0x12f40 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnsl-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = dad6223a-b781-ebe2-6cc5-da28eabff659 (cv_record).age = 0 (cv_record).pdb_file_name = "libnsl-2.8.so" (misc_record) = (null) (debug_file) = "libnsl-2.8.so" (debug_identifier) = "DAD6223AB781EBE26CC5DA28EABFF6590" (version) = "" module[175] MDRawModule base_of_image = 0xb7e0c000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12f68 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 38 cv_record.rva = 0x12f98 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnsl-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = dad6223a-b781-ebe2-6cc5-da28eabff659 (cv_record).age = 0 (cv_record).pdb_file_name = "libnsl-2.8.so" (misc_record) = (null) (debug_file) = "libnsl-2.8.so" (debug_identifier) = "DAD6223AB781EBE26CC5DA28EABFF6590" (version) = "" module[176] MDRawModule base_of_image = 0xb7e0f000 size_of_image = 0x7000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x12fc0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 45 cv_record.rva = 0x12ff8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnss_compat-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 47e40261-1d99-7e72-a407-aa4b37d29890 (cv_record).age = 0 (cv_record).pdb_file_name = "libnss_compat-2.8.so" (misc_record) = (null) (debug_file) = "libnss_compat-2.8.so" (debug_identifier) = "47E402611D997E72A407AA4B37D298900" (version) = "" module[177] MDRawModule base_of_image = 0xb7e16000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13028 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 45 cv_record.rva = 0x13060 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnss_compat-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 47e40261-1d99-7e72-a407-aa4b37d29890 (cv_record).age = 0 (cv_record).pdb_file_name = "libnss_compat-2.8.so" (misc_record) = (null) (debug_file) = "libnss_compat-2.8.so" (debug_identifier) = "47E402611D997E72A407AA4B37D298900" (version) = "" module[178] MDRawModule base_of_image = 0xb7e17000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13090 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 45 cv_record.rva = 0x130c8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libnss_compat-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 47e40261-1d99-7e72-a407-aa4b37d29890 (cv_record).age = 0 (cv_record).pdb_file_name = "libnss_compat-2.8.so" (misc_record) = (null) (debug_file) = "libnss_compat-2.8.so" (debug_identifier) = "47E402611D997E72A407AA4B37D298900" (version) = "" module[179] MDRawModule base_of_image = 0xb7e19000 size_of_image = 0x13d000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x130f8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 36 cv_record.rva = 0x13120 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libc-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = f9212319-26d2-a71b-d51a-b10739fb4e6b (cv_record).age = 0 (cv_record).pdb_file_name = "libc-2.8.so" (misc_record) = (null) (debug_file) = "libc-2.8.so" (debug_identifier) = "F921231926D2A71BD51AB10739FB4E6B0" (version) = "" module[180] MDRawModule base_of_image = 0xb7f56000 size_of_image = 0x2000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13148 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 36 cv_record.rva = 0x13170 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libc-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = f9212319-26d2-a71b-d51a-b10739fb4e6b (cv_record).age = 0 (cv_record).pdb_file_name = "libc-2.8.so" (misc_record) = (null) (debug_file) = "libc-2.8.so" (debug_identifier) = "F921231926D2A71BD51AB10739FB4E6B0" (version) = "" module[181] MDRawModule base_of_image = 0xb7f58000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13198 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 36 cv_record.rva = 0x131c0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libc-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = f9212319-26d2-a71b-d51a-b10739fb4e6b (cv_record).age = 0 (cv_record).pdb_file_name = "libc-2.8.so" (misc_record) = (null) (debug_file) = "libc-2.8.so" (debug_identifier) = "F921231926D2A71BD51AB10739FB4E6B0" (version) = "" module[182] MDRawModule base_of_image = 0xb7f5c000 size_of_image = 0x5000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x131e8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x13220 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libffi.so.4.0.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 5ab03d44-6fd2-3eaa-a4d7-305a6e145c74 (cv_record).age = 0 (cv_record).pdb_file_name = "libffi.so.4.0.1" (misc_record) = (null) (debug_file) = "libffi.so.4.0.1" (debug_identifier) = "5AB03D446FD23EAAA4D7305A6E145C740" (version) = "" module[183] MDRawModule base_of_image = 0xb7f61000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13248 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x13280 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libffi.so.4.0.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 5ab03d44-6fd2-3eaa-a4d7-305a6e145c74 (cv_record).age = 0 (cv_record).pdb_file_name = "libffi.so.4.0.1" (misc_record) = (null) (debug_file) = "libffi.so.4.0.1" (debug_identifier) = "5AB03D446FD23EAAA4D7305A6E145C740" (version) = "" module[184] MDRawModule base_of_image = 0xb7f62000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x132a8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x132e0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libffi.so.4.0.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 5ab03d44-6fd2-3eaa-a4d7-305a6e145c74 (cv_record).age = 0 (cv_record).pdb_file_name = "libffi.so.4.0.1" (misc_record) = (null) (debug_file) = "libffi.so.4.0.1" (debug_identifier) = "5AB03D446FD23EAAA4D7305A6E145C740" (version) = "" module[185] MDRawModule base_of_image = 0xb7f63000 size_of_image = 0x2000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13308 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 37 cv_record.rva = 0x13330 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libdl-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 362c158b-9f44-32c4-3928-7c48515e7d1f (cv_record).age = 0 (cv_record).pdb_file_name = "libdl-2.8.so" (misc_record) = (null) (debug_file) = "libdl-2.8.so" (debug_identifier) = "362C158B9F4432C439287C48515E7D1F0" (version) = "" module[186] MDRawModule base_of_image = 0xb7f65000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13358 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 37 cv_record.rva = 0x13380 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libdl-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 362c158b-9f44-32c4-3928-7c48515e7d1f (cv_record).age = 0 (cv_record).pdb_file_name = "libdl-2.8.so" (misc_record) = (null) (debug_file) = "libdl-2.8.so" (debug_identifier) = "362C158B9F4432C439287C48515E7D1F0" (version) = "" module[187] MDRawModule base_of_image = 0xb7f66000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x133a8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 37 cv_record.rva = 0x133d0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libdl-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 362c158b-9f44-32c4-3928-7c48515e7d1f (cv_record).age = 0 (cv_record).pdb_file_name = "libdl-2.8.so" (misc_record) = (null) (debug_file) = "libdl-2.8.so" (debug_identifier) = "362C158B9F4432C439287C48515E7D1F0" (version) = "" module[188] MDRawModule base_of_image = 0xb7f67000 size_of_image = 0x24000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x133f8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 36 cv_record.rva = 0x13420 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libm-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a899e855-3f84-80cf-99ca-8917c9523913 (cv_record).age = 0 (cv_record).pdb_file_name = "libm-2.8.so" (misc_record) = (null) (debug_file) = "libm-2.8.so" (debug_identifier) = "A899E8553F8480CF99CA8917C95239130" (version) = "" module[189] MDRawModule base_of_image = 0xb7f8b000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13448 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 36 cv_record.rva = 0x13470 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libm-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a899e855-3f84-80cf-99ca-8917c9523913 (cv_record).age = 0 (cv_record).pdb_file_name = "libm-2.8.so" (misc_record) = (null) (debug_file) = "libm-2.8.so" (debug_identifier) = "A899E8553F8480CF99CA8917C95239130" (version) = "" module[190] MDRawModule base_of_image = 0xb7f8c000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13498 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 36 cv_record.rva = 0x134c0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/libm-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a899e855-3f84-80cf-99ca-8917c9523913 (cv_record).age = 0 (cv_record).pdb_file_name = "libm-2.8.so" (misc_record) = (null) (debug_file) = "libm-2.8.so" (debug_identifier) = "A899E8553F8480CF99CA8917C95239130" (version) = "" module[191] MDRawModule base_of_image = 0xb7f8e000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x134e8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 69 cv_record.rva = 0x13578 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/var/cache/fontconfig/cf6c88e680607f2ab796171745f068a4-x86.cache-2" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "cf6c88e680607f2ab796171745f068a4-x86.cache-2" (misc_record) = (null) (debug_file) = "cf6c88e680607f2ab796171745f068a4-x86.cache-2" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[192] MDRawModule base_of_image = 0xb7f8f000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x135c0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 42 cv_record.rva = 0x13620 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/locale/fr_FR.utf8/LC_IDENTIFICATION" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 00000000-0000-0000-0000-000000000000 (cv_record).age = 0 (cv_record).pdb_file_name = "LC_IDENTIFICATION" (misc_record) = (null) (debug_file) = "LC_IDENTIFICATION" (debug_identifier) = "000000000000000000000000000000000" (version) = "" module[193] MDRawModule base_of_image = 0xb7f90000 size_of_image = 0x2000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13650 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x136a0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgmodule-2.0.so.0.1600.3" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 0876c427-4c7f-fc7b-c028-8f274935f220 (cv_record).age = 0 (cv_record).pdb_file_name = "libgmodule-2.0.so.0.1600.3" (misc_record) = (null) (debug_file) = "libgmodule-2.0.so.0.1600.3" (debug_identifier) = "0876C4274C7FFC7BC0288F274935F2200" (version) = "" module[194] MDRawModule base_of_image = 0xb7f92000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x136d8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x13728 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgmodule-2.0.so.0.1600.3" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 0876c427-4c7f-fc7b-c028-8f274935f220 (cv_record).age = 0 (cv_record).pdb_file_name = "libgmodule-2.0.so.0.1600.3" (misc_record) = (null) (debug_file) = "libgmodule-2.0.so.0.1600.3" (debug_identifier) = "0876C4274C7FFC7BC0288F274935F2200" (version) = "" module[195] MDRawModule base_of_image = 0xb7f93000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13760 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 51 cv_record.rva = 0x137b0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libgmodule-2.0.so.0.1600.3" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 0876c427-4c7f-fc7b-c028-8f274935f220 (cv_record).age = 0 (cv_record).pdb_file_name = "libgmodule-2.0.so.0.1600.3" (misc_record) = (null) (debug_file) = "libgmodule-2.0.so.0.1600.3" (debug_identifier) = "0876C4274C7FFC7BC0288F274935F2200" (version) = "" module[196] MDRawModule base_of_image = 0xb7f94000 size_of_image = 0x18000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x137e8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 47 cv_record.rva = 0x13830 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libatk-1.0.so.0.2209.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a08b4e34-c7f9-99f9-e579-975fd200a2c0 (cv_record).age = 0 (cv_record).pdb_file_name = "libatk-1.0.so.0.2209.1" (misc_record) = (null) (debug_file) = "libatk-1.0.so.0.2209.1" (debug_identifier) = "A08B4E34C7F999F9E579975FD200A2C00" (version) = "" module[197] MDRawModule base_of_image = 0xb7fac000 size_of_image = 0x2000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13860 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 47 cv_record.rva = 0x138a8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libatk-1.0.so.0.2209.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a08b4e34-c7f9-99f9-e579-975fd200a2c0 (cv_record).age = 0 (cv_record).pdb_file_name = "libatk-1.0.so.0.2209.1" (misc_record) = (null) (debug_file) = "libatk-1.0.so.0.2209.1" (debug_identifier) = "A08B4E34C7F999F9E579975FD200A2C00" (version) = "" module[198] MDRawModule base_of_image = 0xb7fae000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x138d8 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 47 cv_record.rva = 0x13920 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/libatk-1.0.so.0.2209.1" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = a08b4e34-c7f9-99f9-e579-975fd200a2c0 (cv_record).age = 0 (cv_record).pdb_file_name = "libatk-1.0.so.0.2209.1" (misc_record) = (null) (debug_file) = "libatk-1.0.so.0.2209.1" (debug_identifier) = "A08B4E34C7F999F9E579975FD200A2C00" (version) = "" module[199] MDRawModule base_of_image = 0xb7faf000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13950 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x13998 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.gui.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 682f81e0-6b6e-a633-b8a2-2ae5b443dc97 (cv_record).age = 0 (cv_record).pdb_file_name = "gb.gui.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.gui.so.0.0.0" (debug_identifier) = "682F81E06B6EA633B8A22AE5B443DC970" (version) = "" module[200] MDRawModule base_of_image = 0xb7fb0000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x139c0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x13a08 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.gui.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 682f81e0-6b6e-a633-b8a2-2ae5b443dc97 (cv_record).age = 0 (cv_record).pdb_file_name = "gb.gui.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.gui.so.0.0.0" (debug_identifier) = "682F81E06B6EA633B8A22AE5B443DC970" (version) = "" module[201] MDRawModule base_of_image = 0xb7fb1000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13a30 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 40 cv_record.rva = 0x13a78 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.gui.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 682f81e0-6b6e-a633-b8a2-2ae5b443dc97 (cv_record).age = 0 (cv_record).pdb_file_name = "gb.gui.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.gui.so.0.0.0" (debug_identifier) = "682F81E06B6EA633B8A22AE5B443DC970" (version) = "" module[202] MDRawModule base_of_image = 0xb7fb4000 size_of_image = 0x3000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13aa0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 42 cv_record.rva = 0x13af0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.debug.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 0cf5af16-dcf3-7a1e-ba9f-ffcfaa38ed9f (cv_record).age = 0 (cv_record).pdb_file_name = "gb.debug.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.debug.so.0.0.0" (debug_identifier) = "0CF5AF16DCF37A1EBA9FFFCFAA38ED9F0" (version) = "" module[203] MDRawModule base_of_image = 0xb7fb7000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13b20 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 42 cv_record.rva = 0x13b70 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.debug.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 0cf5af16-dcf3-7a1e-ba9f-ffcfaa38ed9f (cv_record).age = 0 (cv_record).pdb_file_name = "gb.debug.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.debug.so.0.0.0" (debug_identifier) = "0CF5AF16DCF37A1EBA9FFFCFAA38ED9F0" (version) = "" module[204] MDRawModule base_of_image = 0xb7fb8000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13ba0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 42 cv_record.rva = 0x13bf0 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/usr/lib/gambas2/gb.debug.so.0.0.0" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 0cf5af16-dcf3-7a1e-ba9f-ffcfaa38ed9f (cv_record).age = 0 (cv_record).pdb_file_name = "gb.debug.so.0.0.0" (misc_record) = (null) (debug_file) = "gb.debug.so.0.0.0" (debug_identifier) = "0CF5AF16DCF37A1EBA9FFFCFAA38ED9F0" (version) = "" module[205] MDRawModule base_of_image = 0xb7fb9000 size_of_image = 0x1b000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13c20 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 34 cv_record.rva = 0x13c48 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/ld-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 75bd97ea-2b47-0316-0df7-3014d683ab0c (cv_record).age = 0 (cv_record).pdb_file_name = "ld-2.8.so" (misc_record) = (null) (debug_file) = "ld-2.8.so" (debug_identifier) = "75BD97EA2B4703160DF73014D683AB0C0" (version) = "" module[206] MDRawModule base_of_image = 0xb7fd4000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13c70 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 34 cv_record.rva = 0x13c98 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/ld-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 75bd97ea-2b47-0316-0df7-3014d683ab0c (cv_record).age = 0 (cv_record).pdb_file_name = "ld-2.8.so" (misc_record) = (null) (debug_file) = "ld-2.8.so" (debug_identifier) = "75BD97EA2B4703160DF73014D683AB0C0" (version) = "" module[207] MDRawModule base_of_image = 0xb7fd5000 size_of_image = 0x1000 checksum = 0x0 time_date_stamp = 0x0 module_name_rva = 0x13cc0 version_info.signature = 0x0 version_info.struct_version = 0x0 version_info.file_version = 0x0:0x0 version_info.product_version = 0x0:0x0 version_info.file_flags_mask = 0x0 version_info.file_flags = 0x0 version_info.file_os = 0x0 version_info.file_type = 0x0 version_info.file_subtype = 0x0 version_info.file_date = 0x0:0x0 cv_record.data_size = 34 cv_record.rva = 0x13ce8 misc_record.data_size = 0 misc_record.rva = 0x0 (code_file) = "/lib/ld-2.8.so" (code_identifier) = "id" (cv_record).cv_signature = 0x53445352 (cv_record).signature = 75bd97ea-2b47-0316-0df7-3014d683ab0c (cv_record).age = 0 (cv_record).pdb_file_name = "ld-2.8.so" (misc_record) = (null) (debug_file) = "ld-2.8.so" (debug_identifier) = "75BD97EA2B4703160DF73014D683AB0C0" (version) = "" MDException thread_id = 0x50aa exception_record.exception_code = 0xb exception_record.exception_flags = 0x0 exception_record.exception_record = 0x0 exception_record.exception_address = 0x805250d exception_record.number_parameters = 0 thread_context.data_size = 716 thread_context.rva = 0x13e88 MDRawContextX86 context_flags = 0x1000f dr0 = 0x0 dr1 = 0x0 dr2 = 0x0 dr3 = 0x0 dr6 = 0x0 dr7 = 0x0 float_save.control_word = 0xffff037f float_save.status_word = 0xffff4020 float_save.tag_word = 0xffffffff float_save.error_offset = 0xb7c3fed8 float_save.error_selector = 0x5d80073 float_save.data_offset = 0x825b050 float_save.data_selector = 0x7b float_save.register_area[80] = 0x00000000000000000000000000000000000000000000000000000080ff3f0000000000000080ff3f00000000000000000000000000000000000000000000000000000000000000000000000000000000 float_save.cr0_npx_state = 0x0 gs = 0x33 fs = 0x0 es = 0x7b ds = 0x7b edi = 0x81584f8 esi = 0x808dfe8 ebx = 0x81bdc18 edx = 0x82b4a38 ecx = 0x81bdc60 eax = 0x51 ebp = 0xbfbcbf18 eip = 0x805250d cs = 0x73 eflags = 0x10282 esp = 0xbfbcbf00 ss = 0x7b extended_registers[512] = 0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 MDRawSystemInfo processor_architecture = 0 processor_level = 2 processor_revision = 0xd08 number_of_processors = 1 product_type = 0 major_version = 0 minor_version = 0 build_number = 0 platform_id = 33281 csd_version_rva = 0x13d48 suite_mask = 0x0 cpu.x86_cpu_info.vendor_id[0] = 0x756e6547 cpu.x86_cpu_info.vendor_id[1] = 0x49656e69 cpu.x86_cpu_info.vendor_id[2] = 0x6c65746e cpu.x86_cpu_info.version_information = 0x0 cpu.x86_cpu_info.feature_information = 0x0 cpu.x86_cpu_info.amd_extended_cpu_features = 0x0 (csd_version) = "Linux 2.6.25.11-0.1-pae #1 SMP 2008-07-13 20:48:28 +0200 i686 GNU/Linux" (cpu_vendor) = "GenuineIntel" MDRawMiscInfo size_of_info = 44 flags1 = 0x1 process_id = 0x50aa process_create_time = 0x0 process_user_time = 0x0 process_kernel_time = 0x0 processor_max_mhz = 0 processor_current_mhz = 0 processor_mhz_limit = 0 processor_max_idle_state = 0x0 processor_current_idle_state = 0x0 MDRawBreakpadInfo validity = 0x3 dump_thread_id = 0x50b6 requesting_thread_id = 0x50aa From gambas at ...1... Tue Jul 29 13:35:00 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 29 Jul 2008 13:35:00 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217330498.3842.35.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807291146.27910.gambas@...1...> <1217330498.3842.35.camel@...1936...> Message-ID: <200807291335.00698.gambas@...1...> On mardi 29 juillet 2008, Steven Lobbezoo wrote: > Will this get delivered ? > Or should i send it in pieces > Just compress your file. Regards, -- Benoit Minisini From gambas at ...1... Tue Jul 29 13:37:34 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 29 Jul 2008 13:37:34 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217331020.3842.40.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807291146.27910.gambas@...1...> <1217331020.3842.40.camel@...1936...> Message-ID: <200807291337.34477.gambas@...1...> On mardi 29 juillet 2008, Steven Lobbezoo wrote: > and part II Thanks for that, but all this info is not really useful. What I need is a gdb stack backtrace and/or a valgrind output. Regards, -- Benoit Minisini From steven at ...1652... Tue Jul 29 13:39:24 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 29 Jul 2008 13:39:24 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807291335.00698.gambas@...1...> References: <200807280122.41575.gambas@...1...> <200807291146.27910.gambas@...1...> <1217330498.3842.35.camel@...1936...> <200807291335.00698.gambas@...1...> Message-ID: <1217331564.3842.42.camel@...1936...> You are right, of course. Anyway it passed already. Sorry, Steven Le mardi 29 juillet 2008 ? 13:35 +0200, Benoit Minisini a ?crit : > On mardi 29 juillet 2008, Steven Lobbezoo wrote: > > Will this get delivered ? > > Or should i send it in pieces > > > > Just compress your file. > > Regards, > From steven at ...1652... Tue Jul 29 13:50:10 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 29 Jul 2008 13:50:10 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807291337.34477.gambas@...1...> References: <200807280122.41575.gambas@...1...> <200807291146.27910.gambas@...1...> <1217331020.3842.40.camel@...1936...> <200807291337.34477.gambas@...1...> Message-ID: <1217332210.3842.45.camel@...1936...> Ok, but how to run the ide with valgrind i tried this : valgrind --tool=memcheck --num-callers=50 gambas2 ==22998== Memcheck, a memory error detector. ==22998== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. ==22998== Using LibVEX rev 1804, a library for dynamic binary translation. ==22998== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==22998== Using valgrind-3.3.0, a dynamic binary instrumentation framework. ==22998== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. ==22998== For more details, rerun with: -v ==22998== Erreur de segmentation steven at ...1948...:/usr/bin> So that's not very helpful. Steven Le mardi 29 juillet 2008 ? 13:37 +0200, Benoit Minisini a ?crit : > On mardi 29 juillet 2008, Steven Lobbezoo wrote: > > and part II > > Thanks for that, but all this info is not really useful. What I need is a gdb > stack backtrace and/or a valgrind output. > > Regards, > From gambas at ...1... Tue Jul 29 14:01:24 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 29 Jul 2008 14:01:24 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217332210.3842.45.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807291337.34477.gambas@...1...> <1217332210.3842.45.camel@...1936...> Message-ID: <200807291401.24133.gambas@...1...> On mardi 29 juillet 2008, Steven Lobbezoo wrote: > Ok, but how to run the ide with valgrind > i tried this : > valgrind --tool=memcheck --num-callers=50 gambas2 > ==22998== Memcheck, a memory error detector. > ==22998== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et > al. > ==22998== Using LibVEX rev 1804, a library for dynamic binary > translation. > ==22998== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > ==22998== Using valgrind-3.3.0, a dynamic binary instrumentation > framework. > ==22998== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et > al. > ==22998== For more details, rerun with: -v > ==22998== > Erreur de segmentation > steven at ...1948...:/usr/bin> > > So that's not very helpful. > > Steven > You must do the same way as previously: $ cd $ valgrind --tool=memcheck --num-callers=50 gbx2 -p Because "gambas2" is not an executable but a script. Regards, -- Benoit Minisini From ariefbayu at ...626... Tue Jul 29 14:08:22 2008 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Tue, 29 Jul 2008 19:08:22 +0700 Subject: [Gambas-user] WebBrowser Component Right click and link event weirdness Message-ID: <976ad9050807290508o233a452fibcd567ca4799c750@...627...> Dear Benoit, I've a problem doing something in webbrowser component. I want to be able to open some random url selected by user to external browser (using desktop.open()). But, I'm not able to catch the URL when I right click it. Here's the step to do it: 1. make webbrowser component, point it to some website (preferably that has many link on it) 2. add _link event and add PRINT wb1.link insite the _link event 3. run it and watch your console, it should show the correct link when hovering the link, but it not print the correct link when right clicked the link. BTW, I'm using the stable 2.7 release and attach a sample source. -- Arief Bayu Purwanto About : http://about.freelancer.web.id/ Blog : http://bayu.freelancer.web.id/ -------------- next part -------------- A non-text attachment was scrubbed... Name: wb_test-0.0.1.tar.gz Type: application/x-gzip Size: 7901 bytes Desc: not available URL: From steven at ...1652... Tue Jul 29 14:06:58 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 29 Jul 2008 14:06:58 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807291401.24133.gambas@...1...> References: <200807280122.41575.gambas@...1...> <200807291337.34477.gambas@...1...> <1217332210.3842.45.camel@...1936...> <200807291401.24133.gambas@...1...> Message-ID: <1217333218.3842.49.camel@...1936...> No, if I do that i test the 'executable' directly and there is no error. The error is only if I start the app under the ide (run button) Steven Le mardi 29 juillet 2008 ? 14:01 +0200, Benoit Minisini a ?crit : > valgrind --tool=memcheck --num-callers=50 gbx2 -p From gambas at ...1... Tue Jul 29 14:20:03 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 29 Jul 2008 14:20:03 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217333218.3842.49.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807291401.24133.gambas@...1...> <1217333218.3842.49.camel@...1936...> Message-ID: <200807291420.03286.gambas@...1...> On mardi 29 juillet 2008, Steven Lobbezoo wrote: > No, if I do that i test the 'executable' directly and there is no error. > The error is only if I start the app under the ide (run button) > > Steven > Are you sure that you compiled everything correctly? Can you check that the installed "gambas2" is the same as the one you get when you compile it by hand from the sources? There is (almost) no difference between running a project from the IDE and directly by running the interpreter. Regards, -- Benoit Minisini From smiefert at ...784... Tue Jul 29 16:36:30 2008 From: smiefert at ...784... (Stefan Miefert) Date: Tue, 29 Jul 2008 16:36:30 +0200 Subject: [Gambas-user] set group name on dynamic object Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA603@...1899...> Hello, i ceate a object like this LBLlegendentry = new Lable(PANbody) AS LBLlegendentry When I try this Public sub LBLlegendentry_click() Message("Test) End sub But nothing happens. How set I a groupname to a group ob lables? Viele Gr??e aus Osnabr?ck Stefan Miefert Datenbankentwickler KiKxxl GmbH Mindener Str. 127 49084 Osnabr?ck Tel.: 0541 / 3305 441 Mail: smiefert at ...784... WWW : http://www.kikxxl.de Sitz der Gesellschaft Osnabr?ck HRB 18841, Amtsgericht Osnabr?ck Gesch?ftsf?hrer Andreas Kremer From gambas at ...1... Tue Jul 29 16:44:14 2008 From: gambas at ...1... (Benoit Minisini) Date: Tue, 29 Jul 2008 16:44:14 +0200 Subject: [Gambas-user] set group name on dynamic object In-Reply-To: <8D42310D957CFB46AA11921A711D4D1601FB2CA603@...1899...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA603@...1899...> Message-ID: <200807291644.14229.gambas@...1...> On mardi 29 juillet 2008, Stefan Miefert wrote: > Hello, > > i ceate a object like this > > LBLlegendentry = new Lable(PANbody) AS LBLlegendentry > ^ You must put quotes there ----------------' -- Benoit Minisini From nxgtrturbo at ...626... Wed Jul 30 07:47:47 2008 From: nxgtrturbo at ...626... (Nx GT-R BOY) Date: Tue, 29 Jul 2008 22:47:47 -0700 Subject: [Gambas-user] Inactivity Time to Lock Gambas Applications Message-ID: <688afe140807292247w626b9c94jc55c979ab3b368b8@...627...> Hi, as part of my security features in my program, I want to be able to lock my application if was inactive for X minutes (X = setup by user) So, I was wonder if... Is there any Gambas environment variable that can tell me last activity time? I could call a function any time the user click somewhere... but.. that will be a silly not optimum way If the activity time is solved, then comes another problem, How do I know which forms are opened? To lock them, I was thinking hide all the opened forms and show only the unlock login, then just show again all the forms Thanks in advance, Nx GTR developing Arpi System -- http://tallerhuertas.googlepages.com/ http://systemarpi.googlepages.com/ From smiefert at ...784... Wed Jul 30 08:07:34 2008 From: smiefert at ...784... (Stefan Miefert) Date: Wed, 30 Jul 2008 08:07:34 +0200 Subject: [Gambas-user] set group name on dynamic object In-Reply-To: <200807291644.14229.gambas@...1...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA603@...1899...> <200807291644.14229.gambas@...1...> Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA605@...1899...> >> >> i ceate a object like this >> >> LBLlegendentry = new Lable(PANbody) AS LBLlegendentry >> > ^ >You must put quotes there ----------------' > -- Hello, tnanks but i only forget them in this mail:) my code is like this Public LBLlegendentry as Lable Public sub setupFooter() For xy .... LBLlegendentry = New Lable(PANfooter) AS "LBLlegendentry" next end and I cant click on this lables:( From smiefert at ...784... Wed Jul 30 08:28:28 2008 From: smiefert at ...784... (Stefan Miefert) Date: Wed, 30 Jul 2008 08:28:28 +0200 Subject: [Gambas-user] set group name on dynamic object In-Reply-To: <200807291644.14229.gambas@...1...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA603@...1899...> <200807291644.14229.gambas@...1...> Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA609@...1899...> I try now a DBlClick() and it works fine?! IS a single Click on a lable not possible?! ^ >You must put quotes there ----------------' From gambas at ...1... Wed Jul 30 08:52:24 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 30 Jul 2008 08:52:24 +0200 Subject: [Gambas-user] set group name on dynamic object In-Reply-To: <8D42310D957CFB46AA11921A711D4D1601FB2CA609@...1899...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA603@...1899...> <200807291644.14229.gambas@...1...> <8D42310D957CFB46AA11921A711D4D1601FB2CA609@...1899...> Message-ID: <200807300852.24129.gambas@...1...> On mercredi 30 juillet 2008, Stefan Miefert wrote: > I try now a DBlClick() and it works fine?! IS a single Click on a lable not > possible?! > Yes, Label has no click event. You must use MouseDown instead. Labels are not intended to be active on a user interface! Regards, -- Benoit Minisini From gambas at ...1... Wed Jul 30 09:00:37 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 30 Jul 2008 09:00:37 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807291420.03286.gambas@...1...> References: <200807280122.41575.gambas@...1...> <1217333218.3842.49.camel@...1936...> <200807291420.03286.gambas@...1...> Message-ID: <200807300900.37796.gambas@...1...> On mardi 29 juillet 2008, Benoit Minisini wrote: > On mardi 29 juillet 2008, Steven Lobbezoo wrote: > > No, if I do that i test the 'executable' directly and there is no error. > > The error is only if I start the app under the ide (run button) > > > > Steven From steven at ...1652... Wed Jul 30 10:40:04 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 30 Jul 2008 10:40:04 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807300900.37796.gambas@...1...> References: <200807280122.41575.gambas@...1...> <1217333218.3842.49.camel@...1936...> <200807291420.03286.gambas@...1...> <200807300900.37796.gambas@...1...> Message-ID: <1217407204.3679.43.camel@...1936...> Le mercredi 30 juillet 2008 ? 09:00 +0200, Benoit Minisini a ?crit : > On mardi 29 juillet 2008, Benoit Minisini wrote: > > On mardi 29 juillet 2008, Steven Lobbezoo wrote: > > > No, if I do that i test the 'executable' directly and there is no error. > > > The error is only if I start the app under the ide (run button) > > > > > > Steven > > >From what you told, I understood that the IDE crashes, so you must > run 'valgrind... gbx2 -p' inside the IDE directory. > > But if the crash comes from your project, you must run valgrind inside the > project directory. > > And if the crash comes from your project, but only while debugging it, run > valgrind inside the IDE project directory, but add the > option '--trace-children=yes' to let valgrind follow both the IDE and your > project! > > Tell me if I was not clear. > > Regards, > I'm afraid, I donnot understand : if I run valgrind in the gambas (ide) directory I get this : steven at ...1948...:~/2.0/app/src/gambas2> valgrind --tool=memcheck --trace-children=yes --num-callers=50 gambas2.gambas ==6281== Memcheck, a memory error detector. ==6281== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. ==6281== Using LibVEX rev 1804, a library for dynamic binary translation. ==6281== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==6281== Using valgrind-3.3.0, a dynamic binary instrumentation framework. ==6281== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. ==6281== For more details, rerun with: -v ==6281== ==6281== Memcheck, a memory error detector. ==6281== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. ==6281== Using LibVEX rev 1804, a library for dynamic binary translation. ==6281== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==6281== Using valgrind-3.3.0, a dynamic binary instrumentation framework. ==6281== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. ==6281== For more details, rerun with: -v ==6281== ==6281== Memcheck, a memory error detector. ==6281== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. ==6281== Using LibVEX rev 1804, a library for dynamic binary translation. ==6281== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==6281== Using valgrind-3.3.0, a dynamic binary instrumentation framework. ==6281== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. ==6281== For more details, rerun with: -v ==6281== ERROR: #2: Cannot load class 'Project': Unable to load class file ==6281== ==6281== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 34 from 2) ==6281== malloc/free: in use at exit: 137,731 bytes in 3,533 blocks. ==6281== malloc/free: 25,016 allocs, 21,483 frees, 1,792,181 bytes allocated. ==6281== For counts of detected errors, rerun with: -v ==6281== searching for pointers to 3,533 not-freed blocks. ==6281== checked 447,828 bytes. ==6281== ==6281== LEAK SUMMARY: ==6281== definitely lost: 21,225 bytes in 158 blocks. ==6281== possibly lost: 0 bytes in 0 blocks. ==6281== still reachable: 116,506 bytes in 3,375 blocks. ==6281== suppressed: 0 bytes in 0 blocks. ==6281== Rerun with --leak-check=full to see details of leaked memory. steven at ...1948...:~/2.0/app/src/gambas2> However, if I do gambas2.gambas from the command line in that directory, i get the ide, all correct. If I run valgrind inside my project directory (after removing the test.gambas compiled file) it runs my project, but without the ide. So, exactly in which directory should i run valgrind ? And what should i run gambas2, gbx ????? Thanks, Steven From gambas at ...1... Wed Jul 30 10:59:42 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 30 Jul 2008 10:59:42 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217407204.3679.43.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807300900.37796.gambas@...1...> <1217407204.3679.43.camel@...1936...> Message-ID: <200807301059.42618.gambas@...1...> On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > Le mercredi 30 juillet 2008 ? 09:00 +0200, Benoit Minisini a ?crit : > > On mardi 29 juillet 2008, Benoit Minisini wrote: > > > On mardi 29 juillet 2008, Steven Lobbezoo wrote: > > > > No, if I do that i test the 'executable' directly and there is no > > > > error. The error is only if I start the app under the ide (run > > > > button) > > > > > > > > Steven > > > > > >From what you told, I understood that the IDE crashes, so you must > > > > run 'valgrind... gbx2 -p' inside the IDE directory. > > > > But if the crash comes from your project, you must run valgrind inside > > the project directory. > > > > And if the crash comes from your project, but only while debugging it, > > run valgrind inside the IDE project directory, but add the > > option '--trace-children=yes' to let valgrind follow both the IDE and > > your project! > > > > Tell me if I was not clear. > > > > Regards, > > I'm afraid, I donnot understand : > if I run valgrind in the gambas (ide) directory I get this : > steven at ...1948...:~/2.0/app/src/gambas2> valgrind --tool=memcheck > --trace-children=yes --num-callers=50 gambas2.gambas > ==6281== Memcheck, a memory error detector. > ==6281== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. > ==6281== Using LibVEX rev 1804, a library for dynamic binary > translation. > ==6281== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > ==6281== Using valgrind-3.3.0, a dynamic binary instrumentation > framework. > ==6281== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. > ==6281== For more details, rerun with: -v > ==6281== > ==6281== Memcheck, a memory error detector. > ==6281== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. > ==6281== Using LibVEX rev 1804, a library for dynamic binary > translation. > ==6281== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > ==6281== Using valgrind-3.3.0, a dynamic binary instrumentation > framework. > ==6281== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. > ==6281== For more details, rerun with: -v > ==6281== > ==6281== Memcheck, a memory error detector. > ==6281== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. > ==6281== Using LibVEX rev 1804, a library for dynamic binary > translation. > ==6281== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > ==6281== Using valgrind-3.3.0, a dynamic binary instrumentation > framework. > ==6281== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. > ==6281== For more details, rerun with: -v > ==6281== > ERROR: #2: Cannot load class 'Project': Unable to load class file > ==6281== > ==6281== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 34 from 2) > ==6281== malloc/free: in use at exit: 137,731 bytes in 3,533 blocks. > ==6281== malloc/free: 25,016 allocs, 21,483 frees, 1,792,181 bytes > allocated. > ==6281== For counts of detected errors, rerun with: -v > ==6281== searching for pointers to 3,533 not-freed blocks. > ==6281== checked 447,828 bytes. > ==6281== > ==6281== LEAK SUMMARY: > ==6281== definitely lost: 21,225 bytes in 158 blocks. > ==6281== possibly lost: 0 bytes in 0 blocks. > ==6281== still reachable: 116,506 bytes in 3,375 blocks. > ==6281== suppressed: 0 bytes in 0 blocks. > ==6281== Rerun with --leak-check=full to see details of leaked memory. > steven at ...1948...:~/2.0/app/src/gambas2> > > However, if I do gambas2.gambas from the command line in that directory, > i get the ide, all correct. > > If I run valgrind inside my project directory (after removing the > test.gambas compiled file) > it runs my project, but without the ide. > So, exactly in which directory should i run valgrind ? > And what should i run gambas2, gbx ????? > > Thanks, > Steven > gambas2.gambas is not an executable, it is a script interpreted by the gambas interpreter, which is the gbx2 program. valgrind cannot follow a script - Well it should be able to do that, but apparently this is not the case. Fortunately, the gbx2 program can be run standalone, provided that you run it directly inside the project directory (and if of course you have compile the project first). So you must: 1) Go to the IDE project directory. $ cd 2) Compile the project. $ gbc2 -agt 3) Run the interpreter inside valgrind, by asking him to follow child processes, so that the project you are going to run in the IDE is trace too. $ valgrind --tool=memcheck --trace-children=yes --num-callers=50 gbx2 -p For information, 'gambas2.gambas' is just an uncompressed archive (like what 'tar' makes) of your compiled project (without the sources). And gbx2 can be run on it the same way it can be run inside the project directory. You just have to use the '-x' option. If you look at the beginning of the gambas2.gambas file, you will see the name of the interpreter that will run the file: '/usr/bin/env gbr2'. 'gbr2' is just a symbolic link to 'gbx2', and '/usr/bin/env' just searches it through the directories specified in your PATH environmental variable. This trick was needed because you cannot use '/usr/bin/env gbx2 -x'. This is a Unix limitation. I hope things are clearer now. :-) Regards, -- Benoit Minisini From steven at ...1652... Wed Jul 30 11:22:07 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 30 Jul 2008 11:22:07 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807301059.42618.gambas@...1...> References: <200807280122.41575.gambas@...1...> <200807300900.37796.gambas@...1...> <1217407204.3679.43.camel@...1936...> <200807301059.42618.gambas@...1...> Message-ID: <1217409728.3679.48.camel@...1936...> Le mercredi 30 juillet 2008 ? 10:59 +0200, Benoit Minisini a ?crit : > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > Le mercredi 30 juillet 2008 ? 09:00 +0200, Benoit Minisini a ?crit : > > > On mardi 29 juillet 2008, Benoit Minisini wrote: > > > > On mardi 29 juillet 2008, Steven Lobbezoo wrote: > > > > > No, if I do that i test the 'executable' directly and there is no > > > > > error. The error is only if I start the app under the ide (run > > > > > button) > > > > > > > > > > Steven > > > > > > > >From what you told, I understood that the IDE crashes, so you must > > > > > > run 'valgrind... gbx2 -p' inside the IDE directory. > > > > > > But if the crash comes from your project, you must run valgrind inside > > > the project directory. > > > > > > And if the crash comes from your project, but only while debugging it, > > > run valgrind inside the IDE project directory, but add the > > > option '--trace-children=yes' to let valgrind follow both the IDE and > > > your project! > > > > > > Tell me if I was not clear. > > > > > > Regards, > > > > I'm afraid, I donnot understand : > > if I run valgrind in the gambas (ide) directory I get this : > > steven at ...1948...:~/2.0/app/src/gambas2> valgrind --tool=memcheck > > --trace-children=yes --num-callers=50 gambas2.gambas > > ==6281== Memcheck, a memory error detector. > > ==6281== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. > > ==6281== Using LibVEX rev 1804, a library for dynamic binary > > translation. > > ==6281== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > > ==6281== Using valgrind-3.3.0, a dynamic binary instrumentation > > framework. > > ==6281== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. > > ==6281== For more details, rerun with: -v > > ==6281== > > ==6281== Memcheck, a memory error detector. > > ==6281== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. > > ==6281== Using LibVEX rev 1804, a library for dynamic binary > > translation. > > ==6281== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > > ==6281== Using valgrind-3.3.0, a dynamic binary instrumentation > > framework. > > ==6281== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. > > ==6281== For more details, rerun with: -v > > ==6281== > > ==6281== Memcheck, a memory error detector. > > ==6281== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. > > ==6281== Using LibVEX rev 1804, a library for dynamic binary > > translation. > > ==6281== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > > ==6281== Using valgrind-3.3.0, a dynamic binary instrumentation > > framework. > > ==6281== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. > > ==6281== For more details, rerun with: -v > > ==6281== > > ERROR: #2: Cannot load class 'Project': Unable to load class file > > ==6281== > > ==6281== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 34 from 2) > > ==6281== malloc/free: in use at exit: 137,731 bytes in 3,533 blocks. > > ==6281== malloc/free: 25,016 allocs, 21,483 frees, 1,792,181 bytes > > allocated. > > ==6281== For counts of detected errors, rerun with: -v > > ==6281== searching for pointers to 3,533 not-freed blocks. > > ==6281== checked 447,828 bytes. > > ==6281== > > ==6281== LEAK SUMMARY: > > ==6281== definitely lost: 21,225 bytes in 158 blocks. > > ==6281== possibly lost: 0 bytes in 0 blocks. > > ==6281== still reachable: 116,506 bytes in 3,375 blocks. > > ==6281== suppressed: 0 bytes in 0 blocks. > > ==6281== Rerun with --leak-check=full to see details of leaked memory. > > steven at ...1948...:~/2.0/app/src/gambas2> > > > > However, if I do gambas2.gambas from the command line in that directory, > > i get the ide, all correct. > > > > If I run valgrind inside my project directory (after removing the > > test.gambas compiled file) > > it runs my project, but without the ide. > > So, exactly in which directory should i run valgrind ? > > And what should i run gambas2, gbx ????? > > > > Thanks, > > Steven > > > > gambas2.gambas is not an executable, it is a script interpreted by the gambas > interpreter, which is the gbx2 program. > > valgrind cannot follow a script - Well it should be able to do that, but > apparently this is not the case. > > Fortunately, the gbx2 program can be run standalone, provided that you run it > directly inside the project directory (and if of course you have compile the > project first). > > So you must: > > 1) Go to the IDE project directory. > > $ cd > > 2) Compile the project. > > $ gbc2 -agt > > 3) Run the interpreter inside valgrind, by asking him to follow child > processes, so that the project you are going to run in the IDE is trace too. > > $ valgrind --tool=memcheck --trace-children=yes --num-callers=50 gbx2 -p > > For information, 'gambas2.gambas' is just an uncompressed archive (like > what 'tar' makes) of your compiled project (without the sources). And gbx2 > can be run on it the same way it can be run inside the project directory. You > just have to use the '-x' option. > > If you look at the beginning of the gambas2.gambas file, you will see the name > of the interpreter that will run the file: '/usr/bin/env gbr2'. 'gbr2' is > just a symbolic link to 'gbx2', and '/usr/bin/env' just searches it through > the directories specified in your PATH environmental variable. This trick was > needed because you cannot use '/usr/bin/env gbx2 -x'. This is a Unix > limitation. > > I hope things are clearer now. :-) > > Regards, > As clear as glas ;-) , but ..... I don't want to contradict you, but it does not work like that. If I do exactly as you said, it's not the ide that is launched ! It's the program directly, and that works just fine. I need to start the ide, select my project and run it in the ide. I don't get the chance to do that, since ? > valgrind --tool=memcheck --trace-children=yes --num-callers=50 gbx2 -p > just starts my little test program. Regards, Steven From gambas at ...1... Wed Jul 30 11:27:21 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 30 Jul 2008 11:27:21 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217409728.3679.48.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807301059.42618.gambas@...1...> <1217409728.3679.48.camel@...1936...> Message-ID: <200807301127.21465.gambas@...1...> On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > As clear as glas ;-) , but ..... > I don't want to contradict you, but it does not work like that. > If I do exactly as you said, it's not the ide that is launched ! > It's the program directly, and that works just fine. > I need to start the ide, select my project and run it in the ide. > I don't get the chance to do that, since > ? > > > valgrind --tool=memcheck --trace-children=yes --num-callers=50 gbx2 -p > > just starts my little test program. > > Regards, > Steven > Because you didn't go to the IDE project directory as I told you... -- Benoit Minisini From steven at ...1652... Wed Jul 30 11:42:31 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 30 Jul 2008 11:42:31 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807301127.21465.gambas@...1...> References: <200807280122.41575.gambas@...1...> <200807301059.42618.gambas@...1...> <1217409728.3679.48.camel@...1936...> <200807301127.21465.gambas@...1...> Message-ID: <1217410951.3679.52.camel@...1936...> Le mercredi 30 juillet 2008 ? 11:27 +0200, Benoit Minisini a ?crit : > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > As clear as glas ;-) , but ..... > > I don't want to contradict you, but it does not work like that. > > If I do exactly as you said, it's not the ide that is launched ! > > It's the program directly, and that works just fine. > > I need to start the ide, select my project and run it in the ide. > > I don't get the chance to do that, since > > ? > > > > > valgrind --tool=memcheck --trace-children=yes --num-callers=50 gbx2 -p > > > > just starts my little test program. > > > > Regards, > > Steven > > > > Because you didn't go to the IDE project directory as I told you... > Ok, I'm stupid, but please help me here. I thought the IDE project directory was the directory where my project files are, like this : drwxr-xr-x 3 steven users 120 juil. 5 13:56 .. -rw-r--r-- 1 steven users 33 juil. 5 10:27 .directory -rw-r--r-- 1 steven users 1116 juil. 5 10:35 fileselector.class -rw-r--r-- 1 steven users 1116 juil. 5 10:29 fileselector.class~ -rw-r--r-- 1 steven users 1361 juil. 5 10:29 fileselector.form -rw-r--r-- 1 steven users 225 juil. 5 10:35 FMain.class -rw-r--r-- 1 steven users 73 juil. 5 10:27 FMain.class~ -rw-r--r-- 1 steven users 149 juil. 5 10:35 FMain.form -rw-r--r-- 1 steven users 94 juil. 5 10:27 FMain.form~ drwxr-xr-x 2 steven users 128 juil. 28 10:47 .gambas -rw-r--r-- 1 steven users 6785 juil. 5 10:27 .icon.png drwxr-xr-x 2 steven users 144 juil. 30 11:17 .lang -rw-r--r-- 1 steven users 139 juil. 5 10:37 Mglobal.module -rw-r--r-- 1 steven users 6068 juil. 5 10:35 Mglobal.module~ -rw-r--r-- 1 steven users 106 juil. 28 10:47 .project -rw-r--r-- 1 steven users 335 juil. 29 13:48 .settings steven at ...1948...:~/test_gambas/test_gambas> So that's where i went. So, what is the IDE project directory ???????? Is it some sub-directory in the 2.0 trunk ? Steven From gambas at ...1... Wed Jul 30 11:47:03 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 30 Jul 2008 11:47:03 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217410951.3679.52.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807301127.21465.gambas@...1...> <1217410951.3679.52.camel@...1936...> Message-ID: <200807301147.03681.gambas@...1...> On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > Le mercredi 30 juillet 2008 ? 11:27 +0200, Benoit Minisini a ?crit : > > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > > As clear as glas ;-) , but ..... > > > I don't want to contradict you, but it does not work like that. > > > If I do exactly as you said, it's not the ide that is launched ! > > > It's the program directly, and that works just fine. > > > I need to start the ide, select my project and run it in the ide. > > > I don't get the chance to do that, since > > > ? > > > > > > > valgrind --tool=memcheck --trace-children=yes --num-callers=50 gbx2 > > > > -p > > > > > > just starts my little test program. > > > > > > Regards, > > > Steven > > > > Because you didn't go to the IDE project directory as I told you... > > Ok, I'm stupid, but please help me here. > I thought the IDE project directory was the directory where my project > files are, like this : > > drwxr-xr-x 3 steven users 120 juil. 5 13:56 .. > -rw-r--r-- 1 steven users 33 juil. 5 10:27 .directory > -rw-r--r-- 1 steven users 1116 juil. 5 10:35 fileselector.class > -rw-r--r-- 1 steven users 1116 juil. 5 10:29 fileselector.class~ > -rw-r--r-- 1 steven users 1361 juil. 5 10:29 fileselector.form > -rw-r--r-- 1 steven users 225 juil. 5 10:35 FMain.class > -rw-r--r-- 1 steven users 73 juil. 5 10:27 FMain.class~ > -rw-r--r-- 1 steven users 149 juil. 5 10:35 FMain.form > -rw-r--r-- 1 steven users 94 juil. 5 10:27 FMain.form~ > drwxr-xr-x 2 steven users 128 juil. 28 10:47 .gambas > -rw-r--r-- 1 steven users 6785 juil. 5 10:27 .icon.png > drwxr-xr-x 2 steven users 144 juil. 30 11:17 .lang > -rw-r--r-- 1 steven users 139 juil. 5 10:37 Mglobal.module > -rw-r--r-- 1 steven users 6068 juil. 5 10:35 Mglobal.module~ > -rw-r--r-- 1 steven users 106 juil. 28 10:47 .project > -rw-r--r-- 1 steven users 335 juil. 29 13:48 .settings > steven at ...1948...:~/test_gambas/test_gambas> > > So that's where i went. > So, what is the IDE project directory ???????? > Is it some sub-directory in the 2.0 trunk ? > > Steven > Yes: 2.0/app/src/gambas2 -- Benoit Minisini From steven at ...1652... Wed Jul 30 12:06:45 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 30 Jul 2008 12:06:45 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807301147.03681.gambas@...1...> References: <200807280122.41575.gambas@...1...> <200807301127.21465.gambas@...1...> <1217410951.3679.52.camel@...1936...> <200807301147.03681.gambas@...1...> Message-ID: <1217412405.3679.72.camel@...1936...> Le mercredi 30 juillet 2008 ? 11:47 +0200, Benoit Minisini a ?crit : > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > Le mercredi 30 juillet 2008 ? 11:27 +0200, Benoit Minisini a ?crit : > > > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > > > As clear as glas ;-) , but ..... > > > > I don't want to contradict you, but it does not work like that. > > > > If I do exactly as you said, it's not the ide that is launched ! > > > > It's the program directly, and that works just fine. > > > > I need to start the ide, select my project and run it in the ide. > > > > I don't get the chance to do that, since > > > > ? > > > > > > > > > valgrind --tool=memcheck --trace-children=yes --num-callers=50 gbx2 > > > > > -p > > > > > > > > just starts my little test program. > > > > > > > > Regards, > > > > Steven > > > > > > Because you didn't go to the IDE project directory as I told you... > > > > Ok, I'm stupid, but please help me here. > > I thought the IDE project directory was the directory where my project > > files are, like this : > > > > drwxr-xr-x 3 steven users 120 juil. 5 13:56 .. > > -rw-r--r-- 1 steven users 33 juil. 5 10:27 .directory > > -rw-r--r-- 1 steven users 1116 juil. 5 10:35 fileselector.class > > -rw-r--r-- 1 steven users 1116 juil. 5 10:29 fileselector.class~ > > -rw-r--r-- 1 steven users 1361 juil. 5 10:29 fileselector.form > > -rw-r--r-- 1 steven users 225 juil. 5 10:35 FMain.class > > -rw-r--r-- 1 steven users 73 juil. 5 10:27 FMain.class~ > > -rw-r--r-- 1 steven users 149 juil. 5 10:35 FMain.form > > -rw-r--r-- 1 steven users 94 juil. 5 10:27 FMain.form~ > > drwxr-xr-x 2 steven users 128 juil. 28 10:47 .gambas > > -rw-r--r-- 1 steven users 6785 juil. 5 10:27 .icon.png > > drwxr-xr-x 2 steven users 144 juil. 30 11:17 .lang > > -rw-r--r-- 1 steven users 139 juil. 5 10:37 Mglobal.module > > -rw-r--r-- 1 steven users 6068 juil. 5 10:35 Mglobal.module~ > > -rw-r--r-- 1 steven users 106 juil. 28 10:47 .project > > -rw-r--r-- 1 steven users 335 juil. 29 13:48 .settings > > steven at ...1948...:~/test_gambas/test_gambas> > > > > So that's where i went. > > So, what is the IDE project directory ???????? > > Is it some sub-directory in the 2.0 trunk ? > > > > Steven > > > > Yes: 2.0/app/src/gambas2 > But this gives me : steven at ...1948...:~/2.0/app/src/gambas2> valgrind --tool=memcheck --trace-children=yes --num-callers=50 gbx2 -p ==12040== Memcheck, a memory error detector. ==12040== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. ==12040== Using LibVEX rev 1804, a library for dynamic binary translation. ==12040== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==12040== Using valgrind-3.3.0, a dynamic binary instrumentation framework. ==12040== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. ==12040== For more details, rerun with: -v ==12040== ERROR: #2: Cannot load class 'Project': Unable to load class file ==12040== ==12040== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 53 from 2) ==12040== malloc/free: in use at exit: 157,533 bytes in 3,664 blocks. ==12040== malloc/free: 25,166 allocs, 21,502 frees, 1,812,681 bytes allocated. ==12040== For counts of detected errors, rerun with: -v ==12040== searching for pointers to 3,664 not-freed blocks. ==12040== checked 438,576 bytes. ==12040== ==12040== LEAK SUMMARY: ==12040== definitely lost: 21,225 bytes in 158 blocks. ==12040== possibly lost: 0 bytes in 0 blocks. ==12040== still reachable: 136,308 bytes in 3,506 blocks. ==12040== suppressed: 0 bytes in 0 blocks. ==12040== Rerun with --leak-check=full to see details of leaked memory. steven at ...1948...:~/2.0/app/src/gambas2> From gambas at ...1... Wed Jul 30 12:12:56 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 30 Jul 2008 12:12:56 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217412405.3679.72.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807301147.03681.gambas@...1...> <1217412405.3679.72.camel@...1936...> Message-ID: <200807301212.56388.gambas@...1...> On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > Le mercredi 30 juillet 2008 ? 11:47 +0200, Benoit Minisini a ?crit : > > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > > Le mercredi 30 juillet 2008 ? 11:27 +0200, Benoit Minisini a ?crit : > > > > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > > > > As clear as glas ;-) , but ..... > > > > > I don't want to contradict you, but it does not work like that. > > > > > If I do exactly as you said, it's not the ide that is launched ! > > > > > It's the program directly, and that works just fine. > > > > > I need to start the ide, select my project and run it in the ide. > > > > > I don't get the chance to do that, since > > > > > ? > > > > > > > > > > > valgrind --tool=memcheck --trace-children=yes --num-callers=50 > > > > > > gbx2 -p > > > > > > > > > > just starts my little test program. > > > > > > > > > > Regards, > > > > > Steven > > > > > > > > Because you didn't go to the IDE project directory as I told you... > > > > > > Ok, I'm stupid, but please help me here. > > > I thought the IDE project directory was the directory where my project > > > files are, like this : > > > > > > drwxr-xr-x 3 steven users 120 juil. 5 13:56 .. > > > -rw-r--r-- 1 steven users 33 juil. 5 10:27 .directory > > > -rw-r--r-- 1 steven users 1116 juil. 5 10:35 fileselector.class > > > -rw-r--r-- 1 steven users 1116 juil. 5 10:29 fileselector.class~ > > > -rw-r--r-- 1 steven users 1361 juil. 5 10:29 fileselector.form > > > -rw-r--r-- 1 steven users 225 juil. 5 10:35 FMain.class > > > -rw-r--r-- 1 steven users 73 juil. 5 10:27 FMain.class~ > > > -rw-r--r-- 1 steven users 149 juil. 5 10:35 FMain.form > > > -rw-r--r-- 1 steven users 94 juil. 5 10:27 FMain.form~ > > > drwxr-xr-x 2 steven users 128 juil. 28 10:47 .gambas > > > -rw-r--r-- 1 steven users 6785 juil. 5 10:27 .icon.png > > > drwxr-xr-x 2 steven users 144 juil. 30 11:17 .lang > > > -rw-r--r-- 1 steven users 139 juil. 5 10:37 Mglobal.module > > > -rw-r--r-- 1 steven users 6068 juil. 5 10:35 Mglobal.module~ > > > -rw-r--r-- 1 steven users 106 juil. 28 10:47 .project > > > -rw-r--r-- 1 steven users 335 juil. 29 13:48 .settings > > > steven at ...1948...:~/test_gambas/test_gambas> > > > > > > So that's where i went. > > > So, what is the IDE project directory ???????? > > > Is it some sub-directory in the 2.0 trunk ? > > > > > > Steven > > > > Yes: 2.0/app/src/gambas2 > > But this gives me : > > steven at ...1948...:~/2.0/app/src/gambas2> valgrind --tool=memcheck > --trace-children=yes --num-callers=50 gbx2 -p > ==12040== Memcheck, a memory error detector. > ==12040== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et > al. > ==12040== Using LibVEX rev 1804, a library for dynamic binary > translation. > ==12040== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. > ==12040== Using valgrind-3.3.0, a dynamic binary instrumentation > framework. > ==12040== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et > al. > ==12040== For more details, rerun with: -v > ==12040== > ERROR: #2: Cannot load class 'Project': Unable to load class file Please do exactly what I told you. First you must compile the project with: $ gbc2 -agt Then you run valgrind. Regards, -- Benoit Minisini From steven at ...1652... Wed Jul 30 13:22:08 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 30 Jul 2008 13:22:08 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807301212.56388.gambas@...1...> References: <200807280122.41575.gambas@...1...> <200807301147.03681.gambas@...1...> <1217412405.3679.72.camel@...1936...> <200807301212.56388.gambas@...1...> Message-ID: <1217416928.3679.75.camel@...1936...> Sorry again Benoit, Now I got it right, here's the console : ==16663== Memcheck, a memory error detector. ==16663== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. ==16663== Using LibVEX rev 1804, a library for dynamic binary translation. ==16663== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==16663== Using valgrind-3.3.0, a dynamic binary instrumentation framework. ==16663== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. ==16663== For more details, rerun with: -v ==16663== ==16676== Syscall param rt_sigaction(act->sa_mask) points to uninitialised byte(s) ==16676== at 0x40007D2: (within /lib/ld-2.8.so) ==16676== by 0x52E23B7: google_breakpad::ExceptionHandler::TeardownHandler(int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16676== by 0x52E23F6: google_breakpad::ExceptionHandler::TeardownAllHandler() (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16676== by 0x52E27FE: google_breakpad::ExceptionHandler::~ExceptionHandler() (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16676== by 0x40B28F0: exit (in /lib/libc-2.8.so) ==16676== by 0x8069603: (within /usr/bin/gbx2) ==16676== by 0x8069691: (within /usr/bin/gbx2) ==16676== by 0x805AC6E: (within /usr/bin/gbx2) ==16676== by 0x8050C00: (within /usr/bin/gbx2) ==16676== by 0x804F0EA: (within /usr/bin/gbx2) ==16676== by 0x804F3C0: (within /usr/bin/gbx2) ==16676== by 0x805DFDF: (within /usr/bin/gbx2) ==16676== by 0x46430F6: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16676== by 0x4643178: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16676== by 0x804E537: (within /usr/bin/gbx2) ==16676== by 0x804EDDD: (within /usr/bin/gbx2) ==16676== by 0x804F470: (within /usr/bin/gbx2) ==16676== by 0x804FD86: (within /usr/bin/gbx2) ==16676== by 0x8050D1C: (within /usr/bin/gbx2) ==16676== by 0x804F0EA: (within /usr/bin/gbx2) ==16676== by 0x804F3C0: (within /usr/bin/gbx2) ==16676== by 0x804F779: (within /usr/bin/gbx2) ==16676== by 0x8063095: (within /usr/bin/gbx2) ==16676== by 0x80525BE: (within /usr/bin/gbx2) ==16676== by 0x804E5CA: (within /usr/bin/gbx2) ==16676== by 0x8050086: (within /usr/bin/gbx2) ==16676== by 0x8050D3A: (within /usr/bin/gbx2) ==16676== by 0x804F0EA: (within /usr/bin/gbx2) ==16676== by 0x804F3C0: (within /usr/bin/gbx2) ==16676== by 0x805E08A: (within /usr/bin/gbx2) ==16676== by 0x805E54A: (within /usr/bin/gbx2) ==16676== by 0x4647886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16676== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16676== by 0x462AC45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16676== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16676== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16676== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16676== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16676== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16676== by 0x470AC89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16676== by 0x470BE47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16676== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16676== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16676== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16676== by 0x4BA4A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16676== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16676== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16676== by 0x470AD29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16676== by 0x470AD62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16676== by 0x47EBDF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16676== Address 0xbeb15efc is on thread 1's stack ==16676== ==16676== ERROR SUMMARY: 5 errors from 1 contexts (suppressed: 83 from 2) ==16676== malloc/free: in use at exit: 877,490 bytes in 10,353 blocks. ==16676== malloc/free: 50,052 allocs, 39,699 frees, 8,236,996 bytes allocated. ==16676== For counts of detected errors, rerun with: -v ==16676== searching for pointers to 10,353 not-freed blocks. ==16676== checked 1,136,732 bytes. ==16676== ==16676== LEAK SUMMARY: ==16676== definitely lost: 60,341 bytes in 2,054 blocks. ==16676== possibly lost: 86,341 bytes in 144 blocks. ==16676== still reachable: 730,808 bytes in 8,155 blocks. ==16676== suppressed: 0 bytes in 0 blocks. ==16676== Rerun with --leak-check=full to see details of leaked memory. ==16663== Conditional jump or move depends on uninitialised value(s) ==16663== at 0x8062BC1: (within /usr/bin/gbx2) ==16663== by 0x8068F3B: (within /usr/bin/gbx2) ==16663== by 0x8068FE1: (within /usr/bin/gbx2) ==16663== by 0x8069028: (within /usr/bin/gbx2) ==16663== by 0x805AC8A: (within /usr/bin/gbx2) ==16663== by 0x8050C00: (within /usr/bin/gbx2) ==16663== by 0x804F0EA: (within /usr/bin/gbx2) ==16663== by 0x804F3C0: (within /usr/bin/gbx2) ==16663== by 0x805DFDF: (within /usr/bin/gbx2) ==16663== by 0x46430F6: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4643178: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x804E537: (within /usr/bin/gbx2) ==16663== by 0x804EDDD: (within /usr/bin/gbx2) ==16663== by 0x804F470: (within /usr/bin/gbx2) ==16663== by 0x804FD86: (within /usr/bin/gbx2) ==16663== by 0x8050D1C: (within /usr/bin/gbx2) ==16663== by 0x804F0EA: (within /usr/bin/gbx2) ==16663== by 0x804F3C0: (within /usr/bin/gbx2) ==16663== by 0x804F779: (within /usr/bin/gbx2) ==16663== by 0x8063095: (within /usr/bin/gbx2) ==16663== by 0x80525BE: (within /usr/bin/gbx2) ==16663== by 0x804E5CA: (within /usr/bin/gbx2) ==16663== by 0x8050086: (within /usr/bin/gbx2) ==16663== by 0x8050D3A: (within /usr/bin/gbx2) ==16663== by 0x804F0EA: (within /usr/bin/gbx2) ==16663== by 0x804F3C0: (within /usr/bin/gbx2) ==16663== by 0x805E08A: (within /usr/bin/gbx2) ==16663== by 0x805E54A: (within /usr/bin/gbx2) ==16663== by 0x4647886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x462AC45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x470AC89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x470BE47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA4A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x470AD29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x470AD62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47EBDF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA4E7E: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== ==16663== Conditional jump or move depends on uninitialised value(s) ==16663== at 0x8062BC1: (within /usr/bin/gbx2) ==16663== by 0x8062EB0: (within /usr/bin/gbx2) ==16663== by 0x80653AB: (within /usr/bin/gbx2) ==16663== by 0x804E537: (within /usr/bin/gbx2) ==16663== by 0x804EDDD: (within /usr/bin/gbx2) ==16663== by 0x80511CC: (within /usr/bin/gbx2) ==16663== by 0x804F0EA: (within /usr/bin/gbx2) ==16663== by 0x804F3C0: (within /usr/bin/gbx2) ==16663== by 0x804F490: (within /usr/bin/gbx2) ==16663== by 0x804F7B2: (within /usr/bin/gbx2) ==16663== by 0x804FB40: (within /usr/bin/gbx2) ==16663== by 0x805157C: (within /usr/bin/gbx2) ==16663== by 0x804F0EA: (within /usr/bin/gbx2) ==16663== by 0x804F3C0: (within /usr/bin/gbx2) ==16663== by 0x804F779: (within /usr/bin/gbx2) ==16663== by 0x8063095: (within /usr/bin/gbx2) ==16663== by 0x80525BE: (within /usr/bin/gbx2) ==16663== by 0x804E5CA: (within /usr/bin/gbx2) ==16663== by 0x8050086: (within /usr/bin/gbx2) ==16663== by 0x8050D3A: (within /usr/bin/gbx2) ==16663== by 0x804F0EA: (within /usr/bin/gbx2) ==16663== by 0x804F3C0: (within /usr/bin/gbx2) ==16663== by 0x805E08A: (within /usr/bin/gbx2) ==16663== by 0x805E54A: (within /usr/bin/gbx2) ==16663== by 0x4647886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x462AC45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x470AC89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x470BE47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA4A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x470AD29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x470AD62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47EBDF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA4E7E: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA650B: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4914B6D: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47E4A5B: gtk_propagate_event (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== ==16663== Conditional jump or move depends on uninitialised value(s) ==16663== at 0x8062D9F: (within /usr/bin/gbx2) ==16663== by 0x805250D: (within /usr/bin/gbx2) ==16663== by 0x4645FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4627BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4628AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4638F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x462CF33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47D7F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491041A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x484C474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x484E29F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== ==16663== Use of uninitialised value of size 4 ==16663== at 0x8062DA3: (within /usr/bin/gbx2) ==16663== by 0x805250D: (within /usr/bin/gbx2) ==16663== by 0x4645FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4627BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4628AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4638F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x462CF33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47D7F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491041A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x484C474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x484E29F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== ==16663== Invalid read of size 1 ==16663== at 0x805250D: (within /usr/bin/gbx2) ==16663== by 0x4645FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4627BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4628AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4638F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x462CF33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47D7F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491041A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x484C474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x484E29F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==16663== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==16663== Address 0x6b2ff59c is not stack'd, malloc'd or (recently) free'd ==16663== ==16663== Syscall param rt_sigaction(act->sa_mask) points to uninitialised byte(s) ==16663== at 0x40007D2: (within /lib/ld-2.8.so) ==16663== Address 0x43b4970 is on thread 1's stack ==16663== ==16663== Syscall param clone(parent_tidptr) contains uninitialised byte(s) ==16663== at 0x4152DB8: clone (in /lib/libc-2.8.so) ==16693== ==16693== Thread 2: ==16693== Syscall param write(buf) points to uninitialised byte(s) ==16693== at 0x40007D2: (within /lib/ld-2.8.so) ==16693== by 0x52E57F3: google_breakpad::UntypedMDRVA::Copy(unsigned, void const*, unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3EC9: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E498F: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E5167: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7AAF: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E747B: google_breakpad::LinuxThread::IterateProcSelfTask(int, google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7508: google_breakpad::LinuxThread::ListThreads(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3A87: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0xbeb0ff98 is on thread 1's stack ==16693== ==16693== Conditional jump or move depends on uninitialised value(s) ==16693== at 0x52E5834: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E37AC: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== ==16693== Conditional jump or move depends on uninitialised value(s) ==16693== at 0x52E37AF: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== ==16693== Conditional jump or move depends on uninitialised value(s) ==16693== at 0x52E5768: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E381C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== ==16693== Syscall param lseek(fd) contains uninitialised byte(s) ==16693== at 0x40007D2: (within /lib/ld-2.8.so) ==16693== by 0x52E381C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== ==16693== Syscall param lseek(offset) contains uninitialised byte(s) ==16693== at 0x40007D2: (within /lib/ld-2.8.so) ==16693== by 0x52E381C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== ==16693== Conditional jump or move depends on uninitialised value(s) ==16693== at 0x52E5798: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E381C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== ==16693== Syscall param write(fd) contains uninitialised byte(s) ==16693== at 0x40007D2: (within /lib/ld-2.8.so) ==16693== by 0x52E381C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== ==16693== Conditional jump or move depends on uninitialised value(s) ==16693== at 0x52E5768: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E37DC: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E48EB: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3924 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5E38: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E5C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E4873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3920 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E5E61: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E5C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E4873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3920 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E581B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E5E61: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E5C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E4873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3924 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E5E61: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E5C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E4873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b391c is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E5EB5: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E5C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E4873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3924 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E36AE: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3924 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E43B4: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3920 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E43F2: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3920 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E581B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E43F2: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3924 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E43F2: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b391c is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E442B: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3924 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E4AEE: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3914 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E335A: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3920 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3398: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3920 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E581B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3398: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3924 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3398: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b391c is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E33F9: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3924 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E3260: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3920 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3294: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3920 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E581B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3294: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3924 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3294: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b391c is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E32C1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3924 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E3D53: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x43b3918 is on thread 1's stack ==16693== ==16693== Invalid read of size 4 ==16693== at 0x52E757C: google_breakpad::LinuxThread::ResumeAllThreads() const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D5D: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16693== Address 0x0 is not stack'd, malloc'd or (recently) free'd ==16693== ==16693== Process terminating with default action of signal 11 (SIGSEGV) ==16693== Access not within mapped region at address 0x0 ==16693== at 0x52E757C: google_breakpad::LinuxThread::ResumeAllThreads() const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x52E3D5D: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==16693== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==16663== ==16663== ERROR SUMMARY: 41 errors from 41 contexts (suppressed: 90 from 2) ==16663== malloc/free: in use at exit: 3,118,129 bytes in 22,292 blocks. ==16663== malloc/free: 185,353 allocs, 163,061 frees, 43,022,030 bytes allocated. ==16663== For counts of detected errors, rerun with: -v ==16663== searching for pointers to 22,292 not-freed blocks. ==16663== checked 2,146,208 bytes. ==16663== ==16663== LEAK SUMMARY: ==16663== definitely lost: 184,670 bytes in 6,512 blocks. ==16663== possibly lost: 257,818 bytes in 432 blocks. ==16663== still reachable: 2,675,641 bytes in 15,348 blocks. ==16663== suppressed: 0 bytes in 0 blocks. ==16663== Rerun with --leak-check=full to see details of leaked memory. Hope this helps Thanks for your patience, Steven From gambas at ...1... Wed Jul 30 13:30:31 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 30 Jul 2008 13:30:31 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217416928.3679.75.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807301212.56388.gambas@...1...> <1217416928.3679.75.camel@...1936...> Message-ID: <200807301330.31094.gambas@...1...> On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > Sorry again Benoit, > > Now I got it right, here's the console : > ... Why is gbx2 not compiled with debugging information? What do you get if you type 'gbx2 -V'? -- Benoit Minisini From steven at ...1652... Wed Jul 30 13:33:36 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 30 Jul 2008 13:33:36 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807301330.31094.gambas@...1...> References: <200807280122.41575.gambas@...1...> <200807301212.56388.gambas@...1...> <1217416928.3679.75.camel@...1936...> <200807301330.31094.gambas@...1...> Message-ID: <1217417616.3679.77.camel@...1936...> Le mercredi 30 juillet 2008 ? 13:30 +0200, Benoit Minisini a ?crit : > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > Sorry again Benoit, > > > > Now I got it right, here's the console : > > ... > > Why is gbx2 not compiled with debugging information? > ??????????????? > What do you get if you type 'gbx2 -V'? > 2.8.0 Steven From gambas at ...1... Wed Jul 30 13:38:53 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 30 Jul 2008 13:38:53 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217417616.3679.77.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807301330.31094.gambas@...1...> <1217417616.3679.77.camel@...1936...> Message-ID: <200807301338.53616.gambas@...1...> On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > Le mercredi 30 juillet 2008 ? 13:30 +0200, Benoit Minisini a ?crit : > > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > > Sorry again Benoit, > > > > > > Now I got it right, here's the console : > > > ... > > > > Why is gbx2 not compiled with debugging information? > > ??????????????? > > > What do you get if you type 'gbx2 -V'? > > 2.8.0 > And if you type 'gbx2 -h'? -- Benoit Minisini From gambas at ...1... Wed Jul 30 13:42:13 2008 From: gambas at ...1... (Benoit Minisini) Date: Wed, 30 Jul 2008 13:42:13 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807301338.53616.gambas@...1...> References: <200807280122.41575.gambas@...1...> <1217417616.3679.77.camel@...1936...> <200807301338.53616.gambas@...1...> Message-ID: <200807301342.13326.gambas@...1...> On mercredi 30 juillet 2008, Benoit Minisini wrote: > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > Le mercredi 30 juillet 2008 ? 13:30 +0200, Benoit Minisini a ?crit : > > > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > > > Sorry again Benoit, > > > > > > > > Now I got it right, here's the console : > > > > ... > > > > > > Why is gbx2 not compiled with debugging information? > > > > ??????????????? > > > > > What do you get if you type 'gbx2 -V'? > > > > 2.8.0 > > And if you type 'gbx2 -h'? Sorry, you must first update your local repository to the revision 1487! -- Benoit Minisini From steven at ...1652... Wed Jul 30 13:47:06 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 30 Jul 2008 13:47:06 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807301338.53616.gambas@...1...> References: <200807280122.41575.gambas@...1...> <200807301330.31094.gambas@...1...> <1217417616.3679.77.camel@...1936...> <200807301338.53616.gambas@...1...> Message-ID: <1217418426.3679.79.camel@...1936...> Le mercredi 30 juillet 2008 ? 13:38 +0200, Benoit Minisini a ?crit : > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > Le mercredi 30 juillet 2008 ? 13:30 +0200, Benoit Minisini a ?crit : > > > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > > > Sorry again Benoit, > > > > > > > > Now I got it right, here's the console : > > > > ... > > > > > > Why is gbx2 not compiled with debugging information? > > > > ??????????????? > > > > > What do you get if you type 'gbx2 -V'? > > > > 2.8.0 > > > > And if you type 'gbx2 -h'? > GAMBAS Interpreter version 2.8.0 Jul 28 2008 09:06:24 (c) 2000-2007 Benoit Minisini This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. Usage: gbx2 [options] [] -- ... gbx2 -e Options: -V --version display version -h --help display this help -e evaluate an expression -g enter debugging mode -p disable preloading -k do not unload shared libraries -x execute an archive From steven at ...1652... Wed Jul 30 14:32:05 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 30 Jul 2008 14:32:05 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807301342.13326.gambas@...1...> References: <200807280122.41575.gambas@...1...> <1217417616.3679.77.camel@...1936...> <200807301338.53616.gambas@...1...> <200807301342.13326.gambas@...1...> Message-ID: <1217421125.3679.81.camel@...1936...> Le mercredi 30 juillet 2008 ? 13:42 +0200, Benoit Minisini a ?crit : > On mercredi 30 juillet 2008, Benoit Minisini wrote: > > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > > Le mercredi 30 juillet 2008 ? 13:30 +0200, Benoit Minisini a ?crit : > > > > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > > > > Sorry again Benoit, > > > > > > > > > > Now I got it right, here's the console : > > > > > ... > > > > > > > > Why is gbx2 not compiled with debugging information? > > > > > > ??????????????? > > > > > > > What do you get if you type 'gbx2 -V'? > > > > > > 2.8.0 > > > > And if you type 'gbx2 -h'? > > Sorry, you must first update your local repository to the revision 1487! > Ok, I re-installed completely 1487 (clean install) It gives me : steven at ...1948...:~/2.0/app/src/gambas2> gbx2 -h GAMBAS Interpreter version 2.8.0 Jul 30 2008 14:22:02 Compiled with gcc 4.3.1 20080507 (prerelease) [gcc-4_3-branch revision 135036] (c) 2000-2007 Benoit Minisini This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. Usage: gbx2 [options] [] -- ... gbx2 -e Options: -V --version display version -h --help display this help -e evaluate an expression -g enter debugging mode -p disable preloading -k do not unload shared libraries -x execute an archive steven at ...1948...:~/2.0/app/src/gambas2> Steven From doriano.blengino at ...1909... Wed Jul 30 14:21:23 2008 From: doriano.blengino at ...1909... (Doriano Blengino) Date: Wed, 30 Jul 2008 14:21:23 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217418426.3679.79.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807301330.31094.gambas@...1...> <1217417616.3679.77.camel@...1936...> <200807301338.53616.gambas@...1...> <1217418426.3679.79.camel@...1936...> Message-ID: <48905CC3.1010206@...1909...> Steven Lobbezoo ha scritto: > Le mercredi 30 juillet 2008 ? 13:38 +0200, Benoit Minisini a ?crit >> On mercredi 30 juillet 2008, Steven Lobbezoo wrote: >> >>> Le mercredi 30 juillet 2008 ? 13:30 +0200, Benoit Minisini a ?crit : >>> >>>> On mercredi 30 juillet 2008, Steven Lobbezoo wrote: >>>> >>>>> Sorry again Benoit, >>>>> It seems a chat to me... eh eheheh... :->> regards, Doriano Blengino From smiefert at ...784... Wed Jul 30 17:02:29 2008 From: smiefert at ...784... (Stefan Miefert) Date: Wed, 30 Jul 2008 17:02:29 +0200 Subject: [Gambas-user] Gambas and Mousepointer Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA651@...1899...> I try to load a own mouspointe rin gambas and I load a png image and its ok:) But! The Clickpoint is in the middle of the new pointer image. How can I set this clickpoint to the left upper? Under windows I use .cur Format and define theclickpoint in the gfx programm. But how can I do this in gambas/linux? From sourceforge-raindog2 at ...94... Wed Jul 30 17:59:46 2008 From: sourceforge-raindog2 at ...94... (Rob) Date: Wed, 30 Jul 2008 11:59:46 -0400 Subject: [Gambas-user] Gambas and Mousepointer In-Reply-To: <8D42310D957CFB46AA11921A711D4D1601FB2CA651@...1899...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA651@...1899...> Message-ID: <200807301159.46974.sourceforge-raindog2@...94...> On Wednesday 30 July 2008 11:02, Stefan Miefert wrote: > Under windows I use .cur Format and define theclickpoint in the > gfx programm. But how can I do this in gambas/linux? Set the X and Y properties of your cursor object. Rob From ron at ...1740... Thu Jul 31 00:06:02 2008 From: ron at ...1740... (Ron) Date: Thu, 31 Jul 2008 00:06:02 +0200 Subject: [Gambas-user] Small feature request Message-ID: <4890E5CA.6010007@...1740...> Hi, An option to place the text of a checkbox on the left side of the box instead of the right side would be nice. Regards, Ron_2nd From gambas at ...1... Thu Jul 31 00:12:51 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 31 Jul 2008 00:12:51 +0200 Subject: [Gambas-user] Small feature request In-Reply-To: <4890E5CA.6010007@...1740...> References: <4890E5CA.6010007@...1740...> Message-ID: <200807310012.51095.gambas@...1...> On jeudi 31 juillet 2008, Ron wrote: > Hi, > > An option to place the text of a checkbox on the left side of the box > instead of the right side would be nice. > > Regards, > Ron_2nd > I think this is not possible both in Qt and GTK+. Regards, -- Benoit Minisini From gambas at ...1... Thu Jul 31 00:15:25 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 31 Jul 2008 00:15:25 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217421125.3679.81.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807301342.13326.gambas@...1...> <1217421125.3679.81.camel@...1936...> Message-ID: <200807310015.25764.gambas@...1...> On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > Le mercredi 30 juillet 2008 ? 13:42 +0200, Benoit Minisini a ?crit : > > On mercredi 30 juillet 2008, Benoit Minisini wrote: > > > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > > > Le mercredi 30 juillet 2008 ? 13:30 +0200, Benoit Minisini a ?crit : > > > > > On mercredi 30 juillet 2008, Steven Lobbezoo wrote: > > > > > > Sorry again Benoit, > > > > > > > > > > > > Now I got it right, here's the console : > > > > > > ... > > > > > > > > > > Why is gbx2 not compiled with debugging information? > > > > > > > > ??????????????? > > > > > > > > > What do you get if you type 'gbx2 -V'? > > > > > > > > 2.8.0 > > > > > > And if you type 'gbx2 -h'? > > > > Sorry, you must first update your local repository to the revision 1487! > > Ok, I re-installed completely 1487 (clean install) > It gives me : > > steven at ...1948...:~/2.0/app/src/gambas2> gbx2 -h > > GAMBAS Interpreter version 2.8.0 Jul 30 2008 14:22:02 > Compiled with gcc 4.3.1 20080507 (prerelease) [gcc-4_3-branch revision > 135036] > (c) 2000-2007 Benoit Minisini > > This program is free software; you can redistribute it and/or > modify it under the terms of the GNU General Public License as > published by the Free Software Foundation; either version 2, or > (at your option) any later version. > > Usage: gbx2 [options] [] -- ... > gbx2 -e > > Options: > -V --version display version > -h --help display this help > -e evaluate an expression > -g enter debugging mode > -p disable preloading > -k do not unload shared libraries > -x execute an archive > > steven at ...1948...:~/2.0/app/src/gambas2> > > > Steven > OK. That's the right version. Are you sure that you didn't remove debugging information when recompiling? They are activated by default, so it should be ok. Now launch valgrind again, and send me the result. If the debugging information are present in the gbx2 executable, you will see function names and line numbers in valgrind backtrace, not just the name of the executable. Regards, -- Benoit Minisini From ariefbayu at ...626... Thu Jul 31 03:13:25 2008 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Thu, 31 Jul 2008 08:13:25 +0700 Subject: [Gambas-user] Small feature request In-Reply-To: <4890E5CA.6010007@...1740...> References: <4890E5CA.6010007@...1740...> Message-ID: <976ad9050807301813g31e3b542rbe3971dc50e3d662@...627...> On 7/31/08, Ron wrote: > > Hi, > > An option to place the text of a checkbox on the left side of the box > instead of the right side would be nice. You can place label on the left side of checkbox (as I always did ;)). -- Arief Bayu Purwanto About : http://about.freelancer.web.id/ Blog : http://bayu.freelancer.web.id/ From rterry at ...1946... Thu Jul 31 06:07:32 2008 From: rterry at ...1946... (richard terry) Date: Thu, 31 Jul 2008 14:07:32 +1000 Subject: [Gambas-user] Gambas and kde4.1 Message-ID: <200807311407.32307.rterry@...1946...> Wondered if anyone was using Gambas with kde4.1/problems etc? Regards Richard From ron at ...1740... Thu Jul 31 08:34:30 2008 From: ron at ...1740... (Ron) Date: Thu, 31 Jul 2008 08:34:30 +0200 Subject: [Gambas-user] Small feature request In-Reply-To: <976ad9050807301813g31e3b542rbe3971dc50e3d662@...627...> References: <4890E5CA.6010007@...1740...> <976ad9050807301813g31e3b542rbe3971dc50e3d662@...627...> Message-ID: <48915CF6.1070309@...1740...> Arief Bayu Purwanto schreef: > On 7/31/08, Ron wrote: > >> Hi, >> >> An option to place the text of a checkbox on the left side of the box >> instead of the right side would be nice. >> > > > You can place label on the left side of checkbox (as I always did ;)). > > Yes of course I do that to at this moment, but that doubles the no. of items, and my program is alrealdy getting rather big, and the ide slows down more and more ... Thanks. Ron_2nd. From ariefbayu at ...626... Thu Jul 31 08:44:27 2008 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Thu, 31 Jul 2008 13:44:27 +0700 Subject: [Gambas-user] Small feature request In-Reply-To: <48915CF6.1070309@...1740...> References: <4890E5CA.6010007@...1740...> <976ad9050807301813g31e3b542rbe3971dc50e3d662@...627...> <48915CF6.1070309@...1740...> Message-ID: <976ad9050807302344x1a2d6528vc4a6043f8146a68@...627...> what about you make a component for it? You'll have to change all your checkbox occurrence with it. But, in the long run, you'll save more time. On 7/31/08, Ron wrote: > > Arief Bayu Purwanto schreef: > > > On 7/31/08, Ron wrote: > > > >> Hi, > >> > >> An option to place the text of a checkbox on the left side of the box > >> instead of the right side would be nice. > >> > > > > > > You can place label on the left side of checkbox (as I always did ;)). > > > > > > Yes of course I do that to at this moment, but that doubles the no. of > items, and my program is alrealdy getting rather big, and the ide slows > down more and more ... > > Thanks. > > Ron_2nd. > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- Arief Bayu Purwanto About : http://about.freelancer.web.id/ Blog : http://bayu.freelancer.web.id/ From smiefert at ...784... Thu Jul 31 08:47:28 2008 From: smiefert at ...784... (Stefan Miefert) Date: Thu, 31 Jul 2008 08:47:28 +0200 Subject: [Gambas-user] Gambas and Mousepointer In-Reply-To: <200807301159.46974.sourceforge-raindog2@...94...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA651@...1899...> <200807301159.46974.sourceforge-raindog2@...94...> Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA65B@...1899...> >Set the X and Y properties of your cursor object. Hello, hCursor.x = 0 , hCursor.y = 0 and I get the message Cursor.x is readonly , cursory isreadonly,.. I try xcursorgen but this makes a giant file and when I try this file to load in gambas I get a wrong image type error:( From smiefert at ...784... Thu Jul 31 08:56:55 2008 From: smiefert at ...784... (Stefan Miefert) Date: Thu, 31 Jul 2008 08:56:55 +0200 Subject: [Gambas-user] Gambas and Mousepointer In-Reply-To: <200807301159.46974.sourceforge-raindog2@...94...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA651@...1899...> <200807301159.46974.sourceforge-raindog2@...94...> Message-ID: <8D42310D957CFB46AA11921A711D4D1601FB2CA65D@...1899...> Hello, i tryy xcursorgen but the fileformat isnt accepted by gambas?! What is the right format ?! From gambas at ...1... Thu Jul 31 09:07:57 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 31 Jul 2008 09:07:57 +0200 Subject: [Gambas-user] Gambas and Mousepointer In-Reply-To: <8D42310D957CFB46AA11921A711D4D1601FB2CA65D@...1899...> References: <8D42310D957CFB46AA11921A711D4D1601FB2CA651@...1899...> <200807301159.46974.sourceforge-raindog2@...94...> <8D42310D957CFB46AA11921A711D4D1601FB2CA65D@...1899...> Message-ID: <200807310907.57724.gambas@...1...> On jeudi 31 juillet 2008, Stefan Miefert wrote: > Hello, > > i tryy xcursorgen but the fileformat isnt accepted by gambas?! What is > the right format ?! > Did you look at the documentation of the Cursor class? First you load a Picture object, in any format supported by the underlying toolkit. MyPicture = Picture.Load(...) Then you create a cursor by specifying an optional hotspot. MyCursor = NEW Cursor(MyPicture, X, Y) Finally you affect the cursor to the control. MyControl.Cursor = MyCursor Regards, -- Benoit Minisini From gambas at ...1... Thu Jul 31 09:09:35 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 31 Jul 2008 09:09:35 +0200 Subject: [Gambas-user] Small feature request In-Reply-To: <48915CF6.1070309@...1740...> References: <4890E5CA.6010007@...1740...> <976ad9050807301813g31e3b542rbe3971dc50e3d662@...627...> <48915CF6.1070309@...1740...> Message-ID: <200807310909.35716.gambas@...1...> On jeudi 31 juillet 2008, Ron wrote: > Arief Bayu Purwanto schreef: > > On 7/31/08, Ron wrote: > >> Hi, > >> > >> An option to place the text of a checkbox on the left side of the box > >> instead of the right side would be nice. > > > > You can place label on the left side of checkbox (as I always did ;)). > > Yes of course I do that to at this moment, but that doubles the no. of > items, Just add an exported CheckBox class to your project, and reimplement the checkbox the way you want. :-) > and my program is alrealdy getting rather big, and the ide slows > down more and more ... I'm not sure poor checkboxes are guilty there... -- Benoit Minisini From gambas at ...1... Thu Jul 31 09:11:04 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 31 Jul 2008 09:11:04 +0200 Subject: [Gambas-user] Gambas and kde4.1 In-Reply-To: <200807311407.32307.rterry@...1946...> References: <200807311407.32307.rterry@...1946...> Message-ID: <200807310911.04563.gambas@...1...> On jeudi 31 juillet 2008, richard terry wrote: > Wondered if anyone was using Gambas with kde4.1/problems etc? > > Regards > > Richard > I can't tell. I have a NVIDIA 8300 GS card, and so KDE 4.1 is unusable for me... -- Benoit Minisini From ron at ...1740... Thu Jul 31 09:16:47 2008 From: ron at ...1740... (Ron) Date: Thu, 31 Jul 2008 09:16:47 +0200 Subject: [Gambas-user] Small feature request In-Reply-To: <200807310909.35716.gambas@...1...> References: <4890E5CA.6010007@...1740...> <976ad9050807301813g31e3b542rbe3971dc50e3d662@...627...> <48915CF6.1070309@...1740...> <200807310909.35716.gambas@...1...> Message-ID: <489166DF.2020208@...1740...> Benoit Minisini schreef: > On jeudi 31 juillet 2008, Ron wrote: > >> Arief Bayu Purwanto schreef: >> >>> On 7/31/08, Ron wrote: >>> >>>> Hi, >>>> >>>> An option to place the text of a checkbox on the left side of the box >>>> instead of the right side would be nice. >>>> >>> You can place label on the left side of checkbox (as I always did ;)). >>> >> Yes of course I do that to at this moment, but that doubles the no. of >> items, >> > > Just add an exported CheckBox class to your project, and reimplement the > checkbox the way you want. :-) > > Yeah yeah, easy for you to say ;-) , hard for me to find out how... lots todo... :-) >> and my program is alrealdy getting rather big, and the ide slows >> down more and more ... >> > > I'm not sure poor checkboxes are guilty there... > > I don't think so either, but wanted to clean the stuff up a bit before publishing it to sourceforge. Small question for everyone, I need to display animated gif icons in a tableview (like .Picture), I guess I have to look at MovieBox, is that supported inside an tableview field? Regards, Ron_2nd. From steven at ...1652... Thu Jul 31 16:15:25 2008 From: steven at ...1652... (Steven Lobbezoo) Date: Thu, 31 Jul 2008 16:15:25 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807310015.25764.gambas@...1...> References: <200807280122.41575.gambas@...1...> <200807301342.13326.gambas@...1...> <1217421125.3679.81.camel@...1936...> <200807310015.25764.gambas@...1...> Message-ID: <1217513725.3871.4.camel@...1936...> Hi, Sorry for the delay, but here it is. ==4612== Memcheck, a memory error detector. ==4612== Copyright (C) 2002-2007, and GNU GPL'd, by Julian Seward et al. ==4612== Using LibVEX rev 1804, a library for dynamic binary translation. ==4612== Copyright (C) 2004-2007, and GNU GPL'd, by OpenWorks LLP. ==4612== Using valgrind-3.3.0, a dynamic binary instrumentation framework. ==4612== Copyright (C) 2000-2007, and GNU GPL'd, by Julian Seward et al. ==4612== For more details, rerun with: -v ==4612== ==4621== Syscall param rt_sigaction(act->sa_mask) points to uninitialised byte(s) ==4621== at 0x40007D2: (within /lib/ld-2.8.so) ==4621== by 0x52E23B7: google_breakpad::ExceptionHandler::TeardownHandler(int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4621== by 0x52E23F6: google_breakpad::ExceptionHandler::TeardownAllHandler() (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4621== by 0x52E27FE: google_breakpad::ExceptionHandler::~ExceptionHandler() (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4621== by 0x40B28F0: exit (in /lib/libc-2.8.so) ==4621== by 0x8069603: (within /usr/bin/gbx2) ==4621== by 0x8069691: (within /usr/bin/gbx2) ==4621== by 0x805AC6E: (within /usr/bin/gbx2) ==4621== by 0x8050C00: (within /usr/bin/gbx2) ==4621== by 0x804F0EA: (within /usr/bin/gbx2) ==4621== by 0x804F3C0: (within /usr/bin/gbx2) ==4621== by 0x805DFDF: (within /usr/bin/gbx2) ==4621== by 0x46430F6: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4621== by 0x4643178: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4621== by 0x804E537: (within /usr/bin/gbx2) ==4621== by 0x804EDDD: (within /usr/bin/gbx2) ==4621== by 0x804F470: (within /usr/bin/gbx2) ==4621== by 0x804FD86: (within /usr/bin/gbx2) ==4621== by 0x8050D1C: (within /usr/bin/gbx2) ==4621== by 0x804F0EA: (within /usr/bin/gbx2) ==4621== by 0x804F3C0: (within /usr/bin/gbx2) ==4621== by 0x804F779: (within /usr/bin/gbx2) ==4621== by 0x8063095: (within /usr/bin/gbx2) ==4621== by 0x80525BE: (within /usr/bin/gbx2) ==4621== by 0x804E5CA: (within /usr/bin/gbx2) ==4621== by 0x8050086: (within /usr/bin/gbx2) ==4621== by 0x8050D3A: (within /usr/bin/gbx2) ==4621== by 0x804F0EA: (within /usr/bin/gbx2) ==4621== by 0x804F3C0: (within /usr/bin/gbx2) ==4621== by 0x805E08A: (within /usr/bin/gbx2) ==4621== by 0x805E54A: (within /usr/bin/gbx2) ==4621== by 0x4647886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4621== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4621== by 0x462AC45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4621== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4621== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4621== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4621== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4621== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4621== by 0x470AC89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4621== by 0x470BE47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4621== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4621== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4621== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4621== by 0x4BA4A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4621== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4621== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4621== by 0x470AD29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4621== by 0x470AD62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4621== by 0x47EBDF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4621== Address 0xbe82eeec is on thread 1's stack ==4621== ==4621== ERROR SUMMARY: 5 errors from 1 contexts (suppressed: 68 from 2) ==4621== malloc/free: in use at exit: 877,238 bytes in 10,340 blocks. ==4621== malloc/free: 50,261 allocs, 39,921 frees, 8,237,236 bytes allocated. ==4621== For counts of detected errors, rerun with: -v ==4621== searching for pointers to 10,340 not-freed blocks. ==4621== checked 1,136,532 bytes. ==4621== ==4621== LEAK SUMMARY: ==4621== definitely lost: 60,185 bytes in 2,043 blocks. ==4621== possibly lost: 86,341 bytes in 144 blocks. ==4621== still reachable: 730,712 bytes in 8,153 blocks. ==4621== suppressed: 0 bytes in 0 blocks. ==4621== Rerun with --leak-check=full to see details of leaked memory. ==4612== Conditional jump or move depends on uninitialised value(s) ==4612== at 0x8062BC1: (within /usr/bin/gbx2) ==4612== by 0x8068F3B: (within /usr/bin/gbx2) ==4612== by 0x8068FE1: (within /usr/bin/gbx2) ==4612== by 0x8069028: (within /usr/bin/gbx2) ==4612== by 0x805AC8A: (within /usr/bin/gbx2) ==4612== by 0x8050C00: (within /usr/bin/gbx2) ==4612== by 0x804F0EA: (within /usr/bin/gbx2) ==4612== by 0x804F3C0: (within /usr/bin/gbx2) ==4612== by 0x805DFDF: (within /usr/bin/gbx2) ==4612== by 0x46430F6: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4643178: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x804E537: (within /usr/bin/gbx2) ==4612== by 0x804EDDD: (within /usr/bin/gbx2) ==4612== by 0x804F470: (within /usr/bin/gbx2) ==4612== by 0x804FD86: (within /usr/bin/gbx2) ==4612== by 0x8050D1C: (within /usr/bin/gbx2) ==4612== by 0x804F0EA: (within /usr/bin/gbx2) ==4612== by 0x804F3C0: (within /usr/bin/gbx2) ==4612== by 0x804F779: (within /usr/bin/gbx2) ==4612== by 0x8063095: (within /usr/bin/gbx2) ==4612== by 0x80525BE: (within /usr/bin/gbx2) ==4612== by 0x804E5CA: (within /usr/bin/gbx2) ==4612== by 0x8050086: (within /usr/bin/gbx2) ==4612== by 0x8050D3A: (within /usr/bin/gbx2) ==4612== by 0x804F0EA: (within /usr/bin/gbx2) ==4612== by 0x804F3C0: (within /usr/bin/gbx2) ==4612== by 0x805E08A: (within /usr/bin/gbx2) ==4612== by 0x805E54A: (within /usr/bin/gbx2) ==4612== by 0x4647886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x462AC45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x470AC89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x470BE47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA4A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x470AD29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x470AD62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47EBDF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA4E7E: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== ==4612== Conditional jump or move depends on uninitialised value(s) ==4612== at 0x8062BC1: (within /usr/bin/gbx2) ==4612== by 0x8062EB0: (within /usr/bin/gbx2) ==4612== by 0x80653AB: (within /usr/bin/gbx2) ==4612== by 0x804E537: (within /usr/bin/gbx2) ==4612== by 0x804EDDD: (within /usr/bin/gbx2) ==4612== by 0x80511CC: (within /usr/bin/gbx2) ==4612== by 0x804F0EA: (within /usr/bin/gbx2) ==4612== by 0x804F3C0: (within /usr/bin/gbx2) ==4612== by 0x804F490: (within /usr/bin/gbx2) ==4612== by 0x804F7B2: (within /usr/bin/gbx2) ==4612== by 0x804FB40: (within /usr/bin/gbx2) ==4612== by 0x805157C: (within /usr/bin/gbx2) ==4612== by 0x804F0EA: (within /usr/bin/gbx2) ==4612== by 0x804F3C0: (within /usr/bin/gbx2) ==4612== by 0x804F779: (within /usr/bin/gbx2) ==4612== by 0x8063095: (within /usr/bin/gbx2) ==4612== by 0x80525BE: (within /usr/bin/gbx2) ==4612== by 0x804E5CA: (within /usr/bin/gbx2) ==4612== by 0x8050086: (within /usr/bin/gbx2) ==4612== by 0x8050D3A: (within /usr/bin/gbx2) ==4612== by 0x804F0EA: (within /usr/bin/gbx2) ==4612== by 0x804F3C0: (within /usr/bin/gbx2) ==4612== by 0x805E08A: (within /usr/bin/gbx2) ==4612== by 0x805E54A: (within /usr/bin/gbx2) ==4612== by 0x4647886: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x462AC45: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x470AC89: gtk_button_clicked (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x470BE47: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA4A3F: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x470AD29: gtk_button_released (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x470AD62: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47EBDF5: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA4E7E: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA650B: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4914B6D: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47E4A5B: gtk_propagate_event (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== ==4612== Conditional jump or move depends on uninitialised value(s) ==4612== at 0x8062D9F: (within /usr/bin/gbx2) ==4612== by 0x805250D: (within /usr/bin/gbx2) ==4612== by 0x4645FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4627BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4628AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4638F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x462CF33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47D7F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491041A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x484C474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x484E29F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== ==4612== Use of uninitialised value of size 4 ==4612== at 0x8062DA3: (within /usr/bin/gbx2) ==4612== by 0x805250D: (within /usr/bin/gbx2) ==4612== by 0x4645FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4627BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4628AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4638F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x462CF33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47D7F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491041A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x484C474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x484E29F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== ==4612== Invalid read of size 1 ==4612== at 0x805250D: (within /usr/bin/gbx2) ==4612== by 0x4645FC9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4625BE9: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4627BF4: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4628AD0: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4638F4D: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x462CF33: (within /usr/lib/gambas2/gb.gtk.so.0.0.0) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90C3A: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA51C6: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47D7F70: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491041A: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B90B67: g_closure_invoke (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA55B9: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA667D: g_signal_emit_valist (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4BA6AE5: g_signal_emit (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480DB20: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x491D120: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9324E: g_object_run_dispose (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x480D80D: gtk_object_destroy (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x46FFEAE: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x484C474: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4747E35: gtk_container_foreach (in /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x47486EF: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x484E29F: (within /usr/lib/libgtk-x11-2.0.so.0.1200.9) ==4612== by 0x4B9E2A3: g_cclosure_marshal_VOID__VOID (in /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== by 0x4B8F388: (within /usr/lib/libgobject-2.0.so.0.1600.3) ==4612== Address 0x6b300b44 is not stack'd, malloc'd or (recently) free'd ==4612== ==4612== Syscall param rt_sigaction(act->sa_mask) points to uninitialised byte(s) ==4612== at 0x40007D2: (within /lib/ld-2.8.so) ==4612== Address 0x43b2d90 is on thread 1's stack ==4612== ==4612== Syscall param clone(parent_tidptr) contains uninitialised byte(s) ==4612== at 0x4152DB8: clone (in /lib/libc-2.8.so) ==4643== ==4643== Thread 2: ==4643== Syscall param write(buf) points to uninitialised byte(s) ==4643== at 0x40007D2: (within /lib/ld-2.8.so) ==4643== by 0x52E57F3: google_breakpad::UntypedMDRVA::Copy(unsigned, void const*, unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3EC9: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E498F: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E5167: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7AAF: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E747B: google_breakpad::LinuxThread::IterateProcSelfTask(int, google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7508: google_breakpad::LinuxThread::ListThreads(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3A87: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0xbe828f88 is on thread 1's stack ==4643== ==4643== Conditional jump or move depends on uninitialised value(s) ==4643== at 0x52E5834: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E37AC: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== ==4643== Conditional jump or move depends on uninitialised value(s) ==4643== at 0x52E37AF: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== ==4643== Conditional jump or move depends on uninitialised value(s) ==4643== at 0x52E5768: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E381C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== ==4643== Syscall param lseek(fd) contains uninitialised byte(s) ==4643== at 0x40007D2: (within /lib/ld-2.8.so) ==4643== by 0x52E381C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== ==4643== Syscall param lseek(offset) contains uninitialised byte(s) ==4643== at 0x40007D2: (within /lib/ld-2.8.so) ==4643== by 0x52E381C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== ==4643== Conditional jump or move depends on uninitialised value(s) ==4643== at 0x52E5798: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E381C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== ==4643== Syscall param write(fd) contains uninitialised byte(s) ==4643== at 0x40007D2: (within /lib/ld-2.8.so) ==4643== by 0x52E381C: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== ==4643== Conditional jump or move depends on uninitialised value(s) ==4643== at 0x52E5768: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E37DC: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E48B1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E48EB: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d44 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5E38: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E5C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E4873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d40 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E5E61: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E5C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E4873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d40 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E581B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E5E61: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E5C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E4873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d44 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E5E61: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E5C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E4873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d3c is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E5EB5: bool google_breakpad::MinidumpFileWriter::WriteStringCore(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E5C51: google_breakpad::MinidumpFileWriter::WriteString(char const*, unsigned, MDLocationDescriptor*) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E4873: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E7D0B: google_breakpad::LinuxThread::ListModules(google_breakpad::CallbackParam*) const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3677: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d44 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E36AE: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d44 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E43B4: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d40 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E43F2: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d40 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E581B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E43F2: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d44 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E43F2: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d3c is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E442B: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d44 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E4AEE: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d34 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E335A: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d40 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3398: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d40 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E581B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3398: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d44 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3398: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d3c is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E33F9: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d44 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E3260: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d40 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5818: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3294: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d40 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E581B: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3294: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d44 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5867: google_breakpad::MinidumpFileWriter::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E58BD: google_breakpad::UntypedMDRVA::Allocate(unsigned) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3294: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d3c is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E5765: google_breakpad::MinidumpFileWriter::Copy(unsigned, void const*, int) (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E32C1: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D18: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d44 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E3D53: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x43b1d38 is on thread 1's stack ==4643== ==4643== Invalid read of size 4 ==4643== at 0x52E757C: google_breakpad::LinuxThread::ResumeAllThreads() const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D5D: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4643== Address 0x0 is not stack'd, malloc'd or (recently) free'd ==4643== ==4643== Process terminating with default action of signal 11 (SIGSEGV) ==4643== Access not within mapped region at address 0x0 ==4643== at 0x52E757C: google_breakpad::LinuxThread::ResumeAllThreads() const (in /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x52E3D5D: (within /usr/lib/gtk-2.0/modules/libgnomebreakpad.so) ==4643== by 0x4152DCD: clone (in /lib/libc-2.8.so) ==4612== ==4612== ERROR SUMMARY: 41 errors from 41 contexts (suppressed: 75 from 2) ==4612== malloc/free: in use at exit: 3,105,546 bytes in 22,126 blocks. ==4612== malloc/free: 186,578 allocs, 164,452 frees, 43,727,336 bytes allocated. ==4612== For counts of detected errors, rerun with: -v ==4612== searching for pointers to 22,126 not-freed blocks. ==4612== checked 2,139,256 bytes. ==4612== ==4612== LEAK SUMMARY: ==4612== definitely lost: 184,506 bytes in 6,501 blocks. ==4612== possibly lost: 258,842 bytes in 434 blocks. ==4612== still reachable: 2,662,198 bytes in 15,191 blocks. ==4612== suppressed: 0 bytes in 0 blocks. ==4612== Rerun with --leak-check=full to see details of leaked memory. Hope this si with debugging info, I did not change anything, just ./reconf-all ./configure -C make su : make install Steven Le jeudi 31 juillet 2008 ? 00:15 +0200, Benoit Minisini a ?crit : > > OK. That's the right version. Are you sure that you didn't remove debugging > information when recompiling? They are activated by default, so it should be > ok. > > Now launch valgrind again, and send me the result. If the debugging > information are present in the gbx2 executable, you will see function names > and line numbers in valgrind backtrace, not just the name of the executable. > > Regards, > From lordheavym at ...626... Thu Jul 31 18:57:55 2008 From: lordheavym at ...626... (Laurent Carlier) Date: Thu, 31 Jul 2008 18:57:55 +0200 Subject: [Gambas-user] Gambas and kde4.1 In-Reply-To: <200807311407.32307.rterry@...1946...> References: <200807311407.32307.rterry@...1946...> Message-ID: <200807311857.55648.lordheavym@...626...> Le Thursday 31 July 2008 06:07:32 richard terry, vous avez ?crit : > Wondered if anyone was using Gambas with kde4.1/problems etc? > > Regards > > Richard > Gambas 2 & 3 runs very well under kde 4.1 for me .... and an 7900gt nvidia card under 64 bits. ++ From gambas at ...1... Thu Jul 31 19:28:41 2008 From: gambas at ...1... (Benoit Minisini) Date: Thu, 31 Jul 2008 19:28:41 +0200 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <1217513725.3871.4.camel@...1936...> References: <200807280122.41575.gambas@...1...> <200807310015.25764.gambas@...1...> <1217513725.3871.4.camel@...1936...> Message-ID: <200807311928.41144.gambas@...1...> On jeudi 31 juillet 2008, Steven Lobbezoo wrote: > Hi, > > Sorry for the delay, but here it is. > > ==4612== Memcheck, a memory error detector. > ... > > Hope this si with debugging info, I did not change anything, just > ./reconf-all > ./configure -C > make > su : make install > > > Steven > You have no debugging information in valgrind, but you compiled it normally. What the heck does Novell on their Linux distribution ? @%*#! If you can grant me an ssh access to your machine, I will be able to search by myself directly. Otherwise, I can't do more... It's strange, as another OpenSuSE user, Werner, now has a working Gambas after my fixes for gcc 4.3. But he uses the x86_64 version... And I want to be sure that Gambas works with gcc 4.3 before releasing the 2.8 version... -- Benoit Minisini From wdahn at ...1000... Thu Jul 31 19:40:26 2008 From: wdahn at ...1000... (Werner) Date: Fri, 01 Aug 2008 01:40:26 +0800 Subject: [Gambas-user] Problems with OpenSuSE 11 and gcc 4.3 In-Reply-To: <200807311928.41144.gambas@...1...> References: <200807280122.41575.gambas@...1...> <200807310015.25764.gambas@...1...> <1217513725.3871.4.camel@...1936...> <200807311928.41144.gambas@...1...> Message-ID: <4891F90A.9050005@...1000...> Benoit Minisini wrote: > On jeudi 31 juillet 2008, Steven Lobbezoo wrote: > > > It's strange, as another OpenSuSE user, Werner, now has a working Gambas after > my fixes for gcc 4.3. But he uses the x86_64 version... Yes, I'm very happy now. Werner