Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Installing Pg gem for PostGreSQL 8.4
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 26 - 36 of 36 - Collapse all  -  Translate all to Translated (View all originals) < Older 
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Reid Thompson  
View profile  
 More options Mar 3 2010, 11:01 am
Newsgroups: comp.lang.ruby
From: Reid Thompson <reid.thomp...@ateb.com>
Date: Wed, 3 Mar 2010 11:01:53 -0500
Local: Wed, Mar 3 2010 11:01 am
Subject: Re: Installing Pg gem for PostGreSQL 8.4

hmm -- until today, on my box

$ sudo gem install pg

resulted in 0.8.0 being installed

today, it installed 0.9.0.

try this

in your gems directory, remove the 0.9.0 directory
(on my box this is at /usr/lib/ruby/gems/1.8/gems/pg-0.9.0)

then try the install again

$ sudo gem install pg


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Saeed Bhuta  
View profile  
 More options Mar 3 2010, 11:18 am
Newsgroups: comp.lang.ruby
From: Saeed Bhuta <saeed.bh...@placr.co.uk>
Date: Wed, 3 Mar 2010 11:18:15 -0500
Local: Wed, Mar 3 2010 11:18 am
Subject: Re: Installing Pg gem for PostGreSQL 8.4

Deleted the directory and tried the install again but no luck;
sudo gem install pg
Building native extensions.  This could take a while...
ERROR:  Error installing pg:
  ERROR: Failed to build gem native extension.

/usr/bin/ruby1.8 extconf.rb
checking for pg_config... yes
checking for libpq-fe.h... yes
checking for libpq/libpq-fs.h... yes
checking for PQconnectdb() in -lpq... no
checking for PQconnectdb() in -llibpq... no
checking for PQconnectdb() in -lms/libpq... no
Can't find the PostgreSQL client library (libpq)
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers.  Check the mkmf.log file for more
details.  You may need configuration options.

Provided configuration options:
  --with-opt-dir
  --without-opt-dir
  --with-opt-include
  --without-opt-include=${opt-dir}/include
  --with-opt-lib
  --without-opt-lib=${opt-dir}/lib
  --with-make-prog
  --without-make-prog
  --srcdir=.
  --curdir
  --ruby=/usr/bin/ruby1.8
  --with-pg
  --without-pg
  --with-pg-config
  --without-pg-config
  --with-pg-dir
  --without-pg-dir
  --with-pg-include
  --without-pg-include=${pg-dir}/include
  --with-pg-lib
  --without-pg-lib=${pg-dir}/lib
  --enable-static-build
  --disable-static-build
  --with-pqlib
  --without-pqlib
  --with-libpqlib
  --without-libpqlib
  --with-ms/libpqlib
  --without-ms/libpqlib

Gem files will remain installed in /var/lib/gems/1.8/gems/pg-0.9.0 for
inspection.
Results logged to /var/lib/gems/1.8/gems/pg-0.9.0/ext/gem_make.out
--
Posted via http://www.ruby-forum.com/.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tor Erik Linnerud  
View profile  
 More options Mar 4 2010, 9:35 am
Newsgroups: comp.lang.ruby
From: Tor Erik Linnerud <t...@jklm.no>
Date: Thu, 4 Mar 2010 09:35:42 -0500
Local: Thurs, Mar 4 2010 9:35 am
Subject: Re: Installing Pg gem for PostGreSQL 8.4

> checking for pg_config... yes
> checking for libpq-fe.h... yes
> checking for libpq/libpq-fs.h... yes
> checking for PQconnectdb() in -lpq... no
> checking for PQconnectdb() in -llibpq... no
> checking for PQconnectdb() in -lms/libpq... no
> Can't find the PostgreSQL client library (libpq)

I am having the exact same problem on a fresh install on Snow Leopard
with Ruby 1.9.1p376 and postgres installed via homebrew. This is the
last entry from mkmf.log

