From E.v.Spronsen at ...745... Wed Mar 4 10:44:35 2015 From: E.v.Spronsen at ...745... (Ernst van Spronsen) Date: Wed, 4 Mar 2015 09:44:35 +0000 Subject: [Gambas-devel] Compiling Gambas on a nearly bare metal linux machine Message-ID: Hi, Don't know whats the best place to post this. Because there is not an installing Gambas mailgroup. I have the following issue: We like to make a Gui interface for our machines. For that we like to use Gambas a touchscreen and a small mainboard(advantech RSB-4410). On the mainboard runs a nearly bare metal linux distribution. So to get Gambas running is a challenge. I am very, very afraid to get in a big dependence hell. So i'm about to abandoned this pad. But before I do that I like to hear your sugestions. Thanks, Ernst -------------- next part -------------- An HTML attachment was scrubbed... URL: From gambas at ...1... Wed Mar 4 11:12:52 2015 From: gambas at ...1... (=?windows-1252?Q?Beno=EEt_Minisini?=) Date: Wed, 04 Mar 2015 11:12:52 +0100 Subject: [Gambas-devel] Compiling Gambas on a nearly bare metal linux machine In-Reply-To: References: Message-ID: <54F6DAA4.8080704@...1...> Le 04/03/2015 10:44, Ernst van Spronsen a ?crit : > Hi, > > Don?t know whats the best place to post this. Because there is not an > installing Gambas mailgroup. > > I have the following issue: > > We like to make a Gui interface for our machines. For that we like to > use Gambas a touchscreen and a small mainboard(advantech RSB-4410). > > On the mainboard runs a nearly bare metal linux distribution. So to get > Gambas running is a challenge. I am very, very afraid to get in a big > dependence hell. So i?m about to abandoned this pad. > > But before I do that I like to hear your sugestions. > > Thanks, > > Ernst > What is exactly a "nearly bare metal linux distribution"? -- Beno?t Minisini From E.v.Spronsen at ...745... Wed Mar 4 11:19:33 2015 From: E.v.Spronsen at ...745... (Ernst van Spronsen) Date: Wed, 4 Mar 2015 10:19:33 +0000 Subject: [Gambas-devel] Compiling Gambas on a nearly bare metal linux machine In-Reply-To: <54F6DAA4.8080704@...1...> References: <54F6DAA4.8080704@...1...> Message-ID: The only supported distribution on this mainboard is: Linaro 11.10 -----Oorspronkelijk bericht----- Van: Beno?t Minisini [mailto:gambas at ...1...] Verzonden: woensdag 4 maart 2015 11:13 Aan: mailing list for gambas developers Onderwerp: Re: [Gambas-devel] Compiling Gambas on a nearly bare metal linux machine Le 04/03/2015 10:44, Ernst van Spronsen a ?crit : > Hi, > > Don't know whats the best place to post this. Because there is not an > installing Gambas mailgroup. > > I have the following issue: > > We like to make a Gui interface for our machines. For that we like to > use Gambas a touchscreen and a small mainboard(advantech RSB-4410). > > On the mainboard runs a nearly bare metal linux distribution. So to > get Gambas running is a challenge. I am very, very afraid to get in a > big dependence hell. So i'm about to abandoned this pad. > > But before I do that I like to hear your sugestions. > > Thanks, > > Ernst > What is exactly a "nearly bare metal linux distribution"? -- Beno?t Minisini ------------------------------------------------------------------------------ Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now. http://goparallel.sourceforge.net/ _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel From taboege at ...176... Wed Mar 4 11:22:29 2015 From: taboege at ...176... (Tobias Boege) Date: Wed, 4 Mar 2015 11:22:29 +0100 Subject: [Gambas-devel] Compiling Gambas on a nearly bare metal linux machine In-Reply-To: References: Message-ID: <20150304102229.GB731@...693...> On Wed, 04 Mar 2015, Ernst van Spronsen wrote: > Hi, > > Don't know whats the best place to post this. Because there is not an installing Gambas mailgroup. This is gambas-devel where people meet who develop Gambas, not to be confused with people who (want to) develop *in* or *using* Gambas. There is the gambas-user mailing list which would be better suited for your problem (installation question belong there, too). I'll CC the gambas-user list for this, just so that this thread is also partially in their archives. > I have the following issue: > We like to make a Gui interface for our machines. For that we like to use Gambas a touchscreen and a small mainboard(advantech RSB-4410). > On the mainboard runs a nearly bare metal linux distribution. So to get Gambas running is a challenge. I am very, very afraid to get in a big dependence hell. So i'm about to abandoned this pad. > But before I do that I like to hear your sugestions. > Gambas has its "components" which are laid out modularly. If you want a GUI, you need to have gb.gtk, gb.gtk3 or gb.qt4 for one of the supported toolkits (don't know about touchscreen support in them, though). This will require you to install those toolkits and the corresponding components. The toolkits can be rather huge but if you want a GUI, that's the pill you have to swallow. The interpreter per se doesn't have many dependencies. To run your project you will only need to install the things you use in your project. However, if you want to develop your project in the IDE (and I recommend that, after having worked over a year without the IDE), you need to... install the IDE which brings a whole lot of dependencies. The good news is that you can use a normal desktop system for your development (with the IDE) and put the project on your special machines to test. On there, only the minimal stuff to compile and run the project has to be installed. For an overview of dependencies, look here[0]. Regards, Tobi [0] http://gambaswiki.org/wiki/install -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From taboege at ...176... Wed Mar 4 11:26:40 2015 From: taboege at ...176... (Tobias Boege) Date: Wed, 4 Mar 2015 11:26:40 +0100 Subject: [Gambas-devel] [Gambas-devel-svn] SF.net SVN: gambas:[6936] gambas/trunk In-Reply-To: References: Message-ID: <20150304102639.GD731@...693...> On Mon, 02 Mar 2015, gambas at ...1... wrote: > Revision: 6936 > http://sourceforge.net/p/gambas/code/6936 > Author: gambas > Date: 2015-03-02 18:20:56 +0000 (Mon, 02 Mar 2015) > Log Message: > ----------- > [GB.DRAW] > * BUG: The optional painting area is correclty reset after a call to > Paint.Reset(). > I think the wiki needs an update here. Can I do that? The @{syntax} is wrong so I'm afraid it won't make sense if I add some information about that new Area parameter then... Regards, Tobi -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From jredrejo at ...176... Wed Mar 4 12:22:28 2015 From: jredrejo at ...176... (=?UTF-8?Q?Jos=C3=A9_Luis_Redrejo?=) Date: Wed, 4 Mar 2015 12:22:28 +0100 Subject: [Gambas-devel] Compiling Gambas on a nearly bare metal linux machine In-Reply-To: References: Message-ID: You can take a look at the way it is compiled in the Debian package. It is in the debian/rules archive. The dependencies are under the build-depends section in the debian/control archive. 2015-03-04 10:44 GMT+01:00 Ernst van Spronsen : > Hi, > > > > Don?t know whats the best place to post this. Because there is not an > installing Gambas mailgroup. > > I have the following issue: > > We like to make a Gui interface for our machines. For that we like to > use Gambas a touchscreen and a small mainboard(advantech RSB-4410). > > On the mainboard runs a nearly bare metal linux distribution. So to get > Gambas running is a challenge. I am very, very afraid to get in a big > dependence hell. So i?m about to abandoned this pad. > > But before I do that I like to hear your sugestions. > > > > Thanks, > > Ernst > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, > sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for > all > things parallel software development, from weekly thought leadership blogs > to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcobra.ubuntu at ...176... Wed Mar 4 14:34:56 2015 From: marcobra.ubuntu at ...176... (marco bra) Date: Wed, 4 Mar 2015 14:34:56 +0100 Subject: [Gambas-devel] Don't know if it is a bug: common.MakeNextWhere.77:No current connection Message-ID: Using Gambas3 Rev. 6947 On several databrowsers after a limit of 128 rows i get common.MakeNextWhere.77:No current connection all different databrowsers are pointing to unique sqlite3 database opening several differents tables with same connection There is a way to increase this limit or it is by design or is a bug... ? Also i cannot get access to databrowsers.connection at runtime to set a filter... message is "connection.unavailable" Thank you 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 -------------- An HTML attachment was scrubbed... URL: From E.v.Spronsen at ...745... Thu Mar 5 11:54:59 2015 From: E.v.Spronsen at ...745... (Ernst van Spronsen) Date: Thu, 5 Mar 2015 10:54:59 +0000 Subject: [Gambas-devel] Compiling Gambas on a nearly bare metal linux machine In-Reply-To: <20150304102229.GB731@...693...> References: <20150304102229.GB731@...693...> Message-ID: Hi, Sorry to bother you with stupid questions about installation. But I tried to give it a go. Versions I work with: libtool: (GNU libtool) 2.4 Debian-2.4-2ubuntu1 automake: automake (GNU automake) 1.11.1 autoconf: autoconf (GNU Autoconf) 2.68 started ./reconf-all I got the following error message: configure:4114: error: possibly undefined macro: AC_LIBLTDL_CONVENIENCE If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. autoreconf: /usr/bin/autoconf failed with exit status: 1 Any hint wat to do? Thanks! Ernst -----Oorspronkelijk bericht----- Van: Tobias Boege [mailto:taboege at ...176...] Verzonden: woensdag 4 maart 2015 11:22 Aan: mailing list for gambas developers Onderwerp: Re: [Gambas-devel] Compiling Gambas on a nearly bare metal linux machine On Wed, 04 Mar 2015, Ernst van Spronsen wrote: > Hi, > > Don't know whats the best place to post this. Because there is not an installing Gambas mailgroup. This is gambas-devel where people meet who develop Gambas, not to be confused with people who (want to) develop *in* or *using* Gambas. There is the gambas-user mailing list which would be better suited for your problem (installation question belong there, too). I'll CC the gambas-user list for this, just so that this thread is also partially in their archives. > I have the following issue: > We like to make a Gui interface for our machines. For that we like to use Gambas a touchscreen and a small mainboard(advantech RSB-4410). > On the mainboard runs a nearly bare metal linux distribution. So to get Gambas running is a challenge. I am very, very afraid to get in a big dependence hell. So i'm about to abandoned this pad. > But before I do that I like to hear your sugestions. > Gambas has its "components" which are laid out modularly. If you want a GUI, you need to have gb.gtk, gb.gtk3 or gb.qt4 for one of the supported toolkits (don't know about touchscreen support in them, though). This will require you to install those toolkits and the corresponding components. The toolkits can be rather huge but if you want a GUI, that's the pill you have to swallow. The interpreter per se doesn't have many dependencies. To run your project you will only need to install the things you use in your project. However, if you want to develop your project in the IDE (and I recommend that, after having worked over a year without the IDE), you need to... install the IDE which brings a whole lot of dependencies. The good news is that you can use a normal desktop system for your development (with the IDE) and put the project on your special machines to test. On there, only the minimal stuff to compile and run the project has to be installed. For an overview of dependencies, look here[0]. Regards, Tobi [0] http://gambaswiki.org/wiki/install -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk ------------------------------------------------------------------------------ Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now. http://goparallel.sourceforge.net/ _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel From marcobra.ubuntu at ...176... Sat Mar 7 00:54:10 2015 From: marcobra.ubuntu at ...176... (marco bra) Date: Sat, 7 Mar 2015 00:54:10 +0100 Subject: [Gambas-devel] Don't know if it is a bug: common.MakeNextWhere.77:No current connection In-Reply-To: References: Message-ID: activacting in main DB.debug=true i can see limit on query: sqlite3: 0x86e1c70: PRAGMA empty_result_callbacks = ON sqlite3: 0x86e1c70: PRAGMA full_column_names = ON sqlite3: 0x86e1c70: SELECT * FROM UNITA_IMMOBILIARI sqlite3: 0x8273c68: SELECT idSoggetto,codComune,luogoNascita FROM "PERSONA_FISICA" ORDER BY idSoggetto,codComune,luogoNascita LIMIT 128 sqlite3: 0x8273c68: SELECT * FROM "PERSONA_FISICA" ORDER BY idSoggetto,codComune,luogoNascita LIMIT 128 2015-03-04 14:34 GMT+01:00 marco bra : > Using Gambas3 Rev. 6947 > > On several databrowsers after a limit of 128 rows i get > > common.MakeNextWhere.77:No current connection > > all different databrowsers are pointing to unique sqlite3 database opening > several differents tables with same connection > > There is a way to increase this limit or it is by design or is a bug... ? > > Also i cannot get access to databrowsers.connection at runtime to set a > filter... > message is "connection.unavailable" > > Thank you > Marco > > -- > Linux Infinite Freedom > > I'm writing from this place: > http://www.openstreetmap.org/?lat=44.39945&lon=8.6798&zoom=15&layers=M > > -- 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 -------------- An HTML attachment was scrubbed... URL: From marcobra.ubuntu at ...176... Mon Mar 30 04:32:38 2015 From: marcobra.ubuntu at ...176... (marco bra) Date: Mon, 30 Mar 2015 04:32:38 +0200 Subject: [Gambas-devel] Gambas trunk Rev. 7017 error Message-ID: Please take a look at complete log of compile and install log errors Thanks Marco [System] Gambas=3.7.90 OperatingSystem=Linux Kernel=3.16.0-31-generic Architecture=x86_64 Distribution=Ubuntu Vivid Vervet (development branch) Desktop=GNOME Theme=QGtk Language=it_IT.UTF-8 Memory=1869M [Libraries] Cairo=libcairo.so.2.11400.0 Curl=libcurl.so.4.3.0 DBus=libdbus-1.so.3.8.9 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.405.0 GTK+3=libgtk-3.so.0.1400.9 GTK+=libgtk-x11-2.0.so.0.2400.27 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.49.0.0 Qt4=libQtCore.so.4.8.6 SDL=libSDL-1.2.so.0.11.4 -- 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 -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'. libtoolize: copying file `m4/libtool.m4' libtoolize: copying file `m4/ltoptions.m4' libtoolize: copying file `m4/ltsugar.m4' libtoolize: copying file `m4/ltversion.m4' libtoolize: copying file `m4/lt~obsolete.m4' libtoolize: Remember to add `LT_INIT' to configure.ac. 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 --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.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.sdl2 to autoreconf autoreconf: Entering directory `gb.sdl2' autoreconf: Leaving directory `gb.sdl2' 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.gtk3 to autoreconf autoreconf: Entering directory `gb.gtk3' autoreconf: Leaving directory `gb.gtk3' 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.x11 to autoreconf autoreconf: Entering directory `gb.desktop.x11' autoreconf: Leaving directory `gb.desktop.x11' autoreconf: configure.ac: adding subdirectory gb.desktop.gnome.keyring to autoreconf autoreconf: Entering directory `gb.desktop.gnome.keyring' autoreconf: Leaving directory `gb.desktop.gnome.keyring' 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.gmp to autoreconf autoreconf: Entering directory `gb.gmp' autoreconf: Leaving directory `gb.gmp' 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.openssl to autoreconf autoreconf: Entering directory `gb.openssl' autoreconf: Leaving directory `gb.openssl' autoreconf: configure.ac: adding subdirectory gb.openal to autoreconf autoreconf: Entering directory `gb.openal' autoreconf: Leaving directory `gb.openal' 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: 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... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu configure: updating cache config.cache checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... yes 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 whether gcc understands -c and -o together... (cached) yes 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 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 gb.inotify headers... /usr/include/ checking for gb.inotify libraries... checking for xdg-mime... xdg-mime configure: updating cache ../config.cache checking that generated files are newer than configure... done 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 lib/clipper/Makefile config.status: creating lib/inotify/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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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/9.3/server/ /usr/include/postgresql/9.3/server/catalog/ checking for gb.db.postgresql libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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... OK checking that generated files are newer than configure... done 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.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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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... OK configure: updating cache ../config.cache checking that generated files are newer than configure... done 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.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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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.sdl2 (/home/ubuntu/src/gambas/trunk/gb.sdl2) 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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.sdl2 component with pkg-config... no configure: WARNING: Unable to met pkg-config requirement: sdl2 configure: WARNING: Unable to met pkg-config requirement: >= 2.0.2 configure: WARNING: Unable to met pkg-config requirement: SDL2_image configure: WARNING: Unable to met pkg-config requirement: >= 2.0.0 configure: WARNING: Unable to met pkg-config requirement: SDL2_ttf configure: WARNING: Unable to met pkg-config requirement: >= 2.0.12 configure: WARNING: gb.sdl2 is disabled no configure: WARNING: Unable to met pkg-config requirement: sdl2 configure: WARNING: Unable to met pkg-config requirement: >= 2.0.2 configure: WARNING: Unable to met pkg-config requirement: SDL2_mixer configure: WARNING: Unable to met pkg-config requirement: >= 2.0.0 configure: WARNING: gb.sdl2.audio is disabled checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating src/Makefile config.status: creating src/audio/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: sdl2 || Unable to met pkg-config requirement: >= 2.0.2 || Unable to met pkg-config requirement: SDL2_image || Unable to met pkg-config requirement: >= 2.0.0 || Unable to met pkg-config requirement: SDL2_ttf || Unable to met pkg-config requirement: >= 2.0.12 || gb.sdl2 is disabled || Unable to met pkg-config requirement: sdl2 || Unable to met pkg-config requirement: >= 2.0.2 || Unable to met pkg-config requirement: SDL2_mixer || Unable to met pkg-config requirement: >= 2.0.0 || gb.sdl2.audio is disabled || === 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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... OK configure: updating cache ../config.cache checking that generated files are newer than configure... done 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 === 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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... OK checking for gb.v4l headers... /usr/include/ checking for gb.v4l libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache checking that generated files are newer than configure... done 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.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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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... OK checking for gb.qt4.ext component with pkg-config... OK checking for gb.qt4.webkit component with pkg-config... OK checking for gb.qt4.opengl component with pkg-config... OK checking that generated files are newer than configure... done 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 === 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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... OK checking that generated files are newer than configure... done 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 === configuring in gb.gtk3 (/home/ubuntu/src/gambas/trunk/gb.gtk3) 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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.gtk3 component with pkg-config... no configure: WARNING: Unable to met pkg-config requirement: gtk+-3.0 >= 3.4 configure: WARNING: Unable to met pkg-config requirement: gtk+-unix-print-3.0 >= 3.4 configure: WARNING: gb.gtk3 is disabled checking that generated files are newer than configure... done 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: gtk+-3.0 >= 3.4 || Unable to met pkg-config requirement: gtk+-unix-print-3.0 >= 3.4 || gb.gtk3 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking for gb.opengl.sge component with pkg-config... OK checking that generated files are newer than configure... done 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 src/sge/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.x11 (/home/ubuntu/src/gambas/trunk/gb.desktop.x11) 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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.x11 headers... checking for gb.desktop.x11 libraries... configure: updating cache ../config.cache checking that generated files are newer than configure... done 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.desktop.gnome.keyring (/home/ubuntu/src/gambas/trunk/gb.desktop.gnome.keyring) 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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.desktop.gnome.keyring component with pkg-config... OK checking that generated files are newer than configure... done 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.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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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.gmp (/home/ubuntu/src/gambas/trunk/gb.gmp) 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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.gmp headers... /usr/include/x86_64-linux-gnu/ checking for gb.gmp libraries... /usr/lib/x86_64-linux-gnu/ configure: updating cache ../config.cache checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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... /usr/bin/llvm-config checking for LLVM, version between 3.1 and 3.5... no configure: WARNING: gb.jit is disabled configure: updating cache ../config.cache checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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 checking that generated files are newer than configure... done 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.openal (/home/ubuntu/src/gambas/trunk/gb.openal) 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 whether gcc understands -c and -o together... (cached) yes 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 whether gcc understands -c and -o together... (cached) yes 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.openal component with pkg-config... no configure: WARNING: Unable to met pkg-config requirement: openal >= 1.13 configure: WARNING: Unable to met pkg-config requirement: alure configure: WARNING: gb.openal is disabled checking that generated files are newer than configure... done 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: openal >= 1.13 || Unable to met pkg-config requirement: alure || gb.openal is disabled || === 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 that generated files are newer than configure... done 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) mawk checking whether make sets $(MAKE)... (cached) yes checking whether make supports nested variables... (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 checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating config.h config.status: config.h is unchanged || || THESE COMPONENTS ARE DISABLED: || - gb.gtk3 || - gb.jit || - gb.jit] || - gb.media || - gb.openal || - gb.sdl2 || - gb.sdl2.audio || 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 . make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main" Making all in lib make[4]: ingresso nella 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" Making all in clipper make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/clipper" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/clipper" Making all in inotify make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/inotify" make[5]: Nessuna operazione da eseguire per "all". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/inotify" 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" 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[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 regola per generare l'obiettivo "main.cpp", necessario per "gb_db_sqlite3_la-main.lo". Arresto. make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3/src" Makefile:421: set di istruzioni per l'obiettivo "all-recursive" non riuscito make[3]: *** [all-recursive] Errore 1 make[3]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" Makefile:352: set di istruzioni per l'obiettivo "all" non riuscito make[2]: *** [all] Errore 2 make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" Makefile:426: set di istruzioni per l'obiettivo "all-recursive" non riuscito make[1]: *** [all-recursive] Errore 1 make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk" Makefile:366: set di istruzioni per l'obiettivo "all" non riuscito 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" /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" /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 /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 . 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 Creating the information files for gb component... gb Installing the compiler tools... Compiling gbh3... OK Installing gbh3... ln: creazione del collegamento simbolico "/usr/bin/gbh3" non riuscita: File gi? esistente 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" Making install in lib make[3]: ingresso nella 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.debug.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.debug.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.eval.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.eval.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.db.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.db.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.compress.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.compress.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.vb.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.vb.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.option.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.option.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /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". /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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.image.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.image.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.gui.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.gui.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.gui.opengl.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.gui.opengl.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.image.effect.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.image.effect.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.signal.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.signal.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.complex.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.complex.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.data.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.data.component '/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" Compiling the gb.data project... gb.data OK Installing the gb.data control icons if needed... Creating the information files for gb.data component... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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" Making install in clipper make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/clipper" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/clipper" make[5]: Nessuna operazione da eseguire per "install-exec-am". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.clipper.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.clipper.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.clipper.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.clipper.so.0.0.0 /usr/lib/gambas3/gb.clipper.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.clipper.so.0.0.0 gb.clipper.so.0 || { rm -f gb.clipper.so.0 && ln -s gb.clipper.so.0.0.0 gb.clipper.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.clipper.so.0.0.0 gb.clipper.so || { rm -f gb.clipper.so && ln -s gb.clipper.so.0.0.0 gb.clipper.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.clipper.lai /usr/lib/gambas3/gb.clipper.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/clipper" Installing the gb.clipper control icons if needed... Creating the information files for gb.clipper component... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/clipper" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/clipper" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/clipper" Making install in inotify make[4]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/inotify" make[5]: ingresso nella directory "/home/ubuntu/src/gambas/trunk/main/lib/inotify" make[5]: Nessuna operazione da eseguire per "install-exec-am". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.inotify.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.inotify.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /bin/bash ../../libtool --mode=install /usr/bin/install -c gb.inotify.la '/usr/lib/gambas3' libtool: install: /usr/bin/install -c .libs/gb.inotify.so.0.0.0 /usr/lib/gambas3/gb.inotify.so.0.0.0 libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.inotify.so.0.0.0 gb.inotify.so.0 || { rm -f gb.inotify.so.0 && ln -s gb.inotify.so.0.0.0 gb.inotify.so.0; }; }) libtool: install: (cd /usr/lib/gambas3 && { ln -s -f gb.inotify.so.0.0.0 gb.inotify.so || { rm -f gb.inotify.so && ln -s gb.inotify.so.0.0.0 gb.inotify.so; }; }) libtool: install: /usr/bin/install -c .libs/gb.inotify.lai /usr/lib/gambas3/gb.inotify.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/inotify" Installing the gb.inotify control icons if needed... Creating the information files for gb.inotify component... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory make[6]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/inotify" make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/inotify" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib/inotify" 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". make[5]: Nessuna operazione da eseguire per "install-data-am". make[5]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib" make[4]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/main/lib" 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[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". /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". /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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.db.mysql.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.db.mysql.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.db.odbc.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.db.odbc.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.db.postgresql.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.db.postgresql.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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". /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.db.sqlite2.component '/usr/lib/gambas3' /bin/mkdir -p '/usr/lib/gambas3' /usr/bin/install -c -m 644 gb.db.sqlite2.component '/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... /usr/bin/gbi3: error while loading shared libraries: libLLVM-3.4.so.1: cannot open shared object file: No such file or directory 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[2]: *** Nessuna regola per generare l'obiettivo "main.cpp", necessario per "gb_db_sqlite3_la-main.lo". Arresto. make[2]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3/src" Makefile:421: set di istruzioni per l'obiettivo "install-recursive" non riuscito make[1]: *** [install-recursive] Errore 1 make[1]: uscita dalla directory "/home/ubuntu/src/gambas/trunk/gb.db.sqlite3" Makefile:426: set di istruzioni per l'obiettivo "install-recursive" non riuscito make: *** [install-recursive] Errore 1 From gambas at ...1... Mon Mar 30 06:43:31 2015 From: gambas at ...1... (=?windows-1252?Q?Beno=EEt_Minisini?=) Date: Mon, 30 Mar 2015 06:43:31 +0200 Subject: [Gambas-devel] Gambas trunk Rev. 7017 error In-Reply-To: References: Message-ID: <5518D473.9080409@...1...> Le 30/03/2015 04:32, marco bra a ?crit : > Please take a look at complete log of compile and install log errors > > Thanks > Marco > You have to remove the 'gb.db.sqlite3/src/.deps' directory by hand. No idea why, maybe a flaw in the autotools system. -- Beno?t Minisini