|
From: Marcos M. <mar...@gm...> - 2012-05-29 20:11:31
|
Hi, New to postgres-xc. Trying to give it a test drive. I'm installing it on Ubuntu, but having some issues. It seems that some files which are perhaps auto-generated are not in the tar downloads for 0.97 or 1.0 beta 2, such as gtm_opt_scanner.c .h, etc. I'm following the basic instructions of download the tar.gz, ./configure and make. Also, as a side note, some of the docs mention qmake and some make. What should I use? Regards, Marcos |
|
From: Michael P. <mic...@gm...> - 2012-05-29 22:27:31
|
On Wed, May 30, 2012 at 5:11 AM, Marcos Mendez <mar...@gm...>wrote: > New to postgres-xc. Trying to give it a test drive. I'm installing it on > Ubuntu, but having some issues. It seems that some files which are perhaps > auto-generated are not in the tar downloads for 0.97 or 1.0 beta 2, such as > gtm_opt_scanner.c .h, etc. I'm following the basic instructions of > download the tar.gz, ./configure and make. Also, as a side note, some of > the docs mention qmake and some make. What should I use? > gtm_opt_scanner.c is generated automatically at each make by using flex. It doesn't need to be in tarball. Did you install this library? -- Michael Paquier http://michael.otacoo.com |
|
From: Marcos M. <mar...@gm...> - 2012-05-29 22:48:00
|
Hi, No I did not install those. I believe I read somewhere that I only needed that for source build straight from git. I installed flex and bison and ran configure and make, but no joy. I'm including the configure log. Regards, Marcos On May 29, 2012, at 6:27 PM, Michael Paquier wrote: > > > On Wed, May 30, 2012 at 5:11 AM, Marcos Mendez <mar...@gm...> wrote: > New to postgres-xc. Trying to give it a test drive. I'm installing it on Ubuntu, but having some issues. It seems that some files which are perhaps auto-generated are not in the tar downloads for 0.97 or 1.0 beta 2, such as > gtm_opt_scanner.c .h, etc. I'm following the basic instructions of download the tar.gz, ./configure and make. Also, as a side note, some of the docs mention qmake and some make. What should I use? > gtm_opt_scanner.c is generated automatically at each make by using flex. It doesn't need to be in tarball. > Did you install this library? > -- > Michael Paquier > http://michael.otacoo.com |
|
From: Michael P. <mic...@gm...> - 2012-05-29 22:57:57
|
On Wed, May 30, 2012 at 7:47 AM, Marcos Mendez <mar...@gm...>wrote: > Hi, > > No I did not install those. I believe I read somewhere that I only needed > that for source build straight from git. I installed flex and bison and ran > configure and make, but no joy. I'm including the configure log. > XC code has the same library dependencies as postgres. You need to install the same libraries depending on the options you specify at configure step. Also try to clean up your tarball. You should do a make clean, re-run configure, and try make once again. -- Michael Paquier http://michael.otacoo.com |
|
From: <koi...@gm...> - 2012-05-29 23:14:17
|
Readline and libz are not installed by default in ubuntu 10.4. As Michael pointed out, you should install them. This is the same as building PostgreSQL binary from the scratch. --- Koichi Suzuki On 2012/05/30, at 7:57, Michael Paquier <mic...@gm...> wrote: > > > On Wed, May 30, 2012 at 7:47 AM, Marcos Mendez <mar...@gm...> wrote: > Hi, > > No I did not install those. I believe I read somewhere that I only needed that for source build straight from git. I installed flex and bison and ran configure and make, but no joy. I'm including the configure log. > XC code has the same library dependencies as postgres. > You need to install the same libraries depending on the options you specify at configure step. > > Also try to clean up your tarball. > You should do a make clean, re-run configure, and try make once again. > -- > Michael Paquier > http://michael.otacoo.com > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general |
|
From: Marcos M. <mar...@gm...> - 2012-05-29 23:17:53
|
Hi, I had installed: build-essentials, libreadline, zlib1g-dev. So I had that part covered. Now I need to find what else needs to be installed. Thanks! Regards, Marcos On May 29, 2012, at 7:13 PM, koi...@gm... wrote: > Readline and libz are not installed by default in ubuntu 10.4. As Michael pointed out, you should install them. This is the same as building PostgreSQL binary from the scratch. > > --- > Koichi Suzuki > > On 2012/05/30, at 7:57, Michael Paquier <mic...@gm...> wrote: > >> >> >> On Wed, May 30, 2012 at 7:47 AM, Marcos Mendez <mar...@gm...> wrote: >> Hi, >> >> No I did not install those. I believe I read somewhere that I only needed that for source build straight from git. I installed flex and bison and ran configure and make, but no joy. I'm including the configure log. >> XC code has the same library dependencies as postgres. >> You need to install the same libraries depending on the options you specify at configure step. >> >> Also try to clean up your tarball. >> You should do a make clean, re-run configure, and try make once again. >> -- >> Michael Paquier >> http://michael.otacoo.com >> ------------------------------------------------------------------------------ >> Live Security Virtual Conference >> Exclusive live event will cover all the ways today's security and >> threat landscape has changed and how IT managers can respond. Discussions >> will include endpoint security, mobile security and the latest in malware >> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> _______________________________________________ >> Postgres-xc-general mailing list >> Pos...@li... >> https://lists.sourceforge.net/lists/listinfo/postgres-xc-general |
|
From: Marcos M. <mar...@gm...> - 2012-05-29 23:39:14
|
Hi, Installing flex/bison and performing a make clean, and configure solved my issues. Thanks Michael! Regards, Marcos On May 29, 2012, at 7:13 PM, koi...@gm... wrote: > Readline and libz are not installed by default in ubuntu 10.4. As Michael pointed out, you should install them. This is the same as building PostgreSQL binary from the scratch. > > --- > Koichi Suzuki > > On 2012/05/30, at 7:57, Michael Paquier <mic...@gm...> wrote: > >> >> >> On Wed, May 30, 2012 at 7:47 AM, Marcos Mendez <mar...@gm...> wrote: >> Hi, >> >> No I did not install those. I believe I read somewhere that I only needed that for source build straight from git. I installed flex and bison and ran configure and make, but no joy. I'm including the configure log. >> XC code has the same library dependencies as postgres. >> You need to install the same libraries depending on the options you specify at configure step. >> >> Also try to clean up your tarball. >> You should do a make clean, re-run configure, and try make once again. >> -- >> Michael Paquier >> http://michael.otacoo.com >> ------------------------------------------------------------------------------ >> Live Security Virtual Conference >> Exclusive live event will cover all the ways today's security and >> threat landscape has changed and how IT managers can respond. Discussions >> will include endpoint security, mobile security and the latest in malware >> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> _______________________________________________ >> Postgres-xc-general mailing list >> Pos...@li... >> https://lists.sourceforge.net/lists/listinfo/postgres-xc-general |