gcc -o conftest
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/i386-darwin10.2 .0
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/ruby/backward
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1 -I.
-D_XOPEN_SOURCE -D_DARWIN_C_SOURCE
-I/usr/local/homebrew/Cellar/postgresql/8.4.2/include  -O2 -g -Wall
-Wno-parentheses -pipe -fno-common -arch i386 conftest.c  -L.
-L/Users/tel/.rvm/rubies/ruby-1.9.1-p376/lib -L.
-L/usr/local/homebrew/Cellar/postgresql/8.4.2/lib -arch i386
-lruby-static -lms/libpq  -lpthread -ldl -lobjc  "
conftest.c: In function ‘t’:
conftest.c:5: warning: implicit declaration of function ‘PQconnectdb’
ld: library not found for -lms/libpq
collect2: ld returned 1 exit status
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: /*top*/
4: int main() {return 0;}
5: int t() { PQconnectdb(); return 0; }
/* end */

Tor Erik
--
Posted via http://www.ruby-forum.com/.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Luis Lavena  
View profile  
 More options Mar 4 2010, 11:23 am
Newsgroups: comp.lang.ruby
From: Luis Lavena <luislav...@gmail.com>
Date: Thu, 4 Mar 2010 08:23:56 -0800 (PST)
Local: Thurs, Mar 4 2010 11:23 am
Subject: Re: Installing Pg gem for PostGreSQL 8.4
On Mar 3, 5:18 pm, Saeed Bhuta <saeed.bh...@placr.co.uk> wrote:

Can you post the contents of mkmf.log that are located here: /var/lib/
gems/1.8/gems/pg-0.9.0/ext

Seems that it finds the headers, the pg_config tool, but It cannot
link to it, which may be related to 32/64 bits binaries.

--
Luis Lavena


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tor Erik Linnerud  
View profile  
 More options Mar 4 2010, 1:26 pm
Newsgroups: comp.lang.ruby
From: Tor Erik Linnerud <t...@jklm.no>
Date: Thu, 4 Mar 2010 13:26:38 -0500
Local: Thurs, Mar 4 2010 1:26 pm
Subject: Re: Installing Pg gem for PostGreSQL 8.4

Luis Lavena wrote:
> Can you post the contents of mkmf.log that are located here: /var/lib/
> gems/1.8/gems/pg-0.9.0/ext

Here is mine

find_executable: checking for pg_config... -------------------- yes

--------------------

have_header: checking for libpq-fe.h... -------------------- yes

"gcc -o conftest
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/i386-darwin10.2 .0
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/ruby/backward
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1 -I.
-D_XOPEN_SOURCE -D_DARWIN_C_SOURCE
-I/usr/local/homebrew/Cellar/postgresql/8.3.9/include  -O2 -g -Wall
-Wno-parentheses -pipe -fno-common -arch i386 conftest.c  -L.
-L/Users/tel/.rvm/rubies/ruby-1.9.1-p376/lib -L.
-L/usr/local/homebrew/Cellar/postgresql/8.3.9/lib -arch i386
-lruby-static  -lpthread -ldl -lobjc  "
ld: warning: in
/Users/tel/.rvm/rubies/ruby-1.9.1-p376/lib/libruby-static.a, file is not
of required architecture
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: int main() {return 0;}
/* end */

"gcc -E
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/i386-darwin10.2 .0
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/ruby/backward
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1 -I.
-D_XOPEN_SOURCE -D_DARWIN_C_SOURCE
-I/usr/local/homebrew/Cellar/postgresql/8.3.9/include  -O2 -g -Wall
-Wno-parentheses -pipe -fno-common -arch i386  conftest.c -o conftest.i"
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: #include <libpq-fe.h>
/* end */

--------------------

have_header: checking for libpq/libpq-fs.h... -------------------- yes

"gcc -E
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/i386-darwin10.2 .0
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/ruby/backward
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1 -I.
-D_XOPEN_SOURCE -D_DARWIN_C_SOURCE
-I/usr/local/homebrew/Cellar/postgresql/8.3.9/include  -O2 -g -Wall
-Wno-parentheses -pipe -fno-common -arch i386  conftest.c -o conftest.i"
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: #include <libpq/libpq-fs.h>
/* end */

--------------------

have_library: checking for PQconnectdb() in -lpq... --------------------
no

