From mckaygerhard at ...176... Wed Jul 3 20:59:42 2013 From: mckaygerhard at ...176... (PICCORO McKAY Lenz) Date: Wed, 3 Jul 2013 14:29:42 -0430 Subject: [Gambas-devel] Comp("FICHA" = "FICHA", gb.IgnoreCase) always return 1 !!!!!! Message-ID: i made Comp("FICHA" = "FICHA", gb.IgnoreCase) and returns me 1 and if i compared with a var returns always -1 this its a bug? or maybe theres another way!? Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From gambas.fr at ...176... Wed Jul 3 21:52:45 2013 From: gambas.fr at ...176... (Fabien Bodard) Date: Wed, 3 Jul 2013 21:52:45 +0200 Subject: [Gambas-devel] Comp("FICHA" = "FICHA", gb.IgnoreCase) always return 1 !!!!!! In-Reply-To: References: Message-ID: the good way is : Comp("FICHA", "FICHA", gb.IgnoreCase) http://gambasdoc.org/help/lang/comp?v3 2013/7/3 PICCORO McKAY Lenz > i made > > > Comp("FICHA" = "FICHA", gb.IgnoreCase) > > and returns me 1 > > and if i compared with a var returns always -1 > > > this its a bug? or maybe theres another way!? > > Lenz McKAY Gerardo (PICCORO) > http://qgqlochekone.blogspot.com > > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by Windows: > > Build for Windows Store. > > http://p.sf.net/sfu/windows-dev2dev > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > > -- Fabien Bodard -------------- next part -------------- An HTML attachment was scrubbed... URL: From gambas.fr at ...176... Wed Jul 3 21:54:42 2013 From: gambas.fr at ...176... (Fabien Bodard) Date: Wed, 3 Jul 2013 21:54:42 +0200 Subject: [Gambas-devel] Comp("FICHA" = "FICHA", gb.IgnoreCase) always return 1 !!!!!! In-Reply-To: References: Message-ID: your way say : comp(true,1).... well it's true .... -1<1 so comp return 1 2013/7/3 Fabien Bodard > the good way is : > Comp("FICHA", "FICHA", gb.IgnoreCase) > > http://gambasdoc.org/help/lang/comp?v3 > > > 2013/7/3 PICCORO McKAY Lenz > >> i made >> >> >> Comp("FICHA" = "FICHA", gb.IgnoreCase) >> >> and returns me 1 >> >> and if i compared with a var returns always -1 >> >> >> this its a bug? or maybe theres another way!? >> >> Lenz McKAY Gerardo (PICCORO) >> http://qgqlochekone.blogspot.com >> >> >> ------------------------------------------------------------------------------ >> This SF.net email is sponsored by Windows: >> >> Build for Windows Store. >> >> http://p.sf.net/sfu/windows-dev2dev >> _______________________________________________ >> Gambas-devel mailing list >> Gambas-devel at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-devel >> >> > > > -- > Fabien Bodard > -- Fabien Bodard -------------- next part -------------- An HTML attachment was scrubbed... URL: From tobias at ...692... Wed Jul 3 21:35:39 2013 From: tobias at ...692... (Tobias Boege) Date: Wed, 3 Jul 2013 21:35:39 +0200 Subject: [Gambas-devel] Comp("FICHA" = "FICHA", gb.IgnoreCase) always return 1 !!!!!! In-Reply-To: References: Message-ID: <20130703193539.GB529@...693...> On Wed, 03 Jul 2013, PICCORO McKAY Lenz wrote: > i made > > > Comp("FICHA" = "FICHA", gb.IgnoreCase) > > and returns me 1 > > and if i compared with a var returns always -1 > > > this its a bug? or maybe theres another way!? Firstly, don't send a question to gambas-user and gambas-devel at the same time. Even if their topics are not mutual exclusive, chances are high that the question is not appropriate for one of both lists - which is the case here for gambas-devel. Secondly, do you know Gambas at all? The signature of Comp() is Comp(String1, String2 [, Mode]) "FICHA" = "FICHA" is a boolean expression in Gambas. Since both strings are equal, it returns TRUE which is subsequently converted to a string "T". Your second string argument is gb.IgnoreCase which is converted to the string "1" and "T" is greater than "1" which is exactly what Comp() returns, i.e. 1. The code you probably wanted to write is: Comp("FICHA", "FICHA", gb.IgnoreCase) Regards, Tobi From tobias at ...692... Wed Jul 3 22:05:45 2013 From: tobias at ...692... (Tobias Boege) Date: Wed, 3 Jul 2013 22:05:45 +0200 Subject: [Gambas-devel] Comp("FICHA" = "FICHA", gb.IgnoreCase) always return 1 !!!!!! In-Reply-To: <20130703193539.GB529@...693...> References: <20130703193539.GB529@...693...> Message-ID: <20130703200545.GC529@...693...> On Wed, 03 Jul 2013, Tobias Boege wrote: > On Wed, 03 Jul 2013, PICCORO McKAY Lenz wrote: > > i made > > > > > > Comp("FICHA" = "FICHA", gb.IgnoreCase) > > > > and returns me 1 > > > > and if i compared with a var returns always -1 > > > > > > this its a bug? or maybe theres another way!? > > Firstly, don't send a question to gambas-user and gambas-devel at the same > time. Even if their topics are not mutual exclusive, chances are high that > the question is not appropriate for one of both lists - which is the case > here for gambas-devel. Aww. Sorry, I have mistaken gambas at ...647... with gambas-users at ...724... Anyway, this is the wrong list for this kind of question. From tobias at ...692... Thu Jul 4 11:43:35 2013 From: tobias at ...692... (Tobias Boege) Date: Thu, 4 Jul 2013 11:43:35 +0200 Subject: [Gambas-devel] Example project metadata Message-ID: <20130704094335.GD721@...693...> Hi Benoit, the last couple of days I implemented Fabien's approach[0] to better example projects - halfways. There is a patch to the IDE attached which changes the following: - Project.module: Add Niveau and Tags Public variables. An ".example" file in the project directory makes a project an "example project". If it is missing, it is not an example project. The data is written in WriteProject() and read in ReadProject() - if the .example file exists; - FCreateProject: New "Example project" CheckBox in the "Options" and a new wizard step to enter example Niveau and Tags. The project creator is forced to write a project description here, too. If the CheckBox is ticked, the ".example" file is created here; - FProjectProperties: CheckBox to make/unmake the project an "example" project and a new TabPanel page to manipulate Niveau and Tags. Note that this TabPanel page is only visible when the project is an example project. That new page is not very populated - not to say it looks ugly. The aforementioned CheckBox may also be misplaced but I didn't want to mess around with the usual layout. Any ideas? Based on the value of the CheckBox, the ".example" file is created or delete here. Please tell me what you don't like. What's missing? - Displaying the niveau and tags in FWelcome and FOpenProject; - Sorting examples by niveau; - Filtering by tags; - The gambasdoc.org page with official example guidelines (just a few notes I planned). I couldn't get behind the sources of FWelcome and FOpenProject yet. Maybe a new control to display examples which is shared by the two forms suits better. As for the examples themselves, I have gone through 1/3 of them which I understand (this excludes, e.g. DBus, MySQLExample, ReportExample). Mainly I fixed these things: - Naming conventions; - Comments; - Style and educational things (based on MHO). We could also just leave things as-is and I just commit the overhauled examples and not the changes to the IDE if you think the IDE stuff could not be a good idea at all. Regards, Tobi [0] http://sourceforge.net/mailarchive/message.php?msg_id=30788433 -------------- next part -------------- A non-text attachment was scrubbed... Name: gambas3-rev5709~gambas3-3.4.90.patch Type: text/plain-8bit Size: 13871 bytes Desc: not available URL: From gambas at ...1... Sun Jul 7 14:10:03 2013 From: gambas at ...1... (=?ISO-8859-1?Q?Beno=EEt_Minisini?=) Date: Sun, 07 Jul 2013 14:10:03 +0200 Subject: [Gambas-devel] Example project metadata In-Reply-To: <20130704094335.GD721@...693...> References: <20130704094335.GD721@...693...> Message-ID: <51D95A9B.1080900@...1...> Le 04/07/2013 11:43, Tobias Boege a ?crit : > Hi Benoit, > > the last couple of days I implemented Fabien's approach[0] to better example > projects - halfways. > > There is a patch to the IDE attached which changes the following: > > - Project.module: Add Niveau and Tags Public variables. An ".example" file > in the project directory makes a project an "example project". If it is > missing, it is not an example project. The data is written in > WriteProject() and read in ReadProject() - if the .example file exists; > - FCreateProject: New "Example project" CheckBox in the "Options" and a new > wizard step to enter example Niveau and Tags. The project creator is > forced to write a project description here, too. If the CheckBox is > ticked, the ".example" file is created here; > - FProjectProperties: CheckBox to make/unmake the project an "example" > project and a new TabPanel page to manipulate Niveau and Tags. Note that > this TabPanel page is only visible when the project is an example project. > That new page is not very populated - not to say it looks ugly. The > aforementioned CheckBox may also be misplaced but I didn't want to mess > around with the usual layout. Any ideas? Based on the value of the > CheckBox, the ".example" file is created or delete here. > > Please tell me what you don't like. > > What's missing? > > - Displaying the niveau and tags in FWelcome and FOpenProject; > - Sorting examples by niveau; > - Filtering by tags; > - The gambasdoc.org page with official example guidelines (just a few notes > I planned). > > I couldn't get behind the sources of FWelcome and FOpenProject yet. Maybe a > new control to display examples which is shared by the two forms suits > better. > > As for the examples themselves, I have gone through 1/3 of them which I > understand (this excludes, e.g. DBus, MySQLExample, ReportExample). Mainly I > fixed these things: > > - Naming conventions; > - Comments; > - Style and educational things (based on MHO). > > We could also just leave things as-is and I just commit the overhauled > examples and not the changes to the IDE if you think the IDE stuff could not > be a good idea at all. > > Regards, > Tobi > > [0] http://sourceforge.net/mailarchive/message.php?msg_id=30788433 > I agree with adding Tags to examples, but I find the Level thing purely subjective and useless. It can be replaced by specific tags. I agree with adding Tags to all projects, even if it is used only with example projects. Maybe some tags should be predefined. Don't use an '.example' file, put everything in the '.project' configuration file. I don't think it is useful to enter tags in the project creation dialog, because you usually don't know exactly what they are at that point. Then I will design a new example IDE interface. And you're right, the code should be shared between FOpenProject and FWelcome through a common form. *But* I think the more important keeps working on the examples themselves! :-) Regards, -- Beno?t Minisini From gambas at ...1... Sun Jul 7 14:14:29 2013 From: gambas at ...1... (=?ISO-8859-1?Q?Beno=EEt_Minisini?=) Date: Sun, 07 Jul 2013 14:14:29 +0200 Subject: [Gambas-devel] gb.sdl.sound channel volume bug In-Reply-To: <518F2890.1020200@...590...> References: <5184B4A8.5040100@...590...> <518E9015.3060604@...1...> <518F2890.1020200@...590...> Message-ID: <51D95BA5.6050002@...1...> Le 12/05/2013 07:28, Kevin Fishburne a ?crit : > > Out of curiousity, is OpenAL Soft worth a damn? It sounds pretty cool > from what I've read here: http://kcat.strangesoft.net/openal.html. > Mmm... Maybe, the project seems to be maintained. I don't know OpenAL at all, but I guess a component could be done the same way as gb.opengl (i.e. by replicating the OpenAL interface). -- Beno?t Minisini From tobias at ...692... Sun Jul 7 14:58:49 2013 From: tobias at ...692... (Tobias Boege) Date: Sun, 7 Jul 2013 14:58:49 +0200 Subject: [Gambas-devel] Example project metadata In-Reply-To: <51D95A9B.1080900@...1...> References: <20130704094335.GD721@...693...> <51D95A9B.1080900@...1...> Message-ID: <20130707125849.GB521@...693...> On Sun, 07 Jul 2013, Beno?t Minisini wrote: > Le 04/07/2013 11:43, Tobias Boege a ?crit : > > Hi Benoit, > > > > the last couple of days I implemented Fabien's approach[0] to better example > > projects - halfways. > > > > There is a patch to the IDE attached which changes the following: > > > > - Project.module: Add Niveau and Tags Public variables. An ".example" file > > in the project directory makes a project an "example project". If it is > > missing, it is not an example project. The data is written in > > WriteProject() and read in ReadProject() - if the .example file exists; > > - FCreateProject: New "Example project" CheckBox in the "Options" and a new > > wizard step to enter example Niveau and Tags. The project creator is > > forced to write a project description here, too. If the CheckBox is > > ticked, the ".example" file is created here; > > - FProjectProperties: CheckBox to make/unmake the project an "example" > > project and a new TabPanel page to manipulate Niveau and Tags. Note that > > this TabPanel page is only visible when the project is an example project. > > That new page is not very populated - not to say it looks ugly. The > > aforementioned CheckBox may also be misplaced but I didn't want to mess > > around with the usual layout. Any ideas? Based on the value of the > > CheckBox, the ".example" file is created or delete here. > > > > Please tell me what you don't like. > > > > What's missing? > > > > - Displaying the niveau and tags in FWelcome and FOpenProject; > > - Sorting examples by niveau; > > - Filtering by tags; > > - The gambasdoc.org page with official example guidelines (just a few notes > > I planned). > > > > I couldn't get behind the sources of FWelcome and FOpenProject yet. Maybe a > > new control to display examples which is shared by the two forms suits > > better. > > > > As for the examples themselves, I have gone through 1/3 of them which I > > understand (this excludes, e.g. DBus, MySQLExample, ReportExample). Mainly I > > fixed these things: > > > > - Naming conventions; > > - Comments; > > - Style and educational things (based on MHO). > > > > We could also just leave things as-is and I just commit the overhauled > > examples and not the changes to the IDE if you think the IDE stuff could not > > be a good idea at all. > > > > Regards, > > Tobi > > > > [0] http://sourceforge.net/mailarchive/message.php?msg_id=30788433 > > > > I agree with adding Tags to examples, but I find the Level thing purely > subjective and useless. It can be replaced by specific tags. > Sure. As for the level, I thought that "Beginner" means - demonstrate usage of a class/classes in a component; - comments focus on the interface, i.e. the "how"; whereas "Advanced" is - show what can be done with this class/classes or component/components; - expect knowledge about basic usage; - comments focus on the classes interacting, the "what". E.g. the "MediaPlayer" is advanced and "MapView" on the other hand is not. We could also easily judge over the classification by looking at the number of source files in these cases. Projects which define multiple custom classes are likely advanced. This is roughly what I would have said about these niveaus on the gambasdoc page. > I agree with adding Tags to all projects, even if it is used only with > example projects. > This makes .example superfluous. > Maybe some tags should be predefined. > Now that the "niveau" term is not that subjective anymore to you (I hope), these could be candidates, right? It's not that I want this classification for didactic purposes or easy filtering for newbies but instead to be able to tell example creators that they can create two favours of examples and which criteria they have to meet in each case. This distinction between "Beginner" and "Advanced" was observed by nearly all who answered to my original thread at gambas-user. > Don't use an '.example' file, put everything in the '.project' > configuration file. > > I don't think it is useful to enter tags in the project creation dialog, > because you usually don't know exactly what they are at that point. > > Then I will design a new example IDE interface. And you're right, the > code should be shared between FOpenProject and FWelcome through a common > form. > > *But* I think the more important keeps working on the examples > themselves! :-) > It's a tiresome work :-) I frequently take breaks to do something in gb.data nowadays - which brings me to another question: I saw that trunk is labelled as version 3.4.90. Does this mean we are done with the 3.4 series (which would contradict the latest "News" item)? When will the next stable version come out? I'd like to have a Tree class committed before to have it tested ASAP by the stable users (especially if it's a new minor version). Regards, Tobi From gambas at ...1... Sun Jul 7 15:01:34 2013 From: gambas at ...1... (=?ISO-8859-1?Q?Beno=EEt_Minisini?=) Date: Sun, 07 Jul 2013 15:01:34 +0200 Subject: [Gambas-devel] Example project metadata In-Reply-To: <20130707125849.GB521@...693...> References: <20130704094335.GD721@...693...> <51D95A9B.1080900@...1...> <20130707125849.GB521@...693...> Message-ID: <51D966AE.6050403@...1...> Le 07/07/2013 14:58, Tobias Boege a ?crit : > > It's a tiresome work :-) I frequently take breaks to do something in gb.data > nowadays - which brings me to another question: I saw that trunk is labelled > as version 3.4.90. Does this mean we are done with the 3.4 series (which > would contradict the latest "News" item)? When will the next stable version > come out? I'd like to have a Tree class committed before to have it tested > ASAP by the stable users (especially if it's a new minor version). > > Regards, > Tobi > I will make a 3.4.2 with fixes backported, I just didn't have the time during the last weeks. 'trunk' is always the next 3.(N+1) version, so I mark it as 3.N.90. -- Beno?t Minisini From gambas at ...1... Mon Jul 8 01:38:55 2013 From: gambas at ...1... (=?ISO-8859-1?Q?Beno=EEt_Minisini?=) Date: Mon, 08 Jul 2013 01:38:55 +0200 Subject: [Gambas-devel] sig 11 with gb.compress In-Reply-To: <516A3F98.1040705@...590...> References: <516A3D21.4050403@...590...> <516A3F98.1040705@...590...> Message-ID: <51D9FC0F.2060603@...1...> Le 14/04/2013 07:33, Kevin Fishburne a ?crit : > On 04/14/2013 01:22 AM, Kevin Fishburne wrote: >> This code: >> >> Public Function DecompressString(Data As String) As String >> >> ' Decompress and return passed string. >> >> ' General declarations. >> Dim c As New Uncompress >> >> ' Set compression type. >> c.Type = "bzlib2" >> >> ' Decompress and return data. >> Return c.String(Data) >> >> End >> >> crashes the second time it's run. It may be due to me not doing >> "c.Close" afterward, or it may be that I'm calling the function in the >> Return line (I'm still debugging it). >> > > Well this is interesting. It works fine if I use "zlib" and only crashes > when using "bzlib2". I'm using the latest build of GAMBAS from the daily > PPA and Kubuntu 12.10. > I cannot reproduce your bug, so maybe it is fixed now, or maybe you didn't give me enough details... -- Beno?t Minisini From kevinfishburne at ...590... Mon Jul 8 04:17:58 2013 From: kevinfishburne at ...590... (Kevin Fishburne) Date: Sun, 07 Jul 2013 22:17:58 -0400 Subject: [Gambas-devel] gb.sdl.sound channel volume bug In-Reply-To: <51D95BA5.6050002@...1...> References: <5184B4A8.5040100@...590...> <518E9015.3060604@...1...> <518F2890.1020200@...590...> <51D95BA5.6050002@...1...> Message-ID: <51DA2156.6010408@...590...> On 07/07/2013 08:14 AM, Beno?t Minisini wrote: > Le 12/05/2013 07:28, Kevin Fishburne a ?crit : >> Out of curiousity, is OpenAL Soft worth a damn? It sounds pretty cool >> from what I've read here: http://kcat.strangesoft.net/openal.html. >> > Mmm... Maybe, the project seems to be maintained. I don't know OpenAL at > all, but I guess a component could be done the same way as gb.opengl > (i.e. by replicating the OpenAL interface). > I'm not familiar with it either, but from everything it says it supports, it blows SDL's audio out of the water. I checked the Kubuntu 13.04 repositories and the package is called libopenal1 (version 1.14). Its dependencies are libopenal-data and libc6. There is also a toolkit called alut (OpenAL Utility Toolkit), which likens itself to GLUT in functionality. Obviously since I'm making a game it's in my interest to have such libraries included in GAMBAS, but if you've been paying any attention to the game industry (Gamasutra, Indiegames.com, Valve Corporation, etc.) there has been an explosion of industry support for gaming on Linux this year. There may never be a "year of the Linux desktop", but it looks like the "year of gaming on Linux" is 2013. -- Kevin Fishburne Eight Virtues www: http://sales.eightvirtues.com e-mail: sales at ...590... phone: (770) 853-6271 From gambas at ...1... Thu Jul 11 23:22:49 2013 From: gambas at ...1... (=?ISO-8859-1?Q?Beno=EEt_Minisini?=) Date: Thu, 11 Jul 2013 23:22:49 +0200 Subject: [Gambas-devel] About commit r5728 Message-ID: <51DF2229.6060108@...1...> Hi Alex, Beware with WAIT with values lower than 10 ms. They are done by "buzy waiting" inside the interpreter (the time is not given back to the system), and may not be taken into account at all when using gb.qt4 or gb.gtk. In other words, better use WAIT 0.01 at least. -- Beno?t Minisini From gambas at ...1... Thu Jul 11 23:24:37 2013 From: gambas at ...1... (=?ISO-8859-1?Q?Beno=EEt_Minisini?=) Date: Thu, 11 Jul 2013 23:24:37 +0200 Subject: [Gambas-devel] About commit r5728 Message-ID: <51DF2295.4040704@...1...> Hi Alexie, Beware with WAIT with values lower than 10 ms. They are done by "buzy waiting" inside the interpreter (the time is not given back to the system), and may not be taken into account at all when using gb.qt4 or gb.gtk. In other words, better use WAIT 0.01 at least. -- Beno?t Minisini From tobias at ...692... Fri Jul 12 12:43:04 2013 From: tobias at ...692... (Tobias Boege) Date: Fri, 12 Jul 2013 12:43:04 +0200 Subject: [Gambas-devel] [Gambas-devel-svn] SF.net SVN: gambas:[5727] gambas/trunk/gb.pcre/src/regexp.c In-Reply-To: References: Message-ID: <20130712104304.GB517@...693...> On Thu, 11 Jul 2013, tobiasboe at ...1... wrote: > Revision: 5727 > http://sourceforge.net/p/gambas/code/5727 > Author: tobiasboe > Date: 2013-07-11 14:50:13 +0000 (Thu, 11 Jul 2013) > Log Message: > ----------- > [GB.PCRE] > * BUG: Fix two cases of memory leaks with CREGEXP->code: (re)compilation of > a (new) pattern and object destruction. > * NEW: Introduce the static RegExp.Check() method which works like the > constructor but immediately returns a boolean whether the pattern could > be applied to the subject - handy for one-line string validation. > > Modified Paths: > -------------- > gambas/trunk/gb.pcre/src/regexp.c > Benoit, if this change is fine with you, could you generate the according documentation page, please? Regards, Tobi From gambas at ...1... Fri Jul 12 14:47:23 2013 From: gambas at ...1... (=?ISO-8859-1?Q?Beno=EEt_Minisini?=) Date: Fri, 12 Jul 2013 14:47:23 +0200 Subject: [Gambas-devel] [Gambas-devel-svn] SF.net SVN: gambas:[5727] gambas/trunk/gb.pcre/src/regexp.c In-Reply-To: <20130712104304.GB517@...693...> References: <20130712104304.GB517@...693...> Message-ID: <51DFFADB.2040508@...1...> Le 12/07/2013 12:43, Tobias Boege a ?crit : > On Thu, 11 Jul 2013, tobiasboe at ...1... wrote: >> Revision: 5727 >> http://sourceforge.net/p/gambas/code/5727 >> Author: tobiasboe >> Date: 2013-07-11 14:50:13 +0000 (Thu, 11 Jul 2013) >> Log Message: >> ----------- >> [GB.PCRE] >> * BUG: Fix two cases of memory leaks with CREGEXP->code: (re)compilation of >> a (new) pattern and object destruction. >> * NEW: Introduce the static RegExp.Check() method which works like the >> constructor but immediately returns a boolean whether the pattern could >> be applied to the subject - handy for one-line string validation. >> >> Modified Paths: >> -------------- >> gambas/trunk/gb.pcre/src/regexp.c >> > > Benoit, if this change is fine with you, could you generate the according > documentation page, please? > > Regards, > Tobi > Done. But I have renamed "Check" as "Match". Regards, -- Beno?t Minisini From mckaygerhard at ...176... Sat Jul 13 01:57:34 2013 From: mckaygerhard at ...176... (PICCORO McKAY Lenz) Date: Fri, 12 Jul 2013 19:27:34 -0430 Subject: [Gambas-devel] load and save to DB a binary file (not image either archive strings) Message-ID: i have a binary file in fs, i wish toload and store in DB, (blob of course) and then recue from db and put again in same place.. i see in docu, but all file.save asumes string, so i try using base64 coding a decoding but can work.. NOTE: when i post code in mail list, i got and error Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tobias at ...692... Sat Jul 13 07:47:27 2013 From: tobias at ...692... (Tobias Boege) Date: Sat, 13 Jul 2013 07:47:27 +0200 Subject: [Gambas-devel] load and save to DB a binary file (not image either archive strings) In-Reply-To: References: Message-ID: <20130713054727.GE517@...693...> On Fri, 12 Jul 2013, PICCORO McKAY Lenz wrote: > i have a binary file in fs, i wish toload and store in DB, (blob of course) > and then recue from db and put again in same place.. > > i see in docu, but all file.save asumes string, so i try using base64 > coding a decoding but can work.. > > NOTE: when i post code in mail list, i got and error > Please use the gambas-user mailing list for this kind of question. You are currently posting to gambas-devel which should be used by people *contributing* to Gambas and their kind of questions. You can find information about the Gambas mailing lists here[0]. About your question: You maybe come from C where strings are terminated by the ASCII NUL character? This is not the case in Gambas. Gambas strings can contain as many NULs and arbitrary other characters as you want as they explicitly carry their size with them. It's safe to use strings to store binary data as you can see in the PictureDatabase example shipped with Gambas. Regards, Tobi [0] http://gambasdoc.org/help/doc/forum?en&view From tobias at ...692... Sat Jul 13 10:56:13 2013 From: tobias at ...692... (Tobias Boege) Date: Sat, 13 Jul 2013 10:56:13 +0200 Subject: [Gambas-devel] Undead enumerators? Message-ID: <20130713085613.GH517@...693...> Hi Benoit, I may have reported this earlier but now you can see it yourself and with a bit more output. In gb.data I have to iterate over List.Current and all active enumerators when the list structure changes, i.e. elements are added or removed, in order to update their information. I use GB.BeginEnum(), .NextEnum(), .GetEnum() and .EndEnum() to do this (it's the macros begin_all_references and end_all_references in c_list.c). I have looked up the semantics in the code of the Collection class. However, the API doesn't give only active enumerators but seemingly all that have existed up to this point. Compile gb.data (latest revision) like $ make clean; make "CPPFLAGS+=-DDEBUG_ENUMERATOR" and run the attached project. You'll notice the debugging output from the List class and one undead enumerator appearing. Is this intended behaviour (because this API is not documented, I don't know if it should only report active enumerators or dead ones, too, but it doesn't make much sense to me)? It took me some time to realise that this was the cause of some nasty double-frees in gb.data... I worked around this by explicitly marking dead enumerators as invalid and skipping them later, though, but maybe we could clear the situation up. Regards, Tobi -------------- next part -------------- A non-text attachment was scrubbed... Name: undeadenum-0.0.1.tar.gz Type: application/octet-stream Size: 5046 bytes Desc: not available URL: From marcobra.ubuntu at ...176... Wed Jul 17 12:15:40 2013 From: marcobra.ubuntu at ...176... (marco bra) Date: Wed, 17 Jul 2013 12:15:40 +0200 Subject: [Gambas-devel] Rev. 5732 compile fail... gb.xml.h header file not found... Message-ID: In Ubuntu 12.04 64 bit Rev. 5732 Seems need header $ sudo updatedb $ locate gb.xml.h /home/ubuntu/src/gambas/trunk/gb.xml/src/html/gb.xml.html.component /home/ubuntu/src/gambas/trunk/gb.xml/src/html/gb.xml.html.h /home/ubuntu/src/gambas/trunk/gb.xml/src/html/.svn/prop-base/gb.xml.html.component.svn-base /home/ubuntu/src/gambas/trunk/gb.xml/src/html/.svn/text-base/gb.xml.html.component.svn-base /home/ubuntu/src/gambas/trunk/gb.xml/src/html/.svn/text-base/gb.xml.html.h.svn-base /usr/lib/gambas3/gb.xml.html.component /usr/lib/gambas3/gb.xml.html.la /usr/lib/gambas3/gb.xml.html.so /usr/lib/gambas3/gb.xml.html.so.0 /usr/lib/gambas3/gb.xml.html.so.0.0.0 /usr/share/gambas3/info/gb.xml.html.info /usr/share/gambas3/info/gb.xml.html.list Thank Marco -- Linux Infinite Freedom I'm writing from this place: http://www.openstreetmap.org/?lat=44.39945&lon=8.6798&zoom=15&layers=M -------------- next part -------------- libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: You should add the contents of the following files to `aclocal.m4': libtoolize: `/usr/share/aclocal/libtool.m4' libtoolize: `/usr/share/aclocal/ltoptions.m4' libtoolize: `/usr/share/aclocal/ltversion.m4' libtoolize: `/usr/share/aclocal/ltsugar.m4' libtoolize: `/usr/share/aclocal/lt~obsolete.m4' libtoolize: Remember to add `LT_INIT' to configure.ac. libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. autoreconf: Entering directory `.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal autoreconf: configure.ac: tracing autoreconf: configure.ac: adding subdirectory main to autoreconf autoreconf: Entering directory `main' autoreconf: running: aclocal -I m4 --install autoreconf: running: libtoolize --install --copy autoreconf: running: /usr/bin/autoconf autoreconf: running: /usr/bin/autoheader autoreconf: running: automake --add-missing --copy --no-force autoreconf: Leaving directory `main' autoreconf: configure.ac: adding subdirectory gb.compress.bzlib2 to autoreconf autoreconf: Entering directory `gb.compress.bzlib2' autoreconf: Leaving directory `gb.compress.bzlib2' autoreconf: configure.ac: adding subdirectory gb.compress.zlib to autoreconf autoreconf: Entering directory `gb.compress.zlib' autoreconf: Leaving directory `gb.compress.zlib' autoreconf: configure.ac: adding subdirectory gb.db.mysql to autoreconf autoreconf: Entering directory `gb.db.mysql' autoreconf: Leaving directory `gb.db.mysql' autoreconf: configure.ac: adding subdirectory gb.db.odbc to autoreconf autoreconf: Entering directory `gb.db.odbc' autoreconf: Leaving directory `gb.db.odbc' autoreconf: configure.ac: adding subdirectory gb.db.postgresql to autoreconf autoreconf: Entering directory `gb.db.postgresql' autoreconf: Leaving directory `gb.db.postgresql' autoreconf: configure.ac: adding subdirectory gb.db.sqlite2 to autoreconf autoreconf: Entering directory `gb.db.sqlite2' autoreconf: Leaving directory `gb.db.sqlite2' autoreconf: configure.ac: adding subdirectory gb.db.sqlite3 to autoreconf autoreconf: Entering directory `gb.db.sqlite3' autoreconf: Leaving directory `gb.db.sqlite3' autoreconf: configure.ac: adding subdirectory gb.net to autoreconf autoreconf: Entering directory `gb.net' autoreconf: Leaving directory `gb.net' autoreconf: configure.ac: adding subdirectory gb.net.curl to autoreconf autoreconf: Entering directory `gb.net.curl' autoreconf: Leaving directory `gb.net.curl' autoreconf: configure.ac: adding subdirectory gb.net.smtp to autoreconf autoreconf: Entering directory `gb.net.smtp' autoreconf: Leaving directory `gb.net.smtp' autoreconf: configure.ac: adding subdirectory gb.mime to autoreconf autoreconf: Entering directory `gb.mime' autoreconf: Leaving directory `gb.mime' autoreconf: configure.ac: adding subdirectory gb.pcre to autoreconf autoreconf: Entering directory `gb.pcre' autoreconf: Leaving directory `gb.pcre' autoreconf: configure.ac: adding subdirectory gb.sdl to autoreconf autoreconf: Entering directory `gb.sdl' autoreconf: Leaving directory `gb.sdl' autoreconf: configure.ac: adding subdirectory gb.sdl.sound to autoreconf autoreconf: Entering directory `gb.sdl.sound' autoreconf: Leaving directory `gb.sdl.sound' autoreconf: configure.ac: adding subdirectory gb.libxml to autoreconf autoreconf: Entering directory `gb.libxml' autoreconf: Leaving directory `gb.libxml' autoreconf: configure.ac: adding subdirectory gb.xml to autoreconf autoreconf: Entering directory `gb.xml' autoreconf: Leaving directory `gb.xml' autoreconf: configure.ac: adding subdirectory gb.v4l to autoreconf autoreconf: Entering directory `gb.v4l' autoreconf: Leaving directory `gb.v4l' autoreconf: configure.ac: adding subdirectory gb.crypt to autoreconf autoreconf: Entering directory `gb.crypt' autoreconf: Leaving directory `gb.crypt' autoreconf: configure.ac: adding subdirectory gb.qt4 to autoreconf autoreconf: Entering directory `gb.qt4' autoreconf: Leaving directory `gb.qt4' autoreconf: configure.ac: adding subdirectory gb.gtk to autoreconf autoreconf: Entering directory `gb.gtk' autoreconf: Leaving directory `gb.gtk' autoreconf: configure.ac: adding subdirectory gb.opengl to autoreconf autoreconf: Entering directory `gb.opengl' autoreconf: Leaving directory `gb.opengl' autoreconf: configure.ac: adding subdirectory gb.desktop to autoreconf autoreconf: Entering directory `gb.desktop' autoreconf: Leaving directory `gb.desktop' autoreconf: configure.ac: adding subdirectory gb.pdf to autoreconf autoreconf: Entering directory `gb.pdf' autoreconf: Leaving directory `gb.pdf' autoreconf: configure.ac: adding subdirectory gb.cairo to autoreconf autoreconf: Entering directory `gb.cairo' autoreconf: Leaving directory `gb.cairo' autoreconf: configure.ac: adding subdirectory gb.image.io to autoreconf autoreconf: Entering directory `gb.image.io' autoreconf: Leaving directory `gb.image.io' autoreconf: configure.ac: adding subdirectory gb.image.imlib to autoreconf autoreconf: Entering directory `gb.image.imlib' autoreconf: Leaving directory `gb.image.imlib' autoreconf: configure.ac: adding subdirectory gb.dbus to autoreconf autoreconf: Entering directory `gb.dbus' autoreconf: Leaving directory `gb.dbus' autoreconf: configure.ac: adding subdirectory gb.gsl to autoreconf autoreconf: Entering directory `gb.gsl' autoreconf: Leaving directory `gb.gsl' autoreconf: configure.ac: adding subdirectory gb.ncurses to autoreconf autoreconf: Entering directory `gb.ncurses' autoreconf: Leaving directory `gb.ncurses' autoreconf: configure.ac: adding subdirectory gb.media to autoreconf autoreconf: Entering directory `gb.media' autoreconf: Leaving directory `gb.media' autoreconf: configure.ac: adding subdirectory gb.jit to autoreconf autoreconf: Entering directory `gb.jit' autoreconf: Leaving directory `gb.jit' autoreconf: configure.ac: adding subdirectory gb.httpd to autoreconf autoreconf: Entering directory `gb.httpd' autoreconf: Leaving directory `gb.httpd' autoreconf: configure.ac: adding subdirectory gb.opengl.sge to autoreconf autoreconf: Entering directory `gb.opengl.sge' autoreconf: Leaving directory `gb.opengl.sge' autoreconf: configure.ac: adding subdirectory gb.openssl to autoreconf autoreconf: Entering directory `gb.openssl' autoreconf: Leaving directory `gb.openssl' autoreconf: configure.ac: adding subdirectory comp to autoreconf autoreconf: Entering directory `comp' autoreconf: configure.ac: not using Libtool autoreconf: Leaving directory `comp' autoreconf: configure.ac: adding subdirectory app to autoreconf autoreconf: Entering directory `app' autoreconf: Leaving directory `app' autoreconf: configure.ac: adding subdirectory examples to autoreconf autoreconf: Entering directory `examples' autoreconf: Leaving directory `examples' autoreconf: Leaving directory `.' configure: creating cache config.cache checking whether to enable maintainer-specific portions of Makefiles... no checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu configure: updating cache config.cache configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged === configuring in main (/home/ubuntu/src/gambas/trunk/main) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking dependency style of gcc... gcc3 checking whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 checking how to run the C preprocessor... gcc -E checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking for gcc... (cached) gcc 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 whether make sets $(MAKE)... (cached) yes checking for setenv... yes checking for unsetenv... yes checking for getdomainname... yes checking for getpt... yes checking for cfmakeraw... yes checking for main in -lgcc_s... yes checking for main in -lstdc++... yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... -fvisibility=hidden checking for exp10... yes checking for exp2... yes checking for log2... yes checking how to print strings... printf checking for a sed that does not truncate output... /bin/sed checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for fgrep... /bin/grep -F checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... dlltool checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 for shl_load... no checking for shl_load in -ldld... no checking for dlopen... no checking for dlopen in -ldl... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no 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... no checking how to run the C++ preprocessor... g++ -E checking for ld used by g++... /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether gcc and cc understand -c and -o together... yes checking for libintl headers... /usr/include/ checking for libintl libraries... no configure: WARNING: Unable to find file: libintl.so configure: WARNING: This library may be located inside the system C library checking for libiconv headers... /usr/include/ checking for libiconv libraries... no configure: WARNING: Unable to find file: libiconv.so configure: WARNING: This library may be located inside the system C library checking for libffi component with pkg-config... OK checking for xdg-mime... xdg-mime configure: updating cache ../config.cache 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/geom/Makefile config.status: creating lib/draw/Makefile config.status: creating lib/gui/Makefile config.status: creating lib/gui.opengl/Makefile config.status: creating lib/image/Makefile config.status: creating lib/image.effect/Makefile config.status: creating lib/signal/Makefile config.status: creating lib/complex/Makefile config.status: creating lib/data/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands || || Unable to find file: libintl.so || This library may be located inside the system C library, so you can ignore that warning... || Unable to find file: libiconv.so || This library may be located inside the system C library, so you can ignore that warning... || === configuring in gb.compress.bzlib2 (/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.compress.bzlib2 headers... /usr/include/ checking for gb.compress.bzlib2 libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.compress.zlib (/home/ubuntu/src/gambas/trunk/gb.compress.zlib) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.compress.zlib headers... /usr/include/ checking for gb.compress.zlib libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.db.mysql (/home/ubuntu/src/gambas/trunk/gb.db.mysql) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.db.mysql headers... /usr/include/mysql/ checking for gb.db.mysql libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.db.odbc (/home/ubuntu/src/gambas/trunk/gb.db.odbc) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.db.odbc headers... /usr/include/ checking for gb.db.odbc libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.db.postgresql (/home/ubuntu/src/gambas/trunk/gb.db.postgresql) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.db.postgresql headers... /usr/include/postgresql/ /usr/include/postgresql/catalog/ checking for gb.db.postgresql libraries... /usr/lib/ configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.db.sqlite2 (/home/ubuntu/src/gambas/trunk/gb.db.sqlite2) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.db.sqlite2 headers... /usr/include/ checking for gb.db.sqlite2 libraries... /usr/lib/ configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.db.sqlite3 (/home/ubuntu/src/gambas/trunk/gb.db.sqlite3) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.db.sqlite3 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 config.status: executing libtool commands === configuring in gb.net (/home/ubuntu/src/gambas/trunk/gb.net) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.net headers... checking for gb.net libraries... configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.net.curl (/home/ubuntu/src/gambas/trunk/gb.net.curl) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.net.curl 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 config.status: executing libtool commands === configuring in gb.net.smtp (/home/ubuntu/src/gambas/trunk/gb.net.smtp) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.net.smtp 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 config.status: executing libtool commands === configuring in gb.mime (/home/ubuntu/src/gambas/trunk/gb.mime) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.mime component with pkg-config... no configure: WARNING: Unable to met pkg-config requirement: gmime-2.6 checking for gb.mime component with pkg-config... no configure: WARNING: Unable to met pkg-config requirement: gmime-2.4 configure: WARNING: gb.mime is disabled 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 config.status: executing libtool commands || || Unable to met pkg-config requirement: gmime-2.6 || Unable to met pkg-config requirement: gmime-2.4 || gb.mime is disabled || === configuring in gb.pcre (/home/ubuntu/src/gambas/trunk/gb.pcre) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.pcre headers... /usr/include/ checking for gb.pcre libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.sdl (/home/ubuntu/src/gambas/trunk/gb.sdl) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for X... libraries , headers checking for gethostbyname... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for IceConnectionNumber in -lICE... yes checking for gb.sdl component with pkg-config... no configure: WARNING: Unable to met pkg-config requirement: > 1.2.8 configure: WARNING: Unable to met pkg-config requirement: SDL_ttf checking for gb.sdl headers... no configure: WARNING: Unable to find file: SDL_ttf.h checking for gb.sdl libraries... no configure: WARNING: Unable to find file: libSDL_ttf.so configure: WARNING: gb.sdl is disabled configure: updating cache ../config.cache 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 config.status: executing libtool commands || || Unable to met pkg-config requirement: > 1.2.8 || Unable to met pkg-config requirement: SDL_ttf || Unable to find file: SDL_ttf.h || Unable to find file: libSDL_ttf.so || gb.sdl is disabled || === configuring in gb.sdl.sound (/home/ubuntu/src/gambas/trunk/gb.sdl.sound) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for sdl-config... /usr/bin/sdl-config checking for SDL - version >= 1.2.8... yes checking for gb.sdl.sound headers... /usr/include/SDL/ checking for gb.sdl.sound libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.libxml (/home/ubuntu/src/gambas/trunk/gb.libxml) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.libxml 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 config.status: executing libtool commands === configuring in gb.xml (/home/ubuntu/src/gambas/trunk/gb.xml) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.xml headers... checking for gb.xml libraries... checking for gb.xml.html headers... checking for gb.xml.html libraries... checking for gb.xml.xslt component with pkg-config... no configure: WARNING: Unable to met pkg-config requirement: libxslt configure: WARNING: gb.xml.xslt is disabled configure: updating cache ../config.cache configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/html/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 config.status: executing libtool commands || || Unable to met pkg-config requirement: libxslt || gb.xml.xslt is disabled || === configuring in gb.v4l (/home/ubuntu/src/gambas/trunk/gb.v4l) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.v4l component with pkg-config... no configure: WARNING: Unable to met pkg-config requirement: libv4lconvert configure: WARNING: gb.v4l is disabled configure: WARNING: gb.v4l is disabled 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 config.status: executing libtool commands || || Unable to met pkg-config requirement: libv4lconvert || gb.v4l is disabled || gb.v4l is disabled || === configuring in gb.crypt (/home/ubuntu/src/gambas/trunk/gb.crypt) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.crypt headers... /usr/include/ checking for gb.crypt libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.qt4 (/home/ubuntu/src/gambas/trunk/gb.qt4) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 gb.qt4 component with pkg-config... no configure: WARNING: Unable to met pkg-config requirement: QtCore >= 4.5.0 configure: WARNING: Unable to met pkg-config requirement: QtGui configure: WARNING: Unable to met pkg-config requirement: Qt3Support configure: WARNING: Unable to met pkg-config requirement: QtSvg configure: WARNING: gb.qt4 is disabled no configure: WARNING: Unable to met pkg-config requirement: QtCore >= 4.5.0 configure: WARNING: Unable to met pkg-config requirement: QtGui configure: WARNING: Unable to met pkg-config requirement: Qt3Support configure: WARNING: gb.qt4.ext is disabled no configure: WARNING: Unable to met pkg-config requirement: QtCore >= 4.5.0 configure: WARNING: Unable to met pkg-config requirement: QtGui configure: WARNING: Unable to met pkg-config requirement: QtNetwork configure: WARNING: Unable to met pkg-config requirement: QtDBus configure: WARNING: Unable to met pkg-config requirement: QtXml configure: WARNING: Unable to met pkg-config requirement: QtWebKit >= 4.5.0 configure: WARNING: gb.qt4.webkit is disabled no configure: WARNING: Unable to met pkg-config requirement: QtCore >= 4.5.0 configure: WARNING: Unable to met pkg-config requirement: QtGui configure: WARNING: Unable to met pkg-config requirement: QtOpenGL configure: WARNING: gb.qt4.opengl is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/ext/Makefile config.status: creating src/webkit/Makefile config.status: creating src/opengl/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands || || Unable to met pkg-config requirement: QtCore >= 4.5.0 || Unable to met pkg-config requirement: QtGui || Unable to met pkg-config requirement: Qt3Support || Unable to met pkg-config requirement: QtSvg || gb.qt4 is disabled || Unable to met pkg-config requirement: QtCore >= 4.5.0 || Unable to met pkg-config requirement: QtGui || Unable to met pkg-config requirement: Qt3Support || gb.qt4.ext is disabled || Unable to met pkg-config requirement: QtCore >= 4.5.0 || Unable to met pkg-config requirement: QtGui || Unable to met pkg-config requirement: QtNetwork || Unable to met pkg-config requirement: QtDBus || Unable to met pkg-config requirement: QtXml || Unable to met pkg-config requirement: QtWebKit >= 4.5.0 || gb.qt4.webkit is disabled || Unable to met pkg-config requirement: QtCore >= 4.5.0 || Unable to met pkg-config requirement: QtGui || Unable to met pkg-config requirement: QtOpenGL || gb.qt4.opengl is disabled || === configuring in gb.gtk (/home/ubuntu/src/gambas/trunk/gb.gtk) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 gb.gtk component with pkg-config... OK checking for gb.gtk.opengl component with pkg-config... no configure: WARNING: Unable to met pkg-config requirement: gtkglext-1.0 configure: WARNING: gb.gtk.opengl is disabled configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/opengl/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands || || Unable to met pkg-config requirement: gtkglext-1.0 || gb.gtk.opengl is disabled || === configuring in gb.opengl (/home/ubuntu/src/gambas/trunk/gb.opengl) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.opengl component with pkg-config... OK checking for gb.opengl.glsl component with pkg-config... OK checking for gb.opengl.glu component with pkg-config... OK configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/glu/Makefile config.status: creating src/glsl/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.desktop (/home/ubuntu/src/gambas/trunk/gb.desktop) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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... yes checking for gb.desktop headers... checking for gb.desktop libraries... checking for gb.desktop.gnome component with pkg-config... OK configure: updating cache ../config.cache configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/gnome/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands === configuring in gb.pdf (/home/ubuntu/src/gambas/trunk/gb.pdf) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.pdf 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 config.status: executing libtool commands === configuring in gb.cairo (/home/ubuntu/src/gambas/trunk/gb.cairo) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.cairo 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 config.status: executing libtool commands === configuring in gb.image.io (/home/ubuntu/src/gambas/trunk/gb.image.io) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.image.io 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 config.status: executing libtool commands === configuring in gb.image.imlib (/home/ubuntu/src/gambas/trunk/gb.image.imlib) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.image.imlib 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 config.status: executing libtool commands === configuring in gb.dbus (/home/ubuntu/src/gambas/trunk/gb.dbus) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.dbus 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 config.status: executing libtool commands === configuring in gb.gsl (/home/ubuntu/src/gambas/trunk/gb.gsl) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.gsl 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 config.status: executing libtool commands === configuring in gb.ncurses (/home/ubuntu/src/gambas/trunk/gb.ncurses) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.ncurses headers... /usr/include/ checking for gb.ncurses libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.media (/home/ubuntu/src/gambas/trunk/gb.media) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.media component with pkg-config... no configure: WARNING: Unable to met pkg-config requirement: gstreamer-1.0 configure: WARNING: Unable to met pkg-config requirement: gstreamer-video-1.0 configure: WARNING: gb.media is disabled 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 config.status: executing libtool commands || || Unable to met pkg-config requirement: gstreamer-1.0 || Unable to met pkg-config requirement: gstreamer-video-1.0 || gb.media is disabled || === configuring in gb.jit (/home/ubuntu/src/gambas/trunk/gb.jit) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for llvm-config... no configure: WARNING: gb.jit is disabled configure: updating cache ../config.cache 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 config.status: executing libtool commands || || gb.jit is disabled || === configuring in gb.httpd (/home/ubuntu/src/gambas/trunk/gb.httpd) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking gcc version... 4 checking how to link static binaries... -static checking for __progname... yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking grp.h usability... yes checking grp.h presence... yes checking for grp.h... yes checking for memory.h... (cached) yes checking paths.h usability... yes checking paths.h presence... yes checking for paths.h... yes checking poll.h usability... yes checking poll.h presence... yes checking for poll.h... yes checking sys/poll.h usability... yes checking sys/poll.h presence... yes checking for sys/poll.h... yes checking sys/devpoll.h usability... no checking sys/devpoll.h presence... no checking for sys/devpoll.h... no checking sys/event.h usability... no checking sys/event.h presence... no checking for sys/event.h... no checking osreldate.h usability... no checking osreldate.h presence... no checking for osreldate.h... no checking whether time.h and sys/time.h may both be included... yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for gethostbyname... (cached) yes checking for socket... yes checking for main in -linet6... no checking for crypt... no checking for crypt in -lcrypt... yes checking for hstrerror... yes checking for strerror... yes checking for waitpid... yes checking for vsnprintf... yes checking for daemon... yes checking for setsid... yes checking for setlogin... no checking for getaddrinfo... yes checking for getnameinfo... yes checking for gai_strerror... yes checking for kqueue... no checking for atoll... yes checking for stdlib.h... (cached) yes checking for unistd.h... (cached) yes checking for sys/param.h... yes checking for getpagesize... yes checking for working mmap... yes checking for select... yes checking for poll... yes checking if struct tm has tm_gmtoff member... yes checking if int64_t exists... yes checking if socklen_t exists... yes checking whether make sets $(MAKE)... (cached) yes checking for gb.httpd headers... checking for gb.httpd libraries... configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.opengl.sge (/home/ubuntu/src/gambas/trunk/gb.opengl.sge) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 gb.opengl.sge headers... /usr/include/GL/ checking for gb.opengl.sge libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache 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 config.status: executing libtool commands === configuring in gb.openssl (/home/ubuntu/src/gambas/trunk/gb.openssl) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking for style of include used by make... GNU checking for gcc... (cached) gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no 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 whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes checking target system... LINUX checking target architecture... X86_64 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 gcc... (cached) gcc 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 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 cfmakeraw... (cached) yes checking for main in -lgcc_s... (cached) yes checking for main in -lstdc++... (cached) yes 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 for ccache... no checking CFLAGS for gcc -fvisibility=hidden... (cached) -fvisibility=hidden checking how to print strings... printf checking for a sed that does not truncate output... (cached) /bin/sed checking for grep that handles long lines and -e... (cached) /bin/grep checking for egrep... (cached) /bin/grep -E checking for fgrep... (cached) /bin/grep -F checking for ld used by gcc... (cached) /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes checking for BSD- or MS-compatible name lister (nm)... (cached) /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... (cached) BSD nm checking the maximum length of command line arguments... (cached) 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... (cached) func_convert_file_noop checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... (cached) func_convert_file_noop checking for /usr/bin/ld option to reload object files... (cached) -r checking for objdump... (cached) objdump checking how to recognize dependent libraries... (cached) pass_all checking for dlltool... (cached) dlltool checking how to associate runtime and link libraries... (cached) printf %s\n checking for ar... (cached) ar checking for archiver @FILE support... (cached) @ checking for strip... (cached) strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... (cached) ok checking for sysroot... no checking for mt... (cached) mt checking if mt is a manifest tool... (cached) no 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 objdir... (cached) .libs checking if gcc supports -fno-rtti -fno-exceptions... (cached) no checking for gcc option to produce PIC... (cached) -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... (cached) yes checking if gcc static flag -static works... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... (cached) no checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate 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 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... no checking how to run the C++ preprocessor... (cached) g++ -E checking for ld used by g++... (cached) /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... (cached) -fPIC -DPIC checking if g++ PIC flag -fPIC -DPIC works... (cached) yes checking if g++ static flag -static works... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... (cached) GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for gb.openssl 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 config.status: executing libtool commands === configuring in comp (/home/ubuntu/src/gambas/trunk/comp) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged === configuring in app (/home/ubuntu/src/gambas/trunk/app) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes 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/ubuntu/src/gambas/trunk/examples) configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' --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) x86_64-unknown-linux-gnu checking host system type... (cached) x86_64-unknown-linux-gnu checking whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... (cached) yes checking whether ln -s works... yes configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged || || THESE COMPONENTS ARE DISABLED: || - gb.gtk.opengl || - gb.jit || - gb.media || - gb.mime || - gb.qt4 || - gb.qt4.ext || - gb.qt4.opengl || - gb.qt4.webkit || - gb.sdl || - gb.v4l || - gb.xml.xslt || make all-recursive make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk" Making all in main make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main" Making all in gbc make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/gbc" CC gbc3-gbc.o CCLD gbc3 CC gba3-gba.o CCLD gba3 CC gbi3-gbi.o CCLD gbi3 make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/gbc" Making all in gbx make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/gbx" CC gbx3-gbx.o CCLD gbx3 make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/gbx" Making all in lib make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib" Making all in . make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib" make[5]: Nessuna operazione da eseguire per "all-am". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib" Making all in debug make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/debug" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/debug" Making all in eval make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/eval" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/eval" Making all in db make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/db" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/db" Making all in compress make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/compress" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/compress" Making all in vb make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/vb" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/vb" Making all in option make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/option" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/option" Making all in geom make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/geom" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/geom" Making all in draw make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/draw" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/draw" Making all in image make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/image" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/image" Making all in gui make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/gui" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/gui" Making all in gui.opengl make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/gui.opengl" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/gui.opengl" Making all in image.effect make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/image.effect" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/image.effect" Making all in signal make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/signal" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/signal" Making all in complex make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/complex" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/complex" Making all in data make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/data" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/data" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib" Making all in share make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/share" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/share" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main" Making all in gb.compress.bzlib2 make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" Making all in gb.compress.zlib make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" Making all in gb.db.mysql make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" Making all in gb.db.odbc make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" Making all in gb.db.postgresql make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" Making all in gb.db.sqlite2 make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" Making all in gb.db.sqlite3 make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" Making all in gb.net make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net" Making all in gb.net.curl make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.curl/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.curl/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" Making all in gb.net.smtp make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" Making all in gb.mime make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.mime" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.mime" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.mime" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.mime" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.mime" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.mime" Making all in gb.pcre make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.pcre" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.pcre" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.pcre/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.pcre/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.pcre" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.pcre" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.pcre" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.pcre" Making all in gb.sdl make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl" Making all in gb.sdl.sound make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" Making all in gb.libxml make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.libxml" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.libxml" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.libxml/src" make[4]: Nessuna operazione da eseguire per "all". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.libxml/src" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.libxml" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.libxml" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.libxml" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.libxml" Making all in gb.xml make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.xml" make all-recursive make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.xml" Making all in src make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.xml/src" Making all in . make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.xml/src" CXX gb_xml_la-main.lo In file included from main.cpp:29:0: node.h:25:20: fatal error: gb.xml.h: No such file or directory compilation terminated. make[5]: *** [gb_xml_la-main.lo] Errore 1 make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.xml/src" make[4]: *** [all-recursive] Errore 1 make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.xml/src" make[3]: *** [all-recursive] Errore 1 make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.xml" make[2]: *** [all] Errore 2 make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.xml" make[1]: *** [all-recursive] Errore 1 make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk" make: *** [all] Errore 2 -------------- next part -------------- Making install in main make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main" make install-recursive make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main" Making install in gbc make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/gbc" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/gbc" test -z "/usr/bin" || /bin/mkdir -p "/usr/bin" /bin/bash ../libtool --mode=install /usr/bin/install -c gbc3 gba3 gbi3 '/usr/bin' libtool: install: /usr/bin/install -c gbc3 /usr/bin/gbc3 libtool: install: /usr/bin/install -c gba3 /usr/bin/gba3 libtool: install: /usr/bin/install -c gbi3 /usr/bin/gbi3 make[4]: Nessuna operazione da eseguire per "install-data-am". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/gbc" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/gbc" Making install in gbx make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/gbx" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/gbx" test -z "/usr/bin" || /bin/mkdir -p "/usr/bin" /bin/bash ../libtool --mode=install /usr/bin/install -c gbx3 '/usr/bin' libtool: install: /usr/bin/install -c gbx3 /usr/bin/gbx3 test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.so.0.0.0 /usr/lib/gambas3/gb.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.so.0.0.0 gb.so.0 || { rm -f gb.so.0 && ln -s gb.so.0.0.0 gb.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.so.0.0.0 gb.so || { rm -f gb.so && ln -s gb.so.0.0.0 gb.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.lai /usr/lib/gambas3/gb.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/gbx" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/gbx" Making install in lib make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib" Making install in . make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.component '/usr/lib/gambas3' make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib" Creating the information files for gb component... gb make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib" Making install in debug make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/debug" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/debug" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.debug.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.debug.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.debug.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.debug.so.0.0.0 /usr/lib/gambas3/gb.debug.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.debug.so.0.0.0 gb.debug.so.0 || { rm -f gb.debug.so.0 && ln -s gb.debug.so.0.0.0 gb.debug.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.debug.so.0.0.0 gb.debug.so || { rm -f gb.debug.so && ln -s gb.debug.so.0.0.0 gb.debug.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.debug.lai /usr/lib/gambas3/gb.debug.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/debug" Installing the gb.debug control icons if needed... Creating the information files for gb.debug component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/debug" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/debug" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/debug" Making install in eval make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/eval" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/eval" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.eval.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.eval.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.eval.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.eval.so.0.0.0 /usr/lib/gambas3/gb.eval.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.eval.so.0.0.0 gb.eval.so.0 || { rm -f gb.eval.so.0 && ln -s gb.eval.so.0.0.0 gb.eval.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.eval.so.0.0.0 gb.eval.so || { rm -f gb.eval.so && ln -s gb.eval.so.0.0.0 gb.eval.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.eval.lai /usr/lib/gambas3/gb.eval.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/eval" Installing the gb.eval control icons if needed... Creating the information files for gb.eval component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/eval" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/eval" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/eval" Making install in db make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/db" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/db" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.db.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.db.so.0.0.0 /usr/lib/gambas3/gb.db.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.so.0.0.0 gb.db.so.0 || { rm -f gb.db.so.0 && ln -s gb.db.so.0.0.0 gb.db.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.so.0.0.0 gb.db.so || { rm -f gb.db.so && ln -s gb.db.so.0.0.0 gb.db.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.db.lai /usr/lib/gambas3/gb.db.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/db" Compiling the gb.db project... gb.db OK Installing the gb.db control icons if needed... Creating the information files for gb.db component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/db" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/db" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/db" Making install in compress make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/compress" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/compress" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.compress.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.compress.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.compress.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.compress.so.0.0.0 /usr/lib/gambas3/gb.compress.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.compress.so.0.0.0 gb.compress.so.0 || { rm -f gb.compress.so.0 && ln -s gb.compress.so.0.0.0 gb.compress.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.compress.so.0.0.0 gb.compress.so || { rm -f gb.compress.so && ln -s gb.compress.so.0.0.0 gb.compress.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.compress.lai /usr/lib/gambas3/gb.compress.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/compress" Installing the gb.compress control icons if needed... Creating the information files for gb.compress component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/compress" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/compress" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/compress" Making install in vb make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/vb" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/vb" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.vb.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.vb.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.vb.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.vb.so.0.0.0 /usr/lib/gambas3/gb.vb.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.vb.so.0.0.0 gb.vb.so.0 || { rm -f gb.vb.so.0 && ln -s gb.vb.so.0.0.0 gb.vb.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.vb.so.0.0.0 gb.vb.so || { rm -f gb.vb.so && ln -s gb.vb.so.0.0.0 gb.vb.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.vb.lai /usr/lib/gambas3/gb.vb.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/vb" Installing the gb.vb control icons if needed... Creating the information files for gb.vb component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/vb" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/vb" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/vb" Making install in option make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/option" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/option" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.option.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.option.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.option.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.option.so.0.0.0 /usr/lib/gambas3/gb.option.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.option.so.0.0.0 gb.option.so.0 || { rm -f gb.option.so.0 && ln -s gb.option.so.0.0.0 gb.option.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.option.so.0.0.0 gb.option.so || { rm -f gb.option.so && ln -s gb.option.so.0.0.0 gb.option.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.option.lai /usr/lib/gambas3/gb.option.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/option" Installing the gb.option control icons if needed... Creating the information files for gb.option component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/option" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/option" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/option" Making install in geom make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/geom" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/geom" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.geom.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.geom.so.0.0.0 /usr/lib/gambas3/gb.geom.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.geom.so.0.0.0 gb.geom.so.0 || { rm -f gb.geom.so.0 && ln -s gb.geom.so.0.0.0 gb.geom.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.geom.so.0.0.0 gb.geom.so || { rm -f gb.geom.so && ln -s gb.geom.so.0.0.0 gb.geom.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.geom.lai /usr/lib/gambas3/gb.geom.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/geom" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/geom" Making install in draw make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/draw" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/draw" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.draw.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.draw.so.0.0.0 /usr/lib/gambas3/gb.draw.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.draw.so.0.0.0 gb.draw.so.0 || { rm -f gb.draw.so.0 && ln -s gb.draw.so.0.0.0 gb.draw.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.draw.so.0.0.0 gb.draw.so || { rm -f gb.draw.so && ln -s gb.draw.so.0.0.0 gb.draw.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.draw.lai /usr/lib/gambas3/gb.draw.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/draw" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/draw" Making install in image make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/image" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/image" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.image.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.image.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.image.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.image.so.0.0.0 /usr/lib/gambas3/gb.image.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.image.so.0.0.0 gb.image.so.0 || { rm -f gb.image.so.0 && ln -s gb.image.so.0.0.0 gb.image.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.image.so.0.0.0 gb.image.so || { rm -f gb.image.so && ln -s gb.image.so.0.0.0 gb.image.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.image.lai /usr/lib/gambas3/gb.image.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/image" Installing the gb.image control icons if needed... Creating the information files for gb.image component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/image" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/image" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/image" Making install in gui make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/gui" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/gui" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.gui.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.gui.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.gui.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.gui.so.0.0.0 /usr/lib/gambas3/gb.gui.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.gui.so.0.0.0 gb.gui.so.0 || { rm -f gb.gui.so.0 && ln -s gb.gui.so.0.0.0 gb.gui.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.gui.so.0.0.0 gb.gui.so || { rm -f gb.gui.so && ln -s gb.gui.so.0.0.0 gb.gui.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.gui.lai /usr/lib/gambas3/gb.gui.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/gui" Installing the gb.gui control icons if needed... Creating the information files for gb.gui component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/gui" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/gui" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/gui" Making install in gui.opengl make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/gui.opengl" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/gui.opengl" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.gui.opengl.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.gui.opengl.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.gui.opengl.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.gui.opengl.so.0.0.0 /usr/lib/gambas3/gb.gui.opengl.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.gui.opengl.so.0.0.0 gb.gui.opengl.so.0 || { rm -f gb.gui.opengl.so.0 && ln -s gb.gui.opengl.so.0.0.0 gb.gui.opengl.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.gui.opengl.so.0.0.0 gb.gui.opengl.so || { rm -f gb.gui.opengl.so && ln -s gb.gui.opengl.so.0.0.0 gb.gui.opengl.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.gui.opengl.lai /usr/lib/gambas3/gb.gui.opengl.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/gui.opengl" Installing the gb.gui.opengl control icons if needed... Creating the information files for gb.gui.opengl component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/gui.opengl" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/gui.opengl" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/gui.opengl" Making install in image.effect make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/image.effect" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/image.effect" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.image.effect.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.image.effect.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.image.effect.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.image.effect.so.0.0.0 /usr/lib/gambas3/gb.image.effect.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.image.effect.so.0.0.0 gb.image.effect.so.0 || { rm -f gb.image.effect.so.0 && ln -s gb.image.effect.so.0.0.0 gb.image.effect.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.image.effect.so.0.0.0 gb.image.effect.so || { rm -f gb.image.effect.so && ln -s gb.image.effect.so.0.0.0 gb.image.effect.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.image.effect.lai /usr/lib/gambas3/gb.image.effect.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/image.effect" Installing the gb.image.effect control icons if needed... Creating the information files for gb.image.effect component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/image.effect" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/image.effect" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/image.effect" Making install in signal make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/signal" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/signal" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.signal.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.signal.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.signal.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.signal.so.0.0.0 /usr/lib/gambas3/gb.signal.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.signal.so.0.0.0 gb.signal.so.0 || { rm -f gb.signal.so.0 && ln -s gb.signal.so.0.0.0 gb.signal.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.signal.so.0.0.0 gb.signal.so || { rm -f gb.signal.so && ln -s gb.signal.so.0.0.0 gb.signal.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.signal.lai /usr/lib/gambas3/gb.signal.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/signal" Installing the gb.signal control icons if needed... Creating the information files for gb.signal component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/signal" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/signal" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/signal" Making install in complex make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/complex" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/complex" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.complex.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.complex.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.complex.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.complex.so.0.0.0 /usr/lib/gambas3/gb.complex.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.complex.so.0.0.0 gb.complex.so.0 || { rm -f gb.complex.so.0 && ln -s gb.complex.so.0.0.0 gb.complex.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.complex.so.0.0.0 gb.complex.so || { rm -f gb.complex.so && ln -s gb.complex.so.0.0.0 gb.complex.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.complex.lai /usr/lib/gambas3/gb.complex.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/complex" Installing the gb.complex control icons if needed... Creating the information files for gb.complex component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/complex" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/complex" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/complex" Making install in data make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/data" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/data" make[5]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.data.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.data.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.data.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.data.so.0.0.0 /usr/lib/gambas3/gb.data.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.data.so.0.0.0 gb.data.so.0 || { rm -f gb.data.so.0 && ln -s gb.data.so.0.0.0 gb.data.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.data.so.0.0.0 gb.data.so || { rm -f gb.data.so && ln -s gb.data.so.0.0.0 gb.data.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.data.lai /usr/lib/gambas3/gb.data.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[6]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/data" Installing the gb.data control icons if needed... Creating the information files for gb.data component... make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/data" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/data" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/data" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib" Making install in share make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/share" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/share" make[4]: Nessuna operazione da eseguire per "install-exec-am". make[4]: Nessuna operazione da eseguire per "install-data-am". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/share" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/share" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main" make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main" Making runtime symbolic link Registering Gambas executable mimetype make[4]: Nessuna operazione da eseguire per "install-data-am". make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main" Making install in gb.compress.bzlib2 make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.compress.bzlib2.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.compress.bzlib2.so.0.0.0 /usr/lib/gambas3/gb.compress.bzlib2.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.compress.bzlib2.so.0.0.0 gb.compress.bzlib2.so.0 || { rm -f gb.compress.bzlib2.so.0 && ln -s gb.compress.bzlib2.so.0.0.0 gb.compress.bzlib2.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.compress.bzlib2.so.0.0.0 gb.compress.bzlib2.so || { rm -f gb.compress.bzlib2.so && ln -s gb.compress.bzlib2.so.0.0.0 gb.compress.bzlib2.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.compress.bzlib2.lai /usr/lib/gambas3/gb.compress.bzlib2.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.bzlib2" Making install in gb.compress.zlib make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.compress.zlib.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.compress.zlib.so.0.0.0 /usr/lib/gambas3/gb.compress.zlib.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.compress.zlib.so.0.0.0 gb.compress.zlib.so.0 || { rm -f gb.compress.zlib.so.0 && ln -s gb.compress.zlib.so.0.0.0 gb.compress.zlib.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.compress.zlib.so.0.0.0 gb.compress.zlib.so || { rm -f gb.compress.zlib.so && ln -s gb.compress.zlib.so.0.0.0 gb.compress.zlib.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.compress.zlib.lai /usr/lib/gambas3/gb.compress.zlib.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.compress.zlib" Making install in gb.db.mysql make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.mysql.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.mysql.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.db.mysql.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.db.mysql.so.0.0.0 /usr/lib/gambas3/gb.db.mysql.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.mysql.so.0.0.0 gb.db.mysql.so.0 || { rm -f gb.db.mysql.so.0 && ln -s gb.db.mysql.so.0.0.0 gb.db.mysql.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.mysql.so.0.0.0 gb.db.mysql.so || { rm -f gb.db.mysql.so && ln -s gb.db.mysql.so.0.0.0 gb.db.mysql.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.db.mysql.lai /usr/lib/gambas3/gb.db.mysql.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql/src" Installing the gb.db.mysql control icons if needed... Creating the information files for gb.db.mysql component... make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql/src" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.mysql" Making install in gb.db.odbc make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.odbc.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.odbc.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.db.odbc.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.db.odbc.so.0.0.0 /usr/lib/gambas3/gb.db.odbc.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.odbc.so.0.0.0 gb.db.odbc.so.0 || { rm -f gb.db.odbc.so.0 && ln -s gb.db.odbc.so.0.0.0 gb.db.odbc.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.odbc.so.0.0.0 gb.db.odbc.so || { rm -f gb.db.odbc.so && ln -s gb.db.odbc.so.0.0.0 gb.db.odbc.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.db.odbc.lai /usr/lib/gambas3/gb.db.odbc.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc/src" Installing the gb.db.odbc control icons if needed... Creating the information files for gb.db.odbc component... make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc/src" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.odbc" Making install in gb.db.postgresql make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.postgresql.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.postgresql.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.db.postgresql.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.db.postgresql.so.0.0.0 /usr/lib/gambas3/gb.db.postgresql.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.postgresql.so.0.0.0 gb.db.postgresql.so.0 || { rm -f gb.db.postgresql.so.0 && ln -s gb.db.postgresql.so.0.0.0 gb.db.postgresql.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.postgresql.so.0.0.0 gb.db.postgresql.so || { rm -f gb.db.postgresql.so && ln -s gb.db.postgresql.so.0.0.0 gb.db.postgresql.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.db.postgresql.lai /usr/lib/gambas3/gb.db.postgresql.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql/src" Installing the gb.db.postgresql control icons if needed... Creating the information files for gb.db.postgresql component... make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql/src" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.postgresql" Making install in gb.db.sqlite2 make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.sqlite2.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.sqlite2.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.db.sqlite2.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.db.sqlite2.so.0.0.0 /usr/lib/gambas3/gb.db.sqlite2.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.sqlite2.so.0.0.0 gb.db.sqlite2.so.0 || { rm -f gb.db.sqlite2.so.0 && ln -s gb.db.sqlite2.so.0.0.0 gb.db.sqlite2.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.sqlite2.so.0.0.0 gb.db.sqlite2.so || { rm -f gb.db.sqlite2.so && ln -s gb.db.sqlite2.so.0.0.0 gb.db.sqlite2.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.db.sqlite2.lai /usr/lib/gambas3/gb.db.sqlite2.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2/src" Installing the gb.db.sqlite2 control icons if needed... Creating the information files for gb.db.sqlite2 component... make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2/src" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite2" Making install in gb.db.sqlite3 make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.sqlite3.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.db.sqlite3.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.db.sqlite3.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.db.sqlite3.so.0.0.0 /usr/lib/gambas3/gb.db.sqlite3.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.sqlite3.so.0.0.0 gb.db.sqlite3.so.0 || { rm -f gb.db.sqlite3.so.0 && ln -s gb.db.sqlite3.so.0.0.0 gb.db.sqlite3.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.db.sqlite3.so.0.0.0 gb.db.sqlite3.so || { rm -f gb.db.sqlite3.so && ln -s gb.db.sqlite3.so.0.0.0 gb.db.sqlite3.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.db.sqlite3.lai /usr/lib/gambas3/gb.db.sqlite3.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3/src" Installing the gb.db.sqlite3 control icons if needed... Creating the information files for gb.db.sqlite3 component... make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3/src" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" Making install in gb.net make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.net.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.net.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.net.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.net.so.0.0.0 /usr/lib/gambas3/gb.net.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.net.so.0.0.0 gb.net.so.0 || { rm -f gb.net.so.0 && ln -s gb.net.so.0.0.0 gb.net.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.net.so.0.0.0 gb.net.so || { rm -f gb.net.so && ln -s gb.net.so.0.0.0 gb.net.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.net.lai /usr/lib/gambas3/gb.net.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net/src" Installing the gb.net control icons if needed... Creating the information files for gb.net component... make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net/src" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net" Making install in gb.net.curl make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.curl/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.curl/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.net.curl.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.net.curl.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.net.curl.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.net.curl.so.0.0.0 /usr/lib/gambas3/gb.net.curl.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.net.curl.so.0.0.0 gb.net.curl.so.0 || { rm -f gb.net.curl.so.0 && ln -s gb.net.curl.so.0.0.0 gb.net.curl.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.net.curl.so.0.0.0 gb.net.curl.so || { rm -f gb.net.curl.so && ln -s gb.net.curl.so.0.0.0 gb.net.curl.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.net.curl.lai /usr/lib/gambas3/gb.net.curl.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.curl/src" Installing the gb.net.curl control icons if needed... Creating the information files for gb.net.curl component... make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.curl/src" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.curl/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.curl/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.curl" Making install in gb.net.smtp make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.net.smtp.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.net.smtp.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.net.smtp.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.net.smtp.so.0.0.0 /usr/lib/gambas3/gb.net.smtp.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.net.smtp.so.0.0.0 gb.net.smtp.so.0 || { rm -f gb.net.smtp.so.0 && ln -s gb.net.smtp.so.0.0.0 gb.net.smtp.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.net.smtp.so.0.0.0 gb.net.smtp.so || { rm -f gb.net.smtp.so && ln -s gb.net.smtp.so.0.0.0 gb.net.smtp.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.net.smtp.lai /usr/lib/gambas3/gb.net.smtp.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp/src" Compiling the gb.net.smtp project... gb.net.smtp OK Installing the gb.net.smtp control icons if needed... Creating the information files for gb.net.smtp component... make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp/src" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.net.smtp" Making install in gb.mime make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.mime" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.mime" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.mime" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.mime" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.mime" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.mime" Making install in gb.pcre make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.pcre" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.pcre/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.pcre/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.pcre.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.pcre.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.pcre.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.pcre.so.0.0.0 /usr/lib/gambas3/gb.pcre.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.pcre.so.0.0.0 gb.pcre.so.0 || { rm -f gb.pcre.so.0 && ln -s gb.pcre.so.0.0.0 gb.pcre.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.pcre.so.0.0.0 gb.pcre.so || { rm -f gb.pcre.so && ln -s gb.pcre.so.0.0.0 gb.pcre.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.pcre.lai /usr/lib/gambas3/gb.pcre.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.pcre/src" Installing the gb.pcre control icons if needed... Creating the information files for gb.pcre component... make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.pcre/src" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.pcre/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.pcre/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.pcre" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.pcre" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.pcre" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.pcre" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.pcre" Making install in gb.sdl make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl" Making install in gb.sdl.sound make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.sdl.sound.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.sdl.sound.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.sdl.sound.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.sdl.sound.so.0.0.0 /usr/lib/gambas3/gb.sdl.sound.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.sdl.sound.so.0.0.0 gb.sdl.sound.so.0 || { rm -f gb.sdl.sound.so.0 && ln -s gb.sdl.sound.so.0.0.0 gb.sdl.sound.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.sdl.sound.so.0.0.0 gb.sdl.sound.so || { rm -f gb.sdl.sound.so && ln -s gb.sdl.sound.so.0.0.0 gb.sdl.sound.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.sdl.sound.lai /usr/lib/gambas3/gb.sdl.sound.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound/src" Installing the gb.sdl.sound control icons if needed... Creating the information files for gb.sdl.sound component... make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound/src" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.sdl.sound" Making install in gb.libxml make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.libxml" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.libxml/src" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.libxml/src" make[3]: Nessuna operazione da eseguire per "install-exec-am". test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.libxml.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /usr/bin/install -c -m 644 gb.libxml.component '/usr/lib/gambas3' test -z "/usr/lib/gambas3" || /bin/mkdir -p "/usr/lib/gambas3" /bin/bash ../libtool --mode=install /usr/bin/install -c gb.libxml.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.libxml.so.0.0.0 /usr/lib/gambas3/gb.libxml.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.libxml.so.0.0.0 gb.libxml.so.0 || { rm -f gb.libxml.so.0 && ln -s gb.libxml.so.0.0.0 gb.libxml.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.libxml.so.0.0.0 gb.libxml.so || { rm -f gb.libxml.so && ln -s gb.libxml.so.0.0.0 gb.libxml.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.libxml.lai /usr/lib/gambas3/gb.libxml.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib/gambas3 ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/gambas3 If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make install-data-hook make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.libxml/src" Installing the gb.libxml control icons if needed... Creating the information files for gb.libxml component... make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.libxml/src" make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.libxml/src" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.libxml/src" make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.libxml" make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.libxml" make[3]: Nessuna operazione da eseguire per "install-exec-am". make[3]: Nessuna operazione da eseguire per "install-data-am". make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.libxml" make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.libxml" make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.libxml" Making install in gb.xml make[1]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.xml" Making install in src make[2]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.xml/src" Making install in . make[3]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/gb.xml/src" CXX gb_xml_la-main.lo In file included from main.cpp:29:0: node.h:25:20: fatal error: gb.xml.h: No such file or directory compilation terminated. make[3]: *** [gb_xml_la-main.lo] Errore 1 make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.xml/src" make[2]: *** [install-recursive] Errore 1 make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.xml/src" make[1]: *** [install-recursive] Errore 1 make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.xml" make: *** [install-recursive] Errore 1 From adrien.prokopowicz at ...176... Wed Jul 17 12:21:17 2013 From: adrien.prokopowicz at ...176... (Adrien Prokopowicz) Date: Wed, 17 Jul 2013 12:21:17 +0200 Subject: [Gambas-devel] Rev. 5732 compile fail... gb.xml.h header file not found... In-Reply-To: References: Message-ID: Le Wed, 17 Jul 2013 12:15:40 +0200, marco bra a ?crit: > In Ubuntu 12.04 64 bit Rev. 5732 > > Seems need header > > $ sudo updatedb > $ locate gb.xml.h > /home/ubuntu/src/gambas/trunk/gb.xml/src/html/gb.xml.html.component > /home/ubuntu/src/gambas/trunk/gb.xml/src/html/gb.xml.html.h > /home/ubuntu/src/gambas/trunk/gb.xml/src/html/.svn/prop-base/gb.xml.html.component.svn-base > /home/ubuntu/src/gambas/trunk/gb.xml/src/html/.svn/text-base/gb.xml.html.component.svn-base > /home/ubuntu/src/gambas/trunk/gb.xml/src/html/.svn/text-base/gb.xml.html.h.svn-base > /usr/lib/gambas3/gb.xml.html.component > /usr/lib/gambas3/gb.xml.html.la > /usr/lib/gambas3/gb.xml.html.so > /usr/lib/gambas3/gb.xml.html.so.0 > /usr/lib/gambas3/gb.xml.html.so.0.0.0 > /usr/share/gambas3/info/gb.xml.html.info > /usr/share/gambas3/info/gb.xml.html.list > > Thank > Marco > > -- > Linux Infinite Freedom This is already fixed in revision #5733. -- Adrien Prokopowicz From marcobra.ubuntu at ...176... Sat Jul 20 22:38:01 2013 From: marcobra.ubuntu at ...176... (marco bra) Date: Sat, 20 Jul 2013 22:38:01 +0200 Subject: [Gambas-devel] Rev. 5732 compile fail... gb.xml.h header file not found... In-Reply-To: References: Message-ID: Adrien thank, now compile is fine... i have a runtime gambas3 error already sent to Benoit... 2013/7/17 Adrien Prokopowicz : > Le Wed, 17 Jul 2013 12:15:40 +0200, marco bra > a ?crit: > >> In Ubuntu 12.04 64 bit Rev. 5732 >> >> Seems need header >> >> $ sudo updatedb >> $ locate gb.xml.h >> /home/ubuntu/src/gambas/trunk/gb.xml/src/html/gb.xml.html.component >> /home/ubuntu/src/gambas/trunk/gb.xml/src/html/gb.xml.html.h >> /home/ubuntu/src/gambas/trunk/gb.xml/src/html/.svn/prop-base/gb.xml.html.component.svn-base >> /home/ubuntu/src/gambas/trunk/gb.xml/src/html/.svn/text-base/gb.xml.html.component.svn-base >> /home/ubuntu/src/gambas/trunk/gb.xml/src/html/.svn/text-base/gb.xml.html.h.svn-base >> /usr/lib/gambas3/gb.xml.html.component >> /usr/lib/gambas3/gb.xml.html.la >> /usr/lib/gambas3/gb.xml.html.so >> /usr/lib/gambas3/gb.xml.html.so.0 >> /usr/lib/gambas3/gb.xml.html.so.0.0.0 >> /usr/share/gambas3/info/gb.xml.html.info >> /usr/share/gambas3/info/gb.xml.html.list >> >> Thank >> Marco >> >> -- >> Linux Infinite Freedom > > This is already fixed in revision #5733. > > -- > Adrien Prokopowicz > > ------------------------------------------------------------------------------ > See everything from the browser to the database with AppDynamics > Get end-to-end visibility with application monitoring from AppDynamics > Isolate bottlenecks and diagnose root cause in seconds. > Start your free trial of AppDynamics Pro today! > http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel -- Linux Infinite Freedom I'm writing from this place: http://www.openstreetmap.org/?lat=44.39945&lon=8.6798&zoom=15&layers=M From gambas at ...1... Sun Jul 21 01:59:12 2013 From: gambas at ...1... (=?ISO-8859-1?Q?Beno=EEt_Minisini?=) Date: Sun, 21 Jul 2013 01:59:12 +0200 Subject: [Gambas-devel] Undead enumerators? In-Reply-To: <20130713085613.GH517@...693...> References: <20130713085613.GH517@...693...> Message-ID: <51EB2450.9000505@...1...> Le 13/07/2013 10:56, Tobias Boege a ?crit : > Hi Benoit, > > I may have reported this earlier but now you can see it yourself and with a > bit more output. > > In gb.data I have to iterate over List.Current and all active enumerators > when the list structure changes, i.e. elements are added or removed, in > order to update their information. > > I use GB.BeginEnum(), .NextEnum(), .GetEnum() and .EndEnum() to do this > (it's the macros begin_all_references and end_all_references in c_list.c). I > have looked up the semantics in the code of the Collection class. > > However, the API doesn't give only active enumerators but seemingly all that > have existed up to this point. > > Compile gb.data (latest revision) like > > $ make clean; make "CPPFLAGS+=-DDEBUG_ENUMERATOR" > > and run the attached project. You'll notice the debugging output from the > List class and one undead enumerator appearing. > > Is this intended behaviour (because this API is not documented, I don't know > if it should only report active enumerators or dead ones, too, but it > doesn't make much sense to me)? It took me some time to realise that this > was the cause of some nasty double-frees in gb.data... I worked around this > by explicitly marking dead enumerators as invalid and skipping them later, > though, but maybe we could clear the situation up. > > Regards, > Tobi > The API has been fixed in revision #5749. Stopped enumerators are not returned anymore. Moreover, in revision #5750, stopped enumerators are immediately freed (before they were freed when the function returns or if the enumeration is started again). Regards, -- Beno?t Minisini From tobias at ...692... Sat Jul 27 15:29:11 2013 From: tobias at ...692... (Tobias Boege) Date: Sat, 27 Jul 2013 15:29:11 +0200 Subject: [Gambas-devel] Undead enumerators? In-Reply-To: <51EB2450.9000505@...1...> References: <20130713085613.GH517@...693...> <51EB2450.9000505@...1...> Message-ID: <20130727132911.GC515@...693...> On Sun, 21 Jul 2013, Beno?t Minisini wrote: > Le 13/07/2013 10:56, Tobias Boege a ?crit : > > Hi Benoit, > > > > I may have reported this earlier but now you can see it yourself and with a > > bit more output. > > > > In gb.data I have to iterate over List.Current and all active enumerators > > when the list structure changes, i.e. elements are added or removed, in > > order to update their information. > > > > I use GB.BeginEnum(), .NextEnum(), .GetEnum() and .EndEnum() to do this > > (it's the macros begin_all_references and end_all_references in c_list.c). I > > have looked up the semantics in the code of the Collection class. > > > > However, the API doesn't give only active enumerators but seemingly all that > > have existed up to this point. > > > > Compile gb.data (latest revision) like > > > > $ make clean; make "CPPFLAGS+=-DDEBUG_ENUMERATOR" > > > > and run the attached project. You'll notice the debugging output from the > > List class and one undead enumerator appearing. > > > > Is this intended behaviour (because this API is not documented, I don't know > > if it should only report active enumerators or dead ones, too, but it > > doesn't make much sense to me)? It took me some time to realise that this > > was the cause of some nasty double-frees in gb.data... I worked around this > > by explicitly marking dead enumerators as invalid and skipping them later, > > though, but maybe we could clear the situation up. > > > > Regards, > > Tobi > > > > The API has been fixed in revision #5749. Stopped enumerators are not > returned anymore. > > Moreover, in revision #5750, stopped enumerators are immediately freed > (before they were freed when the function returns or if the enumeration > is started again). > I now finally tested and it's working now. Thanks. In a subsequent commit, I will eventually kick the workaround stuff out. Regards, Tobi