"gcc -o conftest
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/i386-darwin10.2 .0
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/ruby/backward
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1 -I.
-D_XOPEN_SOURCE -D_DARWIN_C_SOURCE
-I/usr/local/homebrew/Cellar/postgresql/8.3.9/include  -O2 -g -Wall
-Wno-parentheses -pipe -fno-common -arch i386 conftest.c  -L.
-L/Users/tel/.rvm/rubies/ruby-1.9.1-p376/lib -L.
-L/usr/local/homebrew/Cellar/postgresql/8.3.9/lib -arch i386
-lruby-static -lpq  -lpthread -ldl -lobjc  "
conftest.c: In function ‘t’:
conftest.c:5: error: ‘PQconnectdb’ undeclared (first use in this
function)
conftest.c:5: error: (Each undeclared identifier is reported only once
conftest.c:5: error: for each function it appears in.)
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: /*top*/
4: int main() {return 0;}
5: int t() { void ((*volatile p)()); p = (void ((*)()))PQconnectdb;
return 0; }
/* end */

"gcc -o conftest
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/i386-darwin10.2 .0
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/ruby/backward
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1 -I.
-D_XOPEN_SOURCE -D_DARWIN_C_SOURCE
-I/usr/local/homebrew/Cellar/postgresql/8.3.9/include  -O2 -g -Wall
-Wno-parentheses -pipe -fno-common -arch i386 conftest.c  -L.
-L/Users/tel/.rvm/rubies/ruby-1.9.1-p376/lib -L.
-L/usr/local/homebrew/Cellar/postgresql/8.3.9/lib -arch i386
-lruby-static -lpq  -lpthread -ldl -lobjc  "
conftest.c: In function ‘t’:
conftest.c:5: warning: implicit declaration of function ‘PQconnectdb’
ld: warning: in
/Users/tel/.rvm/rubies/ruby-1.9.1-p376/lib/libruby-static.a, file is not
of required architecture
ld: warning: in
/usr/local/homebrew/Cellar/postgresql/8.3.9/lib/libpq.dylib, file is not
of required architecture
Undefined symbols:
  "_PQconnectdb", referenced from:
      _t in ccQWN7dm.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: /*top*/
4: int main() {return 0;}
5: int t() { PQconnectdb(); return 0; }
/* end */

--------------------

have_library: checking for PQconnectdb() in -llibpq...
-------------------- no

"gcc -o conftest
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/i386-darwin10.2 .0
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/ruby/backward
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1 -I.
-D_XOPEN_SOURCE -D_DARWIN_C_SOURCE
-I/usr/local/homebrew/Cellar/postgresql/8.3.9/include  -O2 -g -Wall
-Wno-parentheses -pipe -fno-common -arch i386 conftest.c  -L.
-L/Users/tel/.rvm/rubies/ruby-1.9.1-p376/lib -L.
-L/usr/local/homebrew/Cellar/postgresql/8.3.9/lib -arch i386
-lruby-static -llibpq  -lpthread -ldl -lobjc  "
conftest.c: In function ‘t’:
conftest.c:5: error: ‘PQconnectdb’ undeclared (first use in this
function)
conftest.c:5: error: (Each undeclared identifier is reported only once
conftest.c:5: error: for each function it appears in.)
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: /*top*/
4: int main() {return 0;}
5: int t() { void ((*volatile p)()); p = (void ((*)()))PQconnectdb;
return 0; }
/* end */

"gcc -o conftest
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/i386-darwin10.2 .0
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/ruby/backward
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1 -I.
-D_XOPEN_SOURCE -D_DARWIN_C_SOURCE
-I/usr/local/homebrew/Cellar/postgresql/8.3.9/include  -O2 -g -Wall
-Wno-parentheses -pipe -fno-common -arch i386 conftest.c  -L.
-L/Users/tel/.rvm/rubies/ruby-1.9.1-p376/lib -L.
-L/usr/local/homebrew/Cellar/postgresql/8.3.9/lib -arch i386
-lruby-static -llibpq  -lpthread -ldl -lobjc  "
conftest.c: In function ‘t’:
conftest.c:5: warning: implicit declaration of function ‘PQconnectdb’
ld: library not found for -llibpq
collect2: ld returned 1 exit status
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: /*top*/
4: int main() {return 0;}
5: int t() { PQconnectdb(); return 0; }
/* end */

--------------------

have_library: checking for PQconnectdb() in -lms/libpq...
-------------------- no

"gcc -o conftest
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/i386-darwin10.2 .0
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/ruby/backward
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1 -I.
-D_XOPEN_SOURCE -D_DARWIN_C_SOURCE
-I/usr/local/homebrew/Cellar/postgresql/8.3.9/include  -O2 -g -Wall
-Wno-parentheses -pipe -fno-common -arch i386 conftest.c  -L.
-L/Users/tel/.rvm/rubies/ruby-1.9.1-p376/lib -L.
-L/usr/local/homebrew/Cellar/postgresql/8.3.9/lib -arch i386
-lruby-static -lms/libpq  -lpthread -ldl -lobjc  "
conftest.c: In function ‘t’:
conftest.c:5: error: ‘PQconnectdb’ undeclared (first use in this
function)
conftest.c:5: error: (Each undeclared identifier is reported only once
conftest.c:5: error: for each function it appears in.)
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: /*top*/
4: int main() {return 0;}
5: int t() { void ((*volatile p)()); p = (void ((*)()))PQconnectdb;
return 0; }
/* end */

"gcc -o conftest
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/i386-darwin10.2 .0
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1/ruby/backward
-I/Users/tel/.rvm/rubies/ruby-1.9.1-p376/include/ruby-1.9.1 -I.
-D_XOPEN_SOURCE -D_DARWIN_C_SOURCE
-I/usr/local/homebrew/Cellar/postgresql/8.3.9/include  -O2 -g -Wall
-Wno-parentheses -pipe -fno-common -arch i386 conftest.c  -L.
-L/Users/tel/.rvm/rubies/ruby-1.9.1-p376/lib -L.
-L/usr/local/homebrew/Cellar/postgresql/8.3.9/lib -arch i386
-lruby-static -lms/libpq  -lpthread -ldl -lobjc  "
conftest.c: In function ‘t’:
conftest.c:5: warning: implicit declaration of function ‘PQconnectdb’
ld: library not found for -lms/libpq
collect2: ld returned 1 exit status
checked program was:
/* begin */
1: #include "ruby.h"
2:
3: /*top*/
4: int main() {return 0;}
5: int t() { PQconnectdb(); return 0; }
/* end */

--------------------

Tor Erik
--
Posted via http://www.ruby-forum.com/.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Reid Thompson  
View profile  
 More options Mar 4 2010, 2:41 pm
Newsgroups: comp.lang.ruby
From: Reid Thompson <reid.thomp...@ateb.com>
Date: Thu, 4 Mar 2010 14:41:49 -0500
Local: Thurs, Mar 4 2010 2:41 pm
Subject: Re: Installing Pg gem for PostGreSQL 8.4
On Fri, 2010-03-05 at 03:26 +0900, Tor Erik Linnerud wrote:
> -lms/libpq

what is this supposed to be?

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Luis Lavena  
View profile  
 More options Mar 4 2010, 3:46 pm
Newsgroups: comp.lang.ruby
From: Luis Lavena <luislav...@gmail.com>
Date: Thu, 4 Mar 2010 12:46:46 -0800 (PST)
Local: Thurs, Mar 4 2010 3:46 pm
Subject: Re: Installing Pg gem for PostGreSQL 8.4
On Mar 4, 8:41 pm, Reid Thompson <reid.thomp...@ateb.com> wrote:

> On Fri, 2010-03-05 at 03:26 +0900, Tor Erik Linnerud wrote:
> > -lms/libpq

> what is this supposed to be?

Is testing the locations of the libraries:

http://bitbucket.org/ged/ruby-pg/src/tip/ext/extconf.rb#cl-103

If cannot find one, then reports the problem.

I see that postgres was installed using homebrew, which I'm not
familiar with the settings it will use to build stuff.

I would suggest you direct these questions to the developers of pg
gem, as this issue is quite specific of your combination of elements
in your environment.

You can find all the related links here:

http://rubygems.org/gems/pg

Apologizes for not being more helpful.
--
Luis Lavena


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Granger  
View profile  
 More options Mar 4 2010, 6:07 pm
Newsgroups: comp.lang.ruby
From: Michael Granger <g...@FaerieMUD.org>
Date: Thu, 4 Mar 2010 18:07:01 -0500
Local: Thurs, Mar 4 2010 6:07 pm
Subject: Re: Installing Pg gem for PostGreSQL 8.4
On 03/04/2010 06:35 AM, Tor Erik Linnerud wrote:

>> checking for pg_config... yes
>> checking for libpq-fe.h... yes
>> checking for libpq/libpq-fs.h... yes
>> checking for PQconnectdb() in -lpq... no
>> checking for PQconnectdb() in -llibpq... no
>> checking for PQconnectdb() in -lms/libpq... no
>> Can't find the PostgreSQL client library (libpq)

> I am having the exact same problem on a fresh install on Snow Leopard
> with Ruby 1.9.1p376 and postgres installed via homebrew. This is the
> last entry from mkmf.log

I assume you're the anonymous creator of this ticket:

  http://bitbucket.org/ged/ruby-pg/issue/24/090-gem-fails-to-build

as the description looks the same. If you are, you have the ARCHFLAGS
environment variable set to "-arch i386", which isn't correct for Snow
Leopard. Try either unsetting ARCHFLAGS, in which case the build system
should detect the correct setting, or reset it manually to "-arch x86_64".

If you aren't the creator of that ticket (and you aren't manually
setting your ARCHFLAGS to the incorrect architecture), please file a bug
with the output from 'gem install pg' here:

  http://bitbucket.org/ged/ruby-pg/issues/new/

and attach your mkmf.log in its entirety. Thanks!

--
Michael Granger <g...@FaerieMUD.org>
Rubymage, Architect, Believer
http://FaerieMUD.org/


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tor Erik Linnerud  
View profile  
 More options Mar 5 2010, 4:22 am
Newsgroups: comp.lang.ruby
From: Tor Erik Linnerud <t...@jklm.no>
Date: Fri, 5 Mar 2010 04:22:50 -0500
Local: Fri, Mar 5 2010 4:22 am
Subject: Re: Installing Pg gem for PostGreSQL 8.4

> I assume you're the anonymous creator of this ticket:
>   http://bitbucket.org/ged/ruby-pg/issue/24/090-gem-fails-to-build

That is correct :)

> as the description looks the same. If you are, you have the ARCHFLAGS
> environment variable set to "-arch i386", which isn't correct for Snow
> Leopard. Try either unsetting ARCHFLAGS, in which case the build system
> should detect the correct setting, or reset it manually to "-arch
> x86_64".

Doh! Even though the system it completely new, I had copied over my
bash_profile and it was indeed setting ARCHFLAGS to '-arch i386'. Works
perfectly after removing it.

Thanks a lot for the help, much appreciated.

Tor Erik
--
Posted via http://www.ruby-forum.com/.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Miller  
View profile  
 More options Mar 31 2011, 10:48 am
Newsgroups: comp.lang.ruby
From: John Miller <mil...@franklinfueling.com>
Date: Thu, 31 Mar 2011 09:48:05 -0500
Local: Thurs, Mar 31 2011 10:48 am
Subject: Re: Installing Pg gem for PostGreSQL 8.4
This post was helpful because it helped me to realize that I needed gcc
installed to install the gem

thx

--
Posted via http://www.ruby-forum.com/.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
oleg.rikk...@gmail.com  
View profile  
 More options Sep 8 2012, 3:21 pm
Newsgroups: comp.lang.ruby
From: oleg.rikk...@gmail.com
Date: Sat, 8 Sep 2012 12:21:50 -0700 (PDT)
Local: Sat, Sep 8 2012 3:21 pm
Subject: Re: Installing Pg gem for PostGreSQL 8.4
env ARCHFLAGS="-arch x86_64" gem install pg

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages < Older 
« Back to Discussions « Newer topic     Older topic »